aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-04-18 09:21:21 +0000
committerdos-reis <gdr@axiomatics.org>2010-04-18 09:21:21 +0000
commit5ccf421537f1ce6bfe8a3baa214707221a5f7d21 (patch)
tree44d6c6163b7c3d8aee87c001d5381badf0825921 /src
parent813a32ae880645d8ce37b83be2ac9cc3a8d619e6 (diff)
downloadopen-axiom-5ccf421537f1ce6bfe8a3baa214707221a5f7d21.tar.gz
* algebra/term.spad.pamphlet (TermAlgebraOperator): New.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/algebra/Makefile.in2
-rw-r--r--src/algebra/Makefile.pamphlet2
-rw-r--r--src/algebra/term.spad.pamphlet21
-rw-r--r--src/share/algebra/browse.daase1082
-rw-r--r--src/share/algebra/category.daase394
-rw-r--r--src/share/algebra/compress.daase1341
-rw-r--r--src/share/algebra/interp.daase9022
-rw-r--r--src/share/algebra/operation.daase27073
9 files changed, 19488 insertions, 19453 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f128ba52..7630052a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-18 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * algebra/term.spad.pamphlet (TermAlgebraOperator): New.
+
2010-04-17 Gabriel Dos Reis <gdr@cs.tamu.edu>
* algebra/prtition.spad.pamphlet (powers$Partition): Take a
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in
index 8abba4d9..375128d5 100644
--- a/src/algebra/Makefile.in
+++ b/src/algebra/Makefile.in
@@ -944,7 +944,7 @@ axiom_algebra_layer_user = \
ASP78 ASP9 ASP12 ASP55 ASP8 ASP19 \
ASP20 ASP30 ASP31 ASP35 ASP41 ASP42 \
ASP74 ASP77 ASP80 ASP29 IRFORM COMPILER \
- ITFORM ELABOR
+ ITFORM ELABOR TALGOP
axiom_algebra_layer_user_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_user))
diff --git a/src/algebra/Makefile.pamphlet b/src/algebra/Makefile.pamphlet
index 980260a2..126fc757 100644
--- a/src/algebra/Makefile.pamphlet
+++ b/src/algebra/Makefile.pamphlet
@@ -1023,7 +1023,7 @@ axiom_algebra_layer_user = \
ASP78 ASP9 ASP12 ASP55 ASP8 ASP19 \
ASP20 ASP30 ASP31 ASP35 ASP41 ASP42 \
ASP74 ASP77 ASP80 ASP29 IRFORM COMPILER \
- ITFORM ELABOR
+ ITFORM ELABOR TALGOP
axiom_algebra_layer_user_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_user))
diff --git a/src/algebra/term.spad.pamphlet b/src/algebra/term.spad.pamphlet
index da897986..259b290e 100644
--- a/src/algebra/term.spad.pamphlet
+++ b/src/algebra/term.spad.pamphlet
@@ -83,11 +83,29 @@ OperatorCategory(S: SetCategory): Category ==
is?(op,n) == name op = n
@
+\section{Term Algebra Operator}
+<<domain TALGOP TermAlgebraOperator>>=
+)abbrev domain TALGOP TermAlgebraOperator
+++ Author: Gabriel Dos Reis
+++ Date Created: April 17, 2010
+++ Date Last Modified: April 17, 2010
+TermAlgebraOperator(S: SetCategory): Public == Private where
+ Public == OperatorCategory S with
+ operator: (S,Arity) -> %
+ ++ \spad{operator(n,a)} returns an operator named \spad{n}
+ ++ and with arity \spad{a}.
+ Private == add
+ Rep == Pair(S,Arity)
+ operator(n,a) == per pair(n,a)
+ name x == first rep x
+ arity x == second rep x
+@
+
\section{License}
<<license>>=
---Copyright (C) 2007-2009, Gabriel Dos Reis
+--Copyright (C) 2007-2010, Gabriel Dos Reis
--All rights reserved.
--
--Redistribution and use in source and binary forms, with or without
@@ -127,6 +145,7 @@ OperatorCategory(S: SetCategory): Category ==
<<license>>
<<domain ARITY Arity>>
<<category OPERCAT OperatorCategory>>
+<<domain TALGOP TermAlgebraOperator>>
@
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index 04329149..cedbae88 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2267801 . 3480528374)
+(2268057 . 3480551177)
(-18 A S)
((|constructor| (NIL "One-dimensional-array aggregates serves as models for one-dimensional arrays. Categorically,{} these aggregates are finite linear aggregates with the \\spadatt{shallowlyMutable} property,{} that is,{} any component of the array may be changed without affecting the identity of the overall array. Array data structures are typically represented by a fixed area in storage and therefore cannot efficiently grow or shrink on demand as can list structures (see however \\spadtype{FlexibleArray} for a data structure which is a cross between a list and an array). Iteration over,{} and access to,{} elements of arrays is extremely fast (and often can be optimized to open-code). Insertion and deletion however is generally slow since an entirely new data structure must be created for the result.")))
NIL
NIL
(-19 S)
((|constructor| (NIL "One-dimensional-array aggregates serves as models for one-dimensional arrays. Categorically,{} these aggregates are finite linear aggregates with the \\spadatt{shallowlyMutable} property,{} that is,{} any component of the array may be changed without affecting the identity of the overall array. Array data structures are typically represented by a fixed area in storage and therefore cannot efficiently grow or shrink on demand as can list structures (see however \\spadtype{FlexibleArray} for a data structure which is a cross between a list and an array). Iteration over,{} and access to,{} elements of arrays is extremely fast (and often can be optimized to open-code). Insertion and deletion however is generally slow since an entirely new data structure must be created for the result.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-20 S)
((|constructor| (NIL "The class of abelian groups,{} \\spadignore{i.e.} additive monoids where each element has an additive inverse. \\blankline")) (- (($ $ $) "\\spad{x-y} is the difference of \\spad{x} and \\spad{y} \\spadignore{i.e.} \\spad{x + (-y)}.") (($ $) "\\spad{-x} is the additive inverse of \\spad{x}")))
@@ -38,7 +38,7 @@ NIL
NIL
(-27)
((|constructor| (NIL "Model for algebraically closed fields.")) (|zerosOf| (((|List| $) (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{zerosOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\spad{zerosOf(p)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|Polynomial| $)) "\\spad{zerosOf(p)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. Otherwise they are implicit algebraic quantities. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|zeroOf| (($ (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{zeroOf(p, y)} returns \\spad{y} such that \\spad{p(y) = 0}; if possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity which displays as \\spad{'y}.") (($ (|SparseUnivariatePolynomial| $)) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}; if possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity.") (($ (|Polynomial| $)) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. If possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootsOf| (((|List| $) (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{rootsOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\spad{rootsOf(p)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|Polynomial| $)) "\\spad{rootsOf(p)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{rootOf(p, y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ (|SparseUnivariatePolynomial| $)) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}.") (($ (|Polynomial| $)) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-28 S R)
((|constructor| (NIL "Model for algebraically closed function spaces.")) (|zerosOf| (((|List| $) $ (|Symbol|)) "\\spad{zerosOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{zerosOf(p)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable.")) (|zeroOf| (($ $ (|Symbol|)) "\\spad{zeroOf(p, y)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity which displays as \\spad{'y}.") (($ $) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity. Error: if \\spad{p} has more than one variable.")) (|rootsOf| (((|List| $) $ (|Symbol|)) "\\spad{rootsOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{rootsOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}; Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ $ (|Symbol|)) "\\spad{rootOf(p,y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ $) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
@@ -46,7 +46,7 @@ NIL
NIL
(-29 R)
((|constructor| (NIL "Model for algebraically closed function spaces.")) (|zerosOf| (((|List| $) $ (|Symbol|)) "\\spad{zerosOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{zerosOf(p)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable.")) (|zeroOf| (($ $ (|Symbol|)) "\\spad{zeroOf(p, y)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity which displays as \\spad{'y}.") (($ $) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity. Error: if \\spad{p} has more than one variable.")) (|rootsOf| (((|List| $) $ (|Symbol|)) "\\spad{rootsOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{rootsOf(p, y)} returns \\spad{[y1,...,yn]} such that \\spad{p(yi) = 0}; Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ $ (|Symbol|)) "\\spad{rootOf(p,y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ $) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
-((-4445 . T) (-4443 . T) (-4442 . T) ((-4450 "*") . T) (-4441 . T) (-4446 . T) (-4440 . T))
+((-4446 . T) (-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4442 . T) (-4447 . T) (-4441 . T))
NIL
(-30)
((|constructor| (NIL "\\indented{1}{Plot a NON-SINGULAR plane algebraic curve \\spad{p}(\\spad{x},{}\\spad{y}) = 0.} Author: Clifton \\spad{J}. Williamson Date Created: Fall 1988 Date Last Updated: 27 April 1990 Keywords: algebraic curve,{} non-singular,{} plot Examples: References:")) (|refine| (($ $ (|DoubleFloat|)) "\\spad{refine(p,x)} \\undocumented{}")) (|makeSketch| (($ (|Polynomial| (|Integer|)) (|Symbol|) (|Symbol|) (|Segment| (|Fraction| (|Integer|))) (|Segment| (|Fraction| (|Integer|)))) "\\spad{makeSketch(p,x,y,a..b,c..d)} creates an ACPLOT of the curve \\spad{p = 0} in the region {\\em a <= x <= b, c <= y <= d}. More specifically,{} 'makeSketch' plots a non-singular algebraic curve \\spad{p = 0} in an rectangular region {\\em xMin <= x <= xMax},{} {\\em yMin <= y <= yMax}. The user inputs \\spad{makeSketch(p,x,y,xMin..xMax,yMin..yMax)}. Here \\spad{p} is a polynomial in the variables \\spad{x} and \\spad{y} with integer coefficients (\\spad{p} belongs to the domain \\spad{Polynomial Integer}). The case where \\spad{p} is a polynomial in only one of the variables is allowed. The variables \\spad{x} and \\spad{y} are input to specify the the coordinate axes. The horizontal axis is the \\spad{x}-axis and the vertical axis is the \\spad{y}-axis. The rational numbers xMin,{}...,{}yMax specify the boundaries of the region in which the curve is to be plotted.")))
@@ -63,7 +63,7 @@ NIL
(-33 S)
((|constructor| (NIL "The notion of aggregate serves to model any data structure aggregate,{} designating any collection of objects,{} with heterogenous or homogeneous members,{} with a finite or infinite number of members,{} explicitly or implicitly represented. An aggregate can in principle represent everything from a string of characters to abstract sets such as \"the set of \\spad{x} satisfying relation {\\em r(x)}\" An attribute \\spadatt{finiteAggregate} is used to assert that a domain has a finite number of elements.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# u} returns the number of items in \\spad{u}.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) (|size?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{size?(u,n)} tests if \\spad{u} has exactly \\spad{n} elements.")) (|more?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{more?(u,n)} tests if \\spad{u} has greater than \\spad{n} elements.")) (|less?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{less?(u,n)} tests if \\spad{u} has less than \\spad{n} elements.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(u)} tests if \\spad{u} has 0 elements.")) (|empty| (($) "\\spad{empty()}\\$\\spad{D} creates an aggregate of type \\spad{D} with 0 elements. Note: The {\\em \\$D} can be dropped if understood by context,{} \\spadignore{e.g.} \\axiom{u: \\spad{D} \\spad{:=} empty()}.")) (|copy| (($ $) "\\spad{copy(u)} returns a top-level (non-recursive) copy of \\spad{u}. Note: for collections,{} \\axiom{copy(\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u}]}.")) (|eq?| (((|Boolean|) $ $) "\\spad{eq?(u,v)} tests if \\spad{u} and \\spad{v} are same objects.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4448)))
+((|HasAttribute| |#1| (QUOTE -4449)))
(-34)
((|constructor| (NIL "The notion of aggregate serves to model any data structure aggregate,{} designating any collection of objects,{} with heterogenous or homogeneous members,{} with a finite or infinite number of members,{} explicitly or implicitly represented. An aggregate can in principle represent everything from a string of characters to abstract sets such as \"the set of \\spad{x} satisfying relation {\\em r(x)}\" An attribute \\spadatt{finiteAggregate} is used to assert that a domain has a finite number of elements.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# u} returns the number of items in \\spad{u}.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) (|size?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{size?(u,n)} tests if \\spad{u} has exactly \\spad{n} elements.")) (|more?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{more?(u,n)} tests if \\spad{u} has greater than \\spad{n} elements.")) (|less?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{less?(u,n)} tests if \\spad{u} has less than \\spad{n} elements.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(u)} tests if \\spad{u} has 0 elements.")) (|empty| (($) "\\spad{empty()}\\$\\spad{D} creates an aggregate of type \\spad{D} with 0 elements. Note: The {\\em \\$D} can be dropped if understood by context,{} \\spadignore{e.g.} \\axiom{u: \\spad{D} \\spad{:=} empty()}.")) (|copy| (($ $) "\\spad{copy(u)} returns a top-level (non-recursive) copy of \\spad{u}. Note: for collections,{} \\axiom{copy(\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u}]}.")) (|eq?| (((|Boolean|) $ $) "\\spad{eq?(u,v)} tests if \\spad{u} and \\spad{v} are same objects.")))
NIL
@@ -74,7 +74,7 @@ NIL
NIL
(-36 |Key| |Entry|)
((|constructor| (NIL "An association list is a list of key entry pairs which may be viewed as a table. It is a poor mans version of a table: searching for a key is a linear operation.")) (|assoc| (((|Union| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) "failed") |#1| $) "\\spad{assoc(k,u)} returns the element \\spad{x} in association list \\spad{u} stored with key \\spad{k},{} or \"failed\" if \\spad{u} has no key \\spad{k}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-37 S R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
@@ -82,15 +82,15 @@ NIL
NIL
(-38 R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-39 UP)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in \\spadtype{AlgebraicNumber}.")) (|doublyTransitive?| (((|Boolean|) |#1|) "\\spad{doublyTransitive?(p)} is \\spad{true} if \\spad{p} is irreducible over over the field \\spad{K} generated by its coefficients,{} and if \\spad{p(X) / (X - a)} is irreducible over \\spad{K(a)} where \\spad{p(a) = 0}.")) (|split| (((|Factored| |#1|) |#1|) "\\spad{split(p)} returns a prime factorisation of \\spad{p} over its splitting field.")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p} over the field generated by its coefficients.") (((|Factored| |#1|) |#1| (|List| (|AlgebraicNumber|))) "\\spad{factor(p, [a1,...,an])} returns a prime factorisation of \\spad{p} over the field generated by its coefficients and a1,{}...,{}an.")))
NIL
NIL
-(-40 -1674 UP UPUP -4323)
+(-40 -1674 UP UPUP -2532)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-4441 |has| (-413 |#2|) (-368)) (-4446 |has| (-413 |#2|) (-368)) (-4440 |has| (-413 |#2|) (-368)) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| (-413 |#2|) (-368)) (-4447 |has| (-413 |#2|) (-368)) (-4441 |has| (-413 |#2|) (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-413 |#2|) (QUOTE (-146))) (|HasCategory| (-413 |#2|) (QUOTE (-148))) (|HasCategory| (-413 |#2|) (QUOTE (-354))) (-2740 (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-373))) (-2740 (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (-2740 (-12 (|HasCategory| (-413 |#2|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (-12 (|HasCategory| (-413 |#2|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-413 |#2|) (QUOTE (-354))))) (|HasCategory| (-413 |#2|) (LIST (QUOTE -645) (QUOTE (-570)))) (-2740 (|HasCategory| (-413 |#2|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-413 |#2|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-12 (|HasCategory| (-413 |#2|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))))
(-41 R -1674)
((|constructor| (NIL "AlgebraicManipulations provides functions to simplify and expand expressions involving algebraic operators.")) (|rootKerSimp| ((|#2| (|BasicOperator|) |#2| (|NonNegativeInteger|)) "\\spad{rootKerSimp(op,f,n)} should be local but conditional.")) (|rootSimp| ((|#2| |#2|) "\\spad{rootSimp(f)} transforms every radical of the form \\spad{(a * b**(q*n+r))**(1/n)} appearing in \\spad{f} into \\spad{b**q * (a * b**r)**(1/n)}. This transformation is not in general valid for all complex numbers \\spad{b}.")) (|rootProduct| ((|#2| |#2|) "\\spad{rootProduct(f)} combines every product of the form \\spad{(a**(1/n))**m * (a**(1/s))**t} into a single power of a root of \\spad{a},{} and transforms every radical power of the form \\spad{(a**(1/n))**m} into a simpler form.")) (|rootPower| ((|#2| |#2|) "\\spad{rootPower(f)} transforms every radical power of the form \\spad{(a**(1/n))**m} into a simpler form if \\spad{m} and \\spad{n} have a common factor.")) (|ratPoly| (((|SparseUnivariatePolynomial| |#2|) |#2|) "\\spad{ratPoly(f)} returns a polynomial \\spad{p} such that \\spad{p} has no algebraic coefficients,{} and \\spad{p(f) = 0}.")) (|ratDenom| ((|#2| |#2| (|List| (|Kernel| |#2|))) "\\spad{ratDenom(f, [a1,...,an])} removes the \\spad{ai}\\spad{'s} which are algebraic from the denominators in \\spad{f}.") ((|#2| |#2| (|List| |#2|)) "\\spad{ratDenom(f, [a1,...,an])} removes the \\spad{ai}\\spad{'s} which are algebraic kernels from the denominators in \\spad{f}.") ((|#2| |#2| |#2|) "\\spad{ratDenom(f, a)} removes \\spad{a} from the denominators in \\spad{f} if \\spad{a} is an algebraic kernel.") ((|#2| |#2|) "\\spad{ratDenom(f)} rationalizes the denominators appearing in \\spad{f} by moving all the algebraic quantities into the numerators.")) (|rootSplit| ((|#2| |#2|) "\\spad{rootSplit(f)} transforms every radical of the form \\spad{(a/b)**(1/n)} appearing in \\spad{f} into \\spad{a**(1/n) / b**(1/n)}. This transformation is not in general valid for all complex numbers \\spad{a} and \\spad{b}.")) (|coerce| (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{coerce(x)} \\undocumented")) (|denom| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{denom(x)} \\undocumented")) (|numer| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{numer(x)} \\undocumented")))
@@ -106,23 +106,23 @@ NIL
((|HasCategory| |#1| (QUOTE (-311))))
(-44 R |n| |ls| |gamma|)
((|constructor| (NIL "AlgebraGivenByStructuralConstants implements finite rank algebras over a commutative ring,{} given by the structural constants \\spad{gamma} with respect to a fixed basis \\spad{[a1,..,an]},{} where \\spad{gamma} is an \\spad{n}-vector of \\spad{n} by \\spad{n} matrices \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{ai * aj = gammaij1 * a1 + ... + gammaijn * an}. The symbols for the fixed basis have to be given as a list of symbols.")) (|coerce| (($ (|Vector| |#1|)) "\\spad{coerce(v)} converts a vector to a member of the algebra by forming a linear combination with the basis element. Note: the vector is assumed to have length equal to the dimension of the algebra.")))
-((-4445 |has| |#1| (-562)) (-4443 . T) (-4442 . T))
+((-4446 |has| |#1| (-562)) (-4444 . T) (-4443 . T))
((|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562))))
(-45 |Key| |Entry|)
((|constructor| (NIL "\\spadtype{AssociationList} implements association lists. These may be viewed as lists of pairs where the first part is a key and the second is the stored value. For example,{} the key might be a string with a persons employee identification number and the value might be a record with personnel data.")))
-((-4448 . T) (-4449 . T))
-((-2740 (-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|))))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))))
+((-4449 . T) (-4450 . T))
+((-2740 (-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|))))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))))
(-46 S R E)
((|constructor| (NIL "Abelian monoid ring elements (not necessarily of finite support) of this ring are of the form formal SUM (r_i * e_i) where the r_i are coefficents and the e_i,{} elements of the ordered abelian monoid,{} are thought of as exponents or monomials. The monomials commute with each other,{} and with the coefficients (which themselves may or may not be commutative). See \\spadtype{FiniteAbelianMonoidRing} for the case of finite support a useful common model for polynomials and power series. Conceptually at least,{} only the non-zero terms are ever operated on.")) (/ (($ $ |#2|) "\\spad{p/c} divides \\spad{p} by the coefficient \\spad{c}.")) (|coefficient| ((|#2| $ |#3|) "\\spad{coefficient(p,e)} extracts the coefficient of the monomial with exponent \\spad{e} from polynomial \\spad{p},{} or returns zero if exponent is not present.")) (|reductum| (($ $) "\\spad{reductum(u)} returns \\spad{u} minus its leading monomial returns zero if handed the zero element.")) (|monomial| (($ |#2| |#3|) "\\spad{monomial(r,e)} makes a term from a coefficient \\spad{r} and an exponent \\spad{e}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(p)} tests if \\spad{p} is a single monomial.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(fn,u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|degree| ((|#3| $) "\\spad{degree(p)} returns the maximum of the exponents of the terms of \\spad{p}.")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(p)} returns the monomial of \\spad{p} with the highest degree.")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(p)} returns the coefficient highest degree term of \\spad{p}.")))
NIL
((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))))
(-47 R E)
((|constructor| (NIL "Abelian monoid ring elements (not necessarily of finite support) of this ring are of the form formal SUM (r_i * e_i) where the r_i are coefficents and the e_i,{} elements of the ordered abelian monoid,{} are thought of as exponents or monomials. The monomials commute with each other,{} and with the coefficients (which themselves may or may not be commutative). See \\spadtype{FiniteAbelianMonoidRing} for the case of finite support a useful common model for polynomials and power series. Conceptually at least,{} only the non-zero terms are ever operated on.")) (/ (($ $ |#1|) "\\spad{p/c} divides \\spad{p} by the coefficient \\spad{c}.")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(p,e)} extracts the coefficient of the monomial with exponent \\spad{e} from polynomial \\spad{p},{} or returns zero if exponent is not present.")) (|reductum| (($ $) "\\spad{reductum(u)} returns \\spad{u} minus its leading monomial returns zero if handed the zero element.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(r,e)} makes a term from a coefficient \\spad{r} and an exponent \\spad{e}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(p)} tests if \\spad{p} is a single monomial.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|degree| ((|#2| $) "\\spad{degree(p)} returns the maximum of the exponents of the terms of \\spad{p}.")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(p)} returns the monomial of \\spad{p} with the highest degree.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(p)} returns the coefficient highest degree term of \\spad{p}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-48)
((|constructor| (NIL "Algebraic closure of the rational numbers,{} with mathematical =")) (|norm| (($ $ (|List| (|Kernel| $))) "\\spad{norm(f,l)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernels \\spad{l}") (($ $ (|Kernel| $)) "\\spad{norm(f,k)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernel \\spad{k}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|List| (|Kernel| $))) "\\spad{norm(p,l)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernels \\spad{l}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{norm(p,k)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernel \\spad{k}")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic numbers present in \\spad{f} by applying their defining relations.")) (|denom| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|numer| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|coerce| (($ (|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} viewed as an algebraic number.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| $ (QUOTE (-1058))) (|HasCategory| $ (LIST (QUOTE -1047) (QUOTE (-570)))))
(-49)
((|constructor| (NIL "This domain implements anonymous functions")) (|body| (((|Syntax|) $) "\\spad{body(f)} returns the body of the unnamed function \\spad{`f'}.")) (|parameters| (((|List| (|Identifier|)) $) "\\spad{parameters(f)} returns the list of parameters bound by \\spad{`f'}.")))
@@ -130,7 +130,7 @@ NIL
NIL
(-50 R |lVar|)
((|constructor| (NIL "The domain of antisymmetric polynomials.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,p)} changes each coefficient of \\spad{p} by the application of \\spad{f}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} returns the homogeneous degree of \\spad{p}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?(p)} tests if \\spad{p} is a 0-form,{} \\spadignore{i.e.} if degree(\\spad{p}) = 0.")) (|homogeneous?| (((|Boolean|) $) "\\spad{homogeneous?(p)} tests if all of the terms of \\spad{p} have the same degree.")) (|exp| (($ (|List| (|Integer|))) "\\spad{exp([i1,...in])} returns \\spad{u_1\\^{i_1} ... u_n\\^{i_n}}")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(n)} returns the \\spad{n}th multiplicative generator,{} a basis term.")) (|coefficient| ((|#1| $ $) "\\spad{coefficient(p,u)} returns the coefficient of the term in \\spad{p} containing the basis term \\spad{u} if such a term exists,{} and 0 otherwise. Error: if the second argument \\spad{u} is not a basis element.")) (|reductum| (($ $) "\\spad{reductum(p)},{} where \\spad{p} is an antisymmetric polynomial,{} returns \\spad{p} minus the leading term of \\spad{p} if \\spad{p} has at least two terms,{} and 0 otherwise.")) (|leadingBasisTerm| (($ $) "\\spad{leadingBasisTerm(p)} returns the leading basis term of antisymmetric polynomial \\spad{p}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(p)} returns the leading coefficient of antisymmetric polynomial \\spad{p}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-51 S)
((|constructor| (NIL "\\spadtype{AnyFunctions1} implements several utility functions for working with \\spadtype{Any}. These functions are used to go back and forth between objects of \\spadtype{Any} and objects of other types.")) (|retract| ((|#1| (|Any|)) "\\spad{retract(a)} tries to convert \\spad{a} into an object of type \\spad{S}. If possible,{} it returns the object. Error: if no such retraction is possible.")) (|retractable?| (((|Boolean|) (|Any|)) "\\spad{retractable?(a)} tests if \\spad{a} can be converted into an object of type \\spad{S}.")) (|retractIfCan| (((|Union| |#1| "failed") (|Any|)) "\\spad{retractIfCan(a)} tries change \\spad{a} into an object of type \\spad{S}. If it can,{} then such an object is returned. Otherwise,{} \"failed\" is returned.")) (|coerce| (((|Any|) |#1|) "\\spad{coerce(s)} creates an object of \\spadtype{Any} from the object \\spad{s} of type \\spad{S}.")))
@@ -158,7 +158,7 @@ NIL
NIL
(-57 R |Row| |Col|)
((|constructor| (NIL "\\indented{1}{TwoDimensionalArrayCategory is a general array category which} allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and columns returned as objects of type Col. The index of the 'first' row may be obtained by calling the function 'minRowIndex'. The index of the 'first' column may be obtained by calling the function 'minColIndex'. The index of the first element of a 'Row' is the same as the index of the first column in an array and vice versa.")) (|map!| (($ (|Mapping| |#1| |#1|) $) "\\spad{map!(f,a)} assign \\spad{a(i,j)} to \\spad{f(a(i,j))} for all \\spad{i, j}")) (|map| (($ (|Mapping| |#1| |#1| |#1|) $ $ |#1|) "\\spad{map(f,a,b,r)} returns \\spad{c},{} where \\spad{c(i,j) = f(a(i,j),b(i,j))} when both \\spad{a(i,j)} and \\spad{b(i,j)} exist; else \\spad{c(i,j) = f(r, b(i,j))} when \\spad{a(i,j)} does not exist; else \\spad{c(i,j) = f(a(i,j),r)} when \\spad{b(i,j)} does not exist; otherwise \\spad{c(i,j) = f(r,r)}.") (($ (|Mapping| |#1| |#1| |#1|) $ $) "\\spad{map(f,a,b)} returns \\spad{c},{} where \\spad{c(i,j) = f(a(i,j),b(i,j))} for all \\spad{i, j}") (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,a)} returns \\spad{b},{} where \\spad{b(i,j) = f(a(i,j))} for all \\spad{i, j}")) (|setColumn!| (($ $ (|Integer|) |#3|) "\\spad{setColumn!(m,j,v)} sets to \\spad{j}th column of \\spad{m} to \\spad{v}")) (|setRow!| (($ $ (|Integer|) |#2|) "\\spad{setRow!(m,i,v)} sets to \\spad{i}th row of \\spad{m} to \\spad{v}")) (|qsetelt!| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{qsetelt!(m,i,j,r)} sets the element in the \\spad{i}th row and \\spad{j}th column of \\spad{m} to \\spad{r} NO error check to determine if indices are in proper ranges")) (|setelt| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{setelt(m,i,j,r)} sets the element in the \\spad{i}th row and \\spad{j}th column of \\spad{m} to \\spad{r} error check to determine if indices are in proper ranges")) (|parts| (((|List| |#1|) $) "\\spad{parts(m)} returns a list of the elements of \\spad{m} in row major order")) (|column| ((|#3| $ (|Integer|)) "\\spad{column(m,j)} returns the \\spad{j}th column of \\spad{m} error check to determine if index is in proper ranges")) (|row| ((|#2| $ (|Integer|)) "\\spad{row(m,i)} returns the \\spad{i}th row of \\spad{m} error check to determine if index is in proper ranges")) (|qelt| ((|#1| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,i,j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m} NO error check to determine if indices are in proper ranges")) (|elt| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{elt(m,i,j,r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise") ((|#1| $ (|Integer|) (|Integer|)) "\\spad{elt(m,i,j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m} error check to determine if indices are in proper ranges")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the array \\spad{m}")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the array \\spad{m}")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the array \\spad{m}")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the array \\spad{m}")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the array \\spad{m}")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the array \\spad{m}")) (|fill!| (($ $ |#1|) "\\spad{fill!(m,r)} fills \\spad{m} with \\spad{r}\\spad{'s}")) (|new| (($ (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{new(m,n,r)} is an \\spad{m}-by-\\spad{n} array all of whose entries are \\spad{r}")) (|finiteAggregate| ((|attribute|) "two-dimensional arrays are finite")) (|shallowlyMutable| ((|attribute|) "one may destructively alter arrays")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-58 A B)
((|constructor| (NIL "\\indented{1}{This package provides tools for operating on one-dimensional arrays} with unary and binary functions involving different underlying types")) (|map| (((|OneDimensionalArray| |#2|) (|Mapping| |#2| |#1|) (|OneDimensionalArray| |#1|)) "\\spad{map(f,a)} applies function \\spad{f} to each member of one-dimensional array \\spad{a} resulting in a new one-dimensional array over a possibly different underlying domain.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|OneDimensionalArray| |#1|) |#2|) "\\spad{reduce(f,a,r)} applies function \\spad{f} to each successive element of the one-dimensional array \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,[1,2,3],0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|scan| (((|OneDimensionalArray| |#2|) (|Mapping| |#2| |#1| |#2|) (|OneDimensionalArray| |#1|) |#2|) "\\spad{scan(f,a,r)} successively applies \\spad{reduce(f,x,r)} to more and more leading sub-arrays \\spad{x} of one-dimensional array \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,a2,...]},{} then \\spad{scan(f,a,r)} returns \\spad{[reduce(f,[a1],r),reduce(f,[a1,a2],r),...]}.")))
@@ -166,65 +166,65 @@ NIL
NIL
(-59 S)
((|constructor| (NIL "This is the domain of 1-based one dimensional arrays")) (|oneDimensionalArray| (($ (|NonNegativeInteger|) |#1|) "\\spad{oneDimensionalArray(n,s)} creates an array from \\spad{n} copies of element \\spad{s}") (($ (|List| |#1|)) "\\spad{oneDimensionalArray(l)} creates an array from a list of elements \\spad{l}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-60 R)
((|constructor| (NIL "\\indented{1}{A TwoDimensionalArray is a two dimensional array with} 1-based indexing for both rows and columns.")) (|shallowlyMutable| ((|attribute|) "One may destructively alter TwoDimensionalArray\\spad{'s}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
-(-61 -3503)
+(-61 -3504)
((|constructor| (NIL "\\spadtype{ASP10} produces Fortran for Type 10 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package}. This ASP computes the values of a set of functions,{} for example:\\begin{verbatim} SUBROUTINE COEFFN(P,Q,DQDL,X,ELAM,JINT) DOUBLE PRECISION ELAM,P,Q,X,DQDL INTEGER JINT P=1.0D0 Q=((-1.0D0*X**3)+ELAM*X*X-2.0D0)/(X*X) DQDL=1.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-62 -3503)
+(-62 -3504)
((|constructor| (NIL "\\spadtype{Asp12} produces Fortran for Type 12 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package} etc.,{} for example:\\begin{verbatim} SUBROUTINE MONIT (MAXIT,IFLAG,ELAM,FINFO) DOUBLE PRECISION ELAM,FINFO(15) INTEGER MAXIT,IFLAG IF(MAXIT.EQ.-1)THEN PRINT*,\"Output from Monit\" ENDIF PRINT*,MAXIT,IFLAG,ELAM,(FINFO(I),I=1,4) RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP12}.")))
NIL
NIL
-(-63 -3503)
+(-63 -3504)
((|constructor| (NIL "\\spadtype{Asp19} produces Fortran for Type 19 ASPs,{} evaluating a set of functions and their jacobian at a given point,{} for example:\\begin{verbatim} SUBROUTINE LSFUN2(M,N,XC,FVECC,FJACC,LJC) DOUBLE PRECISION FVECC(M),FJACC(LJC,N),XC(N) INTEGER M,N,LJC INTEGER I,J DO 25003 I=1,LJC DO 25004 J=1,N FJACC(I,J)=0.0D025004 CONTINUE25003 CONTINUE FVECC(1)=((XC(1)-0.14D0)*XC(3)+(15.0D0*XC(1)-2.1D0)*XC(2)+1.0D0)/( &XC(3)+15.0D0*XC(2)) FVECC(2)=((XC(1)-0.18D0)*XC(3)+(7.0D0*XC(1)-1.26D0)*XC(2)+1.0D0)/( &XC(3)+7.0D0*XC(2)) FVECC(3)=((XC(1)-0.22D0)*XC(3)+(4.333333333333333D0*XC(1)-0.953333 &3333333333D0)*XC(2)+1.0D0)/(XC(3)+4.333333333333333D0*XC(2)) FVECC(4)=((XC(1)-0.25D0)*XC(3)+(3.0D0*XC(1)-0.75D0)*XC(2)+1.0D0)/( &XC(3)+3.0D0*XC(2)) FVECC(5)=((XC(1)-0.29D0)*XC(3)+(2.2D0*XC(1)-0.6379999999999999D0)* &XC(2)+1.0D0)/(XC(3)+2.2D0*XC(2)) FVECC(6)=((XC(1)-0.32D0)*XC(3)+(1.666666666666667D0*XC(1)-0.533333 &3333333333D0)*XC(2)+1.0D0)/(XC(3)+1.666666666666667D0*XC(2)) FVECC(7)=((XC(1)-0.35D0)*XC(3)+(1.285714285714286D0*XC(1)-0.45D0)* &XC(2)+1.0D0)/(XC(3)+1.285714285714286D0*XC(2)) FVECC(8)=((XC(1)-0.39D0)*XC(3)+(XC(1)-0.39D0)*XC(2)+1.0D0)/(XC(3)+ &XC(2)) FVECC(9)=((XC(1)-0.37D0)*XC(3)+(XC(1)-0.37D0)*XC(2)+1.285714285714 &286D0)/(XC(3)+XC(2)) FVECC(10)=((XC(1)-0.58D0)*XC(3)+(XC(1)-0.58D0)*XC(2)+1.66666666666 &6667D0)/(XC(3)+XC(2)) FVECC(11)=((XC(1)-0.73D0)*XC(3)+(XC(1)-0.73D0)*XC(2)+2.2D0)/(XC(3) &+XC(2)) FVECC(12)=((XC(1)-0.96D0)*XC(3)+(XC(1)-0.96D0)*XC(2)+3.0D0)/(XC(3) &+XC(2)) FVECC(13)=((XC(1)-1.34D0)*XC(3)+(XC(1)-1.34D0)*XC(2)+4.33333333333 &3333D0)/(XC(3)+XC(2)) FVECC(14)=((XC(1)-2.1D0)*XC(3)+(XC(1)-2.1D0)*XC(2)+7.0D0)/(XC(3)+X &C(2)) FVECC(15)=((XC(1)-4.39D0)*XC(3)+(XC(1)-4.39D0)*XC(2)+15.0D0)/(XC(3 &)+XC(2)) FJACC(1,1)=1.0D0 FJACC(1,2)=-15.0D0/(XC(3)**2+30.0D0*XC(2)*XC(3)+225.0D0*XC(2)**2) FJACC(1,3)=-1.0D0/(XC(3)**2+30.0D0*XC(2)*XC(3)+225.0D0*XC(2)**2) FJACC(2,1)=1.0D0 FJACC(2,2)=-7.0D0/(XC(3)**2+14.0D0*XC(2)*XC(3)+49.0D0*XC(2)**2) FJACC(2,3)=-1.0D0/(XC(3)**2+14.0D0*XC(2)*XC(3)+49.0D0*XC(2)**2) FJACC(3,1)=1.0D0 FJACC(3,2)=((-0.1110223024625157D-15*XC(3))-4.333333333333333D0)/( &XC(3)**2+8.666666666666666D0*XC(2)*XC(3)+18.77777777777778D0*XC(2) &**2) FJACC(3,3)=(0.1110223024625157D-15*XC(2)-1.0D0)/(XC(3)**2+8.666666 &666666666D0*XC(2)*XC(3)+18.77777777777778D0*XC(2)**2) FJACC(4,1)=1.0D0 FJACC(4,2)=-3.0D0/(XC(3)**2+6.0D0*XC(2)*XC(3)+9.0D0*XC(2)**2) FJACC(4,3)=-1.0D0/(XC(3)**2+6.0D0*XC(2)*XC(3)+9.0D0*XC(2)**2) FJACC(5,1)=1.0D0 FJACC(5,2)=((-0.1110223024625157D-15*XC(3))-2.2D0)/(XC(3)**2+4.399 &999999999999D0*XC(2)*XC(3)+4.839999999999998D0*XC(2)**2) FJACC(5,3)=(0.1110223024625157D-15*XC(2)-1.0D0)/(XC(3)**2+4.399999 &999999999D0*XC(2)*XC(3)+4.839999999999998D0*XC(2)**2) FJACC(6,1)=1.0D0 FJACC(6,2)=((-0.2220446049250313D-15*XC(3))-1.666666666666667D0)/( &XC(3)**2+3.333333333333333D0*XC(2)*XC(3)+2.777777777777777D0*XC(2) &**2) FJACC(6,3)=(0.2220446049250313D-15*XC(2)-1.0D0)/(XC(3)**2+3.333333 &333333333D0*XC(2)*XC(3)+2.777777777777777D0*XC(2)**2) FJACC(7,1)=1.0D0 FJACC(7,2)=((-0.5551115123125783D-16*XC(3))-1.285714285714286D0)/( &XC(3)**2+2.571428571428571D0*XC(2)*XC(3)+1.653061224489796D0*XC(2) &**2) FJACC(7,3)=(0.5551115123125783D-16*XC(2)-1.0D0)/(XC(3)**2+2.571428 &571428571D0*XC(2)*XC(3)+1.653061224489796D0*XC(2)**2) FJACC(8,1)=1.0D0 FJACC(8,2)=-1.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(8,3)=-1.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(9,1)=1.0D0 FJACC(9,2)=-1.285714285714286D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)* &*2) FJACC(9,3)=-1.285714285714286D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)* &*2) FJACC(10,1)=1.0D0 FJACC(10,2)=-1.666666666666667D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(10,3)=-1.666666666666667D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(11,1)=1.0D0 FJACC(11,2)=-2.2D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(11,3)=-2.2D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(12,1)=1.0D0 FJACC(12,2)=-3.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(12,3)=-3.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(13,1)=1.0D0 FJACC(13,2)=-4.333333333333333D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(13,3)=-4.333333333333333D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(14,1)=1.0D0 FJACC(14,2)=-7.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(14,3)=-7.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(15,1)=1.0D0 FJACC(15,2)=-15.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(15,3)=-15.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-64 -3503)
+(-64 -3504)
((|constructor| (NIL "\\spadtype{Asp1} produces Fortran for Type 1 ASPs,{} needed for various NAG routines. Type 1 ASPs take a univariate expression (in the symbol \\spad{X}) and turn it into a Fortran Function like the following:\\begin{verbatim} DOUBLE PRECISION FUNCTION F(X) DOUBLE PRECISION X F=DSIN(X) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-65 -3503)
+(-65 -3504)
((|constructor| (NIL "\\spadtype{Asp20} produces Fortran for Type 20 ASPs,{} for example:\\begin{verbatim} SUBROUTINE QPHESS(N,NROWH,NCOLH,JTHCOL,HESS,X,HX) DOUBLE PRECISION HX(N),X(N),HESS(NROWH,NCOLH) INTEGER JTHCOL,N,NROWH,NCOLH HX(1)=2.0D0*X(1) HX(2)=2.0D0*X(2) HX(3)=2.0D0*X(4)+2.0D0*X(3) HX(4)=2.0D0*X(4)+2.0D0*X(3) HX(5)=2.0D0*X(5) HX(6)=(-2.0D0*X(7))+(-2.0D0*X(6)) HX(7)=(-2.0D0*X(7))+(-2.0D0*X(6)) RETURN END\\end{verbatim}")))
NIL
NIL
-(-66 -3503)
+(-66 -3504)
((|constructor| (NIL "\\spadtype{Asp24} produces Fortran for Type 24 ASPs which evaluate a multivariate function at a point (needed for NAG routine \\axiomOpFrom{e04jaf}{e04Package}),{} for example:\\begin{verbatim} SUBROUTINE FUNCT1(N,XC,FC) DOUBLE PRECISION FC,XC(N) INTEGER N FC=10.0D0*XC(4)**4+(-40.0D0*XC(1)*XC(4)**3)+(60.0D0*XC(1)**2+5 &.0D0)*XC(4)**2+((-10.0D0*XC(3))+(-40.0D0*XC(1)**3))*XC(4)+16.0D0*X &C(3)**4+(-32.0D0*XC(2)*XC(3)**3)+(24.0D0*XC(2)**2+5.0D0)*XC(3)**2+ &(-8.0D0*XC(2)**3*XC(3))+XC(2)**4+100.0D0*XC(2)**2+20.0D0*XC(1)*XC( &2)+10.0D0*XC(1)**4+XC(1)**2 RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-67 -3503)
+(-67 -3504)
((|constructor| (NIL "\\spadtype{Asp27} produces Fortran for Type 27 ASPs,{} needed for NAG routine \\axiomOpFrom{f02fjf}{f02Package} ,{}for example:\\begin{verbatim} FUNCTION DOT(IFLAG,N,Z,W,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION W(N),Z(N),RWORK(LRWORK) INTEGER N,LIWORK,IFLAG,LRWORK,IWORK(LIWORK) DOT=(W(16)+(-0.5D0*W(15)))*Z(16)+((-0.5D0*W(16))+W(15)+(-0.5D0*W(1 &4)))*Z(15)+((-0.5D0*W(15))+W(14)+(-0.5D0*W(13)))*Z(14)+((-0.5D0*W( &14))+W(13)+(-0.5D0*W(12)))*Z(13)+((-0.5D0*W(13))+W(12)+(-0.5D0*W(1 &1)))*Z(12)+((-0.5D0*W(12))+W(11)+(-0.5D0*W(10)))*Z(11)+((-0.5D0*W( &11))+W(10)+(-0.5D0*W(9)))*Z(10)+((-0.5D0*W(10))+W(9)+(-0.5D0*W(8)) &)*Z(9)+((-0.5D0*W(9))+W(8)+(-0.5D0*W(7)))*Z(8)+((-0.5D0*W(8))+W(7) &+(-0.5D0*W(6)))*Z(7)+((-0.5D0*W(7))+W(6)+(-0.5D0*W(5)))*Z(6)+((-0. &5D0*W(6))+W(5)+(-0.5D0*W(4)))*Z(5)+((-0.5D0*W(5))+W(4)+(-0.5D0*W(3 &)))*Z(4)+((-0.5D0*W(4))+W(3)+(-0.5D0*W(2)))*Z(3)+((-0.5D0*W(3))+W( &2)+(-0.5D0*W(1)))*Z(2)+((-0.5D0*W(2))+W(1))*Z(1) RETURN END\\end{verbatim}")))
NIL
NIL
-(-68 -3503)
+(-68 -3504)
((|constructor| (NIL "\\spadtype{Asp28} produces Fortran for Type 28 ASPs,{} used in NAG routine \\axiomOpFrom{f02fjf}{f02Package},{} for example:\\begin{verbatim} SUBROUTINE IMAGE(IFLAG,N,Z,W,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION Z(N),W(N),IWORK(LRWORK),RWORK(LRWORK) INTEGER N,LIWORK,IFLAG,LRWORK W(1)=0.01707454969713436D0*Z(16)+0.001747395874954051D0*Z(15)+0.00 &2106973900813502D0*Z(14)+0.002957434991769087D0*Z(13)+(-0.00700554 &0882865317D0*Z(12))+(-0.01219194009813166D0*Z(11))+0.0037230647365 &3087D0*Z(10)+0.04932374658377151D0*Z(9)+(-0.03586220812223305D0*Z( &8))+(-0.04723268012114625D0*Z(7))+(-0.02434652144032987D0*Z(6))+0. &2264766947290192D0*Z(5)+(-0.1385343580686922D0*Z(4))+(-0.116530050 &8238904D0*Z(3))+(-0.2803531651057233D0*Z(2))+1.019463911841327D0*Z &(1) W(2)=0.0227345011107737D0*Z(16)+0.008812321197398072D0*Z(15)+0.010 &94012210519586D0*Z(14)+(-0.01764072463999744D0*Z(13))+(-0.01357136 &72105995D0*Z(12))+0.00157466157362272D0*Z(11)+0.05258889186338282D &0*Z(10)+(-0.01981532388243379D0*Z(9))+(-0.06095390688679697D0*Z(8) &)+(-0.04153119955569051D0*Z(7))+0.2176561076571465D0*Z(6)+(-0.0532 &5555586632358D0*Z(5))+(-0.1688977368984641D0*Z(4))+(-0.32440166056 &67343D0*Z(3))+0.9128222941872173D0*Z(2)+(-0.2419652703415429D0*Z(1 &)) W(3)=0.03371198197190302D0*Z(16)+0.02021603150122265D0*Z(15)+(-0.0 &06607305534689702D0*Z(14))+(-0.03032392238968179D0*Z(13))+0.002033 &305231024948D0*Z(12)+0.05375944956767728D0*Z(11)+(-0.0163213312502 &9967D0*Z(10))+(-0.05483186562035512D0*Z(9))+(-0.04901428822579872D &0*Z(8))+0.2091097927887612D0*Z(7)+(-0.05760560341383113D0*Z(6))+(- &0.1236679206156403D0*Z(5))+(-0.3523683853026259D0*Z(4))+0.88929961 &32269974D0*Z(3)+(-0.2995429545781457D0*Z(2))+(-0.02986582812574917 &D0*Z(1)) W(4)=0.05141563713660119D0*Z(16)+0.005239165960779299D0*Z(15)+(-0. &01623427735779699D0*Z(14))+(-0.01965809746040371D0*Z(13))+0.054688 &97337339577D0*Z(12)+(-0.014224695935687D0*Z(11))+(-0.0505181779315 &6355D0*Z(10))+(-0.04353074206076491D0*Z(9))+0.2012230497530726D0*Z &(8)+(-0.06630874514535952D0*Z(7))+(-0.1280829963720053D0*Z(6))+(-0 &.305169742604165D0*Z(5))+0.8600427128450191D0*Z(4)+(-0.32415033802 &68184D0*Z(3))+(-0.09033531980693314D0*Z(2))+0.09089205517109111D0* &Z(1) W(5)=0.04556369767776375D0*Z(16)+(-0.001822737697581869D0*Z(15))+( &-0.002512226501941856D0*Z(14))+0.02947046460707379D0*Z(13)+(-0.014 &45079632086177D0*Z(12))+(-0.05034242196614937D0*Z(11))+(-0.0376966 &3291725935D0*Z(10))+0.2171103102175198D0*Z(9)+(-0.0824949256021352 &4D0*Z(8))+(-0.1473995209288945D0*Z(7))+(-0.315042193418466D0*Z(6)) &+0.9591623347824002D0*Z(5)+(-0.3852396953763045D0*Z(4))+(-0.141718 &5427288274D0*Z(3))+(-0.03423495461011043D0*Z(2))+0.319820917706851 &6D0*Z(1) W(6)=0.04015147277405744D0*Z(16)+0.01328585741341559D0*Z(15)+0.048 &26082005465965D0*Z(14)+(-0.04319641116207706D0*Z(13))+(-0.04931323 &319055762D0*Z(12))+(-0.03526886317505474D0*Z(11))+0.22295383396730 &01D0*Z(10)+(-0.07375317649315155D0*Z(9))+(-0.1589391311991561D0*Z( &8))+(-0.328001910890377D0*Z(7))+0.952576555482747D0*Z(6)+(-0.31583 &09975786731D0*Z(5))+(-0.1846882042225383D0*Z(4))+(-0.0703762046700 &4427D0*Z(3))+0.2311852964327382D0*Z(2)+0.04254083491825025D0*Z(1) W(7)=0.06069778964023718D0*Z(16)+0.06681263884671322D0*Z(15)+(-0.0 &2113506688615768D0*Z(14))+(-0.083996867458326D0*Z(13))+(-0.0329843 &8523869648D0*Z(12))+0.2276878326327734D0*Z(11)+(-0.067356038933017 &95D0*Z(10))+(-0.1559813965382218D0*Z(9))+(-0.3363262957694705D0*Z( &8))+0.9442791158560948D0*Z(7)+(-0.3199955249404657D0*Z(6))+(-0.136 &2463839920727D0*Z(5))+(-0.1006185171570586D0*Z(4))+0.2057504515015 &423D0*Z(3)+(-0.02065879269286707D0*Z(2))+0.03160990266745513D0*Z(1 &) W(8)=0.126386868896738D0*Z(16)+0.002563370039476418D0*Z(15)+(-0.05 &581757739455641D0*Z(14))+(-0.07777893205900685D0*Z(13))+0.23117338 &45834199D0*Z(12)+(-0.06031581134427592D0*Z(11))+(-0.14805474755869 &52D0*Z(10))+(-0.3364014128402243D0*Z(9))+0.9364014128402244D0*Z(8) &+(-0.3269452524413048D0*Z(7))+(-0.1396841886557241D0*Z(6))+(-0.056 &1733845834199D0*Z(5))+0.1777789320590069D0*Z(4)+(-0.04418242260544 &359D0*Z(3))+(-0.02756337003947642D0*Z(2))+0.07361313110326199D0*Z( &1) W(9)=0.07361313110326199D0*Z(16)+(-0.02756337003947642D0*Z(15))+(- &0.04418242260544359D0*Z(14))+0.1777789320590069D0*Z(13)+(-0.056173 &3845834199D0*Z(12))+(-0.1396841886557241D0*Z(11))+(-0.326945252441 &3048D0*Z(10))+0.9364014128402244D0*Z(9)+(-0.3364014128402243D0*Z(8 &))+(-0.1480547475586952D0*Z(7))+(-0.06031581134427592D0*Z(6))+0.23 &11733845834199D0*Z(5)+(-0.07777893205900685D0*Z(4))+(-0.0558175773 &9455641D0*Z(3))+0.002563370039476418D0*Z(2)+0.126386868896738D0*Z( &1) W(10)=0.03160990266745513D0*Z(16)+(-0.02065879269286707D0*Z(15))+0 &.2057504515015423D0*Z(14)+(-0.1006185171570586D0*Z(13))+(-0.136246 &3839920727D0*Z(12))+(-0.3199955249404657D0*Z(11))+0.94427911585609 &48D0*Z(10)+(-0.3363262957694705D0*Z(9))+(-0.1559813965382218D0*Z(8 &))+(-0.06735603893301795D0*Z(7))+0.2276878326327734D0*Z(6)+(-0.032 &98438523869648D0*Z(5))+(-0.083996867458326D0*Z(4))+(-0.02113506688 &615768D0*Z(3))+0.06681263884671322D0*Z(2)+0.06069778964023718D0*Z( &1) W(11)=0.04254083491825025D0*Z(16)+0.2311852964327382D0*Z(15)+(-0.0 &7037620467004427D0*Z(14))+(-0.1846882042225383D0*Z(13))+(-0.315830 &9975786731D0*Z(12))+0.952576555482747D0*Z(11)+(-0.328001910890377D &0*Z(10))+(-0.1589391311991561D0*Z(9))+(-0.07375317649315155D0*Z(8) &)+0.2229538339673001D0*Z(7)+(-0.03526886317505474D0*Z(6))+(-0.0493 &1323319055762D0*Z(5))+(-0.04319641116207706D0*Z(4))+0.048260820054 &65965D0*Z(3)+0.01328585741341559D0*Z(2)+0.04015147277405744D0*Z(1) W(12)=0.3198209177068516D0*Z(16)+(-0.03423495461011043D0*Z(15))+(- &0.1417185427288274D0*Z(14))+(-0.3852396953763045D0*Z(13))+0.959162 &3347824002D0*Z(12)+(-0.315042193418466D0*Z(11))+(-0.14739952092889 &45D0*Z(10))+(-0.08249492560213524D0*Z(9))+0.2171103102175198D0*Z(8 &)+(-0.03769663291725935D0*Z(7))+(-0.05034242196614937D0*Z(6))+(-0. &01445079632086177D0*Z(5))+0.02947046460707379D0*Z(4)+(-0.002512226 &501941856D0*Z(3))+(-0.001822737697581869D0*Z(2))+0.045563697677763 &75D0*Z(1) W(13)=0.09089205517109111D0*Z(16)+(-0.09033531980693314D0*Z(15))+( &-0.3241503380268184D0*Z(14))+0.8600427128450191D0*Z(13)+(-0.305169 &742604165D0*Z(12))+(-0.1280829963720053D0*Z(11))+(-0.0663087451453 &5952D0*Z(10))+0.2012230497530726D0*Z(9)+(-0.04353074206076491D0*Z( &8))+(-0.05051817793156355D0*Z(7))+(-0.014224695935687D0*Z(6))+0.05 &468897337339577D0*Z(5)+(-0.01965809746040371D0*Z(4))+(-0.016234277 &35779699D0*Z(3))+0.005239165960779299D0*Z(2)+0.05141563713660119D0 &*Z(1) W(14)=(-0.02986582812574917D0*Z(16))+(-0.2995429545781457D0*Z(15)) &+0.8892996132269974D0*Z(14)+(-0.3523683853026259D0*Z(13))+(-0.1236 &679206156403D0*Z(12))+(-0.05760560341383113D0*Z(11))+0.20910979278 &87612D0*Z(10)+(-0.04901428822579872D0*Z(9))+(-0.05483186562035512D &0*Z(8))+(-0.01632133125029967D0*Z(7))+0.05375944956767728D0*Z(6)+0 &.002033305231024948D0*Z(5)+(-0.03032392238968179D0*Z(4))+(-0.00660 &7305534689702D0*Z(3))+0.02021603150122265D0*Z(2)+0.033711981971903 &02D0*Z(1) W(15)=(-0.2419652703415429D0*Z(16))+0.9128222941872173D0*Z(15)+(-0 &.3244016605667343D0*Z(14))+(-0.1688977368984641D0*Z(13))+(-0.05325 &555586632358D0*Z(12))+0.2176561076571465D0*Z(11)+(-0.0415311995556 &9051D0*Z(10))+(-0.06095390688679697D0*Z(9))+(-0.01981532388243379D &0*Z(8))+0.05258889186338282D0*Z(7)+0.00157466157362272D0*Z(6)+(-0. &0135713672105995D0*Z(5))+(-0.01764072463999744D0*Z(4))+0.010940122 &10519586D0*Z(3)+0.008812321197398072D0*Z(2)+0.0227345011107737D0*Z &(1) W(16)=1.019463911841327D0*Z(16)+(-0.2803531651057233D0*Z(15))+(-0. &1165300508238904D0*Z(14))+(-0.1385343580686922D0*Z(13))+0.22647669 &47290192D0*Z(12)+(-0.02434652144032987D0*Z(11))+(-0.04723268012114 &625D0*Z(10))+(-0.03586220812223305D0*Z(9))+0.04932374658377151D0*Z &(8)+0.00372306473653087D0*Z(7)+(-0.01219194009813166D0*Z(6))+(-0.0 &07005540882865317D0*Z(5))+0.002957434991769087D0*Z(4)+0.0021069739 &00813502D0*Z(3)+0.001747395874954051D0*Z(2)+0.01707454969713436D0* &Z(1) RETURN END\\end{verbatim}")))
NIL
NIL
-(-69 -3503)
+(-69 -3504)
((|constructor| (NIL "\\spadtype{Asp29} produces Fortran for Type 29 ASPs,{} needed for NAG routine \\axiomOpFrom{f02fjf}{f02Package},{} for example:\\begin{verbatim} SUBROUTINE MONIT(ISTATE,NEXTIT,NEVALS,NEVECS,K,F,D) DOUBLE PRECISION D(K),F(K) INTEGER K,NEXTIT,NEVALS,NVECS,ISTATE CALL F02FJZ(ISTATE,NEXTIT,NEVALS,NEVECS,K,F,D) RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP29}.")))
NIL
NIL
-(-70 -3503)
+(-70 -3504)
((|constructor| (NIL "\\spadtype{Asp30} produces Fortran for Type 30 ASPs,{} needed for NAG routine \\axiomOpFrom{f04qaf}{f04Package},{} for example:\\begin{verbatim} SUBROUTINE APROD(MODE,M,N,X,Y,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION X(N),Y(M),RWORK(LRWORK) INTEGER M,N,LIWORK,IFAIL,LRWORK,IWORK(LIWORK),MODE DOUBLE PRECISION A(5,5) EXTERNAL F06PAF A(1,1)=1.0D0 A(1,2)=0.0D0 A(1,3)=0.0D0 A(1,4)=-1.0D0 A(1,5)=0.0D0 A(2,1)=0.0D0 A(2,2)=1.0D0 A(2,3)=0.0D0 A(2,4)=0.0D0 A(2,5)=-1.0D0 A(3,1)=0.0D0 A(3,2)=0.0D0 A(3,3)=1.0D0 A(3,4)=-1.0D0 A(3,5)=0.0D0 A(4,1)=-1.0D0 A(4,2)=0.0D0 A(4,3)=-1.0D0 A(4,4)=4.0D0 A(4,5)=-1.0D0 A(5,1)=0.0D0 A(5,2)=-1.0D0 A(5,3)=0.0D0 A(5,4)=-1.0D0 A(5,5)=4.0D0 IF(MODE.EQ.1)THEN CALL F06PAF('N',M,N,1.0D0,A,M,X,1,1.0D0,Y,1) ELSEIF(MODE.EQ.2)THEN CALL F06PAF('T',M,N,1.0D0,A,M,Y,1,1.0D0,X,1) ENDIF RETURN END\\end{verbatim}")))
NIL
NIL
-(-71 -3503)
+(-71 -3504)
((|constructor| (NIL "\\spadtype{Asp31} produces Fortran for Type 31 ASPs,{} needed for NAG routine \\axiomOpFrom{d02ejf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE PEDERV(X,Y,PW) DOUBLE PRECISION X,Y(*) DOUBLE PRECISION PW(3,3) PW(1,1)=-0.03999999999999999D0 PW(1,2)=10000.0D0*Y(3) PW(1,3)=10000.0D0*Y(2) PW(2,1)=0.03999999999999999D0 PW(2,2)=(-10000.0D0*Y(3))+(-60000000.0D0*Y(2)) PW(2,3)=-10000.0D0*Y(2) PW(3,1)=0.0D0 PW(3,2)=60000000.0D0*Y(2) PW(3,3)=0.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-72 -3503)
+(-72 -3504)
((|constructor| (NIL "\\spadtype{Asp33} produces Fortran for Type 33 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package}. The code is a dummy ASP:\\begin{verbatim} SUBROUTINE REPORT(X,V,JINT) DOUBLE PRECISION V(3),X INTEGER JINT RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP33}.")))
NIL
NIL
-(-73 -3503)
+(-73 -3504)
((|constructor| (NIL "\\spadtype{Asp34} produces Fortran for Type 34 ASPs,{} needed for NAG routine \\axiomOpFrom{f04mbf}{f04Package},{} for example:\\begin{verbatim} SUBROUTINE MSOLVE(IFLAG,N,X,Y,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION RWORK(LRWORK),X(N),Y(N) INTEGER I,J,N,LIWORK,IFLAG,LRWORK,IWORK(LIWORK) DOUBLE PRECISION W1(3),W2(3),MS(3,3) IFLAG=-1 MS(1,1)=2.0D0 MS(1,2)=1.0D0 MS(1,3)=0.0D0 MS(2,1)=1.0D0 MS(2,2)=2.0D0 MS(2,3)=1.0D0 MS(3,1)=0.0D0 MS(3,2)=1.0D0 MS(3,3)=2.0D0 CALL F04ASF(MS,N,X,N,Y,W1,W2,IFLAG) IFLAG=-IFLAG RETURN END\\end{verbatim}")))
NIL
NIL
-(-74 -3503)
+(-74 -3504)
((|constructor| (NIL "\\spadtype{Asp35} produces Fortran for Type 35 ASPs,{} needed for NAG routines \\axiomOpFrom{c05pbf}{c05Package},{} \\axiomOpFrom{c05pcf}{c05Package},{} for example:\\begin{verbatim} SUBROUTINE FCN(N,X,FVEC,FJAC,LDFJAC,IFLAG) DOUBLE PRECISION X(N),FVEC(N),FJAC(LDFJAC,N) INTEGER LDFJAC,N,IFLAG IF(IFLAG.EQ.1)THEN FVEC(1)=(-1.0D0*X(2))+X(1) FVEC(2)=(-1.0D0*X(3))+2.0D0*X(2) FVEC(3)=3.0D0*X(3) ELSEIF(IFLAG.EQ.2)THEN FJAC(1,1)=1.0D0 FJAC(1,2)=-1.0D0 FJAC(1,3)=0.0D0 FJAC(2,1)=0.0D0 FJAC(2,2)=2.0D0 FJAC(2,3)=-1.0D0 FJAC(3,1)=0.0D0 FJAC(3,2)=0.0D0 FJAC(3,3)=3.0D0 ENDIF END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
@@ -236,55 +236,55 @@ NIL
((|constructor| (NIL "\\spadtype{Asp42} produces Fortran for Type 42 ASPs,{} needed for NAG routines \\axiomOpFrom{d02raf}{d02Package} and \\axiomOpFrom{d02saf}{d02Package} in particular. These ASPs are in fact three Fortran routines which return a vector of functions,{} and their derivatives \\spad{wrt} \\spad{Y}(\\spad{i}) and also a continuation parameter EPS,{} for example:\\begin{verbatim} SUBROUTINE G(EPS,YA,YB,BC,N) DOUBLE PRECISION EPS,YA(N),YB(N),BC(N) INTEGER N BC(1)=YA(1) BC(2)=YA(2) BC(3)=YB(2)-1.0D0 RETURN END SUBROUTINE JACOBG(EPS,YA,YB,AJ,BJ,N) DOUBLE PRECISION EPS,YA(N),AJ(N,N),BJ(N,N),YB(N) INTEGER N AJ(1,1)=1.0D0 AJ(1,2)=0.0D0 AJ(1,3)=0.0D0 AJ(2,1)=0.0D0 AJ(2,2)=1.0D0 AJ(2,3)=0.0D0 AJ(3,1)=0.0D0 AJ(3,2)=0.0D0 AJ(3,3)=0.0D0 BJ(1,1)=0.0D0 BJ(1,2)=0.0D0 BJ(1,3)=0.0D0 BJ(2,1)=0.0D0 BJ(2,2)=0.0D0 BJ(2,3)=0.0D0 BJ(3,1)=0.0D0 BJ(3,2)=1.0D0 BJ(3,3)=0.0D0 RETURN END SUBROUTINE JACGEP(EPS,YA,YB,BCEP,N) DOUBLE PRECISION EPS,YA(N),YB(N),BCEP(N) INTEGER N BCEP(1)=0.0D0 BCEP(2)=0.0D0 BCEP(3)=0.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE EPS)) (|construct| (QUOTE YA) (QUOTE YB)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-77 -3503)
+(-77 -3504)
((|constructor| (NIL "\\spadtype{Asp49} produces Fortran for Type 49 ASPs,{} needed for NAG routines \\axiomOpFrom{e04dgf}{e04Package},{} \\axiomOpFrom{e04ucf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE OBJFUN(MODE,N,X,OBJF,OBJGRD,NSTATE,IUSER,USER) DOUBLE PRECISION X(N),OBJF,OBJGRD(N),USER(*) INTEGER N,IUSER(*),MODE,NSTATE OBJF=X(4)*X(9)+((-1.0D0*X(5))+X(3))*X(8)+((-1.0D0*X(3))+X(1))*X(7) &+(-1.0D0*X(2)*X(6)) OBJGRD(1)=X(7) OBJGRD(2)=-1.0D0*X(6) OBJGRD(3)=X(8)+(-1.0D0*X(7)) OBJGRD(4)=X(9) OBJGRD(5)=-1.0D0*X(8) OBJGRD(6)=-1.0D0*X(2) OBJGRD(7)=(-1.0D0*X(3))+X(1) OBJGRD(8)=(-1.0D0*X(5))+X(3) OBJGRD(9)=X(4) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-78 -3503)
+(-78 -3504)
((|constructor| (NIL "\\spadtype{Asp4} produces Fortran for Type 4 ASPs,{} which take an expression in \\spad{X}(1) .. \\spad{X}(NDIM) and produce a real function of the form:\\begin{verbatim} DOUBLE PRECISION FUNCTION FUNCTN(NDIM,X) DOUBLE PRECISION X(NDIM) INTEGER NDIM FUNCTN=(4.0D0*X(1)*X(3)**2*DEXP(2.0D0*X(1)*X(3)))/(X(4)**2+(2.0D0* &X(2)+2.0D0)*X(4)+X(2)**2+2.0D0*X(2)+1.0D0) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-79 -3503)
+(-79 -3504)
((|constructor| (NIL "\\spadtype{Asp50} produces Fortran for Type 50 ASPs,{} needed for NAG routine \\axiomOpFrom{e04fdf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE LSFUN1(M,N,XC,FVECC) DOUBLE PRECISION FVECC(M),XC(N) INTEGER I,M,N FVECC(1)=((XC(1)-2.4D0)*XC(3)+(15.0D0*XC(1)-36.0D0)*XC(2)+1.0D0)/( &XC(3)+15.0D0*XC(2)) FVECC(2)=((XC(1)-2.8D0)*XC(3)+(7.0D0*XC(1)-19.6D0)*XC(2)+1.0D0)/(X &C(3)+7.0D0*XC(2)) FVECC(3)=((XC(1)-3.2D0)*XC(3)+(4.333333333333333D0*XC(1)-13.866666 &66666667D0)*XC(2)+1.0D0)/(XC(3)+4.333333333333333D0*XC(2)) FVECC(4)=((XC(1)-3.5D0)*XC(3)+(3.0D0*XC(1)-10.5D0)*XC(2)+1.0D0)/(X &C(3)+3.0D0*XC(2)) FVECC(5)=((XC(1)-3.9D0)*XC(3)+(2.2D0*XC(1)-8.579999999999998D0)*XC &(2)+1.0D0)/(XC(3)+2.2D0*XC(2)) FVECC(6)=((XC(1)-4.199999999999999D0)*XC(3)+(1.666666666666667D0*X &C(1)-7.0D0)*XC(2)+1.0D0)/(XC(3)+1.666666666666667D0*XC(2)) FVECC(7)=((XC(1)-4.5D0)*XC(3)+(1.285714285714286D0*XC(1)-5.7857142 &85714286D0)*XC(2)+1.0D0)/(XC(3)+1.285714285714286D0*XC(2)) FVECC(8)=((XC(1)-4.899999999999999D0)*XC(3)+(XC(1)-4.8999999999999 &99D0)*XC(2)+1.0D0)/(XC(3)+XC(2)) FVECC(9)=((XC(1)-4.699999999999999D0)*XC(3)+(XC(1)-4.6999999999999 &99D0)*XC(2)+1.285714285714286D0)/(XC(3)+XC(2)) FVECC(10)=((XC(1)-6.8D0)*XC(3)+(XC(1)-6.8D0)*XC(2)+1.6666666666666 &67D0)/(XC(3)+XC(2)) FVECC(11)=((XC(1)-8.299999999999999D0)*XC(3)+(XC(1)-8.299999999999 &999D0)*XC(2)+2.2D0)/(XC(3)+XC(2)) FVECC(12)=((XC(1)-10.6D0)*XC(3)+(XC(1)-10.6D0)*XC(2)+3.0D0)/(XC(3) &+XC(2)) FVECC(13)=((XC(1)-1.34D0)*XC(3)+(XC(1)-1.34D0)*XC(2)+4.33333333333 &3333D0)/(XC(3)+XC(2)) FVECC(14)=((XC(1)-2.1D0)*XC(3)+(XC(1)-2.1D0)*XC(2)+7.0D0)/(XC(3)+X &C(2)) FVECC(15)=((XC(1)-4.39D0)*XC(3)+(XC(1)-4.39D0)*XC(2)+15.0D0)/(XC(3 &)+XC(2)) END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-80 -3503)
+(-80 -3504)
((|constructor| (NIL "\\spadtype{Asp55} produces Fortran for Type 55 ASPs,{} needed for NAG routines \\axiomOpFrom{e04dgf}{e04Package} and \\axiomOpFrom{e04ucf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE CONFUN(MODE,NCNLN,N,NROWJ,NEEDC,X,C,CJAC,NSTATE,IUSER &,USER) DOUBLE PRECISION C(NCNLN),X(N),CJAC(NROWJ,N),USER(*) INTEGER N,IUSER(*),NEEDC(NCNLN),NROWJ,MODE,NCNLN,NSTATE IF(NEEDC(1).GT.0)THEN C(1)=X(6)**2+X(1)**2 CJAC(1,1)=2.0D0*X(1) CJAC(1,2)=0.0D0 CJAC(1,3)=0.0D0 CJAC(1,4)=0.0D0 CJAC(1,5)=0.0D0 CJAC(1,6)=2.0D0*X(6) ENDIF IF(NEEDC(2).GT.0)THEN C(2)=X(2)**2+(-2.0D0*X(1)*X(2))+X(1)**2 CJAC(2,1)=(-2.0D0*X(2))+2.0D0*X(1) CJAC(2,2)=2.0D0*X(2)+(-2.0D0*X(1)) CJAC(2,3)=0.0D0 CJAC(2,4)=0.0D0 CJAC(2,5)=0.0D0 CJAC(2,6)=0.0D0 ENDIF IF(NEEDC(3).GT.0)THEN C(3)=X(3)**2+(-2.0D0*X(1)*X(3))+X(2)**2+X(1)**2 CJAC(3,1)=(-2.0D0*X(3))+2.0D0*X(1) CJAC(3,2)=2.0D0*X(2) CJAC(3,3)=2.0D0*X(3)+(-2.0D0*X(1)) CJAC(3,4)=0.0D0 CJAC(3,5)=0.0D0 CJAC(3,6)=0.0D0 ENDIF RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-81 -3503)
+(-81 -3504)
((|constructor| (NIL "\\spadtype{Asp6} produces Fortran for Type 6 ASPs,{} needed for NAG routines \\axiomOpFrom{c05nbf}{c05Package},{} \\axiomOpFrom{c05ncf}{c05Package}. These represent vectors of functions of \\spad{X}(\\spad{i}) and look like:\\begin{verbatim} SUBROUTINE FCN(N,X,FVEC,IFLAG) DOUBLE PRECISION X(N),FVEC(N) INTEGER N,IFLAG FVEC(1)=(-2.0D0*X(2))+(-2.0D0*X(1)**2)+3.0D0*X(1)+1.0D0 FVEC(2)=(-2.0D0*X(3))+(-2.0D0*X(2)**2)+3.0D0*X(2)+(-1.0D0*X(1))+1. &0D0 FVEC(3)=(-2.0D0*X(4))+(-2.0D0*X(3)**2)+3.0D0*X(3)+(-1.0D0*X(2))+1. &0D0 FVEC(4)=(-2.0D0*X(5))+(-2.0D0*X(4)**2)+3.0D0*X(4)+(-1.0D0*X(3))+1. &0D0 FVEC(5)=(-2.0D0*X(6))+(-2.0D0*X(5)**2)+3.0D0*X(5)+(-1.0D0*X(4))+1. &0D0 FVEC(6)=(-2.0D0*X(7))+(-2.0D0*X(6)**2)+3.0D0*X(6)+(-1.0D0*X(5))+1. &0D0 FVEC(7)=(-2.0D0*X(8))+(-2.0D0*X(7)**2)+3.0D0*X(7)+(-1.0D0*X(6))+1. &0D0 FVEC(8)=(-2.0D0*X(9))+(-2.0D0*X(8)**2)+3.0D0*X(8)+(-1.0D0*X(7))+1. &0D0 FVEC(9)=(-2.0D0*X(9)**2)+3.0D0*X(9)+(-1.0D0*X(8))+1.0D0 RETURN END\\end{verbatim}")))
NIL
NIL
-(-82 -3503)
+(-82 -3504)
((|constructor| (NIL "\\spadtype{Asp73} produces Fortran for Type 73 ASPs,{} needed for NAG routine \\axiomOpFrom{d03eef}{d03Package},{} for example:\\begin{verbatim} SUBROUTINE PDEF(X,Y,ALPHA,BETA,GAMMA,DELTA,EPSOLN,PHI,PSI) DOUBLE PRECISION ALPHA,EPSOLN,PHI,X,Y,BETA,DELTA,GAMMA,PSI ALPHA=DSIN(X) BETA=Y GAMMA=X*Y DELTA=DCOS(X)*DSIN(Y) EPSOLN=Y+X PHI=X PSI=Y RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X) (QUOTE Y)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-83 -3503)
+(-83 -3504)
((|constructor| (NIL "\\spadtype{Asp74} produces Fortran for Type 74 ASPs,{} needed for NAG routine \\axiomOpFrom{d03eef}{d03Package},{} for example:\\begin{verbatim} SUBROUTINE BNDY(X,Y,A,B,C,IBND) DOUBLE PRECISION A,B,C,X,Y INTEGER IBND IF(IBND.EQ.0)THEN A=0.0D0 B=1.0D0 C=-1.0D0*DSIN(X) ELSEIF(IBND.EQ.1)THEN A=1.0D0 B=0.0D0 C=DSIN(X)*DSIN(Y) ELSEIF(IBND.EQ.2)THEN A=1.0D0 B=0.0D0 C=DSIN(X)*DSIN(Y) ELSEIF(IBND.EQ.3)THEN A=0.0D0 B=1.0D0 C=-1.0D0*DSIN(Y) ENDIF END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE X) (QUOTE Y)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-84 -3503)
+(-84 -3504)
((|constructor| (NIL "\\spadtype{Asp77} produces Fortran for Type 77 ASPs,{} needed for NAG routine \\axiomOpFrom{d02gbf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE FCNF(X,F) DOUBLE PRECISION X DOUBLE PRECISION F(2,2) F(1,1)=0.0D0 F(1,2)=1.0D0 F(2,1)=0.0D0 F(2,2)=-10.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-85 -3503)
+(-85 -3504)
((|constructor| (NIL "\\spadtype{Asp78} produces Fortran for Type 78 ASPs,{} needed for NAG routine \\axiomOpFrom{d02gbf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE FCNG(X,G) DOUBLE PRECISION G(*),X G(1)=0.0D0 G(2)=0.0D0 END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-86 -3503)
+(-86 -3504)
((|constructor| (NIL "\\spadtype{Asp7} produces Fortran for Type 7 ASPs,{} needed for NAG routines \\axiomOpFrom{d02bbf}{d02Package},{} \\axiomOpFrom{d02gaf}{d02Package}. These represent a vector of functions of the scalar \\spad{X} and the array \\spad{Z},{} and look like:\\begin{verbatim} SUBROUTINE FCN(X,Z,F) DOUBLE PRECISION F(*),X,Z(*) F(1)=DTAN(Z(3)) F(2)=((-0.03199999999999999D0*DCOS(Z(3))*DTAN(Z(3)))+(-0.02D0*Z(2) &**2))/(Z(2)*DCOS(Z(3))) F(3)=-0.03199999999999999D0/(X*Z(2)**2) RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-87 -3503)
+(-87 -3504)
((|constructor| (NIL "\\spadtype{Asp80} produces Fortran for Type 80 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE BDYVAL(XL,XR,ELAM,YL,YR) DOUBLE PRECISION ELAM,XL,YL(3),XR,YR(3) YL(1)=XL YL(2)=2.0D0 YR(1)=1.0D0 YR(2)=-1.0D0*DSQRT(XR+(-1.0D0*ELAM)) RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-88 -3503)
+(-88 -3504)
((|constructor| (NIL "\\spadtype{Asp8} produces Fortran for Type 8 ASPs,{} needed for NAG routine \\axiomOpFrom{d02bbf}{d02Package}. This ASP prints intermediate values of the computed solution of an ODE and might look like:\\begin{verbatim} SUBROUTINE OUTPUT(XSOL,Y,COUNT,M,N,RESULT,FORWRD) DOUBLE PRECISION Y(N),RESULT(M,N),XSOL INTEGER M,N,COUNT LOGICAL FORWRD DOUBLE PRECISION X02ALF,POINTS(8) EXTERNAL X02ALF INTEGER I POINTS(1)=1.0D0 POINTS(2)=2.0D0 POINTS(3)=3.0D0 POINTS(4)=4.0D0 POINTS(5)=5.0D0 POINTS(6)=6.0D0 POINTS(7)=7.0D0 POINTS(8)=8.0D0 COUNT=COUNT+1 DO 25001 I=1,N RESULT(COUNT,I)=Y(I)25001 CONTINUE IF(COUNT.EQ.M)THEN IF(FORWRD)THEN XSOL=X02ALF() ELSE XSOL=-X02ALF() ENDIF ELSE XSOL=POINTS(COUNT) ENDIF END\\end{verbatim}")))
NIL
NIL
-(-89 -3503)
+(-89 -3504)
((|constructor| (NIL "\\spadtype{Asp9} produces Fortran for Type 9 ASPs,{} needed for NAG routines \\axiomOpFrom{d02bhf}{d02Package},{} \\axiomOpFrom{d02cjf}{d02Package},{} \\axiomOpFrom{d02ejf}{d02Package}. These ASPs represent a function of a scalar \\spad{X} and a vector \\spad{Y},{} for example:\\begin{verbatim} DOUBLE PRECISION FUNCTION G(X,Y) DOUBLE PRECISION X,Y(*) G=X+Y(1) RETURN END\\end{verbatim} If the user provides a constant value for \\spad{G},{} then extra information is added via COMMON blocks used by certain routines. This specifies that the value returned by \\spad{G} in this case is to be ignored.")) (|coerce| (($ (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
@@ -294,7 +294,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-368))))
(-91 S)
((|constructor| (NIL "A stack represented as a flexible array.")) (|arrayStack| (($ (|List| |#1|)) "\\spad{arrayStack([x,y,...,z])} creates an array stack with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last element \\spad{z}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-92 S)
((|constructor| (NIL "This is the category of Spad abstract syntax trees.")))
@@ -318,15 +318,15 @@ NIL
NIL
(-97)
((|constructor| (NIL "\\axiomType{AttributeButtons} implements a database and associated adjustment mechanisms for a set of attributes. \\blankline For ODEs these attributes are \"stiffness\",{} \"stability\" (\\spadignore{i.e.} how much affect the cosine or sine component of the solution has on the stability of the result),{} \"accuracy\" and \"expense\" (\\spadignore{i.e.} how expensive is the evaluation of the ODE). All these have bearing on the cost of calculating the solution given that reducing the step-length to achieve greater accuracy requires considerable number of evaluations and calculations. \\blankline The effect of each of these attributes can be altered by increasing or decreasing the button value. \\blankline For Integration there is a button for increasing and decreasing the preset number of function evaluations for each method. This is automatically used by ANNA when a method fails due to insufficient workspace or where the limit of function evaluations has been reached before the required accuracy is achieved. \\blankline")) (|setButtonValue| (((|Float|) (|String|) (|String|) (|Float|)) "\\axiom{setButtonValue(attributeName,{}routineName,{}\\spad{n})} sets the value of the button of attribute \\spad{attributeName} to routine \\spad{routineName} to \\spad{n}. \\spad{n} must be in the range [0..1]. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|Float|)) "\\axiom{setButtonValue(attributeName,{}\\spad{n})} sets the value of all buttons of attribute \\spad{attributeName} to \\spad{n}. \\spad{n} must be in the range [0..1]. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|setAttributeButtonStep| (((|Float|) (|Float|)) "\\axiom{setAttributeButtonStep(\\spad{n})} sets the value of the steps for increasing and decreasing the button values. \\axiom{\\spad{n}} must be greater than 0 and less than 1. The preset value is 0.5.")) (|resetAttributeButtons| (((|Void|)) "\\axiom{resetAttributeButtons()} resets the Attribute buttons to a neutral level.")) (|getButtonValue| (((|Float|) (|String|) (|String|)) "\\axiom{getButtonValue(routineName,{}attributeName)} returns the current value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|decrease| (((|Float|) (|String|)) "\\axiom{decrease(attributeName)} decreases the value for the effect of the attribute \\axiom{attributeName} with all routines. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|String|)) "\\axiom{decrease(routineName,{}attributeName)} decreases the value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|increase| (((|Float|) (|String|)) "\\axiom{increase(attributeName)} increases the value for the effect of the attribute \\axiom{attributeName} with all routines. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|String|)) "\\axiom{increase(routineName,{}attributeName)} increases the value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")))
-((-4448 . T))
+((-4449 . T))
NIL
(-98)
((|constructor| (NIL "This category exports the attributes in the AXIOM Library")) (|canonical| ((|attribute|) "\\spad{canonical} is \\spad{true} if and only if distinct elements have distinct data structures. For example,{} a domain of mathematical objects which has the \\spad{canonical} attribute means that two objects are mathematically equal if and only if their data structures are equal.")) (|multiplicativeValuation| ((|attribute|) "\\spad{multiplicativeValuation} implies \\spad{euclideanSize(a*b)=euclideanSize(a)*euclideanSize(b)}.")) (|additiveValuation| ((|attribute|) "\\spad{additiveValuation} implies \\spad{euclideanSize(a*b)=euclideanSize(a)+euclideanSize(b)}.")) (|noetherian| ((|attribute|) "\\spad{noetherian} is \\spad{true} if all of its ideals are finitely generated.")) (|central| ((|attribute|) "\\spad{central} is \\spad{true} if,{} given an algebra over a ring \\spad{R},{} the image of \\spad{R} is the center of the algebra,{} \\spadignore{i.e.} the set of members of the algebra which commute with all others is precisely the image of \\spad{R} in the algebra.")) (|partiallyOrderedSet| ((|attribute|) "\\spad{partiallyOrderedSet} is \\spad{true} if a set with \\spadop{<} which is transitive,{} but \\spad{not(a < b or a = b)} does not necessarily imply \\spad{b<a}.")) (|arbitraryPrecision| ((|attribute|) "\\spad{arbitraryPrecision} means the user can set the precision for subsequent calculations.")) (|canonicalsClosed| ((|attribute|) "\\spad{canonicalsClosed} is \\spad{true} if \\spad{unitCanonical(a)*unitCanonical(b) = unitCanonical(a*b)}.")) (|canonicalUnitNormal| ((|attribute|) "\\spad{canonicalUnitNormal} is \\spad{true} if we can choose a canonical representative for each class of associate elements,{} that is \\spad{associates?(a,b)} returns \\spad{true} if and only if \\spad{unitCanonical(a) = unitCanonical(b)}.")) (|noZeroDivisors| ((|attribute|) "\\spad{noZeroDivisors} is \\spad{true} if \\spad{x * y \\~~= 0} implies both \\spad{x} and \\spad{y} are non-zero.")) (|rightUnitary| ((|attribute|) "\\spad{rightUnitary} is \\spad{true} if \\spad{x * 1 = x} for all \\spad{x}.")) (|leftUnitary| ((|attribute|) "\\spad{leftUnitary} is \\spad{true} if \\spad{1 * x = x} for all \\spad{x}.")) (|unitsKnown| ((|attribute|) "\\spad{unitsKnown} is \\spad{true} if a monoid (a multiplicative semigroup with a 1) has \\spad{unitsKnown} means that the operation \\spadfun{recip} can only return \"failed\" if its argument is not a unit.")) (|shallowlyMutable| ((|attribute|) "\\spad{shallowlyMutable} is \\spad{true} if its values have immediate components that are updateable (mutable). Note: the properties of any component domain are irrevelant to the \\spad{shallowlyMutable} proper.")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} is \\spad{true} if it has an operation \\spad{\"*\": (D,D) -> D} which is commutative.")) (|finiteAggregate| ((|attribute|) "\\spad{finiteAggregate} is \\spad{true} if it is an aggregate with a finite number of elements.")))
-((-4448 . T) ((-4450 "*") . T) (-4449 . T) (-4445 . T) (-4443 . T) (-4442 . T) (-4441 . T) (-4446 . T) (-4440 . T) (-4439 . T) (-4438 . T) (-4437 . T) (-4436 . T) (-4444 . T) (-4447 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4435 . T))
+((-4449 . T) ((-4451 "*") . T) (-4450 . T) (-4446 . T) (-4444 . T) (-4443 . T) (-4442 . T) (-4447 . T) (-4441 . T) (-4440 . T) (-4439 . T) (-4438 . T) (-4437 . T) (-4445 . T) (-4448 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4436 . T))
NIL
(-99 R)
((|constructor| (NIL "Automorphism \\spad{R} is the multiplicative group of automorphisms of \\spad{R}.")) (|morphism| (($ (|Mapping| |#1| |#1| (|Integer|))) "\\spad{morphism(f)} returns the morphism given by \\spad{f^n(x) = f(x,n)}.") (($ (|Mapping| |#1| |#1|) (|Mapping| |#1| |#1|)) "\\spad{morphism(f, g)} returns the invertible morphism given by \\spad{f},{} where \\spad{g} is the inverse of \\spad{f}..") (($ (|Mapping| |#1| |#1|)) "\\spad{morphism(f)} returns the non-invertible morphism given by \\spad{f}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-100 R UP)
((|constructor| (NIL "This package provides balanced factorisations of polynomials.")) (|balancedFactorisation| (((|Factored| |#2|) |#2| (|List| |#2|)) "\\spad{balancedFactorisation(a, [b1,...,bn])} returns a factorisation \\spad{a = p1^e1 ... pm^em} such that each \\spad{pi} is balanced with respect to \\spad{[b1,...,bm]}.") (((|Factored| |#2|) |#2| |#2|) "\\spad{balancedFactorisation(a, b)} returns a factorisation \\spad{a = p1^e1 ... pm^em} such that each \\spad{pi} is balanced with respect to \\spad{b}.")))
@@ -342,15 +342,15 @@ NIL
NIL
(-103 S)
((|constructor| (NIL "\\spadtype{BalancedBinaryTree(S)} is the domain of balanced binary trees (bbtree). A balanced binary tree of \\spad{2**k} leaves,{} for some \\spad{k > 0},{} is symmetric,{} that is,{} the left and right subtree of each interior node have identical shape. In general,{} the left and right subtree of a given node can differ by at most leaf node.")) (|mapDown!| (($ $ |#1| (|Mapping| (|List| |#1|) |#1| |#1| |#1|)) "\\spad{mapDown!(t,p,f)} returns \\spad{t} after traversing \\spad{t} in \"preorder\" (node then left then right) fashion replacing the successive interior nodes as follows. Let \\spad{l} and \\spad{r} denote the left and right subtrees of \\spad{t}. The root value \\spad{x} of \\spad{t} is replaced by \\spad{p}. Then \\spad{f}(value \\spad{l},{} value \\spad{r},{} \\spad{p}),{} where \\spad{l} and \\spad{r} denote the left and right subtrees of \\spad{t},{} is evaluated producing two values \\spad{pl} and \\spad{pr}. Then \\spad{mapDown!(l,pl,f)} and \\spad{mapDown!(l,pr,f)} are evaluated.") (($ $ |#1| (|Mapping| |#1| |#1| |#1|)) "\\spad{mapDown!(t,p,f)} returns \\spad{t} after traversing \\spad{t} in \"preorder\" (node then left then right) fashion replacing the successive interior nodes as follows. The root value \\spad{x} is replaced by \\spad{q} \\spad{:=} \\spad{f}(\\spad{p},{}\\spad{x}). The mapDown!(\\spad{l},{}\\spad{q},{}\\spad{f}) and mapDown!(\\spad{r},{}\\spad{q},{}\\spad{f}) are evaluated for the left and right subtrees \\spad{l} and \\spad{r} of \\spad{t}.")) (|mapUp!| (($ $ $ (|Mapping| |#1| |#1| |#1| |#1| |#1|)) "\\spad{mapUp!(t,t1,f)} traverses \\spad{t} in an \"endorder\" (left then right then node) fashion returning \\spad{t} with the value at each successive interior node of \\spad{t} replaced by \\spad{f}(\\spad{l},{}\\spad{r},{}\\spad{l1},{}\\spad{r1}) where \\spad{l} and \\spad{r} are the values at the immediate left and right nodes. Values \\spad{l1} and \\spad{r1} are values at the corresponding nodes of a balanced binary tree \\spad{t1},{} of identical shape at \\spad{t}.") ((|#1| $ (|Mapping| |#1| |#1| |#1|)) "\\spad{mapUp!(t,f)} traverses balanced binary tree \\spad{t} in an \"endorder\" (left then right then node) fashion returning \\spad{t} with the value at each successive interior node of \\spad{t} replaced by \\spad{f}(\\spad{l},{}\\spad{r}) where \\spad{l} and \\spad{r} are the values at the immediate left and right nodes.")) (|setleaves!| (($ $ (|List| |#1|)) "\\spad{setleaves!(t, ls)} sets the leaves of \\spad{t} in left-to-right order to the elements of \\spad{ls}.")) (|balancedBinaryTree| (($ (|NonNegativeInteger|) |#1|) "\\spad{balancedBinaryTree(n, s)} creates a balanced binary tree with \\spad{n} nodes each with value \\spad{s}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-104 R UP M |Row| |Col|)
((|constructor| (NIL "\\spadtype{BezoutMatrix} contains functions for computing resultants and discriminants using Bezout matrices.")) (|bezoutDiscriminant| ((|#1| |#2|) "\\spad{bezoutDiscriminant(p)} computes the discriminant of a polynomial \\spad{p} by computing the determinant of a Bezout matrix.")) (|bezoutResultant| ((|#1| |#2| |#2|) "\\spad{bezoutResultant(p,q)} computes the resultant of the two polynomials \\spad{p} and \\spad{q} by computing the determinant of a Bezout matrix.")) (|bezoutMatrix| ((|#3| |#2| |#2|) "\\spad{bezoutMatrix(p,q)} returns the Bezout matrix for the two polynomials \\spad{p} and \\spad{q}.")) (|sylvesterMatrix| ((|#3| |#2| |#2|) "\\spad{sylvesterMatrix(p,q)} returns the Sylvester matrix for the two polynomials \\spad{p} and \\spad{q}.")))
NIL
-((|HasAttribute| |#1| (QUOTE (-4450 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4451 "*"))))
(-105)
((|bfEntry| (((|Record| (|:| |zeros| (|Stream| (|DoubleFloat|))) (|:| |ones| (|Stream| (|DoubleFloat|))) (|:| |singularities| (|Stream| (|DoubleFloat|)))) (|Symbol|)) "\\spad{bfEntry(k)} returns the entry in the \\axiomType{BasicFunctions} table corresponding to \\spad{k}")) (|bfKeys| (((|List| (|Symbol|))) "\\spad{bfKeys()} returns the names of each function in the \\axiomType{BasicFunctions} table")))
-((-4448 . T))
+((-4449 . T))
NIL
(-106 A S)
((|constructor| (NIL "A bag aggregate is an aggregate for which one can insert and extract objects,{} and where the order in which objects are inserted determines the order of extraction. Examples of bags are stacks,{} queues,{} and dequeues.")) (|inspect| ((|#2| $) "\\spad{inspect(u)} returns an (random) element from a bag.")) (|insert!| (($ |#2| $) "\\spad{insert!(x,u)} inserts item \\spad{x} into bag \\spad{u}.")) (|extract!| ((|#2| $) "\\spad{extract!(u)} destructively removes a (random) item from bag \\spad{u}.")) (|bag| (($ (|List| |#2|)) "\\spad{bag([x,y,...,z])} creates a bag with elements \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.")) (|shallowlyMutable| ((|attribute|) "shallowlyMutable means that elements of bags may be destructively changed.")))
@@ -358,11 +358,11 @@ NIL
NIL
(-107 S)
((|constructor| (NIL "A bag aggregate is an aggregate for which one can insert and extract objects,{} and where the order in which objects are inserted determines the order of extraction. Examples of bags are stacks,{} queues,{} and dequeues.")) (|inspect| ((|#1| $) "\\spad{inspect(u)} returns an (random) element from a bag.")) (|insert!| (($ |#1| $) "\\spad{insert!(x,u)} inserts item \\spad{x} into bag \\spad{u}.")) (|extract!| ((|#1| $) "\\spad{extract!(u)} destructively removes a (random) item from bag \\spad{u}.")) (|bag| (($ (|List| |#1|)) "\\spad{bag([x,y,...,z])} creates a bag with elements \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.")) (|shallowlyMutable| ((|attribute|) "shallowlyMutable means that elements of bags may be destructively changed.")))
-((-4449 . T))
+((-4450 . T))
NIL
(-108)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating binary expansions.")) (|binary| (($ (|Fraction| (|Integer|))) "\\spad{binary(r)} converts a rational number to a binary expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(b)} returns the fractional part of a binary expansion.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-570) (QUOTE (-916))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-570) (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-148))) (|HasCategory| (-570) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-570) (QUOTE (-1031))) (|HasCategory| (-570) (QUOTE (-826))) (-2740 (|HasCategory| (-570) (QUOTE (-826))) (|HasCategory| (-570) (QUOTE (-856)))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-1161))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-570) (QUOTE (-235))) (|HasCategory| (-570) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-570) (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -313) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -290) (QUOTE (-570)) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-311))) (|HasCategory| (-570) (QUOTE (-551))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-570) (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
(-109)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Binding' is a name asosciated with a collection of properties.")) (|binding| (($ (|Identifier|) (|List| (|Property|))) "\\spad{binding(n,props)} constructs a binding with name \\spad{`n'} and property list `props'.")) (|properties| (((|List| (|Property|)) $) "\\spad{properties(b)} returns the properties associated with binding \\spad{b}.")) (|name| (((|Identifier|) $) "\\spad{name(b)} returns the name of binding \\spad{b}")))
@@ -370,11 +370,11 @@ NIL
NIL
(-110)
((|constructor| (NIL "\\spadtype{Bits} provides logical functions for Indexed Bits.")) (|bits| (($ (|NonNegativeInteger|) (|Boolean|)) "\\spad{bits(n,b)} creates bits with \\spad{n} values of \\spad{b}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1109))) (|HasCategory| (-112) (LIST (QUOTE -313) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-112) (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-112) (QUOTE (-1109))) (|HasCategory| (-112) (LIST (QUOTE -619) (QUOTE (-868)))))
(-111 R S)
((|constructor| (NIL "A \\spadtype{BiModule} is both a left and right module with respect to potentially different rings. \\blankline")) (|rightUnitary| ((|attribute|) "\\spad{x * 1 = x}")) (|leftUnitary| ((|attribute|) "\\spad{1 * x = x}")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
(-112)
((|constructor| (NIL "\\indented{1}{\\spadtype{Boolean} is the elementary logic with 2 values:} \\spad{true} and \\spad{false}")) (|test| (($ $) "\\spad{test(b)} returns \\spad{b} and is provided for compatibility with the new compiler.")) (|nor| (($ $ $) "\\spad{nor(a,b)} returns the logical negation of \\spad{a} or \\spad{b}.")) (|nand| (($ $ $) "\\spad{nand(a,b)} returns the logical negation of \\spad{a} and \\spad{b}.")) (|xor| (($ $ $) "\\spad{xor(a,b)} returns the logical exclusive {\\em or} of Boolean \\spad{a} and \\spad{b}.")))
@@ -398,16 +398,16 @@ NIL
NIL
(-117 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Zp:} \\spad{p}-adic numbers are represented as sum(\\spad{i} = 0..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in -(\\spad{p} - 1)\\spad{/2},{}...,{}(\\spad{p} - 1)\\spad{/2}.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-118 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Qp:} numbers are represented as sum(\\spad{i} = \\spad{k}..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in -(\\spad{p} - 1)\\spad{/2},{}...,{}(\\spad{p} - 1)\\spad{/2}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-117 |#1|) (QUOTE (-916))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-117 |#1|) (QUOTE (-146))) (|HasCategory| (-117 |#1|) (QUOTE (-148))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-117 |#1|) (QUOTE (-1031))) (|HasCategory| (-117 |#1|) (QUOTE (-826))) (-2740 (|HasCategory| (-117 |#1|) (QUOTE (-826))) (|HasCategory| (-117 |#1|) (QUOTE (-856)))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-117 |#1|) (QUOTE (-1161))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| (-117 |#1|) (QUOTE (-235))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -117) (|devaluate| |#1|)))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -313) (LIST (QUOTE -117) (|devaluate| |#1|)))) (|HasCategory| (-117 |#1|) (LIST (QUOTE -290) (LIST (QUOTE -117) (|devaluate| |#1|)) (LIST (QUOTE -117) (|devaluate| |#1|)))) (|HasCategory| (-117 |#1|) (QUOTE (-311))) (|HasCategory| (-117 |#1|) (QUOTE (-551))) (|HasCategory| (-117 |#1|) (QUOTE (-856))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-117 |#1|) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-117 |#1|) (QUOTE (-916)))) (|HasCategory| (-117 |#1|) (QUOTE (-146)))))
(-119 A S)
((|constructor| (NIL "A binary-recursive aggregate has 0,{} 1 or 2 children and serves as a model for a binary tree or a doubly-linked aggregate structure")) (|setright!| (($ $ $) "\\spad{setright!(a,x)} sets the right child of \\spad{t} to be \\spad{x}.")) (|setleft!| (($ $ $) "\\spad{setleft!(a,b)} sets the left child of \\axiom{a} to be \\spad{b}.")) (|setelt| (($ $ "right" $) "\\spad{setelt(a,\"right\",b)} (also written \\axiom{\\spad{b} . right \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setright!(a,{}\\spad{b})}.") (($ $ "left" $) "\\spad{setelt(a,\"left\",b)} (also written \\axiom{a . left \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setleft!(a,{}\\spad{b})}.")) (|right| (($ $) "\\spad{right(a)} returns the right child.")) (|elt| (($ $ "right") "\\spad{elt(a,\"right\")} (also written: \\axiom{a . right}) is equivalent to \\axiom{right(a)}.") (($ $ "left") "\\spad{elt(u,\"left\")} (also written: \\axiom{a . left}) is equivalent to \\axiom{left(a)}.")) (|left| (($ $) "\\spad{left(u)} returns the left child.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)))
+((|HasAttribute| |#1| (QUOTE -4450)))
(-120 S)
((|constructor| (NIL "A binary-recursive aggregate has 0,{} 1 or 2 children and serves as a model for a binary tree or a doubly-linked aggregate structure")) (|setright!| (($ $ $) "\\spad{setright!(a,x)} sets the right child of \\spad{t} to be \\spad{x}.")) (|setleft!| (($ $ $) "\\spad{setleft!(a,b)} sets the left child of \\axiom{a} to be \\spad{b}.")) (|setelt| (($ $ "right" $) "\\spad{setelt(a,\"right\",b)} (also written \\axiom{\\spad{b} . right \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setright!(a,{}\\spad{b})}.") (($ $ "left" $) "\\spad{setelt(a,\"left\",b)} (also written \\axiom{a . left \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setleft!(a,{}\\spad{b})}.")) (|right| (($ $) "\\spad{right(a)} returns the right child.")) (|elt| (($ $ "right") "\\spad{elt(a,\"right\")} (also written: \\axiom{a . right}) is equivalent to \\axiom{right(a)}.") (($ $ "left") "\\spad{elt(u,\"left\")} (also written: \\axiom{a . left}) is equivalent to \\axiom{left(a)}.")) (|left| (($ $) "\\spad{left(u)} returns the left child.")))
NIL
@@ -418,7 +418,7 @@ NIL
NIL
(-122 S)
((|constructor| (NIL "BinarySearchTree(\\spad{S}) is the domain of a binary trees where elements are ordered across the tree. A binary search tree is either empty or has a value which is an \\spad{S},{} and a right and left which are both BinaryTree(\\spad{S}) Elements are ordered across the tree.")) (|split| (((|Record| (|:| |less| $) (|:| |greater| $)) |#1| $) "\\spad{split(x,b)} splits binary tree \\spad{b} into two trees,{} one with elements greater than \\spad{x},{} the other with elements less than \\spad{x}.")) (|insertRoot!| (($ |#1| $) "\\spad{insertRoot!(x,b)} inserts element \\spad{x} as a root of binary search tree \\spad{b}.")) (|insert!| (($ |#1| $) "\\spad{insert!(x,b)} inserts element \\spad{x} as leaves into binary search tree \\spad{b}.")) (|binarySearchTree| (($ (|List| |#1|)) "\\spad{binarySearchTree(l)} \\undocumented")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-123 S)
((|constructor| (NIL "The bit aggregate category models aggregates representing large quantities of Boolean data.")) (|xor| (($ $ $) "\\spad{xor(a,b)} returns the logical {\\em exclusive-or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nor| (($ $ $) "\\spad{nor(a,b)} returns the logical {\\em nor} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nand| (($ $ $) "\\spad{nand(a,b)} returns the logical {\\em nand} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")))
@@ -426,7 +426,7 @@ NIL
NIL
(-124)
((|constructor| (NIL "The bit aggregate category models aggregates representing large quantities of Boolean data.")) (|xor| (($ $ $) "\\spad{xor(a,b)} returns the logical {\\em exclusive-or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nor| (($ $ $) "\\spad{nor(a,b)} returns the logical {\\em nor} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nand| (($ $ $) "\\spad{nand(a,b)} returns the logical {\\em nand} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-125 A S)
((|constructor| (NIL "\\spadtype{BinaryTreeCategory(S)} is the category of binary trees: a tree which is either empty or else is a \\spadfun{node} consisting of a value and a \\spadfun{left} and \\spadfun{right},{} both binary trees.")) (|node| (($ $ |#2| $) "\\spad{node(left,v,right)} creates a binary tree with value \\spad{v},{} a binary tree \\spad{left},{} and a binary tree \\spad{right}.")) (|finiteAggregate| ((|attribute|) "Binary trees have a finite number of components")) (|shallowlyMutable| ((|attribute|) "Binary trees have updateable components")))
@@ -434,19 +434,19 @@ NIL
NIL
(-126 S)
((|constructor| (NIL "\\spadtype{BinaryTreeCategory(S)} is the category of binary trees: a tree which is either empty or else is a \\spadfun{node} consisting of a value and a \\spadfun{left} and \\spadfun{right},{} both binary trees.")) (|node| (($ $ |#1| $) "\\spad{node(left,v,right)} creates a binary tree with value \\spad{v},{} a binary tree \\spad{left},{} and a binary tree \\spad{right}.")) (|finiteAggregate| ((|attribute|) "Binary trees have a finite number of components")) (|shallowlyMutable| ((|attribute|) "Binary trees have updateable components")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-127 S)
((|constructor| (NIL "\\spadtype{BinaryTournament(S)} is the domain of binary trees where elements are ordered down the tree. A binary search tree is either empty or is a node containing a \\spadfun{value} of type \\spad{S},{} and a \\spadfun{right} and a \\spadfun{left} which are both \\spadtype{BinaryTree(S)}")) (|insert!| (($ |#1| $) "\\spad{insert!(x,b)} inserts element \\spad{x} as leaves into binary tournament \\spad{b}.")) (|binaryTournament| (($ (|List| |#1|)) "\\spad{binaryTournament(ls)} creates a binary tournament with the elements of \\spad{ls} as values at the nodes.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-128 S)
((|constructor| (NIL "\\spadtype{BinaryTree(S)} is the domain of all binary trees. A binary tree over \\spad{S} is either empty or has a \\spadfun{value} which is an \\spad{S} and a \\spadfun{right} and \\spadfun{left} which are both binary trees.")) (|binaryTree| (($ $ |#1| $) "\\spad{binaryTree(l,v,r)} creates a binary tree with value \\spad{v} with left subtree \\spad{l} and right subtree \\spad{r}.") (($ |#1|) "\\spad{binaryTree(v)} is an non-empty binary tree with value \\spad{v},{} and left and right empty.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-129)
((|constructor| (NIL "ByteBuffer provides datatype for buffers of bytes. This domain differs from PrimitiveArray Byte in that it is not as rigid as PrimitiveArray Byte. That is,{} the typical use of ByteBuffer is to pre-allocate a vector of Byte of some capacity \\spad{`n'}. The array can then store up to \\spad{`n'} bytes. The actual interesting bytes count (the length of the buffer) is therefore different from the capacity. The length is no more than the capacity,{} but it can be set dynamically as needed. This functionality is used for example when reading bytes from input/output devices where we use buffers to transfer data in and out of the system. Note: a value of type ByteBuffer is 0-based indexed,{} as opposed \\indented{6}{Vector,{} but not unlike PrimitiveArray Byte.}")) (|finiteAggregate| ((|attribute|) "A ByteBuffer object is a finite aggregate")) (|setLength!| (((|NonNegativeInteger|) $ (|NonNegativeInteger|)) "\\spad{setLength!(buf,n)} sets the number of active bytes in the `buf'. Error if \\spad{`n'} is more than the capacity.")) (|capacity| (((|NonNegativeInteger|) $) "\\spad{capacity(buf)} returns the pre-allocated maximum size of `buf'.")) (|byteBuffer| (($ (|NonNegativeInteger|)) "\\spad{byteBuffer(n)} creates a buffer of capacity \\spad{n},{} and length 0.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| (-130) (QUOTE (-856))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130))))) (-12 (|HasCategory| (-130) (QUOTE (-1109))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130)))))) (-2740 (-12 (|HasCategory| (-130) (QUOTE (-1109))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130))))) (|HasCategory| (-130) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-130) (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| (-130) (QUOTE (-856))) (|HasCategory| (-130) (QUOTE (-1109)))) (|HasCategory| (-130) (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-130) (QUOTE (-1109))) (|HasCategory| (-130) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-130) (QUOTE (-1109))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130))))))
(-130)
((|constructor| (NIL "Byte is the datatype of 8-bit sized unsigned integer values.")) (|sample| (($) "\\spad{sample} gives a sample datum of type Byte.")) (|bitior| (($ $ $) "bitor(\\spad{x},{}\\spad{y}) returns the bitwise `inclusive or' of \\spad{`x'} and \\spad{`y'}.")) (|bitand| (($ $ $) "\\spad{bitand(x,y)} returns the bitwise `and' of \\spad{`x'} and \\spad{`y'}.")) (|byte| (($ (|NonNegativeInteger|)) "\\spad{byte(x)} injects the unsigned integer value \\spad{`v'} into the Byte algebra. \\spad{`v'} must be non-negative and less than 256.")))
@@ -470,7 +470,7 @@ NIL
NIL
(-135)
((|constructor| (NIL "Members of the domain CardinalNumber are values indicating the cardinality of sets,{} both finite and infinite. Arithmetic operations are defined on cardinal numbers as follows. \\blankline If \\spad{x = \\#X} and \\spad{y = \\#Y} then \\indented{2}{\\spad{x+y\\space{2}= \\#(X+Y)}\\space{3}\\tab{30}disjoint union} \\indented{2}{\\spad{x-y\\space{2}= \\#(X-Y)}\\space{3}\\tab{30}relative complement} \\indented{2}{\\spad{x*y\\space{2}= \\#(X*Y)}\\space{3}\\tab{30}cartesian product} \\indented{2}{\\spad{x**y = \\#(X**Y)}\\space{2}\\tab{30}\\spad{X**Y = \\{g| g:Y->X\\}}} \\blankline The non-negative integers have a natural construction as cardinals \\indented{2}{\\spad{0 = \\#\\{\\}},{} \\spad{1 = \\{0\\}},{} \\spad{2 = \\{0, 1\\}},{} ...,{} \\spad{n = \\{i| 0 <= i < n\\}}.} \\blankline That \\spad{0} acts as a zero for the multiplication of cardinals is equivalent to the axiom of choice. \\blankline The generalized continuum hypothesis asserts \\center{\\spad{2**Aleph i = Aleph(i+1)}} and is independent of the axioms of set theory [Goedel 1940]. \\blankline Three commonly encountered cardinal numbers are \\indented{3}{\\spad{a = \\#Z}\\space{7}\\tab{30}countable infinity} \\indented{3}{\\spad{c = \\#R}\\space{7}\\tab{30}the continuum} \\indented{3}{\\spad{f = \\#\\{g| g:[0,1]->R\\}}} \\blankline In this domain,{} these values are obtained using \\indented{3}{\\spad{a := Aleph 0},{} \\spad{c := 2**a},{} \\spad{f := 2**c}.} \\blankline")) (|generalizedContinuumHypothesisAssumed| (((|Boolean|) (|Boolean|)) "\\spad{generalizedContinuumHypothesisAssumed(bool)} is used to dictate whether the hypothesis is to be assumed.")) (|generalizedContinuumHypothesisAssumed?| (((|Boolean|)) "\\spad{generalizedContinuumHypothesisAssumed?()} tests if the hypothesis is currently assumed.")) (|countable?| (((|Boolean|) $) "\\spad{countable?(\\spad{a})} determines whether \\spad{a} is a countable cardinal,{} \\spadignore{i.e.} an integer or \\spad{Aleph 0}.")) (|finite?| (((|Boolean|) $) "\\spad{finite?(\\spad{a})} determines whether \\spad{a} is a finite cardinal,{} \\spadignore{i.e.} an integer.")) (|Aleph| (($ (|NonNegativeInteger|)) "\\spad{Aleph(n)} provides the named (infinite) cardinal number.")) (** (($ $ $) "\\spad{x**y} returns \\spad{\\#(X**Y)} where \\spad{X**Y} is defined \\indented{1}{as \\spad{\\{g| g:Y->X\\}}.}")) (- (((|Union| $ "failed") $ $) "\\spad{x - y} returns an element \\spad{z} such that \\spad{z+y=x} or \"failed\" if no such element exists.")) (|commutative| ((|attribute| "*") "a domain \\spad{D} has \\spad{commutative(\"*\")} if it has an operation \\spad{\"*\": (D,D) -> D} which is commutative.")))
-(((-4450 "*") . T))
+(((-4451 "*") . T))
NIL
(-136 |minix| -2408 S T$)
((|constructor| (NIL "This package provides functions to enable conversion of tensors given conversion of the components.")) (|map| (((|CartesianTensor| |#1| |#2| |#4|) (|Mapping| |#4| |#3|) (|CartesianTensor| |#1| |#2| |#3|)) "\\spad{map(f,ts)} does a componentwise conversion of the tensor \\spad{ts} to a tensor with components of type \\spad{T}.")) (|reshape| (((|CartesianTensor| |#1| |#2| |#4|) (|List| |#4|) (|CartesianTensor| |#1| |#2| |#3|)) "\\spad{reshape(lt,ts)} organizes the list of components \\spad{lt} into a tensor with the same shape as \\spad{ts}.")))
@@ -498,7 +498,7 @@ NIL
NIL
(-142)
((|constructor| (NIL "This domain allows classes of characters to be defined and manipulated efficiently.")) (|alphanumeric| (($) "\\spad{alphanumeric()} returns the class of all characters for which \\spadfunFrom{alphanumeric?}{Character} is \\spad{true}.")) (|alphabetic| (($) "\\spad{alphabetic()} returns the class of all characters for which \\spadfunFrom{alphabetic?}{Character} is \\spad{true}.")) (|lowerCase| (($) "\\spad{lowerCase()} returns the class of all characters for which \\spadfunFrom{lowerCase?}{Character} is \\spad{true}.")) (|upperCase| (($) "\\spad{upperCase()} returns the class of all characters for which \\spadfunFrom{upperCase?}{Character} is \\spad{true}.")) (|hexDigit| (($) "\\spad{hexDigit()} returns the class of all characters for which \\spadfunFrom{hexDigit?}{Character} is \\spad{true}.")) (|digit| (($) "\\spad{digit()} returns the class of all characters for which \\spadfunFrom{digit?}{Character} is \\spad{true}.")) (|charClass| (($ (|List| (|Character|))) "\\spad{charClass(l)} creates a character class which contains exactly the characters given in the list \\spad{l}.") (($ (|String|)) "\\spad{charClass(s)} creates a character class which contains exactly the characters given in the string \\spad{s}.")))
-((-4448 . T) (-4438 . T) (-4449 . T))
+((-4449 . T) (-4439 . T) (-4450 . T))
((-2740 (-12 (|HasCategory| (-145) (QUOTE (-373))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145)))))) (|HasCategory| (-145) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-145) (QUOTE (-373))) (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))))
(-143 R Q A)
((|constructor| (NIL "CommonDenominator provides functions to compute the common denominator of a finite linear aggregate of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) "\\spad{splitDenominator([q1,...,qn])} returns \\spad{[[p1,...,pn], d]} such that \\spad{qi = pi/d} and \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|clearDenominator| ((|#3| |#3|) "\\spad{clearDenominator([q1,...,qn])} returns \\spad{[p1,...,pn]} such that \\spad{qi = pi/d} where \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|commonDenominator| ((|#1| |#3|) "\\spad{commonDenominator([q1,...,qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
@@ -514,7 +514,7 @@ NIL
NIL
(-146)
((|constructor| (NIL "Rings of Characteristic Non Zero")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(x)} returns the \\spad{p}th root of \\spad{x} where \\spad{p} is the characteristic of the ring.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-147 R)
((|constructor| (NIL "This package provides a characteristicPolynomial function for any matrix over a commutative ring.")) (|characteristicPolynomial| ((|#1| (|Matrix| |#1|) |#1|) "\\spad{characteristicPolynomial(m,r)} computes the characteristic polynomial of the matrix \\spad{m} evaluated at the point \\spad{r}. In particular,{} if \\spad{r} is the polynomial \\spad{'x},{} then it returns the characteristic polynomial expressed as a polynomial in \\spad{'x}.")))
@@ -522,7 +522,7 @@ NIL
NIL
(-148)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-149 -1674 UP UPUP)
((|constructor| (NIL "Tools to send a point to infinity on an algebraic curve.")) (|chvar| (((|Record| (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (|Fraction| |#2|)) (|:| |c2| (|Fraction| |#2|)) (|:| |deg| (|NonNegativeInteger|))) |#3| |#3|) "\\spad{chvar(f(x,y), p(x,y))} returns \\spad{[g(z,t), q(z,t), c1(z), c2(z), n]} such that under the change of variable \\spad{x = c1(z)},{} \\spad{y = t * c2(z)},{} one gets \\spad{f(x,y) = g(z,t)}. The algebraic relation between \\spad{x} and \\spad{y} is \\spad{p(x, y) = 0}. The algebraic relation between \\spad{z} and \\spad{t} is \\spad{q(z, t) = 0}.")) (|eval| ((|#3| |#3| (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{eval(p(x,y), f(x), g(x))} returns \\spad{p(f(x), y * g(x))}.")) (|goodPoint| ((|#1| |#3| |#3|) "\\spad{goodPoint(p, q)} returns an integer a such that a is neither a pole of \\spad{p(x,y)} nor a branch point of \\spad{q(x,y) = 0}.")) (|rootPoly| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| (|Fraction| |#2|)) (|:| |radicand| |#2|)) (|Fraction| |#2|) (|NonNegativeInteger|)) "\\spad{rootPoly(g, n)} returns \\spad{[m, c, P]} such that \\spad{c * g ** (1/n) = P ** (1/m)} thus if \\spad{y**n = g},{} then \\spad{z**m = P} where \\spad{z = c * y}.")) (|radPoly| (((|Union| (|Record| (|:| |radicand| (|Fraction| |#2|)) (|:| |deg| (|NonNegativeInteger|))) "failed") |#3|) "\\spad{radPoly(p(x, y))} returns \\spad{[c(x), n]} if \\spad{p} is of the form \\spad{y**n - c(x)},{} \"failed\" otherwise.")) (|mkIntegral| (((|Record| (|:| |coef| (|Fraction| |#2|)) (|:| |poly| |#3|)) |#3|) "\\spad{mkIntegral(p(x,y))} returns \\spad{[c(x), q(x,z)]} such that \\spad{z = c * y} is integral. The algebraic relation between \\spad{x} and \\spad{y} is \\spad{p(x, y) = 0}. The algebraic relation between \\spad{x} and \\spad{z} is \\spad{q(x, z) = 0}.")))
@@ -535,14 +535,14 @@ NIL
(-151 A S)
((|constructor| (NIL "A collection is a homogeneous aggregate which can built from list of members. The operation used to build the aggregate is generically named \\spadfun{construct}. However,{} each collection provides its own special function with the same name as the data type,{} except with an initial lower case letter,{} \\spadignore{e.g.} \\spadfun{list} for \\spadtype{List},{} \\spadfun{flexibleArray} for \\spadtype{FlexibleArray},{} and so on.")) (|removeDuplicates| (($ $) "\\spad{removeDuplicates(u)} returns a copy of \\spad{u} with all duplicates removed.")) (|select| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select(p,u)} returns a copy of \\spad{u} containing only those elements such \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{select(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})]}.")) (|remove| (($ |#2| $) "\\spad{remove(x,u)} returns a copy of \\spad{u} with all elements \\axiom{\\spad{y} = \\spad{x}} removed. Note: \\axiom{remove(\\spad{y},{}\\spad{c}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{c} | \\spad{x} \\spad{~=} \\spad{y}]}.") (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove(p,u)} returns a copy of \\spad{u} removing all elements \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{remove(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | not \\spad{p}(\\spad{x})]}.")) (|reduce| ((|#2| (|Mapping| |#2| |#2| |#2|) $ |#2| |#2|) "\\spad{reduce(f,u,x,z)} reduces the binary operation \\spad{f} across \\spad{u},{} stopping when an \"absorbing element\" \\spad{z} is encountered. As for \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})},{} \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})} when \\spad{u} contains no element \\spad{z}. Thus the third argument \\spad{x} is returned when \\spad{u} is empty.") ((|#2| (|Mapping| |#2| |#2| |#2|) $ |#2|) "\\spad{reduce(f,u,x)} reduces the binary operation \\spad{f} across \\spad{u},{} where \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u})} if \\spad{u} has 2 or more elements. Returns \\axiom{\\spad{f}(\\spad{x},{}\\spad{y})} if \\spad{u} has one element \\spad{y},{} \\spad{x} if \\spad{u} is empty. For example,{} \\axiom{reduce(+,{}\\spad{u},{}0)} returns the sum of the elements of \\spad{u}.") ((|#2| (|Mapping| |#2| |#2| |#2|) $) "\\spad{reduce(f,u)} reduces the binary operation \\spad{f} across \\spad{u}. For example,{} if \\spad{u} is \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]} then \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\axiom{\\spad{f}(..\\spad{f}(\\spad{f}(\\spad{x},{}\\spad{y}),{}...),{}\\spad{z})}. Note: if \\spad{u} has one element \\spad{x},{} \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\spad{x}. Error: if \\spad{u} is empty.")) (|find| (((|Union| |#2| "failed") (|Mapping| (|Boolean|) |#2|) $) "\\spad{find(p,u)} returns the first \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \"failed\" otherwise.")) (|construct| (($ (|List| |#2|)) "\\axiom{construct(\\spad{x},{}\\spad{y},{}...,{}\\spad{z})} returns the collection of elements \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}} ordered as given. Equivalently written as \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]\\$\\spad{D}},{} where \\spad{D} is the domain. \\spad{D} may be omitted for those of type List.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasAttribute| |#1| (QUOTE -4448)))
+((|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasAttribute| |#1| (QUOTE -4449)))
(-152 S)
((|constructor| (NIL "A collection is a homogeneous aggregate which can built from list of members. The operation used to build the aggregate is generically named \\spadfun{construct}. However,{} each collection provides its own special function with the same name as the data type,{} except with an initial lower case letter,{} \\spadignore{e.g.} \\spadfun{list} for \\spadtype{List},{} \\spadfun{flexibleArray} for \\spadtype{FlexibleArray},{} and so on.")) (|removeDuplicates| (($ $) "\\spad{removeDuplicates(u)} returns a copy of \\spad{u} with all duplicates removed.")) (|select| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select(p,u)} returns a copy of \\spad{u} containing only those elements such \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{select(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})]}.")) (|remove| (($ |#1| $) "\\spad{remove(x,u)} returns a copy of \\spad{u} with all elements \\axiom{\\spad{y} = \\spad{x}} removed. Note: \\axiom{remove(\\spad{y},{}\\spad{c}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{c} | \\spad{x} \\spad{~=} \\spad{y}]}.") (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove(p,u)} returns a copy of \\spad{u} removing all elements \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{remove(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | not \\spad{p}(\\spad{x})]}.")) (|reduce| ((|#1| (|Mapping| |#1| |#1| |#1|) $ |#1| |#1|) "\\spad{reduce(f,u,x,z)} reduces the binary operation \\spad{f} across \\spad{u},{} stopping when an \"absorbing element\" \\spad{z} is encountered. As for \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})},{} \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})} when \\spad{u} contains no element \\spad{z}. Thus the third argument \\spad{x} is returned when \\spad{u} is empty.") ((|#1| (|Mapping| |#1| |#1| |#1|) $ |#1|) "\\spad{reduce(f,u,x)} reduces the binary operation \\spad{f} across \\spad{u},{} where \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u})} if \\spad{u} has 2 or more elements. Returns \\axiom{\\spad{f}(\\spad{x},{}\\spad{y})} if \\spad{u} has one element \\spad{y},{} \\spad{x} if \\spad{u} is empty. For example,{} \\axiom{reduce(+,{}\\spad{u},{}0)} returns the sum of the elements of \\spad{u}.") ((|#1| (|Mapping| |#1| |#1| |#1|) $) "\\spad{reduce(f,u)} reduces the binary operation \\spad{f} across \\spad{u}. For example,{} if \\spad{u} is \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]} then \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\axiom{\\spad{f}(..\\spad{f}(\\spad{f}(\\spad{x},{}\\spad{y}),{}...),{}\\spad{z})}. Note: if \\spad{u} has one element \\spad{x},{} \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\spad{x}. Error: if \\spad{u} is empty.")) (|find| (((|Union| |#1| "failed") (|Mapping| (|Boolean|) |#1|) $) "\\spad{find(p,u)} returns the first \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \"failed\" otherwise.")) (|construct| (($ (|List| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y},{}...,{}\\spad{z})} returns the collection of elements \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}} ordered as given. Equivalently written as \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]\\$\\spad{D}},{} where \\spad{D} is the domain. \\spad{D} may be omitted for those of type List.")))
NIL
NIL
(-153 |n| K Q)
((|constructor| (NIL "CliffordAlgebra(\\spad{n},{} \\spad{K},{} \\spad{Q}) defines a vector space of dimension \\spad{2**n} over \\spad{K},{} given a quadratic form \\spad{Q} on \\spad{K**n}. \\blankline If \\spad{e[i]},{} \\spad{1<=i<=n} is a basis for \\spad{K**n} then \\indented{3}{1,{} \\spad{e[i]} (\\spad{1<=i<=n}),{} \\spad{e[i1]*e[i2]}} (\\spad{1<=i1<i2<=n}),{}...,{}\\spad{e[1]*e[2]*..*e[n]} is a basis for the Clifford Algebra. \\blankline The algebra is defined by the relations \\indented{3}{\\spad{e[i]*e[j] = -e[j]*e[i]}\\space{2}(\\spad{i \\~~= j}),{}} \\indented{3}{\\spad{e[i]*e[i] = Q(e[i])}} \\blankline Examples of Clifford Algebras are: gaussians,{} quaternions,{} exterior algebras and spin algebras.")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} computes the multiplicative inverse of \\spad{x} or \"failed\" if \\spad{x} is not invertible.")) (|coefficient| ((|#2| $ (|List| (|PositiveInteger|))) "\\spad{coefficient(x,[i1,i2,...,iN])} extracts the coefficient of \\spad{e(i1)*e(i2)*...*e(iN)} in \\spad{x}.")) (|monomial| (($ |#2| (|List| (|PositiveInteger|))) "\\spad{monomial(c,[i1,i2,...,iN])} produces the value given by \\spad{c*e(i1)*e(i2)*...*e(iN)}.")) (|e| (($ (|PositiveInteger|)) "\\spad{e(n)} produces the appropriate unit element.")))
-((-4443 . T) (-4442 . T) (-4445 . T))
+((-4444 . T) (-4443 . T) (-4446 . T))
NIL
(-154)
((|constructor| (NIL "\\indented{1}{The purpose of this package is to provide reasonable plots of} functions with singularities.")) (|clipWithRanges| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|)))) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{clipWithRanges(pointLists,xMin,xMax,yMin,yMax)} performs clipping on a list of lists of points,{} \\spad{pointLists}. Clipping is done within the specified ranges of \\spad{xMin},{} \\spad{xMax} and \\spad{yMin},{} \\spad{yMax}. This function is used internally by the \\fakeAxiomFun{iClipParametric} subroutine in this package.")) (|clipParametric| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|) (|Fraction| (|Integer|)) (|Fraction| (|Integer|))) "\\spad{clipParametric(p,frac,sc)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)}; the fraction parameter is specified by \\spad{frac} and the scale parameter is specified by \\spad{sc} for use in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|)) "\\spad{clipParametric(p)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)}; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.")) (|clip| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{clip(ll)} performs two-dimensional clipping on a list of lists of points,{} \\spad{ll}; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|Point| (|DoubleFloat|)))) "\\spad{clip(l)} performs two-dimensional clipping on a curve \\spad{l},{} which is a list of points; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|) (|Fraction| (|Integer|)) (|Fraction| (|Integer|))) "\\spad{clip(p,frac,sc)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the graph of one variable \\spad{y = f(x)}; the fraction parameter is specified by \\spad{frac} and the scale parameter is specified by \\spad{sc} for use in the \\spadfun{clip} function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|)) "\\spad{clip(p)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the graph of one variable,{} \\spad{y = f(x)}; the default parameters \\spad{1/4} for the fraction and \\spad{5/1} for the scale are used in the \\spadfun{clip} function.")))
@@ -595,10 +595,10 @@ NIL
(-166 S R)
((|constructor| (NIL "This category represents the extension of a ring by a square root of \\spad{-1}.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} or \"failed\" if \\spad{x} is not a rational number.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a rational number.")) (|polarCoordinates| (((|Record| (|:| |r| |#2|) (|:| |phi| |#2|)) $) "\\spad{polarCoordinates(x)} returns (\\spad{r},{} phi) such that \\spad{x} = \\spad{r} * exp(\\%\\spad{i} * phi).")) (|argument| ((|#2| $) "\\spad{argument(x)} returns the angle made by (0,{}1) and (0,{}\\spad{x}).")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x} = sqrt(norm(\\spad{x})).")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(x, r)} returns the exact quotient of \\spad{x} by \\spad{r},{} or \"failed\" if \\spad{r} does not divide \\spad{x} exactly.")) (|norm| ((|#2| $) "\\spad{norm(x)} returns \\spad{x} * conjugate(\\spad{x})")) (|real| ((|#2| $) "\\spad{real(x)} returns real part of \\spad{x}.")) (|imag| ((|#2| $) "\\spad{imag(x)} returns imaginary part of \\spad{x}.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")) (|complex| (($ |#2| |#2|) "\\spad{complex(x,y)} constructs \\spad{x} + \\%i*y.") ((|attribute|) "indicates that \\% has sqrt(\\spad{-1})")))
NIL
-((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (QUOTE (-1011))) (|HasCategory| |#2| (QUOTE (-1211))) (|HasCategory| |#2| (QUOTE (-1069))) (|HasCategory| |#2| (QUOTE (-1031))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4444)) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-562))))
+((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (QUOTE (-1011))) (|HasCategory| |#2| (QUOTE (-1212))) (|HasCategory| |#2| (QUOTE (-1069))) (|HasCategory| |#2| (QUOTE (-1031))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4445)) (|HasAttribute| |#2| (QUOTE -4448)) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-562))))
(-167 R)
((|constructor| (NIL "This category represents the extension of a ring by a square root of \\spad{-1}.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} or \"failed\" if \\spad{x} is not a rational number.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a rational number.")) (|polarCoordinates| (((|Record| (|:| |r| |#1|) (|:| |phi| |#1|)) $) "\\spad{polarCoordinates(x)} returns (\\spad{r},{} phi) such that \\spad{x} = \\spad{r} * exp(\\%\\spad{i} * phi).")) (|argument| ((|#1| $) "\\spad{argument(x)} returns the angle made by (0,{}1) and (0,{}\\spad{x}).")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x} = sqrt(norm(\\spad{x})).")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(x, r)} returns the exact quotient of \\spad{x} by \\spad{r},{} or \"failed\" if \\spad{r} does not divide \\spad{x} exactly.")) (|norm| ((|#1| $) "\\spad{norm(x)} returns \\spad{x} * conjugate(\\spad{x})")) (|real| ((|#1| $) "\\spad{real(x)} returns real part of \\spad{x}.")) (|imag| ((|#1| $) "\\spad{imag(x)} returns imaginary part of \\spad{x}.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")) (|complex| (($ |#1| |#1|) "\\spad{complex(x,y)} constructs \\spad{x} + \\%i*y.") ((|attribute|) "indicates that \\% has sqrt(\\spad{-1})")))
-((-4441 -2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4444 |has| |#1| (-6 -4444)) (-4447 |has| |#1| (-6 -4447)) (-3035 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 -2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4445 |has| |#1| (-6 -4445)) (-4448 |has| |#1| (-6 -4448)) (-3035 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-168 RR PR)
((|constructor| (NIL "\\indented{1}{Author:} Date Created: Date Last Updated: Basic Functions: Related Constructors: Complex,{} UnivariatePolynomial Also See: AMS Classifications: Keywords: complex,{} polynomial factorization,{} factor References:")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} factorizes the polynomial \\spad{p} with complex coefficients.")))
@@ -614,8 +614,8 @@ NIL
NIL
(-171 R)
((|constructor| (NIL "\\spadtype {Complex(R)} creates the domain of elements of the form \\spad{a + b * i} where \\spad{a} and \\spad{b} come from the ring \\spad{R},{} and \\spad{i} is a new element such that \\spad{i**2 = -1}.")))
-((-4441 -2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4444 |has| |#1| (-6 -4444)) (-4447 |has| |#1| (-6 -4447)) (-3035 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-235))) (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-373)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-834)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-1031)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-1211)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-916))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-916))))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-1011))) (|HasCategory| |#1| (QUOTE (-1211)))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-834))) (|HasCategory| |#1| (QUOTE (-1069))) (-12 (|HasCategory| |#1| (QUOTE (-1069))) (|HasCategory| |#1| (QUOTE (-1211)))) (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-235))) (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasAttribute| |#1| (QUOTE -4444)) (|HasAttribute| |#1| (QUOTE -4447)) (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-354)))))
+((-4442 -2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4445 |has| |#1| (-6 -4445)) (-4448 |has| |#1| (-6 -4448)) (-3035 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-235))) (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-373)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-834)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-1031)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-1212)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-916))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-916))))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-1011))) (|HasCategory| |#1| (QUOTE (-1212)))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-834))) (|HasCategory| |#1| (QUOTE (-1069))) (-12 (|HasCategory| |#1| (QUOTE (-1069))) (|HasCategory| |#1| (QUOTE (-1212)))) (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-235))) (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasAttribute| |#1| (QUOTE -4445)) (|HasAttribute| |#1| (QUOTE -4448)) (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-354)))))
(-172 R S CS)
((|constructor| (NIL "This package supports converting complex expressions to patterns")) (|convert| (((|Pattern| |#1|) |#3|) "\\spad{convert(cs)} converts the complex expression \\spad{cs} to a pattern")))
NIL
@@ -626,7 +626,7 @@ NIL
NIL
(-174)
((|constructor| (NIL "The category of commutative rings with unity,{} \\spadignore{i.e.} rings where \\spadop{*} is commutative,{} and which have a multiplicative identity. element.")) (|commutative| ((|attribute| "*") "multiplication is commutative.")))
-(((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-175)
((|constructor| (NIL "This category is the root of the I/O conduits.")) (|close!| (($ $) "\\spad{close!(c)} closes the conduit \\spad{c},{} changing its state to one that is invalid for future read or write operations.")))
@@ -634,7 +634,7 @@ NIL
NIL
(-176 R)
((|constructor| (NIL "\\spadtype{ContinuedFraction} implements general \\indented{1}{continued fractions.\\space{2}This version is not restricted to simple,{}} \\indented{1}{finite fractions and uses the \\spadtype{Stream} as a} \\indented{1}{representation.\\space{2}The arithmetic functions assume that the} \\indented{1}{approximants alternate below/above the convergence point.} \\indented{1}{This is enforced by ensuring the partial numerators and partial} \\indented{1}{denominators are greater than 0 in the Euclidean domain view of \\spad{R}} \\indented{1}{(\\spadignore{i.e.} \\spad{sizeLess?(0, x)}).}")) (|complete| (($ $) "\\spad{complete(x)} causes all entries in \\spadvar{\\spad{x}} to be computed. Normally entries are only computed as needed. If \\spadvar{\\spad{x}} is an infinite continued fraction,{} a user-initiated interrupt is necessary to stop the computation.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(x,n)} causes the first \\spadvar{\\spad{n}} entries in the continued fraction \\spadvar{\\spad{x}} to be computed. Normally entries are only computed as needed.")) (|denominators| (((|Stream| |#1|) $) "\\spad{denominators(x)} returns the stream of denominators of the approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|numerators| (((|Stream| |#1|) $) "\\spad{numerators(x)} returns the stream of numerators of the approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|convergents| (((|Stream| (|Fraction| |#1|)) $) "\\spad{convergents(x)} returns the stream of the convergents of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|approximants| (((|Stream| (|Fraction| |#1|)) $) "\\spad{approximants(x)} returns the stream of approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be infinite and periodic with period 1.")) (|reducedForm| (($ $) "\\spad{reducedForm(x)} puts the continued fraction \\spadvar{\\spad{x}} in reduced form,{} \\spadignore{i.e.} the function returns an equivalent continued fraction of the form \\spad{continuedFraction(b0,[1,1,1,...],[b1,b2,b3,...])}.")) (|wholePart| ((|#1| $) "\\spad{wholePart(x)} extracts the whole part of \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0, [a1,a2,a3,...], [b1,b2,b3,...])},{} then \\spad{wholePart(x) = b0}.")) (|partialQuotients| (((|Stream| |#1|) $) "\\spad{partialQuotients(x)} extracts the partial quotients in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0, [a1,a2,a3,...], [b1,b2,b3,...])},{} then \\spad{partialQuotients(x) = [b0,b1,b2,b3,...]}.")) (|partialDenominators| (((|Stream| |#1|) $) "\\spad{partialDenominators(x)} extracts the denominators in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0, [a1,a2,a3,...], [b1,b2,b3,...])},{} then \\spad{partialDenominators(x) = [b1,b2,b3,...]}.")) (|partialNumerators| (((|Stream| |#1|) $) "\\spad{partialNumerators(x)} extracts the numerators in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0, [a1,a2,a3,...], [b1,b2,b3,...])},{} then \\spad{partialNumerators(x) = [a1,a2,a3,...]}.")) (|reducedContinuedFraction| (($ |#1| (|Stream| |#1|)) "\\spad{reducedContinuedFraction(b0,b)} constructs a continued fraction in the following way: if \\spad{b = [b1,b2,...]} then the result is the continued fraction \\spad{b0 + 1/(b1 + 1/(b2 + ...))}. That is,{} the result is the same as \\spad{continuedFraction(b0,[1,1,1,...],[b1,b2,b3,...])}.")) (|continuedFraction| (($ |#1| (|Stream| |#1|) (|Stream| |#1|)) "\\spad{continuedFraction(b0,a,b)} constructs a continued fraction in the following way: if \\spad{a = [a1,a2,...]} and \\spad{b = [b1,b2,...]} then the result is the continued fraction \\spad{b0 + a1/(b1 + a2/(b2 + ...))}.") (($ (|Fraction| |#1|)) "\\spad{continuedFraction(r)} converts the fraction \\spadvar{\\spad{r}} with components of type \\spad{R} to a continued fraction over \\spad{R}.")))
-(((-4450 "*") . T) (-4441 . T) (-4446 . T) (-4440 . T) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") . T) (-4442 . T) (-4447 . T) (-4441 . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-177)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Contour' a list of bindings making up a `virtual scope'.")) (|findBinding| (((|Maybe| (|Binding|)) (|Identifier|) $) "\\spad{findBinding(c,n)} returns the first binding associated with \\spad{`n'}. Otherwise `nothing.")) (|push| (($ (|Binding|) $) "\\spad{push(c,b)} augments the contour with binding \\spad{`b'}.")) (|bindings| (((|List| (|Binding|)) $) "\\spad{bindings(c)} returns the list of bindings in countour \\spad{c}.")))
@@ -806,7 +806,7 @@ NIL
NIL
(-219)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating decimal expansions.")) (|decimal| (($ (|Fraction| (|Integer|))) "\\spad{decimal(r)} converts a rational number to a decimal expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(d)} returns the fractional part of a decimal expansion.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-570) (QUOTE (-916))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-570) (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-148))) (|HasCategory| (-570) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-570) (QUOTE (-1031))) (|HasCategory| (-570) (QUOTE (-826))) (-2740 (|HasCategory| (-570) (QUOTE (-826))) (|HasCategory| (-570) (QUOTE (-856)))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-1161))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-570) (QUOTE (-235))) (|HasCategory| (-570) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-570) (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -313) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -290) (QUOTE (-570)) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-311))) (|HasCategory| (-570) (QUOTE (-551))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-570) (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
(-220)
((|constructor| (NIL "This domain represents the syntax of a definition.")) (|body| (((|SpadAst|) $) "\\spad{body(d)} returns the right hand side of the definition \\spad{`d'}.")) (|signature| (((|Signature|) $) "\\spad{signature(d)} returns the signature of the operation being defined. Note that this list may be partial in that it contains only the types actually specified in the definition.")) (|head| (((|HeadAst|) $) "\\spad{head(d)} returns the head of the definition \\spad{`d'}. This is a list of identifiers starting with the name of the operation followed by the name of the parameters,{} if any.")))
@@ -826,11 +826,11 @@ NIL
NIL
(-224 S)
((|constructor| (NIL "Linked list implementation of a Dequeue")) (|dequeue| (($ (|List| |#1|)) "\\spad{dequeue([x,y,...,z])} creates a dequeue with first (top or front) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom or back) element \\spad{z}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-225 |CoefRing| |listIndVar|)
((|constructor| (NIL "The deRham complex of Euclidean space,{} that is,{} the class of differential forms of arbitary degree over a coefficient ring. See Flanders,{} Harley,{} Differential Forms,{} With Applications to the Physical Sciences,{} New York,{} Academic Press,{} 1963.")) (|exteriorDifferential| (($ $) "\\spad{exteriorDifferential(df)} returns the exterior derivative (gradient,{} curl,{} divergence,{} ...) of the differential form \\spad{df}.")) (|totalDifferential| (($ (|Expression| |#1|)) "\\spad{totalDifferential(x)} returns the total differential (gradient) form for element \\spad{x}.")) (|map| (($ (|Mapping| (|Expression| |#1|) (|Expression| |#1|)) $) "\\spad{map(f,df)} replaces each coefficient \\spad{x} of differential form \\spad{df} by \\spad{f(x)}.")) (|degree| (((|Integer|) $) "\\spad{degree(df)} returns the homogeneous degree of differential form \\spad{df}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?(df)} tests if differential form \\spad{df} is a 0-form,{} \\spadignore{i.e.} if degree(\\spad{df}) = 0.")) (|homogeneous?| (((|Boolean|) $) "\\spad{homogeneous?(df)} tests if all of the terms of differential form \\spad{df} have the same degree.")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(n)} returns the \\spad{n}th basis term for a differential form.")) (|coefficient| (((|Expression| |#1|) $ $) "\\spad{coefficient(df,u)},{} where \\spad{df} is a differential form,{} returns the coefficient of \\spad{df} containing the basis term \\spad{u} if such a term exists,{} and 0 otherwise.")) (|reductum| (($ $) "\\spad{reductum(df)},{} where \\spad{df} is a differential form,{} returns \\spad{df} minus the leading term of \\spad{df} if \\spad{df} has two or more terms,{} and 0 otherwise.")) (|leadingBasisTerm| (($ $) "\\spad{leadingBasisTerm(df)} returns the leading basis term of differential form \\spad{df}.")) (|leadingCoefficient| (((|Expression| |#1|) $) "\\spad{leadingCoefficient(df)} returns the leading coefficient of differential form \\spad{df}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-226 R -1674)
((|constructor| (NIL "\\spadtype{DefiniteIntegrationTools} provides common tools used by the definite integration of both rational and elementary functions.")) (|checkForZero| (((|Union| (|Boolean|) "failed") (|SparseUnivariatePolynomial| |#2|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{checkForZero(p, a, b, incl?)} is \\spad{true} if \\spad{p} has a zero between a and \\spad{b},{} \\spad{false} otherwise,{} \"failed\" if this cannot be determined. Check for a and \\spad{b} inclusive if incl? is \\spad{true},{} exclusive otherwise.") (((|Union| (|Boolean|) "failed") (|Polynomial| |#1|) (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{checkForZero(p, x, a, b, incl?)} is \\spad{true} if \\spad{p} has a zero for \\spad{x} between a and \\spad{b},{} \\spad{false} otherwise,{} \"failed\" if this cannot be determined. Check for a and \\spad{b} inclusive if incl? is \\spad{true},{} exclusive otherwise.")) (|computeInt| (((|Union| (|OrderedCompletion| |#2|) "failed") (|Kernel| |#2|) |#2| (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{computeInt(x, g, a, b, eval?)} returns the integral of \\spad{f} for \\spad{x} between a and \\spad{b},{} assuming that \\spad{g} is an indefinite integral of \\spad{f} and \\spad{f} has no pole between a and \\spad{b}. If \\spad{eval?} is \\spad{true},{} then \\spad{g} can be evaluated safely at \\spad{a} and \\spad{b},{} provided that they are finite values. Otherwise,{} limits must be computed.")) (|ignore?| (((|Boolean|) (|String|)) "\\spad{ignore?(s)} is \\spad{true} if \\spad{s} is the string that tells the integrator to assume that the function has no pole in the integration interval.")))
@@ -838,7 +838,7 @@ NIL
NIL
(-227)
((|constructor| (NIL "\\indented{1}{\\spadtype{DoubleFloat} is intended to make accessible} hardware floating point arithmetic in \\Language{},{} either native double precision,{} or IEEE. On most machines,{} there will be hardware support for the arithmetic operations: \\spadfunFrom{+}{DoubleFloat},{} \\spadfunFrom{*}{DoubleFloat},{} \\spadfunFrom{/}{DoubleFloat} and possibly also the \\spadfunFrom{sqrt}{DoubleFloat} operation. The operations \\spadfunFrom{exp}{DoubleFloat},{} \\spadfunFrom{log}{DoubleFloat},{} \\spadfunFrom{sin}{DoubleFloat},{} \\spadfunFrom{cos}{DoubleFloat},{} \\spadfunFrom{atan}{DoubleFloat} are normally coded in software based on minimax polynomial/rational approximations. Note that under Lisp/VM,{} \\spadfunFrom{atan}{DoubleFloat} is not available at this time. Some general comments about the accuracy of the operations: the operations \\spadfunFrom{+}{DoubleFloat},{} \\spadfunFrom{*}{DoubleFloat},{} \\spadfunFrom{/}{DoubleFloat} and \\spadfunFrom{sqrt}{DoubleFloat} are expected to be fully accurate. The operations \\spadfunFrom{exp}{DoubleFloat},{} \\spadfunFrom{log}{DoubleFloat},{} \\spadfunFrom{sin}{DoubleFloat},{} \\spadfunFrom{cos}{DoubleFloat} and \\spadfunFrom{atan}{DoubleFloat} are not expected to be fully accurate. In particular,{} \\spadfunFrom{sin}{DoubleFloat} and \\spadfunFrom{cos}{DoubleFloat} will lose all precision for large arguments. \\blankline The \\spadtype{Float} domain provides an alternative to the \\spad{DoubleFloat} domain. It provides an arbitrary precision model of floating point arithmetic. This means that accuracy problems like those above are eliminated by increasing the working precision where necessary. \\spadtype{Float} provides some special functions such as \\spadfunFrom{erf}{DoubleFloat},{} the error function in addition to the elementary functions. The disadvantage of \\spadtype{Float} is that it is much more expensive than small floats when the latter can be used.")) (|rationalApproximation| (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rationalApproximation(f, n, b)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< b**(-n)} (that is,{} \\spad{|(r-f)/f| < b**(-n)}).") (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|)) "\\spad{rationalApproximation(f, n)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< 10**(-n)}.")) (|Beta| (($ $ $) "\\spad{Beta(x,y)} is \\spad{Gamma(x) * Gamma(y)/Gamma(x+y)}.")) (|Gamma| (($ $) "\\spad{Gamma(x)} is the Euler Gamma function.")) (|atan| (($ $ $) "\\spad{atan(x,y)} computes the arc tangent from \\spad{x} with phase \\spad{y}.")) (|log10| (($ $) "\\spad{log10(x)} computes the logarithm with base 10 for \\spad{x}.")) (|log2| (($ $) "\\spad{log2(x)} computes the logarithm with base 2 for \\spad{x}.")) (|exp1| (($) "\\spad{exp1()} returns the natural log base \\spad{2.718281828...}.")) (** (($ $ $) "\\spad{x ** y} returns the \\spad{y}th power of \\spad{x} (equal to \\spad{exp(y log x)}).")) (/ (($ $ (|Integer|)) "\\spad{x / i} computes the division from \\spad{x} by an integer \\spad{i}.")))
-((-3026 . T) (-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-3026 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-228)
((|constructor| (NIL "This package provides special functions for double precision real and complex floating point.")) (|hypergeometric0F1| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{hypergeometric0F1(c,z)} is the hypergeometric function \\spad{0F1(; c; z)}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{hypergeometric0F1(c,z)} is the hypergeometric function \\spad{0F1(; c; z)}.")) (|airyBi| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyBi(x)} is the Airy function \\spad{Bi(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{Bi''(x) - x * Bi(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyBi(x)} is the Airy function \\spad{Bi(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{Bi''(x) - x * Bi(x) = 0}.}")) (|airyAi| (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyAi(x)} is the Airy function \\spad{Ai(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{Ai''(x) - x * Ai(x) = 0}.}") (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyAi(x)} is the Airy function \\spad{Ai(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{Ai''(x) - x * Ai(x) = 0}.}")) (|besselK| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselK(v,x)} is the modified Bessel function of the first kind,{} \\spad{K(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{K(v,x) = \\%pi/2*(I(-v,x) - I(v,x))/sin(v*\\%pi)}} so is not valid for integer values of \\spad{v}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselK(v,x)} is the modified Bessel function of the first kind,{} \\spad{K(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{K(v,x) = \\%pi/2*(I(-v,x) - I(v,x))/sin(v*\\%pi)}.} so is not valid for integer values of \\spad{v}.")) (|besselI| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselI(v,x)} is the modified Bessel function of the first kind,{} \\spad{I(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselI(v,x)} is the modified Bessel function of the first kind,{} \\spad{I(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.}")) (|besselY| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselY(v,x)} is the Bessel function of the second kind,{} \\spad{Y(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{Y(v,x) = (J(v,x) cos(v*\\%pi) - J(-v,x))/sin(v*\\%pi)}} so is not valid for integer values of \\spad{v}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselY(v,x)} is the Bessel function of the second kind,{} \\spad{Y(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{Y(v,x) = (J(v,x) cos(v*\\%pi) - J(-v,x))/sin(v*\\%pi)}} so is not valid for integer values of \\spad{v}.")) (|besselJ| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselJ(v,x)} is the Bessel function of the first kind,{} \\spad{J(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselJ(v,x)} is the Bessel function of the first kind,{} \\spad{J(v,x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.}")) (|polygamma| (((|Complex| (|DoubleFloat|)) (|NonNegativeInteger|) (|Complex| (|DoubleFloat|))) "\\spad{polygamma(n, x)} is the \\spad{n}-th derivative of \\spad{digamma(x)}.") (((|DoubleFloat|) (|NonNegativeInteger|) (|DoubleFloat|)) "\\spad{polygamma(n, x)} is the \\spad{n}-th derivative of \\spad{digamma(x)}.")) (|digamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{digamma(x)} is the function,{} \\spad{psi(x)},{} defined by \\indented{2}{\\spad{psi(x) = Gamma'(x)/Gamma(x)}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{digamma(x)} is the function,{} \\spad{psi(x)},{} defined by \\indented{2}{\\spad{psi(x) = Gamma'(x)/Gamma(x)}.}")) (|logGamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{logGamma(x)} is the natural log of \\spad{Gamma(x)}. This can often be computed even if \\spad{Gamma(x)} cannot.") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{logGamma(x)} is the natural log of \\spad{Gamma(x)}. This can often be computed even if \\spad{Gamma(x)} cannot.")) (|Beta| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{Beta(x, y)} is the Euler beta function,{} \\spad{B(x,y)},{} defined by \\indented{2}{\\spad{Beta(x,y) = integrate(t^(x-1)*(1-t)^(y-1), t=0..1)}.} This is related to \\spad{Gamma(x)} by \\indented{2}{\\spad{Beta(x,y) = Gamma(x)*Gamma(y) / Gamma(x + y)}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{Beta(x, y)} is the Euler beta function,{} \\spad{B(x,y)},{} defined by \\indented{2}{\\spad{Beta(x,y) = integrate(t^(x-1)*(1-t)^(y-1), t=0..1)}.} This is related to \\spad{Gamma(x)} by \\indented{2}{\\spad{Beta(x,y) = Gamma(x)*Gamma(y) / Gamma(x + y)}.}")) (|Gamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{Gamma(x)} is the Euler gamma function,{} \\spad{Gamma(x)},{} defined by \\indented{2}{\\spad{Gamma(x) = integrate(t^(x-1)*exp(-t), t=0..\\%infinity)}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{Gamma(x)} is the Euler gamma function,{} \\spad{Gamma(x)},{} defined by \\indented{2}{\\spad{Gamma(x) = integrate(t^(x-1)*exp(-t), t=0..\\%infinity)}.}")))
@@ -846,15 +846,15 @@ NIL
NIL
(-229 R)
((|constructor| (NIL "\\indented{1}{A Denavit-Hartenberg Matrix is a 4x4 Matrix of the form:} \\indented{1}{\\spad{nx ox ax px}} \\indented{1}{\\spad{ny oy ay py}} \\indented{1}{\\spad{nz oz az pz}} \\indented{2}{\\spad{0\\space{2}0\\space{2}0\\space{2}1}} (\\spad{n},{} \\spad{o},{} and a are the direction cosines)")) (|translate| (($ |#1| |#1| |#1|) "\\spad{translate(X,Y,Z)} returns a dhmatrix for translation by \\spad{X},{} \\spad{Y},{} and \\spad{Z}")) (|scale| (($ |#1| |#1| |#1|) "\\spad{scale(sx,sy,sz)} returns a dhmatrix for scaling in the \\spad{X},{} \\spad{Y} and \\spad{Z} directions")) (|rotatez| (($ |#1|) "\\spad{rotatez(r)} returns a dhmatrix for rotation about axis \\spad{Z} for \\spad{r} degrees")) (|rotatey| (($ |#1|) "\\spad{rotatey(r)} returns a dhmatrix for rotation about axis \\spad{Y} for \\spad{r} degrees")) (|rotatex| (($ |#1|) "\\spad{rotatex(r)} returns a dhmatrix for rotation about axis \\spad{X} for \\spad{r} degrees")) (|identity| (($) "\\spad{identity()} create the identity dhmatrix")) (* (((|Point| |#1|) $ (|Point| |#1|)) "\\spad{t*p} applies the dhmatrix \\spad{t} to point \\spad{p}")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))) (|HasAttribute| |#1| (QUOTE (-4450 "*"))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))) (|HasAttribute| |#1| (QUOTE (-4451 "*"))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-230 A S)
((|constructor| (NIL "A dictionary is an aggregate in which entries can be inserted,{} searched for and removed. Duplicates are thrown away on insertion. This category models the usual notion of dictionary which involves large amounts of data where copying is impractical. Principal operations are thus destructive (non-copying) ones.")))
NIL
NIL
(-231 S)
((|constructor| (NIL "A dictionary is an aggregate in which entries can be inserted,{} searched for and removed. Duplicates are thrown away on insertion. This category models the usual notion of dictionary which involves large amounts of data where copying is impractical. Principal operations are thus destructive (non-copying) ones.")))
-((-4449 . T))
+((-4450 . T))
NIL
(-232 S R)
((|constructor| (NIL "Differential extensions of a ring \\spad{R}. Given a differentiation on \\spad{R},{} extend it to a differentiation on \\%.")) (D (($ $ (|Mapping| |#2| |#2|) (|NonNegativeInteger|)) "\\spad{D(x, deriv, n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#2| |#2|)) "\\spad{D(x, deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|) (|NonNegativeInteger|)) "\\spad{differentiate(x, deriv, n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#2| |#2|)) "\\spad{differentiate(x, deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")))
@@ -862,7 +862,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))))
(-233 R)
((|constructor| (NIL "Differential extensions of a ring \\spad{R}. Given a differentiation on \\spad{R},{} extend it to a differentiation on \\%.")) (D (($ $ (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{D(x, deriv, n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#1| |#1|)) "\\spad{D(x, deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")) (|differentiate| (($ $ (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{differentiate(x, deriv, n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#1| |#1|)) "\\spad{differentiate(x, deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-234 S)
((|constructor| (NIL "An ordinary differential ring,{} that is,{} a ring with an operation \\spadfun{differentiate}. \\blankline")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(x, n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{D(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(x, n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")))
@@ -870,15 +870,15 @@ NIL
NIL
(-235)
((|constructor| (NIL "An ordinary differential ring,{} that is,{} a ring with an operation \\spadfun{differentiate}. \\blankline")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(x, n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{D(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(x, n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-236 A S)
((|constructor| (NIL "This category is a collection of operations common to both categories \\spadtype{Dictionary} and \\spadtype{MultiDictionary}")) (|select!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select!(p,d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is not \\spad{true}.")) (|remove!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove!(p,d)} destructively changes dictionary \\spad{d} by removeing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.") (($ |#2| $) "\\spad{remove!(x,d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{y} such that \\axiom{\\spad{y} = \\spad{x}}.")) (|dictionary| (($ (|List| |#2|)) "\\spad{dictionary([x,y,...,z])} creates a dictionary consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{dictionary()}\\$\\spad{D} creates an empty dictionary of type \\spad{D}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4448)))
+((|HasAttribute| |#1| (QUOTE -4449)))
(-237 S)
((|constructor| (NIL "This category is a collection of operations common to both categories \\spadtype{Dictionary} and \\spadtype{MultiDictionary}")) (|select!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select!(p,d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is not \\spad{true}.")) (|remove!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove!(p,d)} destructively changes dictionary \\spad{d} by removeing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.") (($ |#1| $) "\\spad{remove!(x,d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{y} such that \\axiom{\\spad{y} = \\spad{x}}.")) (|dictionary| (($ (|List| |#1|)) "\\spad{dictionary([x,y,...,z])} creates a dictionary consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{dictionary()}\\$\\spad{D} creates an empty dictionary of type \\spad{D}.")))
-((-4449 . T))
+((-4450 . T))
NIL
(-238)
((|constructor| (NIL "any solution of a homogeneous linear Diophantine equation can be represented as a sum of minimal solutions,{} which form a \"basis\" (a minimal solution cannot be represented as a nontrivial sum of solutions) in the case of an inhomogeneous linear Diophantine equation,{} each solution is the sum of a inhomogeneous solution and any number of homogeneous solutions therefore,{} it suffices to compute two sets: \\indented{3}{1. all minimal inhomogeneous solutions} \\indented{3}{2. all minimal homogeneous solutions} the algorithm implemented is a completion procedure,{} which enumerates all solutions in a recursive depth-first-search it can be seen as finding monotone paths in a graph for more details see Reference")) (|dioSolve| (((|Record| (|:| |varOrder| (|List| (|Symbol|))) (|:| |inhom| (|Union| (|List| (|Vector| (|NonNegativeInteger|))) "failed")) (|:| |hom| (|List| (|Vector| (|NonNegativeInteger|))))) (|Equation| (|Polynomial| (|Integer|)))) "\\spad{dioSolve(u)} computes a basis of all minimal solutions for linear homogeneous Diophantine equation \\spad{u},{} then all minimal solutions of inhomogeneous equation")))
@@ -887,10 +887,10 @@ NIL
(-239 S -2408 R)
((|constructor| (NIL "\\indented{2}{This category represents a finite cartesian product of a given type.} Many categorical properties are preserved under this construction.")) (* (($ $ |#3|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#3| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.")) (|dot| ((|#3| $ $) "\\spad{dot(x,y)} computes the inner product of the vectors \\spad{x} and \\spad{y}.")) (|unitVector| (($ (|PositiveInteger|)) "\\spad{unitVector(n)} produces a vector with 1 in position \\spad{n} and zero elsewhere.")) (|directProduct| (($ (|Vector| |#3|)) "\\spad{directProduct(v)} converts the vector \\spad{v} to become a direct product. Error: if the length of \\spad{v} is different from dim.")) (|finiteAggregate| ((|attribute|) "attribute to indicate an aggregate of finite size")))
NIL
-((|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854))) (|HasAttribute| |#3| (QUOTE -4445)) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-1109))))
+((|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854))) (|HasAttribute| |#3| (QUOTE -4446)) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-1109))))
(-240 -2408 R)
((|constructor| (NIL "\\indented{2}{This category represents a finite cartesian product of a given type.} Many categorical properties are preserved under this construction.")) (* (($ $ |#2|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#2| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.")) (|dot| ((|#2| $ $) "\\spad{dot(x,y)} computes the inner product of the vectors \\spad{x} and \\spad{y}.")) (|unitVector| (($ (|PositiveInteger|)) "\\spad{unitVector(n)} produces a vector with 1 in position \\spad{n} and zero elsewhere.")) (|directProduct| (($ (|Vector| |#2|)) "\\spad{directProduct(v)} converts the vector \\spad{v} to become a direct product. Error: if the length of \\spad{v} is different from dim.")) (|finiteAggregate| ((|attribute|) "attribute to indicate an aggregate of finite size")))
-((-4442 |has| |#2| (-1058)) (-4443 |has| |#2| (-1058)) (-4445 |has| |#2| (-6 -4445)) ((-4450 "*") |has| |#2| (-174)) (-4448 . T))
+((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
NIL
(-241 -2408 A B)
((|constructor| (NIL "\\indented{2}{This package provides operations which all take as arguments} direct products of elements of some type \\spad{A} and functions from \\spad{A} to another type \\spad{B}. The operations all iterate over their vector argument and either return a value of type \\spad{B} or a direct product over \\spad{B}.")) (|map| (((|DirectProduct| |#1| |#3|) (|Mapping| |#3| |#2|) (|DirectProduct| |#1| |#2|)) "\\spad{map(f, v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values.")) (|reduce| ((|#3| (|Mapping| |#3| |#2| |#3|) (|DirectProduct| |#1| |#2|) |#3|) "\\spad{reduce(func,vec,ident)} combines the elements in \\spad{vec} using the binary function \\spad{func}. Argument \\spad{ident} is returned if the vector is empty.")) (|scan| (((|DirectProduct| |#1| |#3|) (|Mapping| |#3| |#2| |#3|) (|DirectProduct| |#1| |#2|) |#3|) "\\spad{scan(func,vec,ident)} creates a new vector whose elements are the result of applying reduce to the binary function \\spad{func},{} increasing initial subsequences of the vector \\spad{vec},{} and the element \\spad{ident}.")))
@@ -898,8 +898,8 @@ NIL
NIL
(-242 -2408 R)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying component type. This contrasts with simple vectors in that the members can be viewed as having constant length. Thus many categorical properties can by lifted from the underlying component type. Component extraction operations are provided but no updating operations. Thus new direct product elements can either be created by converting vector elements using the \\spadfun{directProduct} function or by taking appropriate linear combinations of basis vectors provided by the \\spad{unitVector} operation.")))
-((-4442 |has| |#2| (-1058)) (-4443 |has| |#2| (-1058)) (-4445 |has| |#2| (-6 -4445)) ((-4450 "*") |has| |#2| (-174)) (-4448 . T))
-((-2740 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2740 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-235))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-174)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-235)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-373)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-854)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasAttribute| |#2| (QUOTE -4445)) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))))
+((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
+((-2740 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2740 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-235))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-174)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-235)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-373)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-854)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))))
(-243)
((|constructor| (NIL "DisplayPackage allows one to print strings in a nice manner,{} including highlighting substrings.")) (|sayLength| (((|Integer|) (|List| (|String|))) "\\spad{sayLength(l)} returns the length of a list of strings \\spad{l} as an integer.") (((|Integer|) (|String|)) "\\spad{sayLength(s)} returns the length of a string \\spad{s} as an integer.")) (|say| (((|Void|) (|List| (|String|))) "\\spad{say(l)} sends a list of strings \\spad{l} to output.") (((|Void|) (|String|)) "\\spad{say(s)} sends a string \\spad{s} to output.")) (|center| (((|List| (|String|)) (|List| (|String|)) (|Integer|) (|String|)) "\\spad{center(l,i,s)} takes a list of strings \\spad{l},{} and centers them within a list of strings which is \\spad{i} characters long,{} in which the remaining spaces are filled with strings composed of as many repetitions as possible of the last string parameter \\spad{s}.") (((|String|) (|String|) (|Integer|) (|String|)) "\\spad{center(s,i,s)} takes the first string \\spad{s},{} and centers it within a string of length \\spad{i},{} in which the other elements of the string are composed of as many replications as possible of the second indicated string,{} \\spad{s} which must have a length greater than that of an empty string.")) (|copies| (((|String|) (|Integer|) (|String|)) "\\spad{copies(i,s)} will take a string \\spad{s} and create a new string composed of \\spad{i} copies of \\spad{s}.")) (|newLine| (((|String|)) "\\spad{newLine()} sends a new line command to output.")) (|bright| (((|List| (|String|)) (|List| (|String|))) "\\spad{bright(l)} sets the font property of a list of strings,{} \\spad{l},{} to bold-face type.") (((|List| (|String|)) (|String|)) "\\spad{bright(s)} sets the font property of the string \\spad{s} to bold-face type.")))
NIL
@@ -910,7 +910,7 @@ NIL
NIL
(-245)
((|constructor| (NIL "A division ring (sometimes called a skew field),{} \\spadignore{i.e.} a not necessarily commutative ring where all non-zero elements have multiplicative inverses.")) (|inv| (($ $) "\\spad{inv x} returns the multiplicative inverse of \\spad{x}. Error: if \\spad{x} is 0.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")))
-((-4441 . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-246 S)
((|constructor| (NIL "A doubly-linked aggregate serves as a model for a doubly-linked list,{} that is,{} a list which can has links to both next and previous nodes and thus can be efficiently traversed in both directions.")) (|setnext!| (($ $ $) "\\spad{setnext!(u,v)} destructively sets the next node of doubly-linked aggregate \\spad{u} to \\spad{v},{} returning \\spad{v}.")) (|setprevious!| (($ $ $) "\\spad{setprevious!(u,v)} destructively sets the previous node of doubly-linked aggregate \\spad{u} to \\spad{v},{} returning \\spad{v}.")) (|concat!| (($ $ $) "\\spad{concat!(u,v)} destructively concatenates doubly-linked aggregate \\spad{v} to the end of doubly-linked aggregate \\spad{u}.")) (|next| (($ $) "\\spad{next(l)} returns the doubly-linked aggregate beginning with its next element. Error: if \\spad{l} has no next element. Note: \\axiom{next(\\spad{l}) = rest(\\spad{l})} and \\axiom{previous(next(\\spad{l})) = \\spad{l}}.")) (|previous| (($ $) "\\spad{previous(l)} returns the doubly-link list beginning with its previous element. Error: if \\spad{l} has no previous element. Note: \\axiom{next(previous(\\spad{l})) = \\spad{l}}.")) (|tail| (($ $) "\\spad{tail(l)} returns the doubly-linked aggregate \\spad{l} starting at its second element. Error: if \\spad{l} is empty.")) (|head| (($ $) "\\spad{head(l)} returns the first element of a doubly-linked aggregate \\spad{l}. Error: if \\spad{l} is empty.")) (|last| ((|#1| $) "\\spad{last(l)} returns the last element of a doubly-linked aggregate \\spad{l}. Error: if \\spad{l} is empty.")))
@@ -918,7 +918,7 @@ NIL
NIL
(-247 S)
((|constructor| (NIL "This domain provides some nice functions on lists")) (|elt| (((|NonNegativeInteger|) $ "count") "\\axiom{\\spad{l}.\"count\"} returns the number of elements in \\axiom{\\spad{l}}.") (($ $ "sort") "\\axiom{\\spad{l}.sort} returns \\axiom{\\spad{l}} with elements sorted. Note: \\axiom{\\spad{l}.sort = sort(\\spad{l})}") (($ $ "unique") "\\axiom{\\spad{l}.unique} returns \\axiom{\\spad{l}} with duplicates removed. Note: \\axiom{\\spad{l}.unique = removeDuplicates(\\spad{l})}.")) (|datalist| (($ (|List| |#1|)) "\\spad{datalist(l)} creates a datalist from \\spad{l}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-248 M)
((|constructor| (NIL "DiscreteLogarithmPackage implements help functions for discrete logarithms in monoids using small cyclic groups.")) (|shanksDiscLogAlgorithm| (((|Union| (|NonNegativeInteger|) "failed") |#1| |#1| (|NonNegativeInteger|)) "\\spad{shanksDiscLogAlgorithm(b,a,p)} computes \\spad{s} with \\spad{b**s = a} for assuming that \\spad{a} and \\spad{b} are elements in a 'small' cyclic group of order \\spad{p} by Shank\\spad{'s} algorithm. Note: this is a subroutine of the function \\spadfun{discreteLog}.")) (** ((|#1| |#1| (|Integer|)) "\\spad{x ** n} returns \\spad{x} raised to the integer power \\spad{n}")))
@@ -926,8 +926,8 @@ NIL
NIL
(-249 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is lexicographic specified by the variable list parameter with the most significant variable first in the list.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p, perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4450 "*") |has| |#2| (-174)) (-4441 |has| |#2| (-562)) (-4446 |has| |#2| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
(-250)
((|showSummary| (((|Void|) $) "\\spad{showSummary(d)} prints out implementation detail information of domain \\spad{`d'}.")) (|reflect| (($ (|ConstructorCall| (|DomainConstructor|))) "\\spad{reflect cc} returns the domain object designated by the ConstructorCall syntax `cc'. The constructor implied by `cc' must be known to the system since it is instantiated.")) (|reify| (((|ConstructorCall| (|DomainConstructor|)) $) "\\spad{reify(d)} returns the abstract syntax for the domain \\spad{`x'}.")) (|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Create: October 18,{} 2007. Date Last Updated: December 20,{} 2008. Basic Operations: coerce,{} reify Related Constructors: Type,{} Syntax,{} OutputForm Also See: Type,{} ConstructorCall") (((|DomainConstructor|) $) "\\spad{constructor(d)} returns the domain constructor that is instantiated to the domain object \\spad{`d'}.")))
NIL
@@ -942,23 +942,23 @@ NIL
NIL
(-253 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4445 -2740 (-1765 (|has| |#4| (-1058)) (|has| |#4| (-235))) (-1765 (|has| |#4| (-1058)) (|has| |#4| (-907 (-1186)))) (|has| |#4| (-6 -4445)) (-1765 (|has| |#4| (-1058)) (|has| |#4| (-645 (-570))))) (-4442 |has| |#4| (-1058)) (-4443 |has| |#4| (-1058)) ((-4450 "*") |has| |#4| (-174)) (-4448 . T))
-((-2740 (-12 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#4| (QUOTE (-368))) (-2740 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (QUOTE (-1058)))) (-2740 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368)))) (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-799))) (-2740 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (QUOTE (-854)))) (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (QUOTE (-732))) (-2740 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-1058)))) (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-174)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-235)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-368)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-373)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-732)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-799)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-854)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1058)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1058))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (-2740 (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (|HasCategory| |#4| (QUOTE (-732))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-2740 (|HasCategory| |#4| (QUOTE (-1058))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1109)))) (-2740 (|HasAttribute| |#4| (QUOTE -4445)) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#4| (QUOTE (-132))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))))
+((-4446 -2740 (-1765 (|has| |#4| (-1058)) (|has| |#4| (-235))) (-1765 (|has| |#4| (-1058)) (|has| |#4| (-907 (-1186)))) (|has| |#4| (-6 -4446)) (-1765 (|has| |#4| (-1058)) (|has| |#4| (-645 (-570))))) (-4443 |has| |#4| (-1058)) (-4444 |has| |#4| (-1058)) ((-4451 "*") |has| |#4| (-174)) (-4449 . T))
+((-2740 (-12 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#4| (QUOTE (-368))) (-2740 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (QUOTE (-1058)))) (-2740 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368)))) (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-799))) (-2740 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (QUOTE (-854)))) (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (QUOTE (-732))) (-2740 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-1058)))) (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-174)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-235)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-368)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-373)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-732)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-799)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-854)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1058)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1058))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (-2740 (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (|HasCategory| |#4| (QUOTE (-732))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570))))) (-2740 (|HasCategory| |#4| (QUOTE (-1058))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (QUOTE (-1109)))) (-2740 (|HasAttribute| |#4| (QUOTE -4446)) (-12 (|HasCategory| |#4| (QUOTE (-235))) (|HasCategory| |#4| (QUOTE (-1058)))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#4| (QUOTE (-132))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))))
(-254 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4445 -2740 (-1765 (|has| |#3| (-1058)) (|has| |#3| (-235))) (-1765 (|has| |#3| (-1058)) (|has| |#3| (-907 (-1186)))) (|has| |#3| (-6 -4445)) (-1765 (|has| |#3| (-1058)) (|has| |#3| (-645 (-570))))) (-4442 |has| |#3| (-1058)) (-4443 |has| |#3| (-1058)) ((-4450 "*") |has| |#3| (-174)) (-4448 . T))
-((-2740 (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#3| (QUOTE (-368))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2740 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-174)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-235)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-373)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-732)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-799)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-854)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-732))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-2740 (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109)))) (-2740 (|HasAttribute| |#3| (QUOTE -4445)) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))))
+((-4446 -2740 (-1765 (|has| |#3| (-1058)) (|has| |#3| (-235))) (-1765 (|has| |#3| (-1058)) (|has| |#3| (-907 (-1186)))) (|has| |#3| (-6 -4446)) (-1765 (|has| |#3| (-1058)) (|has| |#3| (-645 (-570))))) (-4443 |has| |#3| (-1058)) (-4444 |has| |#3| (-1058)) ((-4451 "*") |has| |#3| (-174)) (-4449 . T))
+((-2740 (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#3| (QUOTE (-368))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2740 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-174)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-235)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-373)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-732)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-799)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-854)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-732))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-2740 (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109)))) (-2740 (|HasAttribute| |#3| (QUOTE -4446)) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))))
(-255 A R S V E)
((|constructor| (NIL "\\spadtype{DifferentialPolynomialCategory} is a category constructor specifying basic functions in an ordinary differential polynomial ring with a given ordered set of differential indeterminates. In addition,{} it implements defaults for the basic functions. The functions \\spadfun{order} and \\spadfun{weight} are extended from the set of derivatives of differential indeterminates to the set of differential polynomials. Other operations provided on differential polynomials are \\spadfun{leader},{} \\spadfun{initial},{} \\spadfun{separant},{} \\spadfun{differentialVariables},{} and \\spadfun{isobaric?}. Furthermore,{} if the ground ring is a differential ring,{} then evaluation (substitution of differential indeterminates by elements of the ground ring or by differential polynomials) is provided by \\spadfun{eval}. A convenient way of referencing derivatives is provided by the functions \\spadfun{makeVariable}. \\blankline To construct a domain using this constructor,{} one needs to provide a ground ring \\spad{R},{} an ordered set \\spad{S} of differential indeterminates,{} a ranking \\spad{V} on the set of derivatives of the differential indeterminates,{} and a set \\spad{E} of exponents in bijection with the set of differential monomials in the given differential indeterminates. \\blankline")) (|separant| (($ $) "\\spad{separant(p)} returns the partial derivative of the differential polynomial \\spad{p} with respect to its leader.")) (|initial| (($ $) "\\spad{initial(p)} returns the leading coefficient when the differential polynomial \\spad{p} is written as a univariate polynomial in its leader.")) (|leader| ((|#4| $) "\\spad{leader(p)} returns the derivative of the highest rank appearing in the differential polynomial \\spad{p} Note: an error occurs if \\spad{p} is in the ground ring.")) (|isobaric?| (((|Boolean|) $) "\\spad{isobaric?(p)} returns \\spad{true} if every differential monomial appearing in the differential polynomial \\spad{p} has same weight,{} and returns \\spad{false} otherwise.")) (|weight| (((|NonNegativeInteger|) $ |#3|) "\\spad{weight(p, s)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|NonNegativeInteger|) $) "\\spad{weight(p)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p}.")) (|weights| (((|List| (|NonNegativeInteger|)) $ |#3|) "\\spad{weights(p, s)} returns a list of weights of differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|List| (|NonNegativeInteger|)) $) "\\spad{weights(p)} returns a list of weights of differential monomials appearing in differential polynomial \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $ |#3|) "\\spad{degree(p, s)} returns the maximum degree of the differential polynomial \\spad{p} viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of the differential polynomial \\spad{p},{} which is the maximum number of differentiations of a differential indeterminate,{} among all those appearing in \\spad{p}.") (((|NonNegativeInteger|) $ |#3|) "\\spad{order(p,s)} returns the order of the differential polynomial \\spad{p} in differential indeterminate \\spad{s}.")) (|differentialVariables| (((|List| |#3|) $) "\\spad{differentialVariables(p)} returns a list of differential indeterminates occurring in a differential polynomial \\spad{p}.")) (|makeVariable| (((|Mapping| $ (|NonNegativeInteger|)) $) "\\spad{makeVariable(p)} views \\spad{p} as an element of a differential ring,{} in such a way that the \\spad{n}-th derivative of \\spad{p} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} \\spad{:=} makeVariable(\\spad{p}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.") (((|Mapping| $ (|NonNegativeInteger|)) |#3|) "\\spad{makeVariable(s)} views \\spad{s} as a differential indeterminate,{} in such a way that the \\spad{n}-th derivative of \\spad{s} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} :=makeVariable(\\spad{s}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.")))
NIL
((|HasCategory| |#2| (QUOTE (-235))))
(-256 R S V E)
((|constructor| (NIL "\\spadtype{DifferentialPolynomialCategory} is a category constructor specifying basic functions in an ordinary differential polynomial ring with a given ordered set of differential indeterminates. In addition,{} it implements defaults for the basic functions. The functions \\spadfun{order} and \\spadfun{weight} are extended from the set of derivatives of differential indeterminates to the set of differential polynomials. Other operations provided on differential polynomials are \\spadfun{leader},{} \\spadfun{initial},{} \\spadfun{separant},{} \\spadfun{differentialVariables},{} and \\spadfun{isobaric?}. Furthermore,{} if the ground ring is a differential ring,{} then evaluation (substitution of differential indeterminates by elements of the ground ring or by differential polynomials) is provided by \\spadfun{eval}. A convenient way of referencing derivatives is provided by the functions \\spadfun{makeVariable}. \\blankline To construct a domain using this constructor,{} one needs to provide a ground ring \\spad{R},{} an ordered set \\spad{S} of differential indeterminates,{} a ranking \\spad{V} on the set of derivatives of the differential indeterminates,{} and a set \\spad{E} of exponents in bijection with the set of differential monomials in the given differential indeterminates. \\blankline")) (|separant| (($ $) "\\spad{separant(p)} returns the partial derivative of the differential polynomial \\spad{p} with respect to its leader.")) (|initial| (($ $) "\\spad{initial(p)} returns the leading coefficient when the differential polynomial \\spad{p} is written as a univariate polynomial in its leader.")) (|leader| ((|#3| $) "\\spad{leader(p)} returns the derivative of the highest rank appearing in the differential polynomial \\spad{p} Note: an error occurs if \\spad{p} is in the ground ring.")) (|isobaric?| (((|Boolean|) $) "\\spad{isobaric?(p)} returns \\spad{true} if every differential monomial appearing in the differential polynomial \\spad{p} has same weight,{} and returns \\spad{false} otherwise.")) (|weight| (((|NonNegativeInteger|) $ |#2|) "\\spad{weight(p, s)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|NonNegativeInteger|) $) "\\spad{weight(p)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p}.")) (|weights| (((|List| (|NonNegativeInteger|)) $ |#2|) "\\spad{weights(p, s)} returns a list of weights of differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|List| (|NonNegativeInteger|)) $) "\\spad{weights(p)} returns a list of weights of differential monomials appearing in differential polynomial \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $ |#2|) "\\spad{degree(p, s)} returns the maximum degree of the differential polynomial \\spad{p} viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of the differential polynomial \\spad{p},{} which is the maximum number of differentiations of a differential indeterminate,{} among all those appearing in \\spad{p}.") (((|NonNegativeInteger|) $ |#2|) "\\spad{order(p,s)} returns the order of the differential polynomial \\spad{p} in differential indeterminate \\spad{s}.")) (|differentialVariables| (((|List| |#2|) $) "\\spad{differentialVariables(p)} returns a list of differential indeterminates occurring in a differential polynomial \\spad{p}.")) (|makeVariable| (((|Mapping| $ (|NonNegativeInteger|)) $) "\\spad{makeVariable(p)} views \\spad{p} as an element of a differential ring,{} in such a way that the \\spad{n}-th derivative of \\spad{p} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} \\spad{:=} makeVariable(\\spad{p}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.") (((|Mapping| $ (|NonNegativeInteger|)) |#2|) "\\spad{makeVariable(s)} views \\spad{s} as a differential indeterminate,{} in such a way that the \\spad{n}-th derivative of \\spad{s} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} :=makeVariable(\\spad{s}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
(-257 S)
((|constructor| (NIL "A dequeue is a doubly ended stack,{} that is,{} a bag where first items inserted are the first items extracted,{} at either the front or the back end of the data structure.")) (|reverse!| (($ $) "\\spad{reverse!(d)} destructively replaces \\spad{d} by its reverse dequeue,{} \\spadignore{i.e.} the top (front) element is now the bottom (back) element,{} and so on.")) (|extractBottom!| ((|#1| $) "\\spad{extractBottom!(d)} destructively extracts the bottom (back) element from the dequeue \\spad{d}. Error: if \\spad{d} is empty.")) (|extractTop!| ((|#1| $) "\\spad{extractTop!(d)} destructively extracts the top (front) element from the dequeue \\spad{d}. Error: if \\spad{d} is empty.")) (|insertBottom!| ((|#1| |#1| $) "\\spad{insertBottom!(x,d)} destructively inserts \\spad{x} into the dequeue \\spad{d} at the bottom (back) of the dequeue.")) (|insertTop!| ((|#1| |#1| $) "\\spad{insertTop!(x,d)} destructively inserts \\spad{x} into the dequeue \\spad{d},{} that is,{} at the top (front) of the dequeue. The element previously at the top of the dequeue becomes the second in the dequeue,{} and so on.")) (|bottom!| ((|#1| $) "\\spad{bottom!(d)} returns the element at the bottom (back) of the dequeue.")) (|top!| ((|#1| $) "\\spad{top!(d)} returns the element at the top (front) of the dequeue.")) (|height| (((|NonNegativeInteger|) $) "\\spad{height(d)} returns the number of elements in dequeue \\spad{d}. Note: \\axiom{height(\\spad{d}) = \\# \\spad{d}}.")) (|dequeue| (($ (|List| |#1|)) "\\spad{dequeue([x,y,...,z])} creates a dequeue with first (top or front) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom or back) element \\spad{z}.") (($) "\\spad{dequeue()}\\$\\spad{D} creates an empty dequeue of type \\spad{D}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-258)
((|constructor| (NIL "TopLevelDrawFunctionsForCompiledFunctions provides top level functions for drawing graphics of expressions.")) (|recolor| (((|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{recolor()},{} uninteresting to top level user; exported in order to compile package.")) (|makeObject| (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(surface(f,g,h),a..b,c..d,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,v)},{} \\spad{y = g(u,v)},{} \\spad{z = h(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(surface(f,g,h),a..b,c..d,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,v)},{} \\spad{y = g(u,v)},{} \\spad{z = h(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(f,a..b,c..d,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{f(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f,a..b,c..d,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{f(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(f,a..b,c..d)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,y)} as \\spad{x} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{y} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f,a..b,c..d,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,y)} as \\spad{x} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{y} ranges from \\spad{min(c,d)} to \\spad{max(c,d)},{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{makeObject(sp,curve(f,g,h),a..b)} returns the space \\spad{sp} of the domain \\spadtype{ThreeSpace} with the addition of the graph of the parametric curve \\spad{x = f(t), y = g(t), z = h(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f,g,h),a..b,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t), y = g(t), z = h(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{makeObject(sp,curve(f,g,h),a..b)} returns the space \\spad{sp} of the domain \\spadtype{ThreeSpace} with the addition of the graph of the parametric curve \\spad{x = f(t), y = g(t), z = h(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f,g,h),a..b,l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t), y = g(t), z = h(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")) (|draw| (((|ThreeDimensionalViewport|) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(surface(f,g,h),a..b,c..d)} draws the graph of the parametric surface \\spad{x = f(u,v)},{} \\spad{y = g(u,v)},{} \\spad{z = h(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}.") (((|ThreeDimensionalViewport|) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(surface(f,g,h),a..b,c..d)} draws the graph of the parametric surface \\spad{x = f(u,v)},{} \\spad{y = g(u,v)},{} \\spad{z = h(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(f,a..b,c..d)} draws the graph of the parametric surface \\spad{f(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)} The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,a..b,c..d)} draws the graph of the parametric surface \\spad{f(u,v)} as \\spad{u} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{v} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(f,a..b,c..d)} draws the graph of \\spad{z = f(x,y)} as \\spad{x} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{y} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}.") (((|ThreeDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,a..b,c..d,l)} draws the graph of \\spad{z = f(x,y)} as \\spad{x} ranges from \\spad{min(a,b)} to \\spad{max(a,b)} and \\spad{y} ranges from \\spad{min(c,d)} to \\spad{max(c,d)}. and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{draw(f,a..b,l)} draws the graph of the parametric curve \\spad{f} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,a..b,l)} draws the graph of the parametric curve \\spad{f} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{draw(curve(f,g,h),a..b,l)} draws the graph of the parametric curve \\spad{x = f(t), y = g(t), z = h(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f,g,h),a..b,l)} draws the graph of the parametric curve \\spad{x = f(t), y = g(t), z = h(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{draw(curve(f,g),a..b)} draws the graph of the parametric curve \\spad{x = f(t), y = g(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f,g),a..b,l)} draws the graph of the parametric curve \\spad{x = f(t), y = g(t)} as \\spad{t} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{draw(f,a..b)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}.") (((|TwoDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,a..b,l)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,b)} to \\spad{max(a,b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")))
@@ -998,8 +998,8 @@ NIL
NIL
(-267 R S V)
((|constructor| (NIL "\\spadtype{DifferentialSparseMultivariatePolynomial} implements an ordinary differential polynomial ring by combining a domain belonging to the category \\spadtype{DifferentialVariableCategory} with the domain \\spadtype{SparseMultivariatePolynomial}. \\blankline")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#3| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#3| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#3| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#3| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#3| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#3| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-268 A S)
((|constructor| (NIL "\\spadtype{DifferentialVariableCategory} constructs the set of derivatives of a given set of (ordinary) differential indeterminates. If \\spad{x},{}...,{}\\spad{y} is an ordered set of differential indeterminates,{} and the prime notation is used for differentiation,{} then the set of derivatives (including zero-th order) of the differential indeterminates is \\spad{x},{}\\spad{x'},{}\\spad{x''},{}...,{} \\spad{y},{}\\spad{y'},{}\\spad{y''},{}... (Note: in the interpreter,{} the \\spad{n}-th derivative of \\spad{y} is displayed as \\spad{y} with a subscript \\spad{n}.) This set is viewed as a set of algebraic indeterminates,{} totally ordered in a way compatible with differentiation and the given order on the differential indeterminates. Such a total order is called a ranking of the differential indeterminates. \\blankline A domain in this category is needed to construct a differential polynomial domain. Differential polynomials are ordered by a ranking on the derivatives,{} and by an order (extending the ranking) on on the set of differential monomials. One may thus associate a domain in this category with a ranking of the differential indeterminates,{} just as one associates a domain in the category \\spadtype{OrderedAbelianMonoidSup} with an ordering of the set of monomials in a set of algebraic indeterminates. The ranking is specified through the binary relation \\spadfun{<}. For example,{} one may define one derivative to be less than another by lexicographically comparing first the \\spadfun{order},{} then the given order of the differential indeterminates appearing in the derivatives. This is the default implementation. \\blankline The notion of weight generalizes that of degree. A polynomial domain may be made into a graded ring if a weight function is given on the set of indeterminates,{} Very often,{} a grading is the first step in ordering the set of monomials. For differential polynomial domains,{} this constructor provides a function \\spadfun{weight},{} which allows the assignment of a non-negative number to each derivative of a differential indeterminate. For example,{} one may define the weight of a derivative to be simply its \\spadfun{order} (this is the default assignment). This weight function can then be extended to the set of all differential polynomials,{} providing a graded ring structure.")) (|coerce| (($ |#2|) "\\spad{coerce(s)} returns \\spad{s},{} viewed as the zero-th order derivative of \\spad{s}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(v, n)} returns the \\spad{n}-th derivative of \\spad{v}.") (($ $) "\\spad{differentiate(v)} returns the derivative of \\spad{v}.")) (|weight| (((|NonNegativeInteger|) $) "\\spad{weight(v)} returns the weight of the derivative \\spad{v}.")) (|variable| ((|#2| $) "\\spad{variable(v)} returns \\spad{s} if \\spad{v} is any derivative of the differential indeterminate \\spad{s}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(v)} returns \\spad{n} if \\spad{v} is the \\spad{n}-th derivative of any differential indeterminate.")) (|makeVariable| (($ |#2| (|NonNegativeInteger|)) "\\spad{makeVariable(s, n)} returns the \\spad{n}-th derivative of a differential indeterminate \\spad{s} as an algebraic indeterminate.")))
NIL
@@ -1074,7 +1074,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))))
(-286 S)
((|constructor| (NIL "An extensible aggregate is one which allows insertion and deletion of entries. These aggregates are models of lists and streams which are represented by linked structures so as to make insertion,{} deletion,{} and concatenation efficient. However,{} access to elements of these extensible aggregates is generally slow since access is made from the end. See \\spadtype{FlexibleArray} for an exception.")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(u)} destructively removes duplicates from \\spad{u}.")) (|select!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select!(p,u)} destructively changes \\spad{u} by keeping only values \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})}.")) (|merge!| (($ $ $) "\\spad{merge!(u,v)} destructively merges \\spad{u} and \\spad{v} in ascending order.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $ $) "\\spad{merge!(p,u,v)} destructively merges \\spad{u} and \\spad{v} using predicate \\spad{p}.")) (|insert!| (($ $ $ (|Integer|)) "\\spad{insert!(v,u,i)} destructively inserts aggregate \\spad{v} into \\spad{u} at position \\spad{i}.") (($ |#1| $ (|Integer|)) "\\spad{insert!(x,u,i)} destructively inserts \\spad{x} into \\spad{u} at position \\spad{i}.")) (|remove!| (($ |#1| $) "\\spad{remove!(x,u)} destructively removes all values \\spad{x} from \\spad{u}.") (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove!(p,u)} destructively removes all elements \\spad{x} of \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.")) (|delete!| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete!(u,i..j)} destructively deletes elements \\spad{u}.\\spad{i} through \\spad{u}.\\spad{j}.") (($ $ (|Integer|)) "\\spad{delete!(u,i)} destructively deletes the \\axiom{\\spad{i}}th element of \\spad{u}.")) (|concat!| (($ $ $) "\\spad{concat!(u,v)} destructively appends \\spad{v} to the end of \\spad{u}. \\spad{v} is unchanged") (($ $ |#1|) "\\spad{concat!(u,x)} destructively adds element \\spad{x} to the end of \\spad{u}.")))
-((-4449 . T))
+((-4450 . T))
NIL
(-287 S)
((|constructor| (NIL "Category for the elementary functions.")) (** (($ $ $) "\\spad{x**y} returns \\spad{x} to the power \\spad{y}.")) (|exp| (($ $) "\\spad{exp(x)} returns \\%\\spad{e} to the power \\spad{x}.")) (|log| (($ $) "\\spad{log(x)} returns the natural logarithm of \\spad{x}.")))
@@ -1095,18 +1095,18 @@ NIL
(-291 S |Dom| |Im|)
((|constructor| (NIL "An eltable aggregate is one which can be viewed as a function. For example,{} the list \\axiom{[1,{}7,{}4]} can applied to 0,{}1,{} and 2 respectively will return the integers 1,{}7,{} and 4; thus this list may be viewed as mapping 0 to 1,{} 1 to 7 and 2 to 4. In general,{} an aggregate can map members of a domain {\\em Dom} to an image domain {\\em Im}.")) (|qsetelt!| ((|#3| $ |#2| |#3|) "\\spad{qsetelt!(u,x,y)} sets the image of \\axiom{\\spad{x}} to be \\axiom{\\spad{y}} under \\axiom{\\spad{u}},{} without checking that \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If such a check is required use the function \\axiom{setelt}.")) (|setelt| ((|#3| $ |#2| |#3|) "\\spad{setelt(u,x,y)} sets the image of \\spad{x} to be \\spad{y} under \\spad{u},{} assuming \\spad{x} is in the domain of \\spad{u}. Error: if \\spad{x} is not in the domain of \\spad{u}.")) (|qelt| ((|#3| $ |#2|) "\\spad{qelt(u, x)} applies \\axiom{\\spad{u}} to \\axiom{\\spad{x}} without checking whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If \\axiom{\\spad{x}} is not in the domain of \\axiom{\\spad{u}} a memory-access violation may occur. If a check on whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}} is required,{} use the function \\axiom{elt}.")) (|elt| ((|#3| $ |#2| |#3|) "\\spad{elt(u, x, y)} applies \\spad{u} to \\spad{x} if \\spad{x} is in the domain of \\spad{u},{} and returns \\spad{y} otherwise. For example,{} if \\spad{u} is a polynomial in \\axiom{\\spad{x}} over the rationals,{} \\axiom{elt(\\spad{u},{}\\spad{n},{}0)} may define the coefficient of \\axiom{\\spad{x}} to the power \\spad{n},{} returning 0 when \\spad{n} is out of range.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)))
+((|HasAttribute| |#1| (QUOTE -4450)))
(-292 |Dom| |Im|)
((|constructor| (NIL "An eltable aggregate is one which can be viewed as a function. For example,{} the list \\axiom{[1,{}7,{}4]} can applied to 0,{}1,{} and 2 respectively will return the integers 1,{}7,{} and 4; thus this list may be viewed as mapping 0 to 1,{} 1 to 7 and 2 to 4. In general,{} an aggregate can map members of a domain {\\em Dom} to an image domain {\\em Im}.")) (|qsetelt!| ((|#2| $ |#1| |#2|) "\\spad{qsetelt!(u,x,y)} sets the image of \\axiom{\\spad{x}} to be \\axiom{\\spad{y}} under \\axiom{\\spad{u}},{} without checking that \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If such a check is required use the function \\axiom{setelt}.")) (|setelt| ((|#2| $ |#1| |#2|) "\\spad{setelt(u,x,y)} sets the image of \\spad{x} to be \\spad{y} under \\spad{u},{} assuming \\spad{x} is in the domain of \\spad{u}. Error: if \\spad{x} is not in the domain of \\spad{u}.")) (|qelt| ((|#2| $ |#1|) "\\spad{qelt(u, x)} applies \\axiom{\\spad{u}} to \\axiom{\\spad{x}} without checking whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If \\axiom{\\spad{x}} is not in the domain of \\axiom{\\spad{u}} a memory-access violation may occur. If a check on whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}} is required,{} use the function \\axiom{elt}.")) (|elt| ((|#2| $ |#1| |#2|) "\\spad{elt(u, x, y)} applies \\spad{u} to \\spad{x} if \\spad{x} is in the domain of \\spad{u},{} and returns \\spad{y} otherwise. For example,{} if \\spad{u} is a polynomial in \\axiom{\\spad{x}} over the rationals,{} \\axiom{elt(\\spad{u},{}\\spad{n},{}0)} may define the coefficient of \\axiom{\\spad{x}} to the power \\spad{n},{} returning 0 when \\spad{n} is out of range.")))
NIL
NIL
-(-293 S R |Mod| -4052 -3068 |exactQuo|)
+(-293 S R |Mod| -2979 -2727 |exactQuo|)
((|constructor| (NIL "These domains are used for the factorization and gcds of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{ModularRing},{} \\spadtype{ModularField}")) (|elt| ((|#2| $ |#2|) "\\spad{elt(x,r)} or \\spad{x}.\\spad{r} \\undocumented")) (|inv| (($ $) "\\spad{inv(x)} \\undocumented")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} \\undocumented")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,y)} \\undocumented")) (|reduce| (($ |#2| |#3|) "\\spad{reduce(r,m)} \\undocumented")) (|coerce| ((|#2| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#3| $) "\\spad{modulus(x)} \\undocumented")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-294)
((|constructor| (NIL "Entire Rings (non-commutative Integral Domains),{} \\spadignore{i.e.} a ring not necessarily commutative which has no zero divisors. \\blankline")) (|noZeroDivisors| ((|attribute|) "if a product is zero then one of the factors must be zero.")))
-((-4441 . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-295)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: March 18,{} 2010. An `Environment' is a stack of scope.")) (|categoryFrame| (($) "the current category environment in the interpreter.")) (|interactiveEnv| (($) "the current interactive environment in effect.")) (|currentEnv| (($) "the current normal environment in effect.")) (|putProperties| (($ (|Identifier|) (|List| (|Property|)) $) "\\spad{putProperties(n,props,e)} set the list of properties of \\spad{n} to \\spad{props} in \\spad{e}.")) (|getProperties| (((|List| (|Property|)) (|Identifier|) $) "\\spad{getBinding(n,e)} returns the list of properties of \\spad{n} in \\spad{e}.")) (|putProperty| (($ (|Identifier|) (|Identifier|) (|SExpression|) $) "\\spad{putProperty(n,p,v,e)} binds the property \\spad{(p,v)} to \\spad{n} in the topmost scope of \\spad{e}.")) (|getProperty| (((|Maybe| (|SExpression|)) (|Identifier|) (|Identifier|) $) "\\spad{getProperty(n,p,e)} returns the value of property with name \\spad{p} for the symbol \\spad{n} in environment \\spad{e}. Otherwise,{} \\spad{nothing}.")) (|scopes| (((|List| (|Scope|)) $) "\\spad{scopes(e)} returns the stack of scopes in environment \\spad{e}.")) (|empty| (($) "\\spad{empty()} constructs an empty environment")))
@@ -1122,12 +1122,12 @@ NIL
NIL
(-298 S)
((|constructor| (NIL "Equations as mathematical objects. All properties of the basis domain,{} \\spadignore{e.g.} being an abelian group are carried over the equation domain,{} by performing the structural operations on the left and on the right hand side.")) (|subst| (($ $ $) "\\spad{subst(eq1,eq2)} substitutes \\spad{eq2} into both sides of \\spad{eq1} the \\spad{lhs} of \\spad{eq2} should be a kernel")) (|inv| (($ $) "\\spad{inv(x)} returns the multiplicative inverse of \\spad{x}.")) (/ (($ $ $) "\\spad{e1/e2} produces a new equation by dividing the left and right hand sides of equations e1 and e2.")) (|factorAndSplit| (((|List| $) $) "\\spad{factorAndSplit(eq)} make the right hand side 0 and factors the new left hand side. Each factor is equated to 0 and put into the resulting list without repetitions.")) (|rightOne| (((|Union| $ "failed") $) "\\spad{rightOne(eq)} divides by the right hand side.") (((|Union| $ "failed") $) "\\spad{rightOne(eq)} divides by the right hand side,{} if possible.")) (|leftOne| (((|Union| $ "failed") $) "\\spad{leftOne(eq)} divides by the left hand side.") (((|Union| $ "failed") $) "\\spad{leftOne(eq)} divides by the left hand side,{} if possible.")) (* (($ $ |#1|) "\\spad{eqn*x} produces a new equation by multiplying both sides of equation eqn by \\spad{x}.") (($ |#1| $) "\\spad{x*eqn} produces a new equation by multiplying both sides of equation eqn by \\spad{x}.")) (- (($ $ |#1|) "\\spad{eqn-x} produces a new equation by subtracting \\spad{x} from both sides of equation eqn.") (($ |#1| $) "\\spad{x-eqn} produces a new equation by subtracting both sides of equation eqn from \\spad{x}.")) (|rightZero| (($ $) "\\spad{rightZero(eq)} subtracts the right hand side.")) (|leftZero| (($ $) "\\spad{leftZero(eq)} subtracts the left hand side.")) (+ (($ $ |#1|) "\\spad{eqn+x} produces a new equation by adding \\spad{x} to both sides of equation eqn.") (($ |#1| $) "\\spad{x+eqn} produces a new equation by adding \\spad{x} to both sides of equation eqn.")) (|eval| (($ $ (|List| $)) "\\spad{eval(eqn, [x1=v1, ... xn=vn])} replaces \\spad{xi} by \\spad{vi} in equation \\spad{eqn}.") (($ $ $) "\\spad{eval(eqn, x=f)} replaces \\spad{x} by \\spad{f} in equation \\spad{eqn}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,eqn)} constructs a new equation by applying \\spad{f} to both sides of \\spad{eqn}.")) (|rhs| ((|#1| $) "\\spad{rhs(eqn)} returns the right hand side of equation \\spad{eqn}.")) (|lhs| ((|#1| $) "\\spad{lhs(eqn)} returns the left hand side of equation \\spad{eqn}.")) (|swap| (($ $) "\\spad{swap(eq)} interchanges left and right hand side of equation \\spad{eq}.")) (|equation| (($ |#1| |#1|) "\\spad{equation(a,b)} creates an equation.")) (= (($ |#1| |#1|) "\\spad{a=b} creates an equation.")))
-((-4445 -2740 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4442 |has| |#1| (-1058)) (-4443 |has| |#1| (-1058)))
+((-4446 -2740 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4443 |has| |#1| (-1058)) (-4444 |has| |#1| (-1058)))
((|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-732)))) (|HasCategory| |#1| (QUOTE (-479))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-1109)))) (-2740 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#1| (QUOTE (-1121)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-306))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-479)))) (-2740 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-732)))) (-2740 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-732))))
(-299 |Key| |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are compared using \\spadfun{eq?}. Thus keys are considered equal only if they are the same instance of a structure.")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
(-300)
((|constructor| (NIL "ErrorFunctions implements error functions callable from the system interpreter. Typically,{} these functions would be called in user functions. The simple forms of the functions take one argument which is either a string (an error message) or a list of strings which all together make up a message. The list can contain formatting codes (see below). The more sophisticated versions takes two arguments where the first argument is the name of the function from which the error was invoked and the second argument is either a string or a list of strings,{} as above. When you use the one argument version in an interpreter function,{} the system will automatically insert the name of the function as the new first argument. Thus in the user interpreter function \\indented{2}{\\spad{f x == if x < 0 then error \"negative argument\" else x}} the call to error will actually be of the form \\indented{2}{\\spad{error(\"f\",\"negative argument\")}} because the interpreter will have created a new first argument. \\blankline Formatting codes: error messages may contain the following formatting codes (they should either start or end a string or else have blanks around them): \\indented{3}{\\spad{\\%l}\\space{6}start a new line} \\indented{3}{\\spad{\\%b}\\space{6}start printing in a bold font (where available)} \\indented{3}{\\spad{\\%d}\\space{6}stop\\space{2}printing in a bold font (where available)} \\indented{3}{\\spad{ \\%ceon}\\space{2}start centering message lines} \\indented{3}{\\spad{\\%ceoff}\\space{2}stop\\space{2}centering message lines} \\indented{3}{\\spad{\\%rjon}\\space{3}start displaying lines \"ragged left\"} \\indented{3}{\\spad{\\%rjoff}\\space{2}stop\\space{2}displaying lines \"ragged left\"} \\indented{3}{\\spad{\\%i}\\space{6}indent\\space{3}following lines 3 additional spaces} \\indented{3}{\\spad{\\%u}\\space{6}unindent following lines 3 additional spaces} \\indented{3}{\\spad{\\%xN}\\space{5}insert \\spad{N} blanks (eg,{} \\spad{\\%x10} inserts 10 blanks)} \\blankline")) (|error| (((|Exit|) (|String|) (|List| (|String|))) "\\spad{error(nam,lmsg)} displays error messages \\spad{lmsg} preceded by a message containing the name \\spad{nam} of the function in which the error is contained.") (((|Exit|) (|String|) (|String|)) "\\spad{error(nam,msg)} displays error message \\spad{msg} preceded by a message containing the name \\spad{nam} of the function in which the error is contained.") (((|Exit|) (|List| (|String|))) "\\spad{error(lmsg)} displays error message \\spad{lmsg} and terminates.") (((|Exit|) (|String|)) "\\spad{error(msg)} displays error message \\spad{msg} and terminates.")))
NIL
@@ -1174,7 +1174,7 @@ NIL
NIL
(-311)
((|constructor| (NIL "A constructive euclidean domain,{} \\spadignore{i.e.} one can divide producing a quotient and a remainder where the remainder is either zero or is smaller (\\spadfun{euclideanSize}) than the divisor. \\blankline Conditional attributes: \\indented{2}{multiplicativeValuation\\tab{25}\\spad{Size(a*b)=Size(a)*Size(b)}} \\indented{2}{additiveValuation\\tab{25}\\spad{Size(a*b)=Size(a)+Size(b)}}")) (|multiEuclidean| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{multiEuclidean([f1,...,fn],z)} returns a list of coefficients \\spad{[a1, ..., an]} such that \\spad{ z / prod fi = sum aj/fj}. If no such list of coefficients exists,{} \"failed\" is returned.")) (|extendedEuclidean| (((|Union| (|Record| (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) "\\spad{extendedEuclidean(x,y,z)} either returns a record rec where \\spad{rec.coef1*x+rec.coef2*y=z} or returns \"failed\" if \\spad{z} cannot be expressed as a linear combination of \\spad{x} and \\spad{y}.") (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{extendedEuclidean(x,y)} returns a record rec where \\spad{rec.coef1*x+rec.coef2*y = rec.generator} and rec.generator is a \\spad{gcd} of \\spad{x} and \\spad{y}. The \\spad{gcd} is unique only up to associates if \\spadatt{canonicalUnitNormal} is not asserted. \\spadfun{principalIdeal} provides a version of this operation which accepts an arbitrary length list of arguments.")) (|rem| (($ $ $) "\\spad{x rem y} is the same as \\spad{divide(x,y).remainder}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|quo| (($ $ $) "\\spad{x quo y} is the same as \\spad{divide(x,y).quotient}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(x,y)} divides \\spad{x} by \\spad{y} producing a record containing a \\spad{quotient} and \\spad{remainder},{} where the remainder is smaller (see \\spadfunFrom{sizeLess?}{EuclideanDomain}) than the divisor \\spad{y}.")) (|euclideanSize| (((|NonNegativeInteger|) $) "\\spad{euclideanSize(x)} returns the euclidean size of the element \\spad{x}. Error: if \\spad{x} is zero.")) (|sizeLess?| (((|Boolean|) $ $) "\\spad{sizeLess?(x,y)} tests whether \\spad{x} is strictly smaller than \\spad{y} with respect to the \\spadfunFrom{euclideanSize}{EuclideanDomain}.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-312 S R)
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions.")) (|eval| (($ $ (|List| (|Equation| |#2|))) "\\spad{eval(f, [x1 = v1,...,xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#2|)) "\\spad{eval(f,x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
@@ -1198,8 +1198,8 @@ NIL
NIL
(-317 R FE |var| |cen|)
((|constructor| (NIL "UnivariatePuiseuxSeriesWithExponentialSingularity is a domain used to represent essential singularities of functions. Objects in this domain are quotients of sums,{} where each term in the sum is a univariate Puiseux series times the exponential of a univariate Puiseux series.")) (|coerce| (($ (|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) "\\spad{coerce(f)} converts a \\spadtype{UnivariatePuiseuxSeries} to an \\spadtype{ExponentialExpansion}.")) (|limitPlus| (((|Union| (|OrderedCompletion| |#2|) "failed") $) "\\spad{limitPlus(f(var))} returns \\spad{limit(var -> a+,f(var))}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-146))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-148))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-1031))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-826))) (-2740 (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-826))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-856)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-1161))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-235))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1262) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -313) (LIST (QUOTE -1262) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (LIST (QUOTE -290) (LIST (QUOTE -1262) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1262) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-311))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-551))) (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-856))) (-12 (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| $ (QUOTE (-146)))) (-2740 (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-146))) (-12 (|HasCategory| (-1262 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| $ (QUOTE (-146))))))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-146))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-148))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-1031))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-826))) (-2740 (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-826))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-856)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-1161))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-235))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1263) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -313) (LIST (QUOTE -1263) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (LIST (QUOTE -290) (LIST (QUOTE -1263) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1263) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-311))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-551))) (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-856))) (-12 (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| $ (QUOTE (-146)))) (-2740 (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-146))) (-12 (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| $ (QUOTE (-146))))))
(-318 R S)
((|constructor| (NIL "Lifting of maps to Expressions. Date Created: 16 Jan 1989 Date Last Updated: 22 Jan 1990")) (|map| (((|Expression| |#2|) (|Mapping| |#2| |#1|) (|Expression| |#1|)) "\\spad{map(f, e)} applies \\spad{f} to all the constants appearing in \\spad{e}.")))
NIL
@@ -1210,7 +1210,7 @@ NIL
NIL
(-320 R)
((|constructor| (NIL "Expressions involving symbolic functions.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} \\undocumented{}")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} \\undocumented{}")) (|simplifyPower| (($ $ (|Integer|)) "simplifyPower?(\\spad{f},{}\\spad{n}) \\undocumented{}")) (|number?| (((|Boolean|) $) "\\spad{number?(f)} tests if \\spad{f} is rational")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic quantities present in \\spad{f} by applying their defining relations.")))
-((-4445 -2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-12 (|has| |#1| (-562)) (-2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (|has| |#1| (-1058)) (|has| |#1| (-479)))) (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) ((-4450 "*") |has| |#1| (-562)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-562)) (-4440 |has| |#1| (-562)))
+((-4446 -2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-12 (|has| |#1| (-562)) (-2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (|has| |#1| (-1058)) (|has| |#1| (-479)))) (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) ((-4451 "*") |has| |#1| (-562)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-562)) (-4441 |has| |#1| (-562)))
((-2740 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (QUOTE (-21))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1121)))) (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-1058)))) (-12 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1121)))) (-2740 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))))) (-2740 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1121)))) (-2740 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))))) (-2740 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1121))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| $ (QUOTE (-1058))) (|HasCategory| $ (LIST (QUOTE -1047) (QUOTE (-570)))))
(-321 R -1674)
((|constructor| (NIL "Taylor series solutions of explicit ODE\\spad{'s}.")) (|seriesSolve| (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve(eq, y, x = a, [b0,...,bn])} is equivalent to \\spad{seriesSolve(eq = 0, y, x = a, [b0,...,b(n-1)])}.") (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) (|Equation| |#2|)) "\\spad{seriesSolve(eq, y, x = a, y a = b)} is equivalent to \\spad{seriesSolve(eq=0, y, x=a, y a = b)}.") (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) |#2|) "\\spad{seriesSolve(eq, y, x = a, b)} is equivalent to \\spad{seriesSolve(eq = 0, y, x = a, y a = b)}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) |#2|) "\\spad{seriesSolve(eq,y, x=a, b)} is equivalent to \\spad{seriesSolve(eq, y, x=a, y a = b)}.") (((|Any|) (|List| |#2|) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| (|Equation| |#2|))) "\\spad{seriesSolve([eq1,...,eqn], [y1,...,yn], x = a,[y1 a = b1,..., yn a = bn])} is equivalent to \\spad{seriesSolve([eq1=0,...,eqn=0], [y1,...,yn], x = a, [y1 a = b1,..., yn a = bn])}.") (((|Any|) (|List| |#2|) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve([eq1,...,eqn], [y1,...,yn], x=a, [b1,...,bn])} is equivalent to \\spad{seriesSolve([eq1=0,...,eqn=0], [y1,...,yn], x=a, [b1,...,bn])}.") (((|Any|) (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve([eq1,...,eqn], [y1,...,yn], x=a, [b1,...,bn])} is equivalent to \\spad{seriesSolve([eq1,...,eqn], [y1,...,yn], x = a, [y1 a = b1,..., yn a = bn])}.") (((|Any|) (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| (|Equation| |#2|))) "\\spad{seriesSolve([eq1,...,eqn],[y1,...,yn],x = a,[y1 a = b1,...,yn a = bn])} returns a taylor series solution of \\spad{[eq1,...,eqn]} around \\spad{x = a} with initial conditions \\spad{yi(a) = bi}. Note: eqi must be of the form \\spad{fi(x, y1 x, y2 x,..., yn x) y1'(x) + gi(x, y1 x, y2 x,..., yn x) = h(x, y1 x, y2 x,..., yn x)}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve(eq,y,x=a,[b0,...,b(n-1)])} returns a Taylor series solution of \\spad{eq} around \\spad{x = a} with initial conditions \\spad{y(a) = b0},{} \\spad{y'(a) = b1},{} \\spad{y''(a) = b2},{} ...,{}\\spad{y(n-1)(a) = b(n-1)} \\spad{eq} must be of the form \\spad{f(x, y x, y'(x),..., y(n-1)(x)) y(n)(x) + g(x,y x,y'(x),...,y(n-1)(x)) = h(x,y x, y'(x),..., y(n-1)(x))}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|Equation| |#2|)) "\\spad{seriesSolve(eq,y,x=a, y a = b)} returns a Taylor series solution of \\spad{eq} around \\spad{x} = a with initial condition \\spad{y(a) = b}. Note: \\spad{eq} must be of the form \\spad{f(x, y x) y'(x) + g(x, y x) = h(x, y x)}.")))
@@ -1222,8 +1222,8 @@ NIL
NIL
(-323 FE |var| |cen|)
((|constructor| (NIL "ExponentialOfUnivariatePuiseuxSeries is a domain used to represent essential singularities of functions. An object in this domain is a function of the form \\spad{exp(f(x))},{} where \\spad{f(x)} is a Puiseux series with no terms of non-negative degree. Objects are ordered according to order of singularity,{} with functions which tend more rapidly to zero or infinity considered to be larger. Thus,{} if \\spad{order(f(x)) < order(g(x))},{} \\spadignore{i.e.} the first non-zero term of \\spad{f(x)} has lower degree than the first non-zero term of \\spad{g(x)},{} then \\spad{exp(f(x)) > exp(g(x))}. If \\spad{order(f(x)) = order(g(x))},{} then the ordering is essentially random. This domain is used in computing limits involving functions with essential singularities.")) (|exponentialOrder| (((|Fraction| (|Integer|)) $) "\\spad{exponentialOrder(exp(c * x **(-n) + ...))} returns \\spad{-n}. exponentialOrder(0) returns \\spad{0}.")) (|exponent| (((|UnivariatePuiseuxSeries| |#1| |#2| |#3|) $) "\\spad{exponent(exp(f(x)))} returns \\spad{f(x)}")) (|exponential| (($ (|UnivariatePuiseuxSeries| |#1| |#2| |#3|)) "\\spad{exponential(f(x))} returns \\spad{exp(f(x))}. Note: the function does NOT check that \\spad{f(x)} has no non-negative terms.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
(-324 M)
((|constructor| (NIL "computes various functions on factored arguments.")) (|log| (((|List| (|Record| (|:| |coef| (|NonNegativeInteger|)) (|:| |logand| |#1|))) (|Factored| |#1|)) "\\spad{log(f)} returns \\spad{[(a1,b1),...,(am,bm)]} such that the logarithm of \\spad{f} is equal to \\spad{a1*log(b1) + ... + am*log(bm)}.")) (|nthRoot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#1|) (|:| |radicand| (|List| |#1|))) (|Factored| |#1|) (|NonNegativeInteger|)) "\\spad{nthRoot(f, n)} returns \\spad{(p, r, [r1,...,rm])} such that the \\spad{n}th-root of \\spad{f} is equal to \\spad{r * \\spad{p}th-root(r1 * ... * rm)},{} where \\spad{r1},{}...,{}\\spad{rm} are distinct factors of \\spad{f},{} each of which has an exponent smaller than \\spad{p} in \\spad{f}.")))
NIL
@@ -1234,7 +1234,7 @@ NIL
NIL
(-326 S)
((|constructor| (NIL "The free abelian group on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,[ni * si])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The operation is commutative.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
((|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-798))))
(-327 S E)
((|constructor| (NIL "A free abelian monoid on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,[ni * si])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are in a given abelian monoid. The operation is commutative.")) (|highCommonTerms| (($ $ $) "\\spad{highCommonTerms(e1 a1 + ... + en an, f1 b1 + ... + fm bm)} returns \\indented{2}{\\spad{reduce(+,[max(ei, fi) ci])}} where \\spad{ci} ranges in the intersection of \\spad{{a1,...,an}} and \\spad{{b1,...,bm}}.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f, e1 a1 +...+ en an)} returns \\spad{e1 f(a1) +...+ en f(an)}.")) (|mapCoef| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapCoef(f, e1 a1 +...+ en an)} returns \\spad{f(e1) a1 +...+ f(en) an}.")) (|coefficient| ((|#2| |#1| $) "\\spad{coefficient(s, e1 a1 + ... + en an)} returns \\spad{ei} such that \\spad{ai} = \\spad{s},{} or 0 if \\spad{s} is not one of the \\spad{ai}\\spad{'s}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x, n)} returns the factor of the n^th term of \\spad{x}.")) (|nthCoef| ((|#2| $ (|Integer|)) "\\spad{nthCoef(x, n)} returns the coefficient of the n^th term of \\spad{x}.")) (|terms| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| |#2|))) $) "\\spad{terms(e1 a1 + ... + en an)} returns \\spad{[[a1, e1],...,[an, en]]}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of terms in \\spad{x}. mapGen(\\spad{f},{} a1\\spad{\\^}e1 ... an\\spad{\\^}en) returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (* (($ |#2| |#1|) "\\spad{e * s} returns \\spad{e} times \\spad{s}.")) (+ (($ |#1| $) "\\spad{s + x} returns the sum of \\spad{s} and \\spad{x}.")))
@@ -1250,11 +1250,11 @@ NIL
((|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))))
(-330 R E)
((|constructor| (NIL "This category is similar to AbelianMonoidRing,{} except that the sum is assumed to be finite. It is a useful model for polynomials,{} but is somewhat more general.")) (|primitivePart| (($ $) "\\spad{primitivePart(p)} returns the unit normalized form of polynomial \\spad{p} divided by the content of \\spad{p}.")) (|content| ((|#1| $) "\\spad{content(p)} gives the \\spad{gcd} of the coefficients of polynomial \\spad{p}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(p,r)} returns the exact quotient of polynomial \\spad{p} by \\spad{r},{} or \"failed\" if none exists.")) (|binomThmExpt| (($ $ $ (|NonNegativeInteger|)) "\\spad{binomThmExpt(p,q,n)} returns \\spad{(x+y)^n} by means of the binomial theorem trick.")) (|pomopo!| (($ $ |#1| |#2| $) "\\spad{pomopo!(p1,r,e,p2)} returns \\spad{p1 + monomial(e,r) * p2} and may use \\spad{p1} as workspace. The constaant \\spad{r} is assumed to be nonzero.")) (|mapExponents| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapExponents(fn,u)} maps function \\spad{fn} onto the exponents of the non-zero monomials of polynomial \\spad{u}.")) (|minimumDegree| ((|#2| $) "\\spad{minimumDegree(p)} gives the least exponent of a non-zero term of polynomial \\spad{p}. Error: if applied to 0.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(p)} gives the number of non-zero monomials in polynomial \\spad{p}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(p)} gives the list of non-zero coefficients of polynomial \\spad{p}.")) (|ground| ((|#1| $) "\\spad{ground(p)} retracts polynomial \\spad{p} to the coefficient ring.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(p)} tests if polynomial \\spad{p} is a member of the coefficient ring.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-331 S)
((|constructor| (NIL "\\indented{1}{A FlexibleArray is the notion of an array intended to allow for growth} at the end only. Hence the following efficient operations \\indented{2}{\\spad{append(x,a)} meaning append item \\spad{x} at the end of the array \\spad{a}} \\indented{2}{\\spad{delete(a,n)} meaning delete the last item from the array \\spad{a}} Flexible arrays support the other operations inherited from \\spadtype{ExtensibleLinearAggregate}. However,{} these are not efficient. Flexible arrays combine the \\spad{O(1)} access time property of arrays with growing and shrinking at the end in \\spad{O(1)} (average) time. This is done by using an ordinary array which may have zero or more empty slots at the end. When the array becomes full it is copied into a new larger (50\\% larger) array. Conversely,{} when the array becomes less than 1/2 full,{} it is copied into a smaller array. Flexible arrays provide for an efficient implementation of many data structures in particular heaps,{} stacks and sets.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-332 S -1674)
((|constructor| (NIL "FiniteAlgebraicExtensionField {\\em F} is the category of fields which are finite algebraic extensions of the field {\\em F}. If {\\em F} is finite then any finite algebraic extension of {\\em F} is finite,{} too. Let {\\em K} be a finite algebraic extension of the finite field {\\em F}. The exponentiation of elements of {\\em K} defines a \\spad{Z}-module structure on the multiplicative group of {\\em K}. The additive group of {\\em K} becomes a module over the ring of polynomials over {\\em F} via the operation \\spadfun{linearAssociatedExp}(a:K,{}f:SparseUnivariatePolynomial \\spad{F}) which is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em K},{} {\\em c,d} from {\\em F} and {\\em f,g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)} where {\\em q=size()\\$F}. The operations order and discreteLog associated with the multiplicative exponentiation have additive analogues associated to the operation \\spadfun{linearAssociatedExp}. These are the functions \\spadfun{linearAssociatedOrder} and \\spadfun{linearAssociatedLog},{} respectively.")) (|linearAssociatedLog| (((|Union| (|SparseUnivariatePolynomial| |#2|) "failed") $ $) "\\spad{linearAssociatedLog(b,a)} returns a polynomial {\\em g},{} such that the \\spadfun{linearAssociatedExp}(\\spad{b},{}\\spad{g}) equals {\\em a}. If there is no such polynomial {\\em g},{} then \\spadfun{linearAssociatedLog} fails.") (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{linearAssociatedLog(a)} returns a polynomial {\\em g},{} such that \\spadfun{linearAssociatedExp}(normalElement(),{}\\spad{g}) equals {\\em a}.")) (|linearAssociatedOrder| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{linearAssociatedOrder(a)} retruns the monic polynomial {\\em g} of least degree,{} such that \\spadfun{linearAssociatedExp}(a,{}\\spad{g}) is 0.")) (|linearAssociatedExp| (($ $ (|SparseUnivariatePolynomial| |#2|)) "\\spad{linearAssociatedExp(a,f)} is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em \\$},{} {\\em c,d} form {\\em F} and {\\em f,g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)},{} where {\\em q=size()\\$F}.")) (|generator| (($) "\\spad{generator()} returns a root of the defining polynomial. This element generates the field as an algebra over the ground field.")) (|normal?| (((|Boolean|) $) "\\spad{normal?(a)} tests whether the element \\spad{a} is normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i), 0 <= i <= extensionDegree()-1} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Implementation according to Lidl/Niederreiter: Theorem 2.39.")) (|normalElement| (($) "\\spad{normalElement()} returns a element,{} normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i), 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. At the first call,{} the element is computed by \\spadfunFrom{createNormalElement}{FiniteAlgebraicExtensionField} then cached in a global variable. On subsequent calls,{} the element is retrieved by referencing the global variable.")) (|createNormalElement| (($) "\\spad{createNormalElement()} computes a normal element over the ground field \\spad{F},{} that is,{} \\spad{a**(q**i), 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Reference: Such an element exists Lidl/Niederreiter: Theorem 2.35.")) (|trace| (($ $ (|PositiveInteger|)) "\\spad{trace(a,d)} computes the trace of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size \\spad{q}. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: \\spad{trace(a,d) = reduce(+,[a**(q**(d*i)) for i in 0..n/d])}.") ((|#2| $) "\\spad{trace(a)} computes the trace of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|norm| (($ $ (|PositiveInteger|)) "\\spad{norm(a,d)} computes the norm of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: norm(a,{}\\spad{d}) = reduce(*,{}[a**(\\spad{q**}(d*i)) for \\spad{i} in 0..\\spad{n/d}])") ((|#2| $) "\\spad{norm(a)} computes the norm of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|degree| (((|PositiveInteger|) $) "\\spad{degree(a)} returns the degree of the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|extensionDegree| (((|PositiveInteger|)) "\\spad{extensionDegree()} returns the degree of field extension.")) (|definingPolynomial| (((|SparseUnivariatePolynomial| |#2|)) "\\spad{definingPolynomial()} returns the polynomial used to define the field extension.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| $) $ (|PositiveInteger|)) "\\spad{minimalPolynomial(x,n)} computes the minimal polynomial of \\spad{x} over the field of extension degree \\spad{n} over the ground field \\spad{F}.") (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,..,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([v1,...,vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{F}-vectorspace basis.")) (|basis| (((|Vector| $) (|PositiveInteger|)) "\\spad{basis(n)} returns a fixed basis of a subfield of \\spad{\\$} as \\spad{F}-vectorspace.") (((|Vector| $)) "\\spad{basis()} returns a fixed basis of \\spad{\\$} as \\spad{F}-vectorspace.")))
@@ -1262,7 +1262,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-373))))
(-333 -1674)
((|constructor| (NIL "FiniteAlgebraicExtensionField {\\em F} is the category of fields which are finite algebraic extensions of the field {\\em F}. If {\\em F} is finite then any finite algebraic extension of {\\em F} is finite,{} too. Let {\\em K} be a finite algebraic extension of the finite field {\\em F}. The exponentiation of elements of {\\em K} defines a \\spad{Z}-module structure on the multiplicative group of {\\em K}. The additive group of {\\em K} becomes a module over the ring of polynomials over {\\em F} via the operation \\spadfun{linearAssociatedExp}(a:K,{}f:SparseUnivariatePolynomial \\spad{F}) which is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em K},{} {\\em c,d} from {\\em F} and {\\em f,g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)} where {\\em q=size()\\$F}. The operations order and discreteLog associated with the multiplicative exponentiation have additive analogues associated to the operation \\spadfun{linearAssociatedExp}. These are the functions \\spadfun{linearAssociatedOrder} and \\spadfun{linearAssociatedLog},{} respectively.")) (|linearAssociatedLog| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") $ $) "\\spad{linearAssociatedLog(b,a)} returns a polynomial {\\em g},{} such that the \\spadfun{linearAssociatedExp}(\\spad{b},{}\\spad{g}) equals {\\em a}. If there is no such polynomial {\\em g},{} then \\spadfun{linearAssociatedLog} fails.") (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{linearAssociatedLog(a)} returns a polynomial {\\em g},{} such that \\spadfun{linearAssociatedExp}(normalElement(),{}\\spad{g}) equals {\\em a}.")) (|linearAssociatedOrder| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{linearAssociatedOrder(a)} retruns the monic polynomial {\\em g} of least degree,{} such that \\spadfun{linearAssociatedExp}(a,{}\\spad{g}) is 0.")) (|linearAssociatedExp| (($ $ (|SparseUnivariatePolynomial| |#1|)) "\\spad{linearAssociatedExp(a,f)} is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em \\$},{} {\\em c,d} form {\\em F} and {\\em f,g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)},{} where {\\em q=size()\\$F}.")) (|generator| (($) "\\spad{generator()} returns a root of the defining polynomial. This element generates the field as an algebra over the ground field.")) (|normal?| (((|Boolean|) $) "\\spad{normal?(a)} tests whether the element \\spad{a} is normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i), 0 <= i <= extensionDegree()-1} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Implementation according to Lidl/Niederreiter: Theorem 2.39.")) (|normalElement| (($) "\\spad{normalElement()} returns a element,{} normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i), 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. At the first call,{} the element is computed by \\spadfunFrom{createNormalElement}{FiniteAlgebraicExtensionField} then cached in a global variable. On subsequent calls,{} the element is retrieved by referencing the global variable.")) (|createNormalElement| (($) "\\spad{createNormalElement()} computes a normal element over the ground field \\spad{F},{} that is,{} \\spad{a**(q**i), 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Reference: Such an element exists Lidl/Niederreiter: Theorem 2.35.")) (|trace| (($ $ (|PositiveInteger|)) "\\spad{trace(a,d)} computes the trace of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size \\spad{q}. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: \\spad{trace(a,d) = reduce(+,[a**(q**(d*i)) for i in 0..n/d])}.") ((|#1| $) "\\spad{trace(a)} computes the trace of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|norm| (($ $ (|PositiveInteger|)) "\\spad{norm(a,d)} computes the norm of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: norm(a,{}\\spad{d}) = reduce(*,{}[a**(\\spad{q**}(d*i)) for \\spad{i} in 0..\\spad{n/d}])") ((|#1| $) "\\spad{norm(a)} computes the norm of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|degree| (((|PositiveInteger|) $) "\\spad{degree(a)} returns the degree of the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|extensionDegree| (((|PositiveInteger|)) "\\spad{extensionDegree()} returns the degree of field extension.")) (|definingPolynomial| (((|SparseUnivariatePolynomial| |#1|)) "\\spad{definingPolynomial()} returns the polynomial used to define the field extension.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| $) $ (|PositiveInteger|)) "\\spad{minimalPolynomial(x,n)} computes the minimal polynomial of \\spad{x} over the field of extension degree \\spad{n} over the ground field \\spad{F}.") (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,..,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([v1,...,vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{F}-vectorspace basis.")) (|basis| (((|Vector| $) (|PositiveInteger|)) "\\spad{basis(n)} returns a fixed basis of a subfield of \\spad{\\$} as \\spad{F}-vectorspace.") (((|Vector| $)) "\\spad{basis()} returns a fixed basis of \\spad{\\$} as \\spad{F}-vectorspace.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-334)
((|constructor| (NIL "This domain builds representations of program code segments for use with the FortranProgram domain.")) (|setLabelValue| (((|SingleInteger|) (|SingleInteger|)) "\\spad{setLabelValue(i)} resets the counter which produces labels to \\spad{i}")) (|getCode| (((|SExpression|) $) "\\spad{getCode(f)} returns a Lisp list of strings representing \\spad{f} in Fortran notation. This is used by the FortranProgram domain.")) (|printCode| (((|Void|) $) "\\spad{printCode(f)} prints out \\spad{f} in FORTRAN notation.")) (|code| (((|Union| (|:| |nullBranch| "null") (|:| |assignmentBranch| (|Record| (|:| |var| (|Symbol|)) (|:| |arrayIndex| (|List| (|Polynomial| (|Integer|)))) (|:| |rand| (|Record| (|:| |ints2Floats?| (|Boolean|)) (|:| |expr| (|OutputForm|)))))) (|:| |arrayAssignmentBranch| (|Record| (|:| |var| (|Symbol|)) (|:| |rand| (|OutputForm|)) (|:| |ints2Floats?| (|Boolean|)))) (|:| |conditionalBranch| (|Record| (|:| |switch| (|Switch|)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (|Record| (|:| |empty?| (|Boolean|)) (|:| |value| (|Record| (|:| |ints2Floats?| (|Boolean|)) (|:| |expr| (|OutputForm|)))))) (|:| |blockBranch| (|List| $)) (|:| |commentBranch| (|List| (|String|))) (|:| |callBranch| (|String|)) (|:| |forBranch| (|Record| (|:| |range| (|SegmentBinding| (|Polynomial| (|Integer|)))) (|:| |span| (|Polynomial| (|Integer|))) (|:| |body| $))) (|:| |labelBranch| (|SingleInteger|)) (|:| |loopBranch| (|Record| (|:| |switch| (|Switch|)) (|:| |body| $))) (|:| |commonBranch| (|Record| (|:| |name| (|Symbol|)) (|:| |contents| (|List| (|Symbol|))))) (|:| |printBranch| (|List| (|OutputForm|)))) $) "\\spad{code(f)} returns the internal representation of the object represented by \\spad{f}.")) (|operation| (((|Union| (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) "\\spad{operation(f)} returns the name of the operation represented by \\spad{f}.")) (|common| (($ (|Symbol|) (|List| (|Symbol|))) "\\spad{common(name,contents)} creates a representation a named common block.")) (|printStatement| (($ (|List| (|OutputForm|))) "\\spad{printStatement(l)} creates a representation of a PRINT statement.")) (|save| (($) "\\spad{save()} creates a representation of a SAVE statement.")) (|stop| (($) "\\spad{stop()} creates a representation of a STOP statement.")) (|block| (($ (|List| $)) "\\spad{block(l)} creates a representation of the statements in \\spad{l} as a block.")) (|assign| (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Complex| (|Float|)))) "\\spad{assign(x,l,y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Float|))) "\\spad{assign(x,l,y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Integer|))) "\\spad{assign(x,l,y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|Vector| (|Expression| (|Complex| (|Float|))))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|Float|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|Integer|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Complex| (|Float|))))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Float|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Integer|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Complex| (|Float|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Float|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Integer|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineComplex|))) "\\spad{assign(x,l,y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineFloat|))) "\\spad{assign(x,l,y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineInteger|))) "\\spad{assign(x,l,y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|Vector| (|Expression| (|MachineComplex|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|MachineFloat|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|MachineInteger|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineComplex|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineFloat|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineInteger|)))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineComplex|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineFloat|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineInteger|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineComplex|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineFloat|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineInteger|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineComplex|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineFloat|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineInteger|))) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|String|)) "\\spad{assign(x,y)} creates a representation of the FORTRAN expression x=y.")) (|cond| (($ (|Switch|) $ $) "\\spad{cond(s,e,f)} creates a representation of the FORTRAN expression IF (\\spad{s}) THEN \\spad{e} ELSE \\spad{f}.") (($ (|Switch|) $) "\\spad{cond(s,e)} creates a representation of the FORTRAN expression IF (\\spad{s}) THEN \\spad{e}.")) (|returns| (($ (|Expression| (|Complex| (|Float|)))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|Integer|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|Float|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineComplex|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineInteger|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineFloat|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($) "\\spad{returns()} creates a representation of a FORTRAN RETURN statement.")) (|call| (($ (|String|)) "\\spad{call(s)} creates a representation of a FORTRAN CALL statement")) (|comment| (($ (|List| (|String|))) "\\spad{comment(s)} creates a representation of the Strings \\spad{s} as a multi-line FORTRAN comment.") (($ (|String|)) "\\spad{comment(s)} creates a representation of the String \\spad{s} as a single FORTRAN comment.")) (|continue| (($ (|SingleInteger|)) "\\spad{continue(l)} creates a representation of a FORTRAN CONTINUE labelled with \\spad{l}")) (|goto| (($ (|SingleInteger|)) "\\spad{goto(l)} creates a representation of a FORTRAN GOTO statement")) (|repeatUntilLoop| (($ (|Switch|) $) "\\spad{repeatUntilLoop(s,c)} creates a repeat ... until loop in FORTRAN.")) (|whileLoop| (($ (|Switch|) $) "\\spad{whileLoop(s,c)} creates a while loop in FORTRAN.")) (|forLoop| (($ (|SegmentBinding| (|Polynomial| (|Integer|))) (|Polynomial| (|Integer|)) $) "\\spad{forLoop(i=1..10,n,c)} creates a representation of a FORTRAN DO loop with \\spad{i} ranging over the values 1 to 10 by \\spad{n}.") (($ (|SegmentBinding| (|Polynomial| (|Integer|))) $) "\\spad{forLoop(i=1..10,c)} creates a representation of a FORTRAN DO loop with \\spad{i} ranging over the values 1 to 10.")))
@@ -1306,7 +1306,7 @@ NIL
NIL
(-344 |basicSymbols| |subscriptedSymbols| R)
((|constructor| (NIL "A domain of expressions involving functions which can be translated into standard Fortran-77,{} with some extra extensions from the NAG Fortran Library.")) (|useNagFunctions| (((|Boolean|) (|Boolean|)) "\\spad{useNagFunctions(v)} sets the flag which controls whether NAG functions \\indented{1}{are being used for mathematical and machine constants.\\space{2}The previous} \\indented{1}{value is returned.}") (((|Boolean|)) "\\spad{useNagFunctions()} indicates whether NAG functions are being used \\indented{1}{for mathematical and machine constants.}")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(e)} return a list of all the variables in \\spad{e}.")) (|pi| (($) "\\spad{pi(x)} represents the NAG Library function X01AAF which returns \\indented{1}{an approximation to the value of \\spad{pi}}")) (|tanh| (($ $) "\\spad{tanh(x)} represents the Fortran intrinsic function TANH")) (|cosh| (($ $) "\\spad{cosh(x)} represents the Fortran intrinsic function COSH")) (|sinh| (($ $) "\\spad{sinh(x)} represents the Fortran intrinsic function SINH")) (|atan| (($ $) "\\spad{atan(x)} represents the Fortran intrinsic function ATAN")) (|acos| (($ $) "\\spad{acos(x)} represents the Fortran intrinsic function ACOS")) (|asin| (($ $) "\\spad{asin(x)} represents the Fortran intrinsic function ASIN")) (|tan| (($ $) "\\spad{tan(x)} represents the Fortran intrinsic function TAN")) (|cos| (($ $) "\\spad{cos(x)} represents the Fortran intrinsic function COS")) (|sin| (($ $) "\\spad{sin(x)} represents the Fortran intrinsic function SIN")) (|log10| (($ $) "\\spad{log10(x)} represents the Fortran intrinsic function LOG10")) (|log| (($ $) "\\spad{log(x)} represents the Fortran intrinsic function LOG")) (|exp| (($ $) "\\spad{exp(x)} represents the Fortran intrinsic function EXP")) (|sqrt| (($ $) "\\spad{sqrt(x)} represents the Fortran intrinsic function SQRT")) (|abs| (($ $) "\\spad{abs(x)} represents the Fortran intrinsic function ABS")) (|coerce| (((|Expression| |#3|) $) "\\spad{coerce(x)} \\undocumented{}")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| (|Float|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| (|Float|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| (|Integer|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Symbol|)) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a FortranExpression \\indented{1}{checking that it is one of the given basic symbols} \\indented{1}{or subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| |#3|)) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}")) (|retract| (($ (|Polynomial| (|Float|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| (|Float|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Polynomial| (|Integer|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| (|Integer|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Symbol|)) "\\spad{retract(e)} takes \\spad{e} and transforms it into a FortranExpression \\indented{1}{checking that it is one of the given basic symbols} \\indented{1}{or subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| |#3|)) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-384)))) (|HasCategory| $ (QUOTE (-1058))) (|HasCategory| $ (LIST (QUOTE -1047) (QUOTE (-570)))))
(-345 R1 UP1 UPUP1 F1 R2 UP2 UPUP2 F2)
((|constructor| (NIL "Lifts a map from rings to function fields over them.")) (|map| ((|#8| (|Mapping| |#5| |#1|) |#4|) "\\spad{map(f, p)} lifts \\spad{f} to \\spad{F1} and applies it to \\spad{p}.")))
@@ -1318,19 +1318,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-368))))
(-347 -1674 UP UPUP)
((|constructor| (NIL "This category is a model for the function field of a plane algebraic curve.")) (|rationalPoints| (((|List| (|List| |#1|))) "\\spad{rationalPoints()} returns the list of all the affine rational points.")) (|nonSingularModel| (((|List| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{nonSingularModel(u)} returns the equations in u1,{}...,{}un of an affine non-singular model for the curve.")) (|algSplitSimple| (((|Record| (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (|Mapping| |#2| |#2|)) "\\spad{algSplitSimple(f, D)} returns \\spad{[h,d,d',g]} such that \\spad{f=h/d},{} \\spad{h} is integral at all the normal places \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{d' = Dd},{} \\spad{g = gcd(d, discriminant())} and \\spad{D} is the derivation to use. \\spad{f} must have at most simple finite poles.")) (|hyperelliptic| (((|Union| |#2| "failed")) "\\spad{hyperelliptic()} returns \\spad{p(x)} if the curve is the hyperelliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elliptic| (((|Union| |#2| "failed")) "\\spad{elliptic()} returns \\spad{p(x)} if the curve is the elliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elt| ((|#1| $ |#1| |#1|) "\\spad{elt(f,a,b)} or \\spad{f}(a,{} \\spad{b}) returns the value of \\spad{f} at the point \\spad{(x = a, y = b)} if it is not singular.")) (|primitivePart| (($ $) "\\spad{primitivePart(f)} removes the content of the denominator and the common content of the numerator of \\spad{f}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|)) "\\spad{differentiate(x, d)} extends the derivation \\spad{d} from UP to \\$ and applies it to \\spad{x}.")) (|integralDerivationMatrix| (((|Record| (|:| |num| (|Matrix| |#2|)) (|:| |den| |#2|)) (|Mapping| |#2| |#2|)) "\\spad{integralDerivationMatrix(d)} extends the derivation \\spad{d} from UP to \\$ and returns (\\spad{M},{} \\spad{Q}) such that the i^th row of \\spad{M} divided by \\spad{Q} form the coordinates of \\spad{d(wi)} with respect to \\spad{(w1,...,wn)} where \\spad{(w1,...,wn)} is the integral basis returned by integralBasis().")) (|integralRepresents| (($ (|Vector| |#2|) |#2|) "\\spad{integralRepresents([A1,...,An], D)} returns \\spad{(A1 w1+...+An wn)/D} where \\spad{(w1,...,wn)} is the integral basis of \\spad{integralBasis()}.")) (|integralCoordinates| (((|Record| (|:| |num| (|Vector| |#2|)) (|:| |den| |#2|)) $) "\\spad{integralCoordinates(f)} returns \\spad{[[A1,...,An], D]} such that \\spad{f = (A1 w1 +...+ An wn) / D} where \\spad{(w1,...,wn)} is the integral basis returned by \\spad{integralBasis()}.")) (|represents| (($ (|Vector| |#2|) |#2|) "\\spad{represents([A0,...,A(n-1)],D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.")) (|yCoordinates| (((|Record| (|:| |num| (|Vector| |#2|)) (|:| |den| |#2|)) $) "\\spad{yCoordinates(f)} returns \\spad{[[A1,...,An], D]} such that \\spad{f = (A1 + A2 y +...+ An y**(n-1)) / D}.")) (|inverseIntegralMatrixAtInfinity| (((|Matrix| (|Fraction| |#2|))) "\\spad{inverseIntegralMatrixAtInfinity()} returns \\spad{M} such that \\spad{M (v1,...,vn) = (1, y, ..., y**(n-1))} where \\spad{(v1,...,vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|integralMatrixAtInfinity| (((|Matrix| (|Fraction| |#2|))) "\\spad{integralMatrixAtInfinity()} returns \\spad{M} such that \\spad{(v1,...,vn) = M (1, y, ..., y**(n-1))} where \\spad{(v1,...,vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|inverseIntegralMatrix| (((|Matrix| (|Fraction| |#2|))) "\\spad{inverseIntegralMatrix()} returns \\spad{M} such that \\spad{M (w1,...,wn) = (1, y, ..., y**(n-1))} where \\spad{(w1,...,wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|integralMatrix| (((|Matrix| (|Fraction| |#2|))) "\\spad{integralMatrix()} returns \\spad{M} such that \\spad{(w1,...,wn) = M (1, y, ..., y**(n-1))},{} where \\spad{(w1,...,wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|reduceBasisAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{reduceBasisAtInfinity(b1,...,bn)} returns \\spad{(x**i * bj)} for all \\spad{i},{}\\spad{j} such that \\spad{x**i*bj} is locally integral at infinity.")) (|normalizeAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{normalizeAtInfinity(v)} makes \\spad{v} normal at infinity.")) (|complementaryBasis| (((|Vector| $) (|Vector| $)) "\\spad{complementaryBasis(b1,...,bn)} returns the complementary basis \\spad{(b1',...,bn')} of \\spad{(b1,...,bn)}.")) (|integral?| (((|Boolean|) $ |#2|) "\\spad{integral?(f, p)} tests whether \\spad{f} is locally integral at \\spad{p(x) = 0}.") (((|Boolean|) $ |#1|) "\\spad{integral?(f, a)} tests whether \\spad{f} is locally integral at \\spad{x = a}.") (((|Boolean|) $) "\\spad{integral?()} tests if \\spad{f} is integral over \\spad{k[x]}.")) (|integralAtInfinity?| (((|Boolean|) $) "\\spad{integralAtInfinity?()} tests if \\spad{f} is locally integral at infinity.")) (|integralBasisAtInfinity| (((|Vector| $)) "\\spad{integralBasisAtInfinity()} returns the local integral basis at infinity.")) (|integralBasis| (((|Vector| $)) "\\spad{integralBasis()} returns the integral basis for the curve.")) (|ramified?| (((|Boolean|) |#2|) "\\spad{ramified?(p)} tests whether \\spad{p(x) = 0} is ramified.") (((|Boolean|) |#1|) "\\spad{ramified?(a)} tests whether \\spad{x = a} is ramified.")) (|ramifiedAtInfinity?| (((|Boolean|)) "\\spad{ramifiedAtInfinity?()} tests if infinity is ramified.")) (|singular?| (((|Boolean|) |#2|) "\\spad{singular?(p)} tests whether \\spad{p(x) = 0} is singular.") (((|Boolean|) |#1|) "\\spad{singular?(a)} tests whether \\spad{x = a} is singular.")) (|singularAtInfinity?| (((|Boolean|)) "\\spad{singularAtInfinity?()} tests if there is a singularity at infinity.")) (|branchPoint?| (((|Boolean|) |#2|) "\\spad{branchPoint?(p)} tests whether \\spad{p(x) = 0} is a branch point.") (((|Boolean|) |#1|) "\\spad{branchPoint?(a)} tests whether \\spad{x = a} is a branch point.")) (|branchPointAtInfinity?| (((|Boolean|)) "\\spad{branchPointAtInfinity?()} tests if there is a branch point at infinity.")) (|rationalPoint?| (((|Boolean|) |#1| |#1|) "\\spad{rationalPoint?(a, b)} tests if \\spad{(x=a,y=b)} is on the curve.")) (|absolutelyIrreducible?| (((|Boolean|)) "\\spad{absolutelyIrreducible?()} tests if the curve absolutely irreducible?")) (|genus| (((|NonNegativeInteger|)) "\\spad{genus()} returns the genus of one absolutely irreducible component")) (|numberOfComponents| (((|NonNegativeInteger|)) "\\spad{numberOfComponents()} returns the number of absolutely irreducible components.")))
-((-4441 |has| (-413 |#2|) (-368)) (-4446 |has| (-413 |#2|) (-368)) (-4440 |has| (-413 |#2|) (-368)) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| (-413 |#2|) (-368)) (-4447 |has| (-413 |#2|) (-368)) (-4441 |has| (-413 |#2|) (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-348 |p| |extdeg|)
((|constructor| (NIL "FiniteFieldCyclicGroup(\\spad{p},{}\\spad{n}) implements a finite field extension of degee \\spad{n} over the prime field with \\spad{p} elements. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial,{} which is created by {\\em createPrimitivePoly} from \\spadtype{FiniteFieldPolynomialPackage}. The Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field. This table is used to perform additions in the field quickly.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| (-917 |#1|) (QUOTE (-146))) (|HasCategory| (-917 |#1|) (QUOTE (-373)))) (|HasCategory| (-917 |#1|) (QUOTE (-148))) (|HasCategory| (-917 |#1|) (QUOTE (-373))) (|HasCategory| (-917 |#1|) (QUOTE (-146))))
(-349 GF |defpol|)
((|constructor| (NIL "FiniteFieldCyclicGroupExtensionByPolynomial(\\spad{GF},{}defpol) implements a finite extension field of the ground field {\\em GF}. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial {\\em defpol},{} which MUST be primitive (user responsibility). Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field it is used to perform additions in the field quickly.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
(-350 GF |extdeg|)
((|constructor| (NIL "FiniteFieldCyclicGroupExtension(\\spad{GF},{}\\spad{n}) implements a extension of degree \\spad{n} over the ground field {\\em GF}. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial,{} which is created by {\\em createPrimitivePoly} from \\spadtype{FiniteFieldPolynomialPackage}. Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field. This table is used to perform additions in the field quickly.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
(-351 GF)
((|constructor| (NIL "FiniteFieldFunctions(\\spad{GF}) is a package with functions concerning finite extension fields of the finite ground field {\\em GF},{} \\spadignore{e.g.} Zech logarithms.")) (|createLowComplexityNormalBasis| (((|Union| (|SparseUnivariatePolynomial| |#1|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) (|PositiveInteger|)) "\\spad{createLowComplexityNormalBasis(n)} tries to find a a low complexity normal basis of degree {\\em n} over {\\em GF} and returns its multiplication matrix If no low complexity basis is found it calls \\axiomFunFrom{createNormalPoly}{FiniteFieldPolynomialPackage}(\\spad{n}) to produce a normal polynomial of degree {\\em n} over {\\em GF}")) (|createLowComplexityTable| (((|Union| (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) "failed") (|PositiveInteger|)) "\\spad{createLowComplexityTable(n)} tries to find a low complexity normal basis of degree {\\em n} over {\\em GF} and returns its multiplication matrix Fails,{} if it does not find a low complexity basis")) (|sizeMultiplication| (((|NonNegativeInteger|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{sizeMultiplication(m)} returns the number of entries of the multiplication table {\\em m}.")) (|createMultiplicationMatrix| (((|Matrix| |#1|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{createMultiplicationMatrix(m)} forms the multiplication table {\\em m} into a matrix over the ground field.")) (|createMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{createMultiplicationTable(f)} generates a multiplication table for the normal basis of the field extension determined by {\\em f}. This is needed to perform multiplications between elements represented as coordinate vectors to this basis. See \\spadtype{FFNBP},{} \\spadtype{FFNBX}.")) (|createZechTable| (((|PrimitiveArray| (|SingleInteger|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{createZechTable(f)} generates a Zech logarithm table for the cyclic group representation of a extension of the ground field by the primitive polynomial {\\em f(x)},{} \\spadignore{i.e.} \\spad{Z(i)},{} defined by {\\em x**Z(i) = 1+x**i} is stored at index \\spad{i}. This is needed in particular to perform addition of field elements in finite fields represented in this way. See \\spadtype{FFCGP},{} \\spadtype{FFCGX}.")))
@@ -1346,7 +1346,7 @@ NIL
NIL
(-354)
((|constructor| (NIL "FiniteFieldCategory is the category of finite fields")) (|representationType| (((|Union| "prime" "polynomial" "normal" "cyclic")) "\\spad{representationType()} returns the type of the representation,{} one of: \\spad{prime},{} \\spad{polynomial},{} \\spad{normal},{} or \\spad{cyclic}.")) (|order| (((|PositiveInteger|) $) "\\spad{order(b)} computes the order of an element \\spad{b} in the multiplicative group of the field. Error: if \\spad{b} equals 0.")) (|discreteLog| (((|NonNegativeInteger|) $) "\\spad{discreteLog(a)} computes the discrete logarithm of \\spad{a} with respect to \\spad{primitiveElement()} of the field.")) (|primitive?| (((|Boolean|) $) "\\spad{primitive?(b)} tests whether the element \\spad{b} is a generator of the (cyclic) multiplicative group of the field,{} \\spadignore{i.e.} is a primitive element. Implementation Note: see \\spad{ch}.IX.1.3,{} th.2 in \\spad{D}. Lipson.")) (|primitiveElement| (($) "\\spad{primitiveElement()} returns a primitive element stored in a global variable in the domain. At first call,{} the primitive element is computed by calling \\spadfun{createPrimitiveElement}.")) (|createPrimitiveElement| (($) "\\spad{createPrimitiveElement()} computes a generator of the (cyclic) multiplicative group of the field.")) (|tableForDiscreteLogarithm| (((|Table| (|PositiveInteger|) (|NonNegativeInteger|)) (|Integer|)) "\\spad{tableForDiscreteLogarithm(a,n)} returns a table of the discrete logarithms of \\spad{a**0} up to \\spad{a**(n-1)} which,{} called with key \\spad{lookup(a**i)} returns \\spad{i} for \\spad{i} in \\spad{0..n-1}. Error: if not called for prime divisors of order of \\indented{7}{multiplicative group.}")) (|factorsOfCyclicGroupSize| (((|List| (|Record| (|:| |factor| (|Integer|)) (|:| |exponent| (|Integer|))))) "\\spad{factorsOfCyclicGroupSize()} returns the factorization of size()\\spad{-1}")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(mat)},{} given a matrix representing a homogeneous system of equations,{} returns a vector whose characteristic'th powers is a non-trivial solution,{} or \"failed\" if no such vector exists.")) (|charthRoot| (($ $) "\\spad{charthRoot(a)} takes the characteristic'th root of {\\em a}. Note: such a root is alway defined in finite fields.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-355 R UP -1674)
((|constructor| (NIL "In this package \\spad{R} is a Euclidean domain and \\spad{F} is a framed algebra over \\spad{R}. The package provides functions to compute the integral closure of \\spad{R} in the quotient field of \\spad{F}. It is assumed that \\spad{char(R/P) = char(R)} for any prime \\spad{P} of \\spad{R}. A typical instance of this is when \\spad{R = K[x]} and \\spad{F} is a function field over \\spad{R}.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) |#1|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,basisDen,basisInv]} containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn}. If \\spad{basis} is the matrix \\spad{(aij, i = 1..n, j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{vi = (1/basisDen) * sum(aij * wj, j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{wi} with respect to the basis \\spad{v1,...,vn}: if \\spad{basisInv} is the matrix \\spad{(bij, i = 1..n, j = 1..n)},{} then \\spad{wi = sum(bij * vj, j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,basisDen,basisInv]} containing information regarding the integral closure of \\spad{R} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn}. If \\spad{basis} is the matrix \\spad{(aij, i = 1..n, j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{vi = (1/basisDen) * sum(aij * wj, j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{wi} with respect to the basis \\spad{v1,...,vn}: if \\spad{basisInv} is the matrix \\spad{(bij, i = 1..n, j = 1..n)},{} then \\spad{wi = sum(bij * vj, j = 1..n)}.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
@@ -1354,23 +1354,23 @@ NIL
NIL
(-356 |p| |extdeg|)
((|constructor| (NIL "FiniteFieldNormalBasis(\\spad{p},{}\\spad{n}) implements a finite extension field of degree \\spad{n} over the prime field with \\spad{p} elements. The elements are represented by coordinate vectors with respect to a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element. This is chosen as a root of the extension polynomial created by \\spadfunFrom{createNormalPoly}{FiniteFieldPolynomialPackage}.")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: The time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| (|PrimeField| |#1|))) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| (|PrimeField| |#1|)) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| (-917 |#1|) (QUOTE (-146))) (|HasCategory| (-917 |#1|) (QUOTE (-373)))) (|HasCategory| (-917 |#1|) (QUOTE (-148))) (|HasCategory| (-917 |#1|) (QUOTE (-373))) (|HasCategory| (-917 |#1|) (QUOTE (-146))))
(-357 GF |uni|)
((|constructor| (NIL "FiniteFieldNormalBasisExtensionByPolynomial(\\spad{GF},{}uni) implements a finite extension of the ground field {\\em GF}. The elements are represented by coordinate vectors with respect to. a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element,{} where \\spad{q} is the size of {\\em GF}. The normal element is chosen as a root of the extension polynomial,{} which MUST be normal over {\\em GF} (user responsibility)")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: the time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| |#1|)) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
(-358 GF |extdeg|)
((|constructor| (NIL "FiniteFieldNormalBasisExtensionByPolynomial(\\spad{GF},{}\\spad{n}) implements a finite extension field of degree \\spad{n} over the ground field {\\em GF}. The elements are represented by coordinate vectors with respect to a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element. This is chosen as a root of the extension polynomial,{} created by {\\em createNormalPoly} from \\spadtype{FiniteFieldPolynomialPackage}")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: the time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| |#1|)) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
(-359 |p| |n|)
((|constructor| (NIL "FiniteField(\\spad{p},{}\\spad{n}) implements finite fields with p**n elements. This packages checks that \\spad{p} is prime. For a non-checking version,{} see \\spadtype{InnerFiniteField}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| (-917 |#1|) (QUOTE (-146))) (|HasCategory| (-917 |#1|) (QUOTE (-373)))) (|HasCategory| (-917 |#1|) (QUOTE (-148))) (|HasCategory| (-917 |#1|) (QUOTE (-373))) (|HasCategory| (-917 |#1|) (QUOTE (-146))))
(-360 GF |defpol|)
((|constructor| (NIL "FiniteFieldExtensionByPolynomial(\\spad{GF},{} defpol) implements the extension of the finite field {\\em GF} generated by the extension polynomial {\\em defpol} which MUST be irreducible. Note: the user has the responsibility to ensure that {\\em defpol} is irreducible.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
(-361 -1674 GF)
((|constructor| (NIL "FiniteFieldPolynomialPackage2(\\spad{F},{}\\spad{GF}) exports some functions concerning finite fields,{} which depend on a finite field {\\em GF} and an algebraic extension \\spad{F} of {\\em GF},{} \\spadignore{e.g.} a zero of a polynomial over {\\em GF} in \\spad{F}.")) (|rootOfIrreduciblePoly| ((|#1| (|SparseUnivariatePolynomial| |#2|)) "\\spad{rootOfIrreduciblePoly(f)} computes one root of the monic,{} irreducible polynomial \\spad{f},{} which degree must divide the extension degree of {\\em F} over {\\em GF},{} \\spadignore{i.e.} \\spad{f} splits into linear factors over {\\em F}.")) (|Frobenius| ((|#1| |#1|) "\\spad{Frobenius(x)} \\undocumented{}")) (|basis| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{basis(n)} \\undocumented{}")) (|lookup| (((|PositiveInteger|) |#1|) "\\spad{lookup(x)} \\undocumented{}")) (|coerce| ((|#1| |#2|) "\\spad{coerce(x)} \\undocumented{}")))
@@ -1386,7 +1386,7 @@ NIL
NIL
(-364 GF |n|)
((|constructor| (NIL "FiniteFieldExtensionByPolynomial(\\spad{GF},{} \\spad{n}) implements an extension of the finite field {\\em GF} of degree \\spad{n} generated by the extension polynomial constructed by \\spadfunFrom{createIrreduciblePoly}{FiniteFieldPolynomialPackage} from \\spadtype{FiniteFieldPolynomialPackage}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
(-365 R |ls|)
((|constructor| (NIL "This is just an interface between several packages and domains. The goal is to compute lexicographical Groebner bases of sets of polynomial with type \\spadtype{Polynomial R} by the {\\em FGLM} algorithm if this is possible (\\spadignore{i.e.} if the input system generates a zero-dimensional ideal).")) (|groebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|))) "\\axiom{groebner(\\spad{lq1})} returns the lexicographical Groebner basis of \\axiom{\\spad{lq1}}. If \\axiom{\\spad{lq1}} generates a zero-dimensional ideal then the {\\em FGLM} strategy is used,{} otherwise the {\\em Sugar} strategy is used.")) (|fglmIfCan| (((|Union| (|List| (|Polynomial| |#1|)) "failed") (|List| (|Polynomial| |#1|))) "\\axiom{fglmIfCan(\\spad{lq1})} returns the lexicographical Groebner basis of \\axiom{\\spad{lq1}} by using the {\\em FGLM} strategy,{} if \\axiom{zeroDimensional?(\\spad{lq1})} holds.")) (|zeroDimensional?| (((|Boolean|) (|List| (|Polynomial| |#1|))) "\\axiom{zeroDimensional?(\\spad{lq1})} returns \\spad{true} iff \\axiom{\\spad{lq1}} generates a zero-dimensional ideal \\spad{w}.\\spad{r}.\\spad{t}. the variables of \\axiom{\\spad{ls}}.")))
@@ -1394,7 +1394,7 @@ NIL
NIL
(-366 S)
((|constructor| (NIL "The free group on a set \\spad{S} is the group of finite products of the form \\spad{reduce(*,[si ** ni])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The multiplication is not commutative.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|Integer|)))) $) "\\spad{factors(a1\\^e1,...,an\\^en)} returns \\spad{[[a1, e1],...,[an, en]]}.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f, a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| (|Integer|) (|Integer|)) $) "\\spad{mapExpon(f, a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x, n)} returns the factor of the n^th monomial of \\spad{x}.")) (|nthExpon| (((|Integer|) $ (|Integer|)) "\\spad{nthExpon(x, n)} returns the exponent of the n^th monomial of \\spad{x}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (** (($ |#1| (|Integer|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-367 S)
((|constructor| (NIL "The category of commutative fields,{} \\spadignore{i.e.} commutative rings where all non-zero elements have multiplicative inverses. The \\spadfun{factor} operation while trivial is useful to have defined. \\blankline")) (|canonicalsClosed| ((|attribute|) "since \\spad{0*0=0},{} \\spad{1*1=1}")) (|canonicalUnitNormal| ((|attribute|) "either 0 or 1.")) (/ (($ $ $) "\\spad{x/y} divides the element \\spad{x} by the element \\spad{y}. Error: if \\spad{y} is 0.")))
@@ -1402,7 +1402,7 @@ NIL
NIL
(-368)
((|constructor| (NIL "The category of commutative fields,{} \\spadignore{i.e.} commutative rings where all non-zero elements have multiplicative inverses. The \\spadfun{factor} operation while trivial is useful to have defined. \\blankline")) (|canonicalsClosed| ((|attribute|) "since \\spad{0*0=0},{} \\spad{1*1=1}")) (|canonicalUnitNormal| ((|attribute|) "either 0 or 1.")) (/ (($ $ $) "\\spad{x/y} divides the element \\spad{x} by the element \\spad{y}. Error: if \\spad{y} is 0.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-369 |Name| S)
((|constructor| (NIL "This category provides an interface to operate on files in the computer\\spad{'s} file system. The precise method of naming files is determined by the Name parameter. The type of the contents of the file is determined by \\spad{S}.")) (|write!| ((|#2| $ |#2|) "\\spad{write!(f,s)} puts the value \\spad{s} into the file \\spad{f}. The state of \\spad{f} is modified so subsequents call to \\spad{write!} will append one after another.")) (|read!| ((|#2| $) "\\spad{read!(f)} extracts a value from file \\spad{f}. The state of \\spad{f} is modified so a subsequent call to \\spadfun{read!} will return the next element.")) (|iomode| (((|String|) $) "\\spad{iomode(f)} returns the status of the file \\spad{f}. The input/output status of \\spad{f} may be \"input\",{} \"output\" or \"closed\" mode.")) (|name| ((|#1| $) "\\spad{name(f)} returns the external name of the file \\spad{f}.")) (|close!| (($ $) "\\spad{close!(f)} returns the file \\spad{f} closed to input and output.")) (|reopen!| (($ $ (|String|)) "\\spad{reopen!(f,mode)} returns a file \\spad{f} reopened for operation in the indicated mode: \"input\" or \"output\". \\spad{reopen!(f,\"input\")} will reopen the file \\spad{f} for input.")) (|open| (($ |#1| (|String|)) "\\spad{open(s,mode)} returns a file \\spad{s} open for operation in the indicated mode: \"input\" or \"output\".") (($ |#1|) "\\spad{open(s)} returns the file \\spad{s} open for input.")))
@@ -1418,7 +1418,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-562))))
(-372 R)
((|constructor| (NIL "A FiniteRankNonAssociativeAlgebra is a non associative algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|unitsKnown| ((|attribute|) "unitsKnown means that \\spadfun{recip} truly yields reciprocal or \\spad{\"failed\"} if not a unit,{} similarly for \\spadfun{leftRecip} and \\spadfun{rightRecip}. The reason is that we use left,{} respectively right,{} minimal polynomials to decide this question.")) (|unit| (((|Union| $ "failed")) "\\spad{unit()} returns a unit of the algebra (necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnit| (((|Union| $ "failed")) "\\spad{rightUnit()} returns a right unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|leftUnit| (((|Union| $ "failed")) "\\spad{leftUnit()} returns a left unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|rightMinimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{rightMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of right powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|leftMinimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{leftMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of left powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|associatorDependence| (((|List| (|Vector| |#1|))) "\\spad{associatorDependence()} looks for the associator identities,{} \\spadignore{i.e.} finds a basis of the solutions of the linear combinations of the six permutations of \\spad{associator(a,b,c)} which yield 0,{} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. The order of the permutations is \\spad{123 231 312 132 321 213}.")) (|rightRecip| (((|Union| $ "failed") $) "\\spad{rightRecip(a)} returns an element,{} which is a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|leftRecip| (((|Union| $ "failed") $) "\\spad{leftRecip(a)} returns an element,{} which is a left inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(a)} returns an element,{} which is both a left and a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|lieAlgebra?| (((|Boolean|)) "\\spad{lieAlgebra?()} tests if the algebra is anticommutative and \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jacobi identity). Example: for every associative algebra \\spad{(A,+,@)} we can construct a Lie algebra \\spad{(A,+,*)},{} where \\spad{a*b := a@b-b@a}.")) (|jordanAlgebra?| (((|Boolean|)) "\\spad{jordanAlgebra?()} tests if the algebra is commutative,{} characteristic is not 2,{} and \\spad{(a*b)*a**2 - a*(b*a**2) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jordan identity). Example: for every associative algebra \\spad{(A,+,@)} we can construct a Jordan algebra \\spad{(A,+,*)},{} where \\spad{a*b := (a@b+b@a)/2}.")) (|noncommutativeJordanAlgebra?| (((|Boolean|)) "\\spad{noncommutativeJordanAlgebra?()} tests if the algebra is flexible and Jordan admissible.")) (|jordanAdmissible?| (((|Boolean|)) "\\spad{jordanAdmissible?()} tests if 2 is invertible in the coefficient domain and the multiplication defined by \\spad{(1/2)(a*b+b*a)} determines a Jordan algebra,{} \\spadignore{i.e.} satisfies the Jordan identity. The property of \\spadatt{commutative(\\spad{\"*\"})} follows from by definition.")) (|lieAdmissible?| (((|Boolean|)) "\\spad{lieAdmissible?()} tests if the algebra defined by the commutators is a Lie algebra,{} \\spadignore{i.e.} satisfies the Jacobi identity. The property of anticommutativity follows from definition.")) (|jacobiIdentity?| (((|Boolean|)) "\\spad{jacobiIdentity?()} tests if \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. For example,{} this holds for crossed products of 3-dimensional vectors.")) (|powerAssociative?| (((|Boolean|)) "\\spad{powerAssociative?()} tests if all subalgebras generated by a single element are associative.")) (|alternative?| (((|Boolean|)) "\\spad{alternative?()} tests if \\spad{2*associator(a,a,b) = 0 = 2*associator(a,b,b)} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|flexible?| (((|Boolean|)) "\\spad{flexible?()} tests if \\spad{2*associator(a,b,a) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|rightAlternative?| (((|Boolean|)) "\\spad{rightAlternative?()} tests if \\spad{2*associator(a,b,b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|leftAlternative?| (((|Boolean|)) "\\spad{leftAlternative?()} tests if \\spad{2*associator(a,a,b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|antiAssociative?| (((|Boolean|)) "\\spad{antiAssociative?()} tests if multiplication in algebra is anti-associative,{} \\spadignore{i.e.} \\spad{(a*b)*c + a*(b*c) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra.")) (|associative?| (((|Boolean|)) "\\spad{associative?()} tests if multiplication in algebra is associative.")) (|antiCommutative?| (((|Boolean|)) "\\spad{antiCommutative?()} tests if \\spad{a*a = 0} for all \\spad{a} in the algebra. Note: this implies \\spad{a*b + b*a = 0} for all \\spad{a} and \\spad{b}.")) (|commutative?| (((|Boolean|)) "\\spad{commutative?()} tests if multiplication in the algebra is commutative.")) (|rightCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{rightCharacteristicPolynomial(a)} returns the characteristic polynomial of the right regular representation of \\spad{a} with respect to any basis.")) (|leftCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{leftCharacteristicPolynomial(a)} returns the characteristic polynomial of the left regular representation of \\spad{a} with respect to any basis.")) (|rightTraceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{rightTraceMatrix([v1,...,vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}.")) (|leftTraceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{leftTraceMatrix([v1,...,vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}.")) (|rightDiscriminant| ((|#1| (|Vector| $)) "\\spad{rightDiscriminant([v1,...,vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(rightTraceMatrix([v1,...,vn]))}.")) (|leftDiscriminant| ((|#1| (|Vector| $)) "\\spad{leftDiscriminant([v1,...,vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(leftTraceMatrix([v1,...,vn]))}.")) (|represents| (($ (|Vector| |#1|) (|Vector| $)) "\\spad{represents([a1,...,am],[v1,...,vm])} returns the linear combination \\spad{a1*vm + ... + an*vm}.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([a1,...,am],[v1,...,vn])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{ai} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.") (((|Vector| |#1|) $ (|Vector| $)) "\\spad{coordinates(a,[v1,...,vn])} returns the coordinates of \\spad{a} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rightNorm| ((|#1| $) "\\spad{rightNorm(a)} returns the determinant of the right regular representation of \\spad{a}.")) (|leftNorm| ((|#1| $) "\\spad{leftNorm(a)} returns the determinant of the left regular representation of \\spad{a}.")) (|rightTrace| ((|#1| $) "\\spad{rightTrace(a)} returns the trace of the right regular representation of \\spad{a}.")) (|leftTrace| ((|#1| $) "\\spad{leftTrace(a)} returns the trace of the left regular representation of \\spad{a}.")) (|rightRegularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{rightRegularRepresentation(a,[v1,...,vn])} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,...,vn]}.")) (|leftRegularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{leftRegularRepresentation(a,[v1,...,vn])} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,...,vn]}.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|)) (|Vector| $)) "\\spad{structuralConstants([v1,v2,...,vm])} calculates the structural constants \\spad{[(gammaijk) for k in 1..m]} defined by \\spad{vi * vj = gammaij1 * v1 + ... + gammaijm * vm},{} where \\spad{[v1,...,vm]} is an \\spad{R}-module basis of a subalgebra.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,...,vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra as \\spad{R}-module.")) (|someBasis| (((|Vector| $)) "\\spad{someBasis()} returns some \\spad{R}-module basis.")))
-((-4445 |has| |#1| (-562)) (-4443 . T) (-4442 . T))
+((-4446 |has| |#1| (-562)) (-4444 . T) (-4443 . T))
NIL
(-373)
((|constructor| (NIL "The category of domains composed of a finite set of elements. We include the functions \\spadfun{lookup} and \\spadfun{index} to give a bijection between the finite set and an initial segment of positive integers. \\blankline")) (|random| (($) "\\spad{random()} returns a random element from the set.")) (|lookup| (((|PositiveInteger|) $) "\\spad{lookup(x)} returns a positive integer such that \\spad{x = index lookup x}.")) (|index| (($ (|PositiveInteger|)) "\\spad{index(i)} takes a positive integer \\spad{i} less than or equal to \\spad{size()} and returns the \\spad{i}\\spad{-}th element of the set. This operation establishs a bijection between the elements of the finite set and \\spad{1..size()}.")) (|size| (((|NonNegativeInteger|)) "\\spad{size()} returns the number of elements in the set.")))
@@ -1430,7 +1430,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-368))))
(-375 R UP)
((|constructor| (NIL "A FiniteRankAlgebra is an algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|minimalPolynomial| ((|#2| $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of \\spad{a}.")) (|characteristicPolynomial| ((|#2| $) "\\spad{characteristicPolynomial(a)} returns the characteristic polynomial of the regular representation of \\spad{a} with respect to any basis.")) (|traceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{traceMatrix([v1,..,vn])} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr}(\\spad{vi} * \\spad{vj}) )")) (|discriminant| ((|#1| (|Vector| $)) "\\spad{discriminant([v1,..,vn])} returns \\spad{determinant(traceMatrix([v1,..,vn]))}.")) (|represents| (($ (|Vector| |#1|) (|Vector| $)) "\\spad{represents([a1,..,an],[v1,..,vn])} returns \\spad{a1*v1 + ... + an*vn}.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([v1,...,vm], basis)} returns the coordinates of the \\spad{vi}\\spad{'s} with to the basis \\spad{basis}. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $ (|Vector| $)) "\\spad{coordinates(a,basis)} returns the coordinates of \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|norm| ((|#1| $) "\\spad{norm(a)} returns the determinant of the regular representation of \\spad{a} with respect to any basis.")) (|trace| ((|#1| $) "\\spad{trace(a)} returns the trace of the regular representation of \\spad{a} with respect to any basis.")) (|regularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{regularRepresentation(a,basis)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-376 S A R B)
((|constructor| (NIL "FiniteLinearAggregateFunctions2 provides functions involving two FiniteLinearAggregates where the underlying domains might be different. An example of this might be creating a list of rational numbers by mapping a function across a list of integers where the function divides each integer by 1000.")) (|scan| ((|#4| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{scan(f,a,r)} successively applies \\spad{reduce(f,x,r)} to more and more leading sub-aggregates \\spad{x} of aggregrate \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,a2,...]},{} then \\spad{scan(f,a,r)} returns \\spad{[reduce(f,[a1],r),reduce(f,[a1,a2],r),...]}.")) (|reduce| ((|#3| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{reduce(f,a,r)} applies function \\spad{f} to each successive element of the aggregate \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,[1,2,3],0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,a)} applies function \\spad{f} to each member of aggregate \\spad{a} resulting in a new aggregate over a possibly different underlying domain.")))
@@ -1439,14 +1439,14 @@ NIL
(-377 A S)
((|constructor| (NIL "A finite linear aggregate is a linear aggregate of finite length. The finite property of the aggregate adds several exports to the list of exports from \\spadtype{LinearAggregate} such as \\spadfun{reverse},{} \\spadfun{sort},{} and so on.")) (|sort!| (($ $) "\\spad{sort!(u)} returns \\spad{u} with its elements in ascending order.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sort!(p,u)} returns \\spad{u} with its elements ordered by \\spad{p}.")) (|reverse!| (($ $) "\\spad{reverse!(u)} returns \\spad{u} with its elements in reverse order.")) (|copyInto!| (($ $ $ (|Integer|)) "\\spad{copyInto!(u,v,i)} returns aggregate \\spad{u} containing a copy of \\spad{v} inserted at element \\spad{i}.")) (|position| (((|Integer|) |#2| $ (|Integer|)) "\\spad{position(x,a,n)} returns the index \\spad{i} of the first occurrence of \\spad{x} in \\axiom{a} where \\axiom{\\spad{i} \\spad{>=} \\spad{n}},{} and \\axiom{minIndex(a) - 1} if no such \\spad{x} is found.") (((|Integer|) |#2| $) "\\spad{position(x,a)} returns the index \\spad{i} of the first occurrence of \\spad{x} in a,{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.") (((|Integer|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{position(p,a)} returns the index \\spad{i} of the first \\spad{x} in \\axiom{a} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.")) (|sorted?| (((|Boolean|) $) "\\spad{sorted?(u)} tests if the elements of \\spad{u} are in ascending order.") (((|Boolean|) (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sorted?(p,a)} tests if \\axiom{a} is sorted according to predicate \\spad{p}.")) (|sort| (($ $) "\\spad{sort(u)} returns an \\spad{u} with elements in ascending order. Note: \\axiom{sort(\\spad{u}) = sort(\\spad{<=},{}\\spad{u})}.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sort(p,a)} returns a copy of \\axiom{a} sorted using total ordering predicate \\spad{p}.")) (|reverse| (($ $) "\\spad{reverse(a)} returns a copy of \\axiom{a} with elements in reverse order.")) (|merge| (($ $ $) "\\spad{merge(u,v)} merges \\spad{u} and \\spad{v} in ascending order. Note: \\axiom{merge(\\spad{u},{}\\spad{v}) = merge(\\spad{<=},{}\\spad{u},{}\\spad{v})}.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $ $) "\\spad{merge(p,a,b)} returns an aggregate \\spad{c} which merges \\axiom{a} and \\spad{b}. The result is produced by examining each element \\spad{x} of \\axiom{a} and \\spad{y} of \\spad{b} successively. If \\axiom{\\spad{p}(\\spad{x},{}\\spad{y})} is \\spad{true},{} then \\spad{x} is inserted into the result; otherwise \\spad{y} is inserted. If \\spad{x} is chosen,{} the next element of \\axiom{a} is examined,{} and so on. When all the elements of one aggregate are examined,{} the remaining elements of the other are appended. For example,{} \\axiom{merge(<,{}[1,{}3],{}[2,{}7,{}5])} returns \\axiom{[1,{}2,{}3,{}7,{}5]}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)) (|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))))
+((|HasAttribute| |#1| (QUOTE -4450)) (|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))))
(-378 S)
((|constructor| (NIL "A finite linear aggregate is a linear aggregate of finite length. The finite property of the aggregate adds several exports to the list of exports from \\spadtype{LinearAggregate} such as \\spadfun{reverse},{} \\spadfun{sort},{} and so on.")) (|sort!| (($ $) "\\spad{sort!(u)} returns \\spad{u} with its elements in ascending order.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sort!(p,u)} returns \\spad{u} with its elements ordered by \\spad{p}.")) (|reverse!| (($ $) "\\spad{reverse!(u)} returns \\spad{u} with its elements in reverse order.")) (|copyInto!| (($ $ $ (|Integer|)) "\\spad{copyInto!(u,v,i)} returns aggregate \\spad{u} containing a copy of \\spad{v} inserted at element \\spad{i}.")) (|position| (((|Integer|) |#1| $ (|Integer|)) "\\spad{position(x,a,n)} returns the index \\spad{i} of the first occurrence of \\spad{x} in \\axiom{a} where \\axiom{\\spad{i} \\spad{>=} \\spad{n}},{} and \\axiom{minIndex(a) - 1} if no such \\spad{x} is found.") (((|Integer|) |#1| $) "\\spad{position(x,a)} returns the index \\spad{i} of the first occurrence of \\spad{x} in a,{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.") (((|Integer|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{position(p,a)} returns the index \\spad{i} of the first \\spad{x} in \\axiom{a} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.")) (|sorted?| (((|Boolean|) $) "\\spad{sorted?(u)} tests if the elements of \\spad{u} are in ascending order.") (((|Boolean|) (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sorted?(p,a)} tests if \\axiom{a} is sorted according to predicate \\spad{p}.")) (|sort| (($ $) "\\spad{sort(u)} returns an \\spad{u} with elements in ascending order. Note: \\axiom{sort(\\spad{u}) = sort(\\spad{<=},{}\\spad{u})}.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sort(p,a)} returns a copy of \\axiom{a} sorted using total ordering predicate \\spad{p}.")) (|reverse| (($ $) "\\spad{reverse(a)} returns a copy of \\axiom{a} with elements in reverse order.")) (|merge| (($ $ $) "\\spad{merge(u,v)} merges \\spad{u} and \\spad{v} in ascending order. Note: \\axiom{merge(\\spad{u},{}\\spad{v}) = merge(\\spad{<=},{}\\spad{u},{}\\spad{v})}.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $ $) "\\spad{merge(p,a,b)} returns an aggregate \\spad{c} which merges \\axiom{a} and \\spad{b}. The result is produced by examining each element \\spad{x} of \\axiom{a} and \\spad{y} of \\spad{b} successively. If \\axiom{\\spad{p}(\\spad{x},{}\\spad{y})} is \\spad{true},{} then \\spad{x} is inserted into the result; otherwise \\spad{y} is inserted. If \\spad{x} is chosen,{} the next element of \\axiom{a} is examined,{} and so on. When all the elements of one aggregate are examined,{} the remaining elements of the other are appended. For example,{} \\axiom{merge(<,{}[1,{}3],{}[2,{}7,{}5])} returns \\axiom{[1,{}2,{}3,{}7,{}5]}.")))
-((-4448 . T))
+((-4449 . T))
NIL
(-379 |VarSet| R)
((|constructor| (NIL "The category of free Lie algebras. It is used by domains of non-commutative algebra: \\spadtype{LiePolynomial} and \\spadtype{XPBWPolynomial}. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|eval| (($ $ (|List| |#1|) (|List| $)) "\\axiom{eval(\\spad{p},{} [\\spad{x1},{}...,{}\\spad{xn}],{} [\\spad{v1},{}...,{}\\spad{vn}])} replaces \\axiom{\\spad{xi}} by \\axiom{\\spad{vi}} in \\axiom{\\spad{p}}.") (($ $ |#1| $) "\\axiom{eval(\\spad{p},{} \\spad{x},{} \\spad{v})} replaces \\axiom{\\spad{x}} by \\axiom{\\spad{v}} in \\axiom{\\spad{p}}.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|trunc| (($ $ (|NonNegativeInteger|)) "\\axiom{trunc(\\spad{p},{}\\spad{n})} returns the polynomial \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{x})} returns \\axiom{Sum(r_i mirror(w_i))} if \\axiom{\\spad{x}} is \\axiom{Sum(r_i w_i)}.")) (|LiePoly| (($ (|LyndonWord| |#1|)) "\\axiom{LiePoly(\\spad{l})} returns the bracketed form of \\axiom{\\spad{l}} as a Lie polynomial.")) (|rquo| (((|XRecursivePolynomial| |#1| |#2|) (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{rquo(\\spad{x},{}\\spad{y})} returns the right simplification of \\axiom{\\spad{x}} by \\axiom{\\spad{y}}.")) (|lquo| (((|XRecursivePolynomial| |#1| |#2|) (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{lquo(\\spad{x},{}\\spad{y})} returns the left simplification of \\axiom{\\spad{x}} by \\axiom{\\spad{y}}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{x})} returns the greatest length of a word in the support of \\axiom{\\spad{x}}.")) (|coerce| (((|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as a recursive polynomial.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as distributed polynomial.") (($ |#1|) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as a Lie polynomial.")) (|coef| ((|#2| (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coef(\\spad{x},{}\\spad{y})} returns the scalar product of \\axiom{\\spad{x}} by \\axiom{\\spad{y}},{} the set of words being regarded as an orthogonal basis.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4443 . T) (-4442 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4444 . T) (-4443 . T))
NIL
(-380 S V)
((|constructor| (NIL "This package exports 3 sorting algorithms which work over FiniteLinearAggregates.")) (|shellSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{shellSort(f, agg)} sorts the aggregate agg with the ordering function \\spad{f} using the shellSort algorithm.")) (|heapSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{heapSort(f, agg)} sorts the aggregate agg with the ordering function \\spad{f} using the heapsort algorithm.")) (|quickSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{quickSort(f, agg)} sorts the aggregate agg with the ordering function \\spad{f} using the quicksort algorithm.")))
@@ -1458,7 +1458,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))))
(-382 R)
((|constructor| (NIL "\\spad{S} is \\spadtype{FullyLinearlyExplicitRingOver R} means that \\spad{S} is a \\spadtype{LinearlyExplicitRingOver R} and,{} in addition,{} if \\spad{R} is a \\spadtype{LinearlyExplicitRingOver Integer},{} then so is \\spad{S}")))
-((-4445 . T))
+((-4446 . T))
NIL
(-383 |Par|)
((|constructor| (NIL "\\indented{3}{This is a package for the approximation of complex solutions for} systems of equations of rational functions with complex rational coefficients. The results are expressed as either complex rational numbers or complex floats depending on the type of the precision parameter which can be either a rational number or a floating point number.")) (|complexRoots| (((|List| (|List| (|Complex| |#1|))) (|List| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) (|List| (|Symbol|)) |#1|) "\\spad{complexRoots(lrf, lv, eps)} finds all the complex solutions of a list of rational functions with rational number coefficients with respect the the variables appearing in \\spad{lv}. Each solution is computed to precision eps and returned as list corresponding to the order of variables in \\spad{lv}.") (((|List| (|Complex| |#1|)) (|Fraction| (|Polynomial| (|Complex| (|Integer|)))) |#1|) "\\spad{complexRoots(rf, eps)} finds all the complex solutions of a univariate rational function with rational number coefficients. The solutions are computed to precision eps.")) (|complexSolve| (((|List| (|Equation| (|Polynomial| (|Complex| |#1|)))) (|Equation| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) |#1|) "\\spad{complexSolve(eq,eps)} finds all the complex solutions of the equation \\spad{eq} of rational functions with rational rational coefficients with respect to all the variables appearing in \\spad{eq},{} with precision \\spad{eps}.") (((|List| (|Equation| (|Polynomial| (|Complex| |#1|)))) (|Fraction| (|Polynomial| (|Complex| (|Integer|)))) |#1|) "\\spad{complexSolve(p,eps)} find all the complex solutions of the rational function \\spad{p} with complex rational coefficients with respect to all the variables appearing in \\spad{p},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| (|Complex| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| (|Complex| (|Integer|)))))) |#1|) "\\spad{complexSolve(leq,eps)} finds all the complex solutions to precision \\spad{eps} of the system \\spad{leq} of equations of rational functions over complex rationals with respect to all the variables appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Polynomial| (|Complex| |#1|))))) (|List| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) |#1|) "\\spad{complexSolve(lp,eps)} finds all the complex solutions to precision \\spad{eps} of the system \\spad{lp} of rational functions over the complex rationals with respect to all the variables appearing in \\spad{lp}.")))
@@ -1466,7 +1466,7 @@ NIL
NIL
(-384)
((|constructor| (NIL "\\spadtype{Float} implements arbitrary precision floating point arithmetic. The number of significant digits of each operation can be set to an arbitrary value (the default is 20 decimal digits). The operation \\spad{float(mantissa,exponent,\\spadfunFrom{base}{FloatingPointSystem})} for integer \\spad{mantissa},{} \\spad{exponent} specifies the number \\spad{mantissa * \\spadfunFrom{base}{FloatingPointSystem} ** exponent} The underlying representation for floats is binary not decimal. The implications of this are described below. \\blankline The model adopted is that arithmetic operations are rounded to to nearest unit in the last place,{} that is,{} accurate to within \\spad{2**(-\\spadfunFrom{bits}{FloatingPointSystem})}. Also,{} the elementary functions and constants are accurate to one unit in the last place. A float is represented as a record of two integers,{} the mantissa and the exponent. The \\spadfunFrom{base}{FloatingPointSystem} of the representation is binary,{} hence a \\spad{Record(m:mantissa,e:exponent)} represents the number \\spad{m * 2 ** e}. Though it is not assumed that the underlying integers are represented with a binary \\spadfunFrom{base}{FloatingPointSystem},{} the code will be most efficient when this is the the case (this is \\spad{true} in most implementations of Lisp). The decision to choose the \\spadfunFrom{base}{FloatingPointSystem} to be binary has some unfortunate consequences. First,{} decimal numbers like 0.3 cannot be represented exactly. Second,{} there is a further loss of accuracy during conversion to decimal for output. To compensate for this,{} if \\spad{d} digits of precision are specified,{} \\spad{1 + ceiling(log2 d)} bits are used. Two numbers that are displayed identically may therefore be not equal. On the other hand,{} a significant efficiency loss would be incurred if we chose to use a decimal \\spadfunFrom{base}{FloatingPointSystem} when the underlying integer base is binary. \\blankline Algorithms used: For the elementary functions,{} the general approach is to apply identities so that the taylor series can be used,{} and,{} so that it will converge within \\spad{O( sqrt n )} steps. For example,{} using the identity \\spad{exp(x) = exp(x/2)**2},{} we can compute \\spad{exp(1/3)} to \\spad{n} digits of precision as follows. We have \\spad{exp(1/3) = exp(2 ** (-sqrt s) / 3) ** (2 ** sqrt s)}. The taylor series will converge in less than sqrt \\spad{n} steps and the exponentiation requires sqrt \\spad{n} multiplications for a total of \\spad{2 sqrt n} multiplications. Assuming integer multiplication costs \\spad{O( n**2 )} the overall running time is \\spad{O( sqrt(n) n**2 )}. This approach is the best known approach for precisions up to about 10,{}000 digits at which point the methods of Brent which are \\spad{O( log(n) n**2 )} become competitive. Note also that summing the terms of the taylor series for the elementary functions is done using integer operations. This avoids the overhead of floating point operations and results in efficient code at low precisions. This implementation makes no attempt to reuse storage,{} relying on the underlying system to do \\spadgloss{garbage collection}. \\spad{I} estimate that the efficiency of this package at low precisions could be improved by a factor of 2 if in-place operations were available. \\blankline Running times: in the following,{} \\spad{n} is the number of bits of precision \\indented{5}{\\spad{*},{} \\spad{/},{} \\spad{sqrt},{} \\spad{pi},{} \\spad{exp1},{} \\spad{log2},{} \\spad{log10}: \\spad{ O( n**2 )}} \\indented{5}{\\spad{exp},{} \\spad{log},{} \\spad{sin},{} \\spad{atan}:\\space{2}\\spad{ O( sqrt(n) n**2 )}} The other elementary functions are coded in terms of the ones above.")) (|outputSpacing| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputSpacing(n)} inserts a space after \\spad{n} (default 10) digits on output; outputSpacing(0) means no spaces are inserted.")) (|outputGeneral| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputGeneral(n)} sets the output mode to general notation with \\spad{n} significant digits displayed.") (((|Void|)) "\\spad{outputGeneral()} sets the output mode (default mode) to general notation; numbers will be displayed in either fixed or floating (scientific) notation depending on the magnitude.")) (|outputFixed| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputFixed(n)} sets the output mode to fixed point notation,{} with \\spad{n} digits displayed after the decimal point.") (((|Void|)) "\\spad{outputFixed()} sets the output mode to fixed point notation; the output will contain a decimal point.")) (|outputFloating| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputFloating(n)} sets the output mode to floating (scientific) notation with \\spad{n} significant digits displayed after the decimal point.") (((|Void|)) "\\spad{outputFloating()} sets the output mode to floating (scientific) notation,{} \\spadignore{i.e.} \\spad{mantissa * 10 exponent} is displayed as \\spad{0.mantissa E exponent}.")) (|atan| (($ $ $) "\\spad{atan(x,y)} computes the arc tangent from \\spad{x} with phase \\spad{y}.")) (|exp1| (($) "\\spad{exp1()} returns exp 1: \\spad{2.7182818284...}.")) (|log10| (($ $) "\\spad{log10(x)} computes the logarithm for \\spad{x} to base 10.") (($) "\\spad{log10()} returns \\spad{ln 10}: \\spad{2.3025809299...}.")) (|log2| (($ $) "\\spad{log2(x)} computes the logarithm for \\spad{x} to base 2.") (($) "\\spad{log2()} returns \\spad{ln 2},{} \\spadignore{i.e.} \\spad{0.6931471805...}.")) (|rationalApproximation| (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rationalApproximation(f, n, b)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< b**(-n)},{} that is \\spad{|(r-f)/f| < b**(-n)}.") (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|)) "\\spad{rationalApproximation(f, n)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< 10**(-n)}.")) (|shift| (($ $ (|Integer|)) "\\spad{shift(x,n)} adds \\spad{n} to the exponent of float \\spad{x}.")) (|relerror| (((|Integer|) $ $) "\\spad{relerror(x,y)} computes the absolute value of \\spad{x - y} divided by \\spad{y},{} when \\spad{y \\~= 0}.")) (|normalize| (($ $) "\\spad{normalize(x)} normalizes \\spad{x} at current precision.")) (** (($ $ $) "\\spad{x ** y} computes \\spad{exp(y log x)} where \\spad{x >= 0}.")) (/ (($ $ (|Integer|)) "\\spad{x / i} computes the division from \\spad{x} by an integer \\spad{i}.")))
-((-4431 . T) (-4439 . T) (-3026 . T) (-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4432 . T) (-4440 . T) (-3026 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-385 |Par|)
((|constructor| (NIL "\\indented{3}{This is a package for the approximation of real solutions for} systems of polynomial equations over the rational numbers. The results are expressed as either rational numbers or floats depending on the type of the precision parameter which can be either a rational number or a floating point number.")) (|realRoots| (((|List| |#1|) (|Fraction| (|Polynomial| (|Integer|))) |#1|) "\\spad{realRoots(rf, eps)} finds the real zeros of a univariate rational function with precision given by eps.") (((|List| (|List| |#1|)) (|List| (|Fraction| (|Polynomial| (|Integer|)))) (|List| (|Symbol|)) |#1|) "\\spad{realRoots(lp,lv,eps)} computes the list of the real solutions of the list \\spad{lp} of rational functions with rational coefficients with respect to the variables in \\spad{lv},{} with precision \\spad{eps}. Each solution is expressed as a list of numbers in order corresponding to the variables in \\spad{lv}.")) (|solve| (((|List| (|Equation| (|Polynomial| |#1|))) (|Equation| (|Fraction| (|Polynomial| (|Integer|)))) |#1|) "\\spad{solve(eq,eps)} finds all of the real solutions of the univariate equation \\spad{eq} of rational functions with respect to the unique variables appearing in \\spad{eq},{} with precision \\spad{eps}.") (((|List| (|Equation| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| (|Integer|))) |#1|) "\\spad{solve(p,eps)} finds all of the real solutions of the univariate rational function \\spad{p} with rational coefficients with respect to the unique variable appearing in \\spad{p},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| (|Integer|))))) |#1|) "\\spad{solve(leq,eps)} finds all of the real solutions of the system \\spad{leq} of equationas of rational functions with respect to all the variables appearing in \\spad{lp},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| |#1|)))) (|List| (|Fraction| (|Polynomial| (|Integer|)))) |#1|) "\\spad{solve(lp,eps)} finds all of the real solutions of the system \\spad{lp} of rational functions over the rational numbers with respect to all the variables appearing in \\spad{lp},{} with precision \\spad{eps}.")))
@@ -1474,11 +1474,11 @@ NIL
NIL
(-386 R S)
((|constructor| (NIL "This domain implements linear combinations of elements from the domain \\spad{S} with coefficients in the domain \\spad{R} where \\spad{S} is an ordered set and \\spad{R} is a ring (which may be non-commutative). This domain is used by domains of non-commutative algebra such as: \\indented{4}{\\spadtype{XDistributedPolynomial},{}} \\indented{4}{\\spadtype{XRecursivePolynomial}.} Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (* (($ |#2| |#1|) "\\spad{s*r} returns the product \\spad{r*s} used by \\spadtype{XRecursivePolynomial}")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
((|HasCategory| |#1| (QUOTE (-174))))
(-387 R |Basis|)
((|constructor| (NIL "A domain of this category implements formal linear combinations of elements from a domain \\spad{Basis} with coefficients in a domain \\spad{R}. The domain \\spad{Basis} needs only to belong to the category \\spadtype{SetCategory} and \\spad{R} to the category \\spadtype{Ring}. Thus the coefficient ring may be non-commutative. See the \\spadtype{XDistributedPolynomial} constructor for examples of domains built with the \\spadtype{FreeModuleCat} category constructor. Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|reductum| (($ $) "\\spad{reductum(x)} returns \\spad{x} minus its leading term.")) (|leadingTerm| (((|Record| (|:| |k| |#2|) (|:| |c| |#1|)) $) "\\spad{leadingTerm(x)} returns the first term which appears in \\spad{ListOfTerms(x)}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(x)} returns the first coefficient which appears in \\spad{ListOfTerms(x)}.")) (|leadingMonomial| ((|#2| $) "\\spad{leadingMonomial(x)} returns the first element from \\spad{Basis} which appears in \\spad{ListOfTerms(x)}.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(x)} returns the number of monomials of \\spad{x}.")) (|monomials| (((|List| $) $) "\\spad{monomials(x)} returns the list of \\spad{r_i*b_i} whose sum is \\spad{x}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(x)} returns the list of coefficients of \\spad{x}.")) (|ListOfTerms| (((|List| (|Record| (|:| |k| |#2|) (|:| |c| |#1|))) $) "\\spad{ListOfTerms(x)} returns a list \\spad{lt} of terms with type \\spad{Record(k: Basis, c: R)} such that \\spad{x} equals \\spad{reduce(+, map(x +-> monom(x.k, x.c), lt))}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} returns \\spad{true} if \\spad{x} contains a single monomial.")) (|monom| (($ |#2| |#1|) "\\spad{monom(b,r)} returns the element with the single monomial \\indented{1}{\\spad{b} and coefficient \\spad{r}.}")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,u)} maps function \\spad{fn} onto the coefficients \\indented{1}{of the non-zero monomials of \\spad{u}.}")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(x,b)} returns the coefficient of \\spad{b} in \\spad{x}.")) (* (($ |#1| |#2|) "\\spad{r*b} returns the product of \\spad{r} by \\spad{b}.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
(-388)
((|constructor| (NIL "\\axiomType{FortranMatrixCategory} provides support for producing Functions and Subroutines when the input to these is an AXIOM object of type \\axiomType{Matrix} or in domains involving \\axiomType{FortranCode}.")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|Matrix| (|MachineFloat|))) "\\spad{coerce(v)} produces an ASP which returns the value of \\spad{v}.")))
@@ -1490,7 +1490,7 @@ NIL
NIL
(-390 R S)
((|constructor| (NIL "A \\spad{bi}-module is a free module over a ring with generators indexed by an ordered set. Each element can be expressed as a finite linear combination of generators. Only non-zero terms are stored.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
((|HasCategory| |#1| (QUOTE (-174))))
(-391 S)
((|constructor| (NIL "A free monoid on a set \\spad{S} is the monoid of finite products of the form \\spad{reduce(*,[si ** ni])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are nonnegative integers. The multiplication is not commutative.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f, a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| (|NonNegativeInteger|) (|NonNegativeInteger|)) $) "\\spad{mapExpon(f, a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x, n)} returns the factor of the n^th monomial of \\spad{x}.")) (|nthExpon| (((|NonNegativeInteger|) $ (|Integer|)) "\\spad{nthExpon(x, n)} returns the exponent of the n^th monomial of \\spad{x}.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|NonNegativeInteger|)))) $) "\\spad{factors(a1\\^e1,...,an\\^en)} returns \\spad{[[a1, e1],...,[an, en]]}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (|overlap| (((|Record| (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) "\\spad{overlap(x, y)} returns \\spad{[l, m, r]} such that \\spad{x = l * m},{} \\spad{y = m * r} and \\spad{l} and \\spad{r} have no overlap,{} \\spadignore{i.e.} \\spad{overlap(l, r) = [l, 1, r]}.")) (|divide| (((|Union| (|Record| (|:| |lm| $) (|:| |rm| $)) "failed") $ $) "\\spad{divide(x, y)} returns the left and right exact quotients of \\spad{x} by \\spad{y},{} \\spadignore{i.e.} \\spad{[l, r]} such that \\spad{x = l * y * r},{} \"failed\" if \\spad{x} is not of the form \\spad{l * y * r}.")) (|rquo| (((|Union| $ "failed") $ $) "\\spad{rquo(x, y)} returns the exact right quotient of \\spad{x} by \\spad{y} \\spadignore{i.e.} \\spad{q} such that \\spad{x = q * y},{} \"failed\" if \\spad{x} is not of the form \\spad{q * y}.")) (|lquo| (((|Union| $ "failed") $ $) "\\spad{lquo(x, y)} returns the exact left quotient of \\spad{x} by \\spad{y} \\spadignore{i.e.} \\spad{q} such that \\spad{x = y * q},{} \"failed\" if \\spad{x} is not of the form \\spad{y * q}.")) (|hcrf| (($ $ $) "\\spad{hcrf(x, y)} returns the highest common right factor of \\spad{x} and \\spad{y},{} \\spadignore{i.e.} the largest \\spad{d} such that \\spad{x = a d} and \\spad{y = b d}.")) (|hclf| (($ $ $) "\\spad{hclf(x, y)} returns the highest common left factor of \\spad{x} and \\spad{y},{} \\spadignore{i.e.} the largest \\spad{d} such that \\spad{x = d a} and \\spad{y = d b}.")) (** (($ |#1| (|NonNegativeInteger|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
@@ -1502,7 +1502,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-856))))
(-393)
((|constructor| (NIL "A category of domains which model machine arithmetic used by machines in the AXIOM-NAG link.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-394)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
@@ -1514,7 +1514,7 @@ NIL
NIL
(-396 |n| |class| R)
((|constructor| (NIL "Generate the Free Lie Algebra over a ring \\spad{R} with identity; A \\spad{P}. Hall basis is generated by a package call to HallBasis.")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(i)} is the \\spad{i}th Hall Basis element")) (|shallowExpand| (((|OutputForm|) $) "\\spad{shallowExpand(x)} \\undocumented{}")) (|deepExpand| (((|OutputForm|) $) "\\spad{deepExpand(x)} \\undocumented{}")) (|dimension| (((|NonNegativeInteger|)) "\\spad{dimension()} is the rank of this Lie algebra")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
(-397)
((|constructor| (NIL "Code to manipulate Fortran Output Stack")) (|topFortranOutputStack| (((|String|)) "\\spad{topFortranOutputStack()} returns the top element of the Fortran output stack")) (|pushFortranOutputStack| (((|Void|) (|String|)) "\\spad{pushFortranOutputStack(f)} pushes \\spad{f} onto the Fortran output stack") (((|Void|) (|FileName|)) "\\spad{pushFortranOutputStack(f)} pushes \\spad{f} onto the Fortran output stack")) (|popFortranOutputStack| (((|Void|)) "\\spad{popFortranOutputStack()} pops the Fortran output stack")) (|showFortranOutputStack| (((|Stack| (|String|))) "\\spad{showFortranOutputStack()} returns the Fortran output stack")) (|clearFortranOutputStack| (((|Stack| (|String|))) "\\spad{clearFortranOutputStack()} clears the Fortran output stack")))
@@ -1544,7 +1544,7 @@ NIL
((|constructor| (NIL "provides an interface to the boot code for calling Fortran")) (|setLegalFortranSourceExtensions| (((|List| (|String|)) (|List| (|String|))) "\\spad{setLegalFortranSourceExtensions(l)} \\undocumented{}")) (|outputAsFortran| (((|Void|) (|FileName|)) "\\spad{outputAsFortran(fn)} \\undocumented{}")) (|linkToFortran| (((|SExpression|) (|Symbol|) (|List| (|Symbol|)) (|TheSymbolTable|) (|List| (|Symbol|))) "\\spad{linkToFortran(s,l,t,lv)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|)))) (|List| (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|))))) (|List| (|Symbol|)) (|Symbol|)) "\\spad{linkToFortran(s,l,ll,lv,t)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|)))) (|List| (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|))))) (|List| (|Symbol|))) "\\spad{linkToFortran(s,l,ll,lv)} \\undocumented{}")))
NIL
NIL
-(-404 -3503 |returnType| -3890 |symbols|)
+(-404 -3504 |returnType| -3890 |symbols|)
((|constructor| (NIL "\\axiomType{FortranProgram} allows the user to build and manipulate simple models of FORTRAN subprograms. These can then be transformed into actual FORTRAN notation.")) (|coerce| (($ (|Equation| (|Expression| (|Complex| (|Float|))))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|Float|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|Integer|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Expression| (|Complex| (|Float|)))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|Float|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|Integer|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineComplex|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineFloat|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineInteger|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Expression| (|MachineComplex|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|MachineFloat|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|MachineInteger|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(r)} \\undocumented{}") (($ (|List| (|FortranCode|))) "\\spad{coerce(lfc)} \\undocumented{}") (($ (|FortranCode|)) "\\spad{coerce(fc)} \\undocumented{}")))
NIL
NIL
@@ -1562,15 +1562,15 @@ NIL
NIL
(-408)
((|constructor| (NIL "FieldOfPrimeCharacteristic is the category of fields of prime characteristic,{} \\spadignore{e.g.} finite fields,{} algebraic closures of fields of prime characteristic,{} transcendental extensions of of fields of prime characteristic.")) (|primeFrobenius| (($ $ (|NonNegativeInteger|)) "\\spad{primeFrobenius(a,s)} returns \\spad{a**(p**s)} where \\spad{p} is the characteristic.") (($ $) "\\spad{primeFrobenius(a)} returns \\spad{a ** p} where \\spad{p} is the characteristic.")) (|discreteLog| (((|Union| (|NonNegativeInteger|) "failed") $ $) "\\spad{discreteLog(b,a)} computes \\spad{s} with \\spad{b**s = a} if such an \\spad{s} exists.")) (|order| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{order(a)} computes the order of an element in the multiplicative group of the field. Error: if \\spad{a} is 0.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-409 S)
((|constructor| (NIL "This category is intended as a model for floating point systems. A floating point system is a model for the real numbers. In fact,{} it is an approximation in the sense that not all real numbers are exactly representable by floating point numbers. A floating point system is characterized by the following: \\blankline \\indented{2}{1: \\spadfunFrom{base}{FloatingPointSystem} of the \\spadfunFrom{exponent}{FloatingPointSystem}.} \\indented{9}{(actual implemenations are usually binary or decimal)} \\indented{2}{2: \\spadfunFrom{precision}{FloatingPointSystem} of the \\spadfunFrom{mantissa}{FloatingPointSystem} (arbitrary or fixed)} \\indented{2}{3: rounding error for operations} \\blankline Because a Float is an approximation to the real numbers,{} even though it is defined to be a join of a Field and OrderedRing,{} some of the attributes do not hold. In particular associative(\\spad{\"+\"}) does not hold. Algorithms defined over a field need special considerations when the field is a floating point system.")) (|max| (($) "\\spad{max()} returns the maximum floating point number.")) (|min| (($) "\\spad{min()} returns the minimum floating point number.")) (|decreasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{decreasePrecision(n)} decreases the current \\spadfunFrom{precision}{FloatingPointSystem} precision by \\spad{n} decimal digits.")) (|increasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{increasePrecision(n)} increases the current \\spadfunFrom{precision}{FloatingPointSystem} by \\spad{n} decimal digits.")) (|precision| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(n)} set the precision in the base to \\spad{n} decimal digits.") (((|PositiveInteger|)) "\\spad{precision()} returns the precision in digits base.")) (|digits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{digits(d)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{d} digits.") (((|PositiveInteger|)) "\\spad{digits()} returns ceiling\\spad{'s} precision in decimal digits.")) (|bits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{bits(n)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{n} bits.") (((|PositiveInteger|)) "\\spad{bits()} returns ceiling\\spad{'s} precision in bits.")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(x)} returns the mantissa part of \\spad{x}.")) (|exponent| (((|Integer|) $) "\\spad{exponent(x)} returns the \\spadfunFrom{exponent}{FloatingPointSystem} part of \\spad{x}.")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the \\spadfunFrom{exponent}{FloatingPointSystem}.")) (|order| (((|Integer|) $) "\\spad{order x} is the order of magnitude of \\spad{x}. Note: \\spad{base ** order x <= |x| < base ** (1 + order x)}.")) (|float| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{float(a,e,b)} returns \\spad{a * b ** e}.") (($ (|Integer|) (|Integer|)) "\\spad{float(a,e)} returns \\spad{a * base() ** e}.")) (|approximate| ((|attribute|) "\\spad{approximate} means \"is an approximation to the real numbers\".")))
NIL
-((|HasAttribute| |#1| (QUOTE -4431)) (|HasAttribute| |#1| (QUOTE -4439)))
+((|HasAttribute| |#1| (QUOTE -4432)) (|HasAttribute| |#1| (QUOTE -4440)))
(-410)
((|constructor| (NIL "This category is intended as a model for floating point systems. A floating point system is a model for the real numbers. In fact,{} it is an approximation in the sense that not all real numbers are exactly representable by floating point numbers. A floating point system is characterized by the following: \\blankline \\indented{2}{1: \\spadfunFrom{base}{FloatingPointSystem} of the \\spadfunFrom{exponent}{FloatingPointSystem}.} \\indented{9}{(actual implemenations are usually binary or decimal)} \\indented{2}{2: \\spadfunFrom{precision}{FloatingPointSystem} of the \\spadfunFrom{mantissa}{FloatingPointSystem} (arbitrary or fixed)} \\indented{2}{3: rounding error for operations} \\blankline Because a Float is an approximation to the real numbers,{} even though it is defined to be a join of a Field and OrderedRing,{} some of the attributes do not hold. In particular associative(\\spad{\"+\"}) does not hold. Algorithms defined over a field need special considerations when the field is a floating point system.")) (|max| (($) "\\spad{max()} returns the maximum floating point number.")) (|min| (($) "\\spad{min()} returns the minimum floating point number.")) (|decreasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{decreasePrecision(n)} decreases the current \\spadfunFrom{precision}{FloatingPointSystem} precision by \\spad{n} decimal digits.")) (|increasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{increasePrecision(n)} increases the current \\spadfunFrom{precision}{FloatingPointSystem} by \\spad{n} decimal digits.")) (|precision| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(n)} set the precision in the base to \\spad{n} decimal digits.") (((|PositiveInteger|)) "\\spad{precision()} returns the precision in digits base.")) (|digits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{digits(d)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{d} digits.") (((|PositiveInteger|)) "\\spad{digits()} returns ceiling\\spad{'s} precision in decimal digits.")) (|bits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{bits(n)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{n} bits.") (((|PositiveInteger|)) "\\spad{bits()} returns ceiling\\spad{'s} precision in bits.")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(x)} returns the mantissa part of \\spad{x}.")) (|exponent| (((|Integer|) $) "\\spad{exponent(x)} returns the \\spadfunFrom{exponent}{FloatingPointSystem} part of \\spad{x}.")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the \\spadfunFrom{exponent}{FloatingPointSystem}.")) (|order| (((|Integer|) $) "\\spad{order x} is the order of magnitude of \\spad{x}. Note: \\spad{base ** order x <= |x| < base ** (1 + order x)}.")) (|float| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{float(a,e,b)} returns \\spad{a * b ** e}.") (($ (|Integer|) (|Integer|)) "\\spad{float(a,e)} returns \\spad{a * base() ** e}.")) (|approximate| ((|attribute|) "\\spad{approximate} means \"is an approximation to the real numbers\".")))
-((-3026 . T) (-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-3026 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-411 R S)
((|constructor| (NIL "\\spadtype{FactoredFunctions2} contains functions that involve factored objects whose underlying domains may not be the same. For example,{} \\spadfun{map} might be used to coerce an object of type \\spadtype{Factored(Integer)} to \\spadtype{Factored(Complex(Integer))}.")) (|map| (((|Factored| |#2|) (|Mapping| |#2| |#1|) (|Factored| |#1|)) "\\spad{map(fn,u)} is used to apply the function \\userfun{\\spad{fn}} to every factor of \\spadvar{\\spad{u}}. The new factored object will have all its information flags set to \"nil\". This function is used,{} for example,{} to coerce every factor base to another type.")))
@@ -1582,15 +1582,15 @@ NIL
NIL
(-413 S)
((|constructor| (NIL "Fraction takes an IntegralDomain \\spad{S} and produces the domain of Fractions with numerators and denominators from \\spad{S}. If \\spad{S} is also a GcdDomain,{} then \\spad{gcd}\\spad{'s} between numerator and denominator will be cancelled during all operations.")) (|canonical| ((|attribute|) "\\spad{canonical} means that equal elements are in fact identical.")))
-((-4435 -12 (|has| |#1| (-6 -4446)) (|has| |#1| (-458)) (|has| |#1| (-6 -4435))) (-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-826))) (-2740 (|HasCategory| |#1| (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-856)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-551))) (-12 (|HasAttribute| |#1| (QUOTE -4446)) (|HasAttribute| |#1| (QUOTE -4435)) (|HasCategory| |#1| (QUOTE (-458)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+((-4436 -12 (|has| |#1| (-6 -4447)) (|has| |#1| (-458)) (|has| |#1| (-6 -4436))) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-826))) (-2740 (|HasCategory| |#1| (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-856)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-551))) (-12 (|HasAttribute| |#1| (QUOTE -4447)) (|HasAttribute| |#1| (QUOTE -4436)) (|HasCategory| |#1| (QUOTE (-458)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-414 S R UP)
((|constructor| (NIL "A \\spadtype{FramedAlgebra} is a \\spadtype{FiniteRankAlgebra} together with a fixed \\spad{R}-module basis.")) (|regularRepresentation| (((|Matrix| |#2|) $) "\\spad{regularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed basis.")) (|discriminant| ((|#2|) "\\spad{discriminant()} = determinant(traceMatrix()).")) (|traceMatrix| (((|Matrix| |#2|)) "\\spad{traceMatrix()} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr(vi * vj)} ),{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|convert| (($ (|Vector| |#2|)) "\\spad{convert([a1,..,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.") (((|Vector| |#2|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,..,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([v1,...,vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
NIL
NIL
(-415 R UP)
((|constructor| (NIL "A \\spadtype{FramedAlgebra} is a \\spadtype{FiniteRankAlgebra} together with a fixed \\spad{R}-module basis.")) (|regularRepresentation| (((|Matrix| |#1|) $) "\\spad{regularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed basis.")) (|discriminant| ((|#1|) "\\spad{discriminant()} = determinant(traceMatrix()).")) (|traceMatrix| (((|Matrix| |#1|)) "\\spad{traceMatrix()} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr(vi * vj)} ),{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|convert| (($ (|Vector| |#1|)) "\\spad{convert([a1,..,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.") (((|Vector| |#1|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,..,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([v1,...,vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-416 A S)
((|constructor| (NIL "\\indented{2}{A is fully retractable to \\spad{B} means that A is retractable to \\spad{B},{} and,{}} \\indented{2}{in addition,{} if \\spad{B} is retractable to the integers or rational} \\indented{2}{numbers then so is A.} \\indented{2}{In particular,{} what we are asserting is that there are no integers} \\indented{2}{(rationals) in A which don\\spad{'t} retract into \\spad{B}.} Date Created: March 1990 Date Last Updated: 9 April 1991")))
@@ -1606,7 +1606,7 @@ NIL
NIL
(-419 R -1674 UP A)
((|constructor| (NIL "Fractional ideals in a framed algebra.")) (|randomLC| ((|#4| (|NonNegativeInteger|) (|Vector| |#4|)) "\\spad{randomLC(n,x)} should be local but conditional.")) (|minimize| (($ $) "\\spad{minimize(I)} returns a reduced set of generators for \\spad{I}.")) (|denom| ((|#1| $) "\\spad{denom(1/d * (f1,...,fn))} returns \\spad{d}.")) (|numer| (((|Vector| |#4|) $) "\\spad{numer(1/d * (f1,...,fn))} = the vector \\spad{[f1,...,fn]}.")) (|norm| ((|#2| $) "\\spad{norm(I)} returns the norm of the ideal \\spad{I}.")) (|basis| (((|Vector| |#4|) $) "\\spad{basis((f1,...,fn))} returns the vector \\spad{[f1,...,fn]}.")) (|ideal| (($ (|Vector| |#4|)) "\\spad{ideal([f1,...,fn])} returns the ideal \\spad{(f1,...,fn)}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-420 R -1674 UP A |ibasis|)
((|constructor| (NIL "Module representation of fractional ideals.")) (|module| (($ (|FractionalIdeal| |#1| |#2| |#3| |#4|)) "\\spad{module(I)} returns \\spad{I} viewed has a module over \\spad{R}.") (($ (|Vector| |#4|)) "\\spad{module([f1,...,fn])} = the module generated by \\spad{(f1,...,fn)} over \\spad{R}.")) (|norm| ((|#2| $) "\\spad{norm(f)} returns the norm of the module \\spad{f}.")) (|basis| (((|Vector| |#4|) $) "\\spad{basis((f1,...,fn))} = the vector \\spad{[f1,...,fn]}.")))
@@ -1622,12 +1622,12 @@ NIL
((|HasCategory| |#2| (QUOTE (-368))))
(-423 R)
((|constructor| (NIL "FramedNonAssociativeAlgebra(\\spad{R}) is a \\spadtype{FiniteRankNonAssociativeAlgebra} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank) over a commutative ring \\spad{R} together with a fixed \\spad{R}-module basis.")) (|apply| (($ (|Matrix| |#1|) $) "\\spad{apply(m,a)} defines a left operation of \\spad{n} by \\spad{n} matrices where \\spad{n} is the rank of the algebra in terms of matrix-vector multiplication,{} this is a substitute for a left module structure. Error: if shape of matrix doesn\\spad{'t} fit.")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#1|))) "\\spad{rightRankPolynomial()} calculates the right minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#1|))) "\\spad{leftRankPolynomial()} calculates the left minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|rightRegularRepresentation| (((|Matrix| |#1|) $) "\\spad{rightRegularRepresentation(a)} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|leftRegularRepresentation| (((|Matrix| |#1|) $) "\\spad{leftRegularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|rightTraceMatrix| (((|Matrix| |#1|)) "\\spad{rightTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|leftTraceMatrix| (((|Matrix| |#1|)) "\\spad{leftTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|rightDiscriminant| ((|#1|) "\\spad{rightDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(rightTraceMatrix())}.")) (|leftDiscriminant| ((|#1|) "\\spad{leftDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(leftTraceMatrix())}.")) (|convert| (($ (|Vector| |#1|)) "\\spad{convert([a1,...,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.") (((|Vector| |#1|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,...,an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|))) "\\spad{structuralConstants()} calculates the structural constants \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{vi * vj = gammaij1 * v1 + ... + gammaijn * vn},{} where \\spad{v1},{}...,{}\\spad{vn} is the fixed \\spad{R}-module basis.")) (|elt| ((|#1| $ (|Integer|)) "\\spad{elt(a,i)} returns the \\spad{i}-th coefficient of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([a1,...,am])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{ai} with respect to the fixed \\spad{R}-module basis.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
-((-4445 |has| |#1| (-562)) (-4443 . T) (-4442 . T))
+((-4446 |has| |#1| (-562)) (-4444 . T) (-4443 . T))
NIL
(-424 R)
((|constructor| (NIL "\\spadtype{Factored} creates a domain whose objects are kept in factored form as long as possible. Thus certain operations like multiplication and \\spad{gcd} are relatively easy to do. Others,{} like addition require somewhat more work,{} and unless the argument domain provides a factor function,{} the result may not be completely factored. Each object consists of a unit and a list of factors,{} where a factor has a member of \\spad{R} (the \"base\"),{} and exponent and a flag indicating what is known about the base. A flag may be one of \"nil\",{} \"sqfr\",{} \"irred\" or \"prime\",{} which respectively mean that nothing is known about the base,{} it is square-free,{} it is irreducible,{} or it is prime. The current restriction to integral domains allows simplification to be performed without worrying about multiplication order.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(u)} returns a rational number if \\spad{u} really is one,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(u)} assumes spadvar{\\spad{u}} is actually a rational number and does the conversion to rational number (see \\spadtype{Fraction Integer}).")) (|rational?| (((|Boolean|) $) "\\spad{rational?(u)} tests if \\spadvar{\\spad{u}} is actually a rational number (see \\spadtype{Fraction Integer}).")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,u)} maps the function \\userfun{\\spad{fn}} across the factors of \\spadvar{\\spad{u}} and creates a new factored object. Note: this clears the information flags (sets them to \"nil\") because the effect of \\userfun{\\spad{fn}} is clearly not known in general.")) (|unitNormalize| (($ $) "\\spad{unitNormalize(u)} normalizes the unit part of the factorization. For example,{} when working with factored integers,{} this operation will ensure that the bases are all positive integers.")) (|unit| ((|#1| $) "\\spad{unit(u)} extracts the unit part of the factorization.")) (|flagFactor| (($ |#1| (|Integer|) (|Union| "nil" "sqfr" "irred" "prime")) "\\spad{flagFactor(base,exponent,flag)} creates a factored object with a single factor whose \\spad{base} is asserted to be properly described by the information \\spad{flag}.")) (|sqfrFactor| (($ |#1| (|Integer|)) "\\spad{sqfrFactor(base,exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be square-free (flag = \"sqfr\").")) (|primeFactor| (($ |#1| (|Integer|)) "\\spad{primeFactor(base,exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be prime (flag = \"prime\").")) (|numberOfFactors| (((|NonNegativeInteger|) $) "\\spad{numberOfFactors(u)} returns the number of factors in \\spadvar{\\spad{u}}.")) (|nthFlag| (((|Union| "nil" "sqfr" "irred" "prime") $ (|Integer|)) "\\spad{nthFlag(u,n)} returns the information flag of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} \"nil\" is returned.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(u,n)} returns the base of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} 1 is returned. If \\spadvar{\\spad{u}} consists only of a unit,{} the unit is returned.")) (|nthExponent| (((|Integer|) $ (|Integer|)) "\\spad{nthExponent(u,n)} returns the exponent of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} 0 is returned.")) (|irreducibleFactor| (($ |#1| (|Integer|)) "\\spad{irreducibleFactor(base,exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be irreducible (flag = \"irred\").")) (|factors| (((|List| (|Record| (|:| |factor| |#1|) (|:| |exponent| (|Integer|)))) $) "\\spad{factors(u)} returns a list of the factors in a form suitable for iteration. That is,{} it returns a list where each element is a record containing a base and exponent. The original object is the product of all the factors and the unit (which can be extracted by \\axiom{unit(\\spad{u})}).")) (|nilFactor| (($ |#1| (|Integer|)) "\\spad{nilFactor(base,exponent)} creates a factored object with a single factor with no information about the kind of \\spad{base} (flag = \"nil\").")) (|factorList| (((|List| (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (|Integer|)))) $) "\\spad{factorList(u)} returns the list of factors with flags (for use by factoring code).")) (|makeFR| (($ |#1| (|List| (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (|Integer|))))) "\\spad{makeFR(unit,listOfFactors)} creates a factored object (for use by factoring code).")) (|exponent| (((|Integer|) $) "\\spad{exponent(u)} returns the exponent of the first factor of \\spadvar{\\spad{u}},{} or 0 if the factored form consists solely of a unit.")) (|expand| ((|#1| $) "\\spad{expand(f)} multiplies the unit and factors together,{} yielding an \"unfactored\" object. Note: this is purposely not called \\spadfun{coerce} which would cause the interpreter to do this automatically.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -313) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -290) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-1230))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-1230)))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-458))))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -313) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -290) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-1231))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-1231)))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-458))))
(-425 R)
((|constructor| (NIL "\\spadtype{FactoredFunctionUtilities} implements some utility functions for manipulating factored objects.")) (|mergeFactors| (((|Factored| |#1|) (|Factored| |#1|) (|Factored| |#1|)) "\\spad{mergeFactors(u,v)} is used when the factorizations of \\spadvar{\\spad{u}} and \\spadvar{\\spad{v}} are known to be disjoint,{} \\spadignore{e.g.} resulting from a content/primitive part split. Essentially,{} it creates a new factored object by multiplying the units together and appending the lists of factors.")) (|refine| (((|Factored| |#1|) (|Factored| |#1|) (|Mapping| (|Factored| |#1|) |#1|)) "\\spad{refine(u,fn)} is used to apply the function \\userfun{\\spad{fn}} to each factor of \\spadvar{\\spad{u}} and then build a new factored object from the results. For example,{} if \\spadvar{\\spad{u}} were created by calling \\spad{nilFactor(10,2)} then \\spad{refine(u,factor)} would create a factored object equal to that created by \\spad{factor(100)} or \\spad{primeFactor(2,2) * primeFactor(5,2)}.")))
NIL
@@ -1654,7 +1654,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-373))))
(-431 S)
((|constructor| (NIL "A finite-set aggregate models the notion of a finite set,{} that is,{} a collection of elements characterized by membership,{} but not by order or multiplicity. See \\spadtype{Set} for an example.")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest element of aggregate \\spad{u}.")) (|max| ((|#1| $) "\\spad{max(u)} returns the largest element of aggregate \\spad{u}.")) (|universe| (($) "\\spad{universe()}\\$\\spad{D} returns the universal set for finite set aggregate \\spad{D}.")) (|complement| (($ $) "\\spad{complement(u)} returns the complement of the set \\spad{u},{} \\spadignore{i.e.} the set of all values not in \\spad{u}.")) (|cardinality| (((|NonNegativeInteger|) $) "\\spad{cardinality(u)} returns the number of elements of \\spad{u}. Note: \\axiom{cardinality(\\spad{u}) = \\#u}.")))
-((-4448 . T) (-4438 . T) (-4449 . T))
+((-4449 . T) (-4439 . T) (-4450 . T))
NIL
(-432 R -1674)
((|constructor| (NIL "\\spadtype{FunctionSpaceComplexIntegration} provides functions for the indefinite integration of complex-valued functions.")) (|complexIntegrate| ((|#2| |#2| (|Symbol|)) "\\spad{complexIntegrate(f, x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")) (|internalIntegrate0| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{internalIntegrate0 should} be a local function,{} but is conditional.")) (|internalIntegrate| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{internalIntegrate(f, x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")))
@@ -1662,8 +1662,8 @@ NIL
NIL
(-433 R E)
((|constructor| (NIL "\\indented{1}{Author: James Davenport} Date Created: 17 April 1992 Date Last Updated: Basic Functions: Related Constructors: Also See: AMS Classifications: Keywords: References: Description:")) (|makeCos| (($ |#2| |#1|) "\\spad{makeCos(e,r)} makes a sin expression with given argument and coefficient")) (|makeSin| (($ |#2| |#1|) "\\spad{makeSin(e,r)} makes a sin expression with given argument and coefficient")) (|coerce| (($ (|FourierComponent| |#2|)) "\\spad{coerce(c)} converts sin/cos terms into Fourier Series") (($ |#1|) "\\spad{coerce(r)} converts coefficients into Fourier Series")))
-((-4435 -12 (|has| |#1| (-6 -4435)) (|has| |#2| (-6 -4435))) (-4442 . T) (-4443 . T) (-4445 . T))
-((-12 (|HasAttribute| |#1| (QUOTE -4435)) (|HasAttribute| |#2| (QUOTE -4435))))
+((-4436 -12 (|has| |#1| (-6 -4436)) (|has| |#2| (-6 -4436))) (-4443 . T) (-4444 . T) (-4446 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4436)) (|HasAttribute| |#2| (QUOTE -4436))))
(-434 R -1674)
((|constructor| (NIL "\\spadtype{FunctionSpaceIntegration} provides functions for the indefinite integration of real-valued functions.")) (|integrate| (((|Union| |#2| (|List| |#2|)) |#2| (|Symbol|)) "\\spad{integrate(f, x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a real variable.")))
NIL
@@ -1674,7 +1674,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-479))) (|HasCategory| |#2| (QUOTE (-1121))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))))
(-436 R)
((|constructor| (NIL "A space of formal functions with arguments in an arbitrary ordered set.")) (|univariate| (((|Fraction| (|SparseUnivariatePolynomial| $)) $ (|Kernel| $)) "\\spad{univariate(f, k)} returns \\spad{f} viewed as a univariate fraction in \\spad{k}.")) (/ (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $)) (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{p1/p2} returns the quotient of \\spad{p1} and \\spad{p2} as an element of \\%.")) (|denominator| (($ $) "\\spad{denominator(f)} returns the denominator of \\spad{f} converted to \\%.")) (|denom| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|convert| (($ (|Factored| $)) "\\spad{convert(f1\\^e1 ... fm\\^em)} returns \\spad{(f1)\\^e1 ... (fm)\\^em} as an element of \\%,{} using formal kernels created using a \\spadfunFrom{paren}{ExpressionSpace}.")) (|isPower| (((|Union| (|Record| (|:| |val| $) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isPower(p)} returns \\spad{[x, n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|numerator| (($ $) "\\spad{numerator(f)} returns the numerator of \\spad{f} converted to \\%.")) (|numer| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R} if \\spad{R} is an integral domain. If not,{} then numer(\\spad{f}) = \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|coerce| (($ (|Fraction| (|Polynomial| (|Fraction| |#1|)))) "\\spad{coerce(f)} returns \\spad{f} as an element of \\%.") (($ (|Polynomial| (|Fraction| |#1|))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.") (($ (|Fraction| |#1|)) "\\spad{coerce(q)} returns \\spad{q} as an element of \\%.") (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.")) (|isMult| (((|Union| (|Record| (|:| |coef| (|Integer|)) (|:| |var| (|Kernel| $))) "failed") $) "\\spad{isMult(p)} returns \\spad{[n, x]} if \\spad{p = n * x} and \\spad{n <> 0}.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,...,mn]} if \\spad{p = m1 +...+ mn} and \\spad{n > 1}.")) (|isExpt| (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|Symbol|)) "\\spad{isExpt(p,f)} returns \\spad{[x, n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = f(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|BasicOperator|)) "\\spad{isExpt(p,op)} returns \\spad{[x, n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = op(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x, n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,...,an]} if \\spad{p = a1*...*an} and \\spad{n > 1}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns \\spad{x} * \\spad{x} * \\spad{x} * ... * \\spad{x} (\\spad{n} times).")) (|eval| (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ $)) "\\spad{eval(x, s, n, f)} replaces every \\spad{s(a)**n} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ (|List| $))) "\\spad{eval(x, s, n, f)} replaces every \\spad{s(a1,...,am)**n} in \\spad{x} by \\spad{f(a1,...,am)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x, [s1,...,sm], [n1,...,nm], [f1,...,fm])} replaces every \\spad{si(a1,...,an)**ni} in \\spad{x} by \\spad{fi(a1,...,an)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ $))) "\\spad{eval(x, [s1,...,sm], [n1,...,nm], [f1,...,fm])} replaces every \\spad{si(a)**ni} in \\spad{x} by \\spad{fi(a)} for any \\spad{a}.") (($ $ (|List| (|BasicOperator|)) (|List| $) (|Symbol|)) "\\spad{eval(x, [s1,...,sm], [f1,...,fm], y)} replaces every \\spad{si(a)} in \\spad{x} by \\spad{fi(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $ (|BasicOperator|) $ (|Symbol|)) "\\spad{eval(x, s, f, y)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $) "\\spad{eval(f)} unquotes all the quoted operators in \\spad{f}.") (($ $ (|List| (|Symbol|))) "\\spad{eval(f, [foo1,...,foon])} unquotes all the \\spad{fooi}\\spad{'s} in \\spad{f}.") (($ $ (|Symbol|)) "\\spad{eval(f, foo)} unquotes all the foo\\spad{'s} in \\spad{f}.")) (|applyQuote| (($ (|Symbol|) (|List| $)) "\\spad{applyQuote(foo, [x1,...,xn])} returns \\spad{'foo(x1,...,xn)}.") (($ (|Symbol|) $ $ $ $) "\\spad{applyQuote(foo, x, y, z, t)} returns \\spad{'foo(x,y,z,t)}.") (($ (|Symbol|) $ $ $) "\\spad{applyQuote(foo, x, y, z)} returns \\spad{'foo(x,y,z)}.") (($ (|Symbol|) $ $) "\\spad{applyQuote(foo, x, y)} returns \\spad{'foo(x,y)}.") (($ (|Symbol|) $) "\\spad{applyQuote(foo, x)} returns \\spad{'foo(x)}.")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(f)} returns the list of all the variables of \\spad{f}.")) (|ground| ((|#1| $) "\\spad{ground(f)} returns \\spad{f} as an element of \\spad{R}. An error occurs if \\spad{f} is not an element of \\spad{R}.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(f)} tests if \\spad{f} is an element of \\spad{R}.")))
-((-4445 -2740 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) ((-4450 "*") |has| |#1| (-562)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-562)) (-4440 |has| |#1| (-562)))
+((-4446 -2740 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) ((-4451 "*") |has| |#1| (-562)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-562)) (-4441 |has| |#1| (-562)))
NIL
(-437 R -1674)
((|constructor| (NIL "Provides some special functions over an integral domain.")) (|iiabs| ((|#2| |#2|) "\\spad{iiabs(x)} should be local but conditional.")) (|iiGamma| ((|#2| |#2|) "\\spad{iiGamma(x)} should be local but conditional.")) (|airyBi| ((|#2| |#2|) "\\spad{airyBi(x)} returns the airybi function applied to \\spad{x}")) (|airyAi| ((|#2| |#2|) "\\spad{airyAi(x)} returns the airyai function applied to \\spad{x}")) (|besselK| ((|#2| |#2| |#2|) "\\spad{besselK(x,y)} returns the besselk function applied to \\spad{x} and \\spad{y}")) (|besselI| ((|#2| |#2| |#2|) "\\spad{besselI(x,y)} returns the besseli function applied to \\spad{x} and \\spad{y}")) (|besselY| ((|#2| |#2| |#2|) "\\spad{besselY(x,y)} returns the bessely function applied to \\spad{x} and \\spad{y}")) (|besselJ| ((|#2| |#2| |#2|) "\\spad{besselJ(x,y)} returns the besselj function applied to \\spad{x} and \\spad{y}")) (|polygamma| ((|#2| |#2| |#2|) "\\spad{polygamma(x,y)} returns the polygamma function applied to \\spad{x} and \\spad{y}")) (|digamma| ((|#2| |#2|) "\\spad{digamma(x)} returns the digamma function applied to \\spad{x}")) (|Beta| ((|#2| |#2| |#2|) "\\spad{Beta(x,y)} returns the beta function applied to \\spad{x} and \\spad{y}")) (|Gamma| ((|#2| |#2| |#2|) "\\spad{Gamma(a,x)} returns the incomplete Gamma function applied to a and \\spad{x}") ((|#2| |#2|) "\\spad{Gamma(f)} returns the formal Gamma function applied to \\spad{f}")) (|abs| ((|#2| |#2|) "\\spad{abs(f)} returns the absolute value operator applied to \\spad{f}")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}; error if \\spad{op} is not a special function operator")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is a special function operator.")))
@@ -1762,16 +1762,16 @@ NIL
NIL
(-458)
((|constructor| (NIL "This category describes domains where \\spadfun{\\spad{gcd}} can be computed but where there is no guarantee of the existence of \\spadfun{factor} operation for factorisation into irreducibles. However,{} if such a \\spadfun{factor} operation exist,{} factorization will be unique up to order and units.")) (|lcm| (($ (|List| $)) "\\spad{lcm(l)} returns the least common multiple of the elements of the list \\spad{l}.") (($ $ $) "\\spad{lcm(x,y)} returns the least common multiple of \\spad{x} and \\spad{y}.")) (|gcd| (($ (|List| $)) "\\spad{gcd(l)} returns the common \\spad{gcd} of the elements in the list \\spad{l}.") (($ $ $) "\\spad{gcd(x,y)} returns the greatest common divisor of \\spad{x} and \\spad{y}.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-459 R |n| |ls| |gamma|)
((|constructor| (NIL "AlgebraGenericElementPackage allows you to create generic elements of an algebra,{} \\spadignore{i.e.} the scalars are extended to include symbolic coefficients")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis") (((|List| (|Polynomial| |#1|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,...,vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}")) (|genericRightDiscriminant| (((|Fraction| (|Polynomial| |#1|))) "\\spad{genericRightDiscriminant()} is the determinant of the generic left trace forms of all products of basis element,{} if the generic left trace form is associative,{} an algebra is separable if the generic left discriminant is invertible,{} if it is non-zero,{} there is some ring extension which makes the algebra separable")) (|genericRightTraceForm| (((|Fraction| (|Polynomial| |#1|)) $ $) "\\spad{genericRightTraceForm (a,b)} is defined to be \\spadfun{genericRightTrace (a*b)},{} this defines a symmetric bilinear form on the algebra")) (|genericLeftDiscriminant| (((|Fraction| (|Polynomial| |#1|))) "\\spad{genericLeftDiscriminant()} is the determinant of the generic left trace forms of all products of basis element,{} if the generic left trace form is associative,{} an algebra is separable if the generic left discriminant is invertible,{} if it is non-zero,{} there is some ring extension which makes the algebra separable")) (|genericLeftTraceForm| (((|Fraction| (|Polynomial| |#1|)) $ $) "\\spad{genericLeftTraceForm (a,b)} is defined to be \\spad{genericLeftTrace (a*b)},{} this defines a symmetric bilinear form on the algebra")) (|genericRightNorm| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericRightNorm(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the constant term in \\spadfun{rightRankPolynomial} and changes the sign if the degree of this polynomial is odd")) (|genericRightTrace| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericRightTrace(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the second highest term in \\spadfun{rightRankPolynomial} and changes the sign")) (|genericRightMinimalPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|))) $) "\\spad{genericRightMinimalPolynomial(a)} substitutes the coefficients of \\spad{a} for the generic coefficients in \\spadfun{rightRankPolynomial}")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) "\\spad{rightRankPolynomial()} returns the right minimimal polynomial of the generic element")) (|genericLeftNorm| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericLeftNorm(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the constant term in \\spadfun{leftRankPolynomial} and changes the sign if the degree of this polynomial is odd. This is a form of degree \\spad{k}")) (|genericLeftTrace| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericLeftTrace(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the second highest term in \\spadfun{leftRankPolynomial} and changes the sign. \\indented{1}{This is a linear form}")) (|genericLeftMinimalPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|))) $) "\\spad{genericLeftMinimalPolynomial(a)} substitutes the coefficients of {em a} for the generic coefficients in \\spad{leftRankPolynomial()}")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) "\\spad{leftRankPolynomial()} returns the left minimimal polynomial of the generic element")) (|generic| (($ (|Vector| (|Symbol|)) (|Vector| $)) "\\spad{generic(vs,ve)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{ve} with the symbolic coefficients \\spad{vs} error,{} if the vector of symbols is shorter than the vector of elements") (($ (|Symbol|) (|Vector| $)) "\\spad{generic(s,v)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{v} with the symbolic coefficients \\spad{s1,s2,..}") (($ (|Vector| $)) "\\spad{generic(ve)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{ve} basis with the symbolic coefficients \\spad{\\%x1,\\%x2,..}") (($ (|Vector| (|Symbol|))) "\\spad{generic(vs)} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{vs}; error,{} if the vector of symbols is too short") (($ (|Symbol|)) "\\spad{generic(s)} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{s1,s2,..}") (($) "\\spad{generic()} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{\\%x1,\\%x2,..}")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none")) (|coerce| (($ (|Vector| (|Fraction| (|Polynomial| |#1|)))) "\\spad{coerce(v)} assumes that it is called with a vector of length equal to the dimension of the algebra,{} then a linear combination with the basis element is formed")))
-((-4445 |has| (-413 (-959 |#1|)) (-562)) (-4443 . T) (-4442 . T))
+((-4446 |has| (-413 (-959 |#1|)) (-562)) (-4444 . T) (-4443 . T))
((|HasCategory| (-413 (-959 |#1|)) (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| (-413 (-959 |#1|)) (QUOTE (-562))))
(-460 |vl| R E)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is specified by its third parameter. Suggested types which define term orderings include: \\spadtype{DirectProduct},{} \\spadtype{HomogeneousDirectProduct},{} \\spadtype{SplitHomogeneousDirectProduct} and finally \\spadtype{OrderedDirectProduct} which accepts an arbitrary user function to define a term ordering.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p, perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4450 "*") |has| |#2| (-174)) (-4441 |has| |#2| (-562)) (-4446 |has| |#2| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
(-461 R BP)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni.} January 1990 The equation \\spad{Af+Bg=h} and its generalization to \\spad{n} polynomials is solved for solutions over the \\spad{R},{} euclidean domain. A table containing the solutions of \\spad{Af+Bg=x**k} is used. The operations are performed modulus a prime which are in principle big enough,{} but the solutions are tested and,{} in case of failure,{} a hensel lifting process is used to get to the right solutions. It will be used in the factorization of multivariate polynomials over finite field,{} with \\spad{R=F[x]}.")) (|testModulus| (((|Boolean|) |#1| (|List| |#2|)) "\\spad{testModulus(p,lp)} returns \\spad{true} if the the prime \\spad{p} is valid for the list of polynomials \\spad{lp},{} \\spadignore{i.e.} preserves the degree and they remain relatively prime.")) (|solveid| (((|Union| (|List| |#2|) "failed") |#2| |#1| (|Vector| (|List| |#2|))) "\\spad{solveid(h,table)} computes the coefficients of the extended euclidean algorithm for a list of polynomials whose tablePow is \\spad{table} and with right side \\spad{h}.")) (|tablePow| (((|Union| (|Vector| (|List| |#2|)) "failed") (|NonNegativeInteger|) |#1| (|List| |#2|)) "\\spad{tablePow(maxdeg,prime,lpol)} constructs the table with the coefficients of the Extended Euclidean Algorithm for \\spad{lpol}. Here the right side is \\spad{x**k},{} for \\spad{k} less or equal to \\spad{maxdeg}. The operation returns \"failed\" when the elements are not coprime modulo \\spad{prime}.")) (|compBound| (((|NonNegativeInteger|) |#2| (|List| |#2|)) "\\spad{compBound(p,lp)} computes a bound for the coefficients of the solution polynomials. Given a polynomial right hand side \\spad{p},{} and a list \\spad{lp} of left hand side polynomials. Exported because it depends on the valuation.")) (|reduction| ((|#2| |#2| |#1|) "\\spad{reduction(p,prime)} reduces the polynomial \\spad{p} modulo \\spad{prime} of \\spad{R}. Note: this function is exported only because it\\spad{'s} conditional.")))
NIL
@@ -1798,7 +1798,7 @@ NIL
NIL
(-467 |vl| R IS E |ff| P)
((|constructor| (NIL "This package \\undocumented")) (* (($ |#6| $) "\\spad{p*x} \\undocumented")) (|multMonom| (($ |#2| |#4| $) "\\spad{multMonom(r,e,x)} \\undocumented")) (|build| (($ |#2| |#3| |#4|) "\\spad{build(r,i,e)} \\undocumented")) (|unitVector| (($ |#3|) "\\spad{unitVector(x)} \\undocumented")) (|monomial| (($ |#2| (|ModuleMonomial| |#3| |#4| |#5|)) "\\spad{monomial(r,x)} \\undocumented")) (|reductum| (($ $) "\\spad{reductum(x)} \\undocumented")) (|leadingIndex| ((|#3| $) "\\spad{leadingIndex(x)} \\undocumented")) (|leadingExponent| ((|#4| $) "\\spad{leadingExponent(x)} \\undocumented")) (|leadingMonomial| (((|ModuleMonomial| |#3| |#4| |#5|) $) "\\spad{leadingMonomial(x)} \\undocumented")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(x)} \\undocumented")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
(-468 E V R P Q)
((|constructor| (NIL "Gosper\\spad{'s} summation algorithm.")) (|GospersMethod| (((|Union| |#5| "failed") |#5| |#2| (|Mapping| |#2|)) "\\spad{GospersMethod(b, n, new)} returns a rational function \\spad{rf(n)} such that \\spad{a(n) * rf(n)} is the indefinite sum of \\spad{a(n)} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{a(n+1) * rf(n+1) - a(n) * rf(n) = a(n)},{} where \\spad{b(n) = a(n)/a(n-1)} is a rational function. Returns \"failed\" if no such rational function \\spad{rf(n)} exists. Note: \\spad{new} is a nullary function returning a new \\spad{V} every time. The condition on \\spad{a(n)} is that \\spad{a(n)/a(n-1)} is a rational function of \\spad{n}.")))
@@ -1806,7 +1806,7 @@ NIL
NIL
(-469 R E |VarSet| P)
((|constructor| (NIL "A domain for polynomial sets.")) (|convert| (($ (|List| |#4|)) "\\axiom{convert(\\spad{lp})} returns the polynomial set whose members are the polynomials of \\axiom{\\spad{lp}}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))))
(-470 S R E)
((|constructor| (NIL "GradedAlgebra(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-algebra\\spad{''}. A graded algebra is a graded module together with a degree preserving \\spad{R}-linear map,{} called the {\\em product}. \\blankline The name ``product\\spad{''} is written out in full so inner and outer products with the same mapping type can be distinguished by name.")) (|product| (($ $ $) "\\spad{product(a,b)} is the degree-preserving \\spad{R}-linear product: \\blankline \\indented{2}{\\spad{degree product(a,b) = degree a + degree b}} \\indented{2}{\\spad{product(a1+a2,b) = product(a1,b) + product(a2,b)}} \\indented{2}{\\spad{product(a,b1+b2) = product(a,b1) + product(a,b2)}} \\indented{2}{\\spad{product(r*a,b) = product(a,r*b) = r*product(a,b)}} \\indented{2}{\\spad{product(a,product(b,c)) = product(product(a,b),c)}}")) ((|One|) (($) "1 is the identity for \\spad{product}.")))
@@ -1846,23 +1846,23 @@ NIL
NIL
(-479)
((|constructor| (NIL "The class of multiplicative groups,{} \\spadignore{i.e.} monoids with multiplicative inverses. \\blankline")) (|commutator| (($ $ $) "\\spad{commutator(p,q)} computes \\spad{inv(p) * inv(q) * p * q}.")) (|conjugate| (($ $ $) "\\spad{conjugate(p,q)} computes \\spad{inv(q) * p * q}; this is 'right action by conjugation'.")) (|unitsKnown| ((|attribute|) "unitsKnown asserts that recip only returns \"failed\" for non-units.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")) (/ (($ $ $) "\\spad{x/y} is the same as \\spad{x} times the inverse of \\spad{y}.")) (|inv| (($ $) "\\spad{inv(x)} returns the inverse of \\spad{x}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-480 |Coef| |var| |cen|)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x\\^r)}.")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|UnivariatePuiseuxSeries| |#1| |#2| |#3|)) "\\spad{coerce(f)} converts a Puiseux series to a general power series.") (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
(-481 |Key| |Entry| |Tbl| |dent|)
((|constructor| (NIL "A sparse table has a default entry,{} which is returned if no other value has been explicitly stored for a key.")))
-((-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))))
+((-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))))
(-482 R E V P)
((|constructor| (NIL "A domain constructor of the category \\axiomType{TriangularSetCategory}. The only requirement for a list of polynomials to be a member of such a domain is the following: no polynomial is constant and two distinct polynomials have distinct main variables. Such a triangular set may not be auto-reduced or consistent. Triangular sets are stored as sorted lists \\spad{w}.\\spad{r}.\\spad{t}. the main variables of their members but they are displayed in reverse order.\\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))))
(-483)
((|constructor| (NIL "\\indented{1}{Symbolic fractions in \\%\\spad{pi} with integer coefficients;} \\indented{1}{The point for using \\spad{Pi} as the default domain for those fractions} \\indented{1}{is that \\spad{Pi} is coercible to the float types,{} and not Expression.} Date Created: 21 Feb 1990 Date Last Updated: 12 Mai 1992")) (|pi| (($) "\\spad{pi()} returns the symbolic \\%\\spad{pi}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-484)
((|constructor| (NIL "This domain represents a `has' expression.")) (|rhs| (((|SpadAst|) $) "\\spad{rhs(e)} returns the right hand side of the case expression `e'.")) (|lhs| (((|SpadAst|) $) "\\spad{lhs(e)} returns the left hand side of the has expression `e'.")))
@@ -1870,27 +1870,27 @@ NIL
NIL
(-485 |Key| |Entry| |hashfn|)
((|constructor| (NIL "This domain provides access to the underlying Lisp hash tables. By varying the hashfn parameter,{} tables suited for different purposes can be obtained.")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
(-486)
((|constructor| (NIL "\\indented{1}{Author : Larry Lambe} Date Created : August 1988 Date Last Updated : March 9 1990 Related Constructors: OrderedSetInts,{} Commutator,{} FreeNilpotentLie AMS Classification: Primary 17B05,{} 17B30; Secondary 17A50 Keywords: free Lie algebra,{} Hall basis,{} basic commutators Description : Generate a basis for the free Lie algebra on \\spad{n} generators over a ring \\spad{R} with identity up to basic commutators of length \\spad{c} using the algorithm of \\spad{P}. Hall as given in Serre\\spad{'s} book Lie Groups \\spad{--} Lie Algebras")) (|generate| (((|Vector| (|List| (|Integer|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{generate(numberOfGens, maximalWeight)} generates a vector of elements of the form [left,{}weight,{}right] which represents a \\spad{P}. Hall basis element for the free lie algebra on \\spad{numberOfGens} generators. We only generate those basis elements of weight less than or equal to maximalWeight")) (|inHallBasis?| (((|Boolean|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{inHallBasis?(numberOfGens, leftCandidate, rightCandidate, left)} tests to see if a new element should be added to the \\spad{P}. Hall basis being constructed. The list \\spad{[leftCandidate,wt,rightCandidate]} is included in the basis if in the unique factorization of \\spad{rightCandidate},{} we have left factor leftOfRight,{} and leftOfRight \\spad{<=} \\spad{leftCandidate}")) (|lfunc| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{lfunc(d,n)} computes the rank of the \\spad{n}th factor in the lower central series of the free \\spad{d}-generated free Lie algebra; This rank is \\spad{d} if \\spad{n} = 1 and binom(\\spad{d},{}2) if \\spad{n} = 2")))
NIL
NIL
(-487 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is total degree ordering refined by reverse lexicographic ordering with respect to the position that the variables appear in the list of variables parameter.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p, perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4450 "*") |has| |#2| (-174)) (-4441 |has| |#2| (-562)) (-4446 |has| |#2| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
(-488 -2408 S)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The vectors are ordered first by the sum of their components,{} and then refined using a reverse lexicographic ordering. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4442 |has| |#2| (-1058)) (-4443 |has| |#2| (-1058)) (-4445 |has| |#2| (-6 -4445)) ((-4450 "*") |has| |#2| (-174)) (-4448 . T))
-((-2740 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2740 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-235))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-174)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-235)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-373)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-854)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasAttribute| |#2| (QUOTE -4445)) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))))
+((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
+((-2740 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2740 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-235))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-174)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-235)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-373)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-854)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))))
(-489)
((|constructor| (NIL "This domain represents the header of a definition.")) (|parameters| (((|List| (|ParameterAst|)) $) "\\spad{parameters(h)} gives the parameters specified in the definition header \\spad{`h'}.")) (|name| (((|Identifier|) $) "\\spad{name(h)} returns the name of the operation defined defined.")) (|headAst| (($ (|Identifier|) (|List| (|ParameterAst|))) "\\spad{headAst(f,[x1,..,xn])} constructs a function definition header.")))
NIL
NIL
(-490 S)
((|constructor| (NIL "Heap implemented in a flexible array to allow for insertions")) (|heap| (($ (|List| |#1|)) "\\spad{heap(ls)} creates a heap of elements consisting of the elements of \\spad{ls}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-491 -1674 UP UPUP R)
((|constructor| (NIL "This domains implements finite rational divisors on an hyperelliptic curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve. The equation of the curve must be \\spad{y^2} = \\spad{f}(\\spad{x}) and \\spad{f} must have odd degree.")))
@@ -1902,12 +1902,12 @@ NIL
NIL
(-493)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating hexadecimal expansions.")) (|hex| (($ (|Fraction| (|Integer|))) "\\spad{hex(r)} converts a rational number to a hexadecimal expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(h)} returns the fractional part of a hexadecimal expansion.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-570) (QUOTE (-916))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-570) (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-148))) (|HasCategory| (-570) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-570) (QUOTE (-1031))) (|HasCategory| (-570) (QUOTE (-826))) (-2740 (|HasCategory| (-570) (QUOTE (-826))) (|HasCategory| (-570) (QUOTE (-856)))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-1161))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-570) (QUOTE (-235))) (|HasCategory| (-570) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-570) (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -313) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -290) (QUOTE (-570)) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-311))) (|HasCategory| (-570) (QUOTE (-551))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-570) (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
(-494 A S)
((|constructor| (NIL "A homogeneous aggregate is an aggregate of elements all of the same type. In the current system,{} all aggregates are homogeneous. Two attributes characterize classes of aggregates. Aggregates from domains with attribute \\spadatt{finiteAggregate} have a finite number of members. Those with attribute \\spadatt{shallowlyMutable} allow an element to be modified or updated without changing its overall value.")) (|member?| (((|Boolean|) |#2| $) "\\spad{member?(x,u)} tests if \\spad{x} is a member of \\spad{u}. For collections,{} \\axiom{member?(\\spad{x},{}\\spad{u}) = reduce(or,{}[x=y for \\spad{y} in \\spad{u}],{}\\spad{false})}.")) (|members| (((|List| |#2|) $) "\\spad{members(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|parts| (((|List| |#2|) $) "\\spad{parts(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|count| (((|NonNegativeInteger|) |#2| $) "\\spad{count(x,u)} returns the number of occurrences of \\spad{x} in \\spad{u}. For collections,{} \\axiom{count(\\spad{x},{}\\spad{u}) = reduce(+,{}[x=y for \\spad{y} in \\spad{u}],{}0)}.") (((|NonNegativeInteger|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{count(p,u)} returns the number of elements \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. For collections,{} \\axiom{count(\\spad{p},{}\\spad{u}) = reduce(+,{}[1 for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})],{}0)}.")) (|every?| (((|Boolean|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{every?(f,u)} tests if \\spad{p}(\\spad{x}) is \\spad{true} for all elements \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{every?(\\spad{p},{}\\spad{u}) = reduce(and,{}map(\\spad{f},{}\\spad{u}),{}\\spad{true},{}\\spad{false})}.")) (|any?| (((|Boolean|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{any?(p,u)} tests if \\axiom{\\spad{p}(\\spad{x})} is \\spad{true} for any element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{any?(\\spad{p},{}\\spad{u}) = reduce(or,{}map(\\spad{f},{}\\spad{u}),{}\\spad{false},{}\\spad{true})}.")) (|map!| (($ (|Mapping| |#2| |#2|) $) "\\spad{map!(f,u)} destructively replaces each element \\spad{x} of \\spad{u} by \\axiom{\\spad{f}(\\spad{x})}.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(f,u)} returns a copy of \\spad{u} with each element \\spad{x} replaced by \\spad{f}(\\spad{x}). For collections,{} \\axiom{map(\\spad{f},{}\\spad{u}) = [\\spad{f}(\\spad{x}) for \\spad{x} in \\spad{u}]}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4448)) (|HasAttribute| |#1| (QUOTE -4449)) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))))
+((|HasAttribute| |#1| (QUOTE -4449)) (|HasAttribute| |#1| (QUOTE -4450)) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))))
(-495 S)
((|constructor| (NIL "A homogeneous aggregate is an aggregate of elements all of the same type. In the current system,{} all aggregates are homogeneous. Two attributes characterize classes of aggregates. Aggregates from domains with attribute \\spadatt{finiteAggregate} have a finite number of members. Those with attribute \\spadatt{shallowlyMutable} allow an element to be modified or updated without changing its overall value.")) (|member?| (((|Boolean|) |#1| $) "\\spad{member?(x,u)} tests if \\spad{x} is a member of \\spad{u}. For collections,{} \\axiom{member?(\\spad{x},{}\\spad{u}) = reduce(or,{}[x=y for \\spad{y} in \\spad{u}],{}\\spad{false})}.")) (|members| (((|List| |#1|) $) "\\spad{members(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|parts| (((|List| |#1|) $) "\\spad{parts(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|count| (((|NonNegativeInteger|) |#1| $) "\\spad{count(x,u)} returns the number of occurrences of \\spad{x} in \\spad{u}. For collections,{} \\axiom{count(\\spad{x},{}\\spad{u}) = reduce(+,{}[x=y for \\spad{y} in \\spad{u}],{}0)}.") (((|NonNegativeInteger|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{count(p,u)} returns the number of elements \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. For collections,{} \\axiom{count(\\spad{p},{}\\spad{u}) = reduce(+,{}[1 for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})],{}0)}.")) (|every?| (((|Boolean|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{every?(f,u)} tests if \\spad{p}(\\spad{x}) is \\spad{true} for all elements \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{every?(\\spad{p},{}\\spad{u}) = reduce(and,{}map(\\spad{f},{}\\spad{u}),{}\\spad{true},{}\\spad{false})}.")) (|any?| (((|Boolean|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{any?(p,u)} tests if \\axiom{\\spad{p}(\\spad{x})} is \\spad{true} for any element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{any?(\\spad{p},{}\\spad{u}) = reduce(or,{}map(\\spad{f},{}\\spad{u}),{}\\spad{false},{}\\spad{true})}.")) (|map!| (($ (|Mapping| |#1| |#1|) $) "\\spad{map!(f,u)} destructively replaces each element \\spad{x} of \\spad{u} by \\axiom{\\spad{f}(\\spad{x})}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,u)} returns a copy of \\spad{u} with each element \\spad{x} replaced by \\spad{f}(\\spad{x}). For collections,{} \\axiom{map(\\spad{f},{}\\spad{u}) = [\\spad{f}(\\spad{x}) for \\spad{x} in \\spad{u}]}.")))
NIL
@@ -1934,15 +1934,15 @@ NIL
NIL
(-501)
((|constructor| (NIL "Algebraic closure of the rational numbers.")) (|norm| (($ $ (|List| (|Kernel| $))) "\\spad{norm(f,l)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernels \\spad{l}") (($ $ (|Kernel| $)) "\\spad{norm(f,k)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernel \\spad{k}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|List| (|Kernel| $))) "\\spad{norm(p,l)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernels \\spad{l}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{norm(p,k)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernel \\spad{k}")) (|trueEqual| (((|Boolean|) $ $) "\\spad{trueEqual(x,y)} tries to determine if the two numbers are equal")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic numbers present in \\spad{f} by applying their defining relations.")) (|denom| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|numer| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|coerce| (($ (|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} viewed as an algebraic number.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| $ (QUOTE (-1058))) (|HasCategory| $ (LIST (QUOTE -1047) (QUOTE (-570)))))
(-502 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-503 R |mnRow| |mnCol|)
((|constructor| (NIL "\\indented{1}{An IndexedTwoDimensionalArray is a 2-dimensional array where} the minimal row and column indices are parameters of the type. Rows and columns are returned as IndexedOneDimensionalArray\\spad{'s} with minimal indices matching those of the IndexedTwoDimensionalArray. The index of the 'first' row may be obtained by calling the function 'minRowIndex'. The index of the 'first' column may be obtained by calling the function 'minColIndex'. The index of the first element of a 'Row' is the same as the index of the first column in an array and vice versa.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-504 K R UP)
((|constructor| (NIL "\\indented{1}{Author: Clifton Williamson} Date Created: 9 August 1993 Date Last Updated: 3 December 1993 Basic Operations: chineseRemainder,{} factorList Related Domains: PAdicWildFunctionFieldIntegralBasis(\\spad{K},{}\\spad{R},{}UP,{}\\spad{F}) Also See: WildFunctionFieldIntegralBasis,{} FunctionFieldIntegralBasis AMS Classifications: Keywords: function field,{} finite field,{} integral basis Examples: References: Description:")) (|chineseRemainder| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) (|List| |#3|) (|List| (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) (|NonNegativeInteger|)) "\\spad{chineseRemainder(lu,lr,n)} \\undocumented")) (|listConjugateBases| (((|List| (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{listConjugateBases(bas,q,n)} returns the list \\spad{[bas,bas^Frob,bas^(Frob^2),...bas^(Frob^(n-1))]},{} where \\spad{Frob} raises the coefficients of all polynomials appearing in the basis \\spad{bas} to the \\spad{q}th power.")) (|factorList| (((|List| (|SparseUnivariatePolynomial| |#1|)) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factorList(k,n,m,j)} \\undocumented")))
@@ -1954,7 +1954,7 @@ NIL
NIL
(-506 |mn|)
((|constructor| (NIL "\\spadtype{IndexedBits} is a domain to compactly represent large quantities of Boolean data.")) (|And| (($ $ $) "\\spad{And(n,m)} returns the bit-by-bit logical {\\em And} of \\spad{n} and \\spad{m}.")) (|Or| (($ $ $) "\\spad{Or(n,m)} returns the bit-by-bit logical {\\em Or} of \\spad{n} and \\spad{m}.")) (|Not| (($ $) "\\spad{Not(n)} returns the bit-by-bit logical {\\em Not} of \\spad{n}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1109))) (|HasCategory| (-112) (LIST (QUOTE -313) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-112) (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-112) (QUOTE (-1109))) (|HasCategory| (-112) (LIST (QUOTE -619) (QUOTE (-868)))))
(-507 K R UP L)
((|constructor| (NIL "IntegralBasisPolynomialTools provides functions for \\indented{1}{mapping functions on the coefficients of univariate and bivariate} \\indented{1}{polynomials.}")) (|mapBivariate| (((|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#4|)) (|Mapping| |#4| |#1|) |#3|) "\\spad{mapBivariate(f,p(x,y))} applies the function \\spad{f} to the coefficients of \\spad{p(x,y)}.")) (|mapMatrixIfCan| (((|Union| (|Matrix| |#2|) "failed") (|Mapping| (|Union| |#1| "failed") |#4|) (|Matrix| (|SparseUnivariatePolynomial| |#4|))) "\\spad{mapMatrixIfCan(f,mat)} applies the function \\spad{f} to the coefficients of the entries of \\spad{mat} if possible,{} and returns \\spad{\"failed\"} otherwise.")) (|mapUnivariateIfCan| (((|Union| |#2| "failed") (|Mapping| (|Union| |#1| "failed") |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{mapUnivariateIfCan(f,p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)},{} if possible,{} and returns \\spad{\"failed\"} otherwise.")) (|mapUnivariate| (((|SparseUnivariatePolynomial| |#4|) (|Mapping| |#4| |#1|) |#2|) "\\spad{mapUnivariate(f,p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)}.") ((|#2| (|Mapping| |#1| |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{mapUnivariate(f,p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)}.")))
@@ -2018,7 +2018,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-798))))
(-522 S |mn|)
((|constructor| (NIL "\\indented{1}{Author: Michael Monagan July/87,{} modified \\spad{SMW} June/91} A FlexibleArray is the notion of an array intended to allow for growth at the end only. Hence the following efficient operations \\indented{2}{\\spad{append(x,a)} meaning append item \\spad{x} at the end of the array \\spad{a}} \\indented{2}{\\spad{delete(a,n)} meaning delete the last item from the array \\spad{a}} Flexible arrays support the other operations inherited from \\spadtype{ExtensibleLinearAggregate}. However,{} these are not efficient. Flexible arrays combine the \\spad{O(1)} access time property of arrays with growing and shrinking at the end in \\spad{O(1)} (average) time. This is done by using an ordinary array which may have zero or more empty slots at the end. When the array becomes full it is copied into a new larger (50\\% larger) array. Conversely,{} when the array becomes less than 1/2 full,{} it is copied into a smaller array. Flexible arrays provide for an efficient implementation of many data structures in particular heaps,{} stacks and sets.")) (|shrinkable| (((|Boolean|) (|Boolean|)) "\\spad{shrinkable(b)} sets the shrinkable attribute of flexible arrays to \\spad{b} and returns the previous value")) (|physicalLength!| (($ $ (|Integer|)) "\\spad{physicalLength!(x,n)} changes the physical length of \\spad{x} to be \\spad{n} and returns the new array.")) (|physicalLength| (((|NonNegativeInteger|) $) "\\spad{physicalLength(x)} returns the number of elements \\spad{x} can accomodate before growing")) (|flexibleArray| (($ (|List| |#1|)) "\\spad{flexibleArray(l)} creates a flexible array from the list of elements \\spad{l}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-523)
((|constructor| (NIL "This domain represents AST for conditional expressions.")) (|elseBranch| (((|SpadAst|) $) "thenBranch(\\spad{e}) returns the `else-branch' of `e'.")) (|thenBranch| (((|SpadAst|) $) "\\spad{thenBranch(e)} returns the `then-branch' of `e'.")) (|condition| (((|SpadAst|) $) "\\spad{condition(e)} returns the condition of the if-expression `e'.")))
@@ -2026,28 +2026,28 @@ NIL
NIL
(-524 |p| |n|)
((|constructor| (NIL "InnerFiniteField(\\spad{p},{}\\spad{n}) implements finite fields with \\spad{p**n} elements where \\spad{p} is assumed prime but does not check. For a version which checks that \\spad{p} is prime,{} see \\spadtype{FiniteField}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((-2740 (|HasCategory| (-587 |#1|) (QUOTE (-146))) (|HasCategory| (-587 |#1|) (QUOTE (-373)))) (|HasCategory| (-587 |#1|) (QUOTE (-148))) (|HasCategory| (-587 |#1|) (QUOTE (-373))) (|HasCategory| (-587 |#1|) (QUOTE (-146))))
(-525 R |mnRow| |mnCol| |Row| |Col|)
((|constructor| (NIL "\\indented{1}{This is an internal type which provides an implementation of} 2-dimensional arrays as PrimitiveArray\\spad{'s} of PrimitiveArray\\spad{'s}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-526 S |mn|)
((|constructor| (NIL "\\spadtype{IndexedList} is a basic implementation of the functions in \\spadtype{ListAggregate},{} often using functions in the underlying LISP system. The second parameter to the constructor (\\spad{mn}) is the beginning index of the list. That is,{} if \\spad{l} is a list,{} then \\spad{elt(l,mn)} is the first value. This constructor is probably best viewed as the implementation of singly-linked lists that are addressable by index rather than as a mere wrapper for LISP lists.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-527 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{InnerMatrixLinearAlgebraFunctions} is an internal package which provides standard linear algebra functions on domains in \\spad{MatrixCategory}")) (|inverse| (((|Union| |#4| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|generalizedInverse| ((|#4| |#4|) "\\spad{generalizedInverse(m)} returns the generalized (Moore--Penrose) inverse of the matrix \\spad{m},{} \\spadignore{i.e.} the matrix \\spad{h} such that m*h*m=h,{} h*m*h=m,{} \\spad{m*h} and \\spad{h*m} are both symmetric matrices.")) (|determinant| ((|#1| |#4|) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. an error message is returned if the matrix is not square.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) |#4|) "\\spad{nullity(m)} returns the mullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) |#4|) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| ((|#4| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")))
NIL
-((|HasAttribute| |#3| (QUOTE -4449)))
+((|HasAttribute| |#3| (QUOTE -4450)))
(-528 R |Row| |Col| M QF |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{InnerMatrixQuotientFieldFunctions} provides functions on matrices over an integral domain which involve the quotient field of that integral domain. The functions rowEchelon and inverse return matrices with entries in the quotient field.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|inverse| (((|Union| |#8| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square. Note: the result will have entries in the quotient field.")) (|rowEchelon| ((|#8| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}. the result will have entries in the quotient field.")))
NIL
-((|HasAttribute| |#7| (QUOTE -4449)))
+((|HasAttribute| |#7| (QUOTE -4450)))
(-529 R |mnRow| |mnCol|)
((|constructor| (NIL "An \\spad{IndexedMatrix} is a matrix where the minimal row and column indices are parameters of the type. The domains Row and Col are both IndexedVectors. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a 'Row' is the same as the index of the first column in a matrix and vice versa.")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))) (|HasAttribute| |#1| (QUOTE (-4450 "*"))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))) (|HasAttribute| |#1| (QUOTE (-4451 "*"))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-530)
((|constructor| (NIL "This domain represents an `import' of types.")) (|imports| (((|List| (|TypeAst|)) $) "\\spad{imports(x)} returns the list of imported types.")) (|coerce| (($ (|List| (|TypeAst|))) "ts::ImportAst constructs an ImportAst for the list if types `ts'.")))
NIL
@@ -2134,7 +2134,7 @@ NIL
NIL
(-551)
((|constructor| (NIL "An \\spad{IntegerNumberSystem} is a model for the integers.")) (|invmod| (($ $ $) "\\spad{invmod(a,b)},{} \\spad{0<=a<b>1},{} \\spad{(a,b)=1} means \\spad{1/a mod b}.")) (|powmod| (($ $ $ $) "\\spad{powmod(a,b,p)},{} \\spad{0<=a,b<p>1},{} means \\spad{a**b mod p}.")) (|mulmod| (($ $ $ $) "\\spad{mulmod(a,b,p)},{} \\spad{0<=a,b<p>1},{} means \\spad{a*b mod p}.")) (|submod| (($ $ $ $) "\\spad{submod(a,b,p)},{} \\spad{0<=a,b<p>1},{} means \\spad{a-b mod p}.")) (|addmod| (($ $ $ $) "\\spad{addmod(a,b,p)},{} \\spad{0<=a,b<p>1},{} means \\spad{a+b mod p}.")) (|mask| (($ $) "\\spad{mask(n)} returns \\spad{2**n-1} (an \\spad{n} bit mask).")) (|dec| (($ $) "\\spad{dec(x)} returns \\spad{x - 1}.")) (|inc| (($ $) "\\spad{inc(x)} returns \\spad{x + 1}.")) (|copy| (($ $) "\\spad{copy(n)} gives a copy of \\spad{n}.")) (|random| (($ $) "\\spad{random(a)} creates a random element from 0 to \\spad{a-1}.") (($) "\\spad{random()} creates a random element.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(n)} creates a rational number,{} or returns \"failed\" if this is not possible.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(n)} creates a rational number (see \\spadtype{Fraction Integer})..")) (|rational?| (((|Boolean|) $) "\\spad{rational?(n)} tests if \\spad{n} is a rational number (see \\spadtype{Fraction Integer}).")) (|symmetricRemainder| (($ $ $) "\\spad{symmetricRemainder(a,b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{ -b/2 <= r < b/2 }.")) (|positiveRemainder| (($ $ $) "\\spad{positiveRemainder(a,b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{0 <= r < b} and \\spad{r == a rem b}.")) (|bit?| (((|Boolean|) $ $) "\\spad{bit?(n,i)} returns \\spad{true} if and only if \\spad{i}-th bit of \\spad{n} is a 1.")) (|shift| (($ $ $) "\\spad{shift(a,i)} shift \\spad{a} by \\spad{i} digits.")) (|length| (($ $) "\\spad{length(a)} length of \\spad{a} in digits.")) (|base| (($) "\\spad{base()} returns the base for the operations of \\spad{IntegerNumberSystem}.")) (|multiplicativeValuation| ((|attribute|) "euclideanSize(a*b) returns \\spad{euclideanSize(a)*euclideanSize(b)}.")) (|even?| (((|Boolean|) $) "\\spad{even?(n)} returns \\spad{true} if and only if \\spad{n} is even.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(n)} returns \\spad{true} if and only if \\spad{n} is odd.")))
-((-4446 . T) (-4447 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-552)
((|constructor| (NIL "This domain is a datatype for (signed) integer values of precision 16 bits.")))
@@ -2154,8 +2154,8 @@ NIL
NIL
(-556 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
(-557 R -1674)
((|constructor| (NIL "This package provides functions for the integration of algebraic integrands over transcendental functions.")) (|algint| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|SparseUnivariatePolynomial| |#2|) (|SparseUnivariatePolynomial| |#2|))) "\\spad{algint(f, x, y, d)} returns the integral of \\spad{f(x,y)dx} where \\spad{y} is an algebraic function of \\spad{x}; \\spad{d} is the derivation to use on \\spad{k[x]}.")))
NIL
@@ -2170,7 +2170,7 @@ NIL
NIL
(-560 R)
((|constructor| (NIL "\\indented{1}{+ Author: Mike Dewar} + Date Created: November 1996 + Date Last Updated: + Basic Functions: + Related Constructors: + Also See: + AMS Classifications: + Keywords: + References: + Description: + This category implements of interval arithmetic and transcendental + functions over intervals.")) (|contains?| (((|Boolean|) $ |#1|) "\\spad{contains?(i,f)} returns \\spad{true} if \\axiom{\\spad{f}} is contained within the interval \\axiom{\\spad{i}},{} \\spad{false} otherwise.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(u)} returns \\axiom{\\spad{true}} if every element of \\spad{u} is negative,{} \\axiom{\\spad{false}} otherwise.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(u)} returns \\axiom{\\spad{true}} if every element of \\spad{u} is positive,{} \\axiom{\\spad{false}} otherwise.")) (|width| ((|#1| $) "\\spad{width(u)} returns \\axiom{sup(\\spad{u}) - inf(\\spad{u})}.")) (|sup| ((|#1| $) "\\spad{sup(u)} returns the supremum of \\axiom{\\spad{u}}.")) (|inf| ((|#1| $) "\\spad{inf(u)} returns the infinum of \\axiom{\\spad{u}}.")) (|qinterval| (($ |#1| |#1|) "\\spad{qinterval(inf,sup)} creates a new interval \\axiom{[\\spad{inf},{}\\spad{sup}]},{} without checking the ordering on the elements.")) (|interval| (($ (|Fraction| (|Integer|))) "\\spad{interval(f)} creates a new interval around \\spad{f}.") (($ |#1|) "\\spad{interval(f)} creates a new interval around \\spad{f}.") (($ |#1| |#1|) "\\spad{interval(inf,sup)} creates a new interval,{} either \\axiom{[\\spad{inf},{}\\spad{sup}]} if \\axiom{\\spad{inf} \\spad{<=} \\spad{sup}} or \\axiom{[\\spad{sup},{}in]} otherwise.")))
-((-3026 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-3026 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-561 S)
((|constructor| (NIL "The category of commutative integral domains,{} \\spadignore{i.e.} commutative rings with no zero divisors. \\blankline Conditional attributes: \\indented{2}{canonicalUnitNormal\\tab{20}the canonical field is the same for all associates} \\indented{2}{canonicalsClosed\\tab{20}the product of two canonicals is itself canonical}")) (|unit?| (((|Boolean|) $) "\\spad{unit?(x)} tests whether \\spad{x} is a unit,{} \\spadignore{i.e.} is invertible.")) (|associates?| (((|Boolean|) $ $) "\\spad{associates?(x,y)} tests whether \\spad{x} and \\spad{y} are associates,{} \\spadignore{i.e.} differ by a unit factor.")) (|unitCanonical| (($ $) "\\spad{unitCanonical(x)} returns \\spad{unitNormal(x).canonical}.")) (|unitNormal| (((|Record| (|:| |unit| $) (|:| |canonical| $) (|:| |associate| $)) $) "\\spad{unitNormal(x)} tries to choose a canonical element from the associate class of \\spad{x}. The attribute canonicalUnitNormal,{} if asserted,{} means that the \"canonical\" element is the same across all associates of \\spad{x} if \\spad{unitNormal(x) = [u,c,a]} then \\spad{u*c = x},{} \\spad{a*u = 1}.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,b)} either returns an element \\spad{c} such that \\spad{c*b=a} or \"failed\" if no such element can be found.")))
@@ -2178,7 +2178,7 @@ NIL
NIL
(-562)
((|constructor| (NIL "The category of commutative integral domains,{} \\spadignore{i.e.} commutative rings with no zero divisors. \\blankline Conditional attributes: \\indented{2}{canonicalUnitNormal\\tab{20}the canonical field is the same for all associates} \\indented{2}{canonicalsClosed\\tab{20}the product of two canonicals is itself canonical}")) (|unit?| (((|Boolean|) $) "\\spad{unit?(x)} tests whether \\spad{x} is a unit,{} \\spadignore{i.e.} is invertible.")) (|associates?| (((|Boolean|) $ $) "\\spad{associates?(x,y)} tests whether \\spad{x} and \\spad{y} are associates,{} \\spadignore{i.e.} differ by a unit factor.")) (|unitCanonical| (($ $) "\\spad{unitCanonical(x)} returns \\spad{unitNormal(x).canonical}.")) (|unitNormal| (((|Record| (|:| |unit| $) (|:| |canonical| $) (|:| |associate| $)) $) "\\spad{unitNormal(x)} tries to choose a canonical element from the associate class of \\spad{x}. The attribute canonicalUnitNormal,{} if asserted,{} means that the \"canonical\" element is the same across all associates of \\spad{x} if \\spad{unitNormal(x) = [u,c,a]} then \\spad{u*c = x},{} \\spad{a*u = 1}.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,b)} either returns an element \\spad{c} such that \\spad{c*b=a} or \"failed\" if no such element can be found.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-563 R -1674)
((|constructor| (NIL "This package provides functions for integration,{} limited integration,{} extended integration and the risch differential equation for elemntary functions.")) (|lfextlimint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Symbol|) (|Kernel| |#2|) (|List| (|Kernel| |#2|))) "\\spad{lfextlimint(f,x,k,[k1,...,kn])} returns functions \\spad{[h, c]} such that \\spad{dh/dx = f - c dk/dx}. Value \\spad{h} is looked for in a field containing \\spad{f} and \\spad{k1},{}...,{}\\spad{kn} (the \\spad{ki}\\spad{'s} must be logs).")) (|lfintegrate| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{lfintegrate(f, x)} = \\spad{g} such that \\spad{dg/dx = f}.")) (|lfinfieldint| (((|Union| |#2| "failed") |#2| (|Symbol|)) "\\spad{lfinfieldint(f, x)} returns a function \\spad{g} such that \\spad{dg/dx = f} if \\spad{g} exists,{} \"failed\" otherwise.")) (|lflimitedint| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Symbol|) (|List| |#2|)) "\\spad{lflimitedint(f,x,[g1,...,gn])} returns functions \\spad{[h,[[ci, gi]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,...,gn]},{} and \\spad{d(h+sum(ci log(gi)))/dx = f},{} if possible,{} \"failed\" otherwise.")) (|lfextendedint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Symbol|) |#2|) "\\spad{lfextendedint(f, x, g)} returns functions \\spad{[h, c]} such that \\spad{dh/dx = f - cg},{} if (\\spad{h},{} \\spad{c}) exist,{} \"failed\" otherwise.")))
@@ -2210,7 +2210,7 @@ NIL
NIL
(-570)
((|constructor| (NIL "\\spadtype{Integer} provides the domain of arbitrary precision integers.")) (|infinite| ((|attribute|) "nextItem never returns \"failed\".")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")))
-((-4430 . T) (-4436 . T) (-4440 . T) (-4435 . T) (-4446 . T) (-4447 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4431 . T) (-4437 . T) (-4441 . T) (-4436 . T) (-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-571)
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|))) (|NumericalIntegrationProblem|) (|RoutinesTable|)) "\\spad{measure(prob,R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical integration problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{NumericalIntegrationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|))) (|NumericalIntegrationProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine for solving the numerical integration problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{NumericalIntegrationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.")) (|integrate| (((|Union| (|Result|) "failed") (|Expression| (|Float|)) (|SegmentBinding| (|OrderedCompletion| (|Float|))) (|Symbol|)) "\\spad{integrate(exp, x = a..b, numerical)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range,{} {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.\\newline \\blankline Default values for the absolute and relative error are used. \\blankline It is an error if the last argument is not {\\spad{\\tt} numerical}.") (((|Union| (|Result|) "failed") (|Expression| (|Float|)) (|SegmentBinding| (|OrderedCompletion| (|Float|))) (|String|)) "\\spad{integrate(exp, x = a..b, \"numerical\")} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range,{} {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.\\newline \\blankline Default values for the absolute and relative error are used. \\blankline It is an error of the last argument is not {\\spad{\\tt} \"numerical\"}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|) (|Float|) (|RoutinesTable|)) "\\spad{integrate(exp, [a..b,c..d,...], epsabs, epsrel, routines)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required absolute and relative accuracy,{} using the routines available in the RoutinesTable provided. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|) (|Float|)) "\\spad{integrate(exp, [a..b,c..d,...], epsabs, epsrel)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|)) "\\spad{integrate(exp, [a..b,c..d,...], epsrel)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline If epsrel = 0,{} a default absolute accuracy is used.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|))))) "\\spad{integrate(exp, [a..b,c..d,...])} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline Default values for the absolute and relative error are used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|)))) "\\spad{integrate(exp, a..b)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline Default values for the absolute and relative error are used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|)) "\\spad{integrate(exp, a..b, epsrel)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline If epsrel = 0,{} a default absolute accuracy is used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|) (|Float|)) "\\spad{integrate(exp, a..b, epsabs, epsrel)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|NumericalIntegrationProblem|)) "\\spad{integrate(IntegrationProblem)} is a top level ANNA function to integrate an expression over a given range or ranges to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|) (|Float|) (|RoutinesTable|)) "\\spad{integrate(exp, a..b, epsrel, routines)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required absolute and relative accuracy using the routines available in the RoutinesTable provided. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.")))
@@ -2238,7 +2238,7 @@ NIL
NIL
(-577 R)
((|constructor| (NIL "\\indented{1}{+ Author: Mike Dewar} + Date Created: November 1996 + Date Last Updated: + Basic Functions: + Related Constructors: + Also See: + AMS Classifications: + Keywords: + References: + Description: + This domain is an implementation of interval arithmetic and transcendental + functions over intervals.")))
-((-3026 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-3026 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-578)
((|constructor| (NIL "This package provides the implementation for the \\spadfun{solveLinearPolynomialEquation} operation over the integers. It uses a lifting technique from the package GenExEuclid")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| (|Integer|))) "failed") (|List| (|SparseUnivariatePolynomial| (|Integer|))) (|SparseUnivariatePolynomial| (|Integer|))) "\\spad{solveLinearPolynomialEquation([f1, ..., fn], g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod fi = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
@@ -2274,11 +2274,11 @@ NIL
NIL
(-586 |p| |unBalanced?|)
((|constructor| (NIL "This domain implements \\spad{Zp},{} the \\spad{p}-adic completion of the integers. This is an internal domain.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-587 |p|)
((|constructor| (NIL "InnerPrimeField(\\spad{p}) implements the field with \\spad{p} elements. Note: argument \\spad{p} MUST be a prime (this domain does not check). See \\spadtype{PrimeField} for a domain that does check.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| $ (QUOTE (-148))) (|HasCategory| $ (QUOTE (-146))) (|HasCategory| $ (QUOTE (-373))))
(-588)
((|constructor| (NIL "A package to print strings without line-feed nor carriage-return.")) (|iprint| (((|Void|) (|String|)) "\\axiom{iprint(\\spad{s})} prints \\axiom{\\spad{s}} at the current position of the cursor.")))
@@ -2298,7 +2298,7 @@ NIL
NIL
(-592 -1674)
((|constructor| (NIL "If a function \\spad{f} has an elementary integral \\spad{g},{} then \\spad{g} can be written in the form \\spad{g = h + c1 log(u1) + c2 log(u2) + ... + cn log(un)} where \\spad{h},{} which is in the same field than \\spad{f},{} is called the rational part of the integral,{} and \\spad{c1 log(u1) + ... cn log(un)} is called the logarithmic part of the integral. This domain manipulates integrals represented in that form,{} by keeping both parts separately. The logs are not explicitly computed.")) (|differentiate| ((|#1| $ (|Symbol|)) "\\spad{differentiate(ir,x)} differentiates \\spad{ir} with respect to \\spad{x}") ((|#1| $ (|Mapping| |#1| |#1|)) "\\spad{differentiate(ir,D)} differentiates \\spad{ir} with respect to the derivation \\spad{D}.")) (|integral| (($ |#1| (|Symbol|)) "\\spad{integral(f,x)} returns the formal integral of \\spad{f} with respect to \\spad{x}") (($ |#1| |#1|) "\\spad{integral(f,x)} returns the formal integral of \\spad{f} with respect to \\spad{x}")) (|elem?| (((|Boolean|) $) "\\spad{elem?(ir)} tests if an integration result is elementary over \\spad{F?}")) (|notelem| (((|List| (|Record| (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) "\\spad{notelem(ir)} returns the non-elementary part of an integration result")) (|logpart| (((|List| (|Record| (|:| |scalar| (|Fraction| (|Integer|))) (|:| |coeff| (|SparseUnivariatePolynomial| |#1|)) (|:| |logand| (|SparseUnivariatePolynomial| |#1|)))) $) "\\spad{logpart(ir)} returns the logarithmic part of an integration result")) (|ratpart| ((|#1| $) "\\spad{ratpart(ir)} returns the rational part of an integration result")) (|mkAnswer| (($ |#1| (|List| (|Record| (|:| |scalar| (|Fraction| (|Integer|))) (|:| |coeff| (|SparseUnivariatePolynomial| |#1|)) (|:| |logand| (|SparseUnivariatePolynomial| |#1|)))) (|List| (|Record| (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) "\\spad{mkAnswer(r,l,ne)} creates an integration result from a rational part \\spad{r},{} a logarithmic part \\spad{l},{} and a non-elementary part \\spad{ne}.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
((|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-1186)))))
(-593 I)
((|constructor| (NIL "The \\spadtype{IntegerRoots} package computes square roots and \\indented{2}{\\spad{n}th roots of integers efficiently.}")) (|approxSqrt| ((|#1| |#1|) "\\spad{approxSqrt(n)} returns an approximation \\spad{x} to \\spad{sqrt(n)} such that \\spad{-1 < x - sqrt(n) < 1}. Compute an approximation \\spad{s} to \\spad{sqrt(n)} such that \\indented{10}{\\spad{-1 < s - sqrt(n) < 1}} A variable precision Newton iteration is used. The running time is \\spad{O( log(n)**2 )}.")) (|perfectSqrt| (((|Union| |#1| "failed") |#1|) "\\spad{perfectSqrt(n)} returns the square root of \\spad{n} if \\spad{n} is a perfect square and returns \"failed\" otherwise")) (|perfectSquare?| (((|Boolean|) |#1|) "\\spad{perfectSquare?(n)} returns \\spad{true} if \\spad{n} is a perfect square and \\spad{false} otherwise")) (|approxNthRoot| ((|#1| |#1| (|NonNegativeInteger|)) "\\spad{approxRoot(n,r)} returns an approximation \\spad{x} to \\spad{n**(1/r)} such that \\spad{-1 < x - n**(1/r) < 1}")) (|perfectNthRoot| (((|Record| (|:| |base| |#1|) (|:| |exponent| (|NonNegativeInteger|))) |#1|) "\\spad{perfectNthRoot(n)} returns \\spad{[x,r]},{} where \\spad{n = x\\^r} and \\spad{r} is the largest integer such that \\spad{n} is a perfect \\spad{r}th power") (((|Union| |#1| "failed") |#1| (|NonNegativeInteger|)) "\\spad{perfectNthRoot(n,r)} returns the \\spad{r}th root of \\spad{n} if \\spad{n} is an \\spad{r}th power and returns \"failed\" otherwise")) (|perfectNthPower?| (((|Boolean|) |#1| (|NonNegativeInteger|)) "\\spad{perfectNthPower?(n,r)} returns \\spad{true} if \\spad{n} is an \\spad{r}th power and \\spad{false} otherwise")))
@@ -2326,7 +2326,7 @@ NIL
NIL
(-599 |mn|)
((|constructor| (NIL "This domain implements low-level strings")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145)))))) (-2740 (|HasCategory| (-145) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145)))))) (|HasCategory| (-145) (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-145) (QUOTE (-1109)))) (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))))
(-600 E V R P)
((|constructor| (NIL "tools for the summation packages.")) (|sum| (((|Record| (|:| |num| |#4|) (|:| |den| (|Integer|))) |#4| |#2|) "\\spad{sum(p(n), n)} returns \\spad{P(n)},{} the indefinite sum of \\spad{p(n)} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{P(n+1) - P(n) = a(n)}.") (((|Record| (|:| |num| |#4|) (|:| |den| (|Integer|))) |#4| |#2| (|Segment| |#4|)) "\\spad{sum(p(n), n = a..b)} returns \\spad{p(a) + p(a+1) + ... + p(b)}.")))
@@ -2334,11 +2334,11 @@ NIL
NIL
(-601 |Coef|)
((|constructor| (NIL "InnerSparseUnivariatePowerSeries is an internal domain \\indented{2}{used for creating sparse Taylor and Laurent series.}")) (|cAcsch| (($ $) "\\spad{cAcsch(f)} computes the inverse hyperbolic cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsech| (($ $) "\\spad{cAsech(f)} computes the inverse hyperbolic secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcoth| (($ $) "\\spad{cAcoth(f)} computes the inverse hyperbolic cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAtanh| (($ $) "\\spad{cAtanh(f)} computes the inverse hyperbolic tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcosh| (($ $) "\\spad{cAcosh(f)} computes the inverse hyperbolic cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsinh| (($ $) "\\spad{cAsinh(f)} computes the inverse hyperbolic sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCsch| (($ $) "\\spad{cCsch(f)} computes the hyperbolic cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSech| (($ $) "\\spad{cSech(f)} computes the hyperbolic secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCoth| (($ $) "\\spad{cCoth(f)} computes the hyperbolic cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cTanh| (($ $) "\\spad{cTanh(f)} computes the hyperbolic tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCosh| (($ $) "\\spad{cCosh(f)} computes the hyperbolic cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSinh| (($ $) "\\spad{cSinh(f)} computes the hyperbolic sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcsc| (($ $) "\\spad{cAcsc(f)} computes the arccosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsec| (($ $) "\\spad{cAsec(f)} computes the arcsecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcot| (($ $) "\\spad{cAcot(f)} computes the arccotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAtan| (($ $) "\\spad{cAtan(f)} computes the arctangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcos| (($ $) "\\spad{cAcos(f)} computes the arccosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsin| (($ $) "\\spad{cAsin(f)} computes the arcsine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCsc| (($ $) "\\spad{cCsc(f)} computes the cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSec| (($ $) "\\spad{cSec(f)} computes the secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCot| (($ $) "\\spad{cCot(f)} computes the cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cTan| (($ $) "\\spad{cTan(f)} computes the tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCos| (($ $) "\\spad{cCos(f)} computes the cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSin| (($ $) "\\spad{cSin(f)} computes the sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cLog| (($ $) "\\spad{cLog(f)} computes the logarithm of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cExp| (($ $) "\\spad{cExp(f)} computes the exponential of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cRationalPower| (($ $ (|Fraction| (|Integer|))) "\\spad{cRationalPower(f,r)} computes \\spad{f^r}. For use when the coefficient ring is commutative.")) (|cPower| (($ $ |#1|) "\\spad{cPower(f,r)} computes \\spad{f^r},{} where \\spad{f} has constant coefficient 1. For use when the coefficient ring is commutative.")) (|integrate| (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. Warning: function does not check for a term of degree \\spad{-1}.")) (|seriesToOutputForm| (((|OutputForm|) (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|))) (|Reference| (|OrderedCompletion| (|Integer|))) (|Symbol|) |#1| (|Fraction| (|Integer|))) "\\spad{seriesToOutputForm(st,refer,var,cen,r)} prints the series \\spad{f((var - cen)^r)}.")) (|iCompose| (($ $ $) "\\spad{iCompose(f,g)} returns \\spad{f(g(x))}. This is an internal function which should only be called for Taylor series \\spad{f(x)} and \\spad{g(x)} such that the constant coefficient of \\spad{g(x)} is zero.")) (|taylorQuoByVar| (($ $) "\\spad{taylorQuoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...}")) (|iExquo| (((|Union| $ "failed") $ $ (|Boolean|)) "\\spad{iExquo(f,g,taylor?)} is the quotient of the power series \\spad{f} and \\spad{g}. If \\spad{taylor?} is \\spad{true},{} then we must have \\spad{order(f) >= order(g)}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(fn,f)} returns the series \\spad{sum(fn(n) * an * x^n,n = n0..)},{} where \\spad{f} is the series \\spad{sum(an * x^n,n = n0..)}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(f)} tests if \\spad{f} is a single monomial.")) (|series| (($ (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")) (|getStream| (((|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|))) $) "\\spad{getStream(f)} returns the stream of terms representing the series \\spad{f}.")) (|getRef| (((|Reference| (|OrderedCompletion| (|Integer|))) $) "\\spad{getRef(f)} returns a reference containing the order to which the terms of \\spad{f} have been computed.")) (|makeSeries| (($ (|Reference| (|OrderedCompletion| (|Integer|))) (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{makeSeries(refer,str)} creates a power series from the reference \\spad{refer} and the stream \\spad{str}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|)))) (|HasCategory| (-570) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))))
(-602 |Coef|)
((|constructor| (NIL "Internal package for dense Taylor series. This is an internal Taylor series type in which Taylor series are represented by a \\spadtype{Stream} of \\spadtype{Ring} elements. For univariate series,{} the \\spad{Stream} elements are the Taylor coefficients. For multivariate series,{} the \\spad{n}th Stream element is a form of degree \\spad{n} in the power series variables.")) (* (($ $ (|Integer|)) "\\spad{x*i} returns the product of integer \\spad{i} and the series \\spad{x}.")) (|order| (((|NonNegativeInteger|) $ (|NonNegativeInteger|)) "\\spad{order(x,n)} returns the minimum of \\spad{n} and the order of \\spad{x}.") (((|NonNegativeInteger|) $) "\\spad{order(x)} returns the order of a power series \\spad{x},{} \\indented{1}{\\spadignore{i.e.} the degree of the first non-zero term of the series.}")) (|pole?| (((|Boolean|) $) "\\spad{pole?(x)} tests if the series \\spad{x} has a pole. \\indented{1}{Note: this is \\spad{false} when \\spad{x} is a Taylor series.}")) (|series| (($ (|Stream| |#1|)) "\\spad{series(s)} creates a power series from a stream of \\indented{1}{ring elements.} \\indented{1}{For univariate series types,{} the stream \\spad{s} should be a stream} \\indented{1}{of Taylor coefficients. For multivariate series types,{} the} \\indented{1}{stream \\spad{s} should be a stream of forms the \\spad{n}th element} \\indented{1}{of which is a} \\indented{1}{form of degree \\spad{n} in the power series variables.}")) (|coefficients| (((|Stream| |#1|) $) "\\spad{coefficients(x)} returns a stream of ring elements. \\indented{1}{When \\spad{x} is a univariate series,{} this is a stream of Taylor} \\indented{1}{coefficients. When \\spad{x} is a multivariate series,{} the} \\indented{1}{\\spad{n}th element of the stream is a form of} \\indented{1}{degree \\spad{n} in the power series variables.}")))
-(((-4450 "*") |has| |#1| (-562)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-562)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-562))))
(-603)
((|constructor| (NIL "This domain provides representations for internal type form.")) (|mappingMode| (($ $ (|List| $)) "\\spad{mappingMode(r,ts)} returns a mapping mode with return mode \\spad{r},{} and parameter modes \\spad{ts}.")) (|categoryMode| (($) "\\spad{categoryMode} is a constant mode denoting Category.")) (|voidMode| (($) "\\spad{voidMode} is a constant mode denoting Void.")) (|noValueMode| (($) "\\spad{noValueMode} is a constant mode that indicates that the value of an expression is to be ignored.")) (|jokerMode| (($) "\\spad{jokerMode} is a constant that stands for any mode in a type inference context")))
@@ -2362,12 +2362,12 @@ NIL
NIL
(-608 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#1| (QUOTE (-1058))) (-12 (|HasCategory| |#1| (QUOTE (-1011))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-609 S |Index| |Entry|)
((|constructor| (NIL "An indexed aggregate is a many-to-one mapping of indices to entries. For example,{} a one-dimensional-array is an indexed aggregate where the index is an integer. Also,{} a table is an indexed aggregate where the indices and entries may have any type.")) (|swap!| (((|Void|) $ |#2| |#2|) "\\spad{swap!(u,i,j)} interchanges elements \\spad{i} and \\spad{j} of aggregate \\spad{u}. No meaningful value is returned.")) (|fill!| (($ $ |#3|) "\\spad{fill!(u,x)} replaces each entry in aggregate \\spad{u} by \\spad{x}. The modified \\spad{u} is returned as value.")) (|first| ((|#3| $) "\\spad{first(u)} returns the first element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{first([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = \\spad{x}}. Error: if \\spad{u} is empty.")) (|minIndex| ((|#2| $) "\\spad{minIndex(u)} returns the minimum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{minIndex(a) = reduce(min,{}[\\spad{i} for \\spad{i} in indices a])}; for lists,{} \\axiom{minIndex(a) = 1}.")) (|maxIndex| ((|#2| $) "\\spad{maxIndex(u)} returns the maximum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{maxIndex(\\spad{u}) = reduce(max,{}[\\spad{i} for \\spad{i} in indices \\spad{u}])}; if \\spad{u} is a list,{} \\axiom{maxIndex(\\spad{u}) = \\#u}.")) (|entry?| (((|Boolean|) |#3| $) "\\spad{entry?(x,u)} tests if \\spad{x} equals \\axiom{\\spad{u} . \\spad{i}} for some index \\spad{i}.")) (|indices| (((|List| |#2|) $) "\\spad{indices(u)} returns a list of indices of aggregate \\spad{u} in no particular order.")) (|index?| (((|Boolean|) |#2| $) "\\spad{index?(i,u)} tests if \\spad{i} is an index of aggregate \\spad{u}.")) (|entries| (((|List| |#3|) $) "\\spad{entries(u)} returns a list of all the entries of aggregate \\spad{u} in no assumed order.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)) (|HasCategory| |#2| (QUOTE (-856))) (|HasAttribute| |#1| (QUOTE -4448)) (|HasCategory| |#3| (QUOTE (-1109))))
+((|HasAttribute| |#1| (QUOTE -4450)) (|HasCategory| |#2| (QUOTE (-856))) (|HasAttribute| |#1| (QUOTE -4449)) (|HasCategory| |#3| (QUOTE (-1109))))
(-610 |Index| |Entry|)
((|constructor| (NIL "An indexed aggregate is a many-to-one mapping of indices to entries. For example,{} a one-dimensional-array is an indexed aggregate where the index is an integer. Also,{} a table is an indexed aggregate where the indices and entries may have any type.")) (|swap!| (((|Void|) $ |#1| |#1|) "\\spad{swap!(u,i,j)} interchanges elements \\spad{i} and \\spad{j} of aggregate \\spad{u}. No meaningful value is returned.")) (|fill!| (($ $ |#2|) "\\spad{fill!(u,x)} replaces each entry in aggregate \\spad{u} by \\spad{x}. The modified \\spad{u} is returned as value.")) (|first| ((|#2| $) "\\spad{first(u)} returns the first element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{first([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = \\spad{x}}. Error: if \\spad{u} is empty.")) (|minIndex| ((|#1| $) "\\spad{minIndex(u)} returns the minimum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{minIndex(a) = reduce(min,{}[\\spad{i} for \\spad{i} in indices a])}; for lists,{} \\axiom{minIndex(a) = 1}.")) (|maxIndex| ((|#1| $) "\\spad{maxIndex(u)} returns the maximum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{maxIndex(\\spad{u}) = reduce(max,{}[\\spad{i} for \\spad{i} in indices \\spad{u}])}; if \\spad{u} is a list,{} \\axiom{maxIndex(\\spad{u}) = \\#u}.")) (|entry?| (((|Boolean|) |#2| $) "\\spad{entry?(x,u)} tests if \\spad{x} equals \\axiom{\\spad{u} . \\spad{i}} for some index \\spad{i}.")) (|indices| (((|List| |#1|) $) "\\spad{indices(u)} returns a list of indices of aggregate \\spad{u} in no particular order.")) (|index?| (((|Boolean|) |#1| $) "\\spad{index?(i,u)} tests if \\spad{i} is an index of aggregate \\spad{u}.")) (|entries| (((|List| |#2|) $) "\\spad{entries(u)} returns a list of all the entries of aggregate \\spad{u} in no assumed order.")))
NIL
@@ -2382,19 +2382,19 @@ NIL
NIL
(-613 R A)
((|constructor| (NIL "\\indented{1}{AssociatedJordanAlgebra takes an algebra \\spad{A} and uses \\spadfun{*\\$A}} \\indented{1}{to define the new multiplications \\spad{a*b := (a *\\$A b + b *\\$A a)/2}} \\indented{1}{(anticommutator).} \\indented{1}{The usual notation \\spad{{a,b}_+} cannot be used due to} \\indented{1}{restrictions in the current language.} \\indented{1}{This domain only gives a Jordan algebra if the} \\indented{1}{Jordan-identity \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} holds} \\indented{1}{for all \\spad{a},{}\\spad{b},{}\\spad{c} in \\spad{A}.} \\indented{1}{This relation can be checked by} \\indented{1}{\\spadfun{jordanAdmissible?()\\$A}.} \\blankline If the underlying algebra is of type \\spadtype{FramedNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank,{} together with a fixed \\spad{R}-module basis),{} then the same is \\spad{true} for the associated Jordan algebra. Moreover,{} if the underlying algebra is of type \\spadtype{FiniteRankNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank),{} then the same \\spad{true} for the associated Jordan algebra.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} coerces the element \\spad{a} of the algebra \\spad{A} to an element of the Jordan algebra \\spadtype{AssociatedJordanAlgebra}(\\spad{R},{}A).")))
-((-4445 -2740 (-1765 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4443 . T) (-4442 . T))
+((-4446 -2740 (-1765 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4444 . T) (-4443 . T))
((-2740 (|HasCategory| |#2| (LIST (QUOTE -372) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#2| (LIST (QUOTE -372) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -372) (|devaluate| |#1|))))
(-614 |Entry|)
((|constructor| (NIL "This domain allows a random access file to be viewed both as a table and as a file object.")) (|pack!| (($ $) "\\spad{pack!(f)} reorganizes the file \\spad{f} on disk to recover unused space.")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| (-1168) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| (-1168) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))))
(-615 S |Key| |Entry|)
((|constructor| (NIL "A keyed dictionary is a dictionary of key-entry pairs for which there is a unique entry for each key.")) (|search| (((|Union| |#3| "failed") |#2| $) "\\spad{search(k,t)} searches the table \\spad{t} for the key \\spad{k},{} returning the entry stored in \\spad{t} for key \\spad{k}. If \\spad{t} has no such key,{} \\axiom{search(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|remove!| (((|Union| |#3| "failed") |#2| $) "\\spad{remove!(k,t)} searches the table \\spad{t} for the key \\spad{k} removing (and return) the entry if there. If \\spad{t} has no such key,{} \\axiom{remove!(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|keys| (((|List| |#2|) $) "\\spad{keys(t)} returns the list the keys in table \\spad{t}.")) (|key?| (((|Boolean|) |#2| $) "\\spad{key?(k,t)} tests if \\spad{k} is a key in table \\spad{t}.")))
NIL
NIL
(-616 |Key| |Entry|)
((|constructor| (NIL "A keyed dictionary is a dictionary of key-entry pairs for which there is a unique entry for each key.")) (|search| (((|Union| |#2| "failed") |#1| $) "\\spad{search(k,t)} searches the table \\spad{t} for the key \\spad{k},{} returning the entry stored in \\spad{t} for key \\spad{k}. If \\spad{t} has no such key,{} \\axiom{search(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|remove!| (((|Union| |#2| "failed") |#1| $) "\\spad{remove!(k,t)} searches the table \\spad{t} for the key \\spad{k} removing (and return) the entry if there. If \\spad{t} has no such key,{} \\axiom{remove!(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|keys| (((|List| |#1|) $) "\\spad{keys(t)} returns the list the keys in table \\spad{t}.")) (|key?| (((|Boolean|) |#1| $) "\\spad{key?(k,t)} tests if \\spad{k} is a key in table \\spad{t}.")))
-((-4449 . T))
+((-4450 . T))
NIL
(-617 R S)
((|constructor| (NIL "This package exports some auxiliary functions on kernels")) (|constantIfCan| (((|Union| |#1| "failed") (|Kernel| |#2|)) "\\spad{constantIfCan(k)} \\undocumented")) (|constantKernel| (((|Kernel| |#2|) |#1|) "\\spad{constantKernel(r)} \\undocumented")))
@@ -2434,11 +2434,11 @@ NIL
NIL
(-626 R)
((|constructor| (NIL "The category of all left algebras over an arbitrary ring.")) (|coerce| (($ |#1|) "\\spad{coerce(r)} returns \\spad{r} * 1 where 1 is the identity of the left algebra.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-627 A R S)
((|constructor| (NIL "LocalAlgebra produces the localization of an algebra,{} \\spadignore{i.e.} fractions whose numerators come from some \\spad{R} algebra.")) (|denom| ((|#3| $) "\\spad{denom x} returns the denominator of \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer x} returns the numerator of \\spad{x}.")) (/ (($ |#1| |#3|) "\\spad{a / d} divides the element \\spad{a} by \\spad{d}.") (($ $ |#3|) "\\spad{x / d} divides the element \\spad{x} by \\spad{d}.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-854))))
(-628 R -1674)
((|constructor| (NIL "This package computes the forward Laplace Transform.")) (|laplace| ((|#2| |#2| (|Symbol|) (|Symbol|)) "\\spad{laplace(f, t, s)} returns the Laplace transform of \\spad{f(t)} using \\spad{s} as the new variable. This is \\spad{integral(exp(-s*t)*f(t), t = 0..\\%plusInfinity)}. Returns the formal object \\spad{laplace(f, t, s)} if it cannot compute the transform.")))
@@ -2446,7 +2446,7 @@ NIL
NIL
(-629 R UP)
((|constructor| (NIL "\\indented{1}{Univariate polynomials with negative and positive exponents.} Author: Manuel Bronstein Date Created: May 1988 Date Last Updated: 26 Apr 1990")) (|separate| (((|Record| (|:| |polyPart| $) (|:| |fracPart| (|Fraction| |#2|))) (|Fraction| |#2|)) "\\spad{separate(x)} \\undocumented")) (|monomial| (($ |#1| (|Integer|)) "\\spad{monomial(x,n)} \\undocumented")) (|coefficient| ((|#1| $ (|Integer|)) "\\spad{coefficient(x,n)} \\undocumented")) (|trailingCoefficient| ((|#1| $) "\\spad{trailingCoefficient }\\undocumented")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient }\\undocumented")) (|reductum| (($ $) "\\spad{reductum(x)} \\undocumented")) (|order| (((|Integer|) $) "\\spad{order(x)} \\undocumented")) (|degree| (((|Integer|) $) "\\spad{degree(x)} \\undocumented")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} \\undocumented")))
-((-4443 . T) (-4442 . T) ((-4450 "*") . T) (-4441 . T) (-4445 . T))
+((-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4442 . T) (-4446 . T))
((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))
(-630 R E V P TS ST)
((|constructor| (NIL "A package for solving polynomial systems by means of Lazard triangular sets [1]. This package provides two operations. One for solving in the sense of the regular zeros,{} and the other for solving in the sense of the Zariski closure. Both produce square-free regular sets. Moreover,{} the decompositions do not contain any redundant component. However,{} only zero-dimensional regular sets are normalized,{} since normalization may be time consumming in positive dimension. The decomposition process is that of [2].\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| |#6|) (|List| |#4|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?)} has the same specifications as \\axiomOpFrom{zeroSetSplit(\\spad{lp},{}clos?)}{RegularTriangularSetCategory}.")) (|normalizeIfCan| ((|#6| |#6|) "\\axiom{normalizeIfCan(\\spad{ts})} returns \\axiom{\\spad{ts}} in an normalized shape if \\axiom{\\spad{ts}} is zero-dimensional.")))
@@ -2462,7 +2462,7 @@ NIL
NIL
(-633 |VarSet| R |Order|)
((|constructor| (NIL "Management of the Lie Group associated with a free nilpotent Lie algebra. Every Lie bracket with length greater than \\axiom{Order} are assumed to be null. The implementation inherits from the \\spadtype{XPBWPolynomial} domain constructor: Lyndon coordinates are exponential coordinates of the second kind. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|identification| (((|List| (|Equation| |#2|)) $ $) "\\axiom{identification(\\spad{g},{}\\spad{h})} returns the list of equations \\axiom{g_i = h_i},{} where \\axiom{g_i} (resp. \\axiom{h_i}) are exponential coordinates of \\axiom{\\spad{g}} (resp. \\axiom{\\spad{h}}).")) (|LyndonCoordinates| (((|List| (|Record| (|:| |k| (|LyndonWord| |#1|)) (|:| |c| |#2|))) $) "\\axiom{LyndonCoordinates(\\spad{g})} returns the exponential coordinates of \\axiom{\\spad{g}}.")) (|LyndonBasis| (((|List| (|LiePolynomial| |#1| |#2|)) (|List| |#1|)) "\\axiom{LyndonBasis(\\spad{lv})} returns the Lyndon basis of the nilpotent free Lie algebra.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{g})} returns the list of variables of \\axiom{\\spad{g}}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{g})} is the mirror of the internal representation of \\axiom{\\spad{g}}.")) (|coerce| (((|XPBWPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{g})} returns the internal representation of \\axiom{\\spad{g}}.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{g})} returns the internal representation of \\axiom{\\spad{g}}.")) (|ListOfTerms| (((|List| (|Record| (|:| |k| (|PoincareBirkhoffWittLyndonBasis| |#1|)) (|:| |c| |#2|))) $) "\\axiom{ListOfTerms(\\spad{p})} returns the internal representation of \\axiom{\\spad{p}}.")) (|log| (((|LiePolynomial| |#1| |#2|) $) "\\axiom{log(\\spad{p})} returns the logarithm of \\axiom{\\spad{p}}.")) (|exp| (($ (|LiePolynomial| |#1| |#2|)) "\\axiom{exp(\\spad{p})} returns the exponential of \\axiom{\\spad{p}}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-634 R |ls|)
((|constructor| (NIL "A package for solving polynomial systems with finitely many solutions. The decompositions are given by means of regular triangular sets. The computations use lexicographical Groebner bases. The main operations are \\axiomOpFrom{lexTriangular}{LexTriangularPackage} and \\axiomOpFrom{squareFreeLexTriangular}{LexTriangularPackage}. The second one provide decompositions by means of square-free regular triangular sets. Both are based on the {\\em lexTriangular} method described in [1]. They differ from the algorithm described in [2] by the fact that multiciplities of the roots are not kept. With the \\axiomOpFrom{squareFreeLexTriangular}{LexTriangularPackage} operation all multiciplities are removed. With the other operation some multiciplities may remain. Both operations admit an optional argument to produce normalized triangular sets. \\newline")) (|zeroSetSplit| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#2|)) (|OrderedVariableList| |#2|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{} norm?)} decomposes the variety associated with \\axiom{\\spad{lp}} into square-free regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{} norm?)} decomposes the variety associated with \\axiom{\\spad{lp}} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|squareFreeLexTriangular| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#2|)) (|OrderedVariableList| |#2|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{squareFreeLexTriangular(base,{} norm?)} decomposes the variety associated with \\axiom{base} into square-free regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{base} needs to be a lexicographical Groebner basis of a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|lexTriangular| (((|List| (|RegularChain| |#1| |#2|)) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{lexTriangular(base,{} norm?)} decomposes the variety associated with \\axiom{base} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{base} needs to be a lexicographical Groebner basis of a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|groebner| (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{groebner(\\spad{lp})} returns the lexicographical Groebner basis of \\axiom{\\spad{lp}}. If \\axiom{\\spad{lp}} generates a zero-dimensional ideal then the {\\em FGLM} strategy is used,{} otherwise the {\\em Sugar} strategy is used.")) (|fglmIfCan| (((|Union| (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) "failed") (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{fglmIfCan(\\spad{lp})} returns the lexicographical Groebner basis of \\axiom{\\spad{lp}} by using the {\\em FGLM} strategy,{} if \\axiom{zeroDimensional?(\\spad{lp})} holds .")) (|zeroDimensional?| (((|Boolean|) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{zeroDimensional?(\\spad{lp})} returns \\spad{true} iff \\axiom{\\spad{lp}} generates a zero-dimensional ideal \\spad{w}.\\spad{r}.\\spad{t}. the variables involved in \\axiom{\\spad{lp}}.")))
@@ -2482,19 +2482,19 @@ NIL
NIL
(-638)
((|constructor| (NIL "This domain provides a simple way to save values in files.")) (|setelt| (((|Any|) $ (|Symbol|) (|Any|)) "\\spad{lib.k := v} saves the value \\spad{v} in the library \\spad{lib}. It can later be extracted using the key \\spad{k}.")) (|elt| (((|Any|) $ (|Symbol|)) "\\spad{elt(lib,k)} or \\spad{lib}.\\spad{k} extracts the value corresponding to the key \\spad{k} from the library \\spad{lib}.")) (|pack!| (($ $) "\\spad{pack!(f)} reorganizes the file \\spad{f} on disk to recover unused space.")) (|library| (($ (|FileName|)) "\\spad{library(ln)} creates a new library file.")))
-((-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2223) (QUOTE (-52))))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-1168) (QUOTE (-856))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (QUOTE (-1109))))
+((-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2224) (QUOTE (-52))))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-1168) (QUOTE (-856))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (QUOTE (-1109))))
(-639 S R)
((|constructor| (NIL "\\axiom{JacobiIdentity} means that \\axiom{[\\spad{x},{}[\\spad{y},{}\\spad{z}]]+[\\spad{y},{}[\\spad{z},{}\\spad{x}]]+[\\spad{z},{}[\\spad{x},{}\\spad{y}]] = 0} holds.")) (/ (($ $ |#2|) "\\axiom{\\spad{x/r}} returns the division of \\axiom{\\spad{x}} by \\axiom{\\spad{r}}.")) (|construct| (($ $ $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket of \\axiom{\\spad{x}} and \\axiom{\\spad{y}}.")))
NIL
((|HasCategory| |#2| (QUOTE (-368))))
(-640 R)
((|constructor| (NIL "\\axiom{JacobiIdentity} means that \\axiom{[\\spad{x},{}[\\spad{y},{}\\spad{z}]]+[\\spad{y},{}[\\spad{z},{}\\spad{x}]]+[\\spad{z},{}[\\spad{x},{}\\spad{y}]] = 0} holds.")) (/ (($ $ |#1|) "\\axiom{\\spad{x/r}} returns the division of \\axiom{\\spad{x}} by \\axiom{\\spad{r}}.")) (|construct| (($ $ $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket of \\axiom{\\spad{x}} and \\axiom{\\spad{y}}.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4443 . T) (-4442 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4444 . T) (-4443 . T))
NIL
(-641 R A)
((|constructor| (NIL "AssociatedLieAlgebra takes an algebra \\spad{A} and uses \\spadfun{*\\$A} to define the Lie bracket \\spad{a*b := (a *\\$A b - b *\\$A a)} (commutator). Note that the notation \\spad{[a,b]} cannot be used due to restrictions of the current compiler. This domain only gives a Lie algebra if the Jacobi-identity \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} holds for all \\spad{a},{}\\spad{b},{}\\spad{c} in \\spad{A}. This relation can be checked by \\spad{lieAdmissible?()\\$A}. \\blankline If the underlying algebra is of type \\spadtype{FramedNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank,{} together with a fixed \\spad{R}-module basis),{} then the same is \\spad{true} for the associated Lie algebra. Also,{} if the underlying algebra is of type \\spadtype{FiniteRankNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank),{} then the same is \\spad{true} for the associated Lie algebra.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} coerces the element \\spad{a} of the algebra \\spad{A} to an element of the Lie algebra \\spadtype{AssociatedLieAlgebra}(\\spad{R},{}A).")))
-((-4445 -2740 (-1765 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4443 . T) (-4442 . T))
+((-4446 -2740 (-1765 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4444 . T) (-4443 . T))
((-2740 (|HasCategory| |#2| (LIST (QUOTE -372) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#2| (LIST (QUOTE -372) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -372) (|devaluate| |#1|))))
(-642 R FE)
((|constructor| (NIL "PowerSeriesLimitPackage implements limits of expressions in one or more variables as one of the variables approaches a limiting value. Included are two-sided limits,{} left- and right- hand limits,{} and limits at plus or minus infinity.")) (|complexLimit| (((|Union| (|OnePointCompletion| |#2|) "failed") |#2| (|Equation| (|OnePointCompletion| |#2|))) "\\spad{complexLimit(f(x),x = a)} computes the complex limit \\spad{lim(x -> a,f(x))}.")) (|limit| (((|Union| (|OrderedCompletion| |#2|) "failed") |#2| (|Equation| |#2|) (|String|)) "\\spad{limit(f(x),x=a,\"left\")} computes the left hand real limit \\spad{lim(x -> a-,f(x))}; \\spad{limit(f(x),x=a,\"right\")} computes the right hand real limit \\spad{lim(x -> a+,f(x))}.") (((|Union| (|OrderedCompletion| |#2|) (|Record| (|:| |leftHandLimit| (|Union| (|OrderedCompletion| |#2|) "failed")) (|:| |rightHandLimit| (|Union| (|OrderedCompletion| |#2|) "failed"))) "failed") |#2| (|Equation| (|OrderedCompletion| |#2|))) "\\spad{limit(f(x),x = a)} computes the real limit \\spad{lim(x -> a,f(x))}.")))
@@ -2507,10 +2507,10 @@ NIL
(-644 S R)
((|constructor| (NIL "Test for linear dependence.")) (|solveLinear| (((|Union| (|Vector| (|Fraction| |#1|)) "failed") (|Vector| |#2|) |#2|) "\\spad{solveLinear([v1,...,vn], u)} returns \\spad{[c1,...,cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such \\spad{ci}\\spad{'s} exist in the quotient field of \\spad{S}.") (((|Union| (|Vector| |#1|) "failed") (|Vector| |#2|) |#2|) "\\spad{solveLinear([v1,...,vn], u)} returns \\spad{[c1,...,cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such \\spad{ci}\\spad{'s} exist in \\spad{S}.")) (|linearDependence| (((|Union| (|Vector| |#1|) "failed") (|Vector| |#2|)) "\\spad{linearDependence([v1,...,vn])} returns \\spad{[c1,...,cn]} if \\spad{c1*v1 + ... + cn*vn = 0} and not all the \\spad{ci}\\spad{'s} are 0,{} \"failed\" if the \\spad{vi}\\spad{'s} are linearly independent over \\spad{S}.")) (|linearlyDependent?| (((|Boolean|) (|Vector| |#2|)) "\\spad{linearlyDependent?([v1,...,vn])} returns \\spad{true} if the \\spad{vi}\\spad{'s} are linearly dependent over \\spad{S},{} \\spad{false} otherwise.")))
NIL
-((-1754 (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-368))))
+((-1753 (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-368))))
(-645 R)
((|constructor| (NIL "An extension ring with an explicit linear dependence test.")) (|reducedSystem| (((|Record| (|:| |mat| (|Matrix| |#1|)) (|:| |vec| (|Vector| |#1|))) (|Matrix| $) (|Vector| $)) "\\spad{reducedSystem(A, v)} returns a matrix \\spad{B} and a vector \\spad{w} such that \\spad{A x = v} and \\spad{B x = w} have the same solutions in \\spad{R}.") (((|Matrix| |#1|) (|Matrix| $)) "\\spad{reducedSystem(A)} returns a matrix \\spad{B} such that \\spad{A x = 0} and \\spad{B x = 0} have the same solutions in \\spad{R}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-646 R)
((|constructor| (NIL "\\indented{2}{A set is an \\spad{R}-linear set if it is stable by dilation} \\indented{2}{by elements in the ring \\spad{R}.\\space{2}This category differs from} \\indented{2}{\\spad{Module} in that no other assumption (such as addition)} \\indented{2}{is made about the underlying set.} See Also: LeftLinearSet,{} RightLinearSet.")))
@@ -2530,7 +2530,7 @@ NIL
NIL
(-650 S)
((|constructor| (NIL "\\spadtype{List} implements singly-linked lists that are addressable by indices; the index of the first element is 1. In addition to the operations provided by \\spadtype{IndexedList},{} this constructor provides some LISP-like functions such as \\spadfun{null} and \\spadfun{cons}.")) (|setDifference| (($ $ $) "\\spad{setDifference(u1,u2)} returns a list of the elements of \\spad{u1} that are not also in \\spad{u2}. The order of elements in the resulting list is unspecified.")) (|setIntersection| (($ $ $) "\\spad{setIntersection(u1,u2)} returns a list of the elements that lists \\spad{u1} and \\spad{u2} have in common. The order of elements in the resulting list is unspecified.")) (|setUnion| (($ $ $) "\\spad{setUnion(u1,u2)} appends the two lists \\spad{u1} and \\spad{u2},{} then removes all duplicates. The order of elements in the resulting list is unspecified.")) (|append| (($ $ $) "\\spad{append(u1,u2)} appends the elements of list \\spad{u1} onto the front of list \\spad{u2}. This new list and \\spad{u2} will share some structure.")) (|cons| (($ |#1| $) "\\spad{cons(element,u)} appends \\spad{element} onto the front of list \\spad{u} and returns the new list. This new list and the old one will share some structure.")) (|null| (((|Boolean|) $) "\\spad{null(u)} tests if list \\spad{u} is the empty list.")) (|nil| (($) "\\spad{nil} is the empty list.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-834))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-651 T$)
((|constructor| (NIL "This domain represents AST for Spad literals.")))
@@ -2542,7 +2542,7 @@ NIL
NIL
(-653 S)
((|substitute| (($ |#1| |#1| $) "\\spad{substitute(x,y,d)} replace \\spad{x}\\spad{'s} with \\spad{y}\\spad{'s} in dictionary \\spad{d}.")) (|duplicates?| (((|Boolean|) $) "\\spad{duplicates?(d)} tests if dictionary \\spad{d} has duplicate entries.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-654 R)
((|constructor| (NIL "The category of left modules over an \\spad{rng} (ring not necessarily with unit). This is an abelian group which supports left multiplation by elements of the \\spad{rng}. \\blankline")))
@@ -2555,7 +2555,7 @@ NIL
(-656 A S)
((|constructor| (NIL "A linear aggregate is an aggregate whose elements are indexed by integers. Examples of linear aggregates are strings,{} lists,{} and arrays. Most of the exported operations for linear aggregates are non-destructive but are not always efficient for a particular aggregate. For example,{} \\spadfun{concat} of two lists needs only to copy its first argument,{} whereas \\spadfun{concat} of two arrays needs to copy both arguments. Most of the operations exported here apply to infinite objects (\\spadignore{e.g.} streams) as well to finite ones. For finite linear aggregates,{} see \\spadtype{FiniteLinearAggregate}.")) (|setelt| ((|#2| $ (|UniversalSegment| (|Integer|)) |#2|) "\\spad{setelt(u,i..j,x)} (also written: \\axiom{\\spad{u}(\\spad{i}..\\spad{j}) \\spad{:=} \\spad{x}}) destructively replaces each element in the segment \\axiom{\\spad{u}(\\spad{i}..\\spad{j})} by \\spad{x}. The value \\spad{x} is returned. Note: \\spad{u} is destructively change so that \\axiom{\\spad{u}.\\spad{k} \\spad{:=} \\spad{x} for \\spad{k} in \\spad{i}..\\spad{j}}; its length remains unchanged.")) (|insert| (($ $ $ (|Integer|)) "\\spad{insert(v,u,k)} returns a copy of \\spad{u} having \\spad{v} inserted beginning at the \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{v},{}\\spad{u},{}\\spad{k}) = concat( \\spad{u}(0..\\spad{k}-1),{} \\spad{v},{} \\spad{u}(\\spad{k}..) )}.") (($ |#2| $ (|Integer|)) "\\spad{insert(x,u,i)} returns a copy of \\spad{u} having \\spad{x} as its \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{x},{}a,{}\\spad{k}) = concat(concat(a(0..\\spad{k}-1),{}\\spad{x}),{}a(\\spad{k}..))}.")) (|delete| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete(u,i..j)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th through \\axiom{\\spad{j}}th element deleted. Note: \\axiom{delete(a,{}\\spad{i}..\\spad{j}) = concat(a(0..\\spad{i}-1),{}a(\\spad{j+1}..))}.") (($ $ (|Integer|)) "\\spad{delete(u,i)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th element deleted. Note: for lists,{} \\axiom{delete(a,{}\\spad{i}) \\spad{==} concat(a(0..\\spad{i} - 1),{}a(\\spad{i} + 1,{}..))}.")) (|elt| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{elt(u,i..j)} (also written: \\axiom{a(\\spad{i}..\\spad{j})}) returns the aggregate of elements \\axiom{\\spad{u}} for \\spad{k} from \\spad{i} to \\spad{j} in that order. Note: in general,{} \\axiom{a.\\spad{s} = [a.\\spad{k} for \\spad{i} in \\spad{s}]}.")) (|map| (($ (|Mapping| |#2| |#2| |#2|) $ $) "\\spad{map(f,u,v)} returns a new collection \\spad{w} with elements \\axiom{\\spad{z} = \\spad{f}(\\spad{x},{}\\spad{y})} for corresponding elements \\spad{x} and \\spad{y} from \\spad{u} and \\spad{v}. Note: for linear aggregates,{} \\axiom{\\spad{w}.\\spad{i} = \\spad{f}(\\spad{u}.\\spad{i},{}\\spad{v}.\\spad{i})}.")) (|concat| (($ (|List| $)) "\\spad{concat(u)},{} where \\spad{u} is a lists of aggregates \\axiom{[a,{}\\spad{b},{}...,{}\\spad{c}]},{} returns a single aggregate consisting of the elements of \\axiom{a} followed by those of \\spad{b} followed ... by the elements of \\spad{c}. Note: \\axiom{concat(a,{}\\spad{b},{}...,{}\\spad{c}) = concat(a,{}concat(\\spad{b},{}...,{}\\spad{c}))}.") (($ $ $) "\\spad{concat(u,v)} returns an aggregate consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} then \\axiom{\\spad{w}.\\spad{i} = \\spad{u}.\\spad{i} for \\spad{i} in indices \\spad{u}} and \\axiom{\\spad{w}.(\\spad{j} + maxIndex \\spad{u}) = \\spad{v}.\\spad{j} for \\spad{j} in indices \\spad{v}}.") (($ |#2| $) "\\spad{concat(x,u)} returns aggregate \\spad{u} with additional element at the front. Note: for lists: \\axiom{concat(\\spad{x},{}\\spad{u}) \\spad{==} concat([\\spad{x}],{}\\spad{u})}.") (($ $ |#2|) "\\spad{concat(u,x)} returns aggregate \\spad{u} with additional element \\spad{x} at the end. Note: for lists,{} \\axiom{concat(\\spad{u},{}\\spad{x}) \\spad{==} concat(\\spad{u},{}[\\spad{x}])}")) (|new| (($ (|NonNegativeInteger|) |#2|) "\\spad{new(n,x)} returns \\axiom{fill!(new \\spad{n},{}\\spad{x})}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)))
+((|HasAttribute| |#1| (QUOTE -4450)))
(-657 S)
((|constructor| (NIL "A linear aggregate is an aggregate whose elements are indexed by integers. Examples of linear aggregates are strings,{} lists,{} and arrays. Most of the exported operations for linear aggregates are non-destructive but are not always efficient for a particular aggregate. For example,{} \\spadfun{concat} of two lists needs only to copy its first argument,{} whereas \\spadfun{concat} of two arrays needs to copy both arguments. Most of the operations exported here apply to infinite objects (\\spadignore{e.g.} streams) as well to finite ones. For finite linear aggregates,{} see \\spadtype{FiniteLinearAggregate}.")) (|setelt| ((|#1| $ (|UniversalSegment| (|Integer|)) |#1|) "\\spad{setelt(u,i..j,x)} (also written: \\axiom{\\spad{u}(\\spad{i}..\\spad{j}) \\spad{:=} \\spad{x}}) destructively replaces each element in the segment \\axiom{\\spad{u}(\\spad{i}..\\spad{j})} by \\spad{x}. The value \\spad{x} is returned. Note: \\spad{u} is destructively change so that \\axiom{\\spad{u}.\\spad{k} \\spad{:=} \\spad{x} for \\spad{k} in \\spad{i}..\\spad{j}}; its length remains unchanged.")) (|insert| (($ $ $ (|Integer|)) "\\spad{insert(v,u,k)} returns a copy of \\spad{u} having \\spad{v} inserted beginning at the \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{v},{}\\spad{u},{}\\spad{k}) = concat( \\spad{u}(0..\\spad{k}-1),{} \\spad{v},{} \\spad{u}(\\spad{k}..) )}.") (($ |#1| $ (|Integer|)) "\\spad{insert(x,u,i)} returns a copy of \\spad{u} having \\spad{x} as its \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{x},{}a,{}\\spad{k}) = concat(concat(a(0..\\spad{k}-1),{}\\spad{x}),{}a(\\spad{k}..))}.")) (|delete| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete(u,i..j)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th through \\axiom{\\spad{j}}th element deleted. Note: \\axiom{delete(a,{}\\spad{i}..\\spad{j}) = concat(a(0..\\spad{i}-1),{}a(\\spad{j+1}..))}.") (($ $ (|Integer|)) "\\spad{delete(u,i)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th element deleted. Note: for lists,{} \\axiom{delete(a,{}\\spad{i}) \\spad{==} concat(a(0..\\spad{i} - 1),{}a(\\spad{i} + 1,{}..))}.")) (|elt| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{elt(u,i..j)} (also written: \\axiom{a(\\spad{i}..\\spad{j})}) returns the aggregate of elements \\axiom{\\spad{u}} for \\spad{k} from \\spad{i} to \\spad{j} in that order. Note: in general,{} \\axiom{a.\\spad{s} = [a.\\spad{k} for \\spad{i} in \\spad{s}]}.")) (|map| (($ (|Mapping| |#1| |#1| |#1|) $ $) "\\spad{map(f,u,v)} returns a new collection \\spad{w} with elements \\axiom{\\spad{z} = \\spad{f}(\\spad{x},{}\\spad{y})} for corresponding elements \\spad{x} and \\spad{y} from \\spad{u} and \\spad{v}. Note: for linear aggregates,{} \\axiom{\\spad{w}.\\spad{i} = \\spad{f}(\\spad{u}.\\spad{i},{}\\spad{v}.\\spad{i})}.")) (|concat| (($ (|List| $)) "\\spad{concat(u)},{} where \\spad{u} is a lists of aggregates \\axiom{[a,{}\\spad{b},{}...,{}\\spad{c}]},{} returns a single aggregate consisting of the elements of \\axiom{a} followed by those of \\spad{b} followed ... by the elements of \\spad{c}. Note: \\axiom{concat(a,{}\\spad{b},{}...,{}\\spad{c}) = concat(a,{}concat(\\spad{b},{}...,{}\\spad{c}))}.") (($ $ $) "\\spad{concat(u,v)} returns an aggregate consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} then \\axiom{\\spad{w}.\\spad{i} = \\spad{u}.\\spad{i} for \\spad{i} in indices \\spad{u}} and \\axiom{\\spad{w}.(\\spad{j} + maxIndex \\spad{u}) = \\spad{v}.\\spad{j} for \\spad{j} in indices \\spad{v}}.") (($ |#1| $) "\\spad{concat(x,u)} returns aggregate \\spad{u} with additional element at the front. Note: for lists: \\axiom{concat(\\spad{x},{}\\spad{u}) \\spad{==} concat([\\spad{x}],{}\\spad{u})}.") (($ $ |#1|) "\\spad{concat(u,x)} returns aggregate \\spad{u} with additional element \\spad{x} at the end. Note: for lists,{} \\axiom{concat(\\spad{u},{}\\spad{x}) \\spad{==} concat(\\spad{u},{}[\\spad{x}])}")) (|new| (($ (|NonNegativeInteger|) |#1|) "\\spad{new(n,x)} returns \\axiom{fill!(new \\spad{n},{}\\spad{x})}.")))
NIL
@@ -2566,11 +2566,11 @@ NIL
NIL
(-659 A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator1} defines a ring of differential operators with coefficients in a differential ring A. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-368))))
(-660 A M)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator2} defines a ring of differential operators with coefficients in a differential ring A and acting on an A-module \\spad{M}. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|differentiate| (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-368))))
(-661 S A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorCategory} is the category of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|directSum| (($ $ $) "\\spad{directSum(a,b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}.")) (|symmetricSquare| (($ $) "\\spad{symmetricSquare(a)} computes \\spad{symmetricProduct(a,a)} using a more efficient method.")) (|symmetricPower| (($ $ (|NonNegativeInteger|)) "\\spad{symmetricPower(a,n)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}.")) (|symmetricProduct| (($ $ $) "\\spad{symmetricProduct(a,b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}.")) (|adjoint| (($ $) "\\spad{adjoint(a)} returns the adjoint operator of a.")) (D (($) "\\spad{D()} provides the operator corresponding to a derivation in the ring \\spad{A}.")))
@@ -2578,15 +2578,15 @@ NIL
((|HasCategory| |#2| (QUOTE (-368))))
(-662 A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorCategory} is the category of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|directSum| (($ $ $) "\\spad{directSum(a,b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}.")) (|symmetricSquare| (($ $) "\\spad{symmetricSquare(a)} computes \\spad{symmetricProduct(a,a)} using a more efficient method.")) (|symmetricPower| (($ $ (|NonNegativeInteger|)) "\\spad{symmetricPower(a,n)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}.")) (|symmetricProduct| (($ $ $) "\\spad{symmetricProduct(a,b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}.")) (|adjoint| (($ $) "\\spad{adjoint(a)} returns the adjoint operator of a.")) (D (($) "\\spad{D()} provides the operator corresponding to a derivation in the ring \\spad{A}.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-663 -1674 UP)
((|constructor| (NIL "\\spadtype{LinearOrdinaryDifferentialOperatorFactorizer} provides a factorizer for linear ordinary differential operators whose coefficients are rational functions.")) (|factor1| (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{factor1(a)} returns the factorisation of a,{} assuming that a has no first-order right factor.")) (|factor| (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{factor(a)} returns the factorisation of a.") (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{factor(a, zeros)} returns the factorisation of a. \\spad{zeros} is a zero finder in \\spad{UP}.")))
NIL
((|HasCategory| |#1| (QUOTE (-27))))
-(-664 A -2737)
+(-664 A -1541)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator} defines a ring of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-368))))
(-665 A L)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorsOps} provides symmetric products and sums for linear ordinary differential operators.")) (|directSum| ((|#2| |#2| |#2| (|Mapping| |#1| |#1|)) "\\spad{directSum(a,b,D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}. \\spad{D} is the derivation to use.")) (|symmetricPower| ((|#2| |#2| (|NonNegativeInteger|) (|Mapping| |#1| |#1|)) "\\spad{symmetricPower(a,n,D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}. \\spad{D} is the derivation to use.")) (|symmetricProduct| ((|#2| |#2| |#2| (|Mapping| |#1| |#1|)) "\\spad{symmetricProduct(a,b,D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}. \\spad{D} is the derivation to use.")))
@@ -2602,7 +2602,7 @@ NIL
NIL
(-668 M R S)
((|constructor| (NIL "Localize(\\spad{M},{}\\spad{R},{}\\spad{S}) produces fractions with numerators from an \\spad{R} module \\spad{M} and denominators from some multiplicative subset \\spad{D} of \\spad{R}.")) (|denom| ((|#3| $) "\\spad{denom x} returns the denominator of \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer x} returns the numerator of \\spad{x}.")) (/ (($ |#1| |#3|) "\\spad{m / d} divides the element \\spad{m} by \\spad{d}.") (($ $ |#3|) "\\spad{x / d} divides the element \\spad{x} by \\spad{d}.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
((|HasCategory| |#1| (QUOTE (-797))))
(-669 R)
((|constructor| (NIL "Given a PolynomialFactorizationExplicit ring,{} this package provides a defaulting rule for the \\spad{solveLinearPolynomialEquation} operation,{} by moving into the field of fractions,{} and solving it there via the \\spad{multiEuclidean} operation.")) (|solveLinearPolynomialEquationByFractions| (((|Union| (|List| (|SparseUnivariatePolynomial| |#1|)) "failed") (|List| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{solveLinearPolynomialEquationByFractions([f1, ..., fn], g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod fi = sum ai/fi} or returns \"failed\" if no such exists.")))
@@ -2610,7 +2610,7 @@ NIL
NIL
(-670 |VarSet| R)
((|constructor| (NIL "This type supports Lie polynomials in Lyndon basis see Free Lie Algebras by \\spad{C}. Reutenauer (Oxford science publications). \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|construct| (($ $ (|LyndonWord| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.") (($ (|LyndonWord| |#1|) $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.") (($ (|LyndonWord| |#1|) (|LyndonWord| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.")) (|LiePolyIfCan| (((|Union| $ "failed") (|XDistributedPolynomial| |#1| |#2|)) "\\axiom{LiePolyIfCan(\\spad{p})} returns \\axiom{\\spad{p}} in Lyndon basis if \\axiom{\\spad{p}} is a Lie polynomial,{} otherwise \\axiom{\"failed\"} is returned.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4443 . T) (-4442 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4444 . T) (-4443 . T))
((|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-174))))
(-671 A S)
((|constructor| (NIL "A list aggregate is a model for a linked list data structure. A linked list is a versatile data structure. Insertion and deletion are efficient and searching is a linear operation.")) (|list| (($ |#2|) "\\spad{list(x)} returns the list of one element \\spad{x}.")))
@@ -2618,7 +2618,7 @@ NIL
NIL
(-672 S)
((|constructor| (NIL "A list aggregate is a model for a linked list data structure. A linked list is a versatile data structure. Insertion and deletion are efficient and searching is a linear operation.")) (|list| (($ |#1|) "\\spad{list(x)} returns the list of one element \\spad{x}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-673 -1674)
((|constructor| (NIL "This package solves linear system in the matrix form \\spad{AX = B}. It is essentially a particular instantiation of the package \\spadtype{LinearSystemMatrixPackage} for Matrix and Vector. This package\\spad{'s} existence makes it easier to use \\spadfun{solve} in the AXIOM interpreter.")) (|rank| (((|NonNegativeInteger|) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{rank(A,B)} computes the rank of the complete matrix \\spad{(A|B)} of the linear system \\spad{AX = B}.")) (|hasSolution?| (((|Boolean|) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{hasSolution?(A,B)} tests if the linear system \\spad{AX = B} has a solution.")) (|particularSolution| (((|Union| (|Vector| |#1|) "failed") (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{particularSolution(A,B)} finds a particular solution of the linear system \\spad{AX = B}.")) (|solve| (((|List| (|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|))))) (|List| (|List| |#1|)) (|List| (|Vector| |#1|))) "\\spad{solve(A,LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|List| (|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|))))) (|Matrix| |#1|) (|List| (|Vector| |#1|))) "\\spad{solve(A,LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|List| (|List| |#1|)) (|Vector| |#1|)) "\\spad{solve(A,B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.") (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{solve(A,B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.")))
@@ -2634,8 +2634,8 @@ NIL
NIL
(-676 |n| R)
((|constructor| (NIL "LieSquareMatrix(\\spad{n},{}\\spad{R}) implements the Lie algebra of the \\spad{n} by \\spad{n} matrices over the commutative ring \\spad{R}. The Lie bracket (commutator) of the algebra is given by \\spad{a*b := (a *\\$SQMATRIX(n,R) b - b *\\$SQMATRIX(n,R) a)},{} where \\spadfun{*\\$SQMATRIX(\\spad{n},{}\\spad{R})} is the usual matrix multiplication.")))
-((-4445 . T) (-4448 . T) (-4442 . T) (-4443 . T))
-((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE (-4450 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-562))) (-2740 (|HasAttribute| |#2| (QUOTE (-4450 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-174))))
+((-4446 . T) (-4449 . T) (-4443 . T) (-4444 . T))
+((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE (-4451 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-562))) (-2740 (|HasAttribute| |#2| (QUOTE (-4451 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-174))))
(-677)
((|constructor| (NIL "This domain represents `literal sequence' syntax.")) (|elements| (((|List| (|SpadAst|)) $) "\\spad{elements(e)} returns the list of expressions in the `literal' list `e'.")))
NIL
@@ -2699,10 +2699,10 @@ NIL
(-692 S R |Row| |Col|)
((|constructor| (NIL "\\spadtype{MatrixCategory} is a general matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col. A domain belonging to this category will be shallowly mutable. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a Row is the same as the index of the first column in a matrix and vice versa.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|minordet| ((|#2| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#2| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. Error: if the matrix is not square.")) (|nullSpace| (((|List| |#4|) $) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#2|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(m,r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if matrix is not square or if the matrix is square but not invertible.") (($ $ (|NonNegativeInteger|)) "\\spad{x ** n} computes a non-negative integral power of the matrix \\spad{x}. Error: if the matrix is not square.")) (* ((|#3| |#3| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#4| $ |#4|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.") (($ (|Integer|) $) "\\spad{n * x} is an integer multiple.") (($ $ |#2|) "\\spad{x * r} is the right scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ |#2| $) "\\spad{r*x} is the left scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ $ $) "\\spad{x * y} is the product of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (- (($ $) "\\spad{-x} returns the negative of the matrix \\spad{x}.") (($ $ $) "\\spad{x - y} is the difference of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (+ (($ $ $) "\\spad{x + y} is the sum of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (|setsubMatrix!| (($ $ (|Integer|) (|Integer|) $) "\\spad{setsubMatrix(x,i1,j1,y)} destructively alters the matrix \\spad{x}. Here \\spad{x(i,j)} is set to \\spad{y(i-i1+1,j-j1+1)} for \\spad{i = i1,...,i1-1+nrows y} and \\spad{j = j1,...,j1-1+ncols y}.")) (|subMatrix| (($ $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subMatrix(x,i1,i2,j1,j2)} extracts the submatrix \\spad{[x(i,j)]} where the index \\spad{i} ranges from \\spad{i1} to \\spad{i2} and the index \\spad{j} ranges from \\spad{j1} to \\spad{j2}.")) (|swapColumns!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapColumns!(m,i,j)} interchanges the \\spad{i}th and \\spad{j}th columns of \\spad{m}. This destructively alters the matrix.")) (|swapRows!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapRows!(m,i,j)} interchanges the \\spad{i}th and \\spad{j}th rows of \\spad{m}. This destructively alters the matrix.")) (|setelt| (($ $ (|List| (|Integer|)) (|List| (|Integer|)) $) "\\spad{setelt(x,rowList,colList,y)} destructively alters the matrix \\spad{x}. If \\spad{y} is \\spad{m}-by-\\spad{n},{} \\spad{rowList = [i<1>,i<2>,...,i<m>]} and \\spad{colList = [j<1>,j<2>,...,j<n>]},{} then \\spad{x(i<k>,j<l>)} is set to \\spad{y(k,l)} for \\spad{k = 1,...,m} and \\spad{l = 1,...,n}.")) (|elt| (($ $ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{elt(x,rowList,colList)} returns an \\spad{m}-by-\\spad{n} matrix consisting of elements of \\spad{x},{} where \\spad{m = \\# rowList} and \\spad{n = \\# colList}. If \\spad{rowList = [i<1>,i<2>,...,i<m>]} and \\spad{colList = [j<1>,j<2>,...,j<n>]},{} then the \\spad{(k,l)}th entry of \\spad{elt(x,rowList,colList)} is \\spad{x(i<k>,j<l>)}.")) (|listOfLists| (((|List| (|List| |#2|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|vertConcat| (($ $ $) "\\spad{vertConcat(x,y)} vertically concatenates two matrices with an equal number of columns. The entries of \\spad{y} appear below of the entries of \\spad{x}. Error: if the matrices do not have the same number of columns.")) (|horizConcat| (($ $ $) "\\spad{horizConcat(x,y)} horizontally concatenates two matrices with an equal number of rows. The entries of \\spad{y} appear to the right of the entries of \\spad{x}. Error: if the matrices do not have the same number of rows.")) (|squareTop| (($ $) "\\spad{squareTop(m)} returns an \\spad{n}-by-\\spad{n} matrix consisting of the first \\spad{n} rows of the \\spad{m}-by-\\spad{n} matrix \\spad{m}. Error: if \\spad{m < n}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.") (($ |#3|) "\\spad{transpose(r)} converts the row \\spad{r} to a row matrix.")) (|coerce| (($ |#4|) "\\spad{coerce(col)} converts the column \\spad{col} to a column matrix.")) (|diagonalMatrix| (($ (|List| $)) "\\spad{diagonalMatrix([m1,...,mk])} creates a block diagonal matrix \\spad{M} with block matrices {\\em m1},{}...,{}{\\em mk} down the diagonal,{} with 0 block matrices elsewhere. More precisly: if \\spad{ri := nrows mi},{} \\spad{ci := ncols mi},{} then \\spad{m} is an (\\spad{r1+}..\\spad{+rk}) by (\\spad{c1+}..\\spad{+ck}) - matrix with entries \\spad{m.i.j = ml.(i-r1-..-r(l-1)).(j-n1-..-n(l-1))},{} if \\spad{(r1+..+r(l-1)) < i <= r1+..+rl} and \\spad{(c1+..+c(l-1)) < i <= c1+..+cl},{} \\spad{m.i.j} = 0 otherwise.") (($ (|List| |#2|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ (|NonNegativeInteger|) |#2|) "\\spad{scalarMatrix(n,r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")) (|matrix| (($ (|List| (|List| |#2|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|zero| (($ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zero(m,n)} returns an \\spad{m}-by-\\spad{n} zero matrix.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,j] = -m[j,i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,j] = m[j,i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|finiteAggregate| ((|attribute|) "matrices are finite")) (|shallowlyMutable| ((|attribute|) "One may destructively alter matrices")))
NIL
-((|HasAttribute| |#2| (QUOTE (-4450 "*"))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-562))))
+((|HasAttribute| |#2| (QUOTE (-4451 "*"))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-562))))
(-693 R |Row| |Col|)
((|constructor| (NIL "\\spadtype{MatrixCategory} is a general matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col. A domain belonging to this category will be shallowly mutable. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a Row is the same as the index of the first column in a matrix and vice versa.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|minordet| ((|#1| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#1| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. Error: if the matrix is not square.")) (|nullSpace| (((|List| |#3|) $) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#1|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(m,r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if matrix is not square or if the matrix is square but not invertible.") (($ $ (|NonNegativeInteger|)) "\\spad{x ** n} computes a non-negative integral power of the matrix \\spad{x}. Error: if the matrix is not square.")) (* ((|#2| |#2| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#3| $ |#3|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.") (($ (|Integer|) $) "\\spad{n * x} is an integer multiple.") (($ $ |#1|) "\\spad{x * r} is the right scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ |#1| $) "\\spad{r*x} is the left scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ $ $) "\\spad{x * y} is the product of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (- (($ $) "\\spad{-x} returns the negative of the matrix \\spad{x}.") (($ $ $) "\\spad{x - y} is the difference of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (+ (($ $ $) "\\spad{x + y} is the sum of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (|setsubMatrix!| (($ $ (|Integer|) (|Integer|) $) "\\spad{setsubMatrix(x,i1,j1,y)} destructively alters the matrix \\spad{x}. Here \\spad{x(i,j)} is set to \\spad{y(i-i1+1,j-j1+1)} for \\spad{i = i1,...,i1-1+nrows y} and \\spad{j = j1,...,j1-1+ncols y}.")) (|subMatrix| (($ $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subMatrix(x,i1,i2,j1,j2)} extracts the submatrix \\spad{[x(i,j)]} where the index \\spad{i} ranges from \\spad{i1} to \\spad{i2} and the index \\spad{j} ranges from \\spad{j1} to \\spad{j2}.")) (|swapColumns!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapColumns!(m,i,j)} interchanges the \\spad{i}th and \\spad{j}th columns of \\spad{m}. This destructively alters the matrix.")) (|swapRows!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapRows!(m,i,j)} interchanges the \\spad{i}th and \\spad{j}th rows of \\spad{m}. This destructively alters the matrix.")) (|setelt| (($ $ (|List| (|Integer|)) (|List| (|Integer|)) $) "\\spad{setelt(x,rowList,colList,y)} destructively alters the matrix \\spad{x}. If \\spad{y} is \\spad{m}-by-\\spad{n},{} \\spad{rowList = [i<1>,i<2>,...,i<m>]} and \\spad{colList = [j<1>,j<2>,...,j<n>]},{} then \\spad{x(i<k>,j<l>)} is set to \\spad{y(k,l)} for \\spad{k = 1,...,m} and \\spad{l = 1,...,n}.")) (|elt| (($ $ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{elt(x,rowList,colList)} returns an \\spad{m}-by-\\spad{n} matrix consisting of elements of \\spad{x},{} where \\spad{m = \\# rowList} and \\spad{n = \\# colList}. If \\spad{rowList = [i<1>,i<2>,...,i<m>]} and \\spad{colList = [j<1>,j<2>,...,j<n>]},{} then the \\spad{(k,l)}th entry of \\spad{elt(x,rowList,colList)} is \\spad{x(i<k>,j<l>)}.")) (|listOfLists| (((|List| (|List| |#1|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|vertConcat| (($ $ $) "\\spad{vertConcat(x,y)} vertically concatenates two matrices with an equal number of columns. The entries of \\spad{y} appear below of the entries of \\spad{x}. Error: if the matrices do not have the same number of columns.")) (|horizConcat| (($ $ $) "\\spad{horizConcat(x,y)} horizontally concatenates two matrices with an equal number of rows. The entries of \\spad{y} appear to the right of the entries of \\spad{x}. Error: if the matrices do not have the same number of rows.")) (|squareTop| (($ $) "\\spad{squareTop(m)} returns an \\spad{n}-by-\\spad{n} matrix consisting of the first \\spad{n} rows of the \\spad{m}-by-\\spad{n} matrix \\spad{m}. Error: if \\spad{m < n}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.") (($ |#2|) "\\spad{transpose(r)} converts the row \\spad{r} to a row matrix.")) (|coerce| (($ |#3|) "\\spad{coerce(col)} converts the column \\spad{col} to a column matrix.")) (|diagonalMatrix| (($ (|List| $)) "\\spad{diagonalMatrix([m1,...,mk])} creates a block diagonal matrix \\spad{M} with block matrices {\\em m1},{}...,{}{\\em mk} down the diagonal,{} with 0 block matrices elsewhere. More precisly: if \\spad{ri := nrows mi},{} \\spad{ci := ncols mi},{} then \\spad{m} is an (\\spad{r1+}..\\spad{+rk}) by (\\spad{c1+}..\\spad{+ck}) - matrix with entries \\spad{m.i.j = ml.(i-r1-..-r(l-1)).(j-n1-..-n(l-1))},{} if \\spad{(r1+..+r(l-1)) < i <= r1+..+rl} and \\spad{(c1+..+c(l-1)) < i <= c1+..+cl},{} \\spad{m.i.j} = 0 otherwise.") (($ (|List| |#1|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ (|NonNegativeInteger|) |#1|) "\\spad{scalarMatrix(n,r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")) (|matrix| (($ (|List| (|List| |#1|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|zero| (($ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zero(m,n)} returns an \\spad{m}-by-\\spad{n} zero matrix.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,j] = -m[j,i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,j] = m[j,i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|finiteAggregate| ((|attribute|) "matrices are finite")) (|shallowlyMutable| ((|attribute|) "One may destructively alter matrices")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-694 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{MatrixLinearAlgebraFunctions} provides functions to compute inverses and canonical forms.")) (|inverse| (((|Union| |#4| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|normalizedDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{normalizedDivide(n,d)} returns a normalized quotient and remainder such that consistently unique representatives for the residue class are chosen,{} \\spadignore{e.g.} positive remainders")) (|rowEchelon| ((|#4| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (|adjoint| (((|Record| (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) "\\spad{adjoint(m)} returns the ajoint matrix of \\spad{m} (\\spadignore{i.e.} the matrix \\spad{n} such that \\spad{m*n} = determinant(\\spad{m})*id) and the detrminant of \\spad{m}.")) (|invertIfCan| (((|Union| |#4| "failed") |#4|) "\\spad{invertIfCan(m)} returns the inverse of \\spad{m} over \\spad{R}")) (|fractionFreeGauss!| ((|#4| |#4|) "\\spad{fractionFreeGauss(m)} performs the fraction free gaussian elimination on the matrix \\spad{m}.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) |#4|) "\\spad{nullity(m)} returns the mullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) |#4|) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|elColumn2!| ((|#4| |#4| |#1| (|Integer|) (|Integer|)) "\\spad{elColumn2!(m,a,i,j)} adds to column \\spad{i} a*column(\\spad{m},{}\\spad{j}) : elementary operation of second kind. (\\spad{i} \\spad{~=j})")) (|elRow2!| ((|#4| |#4| |#1| (|Integer|) (|Integer|)) "\\spad{elRow2!(m,a,i,j)} adds to row \\spad{i} a*row(\\spad{m},{}\\spad{j}) : elementary operation of second kind. (\\spad{i} \\spad{~=j})")) (|elRow1!| ((|#4| |#4| (|Integer|) (|Integer|)) "\\spad{elRow1!(m,i,j)} swaps rows \\spad{i} and \\spad{j} of matrix \\spad{m} : elementary operation of first kind")) (|minordet| ((|#1| |#4|) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#1| |#4|) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. an error message is returned if the matrix is not square.")))
@@ -2710,8 +2710,8 @@ NIL
((|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))))
(-695 R)
((|constructor| (NIL "\\spadtype{Matrix} is a matrix domain where 1-based indexing is used for both rows and columns.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|diagonalMatrix| (($ (|Vector| |#1|)) "\\spad{diagonalMatrix(v)} returns a diagonal matrix where the elements of \\spad{v} appear on the diagonal.")))
-((-4448 . T) (-4449 . T))
-((-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))) (|HasAttribute| |#1| (QUOTE (-4450 "*"))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
+((-4449 . T) (-4450 . T))
+((-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-562))) (|HasAttribute| |#1| (QUOTE (-4451 "*"))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-696 R)
((|constructor| (NIL "This package provides standard arithmetic operations on matrices. The functions in this package store the results of computations in existing matrices,{} rather than creating new matrices. This package works only for matrices of type Matrix and uses the internal representation of this type.")) (** (((|Matrix| |#1|) (|Matrix| |#1|) (|NonNegativeInteger|)) "\\spad{x ** n} computes the \\spad{n}-th power of a square matrix. The power \\spad{n} is assumed greater than 1.")) (|power!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|NonNegativeInteger|)) "\\spad{power!(a,b,c,m,n)} computes \\spad{m} \\spad{**} \\spad{n} and stores the result in \\spad{a}. The matrices \\spad{b} and \\spad{c} are used to store intermediate results. Error: if \\spad{a},{} \\spad{b},{} \\spad{c},{} and \\spad{m} are not square and of the same dimensions.")) (|times!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{times!(c,a,b)} computes the matrix product \\spad{a * b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have compatible dimensions.")) (|rightScalarTimes!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rightScalarTimes!(c,a,r)} computes the scalar product \\spad{a * r} and stores the result in the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")) (|leftScalarTimes!| (((|Matrix| |#1|) (|Matrix| |#1|) |#1| (|Matrix| |#1|)) "\\spad{leftScalarTimes!(c,r,a)} computes the scalar product \\spad{r * a} and stores the result in the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")) (|minus!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{!minus!(c,a,b)} computes the matrix difference \\spad{a - b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have the same dimensions.") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{minus!(c,a)} computes \\spad{-a} and stores the result in the matrix \\spad{c}. Error: if a and \\spad{c} do not have the same dimensions.")) (|plus!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{plus!(c,a,b)} computes the matrix sum \\spad{a + b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have the same dimensions.")) (|copy!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{copy!(c,a)} copies the matrix \\spad{a} into the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")))
NIL
@@ -2730,11 +2730,11 @@ NIL
NIL
(-700)
((|constructor| (NIL "A domain which models the complex number representation used by machines in the AXIOM-NAG link.")) (|coerce| (((|Complex| (|Float|)) $) "\\spad{coerce(u)} transforms \\spad{u} into a COmplex Float") (($ (|Complex| (|MachineInteger|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|MachineFloat|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|Integer|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|Float|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex")))
-((-4441 . T) (-4446 |has| (-705) (-368)) (-4440 |has| (-705) (-368)) (-3035 . T) (-4447 |has| (-705) (-6 -4447)) (-4444 |has| (-705) (-6 -4444)) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| (-705) (QUOTE (-148))) (|HasCategory| (-705) (QUOTE (-146))) (|HasCategory| (-705) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-705) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| (-705) (QUOTE (-373))) (|HasCategory| (-705) (QUOTE (-368))) (-2740 (|HasCategory| (-705) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-705) (QUOTE (-368)))) (|HasCategory| (-705) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-705) (QUOTE (-235))) (-2740 (|HasCategory| (-705) (QUOTE (-368))) (|HasCategory| (-705) (QUOTE (-354)))) (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (LIST (QUOTE -290) (QUOTE (-705)) (QUOTE (-705)))) (|HasCategory| (-705) (LIST (QUOTE -313) (QUOTE (-705)))) (|HasCategory| (-705) (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE (-705)))) (|HasCategory| (-705) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-705) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-705) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-705) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (-2740 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-368))) (|HasCategory| (-705) (QUOTE (-354)))) (|HasCategory| (-705) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-705) (QUOTE (-1031))) (|HasCategory| (-705) (QUOTE (-1211))) (-12 (|HasCategory| (-705) (QUOTE (-1011))) (|HasCategory| (-705) (QUOTE (-1211)))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368))) (-12 (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (QUOTE (-916))))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (-12 (|HasCategory| (-705) (QUOTE (-368))) (|HasCategory| (-705) (QUOTE (-916)))) (-12 (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (QUOTE (-916))))) (|HasCategory| (-705) (QUOTE (-551))) (-12 (|HasCategory| (-705) (QUOTE (-1069))) (|HasCategory| (-705) (QUOTE (-1211)))) (|HasCategory| (-705) (QUOTE (-1069))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368)))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-562)))) (-12 (|HasCategory| (-705) (QUOTE (-235))) (|HasCategory| (-705) (QUOTE (-368)))) (-12 (|HasCategory| (-705) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-705) (QUOTE (-368)))) (|HasCategory| (-705) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-705) (QUOTE (-562))) (|HasAttribute| (-705) (QUOTE -4447)) (|HasAttribute| (-705) (QUOTE -4444)) (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-146)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-354)))))
+((-4442 . T) (-4447 |has| (-705) (-368)) (-4441 |has| (-705) (-368)) (-3035 . T) (-4448 |has| (-705) (-6 -4448)) (-4445 |has| (-705) (-6 -4445)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| (-705) (QUOTE (-148))) (|HasCategory| (-705) (QUOTE (-146))) (|HasCategory| (-705) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-705) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| (-705) (QUOTE (-373))) (|HasCategory| (-705) (QUOTE (-368))) (-2740 (|HasCategory| (-705) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-705) (QUOTE (-368)))) (|HasCategory| (-705) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-705) (QUOTE (-235))) (-2740 (|HasCategory| (-705) (QUOTE (-368))) (|HasCategory| (-705) (QUOTE (-354)))) (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (LIST (QUOTE -290) (QUOTE (-705)) (QUOTE (-705)))) (|HasCategory| (-705) (LIST (QUOTE -313) (QUOTE (-705)))) (|HasCategory| (-705) (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE (-705)))) (|HasCategory| (-705) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-705) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-705) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-705) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (-2740 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-368))) (|HasCategory| (-705) (QUOTE (-354)))) (|HasCategory| (-705) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-705) (QUOTE (-1031))) (|HasCategory| (-705) (QUOTE (-1212))) (-12 (|HasCategory| (-705) (QUOTE (-1011))) (|HasCategory| (-705) (QUOTE (-1212)))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368))) (-12 (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (QUOTE (-916))))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (-12 (|HasCategory| (-705) (QUOTE (-368))) (|HasCategory| (-705) (QUOTE (-916)))) (-12 (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (QUOTE (-916))))) (|HasCategory| (-705) (QUOTE (-551))) (-12 (|HasCategory| (-705) (QUOTE (-1069))) (|HasCategory| (-705) (QUOTE (-1212)))) (|HasCategory| (-705) (QUOTE (-1069))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368)))) (-2740 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-562)))) (-12 (|HasCategory| (-705) (QUOTE (-235))) (|HasCategory| (-705) (QUOTE (-368)))) (-12 (|HasCategory| (-705) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-705) (QUOTE (-368)))) (|HasCategory| (-705) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-705) (QUOTE (-562))) (|HasAttribute| (-705) (QUOTE -4448)) (|HasAttribute| (-705) (QUOTE -4445)) (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-146)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-354)))))
(-701 S)
((|constructor| (NIL "A multi-dictionary is a dictionary which may contain duplicates. As for any dictionary,{} its size is assumed large so that copying (non-destructive) operations are generally to be avoided.")) (|duplicates| (((|List| (|Record| (|:| |entry| |#1|) (|:| |count| (|NonNegativeInteger|)))) $) "\\spad{duplicates(d)} returns a list of values which have duplicates in \\spad{d}")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(d)} destructively removes any duplicate values in dictionary \\spad{d}.")) (|insert!| (($ |#1| $ (|NonNegativeInteger|)) "\\spad{insert!(x,d,n)} destructively inserts \\spad{n} copies of \\spad{x} into dictionary \\spad{d}.")))
-((-4449 . T))
+((-4450 . T))
NIL
(-702 U)
((|constructor| (NIL "This package supports factorization and gcds of univariate polynomials over the integers modulo different primes. The inputs are given as polynomials over the integers with the prime passed explicitly as an extra argument.")) (|exptMod| ((|#1| |#1| (|Integer|) |#1| (|Integer|)) "\\spad{exptMod(f,n,g,p)} raises the univariate polynomial \\spad{f} to the \\spad{n}th power modulo the polynomial \\spad{g} and the prime \\spad{p}.")) (|separateFactors| (((|List| |#1|) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|)))) (|Integer|)) "\\spad{separateFactors(ddl, p)} refines the distinct degree factorization produced by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} to give a complete list of factors.")) (|ddFact| (((|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|)))) |#1| (|Integer|)) "\\spad{ddFact(f,p)} computes a distinct degree factorization of the polynomial \\spad{f} modulo the prime \\spad{p},{} \\spadignore{i.e.} such that each factor is a product of irreducibles of the same degrees. The input polynomial \\spad{f} is assumed to be square-free modulo \\spad{p}.")) (|factor| (((|List| |#1|) |#1| (|Integer|)) "\\spad{factor(f1,p)} returns the list of factors of the univariate polynomial \\spad{f1} modulo the integer prime \\spad{p}. Error: if \\spad{f1} is not square-free modulo \\spad{p}.")) (|linears| ((|#1| |#1| (|Integer|)) "\\spad{linears(f,p)} returns the product of all the linear factors of \\spad{f} modulo \\spad{p}. Potentially incorrect result if \\spad{f} is not square-free modulo \\spad{p}.")) (|gcd| ((|#1| |#1| |#1| (|Integer|)) "\\spad{gcd(f1,f2,p)} computes the \\spad{gcd} of the univariate polynomials \\spad{f1} and \\spad{f2} modulo the integer prime \\spad{p}.")))
@@ -2750,7 +2750,7 @@ NIL
NIL
(-705)
((|constructor| (NIL "A domain which models the floating point representation used by machines in the AXIOM-NAG link.")) (|changeBase| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{changeBase(exp,man,base)} \\undocumented{}")) (|exponent| (((|Integer|) $) "\\spad{exponent(u)} returns the exponent of \\spad{u}")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(u)} returns the mantissa of \\spad{u}")) (|coerce| (($ (|MachineInteger|)) "\\spad{coerce(u)} transforms a MachineInteger into a MachineFloat") (((|Float|) $) "\\spad{coerce(u)} transforms a MachineFloat to a standard Float")) (|minimumExponent| (((|Integer|)) "\\spad{minimumExponent()} returns the minimum exponent in the model") (((|Integer|) (|Integer|)) "\\spad{minimumExponent(e)} sets the minimum exponent in the model to \\spad{e}")) (|maximumExponent| (((|Integer|)) "\\spad{maximumExponent()} returns the maximum exponent in the model") (((|Integer|) (|Integer|)) "\\spad{maximumExponent(e)} sets the maximum exponent in the model to \\spad{e}")) (|base| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{base(b)} sets the base of the model to \\spad{b}")) (|precision| (((|PositiveInteger|)) "\\spad{precision()} returns the number of digits in the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(p)} sets the number of digits in the model to \\spad{p}")))
-((-3026 . T) (-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-3026 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-706 R)
((|constructor| (NIL "\\indented{1}{Modular hermitian row reduction.} Author: Manuel Bronstein Date Created: 22 February 1989 Date Last Updated: 24 November 1993 Keywords: matrix,{} reduction.")) (|normalizedDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{normalizedDivide(n,d)} returns a normalized quotient and remainder such that consistently unique representatives for the residue class are chosen,{} \\spadignore{e.g.} positive remainders")) (|rowEchelonLocal| (((|Matrix| |#1|) (|Matrix| |#1|) |#1| |#1|) "\\spad{rowEchelonLocal(m, d, p)} computes the row-echelon form of \\spad{m} concatenated with \\spad{d} times the identity matrix over a local ring where \\spad{p} is the only prime.")) (|rowEchLocal| (((|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rowEchLocal(m,p)} computes a modular row-echelon form of \\spad{m},{} finding an appropriate modulus over a local ring where \\spad{p} is the only prime.")) (|rowEchelon| (((|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rowEchelon(m, d)} computes a modular row-echelon form mod \\spad{d} of \\indented{3}{[\\spad{d}\\space{5}]} \\indented{3}{[\\space{2}\\spad{d}\\space{3}]} \\indented{3}{[\\space{4}. ]} \\indented{3}{[\\space{5}\\spad{d}]} \\indented{3}{[\\space{3}\\spad{M}\\space{2}]} where \\spad{M = m mod d}.")) (|rowEch| (((|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{rowEch(m)} computes a modular row-echelon form of \\spad{m},{} finding an appropriate modulus.")))
@@ -2758,7 +2758,7 @@ NIL
NIL
(-707)
((|constructor| (NIL "A domain which models the integer representation used by machines in the AXIOM-NAG link.")) (|coerce| (((|Expression| $) (|Expression| (|Integer|))) "\\spad{coerce(x)} returns \\spad{x} with coefficients in the domain")) (|maxint| (((|PositiveInteger|)) "\\spad{maxint()} returns the maximum integer in the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{maxint(u)} sets the maximum integer in the model to \\spad{u}")))
-((-4447 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4448 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-708 S D1 D2 I)
((|constructor| (NIL "transforms top-level objects into compiled functions.")) (|compiledFunction| (((|Mapping| |#4| |#2| |#3|) |#1| (|Symbol|) (|Symbol|)) "\\spad{compiledFunction(expr,x,y)} returns a function \\spad{f: (D1, D2) -> I} defined by \\spad{f(x, y) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{(D1, D2)}")) (|binaryFunction| (((|Mapping| |#4| |#2| |#3|) (|Symbol|)) "\\spad{binaryFunction(s)} is a local function")))
@@ -2786,7 +2786,7 @@ NIL
NIL
(-714 R)
((|constructor| (NIL "This is the category of linear operator rings with one generator. The generator is not named by the category but can always be constructed as \\spad{monomial(1,1)}. \\blankline For convenience,{} call the generator \\spad{G}. Then each value is equal to \\indented{4}{\\spad{sum(a(i)*G**i, i = 0..n)}} for some unique \\spad{n} and \\spad{a(i)} in \\spad{R}. \\blankline Note that multiplication is not necessarily commutative. In fact,{} if \\spad{a} is in \\spad{R},{} it is quite normal to have \\spad{a*G \\~= G*a}.")) (|monomial| (($ |#1| (|NonNegativeInteger|)) "\\spad{monomial(c,k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,1)}.")) (|coefficient| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) \\~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-715 R1 UP1 UPUP1 R2 UP2 UPUP2)
((|constructor| (NIL "Lifting of a map through 2 levels of polynomials.")) (|map| ((|#6| (|Mapping| |#4| |#1|) |#3|) "\\spad{map(f, p)} lifts \\spad{f} to the domain of \\spad{p} then applies it to \\spad{p}.")))
@@ -2796,25 +2796,25 @@ NIL
((|constructor| (NIL "\\spadtype{MathMLFormat} provides a coercion from \\spadtype{OutputForm} to MathML format.")) (|display| (((|Void|) (|String|)) "prints the string returned by coerce,{} adding <math ...> tags.")) (|exprex| (((|String|) (|OutputForm|)) "coverts \\spadtype{OutputForm} to \\spadtype{String} with the structure preserved with braces. Actually this is not quite accurate. The function \\spadfun{precondition} is first applied to the \\spadtype{OutputForm} expression before \\spadfun{exprex}. The raw \\spadtype{OutputForm} and the nature of the \\spadfun{precondition} function is still obscure to me at the time of this writing (2007-02-14).")) (|coerceL| (((|String|) (|OutputForm|)) "coerceS(\\spad{o}) changes \\spad{o} in the standard output format to MathML format and displays result as one long string.")) (|coerceS| (((|String|) (|OutputForm|)) "\\spad{coerceS(o)} changes \\spad{o} in the standard output format to MathML format and displays formatted result.")) (|coerce| (((|String|) (|OutputForm|)) "coerceS(\\spad{o}) changes \\spad{o} in the standard output format to MathML format.")))
NIL
NIL
-(-717 R |Mod| -4052 -3068 |exactQuo|)
+(-717 R |Mod| -2979 -2727 |exactQuo|)
((|constructor| (NIL "\\indented{1}{These domains are used for the factorization and gcds} of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{ModularRing},{} \\spadtype{EuclideanModularRing}")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,y)} \\undocumented")) (|reduce| (($ |#1| |#2|) "\\spad{reduce(r,m)} \\undocumented")) (|coerce| ((|#1| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#2| $) "\\spad{modulus(x)} \\undocumented")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-718 R |Rep|)
((|constructor| (NIL "This package \\undocumented")) (|frobenius| (($ $) "\\spad{frobenius(x)} \\undocumented")) (|computePowers| (((|PrimitiveArray| $)) "\\spad{computePowers()} \\undocumented")) (|pow| (((|PrimitiveArray| $)) "\\spad{pow()} \\undocumented")) (|An| (((|Vector| |#1|) $) "\\spad{An(x)} \\undocumented")) (|UnVectorise| (($ (|Vector| |#1|)) "\\spad{UnVectorise(v)} \\undocumented")) (|Vectorise| (((|Vector| |#1|) $) "\\spad{Vectorise(x)} \\undocumented")) (|lift| ((|#2| $) "\\spad{lift(x)} \\undocumented")) (|reduce| (($ |#2|) "\\spad{reduce(x)} \\undocumented")) (|modulus| ((|#2|) "\\spad{modulus()} \\undocumented")) (|setPoly| ((|#2| |#2|) "\\spad{setPoly(x)} \\undocumented")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4444 |has| |#1| (-368)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-235))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4445 |has| |#1| (-368)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-235))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-719 IS E |ff|)
((|constructor| (NIL "This package \\undocumented")) (|construct| (($ |#1| |#2|) "\\spad{construct(i,e)} \\undocumented")) (|index| ((|#1| $) "\\spad{index(x)} \\undocumented")) (|exponent| ((|#2| $) "\\spad{exponent(x)} \\undocumented")))
NIL
NIL
(-720 R M)
((|constructor| (NIL "Algebra of ADDITIVE operators on a module.")) (|makeop| (($ |#1| (|FreeGroup| (|BasicOperator|))) "\\spad{makeop should} be local but conditional")) (|opeval| ((|#2| (|BasicOperator|) |#2|) "\\spad{opeval should} be local but conditional")) (** (($ $ (|Integer|)) "\\spad{op**n} \\undocumented") (($ (|BasicOperator|) (|Integer|)) "\\spad{op**n} \\undocumented")) (|evaluateInverse| (($ $ (|Mapping| |#2| |#2|)) "\\spad{evaluateInverse(x,f)} \\undocumented")) (|evaluate| (($ $ (|Mapping| |#2| |#2|)) "\\spad{evaluate(f, u +-> g u)} attaches the map \\spad{g} to \\spad{f}. \\spad{f} must be a basic operator \\spad{g} MUST be additive,{} \\spadignore{i.e.} \\spad{g(a + b) = g(a) + g(b)} for any \\spad{a},{} \\spad{b} in \\spad{M}. This implies that \\spad{g(n a) = n g(a)} for any \\spad{a} in \\spad{M} and integer \\spad{n > 0}.")) (|conjug| ((|#1| |#1|) "\\spad{conjug(x)}should be local but conditional")) (|adjoint| (($ $ $) "\\spad{adjoint(op1, op2)} sets the adjoint of \\spad{op1} to be op2. \\spad{op1} must be a basic operator") (($ $) "\\spad{adjoint(op)} returns the adjoint of the operator \\spad{op}.")))
-((-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) (-4445 . T))
+((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))))
-(-721 R |Mod| -4052 -3068 |exactQuo|)
+(-721 R |Mod| -2979 -2727 |exactQuo|)
((|constructor| (NIL "These domains are used for the factorization and gcds of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{EuclideanModularRing} ,{}\\spadtype{ModularField}")) (|inv| (($ $) "\\spad{inv(x)} \\undocumented")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} \\undocumented")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,y)} \\undocumented")) (|reduce| (($ |#1| |#2|) "\\spad{reduce(r,m)} \\undocumented")) (|coerce| ((|#1| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#2| $) "\\spad{modulus(x)} \\undocumented")))
-((-4445 . T))
+((-4446 . T))
NIL
(-722 S R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
@@ -2822,11 +2822,11 @@ NIL
NIL
(-723 R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
(-724 -1674)
((|constructor| (NIL "\\indented{1}{MoebiusTransform(\\spad{F}) is the domain of fractional linear (Moebius)} transformations over \\spad{F}.")) (|eval| (((|OnePointCompletion| |#1|) $ (|OnePointCompletion| |#1|)) "\\spad{eval(m,x)} returns \\spad{(a*x + b)/(c*x + d)} where \\spad{m = moebius(a,b,c,d)} (see \\spadfunFrom{moebius}{MoebiusTransform}).") ((|#1| $ |#1|) "\\spad{eval(m,x)} returns \\spad{(a*x + b)/(c*x + d)} where \\spad{m = moebius(a,b,c,d)} (see \\spadfunFrom{moebius}{MoebiusTransform}).")) (|recip| (($ $) "\\spad{recip(m)} = recip() * \\spad{m}") (($) "\\spad{recip()} returns \\spad{matrix [[0,1],[1,0]]} representing the map \\spad{x -> 1 / x}.")) (|scale| (($ $ |#1|) "\\spad{scale(m,h)} returns \\spad{scale(h) * m} (see \\spadfunFrom{shift}{MoebiusTransform}).") (($ |#1|) "\\spad{scale(k)} returns \\spad{matrix [[k,0],[0,1]]} representing the map \\spad{x -> k * x}.")) (|shift| (($ $ |#1|) "\\spad{shift(m,h)} returns \\spad{shift(h) * m} (see \\spadfunFrom{shift}{MoebiusTransform}).") (($ |#1|) "\\spad{shift(k)} returns \\spad{matrix [[1,k],[0,1]]} representing the map \\spad{x -> x + k}.")) (|moebius| (($ |#1| |#1| |#1| |#1|) "\\spad{moebius(a,b,c,d)} returns \\spad{matrix [[a,b],[c,d]]}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-725 S)
((|constructor| (NIL "Monad is the class of all multiplicative monads,{} \\spadignore{i.e.} sets with a binary operation.")) (** (($ $ (|PositiveInteger|)) "\\spad{a**n} returns the \\spad{n}\\spad{-}th power of \\spad{a},{} defined by repeated squaring.")) (|leftPower| (($ $ (|PositiveInteger|)) "\\spad{leftPower(a,n)} returns the \\spad{n}\\spad{-}th left power of \\spad{a},{} \\spadignore{i.e.} \\spad{leftPower(a,n) := a * leftPower(a,n-1)} and \\spad{leftPower(a,1) := a}.")) (|rightPower| (($ $ (|PositiveInteger|)) "\\spad{rightPower(a,n)} returns the \\spad{n}\\spad{-}th right power of \\spad{a},{} \\spadignore{i.e.} \\spad{rightPower(a,n) := rightPower(a,n-1) * a} and \\spad{rightPower(a,1) := a}.")) (* (($ $ $) "\\spad{a*b} is the product of \\spad{a} and \\spad{b} in a set with a binary operation.")))
@@ -2850,7 +2850,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-354))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))))
(-730 R UP)
((|constructor| (NIL "A \\spadtype{MonogenicAlgebra} is an algebra of finite rank which can be generated by a single element.")) (|derivationCoordinates| (((|Matrix| |#1|) (|Vector| $) (|Mapping| |#1| |#1|)) "\\spad{derivationCoordinates(b, ')} returns \\spad{M} such that \\spad{b' = M b}.")) (|lift| ((|#2| $) "\\spad{lift(z)} returns a minimal degree univariate polynomial up such that \\spad{z=reduce up}.")) (|convert| (($ |#2|) "\\spad{convert(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|reduce| (((|Union| $ "failed") (|Fraction| |#2|)) "\\spad{reduce(frac)} converts the fraction \\spad{frac} to an algebra element.") (($ |#2|) "\\spad{reduce(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|definingPolynomial| ((|#2|) "\\spad{definingPolynomial()} returns the minimal polynomial which \\spad{generator()} satisfies.")) (|generator| (($) "\\spad{generator()} returns the generator for this domain.")))
-((-4441 |has| |#1| (-368)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| |#1| (-368)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-731 S)
((|constructor| (NIL "The class of multiplicative monoids,{} \\spadignore{i.e.} semigroups with a multiplicative identity element. \\blankline")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} tries to compute the multiplicative inverse for \\spad{x} or \"failed\" if it cannot find the inverse (see unitsKnown).")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (|one?| (((|Boolean|) $) "\\spad{one?(x)} tests if \\spad{x} is equal to 1.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) ((|One|) (($) "1 is the multiplicative identity.")))
@@ -2878,8 +2878,8 @@ NIL
NIL
(-737 |vl| R)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials whose variables are from a user specified list of symbols. The ordering is specified by the position of the variable in the list. The coefficient ring may be non commutative,{} but the variables are assumed to commute.")))
-(((-4450 "*") |has| |#2| (-174)) (-4441 |has| |#2| (-562)) (-4446 |has| |#2| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-870 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
(-738 E OV R PRF)
((|constructor| (NIL "\\indented{3}{This package exports a factor operation for multivariate polynomials} with coefficients which are rational functions over some ring \\spad{R} over which we can factor. It is used internally by packages such as primary decomposition which need to work with polynomials with rational function coefficients,{} \\spadignore{i.e.} themselves fractions of polynomials.")) (|factor| (((|Factored| |#4|) |#4|) "\\spad{factor(prf)} factors a polynomial with rational function coefficients.")) (|pushuconst| ((|#4| (|Fraction| (|Polynomial| |#3|)) |#2|) "\\spad{pushuconst(r,var)} takes a rational function and raises all occurances of the variable \\spad{var} to the polynomial level.")) (|pushucoef| ((|#4| (|SparseUnivariatePolynomial| (|Polynomial| |#3|)) |#2|) "\\spad{pushucoef(upoly,var)} converts the anonymous univariate polynomial \\spad{upoly} to a polynomial in \\spad{var} over rational functions.")) (|pushup| ((|#4| |#4| |#2|) "\\spad{pushup(prf,var)} raises all occurences of the variable \\spad{var} in the coefficients of the polynomial \\spad{prf} back to the polynomial level.")) (|pushdterm| ((|#4| (|SparseUnivariatePolynomial| |#4|) |#2|) "\\spad{pushdterm(monom,var)} pushes all top level occurences of the variable \\spad{var} into the coefficient domain for the monomial \\spad{monom}.")) (|pushdown| ((|#4| |#4| |#2|) "\\spad{pushdown(prf,var)} pushes all top level occurences of the variable \\spad{var} into the coefficient domain for the polynomial \\spad{prf}.")) (|totalfract| (((|Record| (|:| |sup| (|Polynomial| |#3|)) (|:| |inf| (|Polynomial| |#3|))) |#4|) "\\spad{totalfract(prf)} takes a polynomial whose coefficients are themselves fractions of polynomials and returns a record containing the numerator and denominator resulting from putting \\spad{prf} over a common denominator.")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
@@ -2894,15 +2894,15 @@ NIL
NIL
(-741 R M)
((|constructor| (NIL "\\spadtype{MonoidRing}(\\spad{R},{}\\spad{M}),{} implements the algebra of all maps from the monoid \\spad{M} to the commutative ring \\spad{R} with finite support. Multiplication of two maps \\spad{f} and \\spad{g} is defined to map an element \\spad{c} of \\spad{M} to the (convolution) sum over {\\em f(a)g(b)} such that {\\em ab = c}. Thus \\spad{M} can be identified with a canonical basis and the maps can also be considered as formal linear combinations of the elements in \\spad{M}. Scalar multiples of a basis element are called monomials. A prominent example is the class of polynomials where the monoid is a direct product of the natural numbers with pointwise addition. When \\spad{M} is \\spadtype{FreeMonoid Symbol},{} one gets polynomials in infinitely many non-commuting variables. Another application area is representation theory of finite groups \\spad{G},{} where modules over \\spadtype{MonoidRing}(\\spad{R},{}\\spad{G}) are studied.")) (|reductum| (($ $) "\\spad{reductum(f)} is \\spad{f} minus its leading monomial.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(f)} gives the coefficient of \\spad{f},{} whose corresponding monoid element is the greatest among all those with non-zero coefficients.")) (|leadingMonomial| ((|#2| $) "\\spad{leadingMonomial(f)} gives the monomial of \\spad{f} whose corresponding monoid element is the greatest among all those with non-zero coefficients.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(f)} is the number of non-zero coefficients with respect to the canonical basis.")) (|monomials| (((|List| $) $) "\\spad{monomials(f)} gives the list of all monomials whose sum is \\spad{f}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(f)} lists all non-zero coefficients.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(f)} tests if \\spad{f} is a single monomial.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|terms| (((|List| (|Record| (|:| |coef| |#1|) (|:| |monom| |#2|))) $) "\\spad{terms(f)} gives the list of non-zero coefficients combined with their corresponding basis element as records. This is the internal representation.")) (|coerce| (($ (|List| (|Record| (|:| |coef| |#1|) (|:| |monom| |#2|)))) "\\spad{coerce(lt)} converts a list of terms and coefficients to a member of the domain.")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(f,m)} extracts the coefficient of \\spad{m} in \\spad{f} with respect to the canonical basis \\spad{M}.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(r,m)} creates a scalar multiple of the basis element \\spad{m}.")))
-((-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) (-4445 . T))
+((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
((-12 (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-856))))
(-742 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4438 . T) (-4449 . T))
+((-4439 . T) (-4450 . T))
NIL
(-743 S)
((|constructor| (NIL "A multiset is a set with multiplicities.")) (|remove!| (($ (|Mapping| (|Boolean|) |#1|) $ (|Integer|)) "\\spad{remove!(p,ms,number)} removes destructively at most \\spad{number} copies of elements \\spad{x} such that \\spad{p(x)} is \\spadfun{\\spad{true}} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.") (($ |#1| $ (|Integer|)) "\\spad{remove!(x,ms,number)} removes destructively at most \\spad{number} copies of element \\spad{x} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.")) (|remove| (($ (|Mapping| (|Boolean|) |#1|) $ (|Integer|)) "\\spad{remove(p,ms,number)} removes at most \\spad{number} copies of elements \\spad{x} such that \\spad{p(x)} is \\spadfun{\\spad{true}} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.") (($ |#1| $ (|Integer|)) "\\spad{remove(x,ms,number)} removes at most \\spad{number} copies of element \\spad{x} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.")) (|members| (((|List| |#1|) $) "\\spad{members(ms)} returns a list of the elements of \\spad{ms} {\\em without} their multiplicity. See also \\spadfun{parts}.")) (|multiset| (($ (|List| |#1|)) "\\spad{multiset(ls)} creates a multiset with elements from \\spad{ls}.") (($ |#1|) "\\spad{multiset(s)} creates a multiset with singleton \\spad{s}.") (($) "\\spad{multiset()}\\$\\spad{D} creates an empty multiset of domain \\spad{D}.")))
-((-4448 . T) (-4438 . T) (-4449 . T))
+((-4449 . T) (-4439 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-744)
((|constructor| (NIL "\\spadtype{MoreSystemCommands} implements an interface with the system command facility. These are the commands that are issued from source files or the system interpreter and they start with a close parenthesis,{} \\spadignore{e.g.} \\spadsyscom{what} commands.")) (|systemCommand| (((|Void|) (|String|)) "\\spad{systemCommand(cmd)} takes the string \\spadvar{\\spad{cmd}} and passes it to the runtime environment for execution as a system command. Although various things may be printed,{} no usable value is returned.")))
@@ -2914,7 +2914,7 @@ NIL
NIL
(-746 |Coef| |Var|)
((|constructor| (NIL "\\spadtype{MultivariateTaylorSeriesCategory} is the most general multivariate Taylor series category.")) (|integrate| (($ $ |#2|) "\\spad{integrate(f,x)} returns the anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{x} with constant coefficient 1. We may integrate a series when we can divide coefficients by integers.")) (|polynomial| (((|Polynomial| |#1|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,k1,k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| (((|NonNegativeInteger|) $ |#2| (|NonNegativeInteger|)) "\\spad{order(f,x,n)} returns \\spad{min(n,order(f,x))}.") (((|NonNegativeInteger|) $ |#2|) "\\spad{order(f,x)} returns the order of \\spad{f} viewed as a series in \\spad{x} may result in an infinite loop if \\spad{f} has no non-zero terms.")) (|monomial| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,[x1,x2,...,xk],[n1,n2,...,nk])} returns \\spad{a * x1^n1 * ... * xk^nk}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{monomial(a,x,n)} returns \\spad{a*x^n}.")) (|extend| (($ $ (|NonNegativeInteger|)) "\\spad{extend(f,n)} causes all terms of \\spad{f} of degree \\spad{<= n} to be computed.")) (|coefficient| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(f,[x1,x2,...,xk],[n1,n2,...,nk])} returns the coefficient of \\spad{x1^n1 * ... * xk^nk} in \\spad{f}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{coefficient(f,x,n)} returns the coefficient of \\spad{x^n} in \\spad{f}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
(-747 OV E R P)
((|constructor| (NIL "\\indented{2}{This is the top level package for doing multivariate factorization} over basic domains like \\spadtype{Integer} or \\spadtype{Fraction Integer}.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain where \\spad{p} is represented as a univariate polynomial with multivariate coefficients") (((|Factored| |#4|) |#4|) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain")))
@@ -2930,7 +2930,7 @@ NIL
NIL
(-750 R)
((|constructor| (NIL "NonAssociativeAlgebra is the category of non associative algebras (modules which are themselves non associative rngs). Axioms \\indented{3}{\\spad{r*}(a*b) = (r*a)\\spad{*b} = a*(\\spad{r*b})}")) (|plenaryPower| (($ $ (|PositiveInteger|)) "\\spad{plenaryPower(a,n)} is recursively defined to be \\spad{plenaryPower(a,n-1)*plenaryPower(a,n-1)} for \\spad{n>1} and \\spad{a} for \\spad{n=1}.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
(-751)
((|constructor| (NIL "This package uses the NAG Library to compute the zeros of a polynomial with real or complex coefficients. See \\downlink{Manual Page}{manpageXXc02}.")) (|c02agf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Boolean|) (|Integer|)) "\\spad{c02agf(a,n,scale,ifail)} finds all the roots of a real polynomial equation,{} using a variant of Laguerre\\spad{'s} Method. See \\downlink{Manual Page}{manpageXXc02agf}.")) (|c02aff| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Boolean|) (|Integer|)) "\\spad{c02aff(a,n,scale,ifail)} finds all the roots of a complex polynomial equation,{} using a variant of Laguerre\\spad{'s} Method. See \\downlink{Manual Page}{manpageXXc02aff}.")))
@@ -3038,7 +3038,7 @@ NIL
NIL
(-777)
((|constructor| (NIL "\\spadtype{NonNegativeInteger} provides functions for non \\indented{2}{negative integers.}")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} means multiplication is commutative : \\spad{x*y = y*x}.")) (|random| (($ $) "\\spad{random(n)} returns a random integer from 0 to \\spad{n-1}.")) (|shift| (($ $ (|Integer|)) "\\spad{shift(a,i)} shift \\spad{a} by \\spad{i} bits.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,b)} returns the quotient of \\spad{a} and \\spad{b},{} or \"failed\" if \\spad{b} is zero or \\spad{a} rem \\spad{b} is zero.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(a,b)} returns a record containing both remainder and quotient.")) (|gcd| (($ $ $) "\\spad{gcd(a,b)} computes the greatest common divisor of two non negative integers \\spad{a} and \\spad{b}.")) (|rem| (($ $ $) "\\spad{a rem b} returns the remainder of \\spad{a} and \\spad{b}.")) (|quo| (($ $ $) "\\spad{a quo b} returns the quotient of \\spad{a} and \\spad{b},{} forgetting the remainder.")))
-(((-4450 "*") . T))
+(((-4451 "*") . T))
NIL
(-778 R -1674)
((|constructor| (NIL "NonLinearFirstOrderODESolver provides a function for finding closed form first integrals of nonlinear ordinary differential equations of order 1.")) (|solve| (((|Union| |#2| "failed") |#2| |#2| (|BasicOperator|) (|Symbol|)) "\\spad{solve(M(x,y), N(x,y), y, x)} returns \\spad{F(x,y)} such that \\spad{F(x,y) = c} for a constant \\spad{c} is a first integral of the equation \\spad{M(x,y) dx + N(x,y) dy = 0},{} or \"failed\" if no first-integral can be found.")))
@@ -3074,23 +3074,23 @@ NIL
NIL
(-786 R |VarSet|)
((|constructor| (NIL "A post-facto extension for \\axiomType{\\spad{SMP}} in order to speed up operations related to pseudo-division and \\spad{gcd}. This domain is based on the \\axiomType{NSUP} constructor which is itself a post-facto extension of the \\axiomType{SUP} constructor.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1754 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1754 (|HasCategory| |#1| (QUOTE (-551)))) (-1754 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1754 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570))))) (-1754 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1754 (|HasCategory| |#1| (LIST (QUOTE -1001) (QUOTE (-570))))))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1753 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1753 (|HasCategory| |#1| (QUOTE (-551)))) (-1753 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1753 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570))))) (-1753 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1753 (|HasCategory| |#1| (LIST (QUOTE -1001) (QUOTE (-570))))))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-787 R S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from sparse univariate polynomial over \\spad{R} to a sparse univariate polynomial over \\spad{S}. Note that the mapping is assumed to send zero to zero,{} since it will only be applied to the non-zero coefficients of the polynomial.")) (|map| (((|NewSparseUnivariatePolynomial| |#2|) (|Mapping| |#2| |#1|) (|NewSparseUnivariatePolynomial| |#1|)) "\\axiom{map(func,{} poly)} creates a new polynomial by applying func to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
(-788 R)
((|constructor| (NIL "A post-facto extension for \\axiomType{SUP} in order to speed up operations related to pseudo-division and \\spad{gcd} for both \\axiomType{SUP} and,{} consequently,{} \\axiomType{NSMP}.")) (|halfExtendedResultant2| (((|Record| (|:| |resultant| |#1|) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedResultant2(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca]} such that \\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{} \\spad{cb}]}")) (|halfExtendedResultant1| (((|Record| (|:| |resultant| |#1|) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedResultant1(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca]} such that \\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{} \\spad{cb}]}")) (|extendedResultant| (((|Record| (|:| |resultant| |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{}\\spad{cb}]} such that \\axiom{\\spad{r}} is the resultant of \\axiom{a} and \\axiom{\\spad{b}} and \\axiom{\\spad{r} = ca * a + \\spad{cb} * \\spad{b}}")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} such that \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]}")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} such that \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]}")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]} such that \\axiom{\\spad{g}} is a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} and \\axiom{\\spad{g} = ca * a + \\spad{cb} * \\spad{b}}")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns \\axiom{resultant(a,{}\\spad{b})} if \\axiom{a} and \\axiom{\\spad{b}} has no non-trivial \\spad{gcd} in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} otherwise the non-zero sub-resultant with smallest index.")) (|subResultantsChain| (((|List| $) $ $) "\\axiom{subResultantsChain(a,{}\\spad{b})} returns the list of the non-zero sub-resultants of \\axiom{a} and \\axiom{\\spad{b}} sorted by increasing degree.")) (|lazyPseudoQuotient| (($ $ $) "\\axiom{lazyPseudoQuotient(a,{}\\spad{b})} returns \\axiom{\\spad{q}} if \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}")) (|lazyPseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{c^n} * a = \\spad{q*b} \\spad{+r}} and \\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]} where \\axiom{\\spad{n} + \\spad{g} = max(0,{} degree(\\spad{b}) - degree(a) + 1)}.")) (|lazyPseudoRemainder| (($ $ $) "\\axiom{lazyPseudoRemainder(a,{}\\spad{b})} returns \\axiom{\\spad{r}} if \\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]}. This lazy pseudo-remainder is computed by means of the \\axiomOpFrom{fmecg}{NewSparseUnivariatePolynomial} operation.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| |#1|) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]} such that \\axiom{\\spad{r}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{b}} divides \\axiom{\\spad{c^n} * a - \\spad{r}} where \\axiom{\\spad{c}} is \\axiom{leadingCoefficient(\\spad{b})} and \\axiom{\\spad{n}} is as small as possible with the previous properties.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} returns \\axiom{\\spad{r}} such that \\axiom{\\spad{r}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{b}} divides \\axiom{a \\spad{-r}} where \\axiom{\\spad{b}} is monic.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#1| $) "\\axiom{fmecg(\\spad{p1},{}\\spad{e},{}\\spad{r},{}\\spad{p2})} returns \\axiom{\\spad{p1} - \\spad{r} * X**e * \\spad{p2}} where \\axiom{\\spad{X}} is \\axiom{monomial(1,{}1)}")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4444 |has| |#1| (-368)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-235))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4445 |has| |#1| (-368)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-235))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-789 R)
((|constructor| (NIL "This package provides polynomials as functions on a ring.")) (|eulerE| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{eulerE(n,r)} \\undocumented")) (|bernoulliB| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{bernoulliB(n,r)} \\undocumented")) (|cyclotomic| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{cyclotomic(n,r)} \\undocumented")))
NIL
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))
(-790 R E V P)
((|constructor| (NIL "The category of normalized triangular sets. A triangular set \\spad{ts} is said normalized if for every algebraic variable \\spad{v} of \\spad{ts} the polynomial \\spad{select(ts,v)} is normalized \\spad{w}.\\spad{r}.\\spad{t}. every polynomial in \\spad{collectUnder(ts,v)}. A polynomial \\spad{p} is said normalized \\spad{w}.\\spad{r}.\\spad{t}. a non-constant polynomial \\spad{q} if \\spad{p} is constant or \\spad{degree(p,mdeg(q)) = 0} and \\spad{init(p)} is normalized \\spad{w}.\\spad{r}.\\spad{t}. \\spad{q}. One of the important features of normalized triangular sets is that they are regular sets.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[3] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-791 S)
((|constructor| (NIL "Numeric provides real and complex numerical evaluation functions for various symbolic types.")) (|numericIfCan| (((|Union| (|Float|) "failed") (|Expression| |#1|) (|PositiveInteger|)) "\\spad{numericIfCan(x, n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Expression| |#1|)) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{numericIfCan(x,n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{numericIfCan(x,n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Polynomial| |#1|)) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.")) (|complexNumericIfCan| (((|Union| (|Complex| (|Float|)) "failed") (|Expression| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| (|Complex| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| |#1|) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| |#1|)) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| (|Complex| |#1|))) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| (|Complex| |#1|)))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x, n)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| |#1|)) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| (|Complex| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not constant.")) (|complexNumeric| (((|Complex| (|Float|)) (|Expression| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Expression| (|Complex| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Expression| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Expression| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| (|Complex| |#1|))) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| (|Complex| |#1|)))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x}") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Polynomial| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Polynomial| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Polynomial| (|Complex| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Complex| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Complex| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) |#1| (|PositiveInteger|)) "\\spad{complexNumeric(x, n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) |#1|) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.")) (|numeric| (((|Float|) (|Expression| |#1|) (|PositiveInteger|)) "\\spad{numeric(x, n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Expression| |#1|)) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{numeric(x,n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Fraction| (|Polynomial| |#1|))) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{numeric(x,n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Polynomial| |#1|)) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) |#1| (|PositiveInteger|)) "\\spad{numeric(x, n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) |#1|) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.")))
@@ -3142,7 +3142,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (QUOTE (-1069))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-373))))
(-803 R)
((|constructor| (NIL "OctonionCategory gives the categorial frame for the octonions,{} and eight-dimensional non-associative algebra,{} doubling the the quaternions in the same way as doubling the Complex numbers to get the quaternions.")) (|inv| (($ $) "\\spad{inv(o)} returns the inverse of \\spad{o} if it exists.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(o)} returns the real part if all seven imaginary parts are 0,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(o)} returns the real part if all seven imaginary parts are 0. Error: if \\spad{o} is not rational.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(o)} tests if \\spad{o} is rational,{} \\spadignore{i.e.} that all seven imaginary parts are 0.")) (|abs| ((|#1| $) "\\spad{abs(o)} computes the absolute value of an octonion,{} equal to the square root of the \\spadfunFrom{norm}{Octonion}.")) (|octon| (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) "\\spad{octon(re,ri,rj,rk,rE,rI,rJ,rK)} constructs an octonion from scalars.")) (|norm| ((|#1| $) "\\spad{norm(o)} returns the norm of an octonion,{} equal to the sum of the squares of its coefficients.")) (|imagK| ((|#1| $) "\\spad{imagK(o)} extracts the imaginary \\spad{K} part of octonion \\spad{o}.")) (|imagJ| ((|#1| $) "\\spad{imagJ(o)} extracts the imaginary \\spad{J} part of octonion \\spad{o}.")) (|imagI| ((|#1| $) "\\spad{imagI(o)} extracts the imaginary \\spad{I} part of octonion \\spad{o}.")) (|imagE| ((|#1| $) "\\spad{imagE(o)} extracts the imaginary \\spad{E} part of octonion \\spad{o}.")) (|imagk| ((|#1| $) "\\spad{imagk(o)} extracts the \\spad{k} part of octonion \\spad{o}.")) (|imagj| ((|#1| $) "\\spad{imagj(o)} extracts the \\spad{j} part of octonion \\spad{o}.")) (|imagi| ((|#1| $) "\\spad{imagi(o)} extracts the \\spad{i} part of octonion \\spad{o}.")) (|real| ((|#1| $) "\\spad{real(o)} extracts real part of octonion \\spad{o}.")) (|conjugate| (($ $) "\\spad{conjugate(o)} negates the imaginary parts \\spad{i},{}\\spad{j},{}\\spad{k},{}\\spad{E},{}\\spad{I},{}\\spad{J},{}\\spad{K} of octonian \\spad{o}.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-804 -2740 R OS S)
((|constructor| (NIL "OctonionCategoryFunctions2 implements functions between two octonion domains defined over different rings. The function map is used to coerce between octonion types.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,u)} maps \\spad{f} onto the component parts of the octonion \\spad{u}.")))
@@ -3150,7 +3150,7 @@ NIL
NIL
(-805 R)
((|constructor| (NIL "Octonion implements octonions (Cayley-Dixon algebra) over a commutative ring,{} an eight-dimensional non-associative algebra,{} doubling the quaternions in the same way as doubling the complex numbers to get the quaternions the main constructor function is {\\em octon} which takes 8 arguments: the real part,{} the \\spad{i} imaginary part,{} the \\spad{j} imaginary part,{} the \\spad{k} imaginary part,{} (as with quaternions) and in addition the imaginary parts \\spad{E},{} \\spad{I},{} \\spad{J},{} \\spad{K}.")) (|octon| (($ (|Quaternion| |#1|) (|Quaternion| |#1|)) "\\spad{octon(qe,qE)} constructs an octonion from two quaternions using the relation {\\em O = Q + QE}.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (-2740 (|HasCategory| (-1008 |#1|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (|HasCategory| (-1008 |#1|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1069))) (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| (-1008 |#1|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1008 |#1|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))
(-806)
((|ODESolve| (((|Result|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{ODESolve(args)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{measure(R,args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
@@ -3214,15 +3214,15 @@ NIL
NIL
(-821 -2408 S |f|)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The ordering on the type is determined by its third argument which represents the less than function on vectors. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4442 |has| |#2| (-1058)) (-4443 |has| |#2| (-1058)) (-4445 |has| |#2| (-6 -4445)) ((-4450 "*") |has| |#2| (-174)) (-4448 . T))
-((-2740 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2740 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-235))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-174)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-235)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-373)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-854)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasAttribute| |#2| (QUOTE -4445)) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))))
+((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
+((-2740 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2740 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (|HasCategory| |#2| (QUOTE (-235))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-174)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-235)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-373)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-854)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (QUOTE (-1058)))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#2| (QUOTE (-1058))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))))
(-822 R)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialPolynomial} implements an ordinary differential polynomial ring in arbitrary number of differential indeterminates,{} with coefficients in a ring. The ranking on the differential indeterminate is orderly. This is analogous to the domain \\spadtype{Polynomial}. \\blankline")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-824 (-1186)) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-823 |Kernels| R |var|)
((|constructor| (NIL "This constructor produces an ordinary differential ring from a partial differential ring by specifying a variable.")))
-(((-4450 "*") |has| |#2| (-368)) (-4441 |has| |#2| (-368)) (-4446 |has| |#2| (-368)) (-4440 |has| |#2| (-368)) (-4445 . T) (-4443 . T) (-4442 . T))
+(((-4451 "*") |has| |#2| (-368)) (-4442 |has| |#2| (-368)) (-4447 |has| |#2| (-368)) (-4441 |has| |#2| (-368)) (-4446 . T) (-4444 . T) (-4443 . T))
((|HasCategory| |#2| (QUOTE (-368))))
(-824 S)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialVariable} adds a commonly used orderly ranking to the set of derivatives of an ordered list of differential indeterminates. An orderly ranking is a ranking \\spadfun{<} of the derivatives with the property that for two derivatives \\spad{u} and \\spad{v},{} \\spad{u} \\spadfun{<} \\spad{v} if the \\spadfun{order} of \\spad{u} is less than that of \\spad{v}. This domain belongs to \\spadtype{DifferentialVariableCategory}. It defines \\spadfun{weight} to be just \\spadfun{order},{} and it defines an orderly ranking \\spadfun{<} on derivatives \\spad{u} via the lexicographic order on the pair (\\spadfun{order}(\\spad{u}),{} \\spadfun{variable}(\\spad{u})).")))
@@ -3234,7 +3234,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-856))))
(-826)
((|constructor| (NIL "The category of ordered commutative integral domains,{} where ordering and the arithmetic operations are compatible \\blankline")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-827)
((|constructor| (NIL "\\spadtype{OpenMathConnection} provides low-level functions for handling connections to and from \\spadtype{OpenMathDevice}\\spad{s}.")) (|OMbindTCP| (((|Boolean|) $ (|SingleInteger|)) "\\spad{OMbindTCP}")) (|OMconnectTCP| (((|Boolean|) $ (|String|) (|SingleInteger|)) "\\spad{OMconnectTCP}")) (|OMconnOutDevice| (((|OpenMathDevice|) $) "\\spad{OMconnOutDevice:}")) (|OMconnInDevice| (((|OpenMathDevice|) $) "\\spad{OMconnInDevice:}")) (|OMcloseConn| (((|Void|) $) "\\spad{OMcloseConn}")) (|OMmakeConn| (($ (|SingleInteger|)) "\\spad{OMmakeConn}")))
@@ -3262,7 +3262,7 @@ NIL
NIL
(-833 P R)
((|constructor| (NIL "This constructor creates the \\spadtype{MonogenicLinearOperator} domain which is ``opposite\\spad{''} in the ring sense to \\spad{P}. That is,{} as sets \\spad{P = \\$} but \\spad{a * b} in \\spad{\\$} is equal to \\spad{b * a} in \\spad{P}.")) (|po| ((|#1| $) "\\spad{po(q)} creates a value in \\spad{P} equal to \\spad{q} in \\$.")) (|op| (($ |#1|) "\\spad{op(p)} creates a value in \\$ equal to \\spad{p} in \\spad{P}.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-235))))
(-834)
((|constructor| (NIL "\\spadtype{OpenMath} provides operations for exporting an object in OpenMath format.")) (|OMwrite| (((|Void|) (|OpenMathDevice|) $ (|Boolean|)) "\\spad{OMwrite(dev, u, true)} writes the OpenMath form of \\axiom{\\spad{u}} to the OpenMath device \\axiom{\\spad{dev}} as a complete OpenMath object; OMwrite(\\spad{dev},{} \\spad{u},{} \\spad{false}) writes the object as an OpenMath fragment.") (((|Void|) (|OpenMathDevice|) $) "\\spad{OMwrite(dev, u)} writes the OpenMath form of \\axiom{\\spad{u}} to the OpenMath device \\axiom{\\spad{dev}} as a complete OpenMath object.") (((|String|) $ (|Boolean|)) "\\spad{OMwrite(u, true)} returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as a complete OpenMath object; OMwrite(\\spad{u},{} \\spad{false}) returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as an OpenMath fragment.") (((|String|) $) "\\spad{OMwrite(u)} returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as a complete OpenMath object.")))
@@ -3274,7 +3274,7 @@ NIL
NIL
(-836 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4448 . T) (-4438 . T) (-4449 . T))
+((-4449 . T) (-4439 . T) (-4450 . T))
NIL
(-837)
((|constructor| (NIL "\\spadtype{OpenMathServerPackage} provides the necessary operations to run AXIOM as an OpenMath server,{} reading/writing objects to/from a port. Please note the facilities available here are very basic. The idea is that a user calls \\spadignore{e.g.} \\axiom{Omserve(4000,{}60)} and then another process sends OpenMath objects to port 4000 and reads the result.")) (|OMserve| (((|Void|) (|SingleInteger|) (|SingleInteger|)) "\\spad{OMserve(portnum,timeout)} puts AXIOM into server mode on port number \\axiom{\\spad{portnum}}. The parameter \\axiom{\\spad{timeout}} specifies the \\spad{timeout} period for the connection.")) (|OMsend| (((|Void|) (|OpenMathConnection|) (|Any|)) "\\spad{OMsend(c,u)} attempts to output \\axiom{\\spad{u}} on \\aciom{\\spad{c}} in OpenMath.")) (|OMreceive| (((|Any|) (|OpenMathConnection|)) "\\spad{OMreceive(c)} reads an OpenMath object from connection \\axiom{\\spad{c}} and returns the appropriate AXIOM object.")))
@@ -3286,7 +3286,7 @@ NIL
NIL
(-839 R)
((|constructor| (NIL "Adjunction of a complex infinity to a set. Date Created: 4 Oct 1989 Date Last Updated: 1 Nov 1989")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a finite rational number if it is one,{} \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a finite rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a finite rational number.")) (|infinite?| (((|Boolean|) $) "\\spad{infinite?(x)} tests if \\spad{x} is infinite.")) (|finite?| (((|Boolean|) $) "\\spad{finite?(x)} tests if \\spad{x} is finite.")) (|infinity| (($) "\\spad{infinity()} returns infinity.")))
-((-4445 |has| |#1| (-854)))
+((-4446 |has| |#1| (-854)))
((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-21))) (-2740 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-854)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-551))))
(-840 A S)
((|constructor| (NIL "This category specifies the interface for operators used to build terms,{} in the sense of Universal Algebra. The domain parameter \\spad{S} provides representation for the `external name' of an operator.")) (|is?| (((|Boolean|) $ |#2|) "\\spad{is?(op,n)} holds if the name of the operator \\spad{op} is \\spad{n}.")) (|arity| (((|Arity|) $) "\\spad{arity(op)} returns the arity of the operator \\spad{op}.")) (|name| ((|#2| $) "\\spad{name(op)} returns the externam name of \\spad{op}.")))
@@ -3298,7 +3298,7 @@ NIL
NIL
(-842 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) (-4445 . T))
+((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))))
(-843)
((|constructor| (NIL "This package exports tools to create AXIOM Library information databases.")) (|getDatabase| (((|Database| (|IndexCard|)) (|String|)) "\\spad{getDatabase(\"char\")} returns a list of appropriate entries in the browser database. The legal values for \\spad{\"char\"} are \"o\" (operations),{} \\spad{\"k\"} (constructors),{} \\spad{\"d\"} (domains),{} \\spad{\"c\"} (categories) or \\spad{\"p\"} (packages).")))
@@ -3326,7 +3326,7 @@ NIL
NIL
(-849 R)
((|constructor| (NIL "Adjunction of two real infinites quantities to a set. Date Created: 4 Oct 1989 Date Last Updated: 1 Nov 1989")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a finite rational number if it is one and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a finite rational number. Error: if \\spad{x} cannot be so converted.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a finite rational number.")) (|whatInfinity| (((|SingleInteger|) $) "\\spad{whatInfinity(x)} returns 0 if \\spad{x} is finite,{} 1 if \\spad{x} is +infinity,{} and \\spad{-1} if \\spad{x} is -infinity.")) (|infinite?| (((|Boolean|) $) "\\spad{infinite?(x)} tests if \\spad{x} is +infinity or -infinity,{}")) (|finite?| (((|Boolean|) $) "\\spad{finite?(x)} tests if \\spad{x} is finite.")) (|minusInfinity| (($) "\\spad{minusInfinity()} returns -infinity.")) (|plusInfinity| (($) "\\spad{plusInfinity()} returns +infinity.")))
-((-4445 |has| |#1| (-854)))
+((-4446 |has| |#1| (-854)))
((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-21))) (-2740 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-854)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-551))))
(-850)
((|constructor| (NIL "Ordered finite sets.")) (|max| (($) "\\spad{max} is the maximum value of \\%.")) (|min| (($) "\\spad{min} is the minimum value of \\%.")))
@@ -3346,7 +3346,7 @@ NIL
NIL
(-854)
((|constructor| (NIL "Ordered sets which are also rings,{} that is,{} domains where the ring operations are compatible with the ordering. \\blankline")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x}.")) (|sign| (((|Integer|) $) "\\spad{sign(x)} is 1 if \\spad{x} is positive,{} \\spad{-1} if \\spad{x} is negative,{} 0 if \\spad{x} equals 0.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(x)} tests whether \\spad{x} is strictly less than 0.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(x)} tests whether \\spad{x} is strictly greater than 0.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-855 S)
((|constructor| (NIL "The class of totally ordered sets,{} that is,{} sets such that for each pair of elements \\spad{(a,b)} exactly one of the following relations holds \\spad{a<b or a=b or b<a} and the relation is transitive,{} \\spadignore{i.e.} \\spad{a<b and b<c => a<c}.")) (|min| (($ $ $) "\\spad{min(x,y)} returns the minimum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (|max| (($ $ $) "\\spad{max(x,y)} returns the maximum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (<= (((|Boolean|) $ $) "\\spad{x <= y} is a less than or equal test.")) (>= (((|Boolean|) $ $) "\\spad{x >= y} is a greater than or equal test.")) (> (((|Boolean|) $ $) "\\spad{x > y} is a greater than test.")) (< (((|Boolean|) $ $) "\\spad{x < y} is a strict total ordering on the elements of the set.")))
@@ -3362,19 +3362,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))))
(-858 R)
((|constructor| (NIL "This is the category of univariate skew polynomials over an Ore coefficient ring. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}. This category is an evolution of the types \\indented{2}{MonogenicLinearOperator,{} OppositeMonogenicLinearOperator,{} and} \\indented{2}{NonCommutativeOperatorDivision} developped by Jean Della Dora and Stephen \\spad{M}. Watt.")) (|leftLcm| (($ $ $) "\\spad{leftLcm(a,b)} computes the value \\spad{m} of lowest degree such that \\spad{m = aa*a = bb*b} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using right-division.")) (|rightExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{rightExtendedGcd(a,b)} returns \\spad{[c,d]} such that \\spad{g = c * a + d * b = rightGcd(a, b)}.")) (|rightGcd| (($ $ $) "\\spad{rightGcd(a,b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = aa*g}} \\indented{3}{\\spad{b = bb*g}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using right-division.")) (|rightExactQuotient| (((|Union| $ "failed") $ $) "\\spad{rightExactQuotient(a,b)} computes the value \\spad{q},{} if it exists such that \\spad{a = q*b}.")) (|rightRemainder| (($ $ $) "\\spad{rightRemainder(a,b)} computes the pair \\spad{[q,r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|rightQuotient| (($ $ $) "\\spad{rightQuotient(a,b)} computes the pair \\spad{[q,r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|rightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{rightDivide(a,b)} returns the pair \\spad{[q,r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}.")) (|rightLcm| (($ $ $) "\\spad{rightLcm(a,b)} computes the value \\spad{m} of lowest degree such that \\spad{m = a*aa = b*bb} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using left-division.")) (|leftExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{leftExtendedGcd(a,b)} returns \\spad{[c,d]} such that \\spad{g = a * c + b * d = leftGcd(a, b)}.")) (|leftGcd| (($ $ $) "\\spad{leftGcd(a,b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = g*aa}} \\indented{3}{\\spad{b = g*bb}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using left-division.")) (|leftExactQuotient| (((|Union| $ "failed") $ $) "\\spad{leftExactQuotient(a,b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| (($ $ $) "\\spad{leftRemainder(a,b)} computes the pair \\spad{[q,r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|leftQuotient| (($ $ $) "\\spad{leftQuotient(a,b)} computes the pair \\spad{[q,r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|leftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{leftDivide(a,b)} returns the pair \\spad{[q,r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}.")) (|primitivePart| (($ $) "\\spad{primitivePart(l)} returns \\spad{l0} such that \\spad{l = a * l0} for some a in \\spad{R},{} and \\spad{content(l0) = 1}.")) (|content| ((|#1| $) "\\spad{content(l)} returns the \\spad{gcd} of all the coefficients of \\spad{l}.")) (|monicRightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicRightDivide(a,b)} returns the pair \\spad{[q,r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}.")) (|monicLeftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicLeftDivide(a,b)} returns the pair \\spad{[q,r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(l, a)} returns the exact quotient of \\spad{l} by a,{} returning \\axiom{\"failed\"} if this is not possible.")) (|apply| ((|#1| $ |#1| |#1|) "\\spad{apply(p, c, m)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(l)} returns the list of all the nonzero coefficients of \\spad{l}.")) (|monomial| (($ |#1| (|NonNegativeInteger|)) "\\spad{monomial(c,k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,1)}.")) (|coefficient| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) ~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),i), i = 0..n)}.}")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-859 R C)
((|constructor| (NIL "\\spad{UnivariateSkewPolynomialCategoryOps} provides products and \\indented{1}{divisions of univariate skew polynomials.}")) (|rightDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{rightDivide(a, b, sigma)} returns the pair \\spad{[q,r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|leftDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{leftDivide(a, b, sigma)} returns the pair \\spad{[q,r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|monicRightDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{monicRightDivide(a, b, sigma)} returns the pair \\spad{[q,r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|monicLeftDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{monicLeftDivide(a, b, sigma)} returns the pair \\spad{[q,r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|apply| ((|#1| |#2| |#1| |#1| (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{apply(p, c, m, sigma, delta)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|times| ((|#2| |#2| |#2| (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{times(p, q, sigma, delta)} returns \\spad{p * q}. \\spad{\\sigma} and \\spad{\\delta} are the maps to use.")))
NIL
((|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562))))
-(-860 R |sigma| -3048)
+(-860 R |sigma| -3049)
((|constructor| (NIL "This is the domain of sparse univariate skew polynomials over an Ore coefficient field. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}.")) (|outputForm| (((|OutputForm|) $ (|OutputForm|)) "\\spad{outputForm(p, x)} returns the output form of \\spad{p} using \\spad{x} for the otherwise anonymous variable.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-368))))
-(-861 |x| R |sigma| -3048)
+(-861 |x| R |sigma| -3049)
((|constructor| (NIL "This is the domain of univariate skew polynomials over an Ore coefficient field in a named variable. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}.")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-368))))
(-862 R)
((|constructor| (NIL "This package provides orthogonal polynomials as functions on a ring.")) (|legendreP| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{legendreP(n,x)} is the \\spad{n}-th Legendre polynomial,{} \\spad{P[n](x)}. These are defined by \\spad{1/sqrt(1-2*x*t+t**2) = sum(P[n](x)*t**n, n = 0..)}.")) (|laguerreL| ((|#1| (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{laguerreL(m,n,x)} is the associated Laguerre polynomial,{} \\spad{L<m>[n](x)}. This is the \\spad{m}-th derivative of \\spad{L[n](x)}.") ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{laguerreL(n,x)} is the \\spad{n}-th Laguerre polynomial,{} \\spad{L[n](x)}. These are defined by \\spad{exp(-t*x/(1-t))/(1-t) = sum(L[n](x)*t**n/n!, n = 0..)}.")) (|hermiteH| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{hermiteH(n,x)} is the \\spad{n}-th Hermite polynomial,{} \\spad{H[n](x)}. These are defined by \\spad{exp(2*t*x-t**2) = sum(H[n](x)*t**n/n!, n = 0..)}.")) (|chebyshevU| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{chebyshevU(n,x)} is the \\spad{n}-th Chebyshev polynomial of the second kind,{} \\spad{U[n](x)}. These are defined by \\spad{1/(1-2*t*x+t**2) = sum(T[n](x) *t**n, n = 0..)}.")) (|chebyshevT| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{chebyshevT(n,x)} is the \\spad{n}-th Chebyshev polynomial of the first kind,{} \\spad{T[n](x)}. These are defined by \\spad{(1-t*x)/(1-2*t*x+t**2) = sum(T[n](x) *t**n, n = 0..)}.")))
@@ -3418,7 +3418,7 @@ NIL
NIL
(-872 R |vl| |wl| |wtlevel|)
((|constructor| (NIL "This domain represents truncated weighted polynomials over the \"Polynomial\" type. The variables must be specified,{} as must the weights. The representation is sparse in the sense that only non-zero terms are represented.")) (|changeWeightLevel| (((|Void|) (|NonNegativeInteger|)) "\\spad{changeWeightLevel(n)} This changes the weight level to the new value given: \\spad{NB:} previously calculated terms are not affected")) (/ (((|Union| $ "failed") $ $) "\\spad{x/y} division (only works if minimum weight of divisor is zero,{} and if \\spad{R} is a Field)")))
-((-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) (-4445 . T))
+((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))))
(-873 R PS UP)
((|constructor| (NIL "\\indented{1}{This package computes reliable Pad&ea. approximants using} a generalized Viskovatov continued fraction algorithm. Authors: Burge,{} Hassner & Watt. Date Created: April 1987 Date Last Updated: 12 April 1990 Keywords: Pade,{} series Examples: References: \\indented{2}{\"Pade Approximants,{} Part I: Basic Theory\",{} Baker & Graves-Morris.}")) (|padecf| (((|Union| (|ContinuedFraction| |#3|) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) |#2| |#2|) "\\spad{padecf(nd,dd,ns,ds)} computes the approximant as a continued fraction of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")) (|pade| (((|Union| (|Fraction| |#3|) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) |#2| |#2|) "\\spad{pade(nd,dd,ns,ds)} computes the approximant as a quotient of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")))
@@ -3430,19 +3430,19 @@ NIL
NIL
(-875 |p|)
((|constructor| (NIL "This is the catefory of stream-based representations of \\indented{2}{the \\spad{p}-adic integers.}")) (|root| (($ (|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{root(f,a)} returns a root of the polynomial \\spad{f}. Argument \\spad{a} must be a root of \\spad{f} \\spad{(mod p)}.")) (|sqrt| (($ $ (|Integer|)) "\\spad{sqrt(b,a)} returns a square root of \\spad{b}. Argument \\spad{a} is a square root of \\spad{b} \\spad{(mod p)}.")) (|approximate| (((|Integer|) $ (|Integer|)) "\\spad{approximate(x,n)} returns an integer \\spad{y} such that \\spad{y = x (mod p^n)} when \\spad{n} is positive,{} and 0 otherwise.")) (|quotientByP| (($ $) "\\spad{quotientByP(x)} returns \\spad{b},{} where \\spad{x = a + b p}.")) (|moduloP| (((|Integer|) $) "\\spad{modulo(x)} returns a,{} where \\spad{x = a + b p}.")) (|modulus| (((|Integer|)) "\\spad{modulus()} returns the value of \\spad{p}.")) (|complete| (($ $) "\\spad{complete(x)} forces the computation of all digits.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(x,n)} forces the computation of digits up to order \\spad{n}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(x)} returns the exponent of the highest power of \\spad{p} dividing \\spad{x}.")) (|digits| (((|Stream| (|Integer|)) $) "\\spad{digits(x)} returns a stream of \\spad{p}-adic digits of \\spad{x}.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-876 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Zp:} \\spad{p}-adic numbers are represented as sum(\\spad{i} = 0..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in 0,{}1,{}...,{}(\\spad{p} - 1).")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-877 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Qp:} numbers are represented as sum(\\spad{i} = \\spad{k}..,{} a[\\spad{i}] * p^i) where the a[\\spad{i}] lie in 0,{}1,{}...,{}(\\spad{p} - 1).")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-876 |#1|) (QUOTE (-916))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-876 |#1|) (QUOTE (-146))) (|HasCategory| (-876 |#1|) (QUOTE (-148))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-876 |#1|) (QUOTE (-1031))) (|HasCategory| (-876 |#1|) (QUOTE (-826))) (-2740 (|HasCategory| (-876 |#1|) (QUOTE (-826))) (|HasCategory| (-876 |#1|) (QUOTE (-856)))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-876 |#1|) (QUOTE (-1161))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| (-876 |#1|) (QUOTE (-235))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -876) (|devaluate| |#1|)))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -313) (LIST (QUOTE -876) (|devaluate| |#1|)))) (|HasCategory| (-876 |#1|) (LIST (QUOTE -290) (LIST (QUOTE -876) (|devaluate| |#1|)) (LIST (QUOTE -876) (|devaluate| |#1|)))) (|HasCategory| (-876 |#1|) (QUOTE (-311))) (|HasCategory| (-876 |#1|) (QUOTE (-551))) (|HasCategory| (-876 |#1|) (QUOTE (-856))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-876 |#1|) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-876 |#1|) (QUOTE (-916)))) (|HasCategory| (-876 |#1|) (QUOTE (-146)))))
(-878 |p| PADIC)
((|constructor| (NIL "This is the category of stream-based representations of \\spad{Qp}.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,x)} removes up to \\spad{n} leading zeroes from the \\spad{p}-adic rational \\spad{x}.") (($ $) "\\spad{removeZeroes(x)} removes leading zeroes from the representation of the \\spad{p}-adic rational \\spad{x}. A \\spad{p}-adic rational is represented by (1) an exponent and (2) a \\spad{p}-adic integer which may have leading zero digits. When the \\spad{p}-adic integer has a leading zero digit,{} a 'leading zero' is removed from the \\spad{p}-adic rational as follows: the number is rewritten by increasing the exponent by 1 and dividing the \\spad{p}-adic integer by \\spad{p}. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}.")) (|continuedFraction| (((|ContinuedFraction| (|Fraction| (|Integer|))) $) "\\spad{continuedFraction(x)} converts the \\spad{p}-adic rational number \\spad{x} to a continued fraction.")) (|approximate| (((|Fraction| (|Integer|)) $ (|Integer|)) "\\spad{approximate(x,n)} returns a rational number \\spad{y} such that \\spad{y = x (mod p^n)}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-1031))) (|HasCategory| |#2| (QUOTE (-826))) (-2740 (|HasCategory| |#2| (QUOTE (-826))) (|HasCategory| |#2| (QUOTE (-856)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-1161))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (QUOTE (-856))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
(-879 S T$)
((|constructor| (NIL "\\indented{1}{This domain provides a very simple representation} of the notion of `pair of objects'. It does not try to achieve all possible imaginable things.")) (|second| ((|#2| $) "\\spad{second(p)} extracts the second components of \\spad{`p'}.")) (|first| ((|#1| $) "\\spad{first(p)} extracts the first component of \\spad{`p'}.")) (|construct| (($ |#1| |#2|) "\\spad{construct(s,t)} is same as pair(\\spad{s},{}\\spad{t}),{} with syntactic sugar.")) (|pair| (($ |#1| |#2|) "\\spad{pair(s,t)} returns a pair object composed of \\spad{`s'} and \\spad{`t'}.")))
@@ -3507,7 +3507,7 @@ NIL
(-894 |Base| |Subject| |Pat|)
((|constructor| (NIL "This package provides the top-level pattern macthing functions.")) (|Is| (((|PatternMatchResult| |#1| |#2|) |#2| |#3|) "\\spad{Is(expr, pat)} matches the pattern pat on the expression \\spad{expr} and returns a match of the form \\spad{[v1 = e1,...,vn = en]}; returns an empty match if \\spad{expr} is exactly equal to pat. returns a \\spadfun{failed} match if pat does not match \\spad{expr}.") (((|List| (|Equation| (|Polynomial| |#2|))) |#2| |#3|) "\\spad{Is(expr, pat)} matches the pattern pat on the expression \\spad{expr} and returns a list of matches \\spad{[v1 = e1,...,vn = en]}; returns an empty list if either \\spad{expr} is exactly equal to pat or if pat does not match \\spad{expr}.") (((|List| (|Equation| |#2|)) |#2| |#3|) "\\spad{Is(expr, pat)} matches the pattern pat on the expression \\spad{expr} and returns a list of matches \\spad{[v1 = e1,...,vn = en]}; returns an empty list if either \\spad{expr} is exactly equal to pat or if pat does not match \\spad{expr}.") (((|PatternMatchListResult| |#1| |#2| (|List| |#2|)) (|List| |#2|) |#3|) "\\spad{Is([e1,...,en], pat)} matches the pattern pat on the list of expressions \\spad{[e1,...,en]} and returns the result.")) (|is?| (((|Boolean|) (|List| |#2|) |#3|) "\\spad{is?([e1,...,en], pat)} tests if the list of expressions \\spad{[e1,...,en]} matches the pattern pat.") (((|Boolean|) |#2| |#3|) "\\spad{is?(expr, pat)} tests if the expression \\spad{expr} matches the pattern pat.")))
NIL
-((-12 (-1754 (|HasCategory| |#2| (QUOTE (-1058)))) (-1754 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (-1754 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))
+((-12 (-1753 (|HasCategory| |#2| (QUOTE (-1058)))) (-1753 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (-1753 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))
(-895 R A B)
((|constructor| (NIL "Lifts maps to pattern matching results.")) (|map| (((|PatternMatchResult| |#1| |#3|) (|Mapping| |#3| |#2|) (|PatternMatchResult| |#1| |#2|)) "\\spad{map(f, [(v1,a1),...,(vn,an)])} returns the matching result [(\\spad{v1},{}\\spad{f}(a1)),{}...,{}(\\spad{vn},{}\\spad{f}(an))].")))
NIL
@@ -3558,7 +3558,7 @@ NIL
NIL
(-907 S)
((|constructor| (NIL "A partial differential ring with differentiations indexed by a parameter type \\spad{S}. \\blankline")) (D (($ $ (|List| |#1|) (|List| (|NonNegativeInteger|))) "\\spad{D(x, [s1,...,sn], [n1,...,nn])} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x, s1, n1)..., sn, nn)}.") (($ $ |#1| (|NonNegativeInteger|)) "\\spad{D(x, s, n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#1|)) "\\spad{D(x,[s1,...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x, s1)..., sn)}.") (($ $ |#1|) "\\spad{D(x,v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")) (|differentiate| (($ $ (|List| |#1|) (|List| (|NonNegativeInteger|))) "\\spad{differentiate(x, [s1,...,sn], [n1,...,nn])} computes multiple partial derivatives,{} \\spadignore{i.e.}") (($ $ |#1| (|NonNegativeInteger|)) "\\spad{differentiate(x, s, n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#1|)) "\\spad{differentiate(x,[s1,...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{differentiate(...differentiate(x, s1)..., sn)}.") (($ $ |#1|) "\\spad{differentiate(x,v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-908 S)
((|constructor| (NIL "\\indented{1}{A PendantTree(\\spad{S})is either a leaf? and is an \\spad{S} or has} a left and a right both PendantTree(\\spad{S})\\spad{'s}")) (|ptree| (($ $ $) "\\spad{ptree(x,y)} \\undocumented") (($ |#1|) "\\spad{ptree(s)} is a leaf? pendant tree")))
@@ -3570,7 +3570,7 @@ NIL
NIL
(-910 S)
((|constructor| (NIL "PermutationCategory provides a categorial environment \\indented{1}{for subgroups of bijections of a set (\\spadignore{i.e.} permutations)}")) (< (((|Boolean|) $ $) "\\spad{p < q} is an order relation on permutations. Note: this order is only total if and only if \\spad{S} is totally ordered or \\spad{S} is finite.")) (|orbit| (((|Set| |#1|) $ |#1|) "\\spad{orbit(p, el)} returns the orbit of {\\em el} under the permutation \\spad{p},{} \\spadignore{i.e.} the set which is given by applications of the powers of \\spad{p} to {\\em el}.")) (|elt| ((|#1| $ |#1|) "\\spad{elt(p, el)} returns the image of {\\em el} under the permutation \\spad{p}.")) (|eval| ((|#1| $ |#1|) "\\spad{eval(p, el)} returns the image of {\\em el} under the permutation \\spad{p}.")) (|cycles| (($ (|List| (|List| |#1|))) "\\spad{cycles(lls)} coerces a list list of cycles {\\em lls} to a permutation,{} each cycle being a list with not repetitions,{} is coerced to the permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list,{} then these permutations are mutiplied. Error: if repetitions occur in one cycle.")) (|cycle| (($ (|List| |#1|)) "\\spad{cycle(ls)} coerces a cycle {\\em ls},{} \\spadignore{i.e.} a list with not repetitions to a permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list. Error: if repetitions occur.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-911 S)
((|constructor| (NIL "PermutationGroup implements permutation groups acting on a set \\spad{S},{} \\spadignore{i.e.} all subgroups of the symmetric group of \\spad{S},{} represented as a list of permutations (generators). Note that therefore the objects are not members of the \\Language category \\spadtype{Group}. Using the idea of base and strong generators by Sims,{} basic routines and algorithms are implemented so that the word problem for permutation groups can be solved.")) (|initializeGroupForWordProblem| (((|Void|) $ (|Integer|) (|Integer|)) "\\spad{initializeGroupForWordProblem(gp,m,n)} initializes the group {\\em gp} for the word problem. Notes: (1) with a small integer you get shorter words,{} but the routine takes longer than the standard routine for longer words. (2) be careful: invoking this routine will destroy the possibly stored information about your group (but will recompute it again). (3) users need not call this function normally for the soultion of the word problem.") (((|Void|) $) "\\spad{initializeGroupForWordProblem(gp)} initializes the group {\\em gp} for the word problem. Notes: it calls the other function of this name with parameters 0 and 1: {\\em initializeGroupForWordProblem(gp,0,1)}. Notes: (1) be careful: invoking this routine will destroy the possibly information about your group (but will recompute it again) (2) users need not call this function normally for the soultion of the word problem.")) (<= (((|Boolean|) $ $) "\\spad{gp1 <= gp2} returns \\spad{true} if and only if {\\em gp1} is a subgroup of {\\em gp2}. Note: because of a bug in the parser you have to call this function explicitly by {\\em gp1 <=\\$(PERMGRP S) gp2}.")) (< (((|Boolean|) $ $) "\\spad{gp1 < gp2} returns \\spad{true} if and only if {\\em gp1} is a proper subgroup of {\\em gp2}.")) (|movedPoints| (((|Set| |#1|) $) "\\spad{movedPoints(gp)} returns the points moved by the group {\\em gp}.")) (|wordInGenerators| (((|List| (|NonNegativeInteger|)) (|Permutation| |#1|) $) "\\spad{wordInGenerators(p,gp)} returns the word for the permutation \\spad{p} in the original generators of the group {\\em gp},{} represented by the indices of the list,{} given by {\\em generators}.")) (|wordInStrongGenerators| (((|List| (|NonNegativeInteger|)) (|Permutation| |#1|) $) "\\spad{wordInStrongGenerators(p,gp)} returns the word for the permutation \\spad{p} in the strong generators of the group {\\em gp},{} represented by the indices of the list,{} given by {\\em strongGenerators}.")) (|member?| (((|Boolean|) (|Permutation| |#1|) $) "\\spad{member?(pp,gp)} answers the question,{} whether the permutation {\\em pp} is in the group {\\em gp} or not.")) (|orbits| (((|Set| (|Set| |#1|)) $) "\\spad{orbits(gp)} returns the orbits of the group {\\em gp},{} \\spadignore{i.e.} it partitions the (finite) of all moved points.")) (|orbit| (((|Set| (|List| |#1|)) $ (|List| |#1|)) "\\spad{orbit(gp,ls)} returns the orbit of the ordered list {\\em ls} under the group {\\em gp}. Note: return type is \\spad{L} \\spad{L} \\spad{S} temporarily because FSET \\spad{L} \\spad{S} has an error.") (((|Set| (|Set| |#1|)) $ (|Set| |#1|)) "\\spad{orbit(gp,els)} returns the orbit of the unordered set {\\em els} under the group {\\em gp}.") (((|Set| |#1|) $ |#1|) "\\spad{orbit(gp,el)} returns the orbit of the element {\\em el} under the group {\\em gp},{} \\spadignore{i.e.} the set of all points gained by applying each group element to {\\em el}.")) (|permutationGroup| (($ (|List| (|Permutation| |#1|))) "\\spad{permutationGroup(ls)} coerces a list of permutations {\\em ls} to the group generated by this list.")) (|wordsForStrongGenerators| (((|List| (|List| (|NonNegativeInteger|))) $) "\\spad{wordsForStrongGenerators(gp)} returns the words for the strong generators of the group {\\em gp} in the original generators of {\\em gp},{} represented by their indices in the list,{} given by {\\em generators}.")) (|strongGenerators| (((|List| (|Permutation| |#1|)) $) "\\spad{strongGenerators(gp)} returns strong generators for the group {\\em gp}.")) (|base| (((|List| |#1|) $) "\\spad{base(gp)} returns a base for the group {\\em gp}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(gp)} returns the number of points moved by all permutations of the group {\\em gp}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(gp)} returns the order of the group {\\em gp}.")) (|random| (((|Permutation| |#1|) $) "\\spad{random(gp)} returns a random product of maximal 20 generators of the group {\\em gp}. Note: {\\em random(gp)=random(gp,20)}.") (((|Permutation| |#1|) $ (|Integer|)) "\\spad{random(gp,i)} returns a random product of maximal \\spad{i} generators of the group {\\em gp}.")) (|elt| (((|Permutation| |#1|) $ (|NonNegativeInteger|)) "\\spad{elt(gp,i)} returns the \\spad{i}-th generator of the group {\\em gp}.")) (|generators| (((|List| (|Permutation| |#1|)) $) "\\spad{generators(gp)} returns the generators of the group {\\em gp}.")) (|coerce| (($ (|List| (|Permutation| |#1|))) "\\spad{coerce(ls)} coerces a list of permutations {\\em ls} to the group generated by this list.") (((|List| (|Permutation| |#1|)) $) "\\spad{coerce(gp)} returns the generators of the group {\\em gp}.")))
@@ -3578,7 +3578,7 @@ NIL
NIL
(-912 S)
((|constructor| (NIL "Permutation(\\spad{S}) implements the group of all bijections \\indented{2}{on a set \\spad{S},{} which move only a finite number of points.} \\indented{2}{A permutation is considered as a map from \\spad{S} into \\spad{S}. In particular} \\indented{2}{multiplication is defined as composition of maps:} \\indented{2}{{\\em pi1 * pi2 = pi1 o pi2}.} \\indented{2}{The internal representation of permuatations are two lists} \\indented{2}{of equal length representing preimages and images.}")) (|coerceImages| (($ (|List| |#1|)) "\\spad{coerceImages(ls)} coerces the list {\\em ls} to a permutation whose image is given by {\\em ls} and the preimage is fixed to be {\\em [1,...,n]}. Note: {coerceImages(\\spad{ls})=coercePreimagesImages([1,{}...,{}\\spad{n}],{}\\spad{ls})}. We assume that both preimage and image do not contain repetitions.")) (|fixedPoints| (((|Set| |#1|) $) "\\spad{fixedPoints(p)} returns the points fixed by the permutation \\spad{p}.")) (|sort| (((|List| $) (|List| $)) "\\spad{sort(lp)} sorts a list of permutations {\\em lp} according to cycle structure first according to length of cycles,{} second,{} if \\spad{S} has \\spadtype{Finite} or \\spad{S} has \\spadtype{OrderedSet} according to lexicographical order of entries in cycles of equal length.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(p)} returns \\spad{true} if and only if \\spad{p} is an odd permutation \\spadignore{i.e.} {\\em sign(p)} is {\\em -1}.")) (|even?| (((|Boolean|) $) "\\spad{even?(p)} returns \\spad{true} if and only if \\spad{p} is an even permutation,{} \\spadignore{i.e.} {\\em sign(p)} is 1.")) (|sign| (((|Integer|) $) "\\spad{sign(p)} returns the signum of the permutation \\spad{p},{} \\spad{+1} or \\spad{-1}.")) (|numberOfCycles| (((|NonNegativeInteger|) $) "\\spad{numberOfCycles(p)} returns the number of non-trivial cycles of the permutation \\spad{p}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of a permutation \\spad{p} as a group element.")) (|cyclePartition| (((|Partition|) $) "\\spad{cyclePartition(p)} returns the cycle structure of a permutation \\spad{p} including cycles of length 1 only if \\spad{S} is finite.")) (|movedPoints| (((|Set| |#1|) $) "\\spad{movedPoints(p)} returns the set of points moved by the permutation \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} retuns the number of points moved by the permutation \\spad{p}.")) (|coerceListOfPairs| (($ (|List| (|List| |#1|))) "\\spad{coerceListOfPairs(lls)} coerces a list of pairs {\\em lls} to a permutation. Error: if not consistent,{} \\spadignore{i.e.} the set of the first elements coincides with the set of second elements. coerce(\\spad{p}) generates output of the permutation \\spad{p} with domain OutputForm.")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(ls)} coerces a cycle {\\em ls},{} \\spadignore{i.e.} a list with not repetitions to a permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list. Error: if repetitions occur.") (($ (|List| (|List| |#1|))) "\\spad{coerce(lls)} coerces a list of cycles {\\em lls} to a permutation,{} each cycle being a list with no repetitions,{} is coerced to the permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list,{} then these permutations are mutiplied. Error: if repetitions occur in one cycle.")) (|coercePreimagesImages| (($ (|List| (|List| |#1|))) "\\spad{coercePreimagesImages(lls)} coerces the representation {\\em lls} of a permutation as a list of preimages and images to a permutation. We assume that both preimage and image do not contain repetitions.")) (|listRepresentation| (((|Record| (|:| |preimage| (|List| |#1|)) (|:| |image| (|List| |#1|))) $) "\\spad{listRepresentation(p)} produces a representation {\\em rep} of the permutation \\spad{p} as a list of preimages and images,{} \\spad{i}.\\spad{e} \\spad{p} maps {\\em (rep.preimage).k} to {\\em (rep.image).k} for all indices \\spad{k}. Elements of \\spad{S} not in {\\em (rep.preimage).k} are fixed points,{} and these are the only fixed points of the permutation.")))
-((-4445 . T))
+((-4446 . T))
((-2740 (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-856)))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-856))))
(-913 R E |VarSet| S)
((|constructor| (NIL "PolynomialFactorizationByRecursion(\\spad{R},{}\\spad{E},{}\\spad{VarSet},{}\\spad{S}) is used for factorization of sparse univariate polynomials over a domain \\spad{S} of multivariate polynomials over \\spad{R}.")) (|factorSFBRlcUnit| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|List| |#3|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorSFBRlcUnit(p)} returns the square free factorization of polynomial \\spad{p} (see \\spadfun{factorSquareFreeByRecursion}{PolynomialFactorizationByRecursionUnivariate}) in the case where the leading coefficient of \\spad{p} is a unit.")) (|bivariateSLPEBR| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|List| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|) |#3|) "\\spad{bivariateSLPEBR(lp,p,v)} implements the bivariate case of \\spadfunFrom{solveLinearPolynomialEquationByRecursion}{PolynomialFactorizationByRecursionUnivariate}; its implementation depends on \\spad{R}")) (|randomR| ((|#1|) "\\spad{randomR produces} a random element of \\spad{R}")) (|factorSquareFreeByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorSquareFreeByRecursion(p)} returns the square free factorization of \\spad{p}. This functions performs the recursion step for factorSquareFreePolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorSquareFreePolynomial}).")) (|factorByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorByRecursion(p)} factors polynomial \\spad{p}. This function performs the recursion step for factorPolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorPolynomial})")) (|solveLinearPolynomialEquationByRecursion| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|List| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{solveLinearPolynomialEquationByRecursion([p1,...,pn],p)} returns the list of polynomials \\spad{[q1,...,qn]} such that \\spad{sum qi/pi = p / prod pi},{} a recursion step for solveLinearPolynomialEquation as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{solveLinearPolynomialEquation}). If no such list of \\spad{qi} exists,{} then \"failed\" is returned.")))
@@ -3594,11 +3594,11 @@ NIL
((|HasCategory| |#1| (QUOTE (-146))))
(-916)
((|constructor| (NIL "This is the category of domains that know \"enough\" about themselves in order to factor univariate polynomials over themselves. This will be used in future releases for supporting factorization over finitely generated coefficient fields,{} it is not yet available in the current release of axiom.")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(r)} returns the \\spad{p}\\spad{-}th root of \\spad{r},{} or \"failed\" if none exists in the domain.")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(m)} returns a vector of elements,{} not all zero,{} whose \\spad{p}\\spad{-}th powers (\\spad{p} is the characteristic of the domain) are a solution of the homogenous linear system represented by \\spad{m},{} or \"failed\" is there is no such vector.")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| $)) "failed") (|List| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{solveLinearPolynomialEquation([f1, ..., fn], g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod fi = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")) (|gcdPolynomial| (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $)) "\\spad{gcdPolynomial(p,q)} returns the \\spad{gcd} of the univariate polynomials \\spad{p} \\spad{qnd} \\spad{q}.")) (|factorSquareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorSquareFreePolynomial(p)} factors the univariate polynomial \\spad{p} into irreducibles where \\spad{p} is known to be square free and primitive with respect to its main variable.")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} returns the factorization into irreducibles of the univariate polynomial \\spad{p}.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} returns the square-free factorization of the univariate polynomial \\spad{p}.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-917 |p|)
((|constructor| (NIL "PrimeField(\\spad{p}) implements the field with \\spad{p} elements if \\spad{p} is a prime number. Error: if \\spad{p} is not prime. Note: this domain does not check that argument is a prime.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| $ (QUOTE (-148))) (|HasCategory| $ (QUOTE (-146))) (|HasCategory| $ (QUOTE (-373))))
(-918 R0 -1674 UP UPUP R)
((|constructor| (NIL "This package provides function for testing whether a divisor on a curve is a torsion divisor.")) (|torsionIfCan| (((|Union| (|Record| (|:| |order| (|NonNegativeInteger|)) (|:| |function| |#5|)) "failed") (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{torsionIfCan(f)}\\\\ undocumented")) (|torsion?| (((|Boolean|) (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{torsion?(f)} \\undocumented")) (|order| (((|Union| (|NonNegativeInteger|) "failed") (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{order(f)} \\undocumented")))
@@ -3614,7 +3614,7 @@ NIL
NIL
(-921 R)
((|constructor| (NIL "The domain \\spadtype{PartialFraction} implements partial fractions over a euclidean domain \\spad{R}. This requirement on the argument domain allows us to normalize the fractions. Of particular interest are the 2 forms for these fractions. The ``compact\\spad{''} form has only one fractional term per prime in the denominator,{} while the \\spad{``p}-adic\\spad{''} form expands each numerator \\spad{p}-adically via the prime \\spad{p} in the denominator. For computational efficiency,{} the compact form is used,{} though the \\spad{p}-adic form may be gotten by calling the function \\spadfunFrom{padicFraction}{PartialFraction}. For a general euclidean domain,{} it is not known how to factor the denominator. Thus the function \\spadfunFrom{partialFraction}{PartialFraction} takes as its second argument an element of \\spadtype{Factored(R)}.")) (|wholePart| ((|#1| $) "\\spad{wholePart(p)} extracts the whole part of the partial fraction \\spad{p}.")) (|partialFraction| (($ |#1| (|Factored| |#1|)) "\\spad{partialFraction(numer,denom)} is the main function for constructing partial fractions. The second argument is the denominator and should be factored.")) (|padicFraction| (($ $) "\\spad{padicFraction(q)} expands the fraction \\spad{p}-adically in the primes \\spad{p} in the denominator of \\spad{q}. For example,{} \\spad{padicFraction(3/(2**2)) = 1/2 + 1/(2**2)}. Use \\spadfunFrom{compactFraction}{PartialFraction} to return to compact form.")) (|padicallyExpand| (((|SparseUnivariatePolynomial| |#1|) |#1| |#1|) "\\spad{padicallyExpand(p,x)} is a utility function that expands the second argument \\spad{x} \\spad{``p}-adically\\spad{''} in the first.")) (|numberOfFractionalTerms| (((|Integer|) $) "\\spad{numberOfFractionalTerms(p)} computes the number of fractional terms in \\spad{p}. This returns 0 if there is no fractional part.")) (|nthFractionalTerm| (($ $ (|Integer|)) "\\spad{nthFractionalTerm(p,n)} extracts the \\spad{n}th fractional term from the partial fraction \\spad{p}. This returns 0 if the index \\spad{n} is out of range.")) (|firstNumer| ((|#1| $) "\\spad{firstNumer(p)} extracts the numerator of the first fractional term. This returns 0 if there is no fractional part (use \\spadfunFrom{wholePart}{PartialFraction} to get the whole part).")) (|firstDenom| (((|Factored| |#1|) $) "\\spad{firstDenom(p)} extracts the denominator of the first fractional term. This returns 1 if there is no fractional part (use \\spadfunFrom{wholePart}{PartialFraction} to get the whole part).")) (|compactFraction| (($ $) "\\spad{compactFraction(p)} normalizes the partial fraction \\spad{p} to the compact representation. In this form,{} the partial fraction has only one fractional term per prime in the denominator.")) (|coerce| (($ (|Fraction| (|Factored| |#1|))) "\\spad{coerce(f)} takes a fraction with numerator and denominator in factored form and creates a partial fraction. It is necessary for the parts to be factored because it is not known in general how to factor elements of \\spad{R} and this is needed to decompose into partial fractions.") (((|Fraction| |#1|) $) "\\spad{coerce(p)} sums up the components of the partial fraction and returns a single fraction.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-922 R)
((|constructor| (NIL "The package \\spadtype{PartialFractionPackage} gives an easier to use interfact the domain \\spadtype{PartialFraction}. The user gives a fraction of polynomials,{} and a variable and the package converts it to the proper datatype for the \\spadtype{PartialFraction} domain.")) (|partialFraction| (((|Any|) (|Polynomial| |#1|) (|Factored| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{partialFraction(num, facdenom, var)} returns the partial fraction decomposition of the rational function whose numerator is \\spad{num} and whose factored denominator is \\spad{facdenom} with respect to the variable var.") (((|Any|) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{partialFraction(rf, var)} returns the partial fraction decomposition of the rational function \\spad{rf} with respect to the variable var.")))
@@ -3638,11 +3638,11 @@ NIL
NIL
(-927)
((|constructor| (NIL "The category of constructive principal ideal domains,{} \\spadignore{i.e.} where a single generator can be constructively found for any ideal given by a finite set of generators. Note that this constructive definition only implies that finitely generated ideals are principal. It is not clear what we would mean by an infinitely generated ideal.")) (|expressIdealMember| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{expressIdealMember([f1,...,fn],h)} returns a representation of \\spad{h} as a linear combination of the \\spad{fi} or \"failed\" if \\spad{h} is not in the ideal generated by the \\spad{fi}.")) (|principalIdeal| (((|Record| (|:| |coef| (|List| $)) (|:| |generator| $)) (|List| $)) "\\spad{principalIdeal([f1,...,fn])} returns a record whose generator component is a generator of the ideal generated by \\spad{[f1,...,fn]} whose coef component satisfies \\spad{generator = sum (input.i * coef.i)}")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-928)
((|constructor| (NIL "\\spadtype{PositiveInteger} provides functions for \\indented{2}{positive integers.}")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} means multiplication is commutative : x*y = \\spad{y*x}")) (|gcd| (($ $ $) "\\spad{gcd(a,b)} computes the greatest common divisor of two positive integers \\spad{a} and \\spad{b}.")))
-(((-4450 "*") . T))
+(((-4451 "*") . T))
NIL
(-929 -1674 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,l2)} \\undocumented")))
@@ -3730,7 +3730,7 @@ NIL
NIL
(-950 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#1| (QUOTE (-1058))) (-12 (|HasCategory| |#1| (QUOTE (-1011))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-951 |lv| R)
((|constructor| (NIL "Package with the conversion functions among different kind of polynomials")) (|pToDmp| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|Polynomial| |#2|)) "\\spad{pToDmp(p)} converts \\spad{p} from a \\spadtype{POLY} to a \\spadtype{DMP}.")) (|dmpToP| (((|Polynomial| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{dmpToP(p)} converts \\spad{p} from a \\spadtype{DMP} to a \\spadtype{POLY}.")) (|hdmpToP| (((|Polynomial| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{hdmpToP(p)} converts \\spad{p} from a \\spadtype{HDMP} to a \\spadtype{POLY}.")) (|pToHdmp| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|Polynomial| |#2|)) "\\spad{pToHdmp(p)} converts \\spad{p} from a \\spadtype{POLY} to a \\spadtype{HDMP}.")) (|hdmpToDmp| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{hdmpToDmp(p)} converts \\spad{p} from a \\spadtype{HDMP} to a \\spadtype{DMP}.")) (|dmpToHdmp| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{dmpToHdmp(p)} converts \\spad{p} from a \\spadtype{DMP} to a \\spadtype{HDMP}.")))
@@ -3751,10 +3751,10 @@ NIL
(-955 S R E |VarSet|)
((|constructor| (NIL "The category for general multi-variate polynomials over a ring \\spad{R},{} in variables from VarSet,{} with exponents from the \\spadtype{OrderedAbelianMonoidSup}.")) (|canonicalUnitNormal| ((|attribute|) "we can choose a unique representative for each associate class. This normalization is chosen to be normalization of leading coefficient (by default).")) (|squareFreePart| (($ $) "\\spad{squareFreePart(p)} returns product of all the irreducible factors of polynomial \\spad{p} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(p)} returns the square free factorization of the polynomial \\spad{p}.")) (|primitivePart| (($ $ |#4|) "\\spad{primitivePart(p,v)} returns the unitCanonical associate of the polynomial \\spad{p} with its content with respect to the variable \\spad{v} divided out.") (($ $) "\\spad{primitivePart(p)} returns the unitCanonical associate of the polynomial \\spad{p} with its content divided out.")) (|content| (($ $ |#4|) "\\spad{content(p,v)} is the \\spad{gcd} of the coefficients of the polynomial \\spad{p} when \\spad{p} is viewed as a univariate polynomial with respect to the variable \\spad{v}. Thus,{} for polynomial 7*x**2*y + 14*x*y**2,{} the \\spad{gcd} of the coefficients with respect to \\spad{x} is 7*y.")) (|discriminant| (($ $ |#4|) "\\spad{discriminant(p,v)} returns the disriminant of the polynomial \\spad{p} with respect to the variable \\spad{v}.")) (|resultant| (($ $ $ |#4|) "\\spad{resultant(p,q,v)} returns the resultant of the polynomials \\spad{p} and \\spad{q} with respect to the variable \\spad{v}.")) (|primitiveMonomials| (((|List| $) $) "\\spad{primitiveMonomials(p)} gives the list of monomials of the polynomial \\spad{p} with their coefficients removed. Note: \\spad{primitiveMonomials(sum(a_(i) X^(i))) = [X^(1),...,X^(n)]}.")) (|variables| (((|List| |#4|) $) "\\spad{variables(p)} returns the list of those variables actually appearing in the polynomial \\spad{p}.")) (|totalDegree| (((|NonNegativeInteger|) $ (|List| |#4|)) "\\spad{totalDegree(p, lv)} returns the maximum sum (over all monomials of polynomial \\spad{p}) of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $) "\\spad{totalDegree(p)} returns the largest sum over all monomials of all exponents of a monomial.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#4|) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x, n]} if polynomial \\spad{p} has the form \\spad{x**n} and \\spad{n > 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,...,an]} if polynomial \\spad{p = a1 ... an} and \\spad{n >= 2},{} and,{} for each \\spad{i},{} \\spad{ai} is either a nontrivial constant in \\spad{R} or else of the form \\spad{x**e},{} where \\spad{e > 0} is an integer and \\spad{x} in a member of VarSet.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,...,mn]} if polynomial \\spad{p = m1 + ... + mn} and \\spad{n >= 2} and each \\spad{mi} is a nonzero monomial.")) (|multivariate| (($ (|SparseUnivariatePolynomial| $) |#4|) "\\spad{multivariate(sup,v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.") (($ (|SparseUnivariatePolynomial| |#2|) |#4|) "\\spad{multivariate(sup,v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.")) (|monomial| (($ $ (|List| |#4|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,[v1..vn],[e1..en])} returns \\spad{a*prod(vi**ei)}.") (($ $ |#4| (|NonNegativeInteger|)) "\\spad{monomial(a,x,n)} creates the monomial \\spad{a*x**n} where \\spad{a} is a polynomial,{} \\spad{x} is a variable and \\spad{n} is a nonnegative integer.")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $ |#4|) "\\spad{monicDivide(a,b,v)} divides the polynomial a by the polynomial \\spad{b},{} with each viewed as a univariate polynomial in \\spad{v} returning both the quotient and remainder. Error: if \\spad{b} is not monic with respect to \\spad{v}.")) (|minimumDegree| (((|List| (|NonNegativeInteger|)) $ (|List| |#4|)) "\\spad{minimumDegree(p, lv)} gives the list of minimum degrees of the polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}") (((|NonNegativeInteger|) $ |#4|) "\\spad{minimumDegree(p,v)} gives the minimum degree of polynomial \\spad{p} with respect to \\spad{v},{} \\spadignore{i.e.} viewed a univariate polynomial in \\spad{v}")) (|mainVariable| (((|Union| |#4| "failed") $) "\\spad{mainVariable(p)} returns the biggest variable which actually occurs in the polynomial \\spad{p},{} or \"failed\" if no variables are present. fails precisely if polynomial satisfies ground?")) (|univariate| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{univariate(p)} converts the multivariate polynomial \\spad{p},{} which should actually involve only one variable,{} into a univariate polynomial in that variable,{} whose coefficients are in the ground ring. Error: if polynomial is genuinely multivariate") (((|SparseUnivariatePolynomial| $) $ |#4|) "\\spad{univariate(p,v)} converts the multivariate polynomial \\spad{p} into a univariate polynomial in \\spad{v},{} whose coefficients are still multivariate polynomials (in all the other variables).")) (|monomials| (((|List| $) $) "\\spad{monomials(p)} returns the list of non-zero monomials of polynomial \\spad{p},{} \\spadignore{i.e.} \\spad{monomials(sum(a_(i) X^(i))) = [a_(1) X^(1),...,a_(n) X^(n)]}.")) (|coefficient| (($ $ (|List| |#4|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(p, lv, ln)} views the polynomial \\spad{p} as a polynomial in the variables of \\spad{lv} and returns the coefficient of the term \\spad{lv**ln},{} \\spadignore{i.e.} \\spad{prod(lv_i ** ln_i)}.") (($ $ |#4| (|NonNegativeInteger|)) "\\spad{coefficient(p,v,n)} views the polynomial \\spad{p} as a univariate polynomial in \\spad{v} and returns the coefficient of the \\spad{v**n} term.")) (|degree| (((|List| (|NonNegativeInteger|)) $ (|List| |#4|)) "\\spad{degree(p,lv)} gives the list of degrees of polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $ |#4|) "\\spad{degree(p,v)} gives the degree of polynomial \\spad{p} with respect to the variable \\spad{v}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-916))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#4| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#4| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))))
+((|HasCategory| |#2| (QUOTE (-916))) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#4| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#4| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#4| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#4| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))))
(-956 R E |VarSet|)
((|constructor| (NIL "The category for general multi-variate polynomials over a ring \\spad{R},{} in variables from VarSet,{} with exponents from the \\spadtype{OrderedAbelianMonoidSup}.")) (|canonicalUnitNormal| ((|attribute|) "we can choose a unique representative for each associate class. This normalization is chosen to be normalization of leading coefficient (by default).")) (|squareFreePart| (($ $) "\\spad{squareFreePart(p)} returns product of all the irreducible factors of polynomial \\spad{p} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(p)} returns the square free factorization of the polynomial \\spad{p}.")) (|primitivePart| (($ $ |#3|) "\\spad{primitivePart(p,v)} returns the unitCanonical associate of the polynomial \\spad{p} with its content with respect to the variable \\spad{v} divided out.") (($ $) "\\spad{primitivePart(p)} returns the unitCanonical associate of the polynomial \\spad{p} with its content divided out.")) (|content| (($ $ |#3|) "\\spad{content(p,v)} is the \\spad{gcd} of the coefficients of the polynomial \\spad{p} when \\spad{p} is viewed as a univariate polynomial with respect to the variable \\spad{v}. Thus,{} for polynomial 7*x**2*y + 14*x*y**2,{} the \\spad{gcd} of the coefficients with respect to \\spad{x} is 7*y.")) (|discriminant| (($ $ |#3|) "\\spad{discriminant(p,v)} returns the disriminant of the polynomial \\spad{p} with respect to the variable \\spad{v}.")) (|resultant| (($ $ $ |#3|) "\\spad{resultant(p,q,v)} returns the resultant of the polynomials \\spad{p} and \\spad{q} with respect to the variable \\spad{v}.")) (|primitiveMonomials| (((|List| $) $) "\\spad{primitiveMonomials(p)} gives the list of monomials of the polynomial \\spad{p} with their coefficients removed. Note: \\spad{primitiveMonomials(sum(a_(i) X^(i))) = [X^(1),...,X^(n)]}.")) (|variables| (((|List| |#3|) $) "\\spad{variables(p)} returns the list of those variables actually appearing in the polynomial \\spad{p}.")) (|totalDegree| (((|NonNegativeInteger|) $ (|List| |#3|)) "\\spad{totalDegree(p, lv)} returns the maximum sum (over all monomials of polynomial \\spad{p}) of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $) "\\spad{totalDegree(p)} returns the largest sum over all monomials of all exponents of a monomial.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#3|) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x, n]} if polynomial \\spad{p} has the form \\spad{x**n} and \\spad{n > 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,...,an]} if polynomial \\spad{p = a1 ... an} and \\spad{n >= 2},{} and,{} for each \\spad{i},{} \\spad{ai} is either a nontrivial constant in \\spad{R} or else of the form \\spad{x**e},{} where \\spad{e > 0} is an integer and \\spad{x} in a member of VarSet.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,...,mn]} if polynomial \\spad{p = m1 + ... + mn} and \\spad{n >= 2} and each \\spad{mi} is a nonzero monomial.")) (|multivariate| (($ (|SparseUnivariatePolynomial| $) |#3|) "\\spad{multivariate(sup,v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.") (($ (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{multivariate(sup,v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.")) (|monomial| (($ $ (|List| |#3|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,[v1..vn],[e1..en])} returns \\spad{a*prod(vi**ei)}.") (($ $ |#3| (|NonNegativeInteger|)) "\\spad{monomial(a,x,n)} creates the monomial \\spad{a*x**n} where \\spad{a} is a polynomial,{} \\spad{x} is a variable and \\spad{n} is a nonnegative integer.")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $ |#3|) "\\spad{monicDivide(a,b,v)} divides the polynomial a by the polynomial \\spad{b},{} with each viewed as a univariate polynomial in \\spad{v} returning both the quotient and remainder. Error: if \\spad{b} is not monic with respect to \\spad{v}.")) (|minimumDegree| (((|List| (|NonNegativeInteger|)) $ (|List| |#3|)) "\\spad{minimumDegree(p, lv)} gives the list of minimum degrees of the polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}") (((|NonNegativeInteger|) $ |#3|) "\\spad{minimumDegree(p,v)} gives the minimum degree of polynomial \\spad{p} with respect to \\spad{v},{} \\spadignore{i.e.} viewed a univariate polynomial in \\spad{v}")) (|mainVariable| (((|Union| |#3| "failed") $) "\\spad{mainVariable(p)} returns the biggest variable which actually occurs in the polynomial \\spad{p},{} or \"failed\" if no variables are present. fails precisely if polynomial satisfies ground?")) (|univariate| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{univariate(p)} converts the multivariate polynomial \\spad{p},{} which should actually involve only one variable,{} into a univariate polynomial in that variable,{} whose coefficients are in the ground ring. Error: if polynomial is genuinely multivariate") (((|SparseUnivariatePolynomial| $) $ |#3|) "\\spad{univariate(p,v)} converts the multivariate polynomial \\spad{p} into a univariate polynomial in \\spad{v},{} whose coefficients are still multivariate polynomials (in all the other variables).")) (|monomials| (((|List| $) $) "\\spad{monomials(p)} returns the list of non-zero monomials of polynomial \\spad{p},{} \\spadignore{i.e.} \\spad{monomials(sum(a_(i) X^(i))) = [a_(1) X^(1),...,a_(n) X^(n)]}.")) (|coefficient| (($ $ (|List| |#3|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(p, lv, ln)} views the polynomial \\spad{p} as a polynomial in the variables of \\spad{lv} and returns the coefficient of the term \\spad{lv**ln},{} \\spadignore{i.e.} \\spad{prod(lv_i ** ln_i)}.") (($ $ |#3| (|NonNegativeInteger|)) "\\spad{coefficient(p,v,n)} views the polynomial \\spad{p} as a univariate polynomial in \\spad{v} and returns the coefficient of the \\spad{v**n} term.")) (|degree| (((|List| (|NonNegativeInteger|)) $ (|List| |#3|)) "\\spad{degree(p,lv)} gives the list of degrees of polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $ |#3|) "\\spad{degree(p,v)} gives the degree of polynomial \\spad{p} with respect to the variable \\spad{v}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
(-957 E V R P -1674)
((|constructor| (NIL "This package transforms multivariate polynomials or fractions into univariate polynomials or fractions,{} and back.")) (|isPower| (((|Union| (|Record| (|:| |val| |#5|) (|:| |exponent| (|Integer|))) "failed") |#5|) "\\spad{isPower(p)} returns \\spad{[x, n]} if \\spad{p = x**n} and \\spad{n <> 0},{} \"failed\" otherwise.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#2|) (|:| |exponent| (|Integer|))) "failed") |#5|) "\\spad{isExpt(p)} returns \\spad{[x, n]} if \\spad{p = x**n} and \\spad{n <> 0},{} \"failed\" otherwise.")) (|isTimes| (((|Union| (|List| |#5|) "failed") |#5|) "\\spad{isTimes(p)} returns \\spad{[a1,...,an]} if \\spad{p = a1 ... an} and \\spad{n > 1},{} \"failed\" otherwise.")) (|isPlus| (((|Union| (|List| |#5|) "failed") |#5|) "\\spad{isPlus(p)} returns [\\spad{m1},{}...,{}\\spad{mn}] if \\spad{p = m1 + ... + mn} and \\spad{n > 1},{} \"failed\" otherwise.")) (|multivariate| ((|#5| (|Fraction| (|SparseUnivariatePolynomial| |#5|)) |#2|) "\\spad{multivariate(f, v)} applies both the numerator and denominator of \\spad{f} to \\spad{v}.")) (|univariate| (((|SparseUnivariatePolynomial| |#5|) |#5| |#2| (|SparseUnivariatePolynomial| |#5|)) "\\spad{univariate(f, x, p)} returns \\spad{f} viewed as a univariate polynomial in \\spad{x},{} using the side-condition \\spad{p(x) = 0}.") (((|Fraction| (|SparseUnivariatePolynomial| |#5|)) |#5| |#2|) "\\spad{univariate(f, v)} returns \\spad{f} viewed as a univariate rational function in \\spad{v}.")) (|mainVariable| (((|Union| |#2| "failed") |#5|) "\\spad{mainVariable(f)} returns the highest variable appearing in the numerator or the denominator of \\spad{f},{} \"failed\" if \\spad{f} has no variables.")) (|variables| (((|List| |#2|) |#5|) "\\spad{variables(f)} returns the list of variables appearing in the numerator or the denominator of \\spad{f}.")))
@@ -3766,8 +3766,8 @@ NIL
NIL
(-959 R)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials whose variables are arbitrary symbols. The ordering is alphabetic determined by the Symbol type. The coefficient ring may be non commutative,{} but the variables are assumed to commute.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(p,x)} computes the integral of \\spad{p*dx},{} \\spadignore{i.e.} integrates the polynomial \\spad{p} with respect to the variable \\spad{x}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1186) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-960 E V R P -1674)
((|constructor| (NIL "computes \\spad{n}-th roots of quotients of multivariate polynomials")) (|nthr| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#4|) (|:| |radicand| (|List| |#4|))) |#4| (|NonNegativeInteger|)) "\\spad{nthr(p,n)} should be local but conditional")) (|froot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) |#5| (|NonNegativeInteger|)) "\\spad{froot(f, n)} returns \\spad{[m,c,r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|qroot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) (|Fraction| (|Integer|)) (|NonNegativeInteger|)) "\\spad{qroot(f, n)} returns \\spad{[m,c,r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|rroot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) |#3| (|NonNegativeInteger|)) "\\spad{rroot(f, n)} returns \\spad{[m,c,r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|denom| ((|#4| $) "\\spad{denom(x)} \\undocumented")) (|numer| ((|#4| $) "\\spad{numer(x)} \\undocumented")))
NIL
@@ -3790,7 +3790,7 @@ NIL
NIL
(-965 S)
((|constructor| (NIL "\\indented{1}{This provides a fast array type with no bound checking on elt\\spad{'s}.} Minimum index is 0 in this type,{} cannot be changed")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-966)
((|constructor| (NIL "Category for the functions defined by integrals.")) (|integral| (($ $ (|SegmentBinding| $)) "\\spad{integral(f, x = a..b)} returns the formal definite integral of \\spad{f} \\spad{dx} for \\spad{x} between \\spad{a} and \\spad{b}.") (($ $ (|Symbol|)) "\\spad{integral(f, x)} returns the formal integral of \\spad{f} \\spad{dx}.")))
@@ -3810,11 +3810,11 @@ NIL
NIL
(-970 R E)
((|constructor| (NIL "This domain represents generalized polynomials with coefficients (from a not necessarily commutative ring),{} and terms indexed by their exponents (from an arbitrary ordered abelian monoid). This type is used,{} for example,{} by the \\spadtype{DistributedMultivariatePolynomial} domain where the exponent domain is a direct product of non negative integers.")) (|canonicalUnitNormal| ((|attribute|) "canonicalUnitNormal guarantees that the function unitCanonical returns the same representative for all associates of any particular element.")) (|fmecg| (($ $ |#2| |#1| $) "\\spad{fmecg(p1,e,r,p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-132)))) (|HasAttribute| |#1| (QUOTE -4446)))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-132)))) (|HasAttribute| |#1| (QUOTE -4447)))
(-971 A B)
((|constructor| (NIL "This domain implements cartesian product")) (|selectsecond| ((|#2| $) "\\spad{selectsecond(x)} \\undocumented")) (|selectfirst| ((|#1| $) "\\spad{selectfirst(x)} \\undocumented")) (|makeprod| (($ |#1| |#2|) "\\spad{makeprod(a,b)} \\undocumented")))
-((-4445 -12 (|has| |#2| (-479)) (|has| |#1| (-479))))
+((-4446 -12 (|has| |#2| (-479)) (|has| |#1| (-479))))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-799)))) (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-856))))) (-12 (|HasCategory| |#1| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-799)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#1| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-799))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#1| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-799))))) (-12 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#2| (QUOTE (-479)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#2| (QUOTE (-479)))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732))))) (-12 (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-373)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#2| (QUOTE (-479)))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#1| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-799))))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-132))) (|HasCategory| |#2| (QUOTE (-132)))) (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-856)))))
(-972)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. An `Property' is a pair of name and value.")) (|property| (($ (|Identifier|) (|SExpression|)) "\\spad{property(n,val)} constructs a property with name \\spad{`n'} and value `val'.")) (|value| (((|SExpression|) $) "\\spad{value(p)} returns value of property \\spad{p}")) (|name| (((|Identifier|) $) "\\spad{name(p)} returns the name of property \\spad{p}")))
@@ -3838,7 +3838,7 @@ NIL
NIL
(-977 S)
((|constructor| (NIL "A priority queue is a bag of items from an ordered set where the item extracted is always the maximum element.")) (|merge!| (($ $ $) "\\spad{merge!(q,q1)} destructively changes priority queue \\spad{q} to include the values from priority queue \\spad{q1}.")) (|merge| (($ $ $) "\\spad{merge(q1,q2)} returns combines priority queues \\spad{q1} and \\spad{q2} to return a single priority queue \\spad{q}.")) (|max| ((|#1| $) "\\spad{max(q)} returns the maximum element of priority queue \\spad{q}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-978 R |polR|)
((|constructor| (NIL "This package contains some functions: \\axiomOpFrom{discriminant}{PseudoRemainderSequence},{} \\axiomOpFrom{resultant}{PseudoRemainderSequence},{} \\axiomOpFrom{subResultantGcd}{PseudoRemainderSequence},{} \\axiomOpFrom{chainSubResultants}{PseudoRemainderSequence},{} \\axiomOpFrom{degreeSubResultant}{PseudoRemainderSequence},{} \\axiomOpFrom{lastSubResultant}{PseudoRemainderSequence},{} \\axiomOpFrom{resultantEuclidean}{PseudoRemainderSequence},{} \\axiomOpFrom{subResultantGcdEuclidean}{PseudoRemainderSequence},{} \\axiomOpFrom{semiSubResultantGcdEuclidean1}{PseudoRemainderSequence},{} \\axiomOpFrom{semiSubResultantGcdEuclidean2}{PseudoRemainderSequence},{} etc. This procedures are coming from improvements of the subresultants algorithm. \\indented{2}{Version : 7} \\indented{2}{References : Lionel Ducos \"Optimizations of the subresultant algorithm\"} \\indented{2}{to appear in the Journal of Pure and Applied Algebra.} \\indented{2}{Author : Ducos Lionel \\axiom{Lionel.Ducos@mathlabo.univ-poitiers.\\spad{fr}}}")) (|semiResultantEuclideannaif| (((|Record| (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the semi-extended resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|resultantEuclideannaif| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the extended resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|resultantnaif| ((|#1| |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|nextsousResultant2| ((|#2| |#2| |#2| |#2| |#1|) "\\axiom{nextsousResultant2(\\spad{P},{} \\spad{Q},{} \\spad{Z},{} \\spad{s})} returns the subresultant \\axiom{\\spad{S_}{\\spad{e}-1}} where \\axiom{\\spad{P} ~ \\spad{S_d},{} \\spad{Q} = \\spad{S_}{\\spad{d}-1},{} \\spad{Z} = S_e,{} \\spad{s} = \\spad{lc}(\\spad{S_d})}")) (|Lazard2| ((|#2| |#2| |#1| |#1| (|NonNegativeInteger|)) "\\axiom{Lazard2(\\spad{F},{} \\spad{x},{} \\spad{y},{} \\spad{n})} computes \\axiom{(x/y)\\spad{**}(\\spad{n}-1) * \\spad{F}}")) (|Lazard| ((|#1| |#1| |#1| (|NonNegativeInteger|)) "\\axiom{Lazard(\\spad{x},{} \\spad{y},{} \\spad{n})} computes \\axiom{x**n/y**(\\spad{n}-1)}")) (|divide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2|) "\\axiom{divide(\\spad{F},{}\\spad{G})} computes quotient and rest of the exact euclidean division of \\axiom{\\spad{F}} by \\axiom{\\spad{G}}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2|) "\\axiom{pseudoDivide(\\spad{P},{}\\spad{Q})} computes the pseudoDivide of \\axiom{\\spad{P}} by \\axiom{\\spad{Q}}.")) (|exquo| (((|Vector| |#2|) (|Vector| |#2|) |#1|) "\\axiom{\\spad{v} exquo \\spad{r}} computes the exact quotient of \\axiom{\\spad{v}} by \\axiom{\\spad{r}}")) (* (((|Vector| |#2|) |#1| (|Vector| |#2|)) "\\axiom{\\spad{r} * \\spad{v}} computes the product of \\axiom{\\spad{r}} and \\axiom{\\spad{v}}")) (|gcd| ((|#2| |#2| |#2|) "\\axiom{\\spad{gcd}(\\spad{P},{} \\spad{Q})} returns the \\spad{gcd} of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiResultantReduitEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |resultantReduit| |#1|)) |#2| |#2|) "\\axiom{semiResultantReduitEuclidean(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" and carries out the equality \\axiom{...\\spad{P} + coef2*Q = resultantReduit(\\spad{P},{}\\spad{Q})}.")) (|resultantReduitEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultantReduit| |#1|)) |#2| |#2|) "\\axiom{resultantReduitEuclidean(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" and carries out the equality \\axiom{coef1*P + coef2*Q = resultantReduit(\\spad{P},{}\\spad{Q})}.")) (|resultantReduit| ((|#1| |#2| |#2|) "\\axiom{resultantReduit(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|schema| (((|List| (|NonNegativeInteger|)) |#2| |#2|) "\\axiom{schema(\\spad{P},{}\\spad{Q})} returns the list of degrees of non zero subresultants of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|chainSubResultants| (((|List| |#2|) |#2| |#2|) "\\axiom{chainSubResultants(\\spad{P},{} \\spad{Q})} computes the list of non zero subresultants of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiDiscriminantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |discriminant| |#1|)) |#2|) "\\axiom{discriminantEuclidean(\\spad{P})} carries out the equality \\axiom{...\\spad{P} + coef2 * \\spad{D}(\\spad{P}) = discriminant(\\spad{P})}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|discriminantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |discriminant| |#1|)) |#2|) "\\axiom{discriminantEuclidean(\\spad{P})} carries out the equality \\axiom{coef1 * \\spad{P} + coef2 * \\spad{D}(\\spad{P}) = discriminant(\\spad{P})}.")) (|discriminant| ((|#1| |#2|) "\\axiom{discriminant(\\spad{P},{} \\spad{Q})} returns the discriminant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiSubResultantGcdEuclidean1| (((|Record| (|:| |coef1| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{semiSubResultantGcdEuclidean1(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + ? \\spad{Q} = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible.")) (|semiSubResultantGcdEuclidean2| (((|Record| (|:| |coef2| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{semiSubResultantGcdEuclidean2(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{...\\spad{P} + coef2*Q = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|subResultantGcdEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{subResultantGcdEuclidean(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + coef2*Q = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible.")) (|subResultantGcd| ((|#2| |#2| |#2|) "\\axiom{subResultantGcd(\\spad{P},{} \\spad{Q})} returns the \\spad{gcd} of two primitive polynomials \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiLastSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) "\\axiom{semiLastSubResultantEuclidean(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant \\axiom{\\spad{S}} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = \\spad{S}}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|lastSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) "\\axiom{lastSubResultantEuclidean(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant \\axiom{\\spad{S}} and carries out the equality \\axiom{coef1*P + coef2*Q = \\spad{S}}.")) (|lastSubResultant| ((|#2| |#2| |#2|) "\\axiom{lastSubResultant(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}")) (|semiDegreeSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns a subresultant \\axiom{\\spad{S}} of degree \\axiom{\\spad{d}} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = S_i}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|degreeSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns a subresultant \\axiom{\\spad{S}} of degree \\axiom{\\spad{d}} and carries out the equality \\axiom{coef1*P + coef2*Q = S_i}.")) (|degreeSubResultant| ((|#2| |#2| |#2| (|NonNegativeInteger|)) "\\axiom{degreeSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{d})} computes a subresultant of degree \\axiom{\\spad{d}}.")) (|semiIndiceSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{semiIndiceSubResultantEuclidean(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = S_i(\\spad{P},{}\\spad{Q})} Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|indiceSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} and carries out the equality \\axiom{coef1*P + coef2*Q = S_i(\\spad{P},{}\\spad{Q})}")) (|indiceSubResultant| ((|#2| |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant of indice \\axiom{\\spad{i}}")) (|semiResultantEuclidean1| (((|Record| (|:| |coef1| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{semiResultantEuclidean1(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1.\\spad{P} + ? \\spad{Q} = resultant(\\spad{P},{}\\spad{Q})}.")) (|semiResultantEuclidean2| (((|Record| (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{semiResultantEuclidean2(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{...\\spad{P} + coef2*Q = resultant(\\spad{P},{}\\spad{Q})}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|resultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + coef2*Q = resultant(\\spad{P},{}\\spad{Q})}")) (|resultant| ((|#1| |#2| |#2|) "\\axiom{resultant(\\spad{P},{} \\spad{Q})} returns the resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}")))
@@ -3849,7 +3849,7 @@ NIL
NIL
NIL
(-980)
-((|constructor| (NIL "Partition is an OrderedCancellationAbelianMonoid which is used as the basis for symmetric polynomial representation of the sums of powers in SymmetricPolynomial. Thus,{} \\spad{(5 2 2 1)} will represent \\spad{s5 * s2**2 * s1}.")) (|conjugate| (($ $) "\\spad{conjugate(p)} returns the conjugate partition of a partition \\spad{p}")) (|pdct| (((|Integer|) $) "\\spad{pdct(a1**n1 a2**n2 ...)} returns \\spad{n1! * a1**n1 * n2! * a2**n2 * ...}. This function is used in the package \\spadtype{CycleIndicators}.")) (|powers| (((|List| (|Pair| (|Integer|) (|PositiveInteger|))) (|List| (|Integer|))) "\\spad{powers(li)} returns a list of pairs. The second component of each pair is the multiplicity with which the first component occurs in \\spad{li}.")) (|partition| (($ (|List| (|Integer|))) "\\spad{partition(li)} converts a list of integers \\spad{li} to a partition")))
+((|constructor| (NIL "Partition is an OrderedCancellationAbelianMonoid which is used as the basis for symmetric polynomial representation of the sums of powers in SymmetricPolynomial. Thus,{} \\spad{(5 2 2 1)} will represent \\spad{s5 * s2**2 * s1}.")) (|conjugate| (($ $) "\\spad{conjugate(p)} returns the conjugate partition of a partition \\spad{p}")) (|pdct| (((|Integer|) $) "\\spad{pdct(a1**n1 a2**n2 ...)} returns \\spad{n1! * a1**n1 * n2! * a2**n2 * ...}. This function is used in the package \\spadtype{CycleIndicators}.")) (|powers| (((|List| (|Pair| (|Integer|) (|PositiveInteger|))) $) "\\spad{powers(x)} returns a list of pairs. The second component of each pair is the multiplicity with which the first component occurs in \\spad{li}.")) (|partition| (($ (|List| (|Integer|))) "\\spad{partition(li)} converts a list of integers \\spad{li} to a partition")))
NIL
NIL
(-981 S |Coef| |Expon| |Var|)
@@ -3858,7 +3858,7 @@ NIL
NIL
(-982 |Coef| |Expon| |Var|)
((|constructor| (NIL "\\spadtype{PowerSeriesCategory} is the most general power series category with exponents in an ordered abelian monoid.")) (|complete| (($ $) "\\spad{complete(f)} causes all terms of \\spad{f} to be computed. Note: this results in an infinite loop if \\spad{f} has infinitely many terms.")) (|pole?| (((|Boolean|) $) "\\spad{pole?(f)} determines if the power series \\spad{f} has a pole.")) (|variables| (((|List| |#3|) $) "\\spad{variables(f)} returns a list of the variables occuring in the power series \\spad{f}.")) (|degree| ((|#2| $) "\\spad{degree(f)} returns the exponent of the lowest order term of \\spad{f}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(f)} returns the coefficient of the lowest order term of \\spad{f}")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(f)} returns the monomial of \\spad{f} of lowest order.")) (|monomial| (($ $ (|List| |#3|) (|List| |#2|)) "\\spad{monomial(a,[x1,..,xk],[n1,..,nk])} computes \\spad{a * x1**n1 * .. * xk**nk}.") (($ $ |#3| |#2|) "\\spad{monomial(a,x,n)} computes \\spad{a*x**n}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-983)
((|constructor| (NIL "PlottableSpaceCurveCategory is the category of curves in 3-space which may be plotted via the graphics facilities. Functions are provided for obtaining lists of lists of points,{} representing the branches of the curve,{} and for determining the ranges of the \\spad{x-},{} \\spad{y-},{} and \\spad{z}-coordinates of the points on the curve.")) (|zRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{zRange(c)} returns the range of the \\spad{z}-coordinates of the points on the curve \\spad{c}.")) (|yRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{yRange(c)} returns the range of the \\spad{y}-coordinates of the points on the curve \\spad{c}.")) (|xRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{xRange(c)} returns the range of the \\spad{x}-coordinates of the points on the curve \\spad{c}.")) (|listBranches| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listBranches(c)} returns a list of lists of points,{} representing the branches of the curve \\spad{c}.")))
@@ -3870,7 +3870,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-562))))
(-985 R E |VarSet| P)
((|constructor| (NIL "A category for finite subsets of a polynomial ring. Such a set is only regarded as a set of polynomials and not identified to the ideal it generates. So two distinct sets may generate the same the ideal. Furthermore,{} for \\spad{R} being an integral domain,{} a set of polynomials may be viewed as a representation of the ideal it generates in the polynomial ring \\spad{(R)^(-1) P},{} or the set of its zeros (described for instance by the radical of the previous ideal,{} or a split of the associated affine variety) and so on. So this category provides operations about those different notions.")) (|triangular?| (((|Boolean|) $) "\\axiom{triangular?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} is a triangular set,{} \\spadignore{i.e.} two distinct polynomials have distinct main variables and no constant lies in \\axiom{\\spad{ps}}.")) (|rewriteIdealWithRemainder| (((|List| |#4|) (|List| |#4|) $) "\\axiom{rewriteIdealWithRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that every polynomial in \\axiom{\\spad{lr}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|rewriteIdealWithHeadRemainder| (((|List| |#4|) (|List| |#4|) $) "\\axiom{rewriteIdealWithHeadRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that the leading monomial of every polynomial in \\axiom{\\spad{lr}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|remainder| (((|Record| (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) "\\axiom{remainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{c},{}\\spad{b},{}\\spad{r}]} such that \\axiom{\\spad{b}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}},{} \\axiom{r*a - \\spad{c*b}} lies in the ideal generated by \\axiom{\\spad{ps}}. Furthermore,{} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} \\axiom{\\spad{b}} is primitive.")) (|headRemainder| (((|Record| (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) "\\axiom{headRemainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{b},{}\\spad{r}]} such that the leading monomial of \\axiom{\\spad{b}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}} and \\axiom{r*a - \\spad{b}} lies in the ideal generated by \\axiom{\\spad{ps}}.")) (|roughUnitIdeal?| (((|Boolean|) $) "\\axiom{roughUnitIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} contains some non null element lying in the base ring \\axiom{\\spad{R}}.")) (|roughEqualIdeals?| (((|Boolean|) $ $) "\\axiom{roughEqualIdeals?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that \\axiom{\\spad{ps1}} and \\axiom{\\spad{ps2}} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}} without computing Groebner bases.")) (|roughSubIdeal?| (((|Boolean|) $ $) "\\axiom{roughSubIdeal?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that all polynomials in \\axiom{\\spad{ps1}} lie in the ideal generated by \\axiom{\\spad{ps2}} in \\axiom{\\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}} without computing Groebner bases.")) (|roughBase?| (((|Boolean|) $) "\\axiom{roughBase?(\\spad{ps})} returns \\spad{true} iff for every pair \\axiom{{\\spad{p},{}\\spad{q}}} of polynomials in \\axiom{\\spad{ps}} their leading monomials are relatively prime.")) (|trivialIdeal?| (((|Boolean|) $) "\\axiom{trivialIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} does not contain non-zero elements.")) (|sort| (((|Record| (|:| |under| $) (|:| |floor| $) (|:| |upper| $)) $ |#3|) "\\axiom{sort(\\spad{v},{}\\spad{ps})} returns \\axiom{us,{}\\spad{vs},{}\\spad{ws}} such that \\axiom{us} is \\axiom{collectUnder(\\spad{ps},{}\\spad{v})},{} \\axiom{\\spad{vs}} is \\axiom{collect(\\spad{ps},{}\\spad{v})} and \\axiom{\\spad{ws}} is \\axiom{collectUpper(\\spad{ps},{}\\spad{v})}.")) (|collectUpper| (($ $ |#3|) "\\axiom{collectUpper(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable greater than \\axiom{\\spad{v}}.")) (|collect| (($ $ |#3|) "\\axiom{collect(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with \\axiom{\\spad{v}} as main variable.")) (|collectUnder| (($ $ |#3|) "\\axiom{collectUnder(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable less than \\axiom{\\spad{v}}.")) (|mainVariable?| (((|Boolean|) |#3| $) "\\axiom{mainVariable?(\\spad{v},{}\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ps}}.")) (|mainVariables| (((|List| |#3|) $) "\\axiom{mainVariables(\\spad{ps})} returns the decreasingly sorted list of the variables which are main variables of some polynomial in \\axiom{\\spad{ps}}.")) (|variables| (((|List| |#3|) $) "\\axiom{variables(\\spad{ps})} returns the decreasingly sorted list of the variables which are variables of some polynomial in \\axiom{\\spad{ps}}.")) (|mvar| ((|#3| $) "\\axiom{mvar(\\spad{ps})} returns the main variable of the non constant polynomial with the greatest main variable,{} if any,{} else an error is returned.")) (|retract| (($ (|List| |#4|)) "\\axiom{retract(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{retractIfCan(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise \\axiom{\"failed\"} is returned.")))
-((-4448 . T))
+((-4449 . T))
NIL
(-986 R E V P)
((|constructor| (NIL "This package provides modest routines for polynomial system solving. The aim of many of the operations of this package is to remove certain factors in some polynomials in order to avoid unnecessary computations in algorithms involving splitting techniques by partial factorization.")) (|removeIrreducibleRedundantFactors| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeIrreducibleRedundantFactors(\\spad{lp},{}\\spad{lq})} returns the same as \\axiom{irreducibleFactors(concat(\\spad{lp},{}\\spad{lq}))} assuming that \\axiom{irreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.")) (|lazyIrreducibleFactors| (((|List| |#4|) (|List| |#4|)) "\\axiom{lazyIrreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lf}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lf} = [\\spad{f1},{}...,{}\\spad{fm}]} then \\axiom{p1*p2*...*pn=0} means \\axiom{f1*f2*...*fm=0},{} and the \\axiom{\\spad{fi}} are irreducible over \\axiom{\\spad{R}} and are pairwise distinct. The algorithm tries to avoid factorization into irreducible factors as far as possible and makes previously use of \\spad{gcd} techniques over \\axiom{\\spad{R}}.")) (|irreducibleFactors| (((|List| |#4|) (|List| |#4|)) "\\axiom{irreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lf}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lf} = [\\spad{f1},{}...,{}\\spad{fm}]} then \\axiom{p1*p2*...*pn=0} means \\axiom{f1*f2*...*fm=0},{} and the \\axiom{\\spad{fi}} are irreducible over \\axiom{\\spad{R}} and are pairwise distinct.")) (|removeRedundantFactorsInPols| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp} where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in every polynomial \\axiom{\\spad{p}} of \\axiom{\\spad{lp}} any non trivial factor of any polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in every polynomial \\axiom{\\spad{lp}}.")) (|removeRedundantFactorsInContents| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactorsInContents(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp} where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in the content of every polynomial of \\axiom{\\spad{lp}} any non trivial factor of any polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in the content of every polynomial of \\axiom{\\spad{lp}}.")) (|removeRoughlyRedundantFactorsInContents| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInContents(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp}where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in the content of every polynomial of \\axiom{\\spad{lp}} any occurence of a polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in the content of every polynomial of \\axiom{\\spad{lp}}.")) (|univariatePolynomialsGcds| (((|List| |#4|) (|List| |#4|) (|Boolean|)) "\\axiom{univariatePolynomialsGcds(\\spad{lp},{}opt)} returns the same as \\axiom{univariatePolynomialsGcds(\\spad{lp})} if \\axiom{opt} is \\axiom{\\spad{false}} and if the previous operation does not return any non null and constant polynomial,{} else return \\axiom{[1]}.") (((|List| |#4|) (|List| |#4|)) "\\axiom{univariatePolynomialsGcds(\\spad{lp})} returns \\axiom{\\spad{lg}} where \\axiom{\\spad{lg}} is a list of the gcds of every pair in \\axiom{\\spad{lp}} of univariate polynomials in the same main variable.")) (|squareFreeFactors| (((|List| |#4|) |#4|) "\\axiom{squareFreeFactors(\\spad{p})} returns the square-free factors of \\axiom{\\spad{p}} over \\axiom{\\spad{R}}")) (|rewriteIdealWithQuasiMonicGenerators| (((|List| |#4|) (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{rewriteIdealWithQuasiMonicGenerators(\\spad{lp},{}redOp?,{}redOp)} returns \\axiom{\\spad{lq}} where \\axiom{\\spad{lq}} and \\axiom{\\spad{lp}} generate the same ideal in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} and \\axiom{\\spad{lq}} has rank not higher than the one of \\axiom{\\spad{lp}}. Moreover,{} \\axiom{\\spad{lq}} is computed by reducing \\axiom{\\spad{lp}} \\spad{w}.\\spad{r}.\\spad{t}. some basic set of the ideal generated by the quasi-monic polynomials in \\axiom{\\spad{lp}}.")) (|rewriteSetByReducingWithParticularGenerators| (((|List| |#4|) (|List| |#4|) (|Mapping| (|Boolean|) |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{rewriteSetByReducingWithParticularGenerators(\\spad{lp},{}pred?,{}redOp?,{}redOp)} returns \\axiom{\\spad{lq}} where \\axiom{\\spad{lq}} is computed by the following algorithm. Chose a basic set \\spad{w}.\\spad{r}.\\spad{t}. the reduction-test \\axiom{redOp?} among the polynomials satisfying property \\axiom{pred?},{} if it is empty then leave,{} else reduce the other polynomials by this basic set \\spad{w}.\\spad{r}.\\spad{t}. the reduction-operation \\axiom{redOp}. Repeat while another basic set with smaller rank can be computed. See code. If \\axiom{pred?} is \\axiom{quasiMonic?} the ideal is unchanged.")) (|crushedSet| (((|List| |#4|) (|List| |#4|)) "\\axiom{crushedSet(\\spad{lp})} returns \\axiom{\\spad{lq}} such that \\axiom{\\spad{lp}} and and \\axiom{\\spad{lq}} generate the same ideal and no rough basic sets reduce (in the sense of Groebner bases) the other polynomials in \\axiom{\\spad{lq}}.")) (|roughBasicSet| (((|Union| (|Record| (|:| |bas| (|GeneralTriangularSet| |#1| |#2| |#3| |#4|)) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|)) "\\axiom{roughBasicSet(\\spad{lp})} returns the smallest (with Ritt-Wu ordering) triangular set contained in \\axiom{\\spad{lp}}.")) (|interReduce| (((|List| |#4|) (|List| |#4|)) "\\axiom{interReduce(\\spad{lp})} returns \\axiom{\\spad{lq}} such that \\axiom{\\spad{lp}} and \\axiom{\\spad{lq}} generate the same ideal and no polynomial in \\axiom{\\spad{lq}} is reducuble by the others in the sense of Groebner bases. Since no assumptions are required the result may depend on the ordering the reductions are performed.")) (|removeRoughlyRedundantFactorsInPol| ((|#4| |#4| (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInPol(\\spad{p},{}\\spad{lf})} returns the same as removeRoughlyRedundantFactorsInPols([\\spad{p}],{}\\spad{lf},{}\\spad{true})")) (|removeRoughlyRedundantFactorsInPols| (((|List| |#4|) (|List| |#4|) (|List| |#4|) (|Boolean|)) "\\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf},{}opt)} returns the same as \\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} if \\axiom{opt} is \\axiom{\\spad{false}} and if the previous operation does not return any non null and constant polynomial,{} else return \\axiom{[1]}.") (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp}where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in every polynomial \\axiom{\\spad{p}} of \\axiom{\\spad{lp}} any occurence of a polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. This may involve a lot of exact-quotients computations.")) (|bivariatePolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{bivariatePolynomials(\\spad{lp})} returns \\axiom{\\spad{bps},{}nbps} where \\axiom{\\spad{bps}} is a list of the bivariate polynomials,{} and \\axiom{nbps} are the other ones.")) (|bivariate?| (((|Boolean|) |#4|) "\\axiom{bivariate?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} involves two and only two variables.")) (|linearPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{linearPolynomials(\\spad{lp})} returns \\axiom{\\spad{lps},{}nlps} where \\axiom{\\spad{lps}} is a list of the linear polynomials in \\spad{lp},{} and \\axiom{nlps} are the other ones.")) (|linear?| (((|Boolean|) |#4|) "\\axiom{linear?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} does not lie in the base ring \\axiom{\\spad{R}} and has main degree \\axiom{1}.")) (|univariatePolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{univariatePolynomials(\\spad{lp})} returns \\axiom{ups,{}nups} where \\axiom{ups} is a list of the univariate polynomials,{} and \\axiom{nups} are the other ones.")) (|univariate?| (((|Boolean|) |#4|) "\\axiom{univariate?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} involves one and only one variable.")) (|quasiMonicPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{quasiMonicPolynomials(\\spad{lp})} returns \\axiom{qmps,{}nqmps} where \\axiom{qmps} is a list of the quasi-monic polynomials in \\axiom{\\spad{lp}} and \\axiom{nqmps} are the other ones.")) (|selectAndPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| (|Mapping| (|Boolean|) |#4|)) (|List| |#4|)) "\\axiom{selectAndPolynomials(lpred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds for every \\axiom{pred?} in \\axiom{lpred?} and \\axiom{\\spad{bps}} are the other ones.")) (|selectOrPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| (|Mapping| (|Boolean|) |#4|)) (|List| |#4|)) "\\axiom{selectOrPolynomials(lpred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds for some \\axiom{pred?} in \\axiom{lpred?} and \\axiom{\\spad{bps}} are the other ones.")) (|selectPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|Mapping| (|Boolean|) |#4|) (|List| |#4|)) "\\axiom{selectPolynomials(pred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds and \\axiom{\\spad{bps}} are the other ones.")) (|probablyZeroDim?| (((|Boolean|) (|List| |#4|)) "\\axiom{probablyZeroDim?(\\spad{lp})} returns \\spad{true} iff the number of polynomials in \\axiom{\\spad{lp}} is not smaller than the number of variables occurring in these polynomials.")) (|possiblyNewVariety?| (((|Boolean|) (|List| |#4|) (|List| (|List| |#4|))) "\\axiom{possiblyNewVariety?(newlp,{}\\spad{llp})} returns \\spad{true} iff for every \\axiom{\\spad{lp}} in \\axiom{\\spad{llp}} certainlySubVariety?(newlp,{}\\spad{lp}) does not hold.")) (|certainlySubVariety?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{certainlySubVariety?(newlp,{}\\spad{lp})} returns \\spad{true} iff for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}} the remainder of \\axiom{\\spad{p}} by \\axiom{newlp} using the division algorithm of Groebner techniques is zero.")) (|unprotectedRemoveRedundantFactors| (((|List| |#4|) |#4| |#4|) "\\axiom{unprotectedRemoveRedundantFactors(\\spad{p},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors(\\spad{p},{}\\spad{q})} but does assume that neither \\axiom{\\spad{p}} nor \\axiom{\\spad{q}} lie in the base ring \\axiom{\\spad{R}} and assumes that \\axiom{infRittWu?(\\spad{p},{}\\spad{q})} holds. Moreover,{} if \\axiom{\\spad{R}} is \\spad{gcd}-domain,{} then \\axiom{\\spad{p}} and \\axiom{\\spad{q}} are assumed to be square free.")) (|removeSquaresIfCan| (((|List| |#4|) (|List| |#4|)) "\\axiom{removeSquaresIfCan(\\spad{lp})} returns \\axiom{removeDuplicates [squareFreePart(\\spad{p})\\$\\spad{P} for \\spad{p} in \\spad{lp}]} if \\axiom{\\spad{R}} is \\spad{gcd}-domain else returns \\axiom{\\spad{lp}}.")) (|removeRedundantFactors| (((|List| |#4|) (|List| |#4|) (|List| |#4|) (|Mapping| (|List| |#4|) (|List| |#4|))) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{lq},{}remOp)} returns the same as \\axiom{concat(remOp(removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lq})),{}\\spad{lq})} assuming that \\axiom{remOp(\\spad{lq})} returns \\axiom{\\spad{lq}} up to similarity.") (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{lq})} returns the same as \\axiom{removeRedundantFactors(concat(\\spad{lp},{}\\spad{lq}))} assuming that \\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.") (((|List| |#4|) (|List| |#4|) |#4|) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors(cons(\\spad{q},{}\\spad{lp}))} assuming that \\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.") (((|List| |#4|) |#4| |#4|) "\\axiom{removeRedundantFactors(\\spad{p},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors([\\spad{p},{}\\spad{q}])}") (((|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lq}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lq} = [\\spad{q1},{}...,{}\\spad{qm}]} then the product \\axiom{p1*p2*...\\spad{*pn}} vanishes iff the product \\axiom{q1*q2*...\\spad{*qm}} vanishes,{} and the product of degrees of the \\axiom{\\spad{qi}} is not greater than the one of the \\axiom{\\spad{pj}},{} and no polynomial in \\axiom{\\spad{lq}} divides another polynomial in \\axiom{\\spad{lq}}. In particular,{} polynomials lying in the base ring \\axiom{\\spad{R}} are removed. Moreover,{} \\axiom{\\spad{lq}} is sorted \\spad{w}.\\spad{r}.\\spad{t} \\axiom{infRittWu?}. Furthermore,{} if \\spad{R} is \\spad{gcd}-domain,{} the polynomials in \\axiom{\\spad{lq}} are pairwise without common non trivial factor.")))
@@ -3886,7 +3886,7 @@ NIL
NIL
(-989 R)
((|constructor| (NIL "PointCategory is the category of points in space which may be plotted via the graphics facilities. Functions are provided for defining points and handling elements of points.")) (|extend| (($ $ (|List| |#1|)) "\\spad{extend(x,l,r)} \\undocumented")) (|cross| (($ $ $) "\\spad{cross(p,q)} computes the cross product of the two points \\spad{p} and \\spad{q}. Error if the \\spad{p} and \\spad{q} are not 3 dimensional")) (|dimension| (((|PositiveInteger|) $) "\\spad{dimension(s)} returns the dimension of the point category \\spad{s}.")) (|point| (($ (|List| |#1|)) "\\spad{point(l)} returns a point category defined by a list \\spad{l} of elements from the domain \\spad{R}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-990 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,p)} \\undocumented")))
@@ -3934,7 +3934,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-1031))) (|HasCategory| |#2| (QUOTE (-826))) (|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-1161))))
(-1001 S)
((|constructor| (NIL "QuotientField(\\spad{S}) is the category of fractions of an Integral Domain \\spad{S}.")) (|floor| ((|#1| $) "\\spad{floor(x)} returns the largest integral element below \\spad{x}.")) (|ceiling| ((|#1| $) "\\spad{ceiling(x)} returns the smallest integral element above \\spad{x}.")) (|random| (($) "\\spad{random()} returns a random fraction.")) (|fractionPart| (($ $) "\\spad{fractionPart(x)} returns the fractional part of \\spad{x}. \\spad{x} = wholePart(\\spad{x}) + fractionPart(\\spad{x})")) (|wholePart| ((|#1| $) "\\spad{wholePart(x)} returns the whole part of the fraction \\spad{x} \\spadignore{i.e.} the truncated quotient of the numerator by the denominator.")) (|denominator| (($ $) "\\spad{denominator(x)} is the denominator of the fraction \\spad{x} converted to \\%.")) (|numerator| (($ $) "\\spad{numerator(x)} is the numerator of the fraction \\spad{x} converted to \\%.")) (|denom| ((|#1| $) "\\spad{denom(x)} returns the denominator of the fraction \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer(x)} returns the numerator of the fraction \\spad{x}.")) (/ (($ |#1| |#1|) "\\spad{d1 / d2} returns the fraction \\spad{d1} divided by \\spad{d2}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1002 |n| K)
((|constructor| (NIL "This domain provides modest support for quadratic forms.")) (|elt| ((|#2| $ (|DirectProduct| |#1| |#2|)) "\\spad{elt(qf,v)} evaluates the quadratic form \\spad{qf} on the vector \\spad{v},{} producing a scalar.")) (|matrix| (((|SquareMatrix| |#1| |#2|) $) "\\spad{matrix(qf)} creates a square matrix from the quadratic form \\spad{qf}.")) (|quadraticForm| (($ (|SquareMatrix| |#1| |#2|)) "\\spad{quadraticForm(m)} creates a quadratic form from a symmetric,{} square matrix \\spad{m}.")))
@@ -3946,7 +3946,7 @@ NIL
NIL
(-1004 S)
((|constructor| (NIL "A queue is a bag where the first item inserted is the first item extracted.")) (|back| ((|#1| $) "\\spad{back(q)} returns the element at the back of the queue. The queue \\spad{q} is unchanged by this operation. Error: if \\spad{q} is empty.")) (|front| ((|#1| $) "\\spad{front(q)} returns the element at the front of the queue. The queue \\spad{q} is unchanged by this operation. Error: if \\spad{q} is empty.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(q)} returns the number of elements in the queue. Note: \\axiom{length(\\spad{q}) = \\spad{#q}}.")) (|rotate!| (($ $) "\\spad{rotate! q} rotates queue \\spad{q} so that the element at the front of the queue goes to the back of the queue. Note: rotate! \\spad{q} is equivalent to enqueue!(dequeue!(\\spad{q})).")) (|dequeue!| ((|#1| $) "\\spad{dequeue! s} destructively extracts the first (top) element from queue \\spad{q}. The element previously second in the queue becomes the first element. Error: if \\spad{q} is empty.")) (|enqueue!| ((|#1| |#1| $) "\\spad{enqueue!(x,q)} inserts \\spad{x} into the queue \\spad{q} at the back end.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-1005 S R)
((|constructor| (NIL "\\spadtype{QuaternionCategory} describes the category of quaternions and implements functions that are not representation specific.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(q)} returns \\spad{q} as a rational number,{} or \"failed\" if this is not possible. Note: if \\spad{rational?(q)} is \\spad{true},{} the conversion can be done and the rational number will be returned.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(q)} tries to convert \\spad{q} into a rational number. Error: if this is not possible. If \\spad{rational?(q)} is \\spad{true},{} the conversion will be done and the rational number returned.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(q)} returns {\\it \\spad{true}} if all the imaginary parts of \\spad{q} are zero and the real part can be converted into a rational number,{} and {\\it \\spad{false}} otherwise.")) (|abs| ((|#2| $) "\\spad{abs(q)} computes the absolute value of quaternion \\spad{q} (sqrt of norm).")) (|real| ((|#2| $) "\\spad{real(q)} extracts the real part of quaternion \\spad{q}.")) (|quatern| (($ |#2| |#2| |#2| |#2|) "\\spad{quatern(r,i,j,k)} constructs a quaternion from scalars.")) (|norm| ((|#2| $) "\\spad{norm(q)} computes the norm of \\spad{q} (the sum of the squares of the components).")) (|imagK| ((|#2| $) "\\spad{imagK(q)} extracts the imaginary \\spad{k} part of quaternion \\spad{q}.")) (|imagJ| ((|#2| $) "\\spad{imagJ(q)} extracts the imaginary \\spad{j} part of quaternion \\spad{q}.")) (|imagI| ((|#2| $) "\\spad{imagI(q)} extracts the imaginary \\spad{i} part of quaternion \\spad{q}.")) (|conjugate| (($ $) "\\spad{conjugate(q)} negates the imaginary parts of quaternion \\spad{q}.")))
@@ -3954,7 +3954,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (QUOTE (-1069))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-294))))
(-1006 R)
((|constructor| (NIL "\\spadtype{QuaternionCategory} describes the category of quaternions and implements functions that are not representation specific.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(q)} returns \\spad{q} as a rational number,{} or \"failed\" if this is not possible. Note: if \\spad{rational?(q)} is \\spad{true},{} the conversion can be done and the rational number will be returned.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(q)} tries to convert \\spad{q} into a rational number. Error: if this is not possible. If \\spad{rational?(q)} is \\spad{true},{} the conversion will be done and the rational number returned.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(q)} returns {\\it \\spad{true}} if all the imaginary parts of \\spad{q} are zero and the real part can be converted into a rational number,{} and {\\it \\spad{false}} otherwise.")) (|abs| ((|#1| $) "\\spad{abs(q)} computes the absolute value of quaternion \\spad{q} (sqrt of norm).")) (|real| ((|#1| $) "\\spad{real(q)} extracts the real part of quaternion \\spad{q}.")) (|quatern| (($ |#1| |#1| |#1| |#1|) "\\spad{quatern(r,i,j,k)} constructs a quaternion from scalars.")) (|norm| ((|#1| $) "\\spad{norm(q)} computes the norm of \\spad{q} (the sum of the squares of the components).")) (|imagK| ((|#1| $) "\\spad{imagK(q)} extracts the imaginary \\spad{k} part of quaternion \\spad{q}.")) (|imagJ| ((|#1| $) "\\spad{imagJ(q)} extracts the imaginary \\spad{j} part of quaternion \\spad{q}.")) (|imagI| ((|#1| $) "\\spad{imagI(q)} extracts the imaginary \\spad{i} part of quaternion \\spad{q}.")) (|conjugate| (($ $) "\\spad{conjugate(q)} negates the imaginary parts of quaternion \\spad{q}.")))
-((-4441 |has| |#1| (-294)) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| |#1| (-294)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1007 QR R QS S)
((|constructor| (NIL "\\spadtype{QuaternionCategoryFunctions2} implements functions between two quaternion domains. The function \\spadfun{map} is used by the system interpreter to coerce between quaternion types.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,u)} maps \\spad{f} onto the component parts of the quaternion \\spad{u}.")))
@@ -3962,11 +3962,11 @@ NIL
NIL
(-1008 R)
((|constructor| (NIL "\\spadtype{Quaternion} implements quaternions over a \\indented{2}{commutative ring. The main constructor function is \\spadfun{quatern}} \\indented{2}{which takes 4 arguments: the real part,{} the \\spad{i} imaginary part,{} the \\spad{j}} \\indented{2}{imaginary part and the \\spad{k} imaginary part.}")))
-((-4441 |has| |#1| (-294)) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| |#1| (-294)) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-294))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-294))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -290) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-1069))) (|HasCategory| |#1| (QUOTE (-551))))
(-1009 S)
((|constructor| (NIL "Linked List implementation of a Queue")) (|queue| (($ (|List| |#1|)) "\\spad{queue([x,y,...,z])} creates a queue with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom) element \\spad{z}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-1010 S)
((|constructor| (NIL "The \\spad{RadicalCategory} is a model for the rational numbers.")) (** (($ $ (|Fraction| (|Integer|))) "\\spad{x ** y} is the rational exponentiation of \\spad{x} by the power \\spad{y}.")) (|nthRoot| (($ $ (|Integer|)) "\\spad{nthRoot(x,n)} returns the \\spad{n}th root of \\spad{x}.")) (|sqrt| (($ $) "\\spad{sqrt(x)} returns the square root of \\spad{x}.")))
@@ -3978,11 +3978,11 @@ NIL
NIL
(-1012 -1674 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-4441 |has| (-413 |#2|) (-368)) (-4446 |has| (-413 |#2|) (-368)) (-4440 |has| (-413 |#2|) (-368)) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| (-413 |#2|) (-368)) (-4447 |has| (-413 |#2|) (-368)) (-4441 |has| (-413 |#2|) (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-413 |#2|) (QUOTE (-146))) (|HasCategory| (-413 |#2|) (QUOTE (-148))) (|HasCategory| (-413 |#2|) (QUOTE (-354))) (-2740 (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-373))) (-2740 (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (-2740 (-12 (|HasCategory| (-413 |#2|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (-12 (|HasCategory| (-413 |#2|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-413 |#2|) (QUOTE (-354))))) (|HasCategory| (-413 |#2|) (LIST (QUOTE -645) (QUOTE (-570)))) (-2740 (|HasCategory| (-413 |#2|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-413 |#2|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-12 (|HasCategory| (-413 |#2|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))))
(-1013 |bb|)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating decimal expansions or more generally as repeating expansions in any base.")) (|fractRadix| (($ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{fractRadix(pre,cyc)} creates a fractional radix expansion from a list of prefix ragits and a list of cyclic ragits. For example,{} \\spad{fractRadix([1],[6])} will return \\spad{0.16666666...}.")) (|wholeRadix| (($ (|List| (|Integer|))) "\\spad{wholeRadix(l)} creates an integral radix expansion from a list of ragits. For example,{} \\spad{wholeRadix([1,3,4])} will return \\spad{134}.")) (|cycleRagits| (((|List| (|Integer|)) $) "\\spad{cycleRagits(rx)} returns the cyclic part of the ragits of the fractional part of a radix expansion. For example,{} if \\spad{x = 3/28 = 0.10 714285 714285 ...},{} then \\spad{cycleRagits(x) = [7,1,4,2,8,5]}.")) (|prefixRagits| (((|List| (|Integer|)) $) "\\spad{prefixRagits(rx)} returns the non-cyclic part of the ragits of the fractional part of a radix expansion. For example,{} if \\spad{x = 3/28 = 0.10 714285 714285 ...},{} then \\spad{prefixRagits(x)=[1,0]}.")) (|fractRagits| (((|Stream| (|Integer|)) $) "\\spad{fractRagits(rx)} returns the ragits of the fractional part of a radix expansion.")) (|wholeRagits| (((|List| (|Integer|)) $) "\\spad{wholeRagits(rx)} returns the ragits of the integer part of a radix expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(rx)} returns the fractional part of a radix expansion.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| (-570) (QUOTE (-916))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| (-570) (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-148))) (|HasCategory| (-570) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-570) (QUOTE (-1031))) (|HasCategory| (-570) (QUOTE (-826))) (-2740 (|HasCategory| (-570) (QUOTE (-826))) (|HasCategory| (-570) (QUOTE (-856)))) (|HasCategory| (-570) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-1161))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| (-570) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| (-570) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| (-570) (QUOTE (-235))) (|HasCategory| (-570) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| (-570) (LIST (QUOTE -520) (QUOTE (-1186)) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -313) (QUOTE (-570)))) (|HasCategory| (-570) (LIST (QUOTE -290) (QUOTE (-570)) (QUOTE (-570)))) (|HasCategory| (-570) (QUOTE (-311))) (|HasCategory| (-570) (QUOTE (-551))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-570) (LIST (QUOTE -645) (QUOTE (-570)))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
(-1014)
((|constructor| (NIL "This package provides tools for creating radix expansions.")) (|radix| (((|Any|) (|Fraction| (|Integer|)) (|Integer|)) "\\spad{radix(x,b)} converts \\spad{x} to a radix expansion in base \\spad{b}.")))
@@ -4003,7 +4003,7 @@ NIL
(-1018 A S)
((|constructor| (NIL "A recursive aggregate over a type \\spad{S} is a model for a a directed graph containing values of type \\spad{S}. Recursively,{} a recursive aggregate is a {\\em node} consisting of a \\spadfun{value} from \\spad{S} and 0 or more \\spadfun{children} which are recursive aggregates. A node with no children is called a \\spadfun{leaf} node. A recursive aggregate may be cyclic for which some operations as noted may go into an infinite loop.")) (|setvalue!| ((|#2| $ |#2|) "\\spad{setvalue!(u,x)} sets the value of node \\spad{u} to \\spad{x}.")) (|setelt| ((|#2| $ "value" |#2|) "\\spad{setelt(a,\"value\",x)} (also written \\axiom{a . value \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setvalue!(a,{}\\spad{x})}")) (|setchildren!| (($ $ (|List| $)) "\\spad{setchildren!(u,v)} replaces the current children of node \\spad{u} with the members of \\spad{v} in left-to-right order.")) (|node?| (((|Boolean|) $ $) "\\spad{node?(u,v)} tests if node \\spad{u} is contained in node \\spad{v} (either as a child,{} a child of a child,{} etc.).")) (|child?| (((|Boolean|) $ $) "\\spad{child?(u,v)} tests if node \\spad{u} is a child of node \\spad{v}.")) (|distance| (((|Integer|) $ $) "\\spad{distance(u,v)} returns the path length (an integer) from node \\spad{u} to \\spad{v}.")) (|leaves| (((|List| |#2|) $) "\\spad{leaves(t)} returns the list of values in obtained by visiting the nodes of tree \\axiom{\\spad{t}} in left-to-right order.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(u)} tests if \\spad{u} has a cycle.")) (|elt| ((|#2| $ "value") "\\spad{elt(u,\"value\")} (also written: \\axiom{a. value}) is equivalent to \\axiom{value(a)}.")) (|value| ((|#2| $) "\\spad{value(u)} returns the value of the node \\spad{u}.")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(u)} tests if \\spad{u} is a terminal node.")) (|nodes| (((|List| $) $) "\\spad{nodes(u)} returns a list of all of the nodes of aggregate \\spad{u}.")) (|children| (((|List| $) $) "\\spad{children(u)} returns a list of the children of aggregate \\spad{u}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)) (|HasCategory| |#2| (QUOTE (-1109))))
+((|HasAttribute| |#1| (QUOTE -4450)) (|HasCategory| |#2| (QUOTE (-1109))))
(-1019 S)
((|constructor| (NIL "A recursive aggregate over a type \\spad{S} is a model for a a directed graph containing values of type \\spad{S}. Recursively,{} a recursive aggregate is a {\\em node} consisting of a \\spadfun{value} from \\spad{S} and 0 or more \\spadfun{children} which are recursive aggregates. A node with no children is called a \\spadfun{leaf} node. A recursive aggregate may be cyclic for which some operations as noted may go into an infinite loop.")) (|setvalue!| ((|#1| $ |#1|) "\\spad{setvalue!(u,x)} sets the value of node \\spad{u} to \\spad{x}.")) (|setelt| ((|#1| $ "value" |#1|) "\\spad{setelt(a,\"value\",x)} (also written \\axiom{a . value \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setvalue!(a,{}\\spad{x})}")) (|setchildren!| (($ $ (|List| $)) "\\spad{setchildren!(u,v)} replaces the current children of node \\spad{u} with the members of \\spad{v} in left-to-right order.")) (|node?| (((|Boolean|) $ $) "\\spad{node?(u,v)} tests if node \\spad{u} is contained in node \\spad{v} (either as a child,{} a child of a child,{} etc.).")) (|child?| (((|Boolean|) $ $) "\\spad{child?(u,v)} tests if node \\spad{u} is a child of node \\spad{v}.")) (|distance| (((|Integer|) $ $) "\\spad{distance(u,v)} returns the path length (an integer) from node \\spad{u} to \\spad{v}.")) (|leaves| (((|List| |#1|) $) "\\spad{leaves(t)} returns the list of values in obtained by visiting the nodes of tree \\axiom{\\spad{t}} in left-to-right order.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(u)} tests if \\spad{u} has a cycle.")) (|elt| ((|#1| $ "value") "\\spad{elt(u,\"value\")} (also written: \\axiom{a. value}) is equivalent to \\axiom{value(a)}.")) (|value| ((|#1| $) "\\spad{value(u)} returns the value of the node \\spad{u}.")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(u)} tests if \\spad{u} is a terminal node.")) (|nodes| (((|List| $) $) "\\spad{nodes(u)} returns a list of all of the nodes of aggregate \\spad{u}.")) (|children| (((|List| $) $) "\\spad{children(u)} returns a list of the children of aggregate \\spad{u}.")))
NIL
@@ -4014,7 +4014,7 @@ NIL
NIL
(-1021)
((|constructor| (NIL "\\axiomType{RealClosedField} provides common acces functions for all real closed fields.")) (|approximate| (((|Fraction| (|Integer|)) $ $) "\\axiom{approximate(\\spad{n},{}\\spad{p})} gives an approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|rename| (($ $ (|OutputForm|)) "\\axiom{rename(\\spad{x},{}name)} gives a new number that prints as name")) (|rename!| (($ $ (|OutputForm|)) "\\axiom{rename!(\\spad{x},{}name)} changes the way \\axiom{\\spad{x}} is printed")) (|sqrt| (($ (|Integer|)) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ (|Fraction| (|Integer|))) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $ (|PositiveInteger|)) "\\axiom{sqrt(\\spad{x},{}\\spad{n})} is \\axiom{\\spad{x} \\spad{**} (1/n)}")) (|allRootsOf| (((|List| $) (|Polynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely")) (|rootOf| (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|)) "\\axiom{rootOf(pol,{}\\spad{n})} creates the \\spad{n}th root for the order of \\axiom{pol} and gives it unique name") (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|) (|OutputForm|)) "\\axiom{rootOf(pol,{}\\spad{n},{}name)} creates the \\spad{n}th root for the order of \\axiom{pol} and names it \\axiom{name}")) (|mainValue| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainValue(\\spad{x})} is the expression of \\axiom{\\spad{x}} in terms of \\axiom{SparseUnivariatePolynomial(\\$)}")) (|mainDefiningPolynomial| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainDefiningPolynomial(\\spad{x})} is the defining polynomial for the main algebraic quantity of \\axiom{\\spad{x}}")) (|mainForm| (((|Union| (|OutputForm|) "failed") $) "\\axiom{mainForm(\\spad{x})} is the main algebraic quantity name of \\axiom{\\spad{x}}")))
-((-4441 . T) (-4446 . T) (-4440 . T) (-4443 . T) (-4442 . T) ((-4450 "*") . T) (-4445 . T))
+((-4442 . T) (-4447 . T) (-4441 . T) (-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4446 . T))
NIL
(-1022 R -1674)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} elementary case.} Author: Manuel Bronstein Date Created: 1 February 1988 Date Last Updated: 2 November 1995 Keywords: elementary,{} function,{} integration.")) (|rischDE| (((|Record| (|:| |ans| |#2|) (|:| |right| |#2|) (|:| |sol?| (|Boolean|))) (|Integer|) |#2| |#2| (|Symbol|) (|Mapping| (|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|List| |#2|)) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) "\\spad{rischDE(n, f, g, x, lim, ext)} returns \\spad{[y, h, b]} such that \\spad{dy/dx + n df/dx y = h} and \\spad{b := h = g}. The equation \\spad{dy/dx + n df/dx y = g} has no solution if \\spad{h \\~~= g} (\\spad{y} is a partial solution in that case). Notes: \\spad{lim} is a limited integration function,{} and ext is an extended integration function.")))
@@ -4062,7 +4062,7 @@ NIL
NIL
(-1033 |TheField|)
((|constructor| (NIL "This domain implements the real closure of an ordered field.")) (|relativeApprox| (((|Fraction| (|Integer|)) $ $) "\\axiom{relativeApprox(\\spad{n},{}\\spad{p})} gives a relative approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|mainCharacterization| (((|Union| (|RightOpenIntervalRootCharacterization| $ (|SparseUnivariatePolynomial| $)) "failed") $) "\\axiom{mainCharacterization(\\spad{x})} is the main algebraic quantity of \\axiom{\\spad{x}} (\\axiom{SEG})")) (|algebraicOf| (($ (|RightOpenIntervalRootCharacterization| $ (|SparseUnivariatePolynomial| $)) (|OutputForm|)) "\\axiom{algebraicOf(char)} is the external number")))
-((-4441 . T) (-4446 . T) (-4440 . T) (-4443 . T) (-4442 . T) ((-4450 "*") . T) (-4445 . T))
+((-4442 . T) (-4447 . T) (-4441 . T) (-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4446 . T))
((-2740 (|HasCategory| (-413 (-570)) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-413 (-570)) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-413 (-570)) (LIST (QUOTE -1047) (QUOTE (-570)))))
(-1034 -1674 L)
((|constructor| (NIL "\\spadtype{ReductionOfOrder} provides functions for reducing the order of linear ordinary differential equations once some solutions are known.")) (|ReduceOrder| (((|Record| (|:| |eq| |#2|) (|:| |op| (|List| |#1|))) |#2| (|List| |#1|)) "\\spad{ReduceOrder(op, [f1,...,fk])} returns \\spad{[op1,[g1,...,gk]]} such that for any solution \\spad{z} of \\spad{op1 z = 0},{} \\spad{y = gk \\int(g_{k-1} \\int(... \\int(g1 \\int z)...)} is a solution of \\spad{op y = 0}. Each \\spad{fi} must satisfy \\spad{op fi = 0}.") ((|#2| |#2| |#1|) "\\spad{ReduceOrder(op, s)} returns \\spad{op1} such that for any solution \\spad{z} of \\spad{op1 z = 0},{} \\spad{y = s \\int z} is a solution of \\spad{op y = 0}. \\spad{s} must satisfy \\spad{op s = 0}.")))
@@ -4074,12 +4074,12 @@ NIL
((|HasCategory| |#1| (QUOTE (-1109))))
(-1036 R E V P)
((|constructor| (NIL "This domain provides an implementation of regular chains. Moreover,{} the operation \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory} is an implementation of a new algorithm for solving polynomial systems by means of regular chains.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|preprocess| (((|Record| (|:| |val| (|List| |#4|)) (|:| |towers| (|List| $))) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{pre_process(\\spad{lp},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|internalZeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalZeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3})} is an internal subroutine,{} exported only for developement.")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2}.\\spad{b3},{}\\spad{b4})} is an internal subroutine,{} exported only for developement.") (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?,{}info?)} has the same specifications as \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory}. Moreover,{} if \\axiom{clos?} then solves in the sense of the Zariski closure else solves in the sense of the regular zeros. If \\axiom{info?} then do print messages during the computations.")) (|internalAugment| (((|List| $) |#4| $ (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalAugment(\\spad{p},{}\\spad{ts},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))))
(-1037 R)
((|constructor| (NIL "RepresentationPackage1 provides functions for representation theory for finite groups and algebras. The package creates permutation representations and uses tensor products and its symmetric and antisymmetric components to create new representations of larger degree from given ones. Note: instead of having parameters from \\spadtype{Permutation} this package allows list notation of permutations as well: \\spadignore{e.g.} \\spad{[1,4,3,2]} denotes permutes 2 and 4 and fixes 1 and 3.")) (|permutationRepresentation| (((|List| (|Matrix| (|Integer|))) (|List| (|List| (|Integer|)))) "\\spad{permutationRepresentation([pi1,...,pik],n)} returns the list of matrices {\\em [(deltai,pi1(i)),...,(deltai,pik(i))]} if the permutations {\\em pi1},{}...,{}{\\em pik} are in list notation and are permuting {\\em {1,2,...,n}}.") (((|List| (|Matrix| (|Integer|))) (|List| (|Permutation| (|Integer|))) (|Integer|)) "\\spad{permutationRepresentation([pi1,...,pik],n)} returns the list of matrices {\\em [(deltai,pi1(i)),...,(deltai,pik(i))]} (Kronecker delta) for the permutations {\\em pi1,...,pik} of {\\em {1,2,...,n}}.") (((|Matrix| (|Integer|)) (|List| (|Integer|))) "\\spad{permutationRepresentation(pi,n)} returns the matrix {\\em (deltai,pi(i))} (Kronecker delta) if the permutation {\\em pi} is in list notation and permutes {\\em {1,2,...,n}}.") (((|Matrix| (|Integer|)) (|Permutation| (|Integer|)) (|Integer|)) "\\spad{permutationRepresentation(pi,n)} returns the matrix {\\em (deltai,pi(i))} (Kronecker delta) for a permutation {\\em pi} of {\\em {1,2,...,n}}.")) (|tensorProduct| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{tensorProduct([a1,...ak])} calculates the list of Kronecker products of each matrix {\\em ai} with itself for {1 \\spad{<=} \\spad{i} \\spad{<=} \\spad{k}}. Note: If the list of matrices corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the representation with itself.") (((|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{tensorProduct(a)} calculates the Kronecker product of the matrix {\\em a} with itself.") (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{tensorProduct([a1,...,ak],[b1,...,bk])} calculates the list of Kronecker products of the matrices {\\em ai} and {\\em bi} for {1 \\spad{<=} \\spad{i} \\spad{<=} \\spad{k}}. Note: If each list of matrices corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the two representations.") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{tensorProduct(a,b)} calculates the Kronecker product of the matrices {\\em a} and \\spad{b}. Note: if each matrix corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the two representations.")) (|symmetricTensors| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{symmetricTensors(la,n)} applies to each \\spad{m}-by-\\spad{m} square matrix in the list {\\em la} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (n,0,...,0)} of \\spad{n}. Error: if the matrices in {\\em la} are not square matrices. Note: this corresponds to the symmetrization of the representation with the trivial representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the symmetric tensors of the \\spad{n}-fold tensor product.") (((|Matrix| |#1|) (|Matrix| |#1|) (|PositiveInteger|)) "\\spad{symmetricTensors(a,n)} applies to the \\spad{m}-by-\\spad{m} square matrix {\\em a} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (n,0,...,0)} of \\spad{n}. Error: if {\\em a} is not a square matrix. Note: this corresponds to the symmetrization of the representation with the trivial representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the symmetric tensors of the \\spad{n}-fold tensor product.")) (|createGenericMatrix| (((|Matrix| (|Polynomial| |#1|)) (|NonNegativeInteger|)) "\\spad{createGenericMatrix(m)} creates a square matrix of dimension \\spad{k} whose entry at the \\spad{i}-th row and \\spad{j}-th column is the indeterminate {\\em x[i,j]} (double subscripted).")) (|antisymmetricTensors| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{antisymmetricTensors(la,n)} applies to each \\spad{m}-by-\\spad{m} square matrix in the list {\\em la} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (1,1,...,1,0,0,...,0)} of \\spad{n}. Error: if \\spad{n} is greater than \\spad{m}. Note: this corresponds to the symmetrization of the representation with the sign representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the antisymmetric tensors of the \\spad{n}-fold tensor product.") (((|Matrix| |#1|) (|Matrix| |#1|) (|PositiveInteger|)) "\\spad{antisymmetricTensors(a,n)} applies to the square matrix {\\em a} the irreducible,{} polynomial representation of the general linear group {\\em GLm},{} where \\spad{m} is the number of rows of {\\em a},{} which corresponds to the partition {\\em (1,1,...,1,0,0,...,0)} of \\spad{n}. Error: if \\spad{n} is greater than \\spad{m}. Note: this corresponds to the symmetrization of the representation with the sign representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the antisymmetric tensors of the \\spad{n}-fold tensor product.")))
NIL
-((|HasAttribute| |#1| (QUOTE (-4450 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4451 "*"))))
(-1038 R)
((|constructor| (NIL "RepresentationPackage2 provides functions for working with modular representations of finite groups and algebra. The routines in this package are created,{} using ideas of \\spad{R}. Parker,{} (the meat-Axe) to get smaller representations from bigger ones,{} \\spadignore{i.e.} finding sub- and factormodules,{} or to show,{} that such the representations are irreducible. Note: most functions are randomized functions of Las Vegas type \\spadignore{i.e.} every answer is correct,{} but with small probability the algorithm fails to get an answer.")) (|scanOneDimSubspaces| (((|Vector| |#1|) (|List| (|Vector| |#1|)) (|Integer|)) "\\spad{scanOneDimSubspaces(basis,n)} gives a canonical representative of the {\\em n}\\spad{-}th one-dimensional subspace of the vector space generated by the elements of {\\em basis},{} all from {\\em R**n}. The coefficients of the representative are of shape {\\em (0,...,0,1,*,...,*)},{} {\\em *} in \\spad{R}. If the size of \\spad{R} is \\spad{q},{} then there are {\\em (q**n-1)/(q-1)} of them. We first reduce \\spad{n} modulo this number,{} then find the largest \\spad{i} such that {\\em +/[q**i for i in 0..i-1] <= n}. Subtracting this sum of powers from \\spad{n} results in an \\spad{i}-digit number to \\spad{basis} \\spad{q}. This fills the positions of the stars.")) (|meatAxe| (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{meatAxe(aG, numberOfTries)} calls {\\em meatAxe(aG,true,numberOfTries,7)}. Notes: 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Boolean|)) "\\spad{meatAxe(aG, randomElements)} calls {\\em meatAxe(aG,false,6,7)},{} only using Parker\\spad{'s} fingerprints,{} if {\\em randomElemnts} is \\spad{false}. If it is \\spad{true},{} it calls {\\em meatAxe(aG,true,25,7)},{} only using random elements. Note: the choice of 25 was rather arbitrary. Also,{} 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|))) "\\spad{meatAxe(aG)} calls {\\em meatAxe(aG,false,25,7)} returns a 2-list of representations as follows. All matrices of argument \\spad{aG} are assumed to be square and of equal size. Then \\spad{aG} generates a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an A-module in the usual way. meatAxe(\\spad{aG}) creates at most 25 random elements of the algebra,{} tests them for singularity. If singular,{} it tries at most 7 elements of its kernel to generate a proper submodule. If successful a list which contains first the list of the representations of the submodule,{} then a list of the representations of the factor module is returned. Otherwise,{} if we know that all the kernel is already scanned,{} Norton\\spad{'s} irreducibility test can be used either to prove irreducibility or to find the splitting. Notes: the first 6 tries use Parker\\spad{'s} fingerprints. Also,{} 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Boolean|) (|Integer|) (|Integer|)) "\\spad{meatAxe(aG,randomElements,numberOfTries, maxTests)} returns a 2-list of representations as follows. All matrices of argument \\spad{aG} are assumed to be square and of equal size. Then \\spad{aG} generates a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an A-module in the usual way. meatAxe(\\spad{aG},{}\\spad{numberOfTries},{} maxTests) creates at most {\\em numberOfTries} random elements of the algebra,{} tests them for singularity. If singular,{} it tries at most {\\em maxTests} elements of its kernel to generate a proper submodule. If successful,{} a 2-list is returned: first,{} a list containing first the list of the representations of the submodule,{} then a list of the representations of the factor module. Otherwise,{} if we know that all the kernel is already scanned,{} Norton\\spad{'s} irreducibility test can be used either to prove irreducibility or to find the splitting. If {\\em randomElements} is {\\em false},{} the first 6 tries use Parker\\spad{'s} fingerprints.")) (|split| (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Vector| (|Vector| |#1|))) "\\spad{split(aG,submodule)} uses a proper \\spad{submodule} of {\\em R**n} to create the representations of the \\spad{submodule} and of the factor module.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{split(aG, vector)} returns a subalgebra \\spad{A} of all square matrix of dimension \\spad{n} as a list of list of matrices,{} generated by the list of matrices \\spad{aG},{} where \\spad{n} denotes both the size of vector as well as the dimension of each of the square matrices. {\\em V R} is an A-module in the natural way. split(\\spad{aG},{} vector) then checks whether the cyclic submodule generated by {\\em vector} is a proper submodule of {\\em V R}. If successful,{} it returns a two-element list,{} which contains first the list of the representations of the submodule,{} then the list of the representations of the factor module. If the vector generates the whole module,{} a one-element list of the old representation is given. Note: a later version this should call the other split.")) (|isAbsolutelyIrreducible?| (((|Boolean|) (|List| (|Matrix| |#1|))) "\\spad{isAbsolutelyIrreducible?(aG)} calls {\\em isAbsolutelyIrreducible?(aG,25)}. Note: the choice of 25 was rather arbitrary.") (((|Boolean|) (|List| (|Matrix| |#1|)) (|Integer|)) "\\spad{isAbsolutelyIrreducible?(aG, numberOfTries)} uses Norton\\spad{'s} irreducibility test to check for absolute irreduciblity,{} assuming if a one-dimensional kernel is found. As no field extension changes create \"new\" elements in a one-dimensional space,{} the criterium stays \\spad{true} for every extension. The method looks for one-dimensionals only by creating random elements (no fingerprints) since a run of {\\em meatAxe} would have proved absolute irreducibility anyway.")) (|areEquivalent?| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|Integer|)) "\\spad{areEquivalent?(aG0,aG1,numberOfTries)} calls {\\em areEquivalent?(aG0,aG1,true,25)}. Note: the choice of 25 was rather arbitrary.") (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{areEquivalent?(aG0,aG1)} calls {\\em areEquivalent?(aG0,aG1,true,25)}. Note: the choice of 25 was rather arbitrary.") (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|Boolean|) (|Integer|)) "\\spad{areEquivalent?(aG0,aG1,randomelements,numberOfTries)} tests whether the two lists of matrices,{} all assumed of same square shape,{} can be simultaneously conjugated by a non-singular matrix. If these matrices represent the same group generators,{} the representations are equivalent. The algorithm tries {\\em numberOfTries} times to create elements in the generated algebras in the same fashion. If their ranks differ,{} they are not equivalent. If an isomorphism is assumed,{} then the kernel of an element of the first algebra is mapped to the kernel of the corresponding element in the second algebra. Now consider the one-dimensional ones. If they generate the whole space (\\spadignore{e.g.} irreducibility !) we use {\\em standardBasisOfCyclicSubmodule} to create the only possible transition matrix. The method checks whether the matrix conjugates all corresponding matrices from {\\em aGi}. The way to choose the singular matrices is as in {\\em meatAxe}. If the two representations are equivalent,{} this routine returns the transformation matrix {\\em TM} with {\\em aG0.i * TM = TM * aG1.i} for all \\spad{i}. If the representations are not equivalent,{} a small 0-matrix is returned. Note: the case with different sets of group generators cannot be handled.")) (|standardBasisOfCyclicSubmodule| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{standardBasisOfCyclicSubmodule(lm,v)} returns a matrix as follows. It is assumed that the size \\spad{n} of the vector equals the number of rows and columns of the matrices. Then the matrices generate a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an \\spad{A}-module in the natural way. standardBasisOfCyclicSubmodule(\\spad{lm},{}\\spad{v}) calculates a matrix whose non-zero column vectors are the \\spad{R}-Basis of {\\em Av} achieved in the way as described in section 6 of \\spad{R}. A. Parker\\spad{'s} \"The Meat-Axe\". Note: in contrast to {\\em cyclicSubmodule},{} the result is not in echelon form.")) (|cyclicSubmodule| (((|Vector| (|Vector| |#1|)) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{cyclicSubmodule(lm,v)} generates a basis as follows. It is assumed that the size \\spad{n} of the vector equals the number of rows and columns of the matrices. Then the matrices generate a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an \\spad{A}-module in the natural way. cyclicSubmodule(\\spad{lm},{}\\spad{v}) generates the \\spad{R}-Basis of {\\em Av} as described in section 6 of \\spad{R}. A. Parker\\spad{'s} \"The Meat-Axe\". Note: in contrast to the description in \"The Meat-Axe\" and to {\\em standardBasisOfCyclicSubmodule} the result is in echelon form.")) (|createRandomElement| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|Matrix| |#1|)) "\\spad{createRandomElement(aG,x)} creates a random element of the group algebra generated by {\\em aG}.")) (|completeEchelonBasis| (((|Matrix| |#1|) (|Vector| (|Vector| |#1|))) "\\spad{completeEchelonBasis(lv)} completes the basis {\\em lv} assumed to be in echelon form of a subspace of {\\em R**n} (\\spad{n} the length of all the vectors in {\\em lv}) with unit vectors to a basis of {\\em R**n}. It is assumed that the argument is not an empty vector and that it is not the basis of the 0-subspace. Note: the rows of the result correspond to the vectors of the basis.")))
NIL
@@ -4102,12 +4102,12 @@ NIL
NIL
(-1043 -1674 |Expon| |VarSet| |FPol| |LFPol|)
((|constructor| (NIL "ResidueRing is the quotient of a polynomial ring by an ideal. The ideal is given as a list of generators. The elements of the domain are equivalence classes expressed in terms of reduced elements")) (|lift| ((|#4| $) "\\spad{lift(x)} return the canonical representative of the equivalence class \\spad{x}")) (|coerce| (($ |#4|) "\\spad{coerce(f)} produces the equivalence class of \\spad{f} in the residue ring")) (|reduce| (($ |#4|) "\\spad{reduce(f)} produces the equivalence class of \\spad{f} in the residue ring")))
-(((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1044)
((|constructor| (NIL "A domain used to return the results from a call to the NAG Library. It prints as a list of names and types,{} though the user may choose to display values automatically if he or she wishes.")) (|showArrayValues| (((|Boolean|) (|Boolean|)) "\\spad{showArrayValues(true)} forces the values of array components to be \\indented{1}{displayed rather than just their types.}")) (|showScalarValues| (((|Boolean|) (|Boolean|)) "\\spad{showScalarValues(true)} forces the values of scalar components to be \\indented{1}{displayed rather than just their types.}")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2223) (QUOTE (-52))))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2224) (QUOTE (-52))))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))))
(-1045)
((|constructor| (NIL "This domain represents `return' expressions.")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression returned by `e'.")))
NIL
@@ -4150,7 +4150,7 @@ NIL
NIL
(-1055 R |ls|)
((|constructor| (NIL "A domain for regular chains (\\spadignore{i.e.} regular triangular sets) over a \\spad{Gcd}-Domain and with a fix list of variables. This is just a front-end for the \\spadtype{RegularTriangularSet} domain constructor.")) (|zeroSetSplit| (((|List| $) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|) (|Boolean|)) "\\spad{zeroSetSplit(lp,clos?,info?)} returns a list \\spad{lts} of regular chains such that the union of the closures of their regular zero sets equals the affine variety associated with \\spad{lp}. Moreover,{} if \\spad{clos?} is \\spad{false} then the union of the regular zero set of the \\spad{ts} (for \\spad{ts} in \\spad{lts}) equals this variety. If \\spad{info?} is \\spad{true} then some information is displayed during the computations. See \\axiomOpFrom{zeroSetSplit}{RegularTriangularSet}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| (-786 |#1| (-870 |#2|)) (QUOTE (-1109))) (|HasCategory| (-786 |#1| (-870 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -786) (|devaluate| |#1|) (LIST (QUOTE -870) (|devaluate| |#2|)))))) (|HasCategory| (-786 |#1| (-870 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-786 |#1| (-870 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| (-870 |#2|) (QUOTE (-373))) (|HasCategory| (-786 |#1| (-870 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
(-1056)
((|constructor| (NIL "This package exports integer distributions")) (|ridHack1| (((|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{ridHack1(i,j,k,l)} \\undocumented")) (|geometric| (((|Mapping| (|Integer|)) |RationalNumber|) "\\spad{geometric(f)} \\undocumented")) (|poisson| (((|Mapping| (|Integer|)) |RationalNumber|) "\\spad{poisson(f)} \\undocumented")) (|binomial| (((|Mapping| (|Integer|)) (|Integer|) |RationalNumber|) "\\spad{binomial(n,f)} \\undocumented")) (|uniform| (((|Mapping| (|Integer|)) (|Segment| (|Integer|))) "\\spad{uniform(s)} \\undocumented")))
@@ -4162,7 +4162,7 @@ NIL
NIL
(-1058)
((|constructor| (NIL "The category of rings with unity,{} always associative,{} but not necessarily commutative.")) (|unitsKnown| ((|attribute|) "recip truly yields reciprocal or \"failed\" if not a unit. Note: \\spad{recip(0) = \"failed\"}.")) (|characteristic| (((|NonNegativeInteger|)) "\\spad{characteristic()} returns the characteristic of the ring this is the smallest positive integer \\spad{n} such that \\spad{n*x=0} for all \\spad{x} in the ring,{} or zero if no such \\spad{n} exists.")))
-((-4445 . T))
+((-4446 . T))
NIL
(-1059 |xx| -1674)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
@@ -4178,11 +4178,11 @@ NIL
((|HasCategory| |#4| (QUOTE (-311))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (QUOTE (-562))) (|HasCategory| |#4| (QUOTE (-174))))
(-1062 |m| |n| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategory} is a category of matrices of fixed dimensions. The dimensions of the matrix will be parameters of the domain. Domains in this category will be \\spad{R}-modules and will be non-mutable.")) (|nullSpace| (((|List| |#5|) $) "\\spad{nullSpace(m)}+ returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#3|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#3|) "\\spad{exquo(m,r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (|map| (($ (|Mapping| |#3| |#3| |#3|) $ $) "\\spad{map(f,a,b)} returns \\spad{c},{} where \\spad{c} is such that \\spad{c(i,j) = f(a(i,j),b(i,j))} for all \\spad{i},{} \\spad{j}.") (($ (|Mapping| |#3| |#3|) $) "\\spad{map(f,a)} returns \\spad{b},{} where \\spad{b(i,j) = a(i,j)} for all \\spad{i},{} \\spad{j}.")) (|column| ((|#5| $ (|Integer|)) "\\spad{column(m,j)} returns the \\spad{j}th column of the matrix \\spad{m}. Error: if the index outside the proper range.")) (|row| ((|#4| $ (|Integer|)) "\\spad{row(m,i)} returns the \\spad{i}th row of the matrix \\spad{m}. Error: if the index is outside the proper range.")) (|qelt| ((|#3| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,i,j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Note: there is NO error check to determine if indices are in the proper ranges.")) (|elt| ((|#3| $ (|Integer|) (|Integer|) |#3|) "\\spad{elt(m,i,j,r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise.") ((|#3| $ (|Integer|) (|Integer|)) "\\spad{elt(m,i,j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Error: if indices are outside the proper ranges.")) (|listOfLists| (((|List| (|List| |#3|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the matrix \\spad{m}.")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the matrix \\spad{m}.")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the matrix \\spad{m}.")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the matrix \\spad{m}.")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the matrix \\spad{m}.")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the matrix \\spad{m}.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,j] = -m[j,i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,j] = m[j,i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|matrix| (($ (|List| (|List| |#3|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|finiteAggregate| ((|attribute|) "matrices are finite")))
-((-4448 . T) (-4443 . T) (-4442 . T))
+((-4449 . T) (-4444 . T) (-4443 . T))
NIL
(-1063 |m| |n| R)
((|constructor| (NIL "\\spadtype{RectangularMatrix} is a matrix domain where the number of rows and the number of columns are parameters of the domain.")) (|rectangularMatrix| (($ (|Matrix| |#3|)) "\\spad{rectangularMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spad{RectangularMatrix}.")))
-((-4448 . T) (-4443 . T) (-4442 . T))
+((-4449 . T) (-4444 . T) (-4443 . T))
((|HasCategory| |#3| (QUOTE (-174))) (-2740 (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (QUOTE (-311))) (|HasCategory| |#3| (QUOTE (-562))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868)))))
(-1064 |m| |n| R1 |Row1| |Col1| M1 R2 |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategoryFunctions2} provides functions between two matrix domains. The functions provided are \\spadfun{map} and \\spadfun{reduce}.")) (|reduce| ((|#7| (|Mapping| |#7| |#3| |#7|) |#6| |#7|) "\\spad{reduce(f,m,r)} returns a matrix \\spad{n} where \\spad{n[i,j] = f(m[i,j],r)} for all indices spad{\\spad{i}} and \\spad{j}.")) (|map| ((|#10| (|Mapping| |#7| |#3|) |#6|) "\\spad{map(f,m)} applies the function \\spad{f} to the elements of the matrix \\spad{m}.")))
@@ -4206,7 +4206,7 @@ NIL
NIL
(-1069)
((|constructor| (NIL "The real number system category is intended as a model for the real numbers. The real numbers form an ordered normed field. Note that we have purposely not included \\spadtype{DifferentialRing} or the elementary functions (see \\spadtype{TranscendentalFunctionCategory}) in the definition.")) (|abs| (($ $) "\\spad{abs x} returns the absolute value of \\spad{x}.")) (|round| (($ $) "\\spad{round x} computes the integer closest to \\spad{x}.")) (|truncate| (($ $) "\\spad{truncate x} returns the integer between \\spad{x} and 0 closest to \\spad{x}.")) (|fractionPart| (($ $) "\\spad{fractionPart x} returns the fractional part of \\spad{x}.")) (|wholePart| (((|Integer|) $) "\\spad{wholePart x} returns the integer part of \\spad{x}.")) (|floor| (($ $) "\\spad{floor x} returns the largest integer \\spad{<= x}.")) (|ceiling| (($ $) "\\spad{ceiling x} returns the small integer \\spad{>= x}.")) (|norm| (($ $) "\\spad{norm x} returns the same as absolute value.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1070 |TheField| |ThePolDom|)
((|constructor| (NIL "\\axiomType{RightOpenIntervalRootCharacterization} provides work with interval root coding.")) (|relativeApprox| ((|#1| |#2| $ |#1|) "\\axiom{relativeApprox(exp,{}\\spad{c},{}\\spad{p}) = a} is relatively close to exp as a polynomial in \\spad{c} ip to precision \\spad{p}")) (|mightHaveRoots| (((|Boolean|) |#2| $) "\\axiom{mightHaveRoots(\\spad{p},{}\\spad{r})} is \\spad{false} if \\axiom{\\spad{p}.\\spad{r}} is not 0")) (|refine| (($ $) "\\axiom{refine(rootChar)} shrinks isolating interval around \\axiom{rootChar}")) (|middle| ((|#1| $) "\\axiom{middle(rootChar)} is the middle of the isolating interval")) (|size| ((|#1| $) "The size of the isolating interval")) (|right| ((|#1| $) "\\axiom{right(rootChar)} is the right bound of the isolating interval")) (|left| ((|#1| $) "\\axiom{left(rootChar)} is the left bound of the isolating interval")))
@@ -4214,19 +4214,19 @@ NIL
NIL
(-1071)
((|constructor| (NIL "\\spadtype{RomanNumeral} provides functions for converting \\indented{1}{integers to roman numerals.}")) (|roman| (($ (|Integer|)) "\\spad{roman(n)} creates a roman numeral for \\spad{n}.") (($ (|Symbol|)) "\\spad{roman(n)} creates a roman numeral for symbol \\spad{n}.")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")))
-((-4436 . T) (-4440 . T) (-4435 . T) (-4446 . T) (-4447 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4437 . T) (-4441 . T) (-4436 . T) (-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1072)
((|constructor| (NIL "\\axiomType{RoutinesTable} implements a database and associated tuning mechanisms for a set of known NAG routines")) (|recoverAfterFail| (((|Union| (|String|) "failed") $ (|String|) (|Integer|)) "\\spad{recoverAfterFail(routs,routineName,ifailValue)} acts on the instructions given by the ifail list")) (|showTheRoutinesTable| (($) "\\spad{showTheRoutinesTable()} returns the current table of NAG routines.")) (|deleteRoutine!| (($ $ (|Symbol|)) "\\spad{deleteRoutine!(R,s)} destructively deletes the given routine from the current database of NAG routines")) (|getExplanations| (((|List| (|String|)) $ (|String|)) "\\spad{getExplanations(R,s)} gets the explanations of the output parameters for the given NAG routine.")) (|getMeasure| (((|Float|) $ (|Symbol|)) "\\spad{getMeasure(R,s)} gets the current value of the maximum measure for the given NAG routine.")) (|changeMeasure| (($ $ (|Symbol|) (|Float|)) "\\spad{changeMeasure(R,s,newValue)} changes the maximum value for a measure of the given NAG routine.")) (|changeThreshhold| (($ $ (|Symbol|) (|Float|)) "\\spad{changeThreshhold(R,s,newValue)} changes the value below which,{} given a NAG routine generating a higher measure,{} the routines will make no attempt to generate a measure.")) (|selectMultiDimensionalRoutines| (($ $) "\\spad{selectMultiDimensionalRoutines(R)} chooses only those routines from the database which are designed for use with multi-dimensional expressions")) (|selectNonFiniteRoutines| (($ $) "\\spad{selectNonFiniteRoutines(R)} chooses only those routines from the database which are designed for use with non-finite expressions.")) (|selectSumOfSquaresRoutines| (($ $) "\\spad{selectSumOfSquaresRoutines(R)} chooses only those routines from the database which are designed for use with sums of squares")) (|selectFiniteRoutines| (($ $) "\\spad{selectFiniteRoutines(R)} chooses only those routines from the database which are designed for use with finite expressions")) (|selectODEIVPRoutines| (($ $) "\\spad{selectODEIVPRoutines(R)} chooses only those routines from the database which are for the solution of ODE\\spad{'s}")) (|selectPDERoutines| (($ $) "\\spad{selectPDERoutines(R)} chooses only those routines from the database which are for the solution of PDE\\spad{'s}")) (|selectOptimizationRoutines| (($ $) "\\spad{selectOptimizationRoutines(R)} chooses only those routines from the database which are for integration")) (|selectIntegrationRoutines| (($ $) "\\spad{selectIntegrationRoutines(R)} chooses only those routines from the database which are for integration")) (|routines| (($) "\\spad{routines()} initialises a database of known NAG routines")) (|concat| (($ $ $) "\\spad{concat(x,y)} merges two tables \\spad{x} and \\spad{y}")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2223) (QUOTE (-52))))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2224) (QUOTE (-52))))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))))
(-1073 S R E V)
((|constructor| (NIL "A category for general multi-variate polynomials with coefficients in a ring,{} variables in an ordered set,{} and exponents from an ordered abelian monoid,{} with a \\axiomOp{sup} operation. When not constant,{} such a polynomial is viewed as a univariate polynomial in its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in the ordered set,{} so that some operations usually defined for univariate polynomials make sense here.")) (|mainSquareFreePart| (($ $) "\\axiom{mainSquareFreePart(\\spad{p})} returns the square free part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainPrimitivePart| (($ $) "\\axiom{mainPrimitivePart(\\spad{p})} returns the primitive part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainContent| (($ $) "\\axiom{mainContent(\\spad{p})} returns the content of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|primitivePart!| (($ $) "\\axiom{primitivePart!(\\spad{p})} replaces \\axiom{\\spad{p}} by its primitive part.")) (|gcd| ((|#2| |#2| $) "\\axiom{\\spad{gcd}(\\spad{r},{}\\spad{p})} returns the \\spad{gcd} of \\axiom{\\spad{r}} and the content of \\axiom{\\spad{p}}.")) (|nextsubResultant2| (($ $ $ $ $) "\\axiom{nextsubResultant2(\\spad{p},{}\\spad{q},{}\\spad{z},{}\\spad{s})} is the multivariate version of the operation \\axiomOpFrom{next_sousResultant2}{PseudoRemainderSequence} from the \\axiomType{PseudoRemainderSequence} constructor.")) (|LazardQuotient2| (($ $ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient2(\\spad{p},{}a,{}\\spad{b},{}\\spad{n})} returns \\axiom{(a**(\\spad{n}-1) * \\spad{p}) exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|LazardQuotient| (($ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a**n exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns the last non-zero subresultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|subResultantChain| (((|List| $) $ $) "\\axiom{subResultantChain(a,{}\\spad{b})},{} where \\axiom{a} and \\axiom{\\spad{b}} are not contant polynomials with the same main variable,{} returns the subresultant chain of \\axiom{a} and \\axiom{\\spad{b}}.")) (|resultant| (($ $ $) "\\axiom{resultant(a,{}\\spad{b})} computes the resultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[ca,{}\\spad{cb},{}\\spad{r}]} such that \\axiom{\\spad{r}} is \\axiom{subResultantGcd(a,{}\\spad{b})} and we have \\axiom{ca * a + \\spad{cb} * \\spad{cb} = \\spad{r}} .")) (|subResultantGcd| (($ $ $) "\\axiom{subResultantGcd(a,{}\\spad{b})} computes a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}} with coefficients in the fraction field of the polynomial ring generated by their other variables over \\axiom{\\spad{R}}.")) (|exactQuotient!| (($ $ $) "\\axiom{exactQuotient!(a,{}\\spad{b})} replaces \\axiom{a} by \\axiom{exactQuotient(a,{}\\spad{b})}") (($ $ |#2|) "\\axiom{exactQuotient!(\\spad{p},{}\\spad{r})} replaces \\axiom{\\spad{p}} by \\axiom{exactQuotient(\\spad{p},{}\\spad{r})}.")) (|exactQuotient| (($ $ $) "\\axiom{exactQuotient(a,{}\\spad{b})} computes the exact quotient of \\axiom{a} by \\axiom{\\spad{b}},{} which is assumed to be a divisor of \\axiom{a}. No error is returned if this exact quotient fails!") (($ $ |#2|) "\\axiom{exactQuotient(\\spad{p},{}\\spad{r})} computes the exact quotient of \\axiom{\\spad{p}} by \\axiom{\\spad{r}},{} which is assumed to be a divisor of \\axiom{\\spad{p}}. No error is returned if this exact quotient fails!")) (|primPartElseUnitCanonical!| (($ $) "\\axiom{primPartElseUnitCanonical!(\\spad{p})} replaces \\axiom{\\spad{p}} by \\axiom{primPartElseUnitCanonical(\\spad{p})}.")) (|primPartElseUnitCanonical| (($ $) "\\axiom{primPartElseUnitCanonical(\\spad{p})} returns \\axiom{primitivePart(\\spad{p})} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} otherwise \\axiom{unitCanonical(\\spad{p})}.")) (|convert| (($ (|Polynomial| |#2|)) "\\axiom{convert(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}},{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.")) (|retract| (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.")) (|initiallyReduce| (($ $ $) "\\axiom{initiallyReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|headReduce| (($ $ $) "\\axiom{headReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| $) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{p},{}\\spad{q},{}\\spad{n}]} where \\axiom{\\spad{p} / q**n} represents the residue class of \\axiom{a} modulo \\axiom{\\spad{b}} and \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{q}} is \\axiom{init(\\spad{b})}.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} computes \\axiom{a mod \\spad{b}},{} if \\axiom{\\spad{b}} is monic as univariate polynomial in its main variable.")) (|pseudoDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{pseudoDivide(a,{}\\spad{b})} computes \\axiom{[pquo(a,{}\\spad{b}),{}prem(a,{}\\spad{b})]},{} both polynomials viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}},{} if \\axiom{\\spad{b}} is not a constant polynomial.")) (|lazyPseudoDivide| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $ |#4|) "\\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})},{} \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}] = lazyPremWithDefault(a,{}\\spad{b})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.")) (|lazyPremWithDefault| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $ |#4|) "\\axiom{lazyPremWithDefault(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})}.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $) "\\axiom{lazyPremWithDefault(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b})}.")) (|lazyPquo| (($ $ $ |#4|) "\\axiom{lazyPquo(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.") (($ $ $) "\\axiom{lazyPquo(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.")) (|lazyPrem| (($ $ $ |#4|) "\\axiom{lazyPrem(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} viewed as univariate polynomials in the variable \\axiom{\\spad{v}} such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.") (($ $ $) "\\axiom{lazyPrem(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.")) (|pquo| (($ $ $ |#4|) "\\axiom{pquo(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{pquo(a,{}\\spad{b})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|prem| (($ $ $ |#4|) "\\axiom{prem(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{prem(a,{}\\spad{b})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|normalized?| (((|Boolean|) $ (|List| $)) "\\axiom{normalized?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{normalized?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{normalized?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{a} and its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variable of \\axiom{\\spad{b}}")) (|initiallyReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{initiallyReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{initiallyReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{initiallyReduced?(a,{}\\spad{b})} returns \\spad{false} iff there exists an iterated initial of \\axiom{a} which is not reduced \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{b}}.")) (|headReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{headReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{headReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{headReduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(head(a),{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|reduced?| (((|Boolean|) $ (|List| $)) "\\axiom{reduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{reduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{reduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(a,{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|supRittWu?| (((|Boolean|) $ $) "\\axiom{supRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is greater than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is less than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|RittWuCompare| (((|Union| (|Boolean|) "failed") $ $) "\\axiom{RittWuCompare(a,{}\\spad{b})} returns \\axiom{\"failed\"} if \\axiom{a} and \\axiom{\\spad{b}} have same rank \\spad{w}.\\spad{r}.\\spad{t}. Ritt and Wu Wen Tsun ordering using the refinement of Lazard,{} otherwise returns \\axiom{infRittWu?(a,{}\\spad{b})}.")) (|mainMonomials| (((|List| $) $) "\\axiom{mainMonomials(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [1],{} otherwise returns the list of the monomials of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainCoefficients| (((|List| $) $) "\\axiom{mainCoefficients(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [\\spad{p}],{} otherwise returns the list of the coefficients of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|leastMonomial| (($ $) "\\axiom{leastMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} the monomial of \\axiom{\\spad{p}} with lowest degree,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainMonomial| (($ $) "\\axiom{mainMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} \\axiom{mvar(\\spad{p})} raised to the power \\axiom{mdeg(\\spad{p})}.")) (|quasiMonic?| (((|Boolean|) $) "\\axiom{quasiMonic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff the initial of \\axiom{\\spad{p}} lies in the base ring \\axiom{\\spad{R}}.")) (|monic?| (((|Boolean|) $) "\\axiom{monic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff \\axiom{\\spad{p}} is monic as a univariate polynomial in its main variable.")) (|reductum| (($ $ |#4|) "\\axiom{reductum(\\spad{p},{}\\spad{v})} returns the reductum of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in \\axiom{\\spad{v}}.")) (|leadingCoefficient| (($ $ |#4|) "\\axiom{leadingCoefficient(\\spad{p},{}\\spad{v})} returns the leading coefficient of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as A univariate polynomial in \\axiom{\\spad{v}}.")) (|deepestInitial| (($ $) "\\axiom{deepestInitial(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the last term of \\axiom{iteratedInitials(\\spad{p})}.")) (|iteratedInitials| (((|List| $) $) "\\axiom{iteratedInitials(\\spad{p})} returns \\axiom{[]} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the list of the iterated initials of \\axiom{\\spad{p}}.")) (|deepestTail| (($ $) "\\axiom{deepestTail(\\spad{p})} returns \\axiom{0} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns tail(\\spad{p}),{} if \\axiom{tail(\\spad{p})} belongs to \\axiom{\\spad{R}} or \\axiom{mvar(tail(\\spad{p})) < mvar(\\spad{p})},{} otherwise returns \\axiom{deepestTail(tail(\\spad{p}))}.")) (|tail| (($ $) "\\axiom{tail(\\spad{p})} returns its reductum,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|head| (($ $) "\\axiom{head(\\spad{p})} returns \\axiom{\\spad{p}} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading term (monomial in the AXIOM sense),{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|init| (($ $) "\\axiom{init(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading coefficient,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mdeg| (((|NonNegativeInteger|) $) "\\axiom{mdeg(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{0},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{0},{} otherwise,{} returns the degree of \\axiom{\\spad{p}} in its main variable.")) (|mvar| ((|#4| $) "\\axiom{mvar(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in \\axiom{\\spad{V}}.")))
NIL
((|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-551))) (|HasCategory| |#2| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1001) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-1186)))))
(-1074 R E V)
((|constructor| (NIL "A category for general multi-variate polynomials with coefficients in a ring,{} variables in an ordered set,{} and exponents from an ordered abelian monoid,{} with a \\axiomOp{sup} operation. When not constant,{} such a polynomial is viewed as a univariate polynomial in its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in the ordered set,{} so that some operations usually defined for univariate polynomials make sense here.")) (|mainSquareFreePart| (($ $) "\\axiom{mainSquareFreePart(\\spad{p})} returns the square free part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainPrimitivePart| (($ $) "\\axiom{mainPrimitivePart(\\spad{p})} returns the primitive part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainContent| (($ $) "\\axiom{mainContent(\\spad{p})} returns the content of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|primitivePart!| (($ $) "\\axiom{primitivePart!(\\spad{p})} replaces \\axiom{\\spad{p}} by its primitive part.")) (|gcd| ((|#1| |#1| $) "\\axiom{\\spad{gcd}(\\spad{r},{}\\spad{p})} returns the \\spad{gcd} of \\axiom{\\spad{r}} and the content of \\axiom{\\spad{p}}.")) (|nextsubResultant2| (($ $ $ $ $) "\\axiom{nextsubResultant2(\\spad{p},{}\\spad{q},{}\\spad{z},{}\\spad{s})} is the multivariate version of the operation \\axiomOpFrom{next_sousResultant2}{PseudoRemainderSequence} from the \\axiomType{PseudoRemainderSequence} constructor.")) (|LazardQuotient2| (($ $ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient2(\\spad{p},{}a,{}\\spad{b},{}\\spad{n})} returns \\axiom{(a**(\\spad{n}-1) * \\spad{p}) exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|LazardQuotient| (($ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a**n exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns the last non-zero subresultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|subResultantChain| (((|List| $) $ $) "\\axiom{subResultantChain(a,{}\\spad{b})},{} where \\axiom{a} and \\axiom{\\spad{b}} are not contant polynomials with the same main variable,{} returns the subresultant chain of \\axiom{a} and \\axiom{\\spad{b}}.")) (|resultant| (($ $ $) "\\axiom{resultant(a,{}\\spad{b})} computes the resultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[ca,{}\\spad{cb},{}\\spad{r}]} such that \\axiom{\\spad{r}} is \\axiom{subResultantGcd(a,{}\\spad{b})} and we have \\axiom{ca * a + \\spad{cb} * \\spad{cb} = \\spad{r}} .")) (|subResultantGcd| (($ $ $) "\\axiom{subResultantGcd(a,{}\\spad{b})} computes a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}} with coefficients in the fraction field of the polynomial ring generated by their other variables over \\axiom{\\spad{R}}.")) (|exactQuotient!| (($ $ $) "\\axiom{exactQuotient!(a,{}\\spad{b})} replaces \\axiom{a} by \\axiom{exactQuotient(a,{}\\spad{b})}") (($ $ |#1|) "\\axiom{exactQuotient!(\\spad{p},{}\\spad{r})} replaces \\axiom{\\spad{p}} by \\axiom{exactQuotient(\\spad{p},{}\\spad{r})}.")) (|exactQuotient| (($ $ $) "\\axiom{exactQuotient(a,{}\\spad{b})} computes the exact quotient of \\axiom{a} by \\axiom{\\spad{b}},{} which is assumed to be a divisor of \\axiom{a}. No error is returned if this exact quotient fails!") (($ $ |#1|) "\\axiom{exactQuotient(\\spad{p},{}\\spad{r})} computes the exact quotient of \\axiom{\\spad{p}} by \\axiom{\\spad{r}},{} which is assumed to be a divisor of \\axiom{\\spad{p}}. No error is returned if this exact quotient fails!")) (|primPartElseUnitCanonical!| (($ $) "\\axiom{primPartElseUnitCanonical!(\\spad{p})} replaces \\axiom{\\spad{p}} by \\axiom{primPartElseUnitCanonical(\\spad{p})}.")) (|primPartElseUnitCanonical| (($ $) "\\axiom{primPartElseUnitCanonical(\\spad{p})} returns \\axiom{primitivePart(\\spad{p})} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} otherwise \\axiom{unitCanonical(\\spad{p})}.")) (|convert| (($ (|Polynomial| |#1|)) "\\axiom{convert(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}},{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.")) (|retract| (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.")) (|initiallyReduce| (($ $ $) "\\axiom{initiallyReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|headReduce| (($ $ $) "\\axiom{headReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| $) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{p},{}\\spad{q},{}\\spad{n}]} where \\axiom{\\spad{p} / q**n} represents the residue class of \\axiom{a} modulo \\axiom{\\spad{b}} and \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{q}} is \\axiom{init(\\spad{b})}.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} computes \\axiom{a mod \\spad{b}},{} if \\axiom{\\spad{b}} is monic as univariate polynomial in its main variable.")) (|pseudoDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{pseudoDivide(a,{}\\spad{b})} computes \\axiom{[pquo(a,{}\\spad{b}),{}prem(a,{}\\spad{b})]},{} both polynomials viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}},{} if \\axiom{\\spad{b}} is not a constant polynomial.")) (|lazyPseudoDivide| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $ |#3|) "\\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})},{} \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}] = lazyPremWithDefault(a,{}\\spad{b})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.")) (|lazyPremWithDefault| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $ |#3|) "\\axiom{lazyPremWithDefault(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})}.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $) "\\axiom{lazyPremWithDefault(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b})}.")) (|lazyPquo| (($ $ $ |#3|) "\\axiom{lazyPquo(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.") (($ $ $) "\\axiom{lazyPquo(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.")) (|lazyPrem| (($ $ $ |#3|) "\\axiom{lazyPrem(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} viewed as univariate polynomials in the variable \\axiom{\\spad{v}} such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.") (($ $ $) "\\axiom{lazyPrem(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.")) (|pquo| (($ $ $ |#3|) "\\axiom{pquo(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{pquo(a,{}\\spad{b})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|prem| (($ $ $ |#3|) "\\axiom{prem(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{prem(a,{}\\spad{b})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|normalized?| (((|Boolean|) $ (|List| $)) "\\axiom{normalized?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{normalized?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{normalized?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{a} and its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variable of \\axiom{\\spad{b}}")) (|initiallyReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{initiallyReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{initiallyReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{initiallyReduced?(a,{}\\spad{b})} returns \\spad{false} iff there exists an iterated initial of \\axiom{a} which is not reduced \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{b}}.")) (|headReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{headReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{headReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{headReduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(head(a),{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|reduced?| (((|Boolean|) $ (|List| $)) "\\axiom{reduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{reduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{reduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(a,{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|supRittWu?| (((|Boolean|) $ $) "\\axiom{supRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is greater than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is less than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|RittWuCompare| (((|Union| (|Boolean|) "failed") $ $) "\\axiom{RittWuCompare(a,{}\\spad{b})} returns \\axiom{\"failed\"} if \\axiom{a} and \\axiom{\\spad{b}} have same rank \\spad{w}.\\spad{r}.\\spad{t}. Ritt and Wu Wen Tsun ordering using the refinement of Lazard,{} otherwise returns \\axiom{infRittWu?(a,{}\\spad{b})}.")) (|mainMonomials| (((|List| $) $) "\\axiom{mainMonomials(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [1],{} otherwise returns the list of the monomials of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainCoefficients| (((|List| $) $) "\\axiom{mainCoefficients(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [\\spad{p}],{} otherwise returns the list of the coefficients of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|leastMonomial| (($ $) "\\axiom{leastMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} the monomial of \\axiom{\\spad{p}} with lowest degree,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainMonomial| (($ $) "\\axiom{mainMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} \\axiom{mvar(\\spad{p})} raised to the power \\axiom{mdeg(\\spad{p})}.")) (|quasiMonic?| (((|Boolean|) $) "\\axiom{quasiMonic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff the initial of \\axiom{\\spad{p}} lies in the base ring \\axiom{\\spad{R}}.")) (|monic?| (((|Boolean|) $) "\\axiom{monic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff \\axiom{\\spad{p}} is monic as a univariate polynomial in its main variable.")) (|reductum| (($ $ |#3|) "\\axiom{reductum(\\spad{p},{}\\spad{v})} returns the reductum of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in \\axiom{\\spad{v}}.")) (|leadingCoefficient| (($ $ |#3|) "\\axiom{leadingCoefficient(\\spad{p},{}\\spad{v})} returns the leading coefficient of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as A univariate polynomial in \\axiom{\\spad{v}}.")) (|deepestInitial| (($ $) "\\axiom{deepestInitial(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the last term of \\axiom{iteratedInitials(\\spad{p})}.")) (|iteratedInitials| (((|List| $) $) "\\axiom{iteratedInitials(\\spad{p})} returns \\axiom{[]} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the list of the iterated initials of \\axiom{\\spad{p}}.")) (|deepestTail| (($ $) "\\axiom{deepestTail(\\spad{p})} returns \\axiom{0} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns tail(\\spad{p}),{} if \\axiom{tail(\\spad{p})} belongs to \\axiom{\\spad{R}} or \\axiom{mvar(tail(\\spad{p})) < mvar(\\spad{p})},{} otherwise returns \\axiom{deepestTail(tail(\\spad{p}))}.")) (|tail| (($ $) "\\axiom{tail(\\spad{p})} returns its reductum,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|head| (($ $) "\\axiom{head(\\spad{p})} returns \\axiom{\\spad{p}} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading term (monomial in the AXIOM sense),{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|init| (($ $) "\\axiom{init(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading coefficient,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mdeg| (((|NonNegativeInteger|) $) "\\axiom{mdeg(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{0},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{0},{} otherwise,{} returns the degree of \\axiom{\\spad{p}} in its main variable.")) (|mvar| ((|#3| $) "\\axiom{mvar(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in \\axiom{\\spad{V}}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
(-1075)
((|constructor| (NIL "This domain represents the `repeat' iterator syntax.")) (|body| (((|SpadAst|) $) "\\spad{body(e)} returns the body of the loop `e'.")) (|iterators| (((|List| (|SpadAst|)) $) "\\spad{iterators(e)} returns the list of iterators controlling the loop `e'.")))
@@ -4250,7 +4250,7 @@ NIL
NIL
(-1080 R E V P)
((|constructor| (NIL "The category of regular triangular sets,{} introduced under the name regular chains in [1] (and other papers). In [3] it is proved that regular triangular sets and towers of simple extensions of a field are equivalent notions. In the following definitions,{} all polynomials and ideals are taken from the polynomial ring \\spad{k[x1,...,xn]} where \\spad{k} is the fraction field of \\spad{R}. The triangular set \\spad{[t1,...,tm]} is regular iff for every \\spad{i} the initial of \\spad{ti+1} is invertible in the tower of simple extensions associated with \\spad{[t1,...,ti]}. A family \\spad{[T1,...,Ts]} of regular triangular sets is a split of Kalkbrener of a given ideal \\spad{I} iff the radical of \\spad{I} is equal to the intersection of the radical ideals generated by the saturated ideals of the \\spad{[T1,...,Ti]}. A family \\spad{[T1,...,Ts]} of regular triangular sets is a split of Kalkbrener of a given triangular set \\spad{T} iff it is a split of Kalkbrener of the saturated ideal of \\spad{T}. Let \\spad{K} be an algebraic closure of \\spad{k}. Assume that \\spad{V} is finite with cardinality \\spad{n} and let \\spad{A} be the affine space \\spad{K^n}. For a regular triangular set \\spad{T} let denote by \\spad{W(T)} the set of regular zeros of \\spad{T}. A family \\spad{[T1,...,Ts]} of regular triangular sets is a split of Lazard of a given subset \\spad{S} of \\spad{A} iff the union of the \\spad{W(Ti)} contains \\spad{S} and is contained in the closure of \\spad{S} (\\spad{w}.\\spad{r}.\\spad{t}. Zariski topology). A family \\spad{[T1,...,Ts]} of regular triangular sets is a split of Lazard of a given triangular set \\spad{T} if it is a split of Lazard of \\spad{W(T)}. Note that if \\spad{[T1,...,Ts]} is a split of Lazard of \\spad{T} then it is also a split of Kalkbrener of \\spad{T}. The converse is \\spad{false}. This category provides operations related to both kinds of splits,{} the former being related to ideals decomposition whereas the latter deals with varieties decomposition. See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets. \\newline References : \\indented{1}{[1] \\spad{M}. KALKBRENER \"Three contributions to elimination theory\"} \\indented{5}{\\spad{Phd} Thesis,{} University of Linz,{} Austria,{} 1991.} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Journal of Symbol. Comp. 1998} \\indented{1}{[3] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|)) "\\spad{zeroSetSplit(lp,clos?)} returns \\spad{lts} a split of Kalkbrener of the radical ideal associated with \\spad{lp}. If \\spad{clos?} is \\spad{false},{} it is also a decomposition of the variety associated with \\spad{lp} into the regular zero set of the \\spad{ts} in \\spad{lts} (or,{} in other words,{} a split of Lazard of this variety). See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets.")) (|extend| (((|List| $) (|List| |#4|) (|List| $)) "\\spad{extend(lp,lts)} returns the same as \\spad{concat([extend(lp,ts) for ts in lts])|}") (((|List| $) (|List| |#4|) $) "\\spad{extend(lp,ts)} returns \\spad{ts} if \\spad{empty? lp} \\spad{extend(p,ts)} if \\spad{lp = [p]} else \\spad{extend(first lp, extend(rest lp, ts))}") (((|List| $) |#4| (|List| $)) "\\spad{extend(p,lts)} returns the same as \\spad{concat([extend(p,ts) for ts in lts])|}") (((|List| $) |#4| $) "\\spad{extend(p,ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is not a regular triangular set.")) (|internalAugment| (($ (|List| |#4|) $) "\\spad{internalAugment(lp,ts)} returns \\spad{ts} if \\spad{lp} is empty otherwise returns \\spad{internalAugment(rest lp, internalAugment(first lp, ts))}") (($ |#4| $) "\\spad{internalAugment(p,ts)} assumes that \\spad{augment(p,ts)} returns a singleton and returns it.")) (|augment| (((|List| $) (|List| |#4|) (|List| $)) "\\spad{augment(lp,lts)} returns the same as \\spad{concat([augment(lp,ts) for ts in lts])}") (((|List| $) (|List| |#4|) $) "\\spad{augment(lp,ts)} returns \\spad{ts} if \\spad{empty? lp},{} \\spad{augment(p,ts)} if \\spad{lp = [p]},{} otherwise \\spad{augment(first lp, augment(rest lp, ts))}") (((|List| $) |#4| (|List| $)) "\\spad{augment(p,lts)} returns the same as \\spad{concat([augment(p,ts) for ts in lts])}") (((|List| $) |#4| $) "\\spad{augment(p,ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. This operation assumes also that if \\spad{p} is added to \\spad{ts} the resulting set,{} say \\spad{ts+p},{} is a regular triangular set. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is required to be square-free.")) (|intersect| (((|List| $) |#4| (|List| $)) "\\spad{intersect(p,lts)} returns the same as \\spad{intersect([p],lts)}") (((|List| $) (|List| |#4|) (|List| $)) "\\spad{intersect(lp,lts)} returns the same as \\spad{concat([intersect(lp,ts) for ts in lts])|}") (((|List| $) (|List| |#4|) $) "\\spad{intersect(lp,ts)} returns \\spad{lts} a split of Lazard of the intersection of the affine variety associated with \\spad{lp} and the regular zero set of \\spad{ts}.") (((|List| $) |#4| $) "\\spad{intersect(p,ts)} returns the same as \\spad{intersect([p],ts)}")) (|squareFreePart| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| $))) |#4| $) "\\spad{squareFreePart(p,ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a square-free polynomial \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} this polynomial being associated with \\spad{p} modulo \\spad{lpwt.i.tower},{} for every \\spad{i}. Moreover,{} the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. WARNING: This assumes that \\spad{p} is a non-constant polynomial such that if \\spad{p} is added to \\spad{ts},{} then the resulting set is a regular triangular set.")) (|lastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| $))) |#4| |#4| $) "\\spad{lastSubResultant(p1,p2,ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} for every \\spad{i},{} and such that the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. Moreover,{} if \\spad{p1} and \\spad{p2} do not have a non-trivial \\spad{gcd} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower} then \\spad{lpwt.i.val} is the resultant of these polynomials \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|lastSubResultantElseSplit| (((|Union| |#4| (|List| $)) |#4| |#4| $) "\\spad{lastSubResultantElseSplit(p1,p2,ts)} returns either \\spad{g} a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. the \\spad{ts} or a split of Kalkbrener of \\spad{ts}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|invertibleSet| (((|List| $) |#4| $) "\\spad{invertibleSet(p,ts)} returns a split of Kalkbrener of the quotient ideal of the ideal \\axiom{\\spad{I}} by \\spad{p} where \\spad{I} is the radical of saturated of \\spad{ts}.")) (|invertible?| (((|Boolean|) |#4| $) "\\spad{invertible?(p,ts)} returns \\spad{true} iff \\spad{p} is invertible in the tower associated with \\spad{ts}.") (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| $))) |#4| $) "\\spad{invertible?(p,ts)} returns \\spad{lbwt} where \\spad{lbwt.i} is the result of \\spad{invertibleElseSplit?(p,lbwt.i.tower)} and the list of the \\spad{(lqrwt.i).tower} is a split of Kalkbrener of \\spad{ts}.")) (|invertibleElseSplit?| (((|Union| (|Boolean|) (|List| $)) |#4| $) "\\spad{invertibleElseSplit?(p,ts)} returns \\spad{true} (resp. \\spad{false}) if \\spad{p} is invertible in the tower associated with \\spad{ts} or returns a split of Kalkbrener of \\spad{ts}.")) (|purelyAlgebraicLeadingMonomial?| (((|Boolean|) |#4| $) "\\spad{purelyAlgebraicLeadingMonomial?(p,ts)} returns \\spad{true} iff the main variable of any non-constant iterarted initial of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|algebraicCoefficients?| (((|Boolean|) |#4| $) "\\spad{algebraicCoefficients?(p,ts)} returns \\spad{true} iff every variable of \\spad{p} which is not the main one of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|purelyTranscendental?| (((|Boolean|) |#4| $) "\\spad{purelyTranscendental?(p,ts)} returns \\spad{true} iff every variable of \\spad{p} is not algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}")) (|purelyAlgebraic?| (((|Boolean|) $) "\\spad{purelyAlgebraic?(ts)} returns \\spad{true} iff for every algebraic variable \\spad{v} of \\spad{ts} we have \\spad{algebraicCoefficients?(t_v,ts_v_-)} where \\spad{ts_v} is \\axiomOpFrom{select}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}) and \\spad{ts_v_-} is \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}).") (((|Boolean|) |#4| $) "\\spad{purelyAlgebraic?(p,ts)} returns \\spad{true} iff every variable of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-1081 R E V P TS)
((|constructor| (NIL "An internal package for computing gcds and resultants of univariate polynomials with coefficients in a tower of simple extensions of a field.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|toseSquareFreePart| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{toseSquareFreePart(\\spad{p},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{squareFreePart}{RegularTriangularSetCategory}.")) (|toseInvertibleSet| (((|List| |#5|) |#4| |#5|) "\\axiom{toseInvertibleSet(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertibleSet}{RegularTriangularSetCategory}.")) (|toseInvertible?| (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{toseInvertible?(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertible?}{RegularTriangularSetCategory}.") (((|Boolean|) |#4| |#5|) "\\axiom{toseInvertible?(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertible?}{RegularTriangularSetCategory}.")) (|toseLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{toseLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{lastSubResultant}{RegularTriangularSetCategory}.")) (|integralLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{integralLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|internalLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) (|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) |#3| (|Boolean|)) "\\axiom{internalLastSubResultant(lpwt,{}\\spad{v},{}flag)} is an internal subroutine,{} exported only for developement.") (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5| (|Boolean|) (|Boolean|)) "\\axiom{internalLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts},{}inv?,{}break?)} is an internal subroutine,{} exported only for developement.")) (|prepareSubResAlgo| (((|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{prepareSubResAlgo(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|stopTableInvSet!| (((|Void|)) "\\axiom{stopTableInvSet!()} is an internal subroutine,{} exported only for developement.")) (|startTableInvSet!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableInvSet!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")) (|stopTableGcd!| (((|Void|)) "\\axiom{stopTableGcd!()} is an internal subroutine,{} exported only for developement.")) (|startTableGcd!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableGcd!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")))
@@ -4286,7 +4286,7 @@ NIL
NIL
(-1089 R UP M)
((|constructor| (NIL "Domain which represents simple algebraic extensions of arbitrary rings. The first argument to the domain,{} \\spad{R},{} is the underlying ring,{} the second argument is a domain of univariate polynomials over \\spad{K},{} while the last argument specifies the defining minimal polynomial. The elements of the domain are canonically represented as polynomials of degree less than that of the minimal polynomial with coefficients in \\spad{R}. The second argument is both the type of the third argument and the underlying representation used by \\spadtype{SAE} itself.")))
-((-4441 |has| |#1| (-368)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 |has| |#1| (-368)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-354)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))))
(-1090 UP SAE UPA)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of \\spadtype{Fraction Polynomial Integer}.")) (|factor| (((|Factored| |#3|) |#3|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p}.")))
@@ -4314,8 +4314,8 @@ NIL
NIL
(-1096 R)
((|constructor| (NIL "\\spadtype{SequentialDifferentialPolynomial} implements an ordinary differential polynomial ring in arbitrary number of differential indeterminates,{} with coefficients in a ring. The ranking on the differential indeterminate is sequential. \\blankline")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1097 (-1186)) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-1097 S)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialVariable} adds a commonly used sequential ranking to the set of derivatives of an ordered list of differential indeterminates. A sequential ranking is a ranking \\spadfun{<} of the derivatives with the property that for any derivative \\spad{v},{} there are only a finite number of derivatives \\spad{u} with \\spad{u} \\spadfun{<} \\spad{v}. This domain belongs to \\spadtype{DifferentialVariableCategory}. It defines \\spadfun{weight} to be just \\spadfun{order},{} and it defines a sequential ranking \\spadfun{<} on derivatives \\spad{u} by the lexicographic order on the pair (\\spadfun{variable}(\\spad{u}),{} \\spadfun{order}(\\spad{u})).")))
NIL
@@ -4358,7 +4358,7 @@ NIL
NIL
(-1107 S)
((|constructor| (NIL "A set category lists a collection of set-theoretic operations useful for both finite sets and multisets. Note however that finite sets are distinct from multisets. Although the operations defined for set categories are common to both,{} the relationship between the two cannot be described by inclusion or inheritance.")) (|union| (($ |#1| $) "\\spad{union(x,u)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{x},{}\\spad{u})} returns a copy of \\spad{u}.") (($ $ |#1|) "\\spad{union(u,x)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{u},{}\\spad{x})} returns a copy of \\spad{u}.") (($ $ $) "\\spad{union(u,v)} returns the set aggregate of elements which are members of either set aggregate \\spad{u} or \\spad{v}.")) (|subset?| (((|Boolean|) $ $) "\\spad{subset?(u,v)} tests if \\spad{u} is a subset of \\spad{v}. Note: equivalent to \\axiom{reduce(and,{}{member?(\\spad{x},{}\\spad{v}) for \\spad{x} in \\spad{u}},{}\\spad{true},{}\\spad{false})}.")) (|symmetricDifference| (($ $ $) "\\spad{symmetricDifference(u,v)} returns the set aggregate of elements \\spad{x} which are members of set aggregate \\spad{u} or set aggregate \\spad{v} but not both. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{symmetricDifference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: \\axiom{symmetricDifference(\\spad{u},{}\\spad{v}) = union(difference(\\spad{u},{}\\spad{v}),{}difference(\\spad{v},{}\\spad{u}))}")) (|difference| (($ $ |#1|) "\\spad{difference(u,x)} returns the set aggregate \\spad{u} with element \\spad{x} removed. If \\spad{u} does not contain \\spad{x},{} a copy of \\spad{u} is returned. Note: \\axiom{difference(\\spad{s},{} \\spad{x}) = difference(\\spad{s},{} {\\spad{x}})}.") (($ $ $) "\\spad{difference(u,v)} returns the set aggregate \\spad{w} consisting of elements in set aggregate \\spad{u} but not in set aggregate \\spad{v}. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{difference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: equivalent to the notation (not currently supported) \\axiom{{\\spad{x} for \\spad{x} in \\spad{u} | not member?(\\spad{x},{}\\spad{v})}}.")) (|intersect| (($ $ $) "\\spad{intersect(u,v)} returns the set aggregate \\spad{w} consisting of elements common to both set aggregates \\spad{u} and \\spad{v}. Note: equivalent to the notation (not currently supported) {\\spad{x} for \\spad{x} in \\spad{u} | member?(\\spad{x},{}\\spad{v})}.")) (|set| (($ (|List| |#1|)) "\\spad{set([x,y,...,z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.") (($) "\\spad{set()}\\$\\spad{D} creates an empty set aggregate of type \\spad{D}.")) (|brace| (($ (|List| |#1|)) "\\spad{brace([x,y,...,z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}. This form is considered obsolete. Use \\axiomFun{set} instead.") (($) "\\spad{brace()}\\$\\spad{D} (otherwise written {}\\$\\spad{D}) creates an empty set aggregate of type \\spad{D}. This form is considered obsolete. Use \\axiomFun{set} instead.")) (|part?| (((|Boolean|) $ $) "\\spad{s} < \\spad{t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
-((-4438 . T))
+((-4439 . T))
NIL
(-1108 S)
((|constructor| (NIL "\\spadtype{SetCategory} is the basic category for describing a collection of elements with \\spadop{=} (equality) and \\spadfun{coerce} to output form. \\blankline Conditional Attributes: \\indented{3}{canonical\\tab{15}data structure equality is the same as \\spadop{=}}")) (|before?| (((|Boolean|) $ $) "spad{before?(\\spad{x},{}\\spad{y})} holds if \\spad{x} comes before \\spad{y} in the internal total ordering used by OpenAxiom.")) (|latex| (((|String|) $) "\\spad{latex(s)} returns a LaTeX-printable output representation of \\spad{s}.")) (|hash| (((|SingleInteger|) $) "\\spad{hash(s)} calculates a hash code for \\spad{s}.")))
@@ -4374,7 +4374,7 @@ NIL
NIL
(-1111 S)
((|constructor| (NIL "A set over a domain \\spad{D} models the usual mathematical notion of a finite set of elements from \\spad{D}. Sets are unordered collections of distinct elements (that is,{} order and duplication does not matter). The notation \\spad{set [a,b,c]} can be used to create a set and the usual operations such as union and intersection are available to form new sets. In our implementation,{} \\Language{} maintains the entries in sorted order. Specifically,{} the parts function returns the entries as a list in ascending order and the extract operation returns the maximum entry. Given two sets \\spad{s} and \\spad{t} where \\spad{\\#s = m} and \\spad{\\#t = n},{} the complexity of \\indented{2}{\\spad{s = t} is \\spad{O(min(n,m))}} \\indented{2}{\\spad{s < t} is \\spad{O(max(n,m))}} \\indented{2}{\\spad{union(s,t)},{} \\spad{intersect(s,t)},{} \\spad{minus(s,t)},{} \\spad{symmetricDifference(s,t)} is \\spad{O(max(n,m))}} \\indented{2}{\\spad{member(x,t)} is \\spad{O(n log n)}} \\indented{2}{\\spad{insert(x,t)} and \\spad{remove(x,t)} is \\spad{O(n)}}")))
-((-4448 . T) (-4438 . T) (-4449 . T))
+((-4449 . T) (-4439 . T) (-4450 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-1112 |Str| |Sym| |Int| |Flt| |Expr|)
((|constructor| (NIL "This category allows the manipulation of Lisp values while keeping the grunge fairly localized.")) (|elt| (($ $ (|List| (|Integer|))) "\\spad{elt((a1,...,an), [i1,...,im])} returns \\spad{(a_i1,...,a_im)}.") (($ $ (|Integer|)) "\\spad{elt((a1,...,an), i)} returns \\spad{ai}.")) (|#| (((|Integer|) $) "\\spad{\\#((a1,...,an))} returns \\spad{n}.")) (|cdr| (($ $) "\\spad{cdr((a1,...,an))} returns \\spad{(a2,...,an)}.")) (|car| (($ $) "\\spad{car((a1,...,an))} returns a1.")) (|expr| ((|#5| $) "\\spad{expr(s)} returns \\spad{s} as an element of Expr; Error: if \\spad{s} is not an atom that also belongs to Expr.")) (|float| ((|#4| $) "\\spad{float(s)} returns \\spad{s} as an element of \\spad{Flt}; Error: if \\spad{s} is not an atom that also belongs to \\spad{Flt}.")) (|integer| ((|#3| $) "\\spad{integer(s)} returns \\spad{s} as an element of Int. Error: if \\spad{s} is not an atom that also belongs to Int.")) (|symbol| ((|#2| $) "\\spad{symbol(s)} returns \\spad{s} as an element of \\spad{Sym}. Error: if \\spad{s} is not an atom that also belongs to \\spad{Sym}.")) (|string| ((|#1| $) "\\spad{string(s)} returns \\spad{s} as an element of \\spad{Str}. Error: if \\spad{s} is not an atom that also belongs to \\spad{Str}.")) (|destruct| (((|List| $) $) "\\spad{destruct((a1,...,an))} returns the list [a1,{}...,{}an].")) (|float?| (((|Boolean|) $) "\\spad{float?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Flt}.")) (|integer?| (((|Boolean|) $) "\\spad{integer?(s)} is \\spad{true} if \\spad{s} is an atom and belong to Int.")) (|symbol?| (((|Boolean|) $) "\\spad{symbol?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Sym}.")) (|string?| (((|Boolean|) $) "\\spad{string?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Str}.")) (|list?| (((|Boolean|) $) "\\spad{list?(s)} is \\spad{true} if \\spad{s} is a Lisp list,{} possibly ().")) (|pair?| (((|Boolean|) $) "\\spad{pair?(s)} is \\spad{true} if \\spad{s} has is a non-null Lisp list.")) (|atom?| (((|Boolean|) $) "\\spad{atom?(s)} is \\spad{true} if \\spad{s} is a Lisp atom.")) (|null?| (((|Boolean|) $) "\\spad{null?(s)} is \\spad{true} if \\spad{s} is the \\spad{S}-expression ().")) (|eq| (((|Boolean|) $ $) "\\spad{eq(s, t)} is \\spad{true} if EQ(\\spad{s},{}\\spad{t}) is \\spad{true} in Lisp.")))
@@ -4402,7 +4402,7 @@ NIL
NIL
(-1118 R E V P)
((|constructor| (NIL "The category of square-free regular triangular sets. A regular triangular set \\spad{ts} is square-free if the \\spad{gcd} of any polynomial \\spad{p} in \\spad{ts} and \\spad{differentiate(p,mvar(p))} \\spad{w}.\\spad{r}.\\spad{t}. \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\axiomOpFrom{mvar}{RecursivePolynomialCategory}(\\spad{p})) has degree zero \\spad{w}.\\spad{r}.\\spad{t}. \\spad{mvar(p)}. Thus any square-free regular set defines a tower of square-free simple extensions.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Habilitation Thesis,{} ETZH,{} Zurich,{} 1995.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-1119)
((|constructor| (NIL "SymmetricGroupCombinatoricFunctions contains combinatoric functions concerning symmetric groups and representation theory: list young tableaus,{} improper partitions,{} subsets bijection of Coleman.")) (|unrankImproperPartitions1| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions1(n,m,k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in at most \\spad{m} nonnegative parts ordered as follows: first,{} in reverse lexicographically according to their non-zero parts,{} then according to their positions (\\spadignore{i.e.} lexicographical order using {\\em subSet}: {\\em [3,0,0] < [0,3,0] < [0,0,3] < [2,1,0] < [2,0,1] < [0,2,1] < [1,2,0] < [1,0,2] < [0,1,2] < [1,1,1]}). Note: counting of subtrees is done by {\\em numberOfImproperPartitionsInternal}.")) (|unrankImproperPartitions0| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions0(n,m,k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in \\spad{m} nonnegative parts in reverse lexicographical order. Example: {\\em [0,0,3] < [0,1,2] < [0,2,1] < [0,3,0] < [1,0,2] < [1,1,1] < [1,2,0] < [2,0,1] < [2,1,0] < [3,0,0]}. Error: if \\spad{k} is negative or too big. Note: counting of subtrees is done by \\spadfunFrom{numberOfImproperPartitions}{SymmetricGroupCombinatoricFunctions}.")) (|subSet| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subSet(n,m,k)} calculates the {\\em k}\\spad{-}th {\\em m}-subset of the set {\\em 0,1,...,(n-1)} in the lexicographic order considered as a decreasing map from {\\em 0,...,(m-1)} into {\\em 0,...,(n-1)}. See \\spad{S}.\\spad{G}. Williamson: Theorem 1.60. Error: if not {\\em (0 <= m <= n and 0 < = k < (n choose m))}.")) (|numberOfImproperPartitions| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{numberOfImproperPartitions(n,m)} computes the number of partitions of the nonnegative integer \\spad{n} in \\spad{m} nonnegative parts with regarding the order (improper partitions). Example: {\\em numberOfImproperPartitions (3,3)} is 10,{} since {\\em [0,0,3], [0,1,2], [0,2,1], [0,3,0], [1,0,2], [1,1,1], [1,2,0], [2,0,1], [2,1,0], [3,0,0]} are the possibilities. Note: this operation has a recursive implementation.")) (|nextPartition| (((|Vector| (|Integer|)) (|List| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,part,number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. the first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.") (((|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,part,number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. The first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.")) (|nextLatticePermutation| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Boolean|)) "\\spad{nextLatticePermutation(lambda,lattP,constructNotFirst)} generates the lattice permutation according to the proper partition {\\em lambda} succeeding the lattice permutation {\\em lattP} in lexicographical order as long as {\\em constructNotFirst} is \\spad{true}. If {\\em constructNotFirst} is \\spad{false},{} the first lattice permutation is returned. The result {\\em nil} indicates that {\\em lattP} has no successor.")) (|nextColeman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{nextColeman(alpha,beta,C)} generates the next Coleman matrix of column sums {\\em alpha} and row sums {\\em beta} according to the lexicographical order from bottom-to-top. The first Coleman matrix is achieved by {\\em C=new(1,1,0)}. Also,{} {\\em new(1,1,0)} indicates that \\spad{C} is the last Coleman matrix.")) (|makeYoungTableau| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{makeYoungTableau(lambda,gitter)} computes for a given lattice permutation {\\em gitter} and for an improper partition {\\em lambda} the corresponding standard tableau of shape {\\em lambda}. Notes: see {\\em listYoungTableaus}. The entries are from {\\em 0,...,n-1}.")) (|listYoungTableaus| (((|List| (|Matrix| (|Integer|))) (|List| (|Integer|))) "\\spad{listYoungTableaus(lambda)} where {\\em lambda} is a proper partition generates the list of all standard tableaus of shape {\\em lambda} by means of lattice permutations. The numbers of the lattice permutation are interpreted as column labels. Hence the contents of these lattice permutations are the conjugate of {\\em lambda}. Notes: the functions {\\em nextLatticePermutation} and {\\em makeYoungTableau} are used. The entries are from {\\em 0,...,n-1}.")) (|inverseColeman| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{inverseColeman(alpha,beta,C)}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For such a matrix \\spad{C},{} inverseColeman(\\spad{alpha},{}\\spad{beta},{}\\spad{C}) calculates the lexicographical smallest {\\em pi} in the corresponding double coset. Note: the resulting permutation {\\em pi} of {\\em {1,2,...,n}} is given in list form. Notes: the inverse of this map is {\\em coleman}. For details,{} see James/Kerber.")) (|coleman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{coleman(alpha,beta,pi)}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For a representing element {\\em pi} of such a double coset,{} coleman(\\spad{alpha},{}\\spad{beta},{}\\spad{pi}) generates the Coleman-matrix corresponding to {\\em alpha, beta, pi}. Note: The permutation {\\em pi} of {\\em {1,2,...,n}} has to be given in list form. Note: the inverse of this map is {\\em inverseColeman} (if {\\em pi} is the lexicographical smallest permutation in the coset). For details see James/Kerber.")))
@@ -4418,8 +4418,8 @@ NIL
NIL
(-1122 |dimtot| |dim1| S)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The vectors are ordered as if they were split into two blocks. The dim1 parameter specifies the length of the first block. The ordering is lexicographic between the blocks but acts like \\spadtype{HomogeneousDirectProduct} within each block. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4442 |has| |#3| (-1058)) (-4443 |has| |#3| (-1058)) (-4445 |has| |#3| (-6 -4445)) ((-4450 "*") |has| |#3| (-174)) (-4448 . T))
-((-2740 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109)))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#3| (QUOTE (-368))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2740 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-235))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-1109)))) (|HasCategory| |#3| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-132)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-174)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-235)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-373)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-732)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-799)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-854)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109)))) (|HasAttribute| |#3| (QUOTE -4445)) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))))
+((-4443 |has| |#3| (-1058)) (-4444 |has| |#3| (-1058)) (-4446 |has| |#3| (-6 -4446)) ((-4451 "*") |has| |#3| (-174)) (-4449 . T))
+((-2740 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109)))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#3| (QUOTE (-368))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2740 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2740 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (|HasCategory| |#3| (QUOTE (-235))) (-2740 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-1109)))) (|HasCategory| |#3| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-132)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-174)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-235)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-373)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-732)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-799)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-854)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (|HasCategory| (-570) (QUOTE (-856))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (QUOTE (-235))) (|HasCategory| |#3| (QUOTE (-1058)))) (-12 (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2740 (|HasCategory| |#3| (QUOTE (-1058))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570)))))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#3| (QUOTE (-1109)))) (|HasAttribute| |#3| (QUOTE -4446)) (|HasCategory| |#3| (QUOTE (-132))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#3| (QUOTE (-1109))) (|HasCategory| |#3| (LIST (QUOTE -313) (|devaluate| |#3|)))))
(-1123 R |x|)
((|constructor| (NIL "This package produces functions for counting etc. real roots of univariate polynomials in \\spad{x} over \\spad{R},{} which must be an OrderedIntegralDomain")) (|countRealRootsMultiple| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{countRealRootsMultiple(p)} says how many real roots \\spad{p} has,{} counted with multiplicity")) (|SturmHabichtMultiple| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtMultiple(p1,p2)} computes \\spad{c_}{+}\\spad{-c_}{-} where \\spad{c_}{+} is the number of real roots of \\spad{p1} with p2>0 and \\spad{c_}{-} is the number of real roots of \\spad{p1} with p2<0. If p2=1 what you get is the number of real roots of \\spad{p1}.")) (|countRealRoots| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{countRealRoots(p)} says how many real roots \\spad{p} has")) (|SturmHabicht| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabicht(p1,p2)} computes \\spad{c_}{+}\\spad{-c_}{-} where \\spad{c_}{+} is the number of real roots of \\spad{p1} with p2>0 and \\spad{c_}{-} is the number of real roots of \\spad{p1} with p2<0. If p2=1 what you get is the number of real roots of \\spad{p1}.")) (|SturmHabichtCoefficients| (((|List| |#1|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtCoefficients(p1,p2)} computes the principal Sturm-Habicht coefficients of \\spad{p1} and \\spad{p2}")) (|SturmHabichtSequence| (((|List| (|UnivariatePolynomial| |#2| |#1|)) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtSequence(p1,p2)} computes the Sturm-Habicht sequence of \\spad{p1} and \\spad{p2}")) (|subresultantSequence| (((|List| (|UnivariatePolynomial| |#2| |#1|)) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{subresultantSequence(p1,p2)} computes the (standard) subresultant sequence of \\spad{p1} and \\spad{p2}")))
NIL
@@ -4446,19 +4446,19 @@ NIL
NIL
(-1129)
((|constructor| (NIL "SingleInteger is intended to support machine integer arithmetic.")) (|Or| (($ $ $) "\\spad{Or(n,m)} returns the bit-by-bit logical {\\em or} of the single integers \\spad{n} and \\spad{m}.")) (|And| (($ $ $) "\\spad{And(n,m)} returns the bit-by-bit logical {\\em and} of the single integers \\spad{n} and \\spad{m}.")) (|Not| (($ $) "\\spad{Not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|xor| (($ $ $) "\\spad{xor(n,m)} returns the bit-by-bit logical {\\em xor} of the single integers \\spad{n} and \\spad{m}.")) (|noetherian| ((|attribute|) "\\spad{noetherian} all ideals are finitely generated (in fact principal).")) (|canonicalsClosed| ((|attribute|) "\\spad{canonicalClosed} means two positives multiply to give positive.")) (|canonical| ((|attribute|) "\\spad{canonical} means that mathematical equality is implied by data structure equality.")))
-((-4436 . T) (-4440 . T) (-4435 . T) (-4446 . T) (-4447 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4437 . T) (-4441 . T) (-4436 . T) (-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1130 S)
((|constructor| (NIL "A stack is a bag where the last item inserted is the first item extracted.")) (|depth| (((|NonNegativeInteger|) $) "\\spad{depth(s)} returns the number of elements of stack \\spad{s}. Note: \\axiom{depth(\\spad{s}) = \\spad{#s}}.")) (|top| ((|#1| $) "\\spad{top(s)} returns the top element \\spad{x} from \\spad{s}; \\spad{s} remains unchanged. Note: Use \\axiom{pop!(\\spad{s})} to obtain \\spad{x} and remove it from \\spad{s}.")) (|pop!| ((|#1| $) "\\spad{pop!(s)} returns the top element \\spad{x},{} destructively removing \\spad{x} from \\spad{s}. Note: Use \\axiom{top(\\spad{s})} to obtain \\spad{x} without removing it from \\spad{s}. Error: if \\spad{s} is empty.")) (|push!| ((|#1| |#1| $) "\\spad{push!(x,s)} pushes \\spad{x} onto stack \\spad{s},{} \\spadignore{i.e.} destructively changing \\spad{s} so as to have a new first (top) element \\spad{x}. Afterwards,{} pop!(\\spad{s}) produces \\spad{x} and pop!(\\spad{s}) produces the original \\spad{s}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
NIL
(-1131 S |ndim| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{SquareMatrixCategory} is a general square matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if the matrix is not invertible.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m},{} if that matrix is invertible and returns \"failed\" otherwise.")) (|minordet| ((|#3| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors.")) (|determinant| ((|#3| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}.")) (* ((|#4| |#4| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#5| $ |#5|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.")) (|diagonalProduct| ((|#3| $) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}.")) (|trace| ((|#3| $) "\\spad{trace(m)} returns the trace of the matrix \\spad{m}. this is the sum of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonal| ((|#4| $) "\\spad{diagonal(m)} returns a row consisting of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonalMatrix| (($ (|List| |#3|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ |#3|) "\\spad{scalarMatrix(r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")))
NIL
-((|HasCategory| |#3| (QUOTE (-368))) (|HasAttribute| |#3| (QUOTE (-4450 "*"))) (|HasCategory| |#3| (QUOTE (-174))))
+((|HasCategory| |#3| (QUOTE (-368))) (|HasAttribute| |#3| (QUOTE (-4451 "*"))) (|HasCategory| |#3| (QUOTE (-174))))
(-1132 |ndim| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{SquareMatrixCategory} is a general square matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if the matrix is not invertible.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m},{} if that matrix is invertible and returns \"failed\" otherwise.")) (|minordet| ((|#2| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors.")) (|determinant| ((|#2| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}.")) (* ((|#3| |#3| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#4| $ |#4|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.")) (|diagonalProduct| ((|#2| $) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}.")) (|trace| ((|#2| $) "\\spad{trace(m)} returns the trace of the matrix \\spad{m}. this is the sum of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonal| ((|#3| $) "\\spad{diagonal(m)} returns a row consisting of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonalMatrix| (($ (|List| |#2|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ |#2|) "\\spad{scalarMatrix(r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")))
-((-4448 . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4449 . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
(-1133 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{SmithNormalForm} is a package which provides some standard canonical forms for matrices.")) (|diophantineSystem| (((|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|))) |#4| |#3|) "\\spad{diophantineSystem(A,B)} returns a particular integer solution and an integer basis of the equation \\spad{AX = B}.")) (|completeSmith| (((|Record| (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) "\\spad{completeSmith} returns a record that contains the Smith normal form \\spad{H} of the matrix and the left and right equivalence matrices \\spad{U} and \\spad{V} such that U*m*v = \\spad{H}")) (|smith| ((|#4| |#4|) "\\spad{smith(m)} returns the Smith Normal form of the matrix \\spad{m}.")) (|completeHermite| (((|Record| (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) "\\spad{completeHermite} returns a record that contains the Hermite normal form \\spad{H} of the matrix and the equivalence matrix \\spad{U} such that U*m = \\spad{H}")) (|hermite| ((|#4| |#4|) "\\spad{hermite(m)} returns the Hermite normal form of the matrix \\spad{m}.")))
@@ -4466,15 +4466,15 @@ NIL
NIL
(-1134 R |VarSet|)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials. It is parameterized by the coefficient ring and the variable set which may be infinite. The variable ordering is determined by the variable set parameter. The coefficient ring may be non-commutative,{} but the variables are assumed to commute.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-1135 |Coef| |Var| SMP)
((|constructor| (NIL "This domain provides multivariate Taylor series with variables from an arbitrary ordered set. A Taylor series is represented by a stream of polynomials from the polynomial domain \\spad{SMP}. The \\spad{n}th element of the stream is a form of degree \\spad{n}. SMTS is an internal domain.")) (|fintegrate| (($ (|Mapping| $) |#2| |#1|) "\\spad{fintegrate(f,v,c)} is the integral of \\spad{f()} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.} \\indented{1}{The evaluation of \\spad{f()} is delayed.}")) (|integrate| (($ $ |#2| |#1|) "\\spad{integrate(s,v,c)} is the integral of \\spad{s} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.}")) (|csubst| (((|Mapping| (|Stream| |#3|) |#3|) (|List| |#2|) (|List| (|Stream| |#3|))) "\\spad{csubst(a,b)} is for internal use only")) (* (($ |#3| $) "\\spad{smp*ts} multiplies a TaylorSeries by a monomial \\spad{SMP}.")) (|coerce| (($ |#3|) "\\spad{coerce(poly)} regroups the terms by total degree and forms a series.") (($ |#2|) "\\spad{coerce(var)} converts a variable to a Taylor series")) (|coefficient| ((|#3| $ (|NonNegativeInteger|)) "\\spad{coefficient(s, n)} gives the terms of total degree \\spad{n}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4444 . T) (-4443 . T) (-4446 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))))
(-1136 R E V P)
((|constructor| (NIL "The category of square-free and normalized triangular sets. Thus,{} up to the primitivity axiom of [1],{} these sets are Lazard triangular sets.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991}")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-1137 UP -1674)
((|constructor| (NIL "This package factors the formulas out of the general solve code,{} allowing their recursive use over different domains. Care is taken to introduce few radicals so that radical extension domains can more easily simplify the results.")) (|aQuartic| ((|#2| |#2| |#2| |#2| |#2| |#2|) "\\spad{aQuartic(f,g,h,i,k)} \\undocumented")) (|aCubic| ((|#2| |#2| |#2| |#2| |#2|) "\\spad{aCubic(f,g,h,j)} \\undocumented")) (|aQuadratic| ((|#2| |#2| |#2| |#2|) "\\spad{aQuadratic(f,g,h)} \\undocumented")) (|aLinear| ((|#2| |#2| |#2|) "\\spad{aLinear(f,g)} \\undocumented")) (|quartic| (((|List| |#2|) |#2| |#2| |#2| |#2| |#2|) "\\spad{quartic(f,g,h,i,j)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{quartic(u)} \\undocumented")) (|cubic| (((|List| |#2|) |#2| |#2| |#2| |#2|) "\\spad{cubic(f,g,h,i)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{cubic(u)} \\undocumented")) (|quadratic| (((|List| |#2|) |#2| |#2| |#2|) "\\spad{quadratic(f,g,h)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{quadratic(u)} \\undocumented")) (|linear| (((|List| |#2|) |#2| |#2|) "\\spad{linear(f,g)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{linear(u)} \\undocumented")) (|mapSolve| (((|Record| (|:| |solns| (|List| |#2|)) (|:| |maps| (|List| (|Record| (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (|Mapping| |#2| |#2|)) "\\spad{mapSolve(u,f)} \\undocumented")) (|particularSolution| ((|#2| |#1|) "\\spad{particularSolution(u)} \\undocumented")) (|solve| (((|List| |#2|) |#1|) "\\spad{solve(u)} \\undocumented")))
@@ -4530,19 +4530,19 @@ NIL
NIL
(-1150 V C)
((|constructor| (NIL "This domain exports a modest implementation of splitting trees. Spliiting trees are needed when the evaluation of some quantity under some hypothesis requires to split the hypothesis into sub-cases. For instance by adding some new hypothesis on one hand and its negation on another hand. The computations are terminated is a splitting tree \\axiom{a} when \\axiom{status(value(a))} is \\axiom{\\spad{true}}. Thus,{} if for the splitting tree \\axiom{a} the flag \\axiom{status(value(a))} is \\axiom{\\spad{true}},{} then \\axiom{status(value(\\spad{d}))} is \\axiom{\\spad{true}} for any subtree \\axiom{\\spad{d}} of \\axiom{a}. This property of splitting trees is called the termination condition. If no vertex in a splitting tree \\axiom{a} is equal to another,{} \\axiom{a} is said to satisfy the no-duplicates condition. The splitting tree \\axiom{a} will satisfy this condition if nodes are added to \\axiom{a} by mean of \\axiom{splitNodeOf!} and if \\axiom{construct} is only used to create the root of \\axiom{a} with no children.")) (|splitNodeOf!| (($ $ $ (|List| (|SplittingNode| |#1| |#2|)) (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{splitNodeOf!(\\spad{l},{}a,{}\\spad{ls},{}sub?)} returns \\axiom{a} where the children list of \\axiom{\\spad{l}} has been set to \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls} | not subNodeOf?(\\spad{s},{}a,{}sub?)]}. Thus,{} if \\axiom{\\spad{l}} is not a node of \\axiom{a},{} this latter splitting tree is unchanged.") (($ $ $ (|List| (|SplittingNode| |#1| |#2|))) "\\axiom{splitNodeOf!(\\spad{l},{}a,{}\\spad{ls})} returns \\axiom{a} where the children list of \\axiom{\\spad{l}} has been set to \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls} | not nodeOf?(\\spad{s},{}a)]}. Thus,{} if \\axiom{\\spad{l}} is not a node of \\axiom{a},{} this latter splitting tree is unchanged.")) (|remove!| (($ (|SplittingNode| |#1| |#2|) $) "\\axiom{remove!(\\spad{s},{}a)} replaces a by remove(\\spad{s},{}a)")) (|remove| (($ (|SplittingNode| |#1| |#2|) $) "\\axiom{remove(\\spad{s},{}a)} returns the splitting tree obtained from a by removing every sub-tree \\axiom{\\spad{b}} such that \\axiom{value(\\spad{b})} and \\axiom{\\spad{s}} have the same value,{} condition and status.")) (|subNodeOf?| (((|Boolean|) (|SplittingNode| |#1| |#2|) $ (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{subNodeOf?(\\spad{s},{}a,{}sub?)} returns \\spad{true} iff for some node \\axiom{\\spad{n}} in \\axiom{a} we have \\axiom{\\spad{s} = \\spad{n}} or \\axiom{status(\\spad{n})} and \\axiom{subNode?(\\spad{s},{}\\spad{n},{}sub?)}.")) (|nodeOf?| (((|Boolean|) (|SplittingNode| |#1| |#2|) $) "\\axiom{nodeOf?(\\spad{s},{}a)} returns \\spad{true} iff some node of \\axiom{a} is equal to \\axiom{\\spad{s}}")) (|result| (((|List| (|Record| (|:| |val| |#1|) (|:| |tower| |#2|))) $) "\\axiom{result(a)} where \\axiom{\\spad{ls}} is the leaves list of \\axiom{a} returns \\axiom{[[value(\\spad{s}),{}condition(\\spad{s})]\\$\\spad{VT} for \\spad{s} in \\spad{ls}]} if the computations are terminated in \\axiom{a} else an error is produced.")) (|conditions| (((|List| |#2|) $) "\\axiom{conditions(a)} returns the list of the conditions of the leaves of a")) (|construct| (($ |#1| |#2| |#1| (|List| |#2|)) "\\axiom{construct(\\spad{v1},{}\\spad{t},{}\\spad{v2},{}\\spad{lt})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with children list given by \\axiom{[[[\\spad{v},{}\\spad{t}]\\$\\spad{S}]\\$\\% for \\spad{s} in \\spad{ls}]}.") (($ |#1| |#2| (|List| (|SplittingNode| |#1| |#2|))) "\\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{ls})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with children list given by \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls}]}.") (($ |#1| |#2| (|List| $)) "\\axiom{construct(\\spad{v},{}\\spad{t},{}la)} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with \\axiom{la} as children list.") (($ (|SplittingNode| |#1| |#2|)) "\\axiom{construct(\\spad{s})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{\\spad{s}} and no children. Thus,{} if the status of \\axiom{\\spad{s}} is \\spad{false},{} \\axiom{[\\spad{s}]} represents the starting point of the evaluation \\axiom{value(\\spad{s})} under the hypothesis \\axiom{condition(\\spad{s})}.")) (|updateStatus!| (($ $) "\\axiom{updateStatus!(a)} returns a where the status of the vertices are updated to satisfy the \"termination condition\".")) (|extractSplittingLeaf| (((|Union| $ "failed") $) "\\axiom{extractSplittingLeaf(a)} returns the left most leaf (as a tree) whose status is \\spad{false} if any,{} else \"failed\" is returned.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| (-1149 |#1| |#2|) (LIST (QUOTE -313) (LIST (QUOTE -1149) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1149 |#1| |#2|) (QUOTE (-1109)))) (|HasCategory| (-1149 |#1| |#2|) (QUOTE (-1109))) (-2740 (|HasCategory| (-1149 |#1| |#2|) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-1149 |#1| |#2|) (LIST (QUOTE -313) (LIST (QUOTE -1149) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1149 |#1| |#2|) (QUOTE (-1109))))) (|HasCategory| (-1149 |#1| |#2|) (LIST (QUOTE -619) (QUOTE (-868)))))
(-1151 |ndim| R)
((|constructor| (NIL "\\spadtype{SquareMatrix} is a matrix domain of square matrices,{} where the number of rows (= number of columns) is a parameter of the type.")) (|unitsKnown| ((|attribute|) "the invertible matrices are simply the matrices whose determinants are units in the Ring \\spad{R}.")) (|central| ((|attribute|) "the elements of the Ring \\spad{R},{} viewed as diagonal matrices,{} commute with all matrices and,{} indeed,{} are the only matrices which commute with all matrices.")) (|squareMatrix| (($ (|Matrix| |#2|)) "\\spad{squareMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spadtype{SquareMatrix}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.")) (|new| (($ |#2|) "\\spad{new(c)} constructs a new \\spadtype{SquareMatrix} object of dimension \\spad{ndim} with initial entries equal to \\spad{c}.")))
-((-4445 . T) (-4437 |has| |#2| (-6 (-4450 "*"))) (-4448 . T) (-4442 . T) (-4443 . T))
-((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE (-4450 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasAttribute| |#2| (QUOTE (-4450 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-174))))
+((-4446 . T) (-4438 |has| |#2| (-6 (-4451 "*"))) (-4449 . T) (-4443 . T) (-4444 . T))
+((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE (-4451 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (-12 (|HasCategory| |#2| (QUOTE (-235))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-368))) (-2740 (|HasAttribute| |#2| (QUOTE (-4451 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-174))))
(-1152 S)
((|constructor| (NIL "A string aggregate is a category for strings,{} that is,{} one dimensional arrays of characters.")) (|elt| (($ $ $) "\\spad{elt(s,t)} returns the concatenation of \\spad{s} and \\spad{t}. It is provided to allow juxtaposition of strings to work as concatenation. For example,{} \\axiom{\"smoo\" \"shed\"} returns \\axiom{\"smooshed\"}.")) (|rightTrim| (($ $ (|CharacterClass|)) "\\spad{rightTrim(s,cc)} returns \\spad{s} with all trailing occurences of characters in \\spad{cc} deleted. For example,{} \\axiom{rightTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"(abc\"}.") (($ $ (|Character|)) "\\spad{rightTrim(s,c)} returns \\spad{s} with all trailing occurrences of \\spad{c} deleted. For example,{} \\axiom{rightTrim(\" abc \",{} char \" \")} returns \\axiom{\" abc\"}.")) (|leftTrim| (($ $ (|CharacterClass|)) "\\spad{leftTrim(s,cc)} returns \\spad{s} with all leading characters in \\spad{cc} deleted. For example,{} \\axiom{leftTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc)\"}.") (($ $ (|Character|)) "\\spad{leftTrim(s,c)} returns \\spad{s} with all leading characters \\spad{c} deleted. For example,{} \\axiom{leftTrim(\" abc \",{} char \" \")} returns \\axiom{\"abc \"}.")) (|trim| (($ $ (|CharacterClass|)) "\\spad{trim(s,cc)} returns \\spad{s} with all characters in \\spad{cc} deleted from right and left ends. For example,{} \\axiom{trim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc\"}.") (($ $ (|Character|)) "\\spad{trim(s,c)} returns \\spad{s} with all characters \\spad{c} deleted from right and left ends. For example,{} \\axiom{trim(\" abc \",{} char \" \")} returns \\axiom{\"abc\"}.")) (|split| (((|List| $) $ (|CharacterClass|)) "\\spad{split(s,cc)} returns a list of substrings delimited by characters in \\spad{cc}.") (((|List| $) $ (|Character|)) "\\spad{split(s,c)} returns a list of substrings delimited by character \\spad{c}.")) (|coerce| (($ (|Character|)) "\\spad{coerce(c)} returns \\spad{c} as a string \\spad{s} with the character \\spad{c}.")) (|position| (((|Integer|) (|CharacterClass|) $ (|Integer|)) "\\spad{position(cc,t,i)} returns the position \\axiom{\\spad{j} \\spad{>=} \\spad{i}} in \\spad{t} of the first character belonging to \\spad{cc}.") (((|Integer|) $ $ (|Integer|)) "\\spad{position(s,t,i)} returns the position \\spad{j} of the substring \\spad{s} in string \\spad{t},{} where \\axiom{\\spad{j} \\spad{>=} \\spad{i}} is required.")) (|replace| (($ $ (|UniversalSegment| (|Integer|)) $) "\\spad{replace(s,i..j,t)} replaces the substring \\axiom{\\spad{s}(\\spad{i}..\\spad{j})} of \\spad{s} by string \\spad{t}.")) (|match?| (((|Boolean|) $ $ (|Character|)) "\\spad{match?(s,t,c)} tests if \\spad{s} matches \\spad{t} except perhaps for multiple and consecutive occurrences of character \\spad{c}. Typically \\spad{c} is the blank character.")) (|match| (((|NonNegativeInteger|) $ $ (|Character|)) "\\spad{match(p,s,wc)} tests if pattern \\axiom{\\spad{p}} matches subject \\axiom{\\spad{s}} where \\axiom{\\spad{wc}} is a wild card character. If no match occurs,{} the index \\axiom{0} is returned; otheriwse,{} the value returned is the first index of the first character in the subject matching the subject (excluding that matched by an initial wild-card). For example,{} \\axiom{match(\"*to*\",{}\"yorktown\",{}\\spad{\"*\"})} returns \\axiom{5} indicating a successful match starting at index \\axiom{5} of \\axiom{\"yorktown\"}.")) (|substring?| (((|Boolean|) $ $ (|Integer|)) "\\spad{substring?(s,t,i)} tests if \\spad{s} is a substring of \\spad{t} beginning at index \\spad{i}. Note: \\axiom{substring?(\\spad{s},{}\\spad{t},{}0) = prefix?(\\spad{s},{}\\spad{t})}.")) (|suffix?| (((|Boolean|) $ $) "\\spad{suffix?(s,t)} tests if the string \\spad{s} is the final substring of \\spad{t}. Note: \\axiom{suffix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.(\\spad{n} - \\spad{m} + \\spad{i}) for \\spad{i} in 0..maxIndex \\spad{s}])} where \\spad{m} and \\spad{n} denote the maxIndex of \\spad{s} and \\spad{t} respectively.")) (|prefix?| (((|Boolean|) $ $) "\\spad{prefix?(s,t)} tests if the string \\spad{s} is the initial substring of \\spad{t}. Note: \\axiom{prefix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.\\spad{i} for \\spad{i} in 0..maxIndex \\spad{s}])}.")) (|upperCase!| (($ $) "\\spad{upperCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by upper case characters.")) (|upperCase| (($ $) "\\spad{upperCase(s)} returns the string with all characters in upper case.")) (|lowerCase!| (($ $) "\\spad{lowerCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by lower case.")) (|lowerCase| (($ $) "\\spad{lowerCase(s)} returns the string with all characters in lower case.")))
NIL
NIL
(-1153)
((|constructor| (NIL "A string aggregate is a category for strings,{} that is,{} one dimensional arrays of characters.")) (|elt| (($ $ $) "\\spad{elt(s,t)} returns the concatenation of \\spad{s} and \\spad{t}. It is provided to allow juxtaposition of strings to work as concatenation. For example,{} \\axiom{\"smoo\" \"shed\"} returns \\axiom{\"smooshed\"}.")) (|rightTrim| (($ $ (|CharacterClass|)) "\\spad{rightTrim(s,cc)} returns \\spad{s} with all trailing occurences of characters in \\spad{cc} deleted. For example,{} \\axiom{rightTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"(abc\"}.") (($ $ (|Character|)) "\\spad{rightTrim(s,c)} returns \\spad{s} with all trailing occurrences of \\spad{c} deleted. For example,{} \\axiom{rightTrim(\" abc \",{} char \" \")} returns \\axiom{\" abc\"}.")) (|leftTrim| (($ $ (|CharacterClass|)) "\\spad{leftTrim(s,cc)} returns \\spad{s} with all leading characters in \\spad{cc} deleted. For example,{} \\axiom{leftTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc)\"}.") (($ $ (|Character|)) "\\spad{leftTrim(s,c)} returns \\spad{s} with all leading characters \\spad{c} deleted. For example,{} \\axiom{leftTrim(\" abc \",{} char \" \")} returns \\axiom{\"abc \"}.")) (|trim| (($ $ (|CharacterClass|)) "\\spad{trim(s,cc)} returns \\spad{s} with all characters in \\spad{cc} deleted from right and left ends. For example,{} \\axiom{trim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc\"}.") (($ $ (|Character|)) "\\spad{trim(s,c)} returns \\spad{s} with all characters \\spad{c} deleted from right and left ends. For example,{} \\axiom{trim(\" abc \",{} char \" \")} returns \\axiom{\"abc\"}.")) (|split| (((|List| $) $ (|CharacterClass|)) "\\spad{split(s,cc)} returns a list of substrings delimited by characters in \\spad{cc}.") (((|List| $) $ (|Character|)) "\\spad{split(s,c)} returns a list of substrings delimited by character \\spad{c}.")) (|coerce| (($ (|Character|)) "\\spad{coerce(c)} returns \\spad{c} as a string \\spad{s} with the character \\spad{c}.")) (|position| (((|Integer|) (|CharacterClass|) $ (|Integer|)) "\\spad{position(cc,t,i)} returns the position \\axiom{\\spad{j} \\spad{>=} \\spad{i}} in \\spad{t} of the first character belonging to \\spad{cc}.") (((|Integer|) $ $ (|Integer|)) "\\spad{position(s,t,i)} returns the position \\spad{j} of the substring \\spad{s} in string \\spad{t},{} where \\axiom{\\spad{j} \\spad{>=} \\spad{i}} is required.")) (|replace| (($ $ (|UniversalSegment| (|Integer|)) $) "\\spad{replace(s,i..j,t)} replaces the substring \\axiom{\\spad{s}(\\spad{i}..\\spad{j})} of \\spad{s} by string \\spad{t}.")) (|match?| (((|Boolean|) $ $ (|Character|)) "\\spad{match?(s,t,c)} tests if \\spad{s} matches \\spad{t} except perhaps for multiple and consecutive occurrences of character \\spad{c}. Typically \\spad{c} is the blank character.")) (|match| (((|NonNegativeInteger|) $ $ (|Character|)) "\\spad{match(p,s,wc)} tests if pattern \\axiom{\\spad{p}} matches subject \\axiom{\\spad{s}} where \\axiom{\\spad{wc}} is a wild card character. If no match occurs,{} the index \\axiom{0} is returned; otheriwse,{} the value returned is the first index of the first character in the subject matching the subject (excluding that matched by an initial wild-card). For example,{} \\axiom{match(\"*to*\",{}\"yorktown\",{}\\spad{\"*\"})} returns \\axiom{5} indicating a successful match starting at index \\axiom{5} of \\axiom{\"yorktown\"}.")) (|substring?| (((|Boolean|) $ $ (|Integer|)) "\\spad{substring?(s,t,i)} tests if \\spad{s} is a substring of \\spad{t} beginning at index \\spad{i}. Note: \\axiom{substring?(\\spad{s},{}\\spad{t},{}0) = prefix?(\\spad{s},{}\\spad{t})}.")) (|suffix?| (((|Boolean|) $ $) "\\spad{suffix?(s,t)} tests if the string \\spad{s} is the final substring of \\spad{t}. Note: \\axiom{suffix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.(\\spad{n} - \\spad{m} + \\spad{i}) for \\spad{i} in 0..maxIndex \\spad{s}])} where \\spad{m} and \\spad{n} denote the maxIndex of \\spad{s} and \\spad{t} respectively.")) (|prefix?| (((|Boolean|) $ $) "\\spad{prefix?(s,t)} tests if the string \\spad{s} is the initial substring of \\spad{t}. Note: \\axiom{prefix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.\\spad{i} for \\spad{i} in 0..maxIndex \\spad{s}])}.")) (|upperCase!| (($ $) "\\spad{upperCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by upper case characters.")) (|upperCase| (($ $) "\\spad{upperCase(s)} returns the string with all characters in upper case.")) (|lowerCase!| (($ $) "\\spad{lowerCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by lower case.")) (|lowerCase| (($ $) "\\spad{lowerCase(s)} returns the string with all characters in lower case.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-1154 R E V P TS)
((|constructor| (NIL "A package providing a new algorithm for solving polynomial systems by means of regular chains. Two ways of solving are provided: in the sense of Zariski closure (like in Kalkbrener\\spad{'s} algorithm) or in the sense of the regular zeros (like in Wu,{} Wang or Lazard- Moreno methods). This algorithm is valid for nay type of regular set. It does not care about the way a polynomial is added in an regular set,{} or how two quasi-components are compared (by an inclusion-test),{} or how the invertibility test is made in the tower of simple extensions associated with a regular set. These operations are realized respectively by the domain \\spad{TS} and the packages \\spad{QCMPPK(R,E,V,P,TS)} and \\spad{RSETGCD(R,E,V,P,TS)}. The same way it does not care about the way univariate polynomial gcds (with coefficients in the tower of simple extensions associated with a regular set) are computed. The only requirement is that these gcds need to have invertible initials (normalized or not). WARNING. There is no need for a user to call diectly any operation of this package since they can be accessed by the domain \\axiomType{\\spad{TS}}. Thus,{} the operations of this package are not documented.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
@@ -4550,11 +4550,11 @@ NIL
NIL
(-1155 R E V P)
((|constructor| (NIL "This domain provides an implementation of square-free regular chains. Moreover,{} the operation \\axiomOpFrom{zeroSetSplit}{SquareFreeRegularTriangularSetCategory} is an implementation of a new algorithm for solving polynomial systems by means of regular chains.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.} \\indented{2}{Version: 2}")) (|preprocess| (((|Record| (|:| |val| (|List| |#4|)) (|:| |towers| (|List| $))) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{pre_process(\\spad{lp},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|internalZeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalZeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3})} is an internal subroutine,{} exported only for developement.")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2}.\\spad{b3},{}\\spad{b4})} is an internal subroutine,{} exported only for developement.") (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?,{}info?)} has the same specifications as \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory} from \\spadtype{RegularTriangularSetCategory} Moreover,{} if \\axiom{clos?} then solves in the sense of the Zariski closure else solves in the sense of the regular zeros. If \\axiom{info?} then do print messages during the computations.")) (|internalAugment| (((|List| $) |#4| $ (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalAugment(\\spad{p},{}\\spad{ts},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))))
(-1156 S)
((|constructor| (NIL "Linked List implementation of a Stack")) (|stack| (($ (|List| |#1|)) "\\spad{stack([x,y,...,z])} creates a stack with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last element \\spad{z}.")))
-((-4448 . T) (-4449 . T))
+((-4449 . T) (-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-1157 A S)
((|constructor| (NIL "A stream aggregate is a linear aggregate which possibly has an infinite number of elements. A basic domain constructor which builds stream aggregates is \\spadtype{Stream}. From streams,{} a number of infinite structures such power series can be built. A stream aggregate may also be infinite since it may be cyclic. For example,{} see \\spadtype{DecimalExpansion}.")) (|possiblyInfinite?| (((|Boolean|) $) "\\spad{possiblyInfinite?(s)} tests if the stream \\spad{s} could possibly have an infinite number of elements. Note: for many datatypes,{} \\axiom{possiblyInfinite?(\\spad{s}) = not explictlyFinite?(\\spad{s})}.")) (|explicitlyFinite?| (((|Boolean|) $) "\\spad{explicitlyFinite?(s)} tests if the stream has a finite number of elements,{} and \\spad{false} otherwise. Note: for many datatypes,{} \\axiom{explicitlyFinite?(\\spad{s}) = not possiblyInfinite?(\\spad{s})}.")))
@@ -4566,8 +4566,8 @@ NIL
NIL
(-1159 |Key| |Ent| |dent|)
((|constructor| (NIL "A sparse table has a default entry,{} which is returned if no other value has been explicitly stored for a key.")))
-((-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))))
+((-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))))
(-1160)
((|constructor| (NIL "This domain represents an arithmetic progression iterator syntax.")) (|step| (((|SpadAst|) $) "\\spad{step(i)} returns the Spad AST denoting the step of the arithmetic progression represented by the iterator \\spad{i}.")) (|upperBound| (((|Maybe| (|SpadAst|)) $) "If the set of values assumed by the iteration variable is bounded from above,{} \\spad{upperBound(i)} returns the upper bound. Otherwise,{} its returns \\spad{nothing}.")) (|lowerBound| (((|SpadAst|) $) "\\spad{lowerBound(i)} returns the lower bound on the values assumed by the iteration variable.")) (|iterationVar| (((|Identifier|) $) "\\spad{iterationVar(i)} returns the name of the iterating variable of the arithmetic progression iterator \\spad{i}.")))
NIL
@@ -4594,20 +4594,20 @@ NIL
NIL
(-1166 S)
((|constructor| (NIL "A stream is an implementation of an infinite sequence using a list of terms that have been computed and a function closure to compute additional terms when needed.")) (|filterUntil| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterUntil(p,s)} returns \\spad{[x0,x1,...,x(n)]} where \\spad{s = [x0,x1,x2,..]} and \\spad{n} is the smallest index such that \\spad{p(xn) = true}.")) (|filterWhile| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterWhile(p,s)} returns \\spad{[x0,x1,...,x(n-1)]} where \\spad{s = [x0,x1,x2,..]} and \\spad{n} is the smallest index such that \\spad{p(xn) = false}.")) (|generate| (($ (|Mapping| |#1| |#1|) |#1|) "\\spad{generate(f,x)} creates an infinite stream whose first element is \\spad{x} and whose \\spad{n}th element (\\spad{n > 1}) is \\spad{f} applied to the previous element. Note: \\spad{generate(f,x) = [x,f(x),f(f(x)),...]}.") (($ (|Mapping| |#1|)) "\\spad{generate(f)} creates an infinite stream all of whose elements are equal to \\spad{f()}. Note: \\spad{generate(f) = [f(),f(),f(),...]}.")) (|setrest!| (($ $ (|Integer|) $) "\\spad{setrest!(x,n,y)} sets rest(\\spad{x},{}\\spad{n}) to \\spad{y}. The function will expand cycles if necessary.")) (|showAll?| (((|Boolean|)) "\\spad{showAll?()} returns \\spad{true} if all computed entries of streams will be displayed.")) (|showAllElements| (((|OutputForm|) $) "\\spad{showAllElements(s)} creates an output form which displays all computed elements.")) (|output| (((|Void|) (|Integer|) $) "\\spad{output(n,st)} computes and displays the first \\spad{n} entries of \\spad{st}.")) (|cons| (($ |#1| $) "\\spad{cons(a,s)} returns a stream whose \\spad{first} is \\spad{a} and whose \\spad{rest} is \\spad{s}. Note: \\spad{cons(a,s) = concat(a,s)}.")) (|delay| (($ (|Mapping| $)) "\\spad{delay(f)} creates a stream with a lazy evaluation defined by function \\spad{f}. Caution: This function can only be called in compiled code.")) (|findCycle| (((|Record| (|:| |cycle?| (|Boolean|)) (|:| |prefix| (|NonNegativeInteger|)) (|:| |period| (|NonNegativeInteger|))) (|NonNegativeInteger|) $) "\\spad{findCycle(n,st)} determines if \\spad{st} is periodic within \\spad{n}.")) (|repeating?| (((|Boolean|) (|List| |#1|) $) "\\spad{repeating?(l,s)} returns \\spad{true} if a stream \\spad{s} is periodic with period \\spad{l},{} and \\spad{false} otherwise.")) (|repeating| (($ (|List| |#1|)) "\\spad{repeating(l)} is a repeating stream whose period is the list \\spad{l}.")) (|shallowlyMutable| ((|attribute|) "one may destructively alter a stream by assigning new values to its entries.")))
-((-4449 . T))
+((-4450 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
(-1167)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
(-1168)
NIL
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145)))))) (|HasCategory| (-145) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))))
(-1169 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#1|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (QUOTE (-1109))) (|HasCategory| (-1168) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#1|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (QUOTE (-1109))) (|HasCategory| (-1168) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))))
(-1170 A)
((|constructor| (NIL "StreamTaylorSeriesOperations implements Taylor series arithmetic,{} where a Taylor series is represented by a stream of its coefficients.")) (|power| (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{power(a,f)} returns the power series \\spad{f} raised to the power \\spad{a}.")) (|lazyGintegrate| (((|Stream| |#1|) (|Mapping| |#1| (|Integer|)) |#1| (|Mapping| (|Stream| |#1|))) "\\spad{lazyGintegrate(f,r,g)} is used for fixed point computations.")) (|mapdiv| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{mapdiv([a0,a1,..],[b0,b1,..])} returns \\spad{[a0/b0,a1/b1,..]}.")) (|powern| (((|Stream| |#1|) (|Fraction| (|Integer|)) (|Stream| |#1|)) "\\spad{powern(r,f)} raises power series \\spad{f} to the power \\spad{r}.")) (|nlde| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{nlde(u)} solves a first order non-linear differential equation described by \\spad{u} of the form \\spad{[[b<0,0>,b<0,1>,...],[b<1,0>,b<1,1>,.],...]}. the differential equation has the form \\spad{y' = sum(i=0 to infinity,j=0 to infinity,b<i,j>*(x**i)*(y**j))}.")) (|lazyIntegrate| (((|Stream| |#1|) |#1| (|Mapping| (|Stream| |#1|))) "\\spad{lazyIntegrate(r,f)} is a local function used for fixed point computations.")) (|integrate| (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{integrate(r,a)} returns the integral of the power series \\spad{a} with respect to the power series variableintegration where \\spad{r} denotes the constant of integration. Thus \\spad{integrate(a,[a0,a1,a2,...]) = [a,a0,a1/2,a2/3,...]}.")) (|invmultisect| (((|Stream| |#1|) (|Integer|) (|Integer|) (|Stream| |#1|)) "\\spad{invmultisect(a,b,st)} substitutes \\spad{x**((a+b)*n)} for \\spad{x**n} and multiplies by \\spad{x**b}.")) (|multisect| (((|Stream| |#1|) (|Integer|) (|Integer|) (|Stream| |#1|)) "\\spad{multisect(a,b,st)} selects the coefficients of \\spad{x**((a+b)*n+a)},{} and changes them to \\spad{x**n}.")) (|generalLambert| (((|Stream| |#1|) (|Stream| |#1|) (|Integer|) (|Integer|)) "\\spad{generalLambert(f(x),a,d)} returns \\spad{f(x**a) + f(x**(a + d)) + f(x**(a + 2 d)) + ...}. \\spad{f(x)} should have zero constant coefficient and \\spad{a} and \\spad{d} should be positive.")) (|evenlambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{evenlambert(st)} computes \\spad{f(x**2) + f(x**4) + f(x**6) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f(x)} is a power series with constant coefficient 1,{} then \\spad{prod(f(x**(2*n)),n=1..infinity) = exp(evenlambert(log(f(x))))}.")) (|oddlambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{oddlambert(st)} computes \\spad{f(x) + f(x**3) + f(x**5) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f}(\\spad{x}) is a power series with constant coefficient 1 then \\spad{prod(f(x**(2*n-1)),n=1..infinity) = exp(oddlambert(log(f(x))))}.")) (|lambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{lambert(st)} computes \\spad{f(x) + f(x**2) + f(x**3) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f(x)} is a power series with constant coefficient 1 then \\spad{prod(f(x**n),n = 1..infinity) = exp(lambert(log(f(x))))}.")) (|addiag| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{addiag(x)} performs diagonal addition of a stream of streams. if \\spad{x} = \\spad{[[a<0,0>,a<0,1>,..],[a<1,0>,a<1,1>,..],[a<2,0>,a<2,1>,..],..]} and \\spad{addiag(x) = [b<0,b<1>,...], then b<k> = sum(i+j=k,a<i,j>)}.")) (|revert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{revert(a)} computes the inverse of a power series \\spad{a} with respect to composition. the series should have constant coefficient 0 and first order coefficient should be invertible.")) (|lagrange| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{lagrange(g)} produces the power series for \\spad{f} where \\spad{f} is implicitly defined as \\spad{f(z) = z*g(f(z))}.")) (|compose| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{compose(a,b)} composes the power series \\spad{a} with the power series \\spad{b}.")) (|eval| (((|Stream| |#1|) (|Stream| |#1|) |#1|) "\\spad{eval(a,r)} returns a stream of partial sums of the power series \\spad{a} evaluated at the power series variable equal to \\spad{r}.")) (|coerce| (((|Stream| |#1|) |#1|) "\\spad{coerce(r)} converts a ring element \\spad{r} to a stream with one element.")) (|gderiv| (((|Stream| |#1|) (|Mapping| |#1| (|Integer|)) (|Stream| |#1|)) "\\spad{gderiv(f,[a0,a1,a2,..])} returns \\spad{[f(0)*a0,f(1)*a1,f(2)*a2,..]}.")) (|deriv| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{deriv(a)} returns the derivative of the power series with respect to the power series variable. Thus \\spad{deriv([a0,a1,a2,...])} returns \\spad{[a1,2 a2,3 a3,...]}.")) (|mapmult| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{mapmult([a0,a1,..],[b0,b1,..])} returns \\spad{[a0*b0,a1*b1,..]}.")) (|int| (((|Stream| |#1|) |#1|) "\\spad{int(r)} returns [\\spad{r},{}\\spad{r+1},{}\\spad{r+2},{}...],{} where \\spad{r} is a ring element.")) (|oddintegers| (((|Stream| (|Integer|)) (|Integer|)) "\\spad{oddintegers(n)} returns \\spad{[n,n+2,n+4,...]}.")) (|integers| (((|Stream| (|Integer|)) (|Integer|)) "\\spad{integers(n)} returns \\spad{[n,n+1,n+2,...]}.")) (|monom| (((|Stream| |#1|) |#1| (|Integer|)) "\\spad{monom(deg,coef)} is a monomial of degree \\spad{deg} with coefficient \\spad{coef}.")) (|recip| (((|Union| (|Stream| |#1|) "failed") (|Stream| |#1|)) "\\spad{recip(a)} returns the power series reciprocal of \\spad{a},{} or \"failed\" if not possible.")) (/ (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a / b} returns the power series quotient of \\spad{a} by \\spad{b}. An error message is returned if \\spad{b} is not invertible. This function is used in fixed point computations.")) (|exquo| (((|Union| (|Stream| |#1|) "failed") (|Stream| |#1|) (|Stream| |#1|)) "\\spad{exquo(a,b)} returns the power series quotient of \\spad{a} by \\spad{b},{} if the quotient exists,{} and \"failed\" otherwise")) (* (((|Stream| |#1|) (|Stream| |#1|) |#1|) "\\spad{a * r} returns the power series scalar multiplication of \\spad{a} by \\spad{r:} \\spad{[a0,a1,...] * r = [a0 * r,a1 * r,...]}") (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{r * a} returns the power series scalar multiplication of \\spad{r} by \\spad{a}: \\spad{r * [a0,a1,...] = [r * a0,r * a1,...]}") (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a * b} returns the power series (Cauchy) product of \\spad{a} and \\spad{b:} \\spad{[a0,a1,...] * [b0,b1,...] = [c0,c1,...]} where \\spad{ck = sum(i + j = k,ai * bk)}.")) (- (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{- a} returns the power series negative of \\spad{a}: \\spad{- [a0,a1,...] = [- a0,- a1,...]}") (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a - b} returns the power series difference of \\spad{a} and \\spad{b}: \\spad{[a0,a1,..] - [b0,b1,..] = [a0 - b0,a1 - b1,..]}")) (+ (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a + b} returns the power series sum of \\spad{a} and \\spad{b}: \\spad{[a0,a1,..] + [b0,b1,..] = [a0 + b0,a1 + b1,..]}")))
NIL
@@ -4638,8 +4638,8 @@ NIL
NIL
(-1177 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Laurent series in one variable \\indented{2}{\\spadtype{SparseUnivariateLaurentSeries} is a domain representing Laurent} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{SparseUnivariateLaurentSeries(Integer,x,3)} represents Laurent} \\indented{2}{series in \\spad{(x - 3)} with integer coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Laurent series.")))
-(((-4450 "*") -2740 (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4441 -2740 (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|)))))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368))))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-146))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-174)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") -2740 (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4442 -2740 (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1765 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|)))))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368))))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1184) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-146))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-174)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-1178 R -1674)
((|constructor| (NIL "computes sums of top-level expressions.")) (|sum| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{sum(f(n), n = a..b)} returns \\spad{f}(a) + \\spad{f}(a+1) + ... + \\spad{f}(\\spad{b}).") ((|#2| |#2| (|Symbol|)) "\\spad{sum(a(n), n)} returns A(\\spad{n}) such that A(\\spad{n+1}) - A(\\spad{n}) = a(\\spad{n}).")))
NIL
@@ -4658,16 +4658,16 @@ NIL
NIL
(-1182 R)
((|constructor| (NIL "This domain represents univariate polynomials over arbitrary (not necessarily commutative) coefficient rings. The variable is unspecified so that the variable displays as \\spad{?} on output. If it is necessary to specify the variable name,{} use type \\spadtype{UnivariatePolynomial}. The representation is sparse in the sense that only non-zero terms are represented.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#1| $) "\\spad{fmecg(p1,e,r,p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")) (|outputForm| (((|OutputForm|) $ (|OutputForm|)) "\\spad{outputForm(p,var)} converts the SparseUnivariatePolynomial \\spad{p} to an output form (see \\spadtype{OutputForm}) printed as a polynomial in the output form variable.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4444 |has| |#1| (-368)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-235))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4445 |has| |#1| (-368)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1161))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-235))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
(-1183 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Puiseux series in one variable \\indented{2}{\\spadtype{SparseUnivariatePuiseuxSeries} is a domain representing Puiseux} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{SparseUnivariatePuiseuxSeries(Integer,x,3)} represents Puiseux} \\indented{2}{series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
(-1184 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Taylor series in one variable \\indented{2}{\\spadtype{SparseUnivariateTaylorSeries} is a domain representing Taylor} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spadtype{SparseUnivariateTaylorSeries}(Integer,{}\\spad{x},{}3) represents Taylor} \\indented{2}{series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x),x)} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} computes the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|univariatePolynomial| (((|UnivariatePolynomial| |#2| |#1|) $ (|NonNegativeInteger|)) "\\spad{univariatePolynomial(f,k)} returns a univariate polynomial \\indented{1}{consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.}")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a \\indented{1}{Taylor series.}") (($ (|UnivariatePolynomial| |#2| |#1|)) "\\spad{coerce(p)} converts a univariate polynomial \\spad{p} in the variable \\spad{var} to a univariate Taylor series in \\spad{var}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|)))) (|HasCategory| (-777) (QUOTE (-1121))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|)))) (|HasCategory| (-777) (QUOTE (-1121))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
(-1185)
((|constructor| (NIL "This domain builds representations of boolean expressions for use with the \\axiomType{FortranCode} domain.")) (NOT (($ $) "\\spad{NOT(x)} returns the \\axiomType{Switch} expression representing \\spad{\\~~x}.") (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{NOT(x)} returns the \\axiomType{Switch} expression representing \\spad{\\~~x}.")) (AND (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{AND(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x and y}.")) (EQ (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{EQ(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x = y}.")) (OR (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{OR(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x or y}.")) (GE (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{GE(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x>=y}.")) (LE (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{LE(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x<=y}.")) (GT (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{GT(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x>y}.")) (LT (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{LT(x,y)} returns the \\axiomType{Switch} expression representing \\spad{x<y}.")) (|coerce| (($ (|Symbol|)) "\\spad{coerce(s)} \\undocumented{}")))
NIL
@@ -4682,8 +4682,8 @@ NIL
NIL
(-1188 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-6 -4446)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| (-980) (QUOTE (-132))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasAttribute| |#1| (QUOTE -4446)))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| (-980) (QUOTE (-132))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasAttribute| |#1| (QUOTE -4447)))
(-1189)
((|constructor| (NIL "Creates and manipulates one global symbol table for FORTRAN code generation,{} containing details of types,{} dimensions,{} and argument lists.")) (|symbolTableOf| (((|SymbolTable|) (|Symbol|) $) "\\spad{symbolTableOf(f,tab)} returns the symbol table of \\spad{f}")) (|argumentListOf| (((|List| (|Symbol|)) (|Symbol|) $) "\\spad{argumentListOf(f,tab)} returns the argument list of \\spad{f}")) (|returnTypeOf| (((|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) (|Symbol|) $) "\\spad{returnTypeOf(f,tab)} returns the type of the object returned by \\spad{f}")) (|empty| (($) "\\spad{empty()} creates a new,{} empty symbol table.")) (|printTypes| (((|Void|) (|Symbol|)) "\\spad{printTypes(tab)} produces FORTRAN type declarations from \\spad{tab},{} on the current FORTRAN output stream")) (|printHeader| (((|Void|)) "\\spad{printHeader()} produces the FORTRAN header for the current subprogram in the global symbol table on the current FORTRAN output stream.") (((|Void|) (|Symbol|)) "\\spad{printHeader(f)} produces the FORTRAN header for subprogram \\spad{f} in the global symbol table on the current FORTRAN output stream.") (((|Void|) (|Symbol|) $) "\\spad{printHeader(f,tab)} produces the FORTRAN header for subprogram \\spad{f} in symbol table \\spad{tab} on the current FORTRAN output stream.")) (|returnType!| (((|Void|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void"))) "\\spad{returnType!(t)} declares that the return type of he current subprogram in the global symbol table is \\spad{t}.") (((|Void|) (|Symbol|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void"))) "\\spad{returnType!(f,t)} declares that the return type of subprogram \\spad{f} in the global symbol table is \\spad{t}.") (((|Void|) (|Symbol|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) $) "\\spad{returnType!(f,t,tab)} declares that the return type of subprogram \\spad{f} in symbol table \\spad{tab} is \\spad{t}.")) (|argumentList!| (((|Void|) (|List| (|Symbol|))) "\\spad{argumentList!(l)} declares that the argument list for the current subprogram in the global symbol table is \\spad{l}.") (((|Void|) (|Symbol|) (|List| (|Symbol|))) "\\spad{argumentList!(f,l)} declares that the argument list for subprogram \\spad{f} in the global symbol table is \\spad{l}.") (((|Void|) (|Symbol|) (|List| (|Symbol|)) $) "\\spad{argumentList!(f,l,tab)} declares that the argument list for subprogram \\spad{f} in symbol table \\spad{tab} is \\spad{l}.")) (|endSubProgram| (((|Symbol|)) "\\spad{endSubProgram()} asserts that we are no longer processing the current subprogram.")) (|currentSubProgram| (((|Symbol|)) "\\spad{currentSubProgram()} returns the name of the current subprogram being processed")) (|newSubProgram| (((|Void|) (|Symbol|)) "\\spad{newSubProgram(f)} asserts that from now on type declarations are part of subprogram \\spad{f}.")) (|declare!| (((|FortranType|) (|Symbol|) (|FortranType|) (|Symbol|)) "\\spad{declare!(u,t,asp)} declares the parameter \\spad{u} to have type \\spad{t} in \\spad{asp}.") (((|FortranType|) (|Symbol|) (|FortranType|)) "\\spad{declare!(u,t)} declares the parameter \\spad{u} to have type \\spad{t} in the current level of the symbol table.") (((|FortranType|) (|List| (|Symbol|)) (|FortranType|) (|Symbol|) $) "\\spad{declare!(u,t,asp,tab)} declares the parameters \\spad{u} of subprogram \\spad{asp} to have type \\spad{t} in symbol table \\spad{tab}.") (((|FortranType|) (|Symbol|) (|FortranType|) (|Symbol|) $) "\\spad{declare!(u,t,asp,tab)} declares the parameter \\spad{u} of subprogram \\spad{asp} to have type \\spad{t} in symbol table \\spad{tab}.")) (|clearTheSymbolTable| (((|Void|) (|Symbol|)) "\\spad{clearTheSymbolTable(x)} removes the symbol \\spad{x} from the table") (((|Void|)) "\\spad{clearTheSymbolTable()} clears the current symbol table.")) (|showTheSymbolTable| (($) "\\spad{showTheSymbolTable()} returns the current symbol table.")))
NIL
@@ -4726,427 +4726,431 @@ NIL
NIL
(-1199 |Key| |Entry|)
((|constructor| (NIL "This is the general purpose table type. The keys are hashed to look up the entries. This creates a \\spadtype{HashTable} if equal for the Key domain is consistent with Lisp EQUAL otherwise an \\spadtype{AssociationList}")))
-((-4448 . T) (-4449 . T))
-((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2223) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
-(-1200 R)
+((-4449 . T) (-4450 . T))
+((-12 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2013) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2224) (|devaluate| |#2|)))))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2740 (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+(-1200 S)
+((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: April 17,{} 2010 Date Last Modified: April 17,{} 2010")) (|operator| (($ |#1| (|Arity|)) "\\spad{operator(n,a)} returns an operator named \\spad{n} and with arity \\spad{a}.")))
+NIL
+NIL
+(-1201 R)
((|constructor| (NIL "Expands tangents of sums and scalar products.")) (|tanNa| ((|#1| |#1| (|Integer|)) "\\spad{tanNa(a, n)} returns \\spad{f(a)} such that if \\spad{a = tan(u)} then \\spad{f(a) = tan(n * u)}.")) (|tanAn| (((|SparseUnivariatePolynomial| |#1|) |#1| (|PositiveInteger|)) "\\spad{tanAn(a, n)} returns \\spad{P(x)} such that if \\spad{a = tan(u)} then \\spad{P(tan(u/n)) = 0}.")) (|tanSum| ((|#1| (|List| |#1|)) "\\spad{tanSum([a1,...,an])} returns \\spad{f(a1,...,an)} such that if \\spad{ai = tan(ui)} then \\spad{f(a1,...,an) = tan(u1 + ... + un)}.")))
NIL
NIL
-(-1201 S |Key| |Entry|)
+(-1202 S |Key| |Entry|)
((|constructor| (NIL "A table aggregate is a model of a table,{} \\spadignore{i.e.} a discrete many-to-one mapping from keys to entries.")) (|map| (($ (|Mapping| |#3| |#3| |#3|) $ $) "\\spad{map(fn,t1,t2)} creates a new table \\spad{t} from given tables \\spad{t1} and \\spad{t2} with elements \\spad{fn}(\\spad{x},{}\\spad{y}) where \\spad{x} and \\spad{y} are corresponding elements from \\spad{t1} and \\spad{t2} respectively.")) (|table| (($ (|List| (|Record| (|:| |key| |#2|) (|:| |entry| |#3|)))) "\\spad{table([x,y,...,z])} creates a table consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{table()}\\$\\spad{T} creates an empty table of type \\spad{T}.")) (|setelt| ((|#3| $ |#2| |#3|) "\\spad{setelt(t,k,e)} (also written \\axiom{\\spad{t}.\\spad{k} \\spad{:=} \\spad{e}}) is equivalent to \\axiom{(insert([\\spad{k},{}\\spad{e}],{}\\spad{t}); \\spad{e})}.")))
NIL
NIL
-(-1202 |Key| |Entry|)
+(-1203 |Key| |Entry|)
((|constructor| (NIL "A table aggregate is a model of a table,{} \\spadignore{i.e.} a discrete many-to-one mapping from keys to entries.")) (|map| (($ (|Mapping| |#2| |#2| |#2|) $ $) "\\spad{map(fn,t1,t2)} creates a new table \\spad{t} from given tables \\spad{t1} and \\spad{t2} with elements \\spad{fn}(\\spad{x},{}\\spad{y}) where \\spad{x} and \\spad{y} are corresponding elements from \\spad{t1} and \\spad{t2} respectively.")) (|table| (($ (|List| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) "\\spad{table([x,y,...,z])} creates a table consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{table()}\\$\\spad{T} creates an empty table of type \\spad{T}.")) (|setelt| ((|#2| $ |#1| |#2|) "\\spad{setelt(t,k,e)} (also written \\axiom{\\spad{t}.\\spad{k} \\spad{:=} \\spad{e}}) is equivalent to \\axiom{(insert([\\spad{k},{}\\spad{e}],{}\\spad{t}); \\spad{e})}.")))
-((-4449 . T))
+((-4450 . T))
NIL
-(-1203 |Key| |Entry|)
+(-1204 |Key| |Entry|)
((|constructor| (NIL "\\axiom{TabulatedComputationPackage(Key ,{}Entry)} provides some modest support for dealing with operations with type \\axiom{Key \\spad{->} Entry}. The result of such operations can be stored and retrieved with this package by using a hash-table. The user does not need to worry about the management of this hash-table. However,{} onnly one hash-table is built by calling \\axiom{TabulatedComputationPackage(Key ,{}Entry)}.")) (|insert!| (((|Void|) |#1| |#2|) "\\axiom{insert!(\\spad{x},{}\\spad{y})} stores the item whose key is \\axiom{\\spad{x}} and whose entry is \\axiom{\\spad{y}}.")) (|extractIfCan| (((|Union| |#2| "failed") |#1|) "\\axiom{extractIfCan(\\spad{x})} searches the item whose key is \\axiom{\\spad{x}}.")) (|makingStats?| (((|Boolean|)) "\\axiom{makingStats?()} returns \\spad{true} iff the statisitics process is running.")) (|printingInfo?| (((|Boolean|)) "\\axiom{printingInfo?()} returns \\spad{true} iff messages are printed when manipulating items from the hash-table.")) (|usingTable?| (((|Boolean|)) "\\axiom{usingTable?()} returns \\spad{true} iff the hash-table is used")) (|clearTable!| (((|Void|)) "\\axiom{clearTable!()} clears the hash-table and assumes that it will no longer be used.")) (|printStats!| (((|Void|)) "\\axiom{printStats!()} prints the statistics.")) (|startStats!| (((|Void|) (|String|)) "\\axiom{startStats!(\\spad{x})} initializes the statisitics process and sets the comments to display when statistics are printed")) (|printInfo!| (((|Void|) (|String|) (|String|)) "\\axiom{printInfo!(\\spad{x},{}\\spad{y})} initializes the mesages to be printed when manipulating items from the hash-table. If a key is retrieved then \\axiom{\\spad{x}} is displayed. If an item is stored then \\axiom{\\spad{y}} is displayed.")) (|initTable!| (((|Void|)) "\\axiom{initTable!()} initializes the hash-table.")))
NIL
NIL
-(-1204)
+(-1205)
((|constructor| (NIL "This package provides functions for template manipulation")) (|stripCommentsAndBlanks| (((|String|) (|String|)) "\\spad{stripCommentsAndBlanks(s)} treats \\spad{s} as a piece of AXIOM input,{} and removes comments,{} and leading and trailing blanks.")) (|interpretString| (((|Any|) (|String|)) "\\spad{interpretString(s)} treats a string as a piece of AXIOM input,{} by parsing and interpreting it.")))
NIL
NIL
-(-1205 S)
+(-1206 S)
((|constructor| (NIL "\\spadtype{TexFormat1} provides a utility coercion for changing to TeX format anything that has a coercion to the standard output format.")) (|coerce| (((|TexFormat|) |#1|) "\\spad{coerce(s)} provides a direct coercion from a domain \\spad{S} to TeX format. This allows the user to skip the step of first manually coercing the object to standard output format before it is coerced to TeX format.")))
NIL
NIL
-(-1206)
+(-1207)
((|constructor| (NIL "\\spadtype{TexFormat} provides a coercion from \\spadtype{OutputForm} to \\TeX{} format. The particular dialect of \\TeX{} used is \\LaTeX{}. The basic object consists of three parts: a prologue,{} a tex part and an epilogue. The functions \\spadfun{prologue},{} \\spadfun{tex} and \\spadfun{epilogue} extract these parts,{} respectively. The main guts of the expression go into the tex part. The other parts can be set (\\spadfun{setPrologue!},{} \\spadfun{setEpilogue!}) so that contain the appropriate tags for printing. For example,{} the prologue and epilogue might simply contain \\spad{``}\\verb+\\spad{\\[}+\\spad{''} and \\spad{``}\\verb+\\spad{\\]}+\\spad{''},{} respectively,{} so that the TeX section will be printed in LaTeX display math mode.")) (|setPrologue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setPrologue!(t,strings)} sets the prologue section of a TeX form \\spad{t} to \\spad{strings}.")) (|setTex!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setTex!(t,strings)} sets the TeX section of a TeX form \\spad{t} to \\spad{strings}.")) (|setEpilogue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setEpilogue!(t,strings)} sets the epilogue section of a TeX form \\spad{t} to \\spad{strings}.")) (|prologue| (((|List| (|String|)) $) "\\spad{prologue(t)} extracts the prologue section of a TeX form \\spad{t}.")) (|new| (($) "\\spad{new()} create a new,{} empty object. Use \\spadfun{setPrologue!},{} \\spadfun{setTex!} and \\spadfun{setEpilogue!} to set the various components of this object.")) (|tex| (((|List| (|String|)) $) "\\spad{tex(t)} extracts the TeX section of a TeX form \\spad{t}.")) (|epilogue| (((|List| (|String|)) $) "\\spad{epilogue(t)} extracts the epilogue section of a TeX form \\spad{t}.")) (|display| (((|Void|) $) "\\spad{display(t)} outputs the TeX formatted code \\spad{t} so that each line has length less than or equal to the value set by the system command \\spadsyscom{set output length}.") (((|Void|) $ (|Integer|)) "\\spad{display(t,width)} outputs the TeX formatted code \\spad{t} so that each line has length less than or equal to \\spadvar{\\spad{width}}.")) (|convert| (($ (|OutputForm|) (|Integer|) (|OutputForm|)) "\\spad{convert(o,step,type)} changes \\spad{o} in standard output format to TeX format and also adds the given \\spad{step} number and \\spad{type}. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.") (($ (|OutputForm|) (|Integer|)) "\\spad{convert(o,step)} changes \\spad{o} in standard output format to TeX format and also adds the given \\spad{step} number. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.")))
NIL
NIL
-(-1207)
+(-1208)
((|constructor| (NIL "This domain provides an implementation of text files. Text is stored in these files using the native character set of the computer.")) (|endOfFile?| (((|Boolean|) $) "\\spad{endOfFile?(f)} tests whether the file \\spad{f} is positioned after the end of all text. If the file is open for output,{} then this test is always \\spad{true}.")) (|readIfCan!| (((|Union| (|String|) "failed") $) "\\spad{readIfCan!(f)} returns a string of the contents of a line from file \\spad{f},{} if possible. If \\spad{f} is not readable or if it is positioned at the end of file,{} then \\spad{\"failed\"} is returned.")) (|readLineIfCan!| (((|Union| (|String|) "failed") $) "\\spad{readLineIfCan!(f)} returns a string of the contents of a line from file \\spad{f},{} if possible. If \\spad{f} is not readable or if it is positioned at the end of file,{} then \\spad{\"failed\"} is returned.")) (|readLine!| (((|String|) $) "\\spad{readLine!(f)} returns a string of the contents of a line from the file \\spad{f}.")) (|writeLine!| (((|String|) $) "\\spad{writeLine!(f)} finishes the current line in the file \\spad{f}. An empty string is returned. The call \\spad{writeLine!(f)} is equivalent to \\spad{writeLine!(f,\"\")}.") (((|String|) $ (|String|)) "\\spad{writeLine!(f,s)} writes the contents of the string \\spad{s} and finishes the current line in the file \\spad{f}. The value of \\spad{s} is returned.")))
NIL
NIL
-(-1208 R)
+(-1209 R)
((|constructor| (NIL "Tools for the sign finding utilities.")) (|direction| (((|Integer|) (|String|)) "\\spad{direction(s)} \\undocumented")) (|nonQsign| (((|Union| (|Integer|) "failed") |#1|) "\\spad{nonQsign(r)} \\undocumented")) (|sign| (((|Union| (|Integer|) "failed") |#1|) "\\spad{sign(r)} \\undocumented")))
NIL
NIL
-(-1209)
+(-1210)
((|constructor| (NIL "This package exports a function for making a \\spadtype{ThreeSpace}")) (|createThreeSpace| (((|ThreeSpace| (|DoubleFloat|))) "\\spad{createThreeSpace()} creates a \\spadtype{ThreeSpace(DoubleFloat)} object capable of holding point,{} curve,{} mesh components and any combination.")))
NIL
NIL
-(-1210 S)
+(-1211 S)
((|constructor| (NIL "Category for the transcendental elementary functions.")) (|pi| (($) "\\spad{pi()} returns the constant \\spad{pi}.")))
NIL
NIL
-(-1211)
+(-1212)
((|constructor| (NIL "Category for the transcendental elementary functions.")) (|pi| (($) "\\spad{pi()} returns the constant \\spad{pi}.")))
NIL
NIL
-(-1212 S)
+(-1213 S)
((|constructor| (NIL "\\spadtype{Tree(S)} is a basic domains of tree structures. Each tree is either empty or else is a {\\it node} consisting of a value and a list of (sub)trees.")) (|cyclicParents| (((|List| $) $) "\\spad{cyclicParents(t)} returns a list of cycles that are parents of \\spad{t}.")) (|cyclicEqual?| (((|Boolean|) $ $) "\\spad{cyclicEqual?(t1, t2)} tests of two cyclic trees have the same structure.")) (|cyclicEntries| (((|List| $) $) "\\spad{cyclicEntries(t)} returns a list of top-level cycles in tree \\spad{t}.")) (|cyclicCopy| (($ $) "\\spad{cyclicCopy(l)} makes a copy of a (possibly) cyclic tree \\spad{l}.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(t)} tests if \\spad{t} is a cyclic tree.")) (|tree| (($ |#1|) "\\spad{tree(nd)} creates a tree with value \\spad{nd},{} and no children") (($ (|List| |#1|)) "\\spad{tree(ls)} creates a tree from a list of elements of \\spad{s}.") (($ |#1| (|List| $)) "\\spad{tree(nd,ls)} creates a tree with value \\spad{nd},{} and children \\spad{ls}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
-(-1213 S)
+(-1214 S)
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
NIL
NIL
-(-1214)
+(-1215)
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
NIL
NIL
-(-1215 R -1674)
+(-1216 R -1674)
((|constructor| (NIL "\\spadtype{TrigonometricManipulations} provides transformations from trigonometric functions to complex exponentials and logarithms,{} and back.")) (|complexForm| (((|Complex| |#2|) |#2|) "\\spad{complexForm(f)} returns \\spad{[real f, imag f]}.")) (|real?| (((|Boolean|) |#2|) "\\spad{real?(f)} returns \\spad{true} if \\spad{f = real f}.")) (|imag| ((|#2| |#2|) "\\spad{imag(f)} returns the imaginary part of \\spad{f} where \\spad{f} is a complex function.")) (|real| ((|#2| |#2|) "\\spad{real(f)} returns the real part of \\spad{f} where \\spad{f} is a complex function.")) (|trigs| ((|#2| |#2|) "\\spad{trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (|complexElementary| ((|#2| |#2| (|Symbol|)) "\\spad{complexElementary(f, x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log, exp}.") ((|#2| |#2|) "\\spad{complexElementary(f)} rewrites \\spad{f} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log, exp}.")) (|complexNormalize| ((|#2| |#2| (|Symbol|)) "\\spad{complexNormalize(f, x)} rewrites \\spad{f} using the least possible number of complex independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{complexNormalize(f)} rewrites \\spad{f} using the least possible number of complex independent kernels.")))
NIL
NIL
-(-1216 R |Row| |Col| M)
+(-1217 R |Row| |Col| M)
((|constructor| (NIL "This package provides functions that compute \"fraction-free\" inverses of upper and lower triangular matrices over a integral domain. By \"fraction-free inverses\" we mean the following: given a matrix \\spad{B} with entries in \\spad{R} and an element \\spad{d} of \\spad{R} such that \\spad{d} * inv(\\spad{B}) also has entries in \\spad{R},{} we return \\spad{d} * inv(\\spad{B}). Thus,{} it is not necessary to pass to the quotient field in any of our computations.")) (|LowTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{LowTriBddDenomInv(B,d)} returns \\spad{M},{} where \\spad{B} is a non-singular lower triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")) (|UpTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{UpTriBddDenomInv(B,d)} returns \\spad{M},{} where \\spad{B} is a non-singular upper triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")))
NIL
NIL
-(-1217 R -1674)
+(-1218 R -1674)
((|constructor| (NIL "TranscendentalManipulations provides functions to simplify and expand expressions involving transcendental operators.")) (|expandTrigProducts| ((|#2| |#2|) "\\spad{expandTrigProducts(e)} replaces \\axiom{sin(\\spad{x})*sin(\\spad{y})} by \\spad{(cos(x-y)-cos(x+y))/2},{} \\axiom{cos(\\spad{x})*cos(\\spad{y})} by \\spad{(cos(x-y)+cos(x+y))/2},{} and \\axiom{sin(\\spad{x})*cos(\\spad{y})} by \\spad{(sin(x-y)+sin(x+y))/2}. Note that this operation uses the pattern matcher and so is relatively expensive. To avoid getting into an infinite loop the transformations are applied at most ten times.")) (|removeSinhSq| ((|#2| |#2|) "\\spad{removeSinhSq(f)} converts every \\spad{sinh(u)**2} appearing in \\spad{f} into \\spad{1 - cosh(x)**2},{} and also reduces higher powers of \\spad{sinh(u)} with that formula.")) (|removeCoshSq| ((|#2| |#2|) "\\spad{removeCoshSq(f)} converts every \\spad{cosh(u)**2} appearing in \\spad{f} into \\spad{1 - sinh(x)**2},{} and also reduces higher powers of \\spad{cosh(u)} with that formula.")) (|removeSinSq| ((|#2| |#2|) "\\spad{removeSinSq(f)} converts every \\spad{sin(u)**2} appearing in \\spad{f} into \\spad{1 - cos(x)**2},{} and also reduces higher powers of \\spad{sin(u)} with that formula.")) (|removeCosSq| ((|#2| |#2|) "\\spad{removeCosSq(f)} converts every \\spad{cos(u)**2} appearing in \\spad{f} into \\spad{1 - sin(x)**2},{} and also reduces higher powers of \\spad{cos(u)} with that formula.")) (|coth2tanh| ((|#2| |#2|) "\\spad{coth2tanh(f)} converts every \\spad{coth(u)} appearing in \\spad{f} into \\spad{1/tanh(u)}.")) (|cot2tan| ((|#2| |#2|) "\\spad{cot2tan(f)} converts every \\spad{cot(u)} appearing in \\spad{f} into \\spad{1/tan(u)}.")) (|tanh2coth| ((|#2| |#2|) "\\spad{tanh2coth(f)} converts every \\spad{tanh(u)} appearing in \\spad{f} into \\spad{1/coth(u)}.")) (|tan2cot| ((|#2| |#2|) "\\spad{tan2cot(f)} converts every \\spad{tan(u)} appearing in \\spad{f} into \\spad{1/cot(u)}.")) (|tanh2trigh| ((|#2| |#2|) "\\spad{tanh2trigh(f)} converts every \\spad{tanh(u)} appearing in \\spad{f} into \\spad{sinh(u)/cosh(u)}.")) (|tan2trig| ((|#2| |#2|) "\\spad{tan2trig(f)} converts every \\spad{tan(u)} appearing in \\spad{f} into \\spad{sin(u)/cos(u)}.")) (|sinh2csch| ((|#2| |#2|) "\\spad{sinh2csch(f)} converts every \\spad{sinh(u)} appearing in \\spad{f} into \\spad{1/csch(u)}.")) (|sin2csc| ((|#2| |#2|) "\\spad{sin2csc(f)} converts every \\spad{sin(u)} appearing in \\spad{f} into \\spad{1/csc(u)}.")) (|sech2cosh| ((|#2| |#2|) "\\spad{sech2cosh(f)} converts every \\spad{sech(u)} appearing in \\spad{f} into \\spad{1/cosh(u)}.")) (|sec2cos| ((|#2| |#2|) "\\spad{sec2cos(f)} converts every \\spad{sec(u)} appearing in \\spad{f} into \\spad{1/cos(u)}.")) (|csch2sinh| ((|#2| |#2|) "\\spad{csch2sinh(f)} converts every \\spad{csch(u)} appearing in \\spad{f} into \\spad{1/sinh(u)}.")) (|csc2sin| ((|#2| |#2|) "\\spad{csc2sin(f)} converts every \\spad{csc(u)} appearing in \\spad{f} into \\spad{1/sin(u)}.")) (|coth2trigh| ((|#2| |#2|) "\\spad{coth2trigh(f)} converts every \\spad{coth(u)} appearing in \\spad{f} into \\spad{cosh(u)/sinh(u)}.")) (|cot2trig| ((|#2| |#2|) "\\spad{cot2trig(f)} converts every \\spad{cot(u)} appearing in \\spad{f} into \\spad{cos(u)/sin(u)}.")) (|cosh2sech| ((|#2| |#2|) "\\spad{cosh2sech(f)} converts every \\spad{cosh(u)} appearing in \\spad{f} into \\spad{1/sech(u)}.")) (|cos2sec| ((|#2| |#2|) "\\spad{cos2sec(f)} converts every \\spad{cos(u)} appearing in \\spad{f} into \\spad{1/sec(u)}.")) (|expandLog| ((|#2| |#2|) "\\spad{expandLog(f)} converts every \\spad{log(a/b)} appearing in \\spad{f} into \\spad{log(a) - log(b)},{} and every \\spad{log(a*b)} into \\spad{log(a) + log(b)}..")) (|expandPower| ((|#2| |#2|) "\\spad{expandPower(f)} converts every power \\spad{(a/b)**c} appearing in \\spad{f} into \\spad{a**c * b**(-c)}.")) (|simplifyLog| ((|#2| |#2|) "\\spad{simplifyLog(f)} converts every \\spad{log(a) - log(b)} appearing in \\spad{f} into \\spad{log(a/b)},{} every \\spad{log(a) + log(b)} into \\spad{log(a*b)} and every \\spad{n*log(a)} into \\spad{log(a^n)}.")) (|simplifyExp| ((|#2| |#2|) "\\spad{simplifyExp(f)} converts every product \\spad{exp(a)*exp(b)} appearing in \\spad{f} into \\spad{exp(a+b)}.")) (|htrigs| ((|#2| |#2|) "\\spad{htrigs(f)} converts all the exponentials in \\spad{f} into hyperbolic sines and cosines.")) (|simplify| ((|#2| |#2|) "\\spad{simplify(f)} performs the following simplifications on \\spad{f:}\\begin{items} \\item 1. rewrites trigs and hyperbolic trigs in terms of \\spad{sin} ,{}\\spad{cos},{} \\spad{sinh},{} \\spad{cosh}. \\item 2. rewrites \\spad{sin**2} and \\spad{sinh**2} in terms of \\spad{cos} and \\spad{cosh},{} \\item 3. rewrites \\spad{exp(a)*exp(b)} as \\spad{exp(a+b)}. \\item 4. rewrites \\spad{(a**(1/n))**m * (a**(1/s))**t} as a single power of a single radical of \\spad{a}. \\end{items}")) (|expand| ((|#2| |#2|) "\\spad{expand(f)} performs the following expansions on \\spad{f:}\\begin{items} \\item 1. logs of products are expanded into sums of logs,{} \\item 2. trigonometric and hyperbolic trigonometric functions of sums are expanded into sums of products of trigonometric and hyperbolic trigonometric functions. \\item 3. formal powers of the form \\spad{(a/b)**c} are expanded into \\spad{a**c * b**(-c)}. \\end{items}")))
NIL
((-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -893) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -893) (|devaluate| |#1|)))))
-(-1218 S R E V P)
+(-1219 S R E V P)
((|constructor| (NIL "The category of triangular sets of multivariate polynomials with coefficients in an integral domain. Let \\axiom{\\spad{R}} be an integral domain and \\axiom{\\spad{V}} a finite ordered set of variables,{} say \\axiom{\\spad{X1} < \\spad{X2} < ... < \\spad{Xn}}. A set \\axiom{\\spad{S}} of polynomials in \\axiom{\\spad{R}[\\spad{X1},{}\\spad{X2},{}...,{}\\spad{Xn}]} is triangular if no elements of \\axiom{\\spad{S}} lies in \\axiom{\\spad{R}},{} and if two distinct elements of \\axiom{\\spad{S}} have distinct main variables. Note that the empty set is a triangular set. A triangular set is not necessarily a (lexicographical) Groebner basis and the notion of reduction related to triangular sets is based on the recursive view of polynomials. We recall this notion here and refer to [1] for more details. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a non-constant polynomial \\axiom{\\spad{Q}} if the degree of \\axiom{\\spad{P}} in the main variable of \\axiom{\\spad{Q}} is less than the main degree of \\axiom{\\spad{Q}}. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a triangular set \\axiom{\\spad{T}} if it is reduced \\spad{w}.\\spad{r}.\\spad{t}. every polynomial of \\axiom{\\spad{T}}. \\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")) (|coHeight| (((|NonNegativeInteger|) $) "\\axiom{coHeight(\\spad{ts})} returns \\axiom{size()\\spad{\\$}\\spad{V}} minus \\axiom{\\spad{\\#}\\spad{ts}}.")) (|extend| (($ $ |#5|) "\\axiom{extend(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current category If the required properties do not hold an error is returned.")) (|extendIfCan| (((|Union| $ "failed") $ |#5|) "\\axiom{extendIfCan(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current domain. If the required properties do not hold then \"failed\" is returned. This operation encodes in some sense the properties of the triangular sets of the current category. Is is used to implement the \\axiom{construct} operation to guarantee that every triangular set build from a list of polynomials has the required properties.")) (|select| (((|Union| |#5| "failed") $ |#4|) "\\axiom{select(\\spad{ts},{}\\spad{v})} returns the polynomial of \\axiom{\\spad{ts}} with \\axiom{\\spad{v}} as main variable,{} if any.")) (|algebraic?| (((|Boolean|) |#4| $) "\\axiom{algebraic?(\\spad{v},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ts}}.")) (|algebraicVariables| (((|List| |#4|) $) "\\axiom{algebraicVariables(\\spad{ts})} returns the decreasingly sorted list of the main variables of the polynomials of \\axiom{\\spad{ts}}.")) (|rest| (((|Union| $ "failed") $) "\\axiom{rest(\\spad{ts})} returns the polynomials of \\axiom{\\spad{ts}} with smaller main variable than \\axiom{mvar(\\spad{ts})} if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \"failed\"")) (|last| (((|Union| |#5| "failed") $) "\\axiom{last(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with smallest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|first| (((|Union| |#5| "failed") $) "\\axiom{first(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with greatest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|zeroSetSplitIntoTriangularSystems| (((|List| (|Record| (|:| |close| $) (|:| |open| (|List| |#5|)))) (|List| |#5|)) "\\axiom{zeroSetSplitIntoTriangularSystems(\\spad{lp})} returns a list of triangular systems \\axiom{[[\\spad{ts1},{}\\spad{qs1}],{}...,{}[\\spad{tsn},{}\\spad{qsn}]]} such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the \\axiom{W_i} where \\axiom{W_i} consists of the zeros of \\axiom{\\spad{ts}} which do not cancel any polynomial in \\axiom{qsi}.")) (|zeroSetSplit| (((|List| $) (|List| |#5|)) "\\axiom{zeroSetSplit(\\spad{lp})} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the regular zero sets of the members of \\axiom{\\spad{lts}}.")) (|reduceByQuasiMonic| ((|#5| |#5| $) "\\axiom{reduceByQuasiMonic(\\spad{p},{}\\spad{ts})} returns the same as \\axiom{remainder(\\spad{p},{}collectQuasiMonic(\\spad{ts})).polnum}.")) (|collectQuasiMonic| (($ $) "\\axiom{collectQuasiMonic(\\spad{ts})} returns the subset of \\axiom{\\spad{ts}} consisting of the polynomials with initial in \\axiom{\\spad{R}}.")) (|removeZero| ((|#5| |#5| $) "\\axiom{removeZero(\\spad{p},{}\\spad{ts})} returns \\axiom{0} if \\axiom{\\spad{p}} reduces to \\axiom{0} by pseudo-division \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{ts}} otherwise returns a polynomial \\axiom{\\spad{q}} computed from \\axiom{\\spad{p}} by removing any coefficient in \\axiom{\\spad{p}} reducing to \\axiom{0}.")) (|initiallyReduce| ((|#5| |#5| $) "\\axiom{initiallyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|headReduce| ((|#5| |#5| $) "\\axiom{headReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduce?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|stronglyReduce| ((|#5| |#5| $) "\\axiom{stronglyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{stronglyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|rewriteSetWithReduction| (((|List| |#5|) (|List| |#5|) $ (|Mapping| |#5| |#5| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{rewriteSetWithReduction(\\spad{lp},{}\\spad{ts},{}redOp,{}redOp?)} returns a list \\axiom{\\spad{lq}} of polynomials such that \\axiom{[reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?) for \\spad{p} in \\spad{lp}]} and \\axiom{\\spad{lp}} have the same zeros inside the regular zero set of \\axiom{\\spad{ts}}. Moreover,{} for every polynomial \\axiom{\\spad{q}} in \\axiom{\\spad{lq}} and every polynomial \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{q},{}\\spad{t})} holds and there exists a polynomial \\axiom{\\spad{p}} in the ideal generated by \\axiom{\\spad{lp}} and a product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|reduce| ((|#5| |#5| $ (|Mapping| |#5| |#5| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?)} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{redOp?(\\spad{r},{}\\spad{p})} holds for every \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} and there exists some product \\axiom{\\spad{h}} of the initials of the members of \\axiom{\\spad{ts}} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|autoReduced?| (((|Boolean|) $ (|Mapping| (|Boolean|) |#5| (|List| |#5|))) "\\axiom{autoReduced?(\\spad{ts},{}redOp?)} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to every other in the sense of \\axiom{redOp?}")) (|initiallyReduced?| (((|Boolean|) $) "\\spad{initiallyReduced?(ts)} returns \\spad{true} iff for every element \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the other elements of \\axiom{\\spad{ts}} with the same main variable.") (((|Boolean|) |#5| $) "\\axiom{initiallyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the elements of \\axiom{\\spad{ts}} with the same main variable.")) (|headReduced?| (((|Boolean|) $) "\\spad{headReduced?(ts)} returns \\spad{true} iff the head of every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#5| $) "\\axiom{headReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff the head of \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|stronglyReduced?| (((|Boolean|) $) "\\axiom{stronglyReduced?(\\spad{ts})} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#5| $) "\\axiom{stronglyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|reduced?| (((|Boolean|) |#5| $ (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{reduced?(\\spad{p},{}\\spad{ts},{}redOp?)} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. in the sense of the operation \\axiom{redOp?},{} that is if for every \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{p},{}\\spad{t})} holds.")) (|normalized?| (((|Boolean|) $) "\\axiom{normalized?(\\spad{ts})} returns \\spad{true} iff for every axiom{\\spad{p}} in axiom{\\spad{ts}} we have \\axiom{normalized?(\\spad{p},{}us)} where \\axiom{us} is \\axiom{collectUnder(\\spad{ts},{}mvar(\\spad{p}))}.") (((|Boolean|) |#5| $) "\\axiom{normalized?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variables of the polynomials of \\axiom{\\spad{ts}}")) (|quasiComponent| (((|Record| (|:| |close| (|List| |#5|)) (|:| |open| (|List| |#5|))) $) "\\axiom{quasiComponent(\\spad{ts})} returns \\axiom{[\\spad{lp},{}\\spad{lq}]} where \\axiom{\\spad{lp}} is the list of the members of \\axiom{\\spad{ts}} and \\axiom{\\spad{lq}}is \\axiom{initials(\\spad{ts})}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{ts})} returns the product of main degrees of the members of \\axiom{\\spad{ts}}.")) (|initials| (((|List| |#5|) $) "\\axiom{initials(\\spad{ts})} returns the list of the non-constant initials of the members of \\axiom{\\spad{ts}}.")) (|basicSet| (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#5|))) "failed") (|List| |#5|) (|Mapping| (|Boolean|) |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{basicSet(\\spad{ps},{}pred?,{}redOp?)} returns the same as \\axiom{basicSet(\\spad{qs},{}redOp?)} where \\axiom{\\spad{qs}} consists of the polynomials of \\axiom{\\spad{ps}} satisfying property \\axiom{pred?}.") (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#5|))) "failed") (|List| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{basicSet(\\spad{ps},{}redOp?)} returns \\axiom{[\\spad{bs},{}\\spad{ts}]} where \\axiom{concat(\\spad{bs},{}\\spad{ts})} is \\axiom{\\spad{ps}} and \\axiom{\\spad{bs}} is a basic set in Wu Wen Tsun sense of \\axiom{\\spad{ps}} \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?},{} if no non-zero constant polynomial lie in \\axiom{\\spad{ps}},{} otherwise \\axiom{\"failed\"} is returned.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(\\spad{ts1},{}\\spad{ts2})} returns \\spad{true} iff \\axiom{\\spad{ts2}} has higher rank than \\axiom{\\spad{ts1}} in Wu Wen Tsun sense.")))
NIL
((|HasCategory| |#4| (QUOTE (-373))))
-(-1219 R E V P)
+(-1220 R E V P)
((|constructor| (NIL "The category of triangular sets of multivariate polynomials with coefficients in an integral domain. Let \\axiom{\\spad{R}} be an integral domain and \\axiom{\\spad{V}} a finite ordered set of variables,{} say \\axiom{\\spad{X1} < \\spad{X2} < ... < \\spad{Xn}}. A set \\axiom{\\spad{S}} of polynomials in \\axiom{\\spad{R}[\\spad{X1},{}\\spad{X2},{}...,{}\\spad{Xn}]} is triangular if no elements of \\axiom{\\spad{S}} lies in \\axiom{\\spad{R}},{} and if two distinct elements of \\axiom{\\spad{S}} have distinct main variables. Note that the empty set is a triangular set. A triangular set is not necessarily a (lexicographical) Groebner basis and the notion of reduction related to triangular sets is based on the recursive view of polynomials. We recall this notion here and refer to [1] for more details. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a non-constant polynomial \\axiom{\\spad{Q}} if the degree of \\axiom{\\spad{P}} in the main variable of \\axiom{\\spad{Q}} is less than the main degree of \\axiom{\\spad{Q}}. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a triangular set \\axiom{\\spad{T}} if it is reduced \\spad{w}.\\spad{r}.\\spad{t}. every polynomial of \\axiom{\\spad{T}}. \\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")) (|coHeight| (((|NonNegativeInteger|) $) "\\axiom{coHeight(\\spad{ts})} returns \\axiom{size()\\spad{\\$}\\spad{V}} minus \\axiom{\\spad{\\#}\\spad{ts}}.")) (|extend| (($ $ |#4|) "\\axiom{extend(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current category If the required properties do not hold an error is returned.")) (|extendIfCan| (((|Union| $ "failed") $ |#4|) "\\axiom{extendIfCan(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current domain. If the required properties do not hold then \"failed\" is returned. This operation encodes in some sense the properties of the triangular sets of the current category. Is is used to implement the \\axiom{construct} operation to guarantee that every triangular set build from a list of polynomials has the required properties.")) (|select| (((|Union| |#4| "failed") $ |#3|) "\\axiom{select(\\spad{ts},{}\\spad{v})} returns the polynomial of \\axiom{\\spad{ts}} with \\axiom{\\spad{v}} as main variable,{} if any.")) (|algebraic?| (((|Boolean|) |#3| $) "\\axiom{algebraic?(\\spad{v},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ts}}.")) (|algebraicVariables| (((|List| |#3|) $) "\\axiom{algebraicVariables(\\spad{ts})} returns the decreasingly sorted list of the main variables of the polynomials of \\axiom{\\spad{ts}}.")) (|rest| (((|Union| $ "failed") $) "\\axiom{rest(\\spad{ts})} returns the polynomials of \\axiom{\\spad{ts}} with smaller main variable than \\axiom{mvar(\\spad{ts})} if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \"failed\"")) (|last| (((|Union| |#4| "failed") $) "\\axiom{last(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with smallest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|first| (((|Union| |#4| "failed") $) "\\axiom{first(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with greatest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|zeroSetSplitIntoTriangularSystems| (((|List| (|Record| (|:| |close| $) (|:| |open| (|List| |#4|)))) (|List| |#4|)) "\\axiom{zeroSetSplitIntoTriangularSystems(\\spad{lp})} returns a list of triangular systems \\axiom{[[\\spad{ts1},{}\\spad{qs1}],{}...,{}[\\spad{tsn},{}\\spad{qsn}]]} such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the \\axiom{W_i} where \\axiom{W_i} consists of the zeros of \\axiom{\\spad{ts}} which do not cancel any polynomial in \\axiom{qsi}.")) (|zeroSetSplit| (((|List| $) (|List| |#4|)) "\\axiom{zeroSetSplit(\\spad{lp})} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the regular zero sets of the members of \\axiom{\\spad{lts}}.")) (|reduceByQuasiMonic| ((|#4| |#4| $) "\\axiom{reduceByQuasiMonic(\\spad{p},{}\\spad{ts})} returns the same as \\axiom{remainder(\\spad{p},{}collectQuasiMonic(\\spad{ts})).polnum}.")) (|collectQuasiMonic| (($ $) "\\axiom{collectQuasiMonic(\\spad{ts})} returns the subset of \\axiom{\\spad{ts}} consisting of the polynomials with initial in \\axiom{\\spad{R}}.")) (|removeZero| ((|#4| |#4| $) "\\axiom{removeZero(\\spad{p},{}\\spad{ts})} returns \\axiom{0} if \\axiom{\\spad{p}} reduces to \\axiom{0} by pseudo-division \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{ts}} otherwise returns a polynomial \\axiom{\\spad{q}} computed from \\axiom{\\spad{p}} by removing any coefficient in \\axiom{\\spad{p}} reducing to \\axiom{0}.")) (|initiallyReduce| ((|#4| |#4| $) "\\axiom{initiallyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|headReduce| ((|#4| |#4| $) "\\axiom{headReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduce?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|stronglyReduce| ((|#4| |#4| $) "\\axiom{stronglyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{stronglyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|rewriteSetWithReduction| (((|List| |#4|) (|List| |#4|) $ (|Mapping| |#4| |#4| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{rewriteSetWithReduction(\\spad{lp},{}\\spad{ts},{}redOp,{}redOp?)} returns a list \\axiom{\\spad{lq}} of polynomials such that \\axiom{[reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?) for \\spad{p} in \\spad{lp}]} and \\axiom{\\spad{lp}} have the same zeros inside the regular zero set of \\axiom{\\spad{ts}}. Moreover,{} for every polynomial \\axiom{\\spad{q}} in \\axiom{\\spad{lq}} and every polynomial \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{q},{}\\spad{t})} holds and there exists a polynomial \\axiom{\\spad{p}} in the ideal generated by \\axiom{\\spad{lp}} and a product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|reduce| ((|#4| |#4| $ (|Mapping| |#4| |#4| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?)} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{redOp?(\\spad{r},{}\\spad{p})} holds for every \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} and there exists some product \\axiom{\\spad{h}} of the initials of the members of \\axiom{\\spad{ts}} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|autoReduced?| (((|Boolean|) $ (|Mapping| (|Boolean|) |#4| (|List| |#4|))) "\\axiom{autoReduced?(\\spad{ts},{}redOp?)} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to every other in the sense of \\axiom{redOp?}")) (|initiallyReduced?| (((|Boolean|) $) "\\spad{initiallyReduced?(ts)} returns \\spad{true} iff for every element \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the other elements of \\axiom{\\spad{ts}} with the same main variable.") (((|Boolean|) |#4| $) "\\axiom{initiallyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the elements of \\axiom{\\spad{ts}} with the same main variable.")) (|headReduced?| (((|Boolean|) $) "\\spad{headReduced?(ts)} returns \\spad{true} iff the head of every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#4| $) "\\axiom{headReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff the head of \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|stronglyReduced?| (((|Boolean|) $) "\\axiom{stronglyReduced?(\\spad{ts})} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#4| $) "\\axiom{stronglyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|reduced?| (((|Boolean|) |#4| $ (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{reduced?(\\spad{p},{}\\spad{ts},{}redOp?)} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. in the sense of the operation \\axiom{redOp?},{} that is if for every \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{p},{}\\spad{t})} holds.")) (|normalized?| (((|Boolean|) $) "\\axiom{normalized?(\\spad{ts})} returns \\spad{true} iff for every axiom{\\spad{p}} in axiom{\\spad{ts}} we have \\axiom{normalized?(\\spad{p},{}us)} where \\axiom{us} is \\axiom{collectUnder(\\spad{ts},{}mvar(\\spad{p}))}.") (((|Boolean|) |#4| $) "\\axiom{normalized?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variables of the polynomials of \\axiom{\\spad{ts}}")) (|quasiComponent| (((|Record| (|:| |close| (|List| |#4|)) (|:| |open| (|List| |#4|))) $) "\\axiom{quasiComponent(\\spad{ts})} returns \\axiom{[\\spad{lp},{}\\spad{lq}]} where \\axiom{\\spad{lp}} is the list of the members of \\axiom{\\spad{ts}} and \\axiom{\\spad{lq}}is \\axiom{initials(\\spad{ts})}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{ts})} returns the product of main degrees of the members of \\axiom{\\spad{ts}}.")) (|initials| (((|List| |#4|) $) "\\axiom{initials(\\spad{ts})} returns the list of the non-constant initials of the members of \\axiom{\\spad{ts}}.")) (|basicSet| (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{basicSet(\\spad{ps},{}pred?,{}redOp?)} returns the same as \\axiom{basicSet(\\spad{qs},{}redOp?)} where \\axiom{\\spad{qs}} consists of the polynomials of \\axiom{\\spad{ps}} satisfying property \\axiom{pred?}.") (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{basicSet(\\spad{ps},{}redOp?)} returns \\axiom{[\\spad{bs},{}\\spad{ts}]} where \\axiom{concat(\\spad{bs},{}\\spad{ts})} is \\axiom{\\spad{ps}} and \\axiom{\\spad{bs}} is a basic set in Wu Wen Tsun sense of \\axiom{\\spad{ps}} \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?},{} if no non-zero constant polynomial lie in \\axiom{\\spad{ps}},{} otherwise \\axiom{\"failed\"} is returned.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(\\spad{ts1},{}\\spad{ts2})} returns \\spad{true} iff \\axiom{\\spad{ts2}} has higher rank than \\axiom{\\spad{ts1}} in Wu Wen Tsun sense.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
-(-1220 |Coef|)
+(-1221 |Coef|)
((|constructor| (NIL "\\spadtype{TaylorSeries} is a general multivariate Taylor series domain over the ring Coef and with variables of type Symbol.")) (|fintegrate| (($ (|Mapping| $) (|Symbol|) |#1|) "\\spad{fintegrate(f,v,c)} is the integral of \\spad{f()} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.} \\indented{1}{The evaluation of \\spad{f()} is delayed.}")) (|integrate| (($ $ (|Symbol|) |#1|) "\\spad{integrate(s,v,c)} is the integral of \\spad{s} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.}")) (|coerce| (($ (|Polynomial| |#1|)) "\\spad{coerce(s)} regroups terms of \\spad{s} by total degree \\indented{1}{and forms a series.}") (($ (|Symbol|)) "\\spad{coerce(s)} converts a variable to a Taylor series")) (|coefficient| (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{coefficient(s, n)} gives the terms of total degree \\spad{n}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4444 . T) (-4443 . T) (-4446 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))))
-(-1221 |Curve|)
+(-1222 |Curve|)
((|constructor| (NIL "\\indented{2}{Package for constructing tubes around 3-dimensional parametric curves.} Domain of tubes around 3-dimensional parametric curves.")) (|tube| (($ |#1| (|List| (|List| (|Point| (|DoubleFloat|)))) (|Boolean|)) "\\spad{tube(c,ll,b)} creates a tube of the domain \\spadtype{TubePlot} from a space curve \\spad{c} of the category \\spadtype{PlottableSpaceCurveCategory},{} a list of lists of points (loops) \\spad{ll} and a boolean \\spad{b} which if \\spad{true} indicates a closed tube,{} or if \\spad{false} an open tube.")) (|setClosed| (((|Boolean|) $ (|Boolean|)) "\\spad{setClosed(t,b)} declares the given tube plot \\spad{t} to be closed if \\spad{b} is \\spad{true},{} or if \\spad{b} is \\spad{false},{} \\spad{t} is set to be open.")) (|open?| (((|Boolean|) $) "\\spad{open?(t)} tests whether the given tube plot \\spad{t} is open.")) (|closed?| (((|Boolean|) $) "\\spad{closed?(t)} tests whether the given tube plot \\spad{t} is closed.")) (|listLoops| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listLoops(t)} returns the list of lists of points,{} or the 'loops',{} of the given tube plot \\spad{t}.")) (|getCurve| ((|#1| $) "\\spad{getCurve(t)} returns the \\spadtype{PlottableSpaceCurveCategory} representing the parametric curve of the given tube plot \\spad{t}.")))
NIL
NIL
-(-1222)
+(-1223)
((|constructor| (NIL "Tools for constructing tubes around 3-dimensional parametric curves.")) (|loopPoints| (((|List| (|Point| (|DoubleFloat|))) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|List| (|List| (|DoubleFloat|)))) "\\spad{loopPoints(p,n,b,r,lls)} creates and returns a list of points which form the loop with radius \\spad{r},{} around the center point indicated by the point \\spad{p},{} with the principal normal vector of the space curve at point \\spad{p} given by the point(vector) \\spad{n},{} and the binormal vector given by the point(vector) \\spad{b},{} and a list of lists,{} \\spad{lls},{} which is the \\spadfun{cosSinInfo} of the number of points defining the loop.")) (|cosSinInfo| (((|List| (|List| (|DoubleFloat|))) (|Integer|)) "\\spad{cosSinInfo(n)} returns the list of lists of values for \\spad{n},{} in the form: \\spad{[[cos(n - 1) a,sin(n - 1) a],...,[cos 2 a,sin 2 a],[cos a,sin a]]} where \\spad{a = 2 pi/n}. Note: \\spad{n} should be greater than 2.")) (|unitVector| (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{unitVector(p)} creates the unit vector of the point \\spad{p} and returns the result as a point. Note: \\spad{unitVector(p) = p/|p|}.")) (|cross| (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{cross(p,q)} computes the cross product of the two points \\spad{p} and \\spad{q} using only the first three coordinates,{} and keeping the color of the first point \\spad{p}. The result is returned as a point.")) (|dot| (((|DoubleFloat|) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{dot(p,q)} computes the dot product of the two points \\spad{p} and \\spad{q} using only the first three coordinates,{} and returns the resulting \\spadtype{DoubleFloat}.")) (- (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{p - q} computes and returns a point whose coordinates are the differences of the coordinates of two points \\spad{p} and \\spad{q},{} using the color,{} or fourth coordinate,{} of the first point \\spad{p} as the color also of the point \\spad{q}.")) (+ (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{p + q} computes and returns a point whose coordinates are the sums of the coordinates of the two points \\spad{p} and \\spad{q},{} using the color,{} or fourth coordinate,{} of the first point \\spad{p} as the color also of the point \\spad{q}.")) (* (((|Point| (|DoubleFloat|)) (|DoubleFloat|) (|Point| (|DoubleFloat|))) "\\spad{s * p} returns a point whose coordinates are the scalar multiple of the point \\spad{p} by the scalar \\spad{s},{} preserving the color,{} or fourth coordinate,{} of \\spad{p}.")) (|point| (((|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{point(x1,x2,x3,c)} creates and returns a point from the three specified coordinates \\spad{x1},{} \\spad{x2},{} \\spad{x3},{} and also a fourth coordinate,{} \\spad{c},{} which is generally used to specify the color of the point.")))
NIL
NIL
-(-1223 S)
+(-1224 S)
((|constructor| (NIL "\\indented{1}{This domain is used to interface with the interpreter\\spad{'s} notion} of comma-delimited sequences of values.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(x)} returns the number of elements in tuple \\spad{x}")) (|select| ((|#1| $ (|NonNegativeInteger|)) "\\spad{select(x,n)} returns the \\spad{n}-th element of tuple \\spad{x}. tuples are 0-based")))
NIL
((|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))))
-(-1224 -1674)
+(-1225 -1674)
((|constructor| (NIL "A basic package for the factorization of bivariate polynomials over a finite field. The functions here represent the base step for the multivariate factorizer.")) (|twoFactor| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|)) (|Integer|)) "\\spad{twoFactor(p,n)} returns the factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}. Also,{} \\spad{p} is assumed primitive and square-free and \\spad{n} is the degree of the inner variable of \\spad{p} (maximum of the degrees of the coefficients of \\spad{p}).")) (|generalSqFr| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) "\\spad{generalSqFr(p)} returns the square-free factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}.")) (|generalTwoFactor| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) "\\spad{generalTwoFactor(p)} returns the factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}.")))
NIL
NIL
-(-1225)
+(-1226)
((|constructor| (NIL "This domain represents a type AST.")))
NIL
NIL
-(-1226)
+(-1227)
((|constructor| (NIL "The fundamental Type.")))
NIL
NIL
-(-1227 S)
+(-1228 S)
((|constructor| (NIL "Provides functions to force a partial ordering on any set.")) (|more?| (((|Boolean|) |#1| |#1|) "\\spad{more?(a, b)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder,{} and uses the ordering on \\spad{S} if \\spad{a} and \\spad{b} are not comparable in the partial ordering.")) (|userOrdered?| (((|Boolean|)) "\\spad{userOrdered?()} tests if the partial ordering induced by \\spadfunFrom{setOrder}{UserDefinedPartialOrdering} is not empty.")) (|largest| ((|#1| (|List| |#1|)) "\\spad{largest l} returns the largest element of \\spad{l} where the partial ordering induced by setOrder is completed into a total one by the ordering on \\spad{S}.") ((|#1| (|List| |#1|) (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{largest(l, fn)} returns the largest element of \\spad{l} where the partial ordering induced by setOrder is completed into a total one by \\spad{fn}.")) (|less?| (((|Boolean|) |#1| |#1| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{less?(a, b, fn)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder,{} and returns \\spad{fn(a, b)} if \\spad{a} and \\spad{b} are not comparable in that ordering.") (((|Union| (|Boolean|) "failed") |#1| |#1|) "\\spad{less?(a, b)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder.")) (|getOrder| (((|Record| (|:| |low| (|List| |#1|)) (|:| |high| (|List| |#1|)))) "\\spad{getOrder()} returns \\spad{[[b1,...,bm], [a1,...,an]]} such that the partial ordering on \\spad{S} was given by \\spad{setOrder([b1,...,bm],[a1,...,an])}.")) (|setOrder| (((|Void|) (|List| |#1|) (|List| |#1|)) "\\spad{setOrder([b1,...,bm], [a1,...,an])} defines a partial ordering on \\spad{S} given \\spad{by:} \\indented{3}{(1)\\space{2}\\spad{b1 < b2 < ... < bm < a1 < a2 < ... < an}.} \\indented{3}{(2)\\space{2}\\spad{bj < c < ai}\\space{2}for \\spad{c} not among the \\spad{ai}\\spad{'s} and \\spad{bj}\\spad{'s}.} \\indented{3}{(3)\\space{2}undefined on \\spad{(c,d)} if neither is among the \\spad{ai}\\spad{'s},{}\\spad{bj}\\spad{'s}.}") (((|Void|) (|List| |#1|)) "\\spad{setOrder([a1,...,an])} defines a partial ordering on \\spad{S} given \\spad{by:} \\indented{3}{(1)\\space{2}\\spad{a1 < a2 < ... < an}.} \\indented{3}{(2)\\space{2}\\spad{b < ai\\space{3}for i = 1..n} and \\spad{b} not among the \\spad{ai}\\spad{'s}.} \\indented{3}{(3)\\space{2}undefined on \\spad{(b, c)} if neither is among the \\spad{ai}\\spad{'s}.}")))
NIL
((|HasCategory| |#1| (QUOTE (-856))))
-(-1228)
+(-1229)
((|constructor| (NIL "This packages provides functions to allow the user to select the ordering on the variables and operators for displaying polynomials,{} fractions and expressions. The ordering affects the display only and not the computations.")) (|resetVariableOrder| (((|Void|)) "\\spad{resetVariableOrder()} cancels any previous use of setVariableOrder and returns to the default system ordering.")) (|getVariableOrder| (((|Record| (|:| |high| (|List| (|Symbol|))) (|:| |low| (|List| (|Symbol|))))) "\\spad{getVariableOrder()} returns \\spad{[[b1,...,bm], [a1,...,an]]} such that the ordering on the variables was given by \\spad{setVariableOrder([b1,...,bm], [a1,...,an])}.")) (|setVariableOrder| (((|Void|) (|List| (|Symbol|)) (|List| (|Symbol|))) "\\spad{setVariableOrder([b1,...,bm], [a1,...,an])} defines an ordering on the variables given by \\spad{b1 > b2 > ... > bm >} other variables \\spad{> a1 > a2 > ... > an}.") (((|Void|) (|List| (|Symbol|))) "\\spad{setVariableOrder([a1,...,an])} defines an ordering on the variables given by \\spad{a1 > a2 > ... > an > other variables}.")))
NIL
NIL
-(-1229 S)
+(-1230 S)
((|constructor| (NIL "A constructive unique factorization domain,{} \\spadignore{i.e.} where we can constructively factor members into a product of a finite number of irreducible elements.")) (|factor| (((|Factored| $) $) "\\spad{factor(x)} returns the factorization of \\spad{x} into irreducibles.")) (|squareFreePart| (($ $) "\\spad{squareFreePart(x)} returns a product of prime factors of \\spad{x} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns the square-free factorization of \\spad{x} \\spadignore{i.e.} such that the factors are pairwise relatively prime and each has multiple prime factors.")) (|prime?| (((|Boolean|) $) "\\spad{prime?(x)} tests if \\spad{x} can never be written as the product of two non-units of the ring,{} \\spadignore{i.e.} \\spad{x} is an irreducible element.")))
NIL
NIL
-(-1230)
+(-1231)
((|constructor| (NIL "A constructive unique factorization domain,{} \\spadignore{i.e.} where we can constructively factor members into a product of a finite number of irreducible elements.")) (|factor| (((|Factored| $) $) "\\spad{factor(x)} returns the factorization of \\spad{x} into irreducibles.")) (|squareFreePart| (($ $) "\\spad{squareFreePart(x)} returns a product of prime factors of \\spad{x} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns the square-free factorization of \\spad{x} \\spadignore{i.e.} such that the factors are pairwise relatively prime and each has multiple prime factors.")) (|prime?| (((|Boolean|) $) "\\spad{prime?(x)} tests if \\spad{x} can never be written as the product of two non-units of the ring,{} \\spadignore{i.e.} \\spad{x} is an irreducible element.")))
-((-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1231)
+(-1232)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 16 bits.")))
NIL
NIL
-(-1232)
+(-1233)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 32 bits.")))
NIL
NIL
-(-1233)
+(-1234)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 64 bits.")))
NIL
NIL
-(-1234)
+(-1235)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 8 bits.")))
NIL
NIL
-(-1235 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
+(-1236 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
((|constructor| (NIL "Mapping package for univariate Laurent series \\indented{2}{This package allows one to apply a function to the coefficients of} \\indented{2}{a univariate Laurent series.}")) (|map| (((|UnivariateLaurentSeries| |#2| |#4| |#6|) (|Mapping| |#2| |#1|) (|UnivariateLaurentSeries| |#1| |#3| |#5|)) "\\spad{map(f,g(x))} applies the map \\spad{f} to the coefficients of the Laurent series \\spad{g(x)}.")))
NIL
NIL
-(-1236 |Coef|)
+(-1237 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateLaurentSeriesCategory} is the category of Laurent series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 1. We may integrate a series when we can divide coefficients by integers.")) (|rationalFunction| (((|Fraction| (|Polynomial| |#1|)) $ (|Integer|) (|Integer|)) "\\spad{rationalFunction(f,k1,k2)} returns a rational function consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Fraction| (|Polynomial| |#1|)) $ (|Integer|)) "\\spad{rationalFunction(f,k)} returns a rational function consisting of the sum of all terms of \\spad{f} of degree \\spad{<=} \\spad{k}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(f,sum(n = n0..infinity,a[n] * x**n)) = sum(n = 0..infinity,f(n) * a[n] * x**n)}. This function is used when Puiseux series are represented by a Laurent series and an exponent.")) (|series| (($ (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1237 S |Coef| UTS)
+(-1238 S |Coef| UTS)
((|constructor| (NIL "This is a category of univariate Laurent series constructed from univariate Taylor series. A Laurent series is represented by a pair \\spad{[n,f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")) (|taylorIfCan| (((|Union| |#3| "failed") $) "\\spad{taylorIfCan(f(x))} converts the Laurent series \\spad{f(x)} to a Taylor series,{} if possible. If this is not possible,{} \"failed\" is returned.")) (|taylor| ((|#3| $) "\\spad{taylor(f(x))} converts the Laurent series \\spad{f}(\\spad{x}) to a Taylor series,{} if possible. Error: if this is not possible.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,f(x))} removes up to \\spad{n} leading zeroes from the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable.") (($ $) "\\spad{removeZeroes(f(x))} removes leading zeroes from the representation of the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}")) (|taylorRep| ((|#3| $) "\\spad{taylorRep(f(x))} returns \\spad{g(x)},{} where \\spad{f = x**n * g(x)} is represented by \\spad{[n,g(x)]}.")) (|degree| (((|Integer|) $) "\\spad{degree(f(x))} returns the degree of the lowest order term of \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurent| (($ (|Integer|) |#3|) "\\spad{laurent(n,f(x))} returns \\spad{x**n * f(x)}.")))
NIL
((|HasCategory| |#2| (QUOTE (-368))))
-(-1238 |Coef| UTS)
+(-1239 |Coef| UTS)
((|constructor| (NIL "This is a category of univariate Laurent series constructed from univariate Taylor series. A Laurent series is represented by a pair \\spad{[n,f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")) (|taylorIfCan| (((|Union| |#2| "failed") $) "\\spad{taylorIfCan(f(x))} converts the Laurent series \\spad{f(x)} to a Taylor series,{} if possible. If this is not possible,{} \"failed\" is returned.")) (|taylor| ((|#2| $) "\\spad{taylor(f(x))} converts the Laurent series \\spad{f}(\\spad{x}) to a Taylor series,{} if possible. Error: if this is not possible.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,f(x))} removes up to \\spad{n} leading zeroes from the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable.") (($ $) "\\spad{removeZeroes(f(x))} removes leading zeroes from the representation of the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}")) (|taylorRep| ((|#2| $) "\\spad{taylorRep(f(x))} returns \\spad{g(x)},{} where \\spad{f = x**n * g(x)} is represented by \\spad{[n,g(x)]}.")) (|degree| (((|Integer|) $) "\\spad{degree(f(x))} returns the degree of the lowest order term of \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurent| (($ (|Integer|) |#2|) "\\spad{laurent(n,f(x))} returns \\spad{x**n * f(x)}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1239 |Coef| UTS)
+(-1240 |Coef| UTS)
((|constructor| (NIL "This package enables one to construct a univariate Laurent series domain from a univariate Taylor series domain. Univariate Laurent series are represented by a pair \\spad{[n,f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1031)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-146))))) (-2740 (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-148))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1031)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1031)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856)))) (|HasCategory| |#2| (QUOTE (-916))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-551)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-311)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-146))))))
-(-1240 |Coef| |var| |cen|)
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1031)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-146))))) (-2740 (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-148))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1031)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856))))) (-2740 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1031)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -290) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -520) (QUOTE (-1186)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856)))) (|HasCategory| |#2| (QUOTE (-916))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-551)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-311)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-146))))))
+(-1241 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Laurent series in one variable \\indented{2}{\\spadtype{UnivariateLaurentSeries} is a domain representing Laurent} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{UnivariateLaurentSeries(Integer,x,3)} represents Laurent series in} \\indented{2}{\\spad{(x - 3)} with integer coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Laurent series.")))
-(((-4450 "*") -2740 (-1765 (|has| |#1| (-368)) (|has| (-1268 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1765 (|has| |#1| (-368)) (|has| (-1268 |#1| |#2| |#3|) (-916)))) (-4441 -2740 (-1765 (|has| |#1| (-368)) (|has| (-1268 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1765 (|has| |#1| (-368)) (|has| (-1268 |#1| |#2| |#3|) (-916)))) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|)))))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368))))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1268) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-146))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-174)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1268 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))))
-(-1241 ZP)
+(((-4451 "*") -2740 (-1765 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1765 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-916)))) (-4442 -2740 (-1765 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1765 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-916)))) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|)))))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368))))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-1161))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -290) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -313) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -520) (QUOTE (-1186)) (LIST (QUOTE -1269) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-146))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-174)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(-1242 ZP)
((|constructor| (NIL "Package for the factorization of univariate polynomials with integer coefficients. The factorization is done by \"lifting\" (HENSEL) the factorization over a finite field.")) (|henselFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|)) "\\spad{henselFact(m,flag)} returns the factorization of \\spad{m},{} FinalFact is a Record \\spad{s}.\\spad{t}. FinalFact.contp=content \\spad{m},{} FinalFact.factors=List of irreducible factors of \\spad{m} with exponent ,{} if \\spad{flag} =true the polynomial is assumed square free.")) (|factorSquareFree| (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(m)} returns the factorization of \\spad{m} square free polynomial")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(m)} returns the factorization of \\spad{m}")))
NIL
NIL
-(-1242 R S)
+(-1243 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto segments.")) (|map| (((|Stream| |#2|) (|Mapping| |#2| |#1|) (|UniversalSegment| |#1|)) "\\spad{map(f,s)} expands the segment \\spad{s},{} applying \\spad{f} to each value.") (((|UniversalSegment| |#2|) (|Mapping| |#2| |#1|) (|UniversalSegment| |#1|)) "\\spad{map(f,seg)} returns the new segment obtained by applying \\spad{f} to the endpoints of \\spad{seg}.")))
NIL
((|HasCategory| |#1| (QUOTE (-854))))
-(-1243 S)
+(-1244 S)
((|constructor| (NIL "This domain provides segments which may be half open. That is,{} ranges of the form \\spad{a..} or \\spad{a..b}.")) (|hasHi| (((|Boolean|) $) "\\spad{hasHi(s)} tests whether the segment \\spad{s} has an upper bound.")) (|coerce| (($ (|Segment| |#1|)) "\\spad{coerce(x)} allows \\spadtype{Segment} values to be used as \\%.")) (|segment| (($ |#1|) "\\spad{segment(l)} is an alternate way to construct the segment \\spad{l..}.")) (SEGMENT (($ |#1|) "\\spad{l..} produces a half open segment,{} that is,{} one with no upper bound.")))
NIL
((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-1109))))
-(-1244 |x| R |y| S)
+(-1245 |x| R |y| S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from \\spadtype{UnivariatePolynomial}(\\spad{x},{}\\spad{R}) to \\spadtype{UnivariatePolynomial}(\\spad{y},{}\\spad{S}). Note that the mapping is assumed to send zero to zero,{} since it will only be applied to the non-zero coefficients of the polynomial.")) (|map| (((|UnivariatePolynomial| |#3| |#4|) (|Mapping| |#4| |#2|) (|UnivariatePolynomial| |#1| |#2|)) "\\spad{map(func, poly)} creates a new polynomial by applying \\spad{func} to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
-(-1245 R Q UP)
+(-1246 R Q UP)
((|constructor| (NIL "UnivariatePolynomialCommonDenominator provides functions to compute the common denominator of the coefficients of univariate polynomials over the quotient field of a \\spad{gcd} domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) "\\spad{splitDenominator(q)} returns \\spad{[p, d]} such that \\spad{q = p/d} and \\spad{d} is a common denominator for the coefficients of \\spad{q}.")) (|clearDenominator| ((|#3| |#3|) "\\spad{clearDenominator(q)} returns \\spad{p} such that \\spad{q = p/d} where \\spad{d} is a common denominator for the coefficients of \\spad{q}.")) (|commonDenominator| ((|#1| |#3|) "\\spad{commonDenominator(q)} returns a common denominator \\spad{d} for the coefficients of \\spad{q}.")))
NIL
NIL
-(-1246 R UP)
+(-1247 R UP)
((|constructor| (NIL "UnivariatePolynomialDecompositionPackage implements functional decomposition of univariate polynomial with coefficients in an \\spad{IntegralDomain} of \\spad{CharacteristicZero}.")) (|monicCompleteDecompose| (((|List| |#2|) |#2|) "\\spad{monicCompleteDecompose(f)} returns a list of factors of \\spad{f} for the functional decomposition ([ \\spad{f1},{} ...,{} \\spad{fn} ] means \\spad{f} = \\spad{f1} \\spad{o} ... \\spad{o} \\spad{fn}).")) (|monicDecomposeIfCan| (((|Union| (|Record| (|:| |left| |#2|) (|:| |right| |#2|)) "failed") |#2|) "\\spad{monicDecomposeIfCan(f)} returns a functional decomposition of the monic polynomial \\spad{f} of \"failed\" if it has not found any.")) (|leftFactorIfCan| (((|Union| |#2| "failed") |#2| |#2|) "\\spad{leftFactorIfCan(f,h)} returns the left factor (\\spad{g} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of the functional decomposition of the polynomial \\spad{f} with given \\spad{h} or \\spad{\"failed\"} if \\spad{g} does not exist.")) (|rightFactorIfCan| (((|Union| |#2| "failed") |#2| (|NonNegativeInteger|) |#1|) "\\spad{rightFactorIfCan(f,d,c)} returns a candidate to be the right factor (\\spad{h} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of degree \\spad{d} with leading coefficient \\spad{c} of a functional decomposition of the polynomial \\spad{f} or \\spad{\"failed\"} if no such candidate.")) (|monicRightFactorIfCan| (((|Union| |#2| "failed") |#2| (|NonNegativeInteger|)) "\\spad{monicRightFactorIfCan(f,d)} returns a candidate to be the monic right factor (\\spad{h} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of degree \\spad{d} of a functional decomposition of the polynomial \\spad{f} or \\spad{\"failed\"} if no such candidate.")))
NIL
NIL
-(-1247 R UP)
+(-1248 R UP)
((|constructor| (NIL "UnivariatePolynomialDivisionPackage provides a division for non monic univarite polynomials with coefficients in an \\spad{IntegralDomain}.")) (|divideIfCan| (((|Union| (|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) "failed") |#2| |#2|) "\\spad{divideIfCan(f,g)} returns quotient and remainder of the division of \\spad{f} by \\spad{g} or \"failed\" if it has not succeeded.")))
NIL
NIL
-(-1248 R U)
+(-1249 R U)
((|constructor| (NIL "This package implements Karatsuba\\spad{'s} trick for multiplying (large) univariate polynomials. It could be improved with a version doing the work on place and also with a special case for squares. We've done this in Basicmath,{} but we believe that this out of the scope of AXIOM.")) (|karatsuba| ((|#2| |#2| |#2| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{karatsuba(a,b,l,k)} returns \\spad{a*b} by applying Karatsuba\\spad{'s} trick provided that both \\spad{a} and \\spad{b} have at least \\spad{l} terms and \\spad{k > 0} holds and by calling \\spad{noKaratsuba} otherwise. The other multiplications are performed by recursive calls with the same third argument and \\spad{k-1} as fourth argument.")) (|karatsubaOnce| ((|#2| |#2| |#2|) "\\spad{karatsuba(a,b)} returns \\spad{a*b} by applying Karatsuba\\spad{'s} trick once. The other multiplications are performed by calling \\spad{*} from \\spad{U}.")) (|noKaratsuba| ((|#2| |#2| |#2|) "\\spad{noKaratsuba(a,b)} returns \\spad{a*b} without using Karatsuba\\spad{'s} trick at all.")))
NIL
NIL
-(-1249 |x| R)
+(-1250 |x| R)
((|constructor| (NIL "This domain represents univariate polynomials in some symbol over arbitrary (not necessarily commutative) coefficient rings. The representation is sparse in the sense that only non-zero terms are represented.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#2| $) "\\spad{fmecg(p1,e,r,p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")))
-(((-4450 "*") |has| |#2| (-174)) (-4441 |has| |#2| (-562)) (-4444 |has| |#2| (-368)) (-4446 |has| |#2| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE -4446)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
-(-1250 R PR S PS)
+(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4445 |has| |#2| (-368)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-562)))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-384)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-384))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -893) (QUOTE (-570))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-384)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570)))))) (-12 (|HasCategory| (-1091) (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-148))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2740 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2740 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1161))) (|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE -4447)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2740 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(-1251 R PR S PS)
((|constructor| (NIL "Mapping from polynomials over \\spad{R} to polynomials over \\spad{S} given a map from \\spad{R} to \\spad{S} assumed to send zero to zero.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f, p)} takes a function \\spad{f} from \\spad{R} to \\spad{S},{} and applies it to each (non-zero) coefficient of a polynomial \\spad{p} over \\spad{R},{} getting a new polynomial over \\spad{S}. Note: since the map is not applied to zero elements,{} it may map zero to zero.")))
NIL
NIL
-(-1251 S R)
+(-1252 S R)
((|constructor| (NIL "The category of univariate polynomials over a ring \\spad{R}. No particular model is assumed - implementations can be either sparse or dense.")) (|integrate| (($ $) "\\spad{integrate(p)} integrates the univariate polynomial \\spad{p} with respect to its distinguished variable.")) (|additiveValuation| ((|attribute|) "euclideanSize(a*b) = euclideanSize(a) + euclideanSize(\\spad{b})")) (|separate| (((|Record| (|:| |primePart| $) (|:| |commonPart| $)) $ $) "\\spad{separate(p, q)} returns \\spad{[a, b]} such that polynomial \\spad{p = a b} and \\spad{a} is relatively prime to \\spad{q}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#2|) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{pseudoDivide(p,q)} returns \\spad{[c, q, r]},{} when \\spad{p' := p*lc(q)**(deg p - deg q + 1) = c * p} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|pseudoQuotient| (($ $ $) "\\spad{pseudoQuotient(p,q)} returns \\spad{r},{} the quotient when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|composite| (((|Union| (|Fraction| $) "failed") (|Fraction| $) $) "\\spad{composite(f, q)} returns \\spad{h} if \\spad{f} = \\spad{h}(\\spad{q}),{} and \"failed\" is no such \\spad{h} exists.") (((|Union| $ "failed") $ $) "\\spad{composite(p, q)} returns \\spad{h} if \\spad{p = h(q)},{} and \"failed\" no such \\spad{h} exists.")) (|subResultantGcd| (($ $ $) "\\spad{subResultantGcd(p,q)} computes the \\spad{gcd} of the polynomials \\spad{p} and \\spad{q} using the SubResultant \\spad{GCD} algorithm.")) (|order| (((|NonNegativeInteger|) $ $) "\\spad{order(p, q)} returns the largest \\spad{n} such that \\spad{q**n} divides polynomial \\spad{p} \\spadignore{i.e.} the order of \\spad{p(x)} at \\spad{q(x)=0}.")) (|elt| ((|#2| (|Fraction| $) |#2|) "\\spad{elt(a,r)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by the constant \\spad{r}.") (((|Fraction| $) (|Fraction| $) (|Fraction| $)) "\\spad{elt(a,b)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by \\spad{b}.")) (|resultant| ((|#2| $ $) "\\spad{resultant(p,q)} returns the resultant of the polynomials \\spad{p} and \\spad{q}.")) (|discriminant| ((|#2| $) "\\spad{discriminant(p)} returns the discriminant of the polynomial \\spad{p}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|) $) "\\spad{differentiate(p, d, x')} extends the \\spad{R}-derivation \\spad{d} to an extension \\spad{D} in \\spad{R[x]} where \\spad{Dx} is given by \\spad{x'},{} and returns \\spad{Dp}.")) (|pseudoRemainder| (($ $ $) "\\spad{pseudoRemainder(p,q)} = \\spad{r},{} for polynomials \\spad{p} and \\spad{q},{} returns the remainder when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|shiftLeft| (($ $ (|NonNegativeInteger|)) "\\spad{shiftLeft(p,n)} returns \\spad{p * monomial(1,n)}")) (|shiftRight| (($ $ (|NonNegativeInteger|)) "\\spad{shiftRight(p,n)} returns \\spad{monicDivide(p,monomial(1,n)).quotient}")) (|karatsubaDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ (|NonNegativeInteger|)) "\\spad{karatsubaDivide(p,n)} returns the same as \\spad{monicDivide(p,monomial(1,n))}")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicDivide(p,q)} divide the polynomial \\spad{p} by the monic polynomial \\spad{q},{} returning the pair \\spad{[quotient, remainder]}. Error: if \\spad{q} isn\\spad{'t} monic.")) (|divideExponents| (((|Union| $ "failed") $ (|NonNegativeInteger|)) "\\spad{divideExponents(p,n)} returns a new polynomial resulting from dividing all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n},{} or \"failed\" if some exponent is not exactly divisible by \\spad{n}.")) (|multiplyExponents| (($ $ (|NonNegativeInteger|)) "\\spad{multiplyExponents(p,n)} returns a new polynomial resulting from multiplying all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n}.")) (|unmakeSUP| (($ (|SparseUnivariatePolynomial| |#2|)) "\\spad{unmakeSUP(sup)} converts \\spad{sup} of type \\spadtype{SparseUnivariatePolynomial(R)} to be a member of the given type. Note: converse of makeSUP.")) (|makeSUP| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{makeSUP(p)} converts the polynomial \\spad{p} to be of type SparseUnivariatePolynomial over the same coefficients.")) (|vectorise| (((|Vector| |#2|) $ (|NonNegativeInteger|)) "\\spad{vectorise(p, n)} returns \\spad{[a0,...,a(n-1)]} where \\spad{p = a0 + a1*x + ... + a(n-1)*x**(n-1)} + higher order terms. The degree of polynomial \\spad{p} can be different from \\spad{n-1}.")))
NIL
((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-1161))))
-(-1252 R)
+(-1253 R)
((|constructor| (NIL "The category of univariate polynomials over a ring \\spad{R}. No particular model is assumed - implementations can be either sparse or dense.")) (|integrate| (($ $) "\\spad{integrate(p)} integrates the univariate polynomial \\spad{p} with respect to its distinguished variable.")) (|additiveValuation| ((|attribute|) "euclideanSize(a*b) = euclideanSize(a) + euclideanSize(\\spad{b})")) (|separate| (((|Record| (|:| |primePart| $) (|:| |commonPart| $)) $ $) "\\spad{separate(p, q)} returns \\spad{[a, b]} such that polynomial \\spad{p = a b} and \\spad{a} is relatively prime to \\spad{q}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{pseudoDivide(p,q)} returns \\spad{[c, q, r]},{} when \\spad{p' := p*lc(q)**(deg p - deg q + 1) = c * p} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|pseudoQuotient| (($ $ $) "\\spad{pseudoQuotient(p,q)} returns \\spad{r},{} the quotient when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|composite| (((|Union| (|Fraction| $) "failed") (|Fraction| $) $) "\\spad{composite(f, q)} returns \\spad{h} if \\spad{f} = \\spad{h}(\\spad{q}),{} and \"failed\" is no such \\spad{h} exists.") (((|Union| $ "failed") $ $) "\\spad{composite(p, q)} returns \\spad{h} if \\spad{p = h(q)},{} and \"failed\" no such \\spad{h} exists.")) (|subResultantGcd| (($ $ $) "\\spad{subResultantGcd(p,q)} computes the \\spad{gcd} of the polynomials \\spad{p} and \\spad{q} using the SubResultant \\spad{GCD} algorithm.")) (|order| (((|NonNegativeInteger|) $ $) "\\spad{order(p, q)} returns the largest \\spad{n} such that \\spad{q**n} divides polynomial \\spad{p} \\spadignore{i.e.} the order of \\spad{p(x)} at \\spad{q(x)=0}.")) (|elt| ((|#1| (|Fraction| $) |#1|) "\\spad{elt(a,r)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by the constant \\spad{r}.") (((|Fraction| $) (|Fraction| $) (|Fraction| $)) "\\spad{elt(a,b)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by \\spad{b}.")) (|resultant| ((|#1| $ $) "\\spad{resultant(p,q)} returns the resultant of the polynomials \\spad{p} and \\spad{q}.")) (|discriminant| ((|#1| $) "\\spad{discriminant(p)} returns the discriminant of the polynomial \\spad{p}.")) (|differentiate| (($ $ (|Mapping| |#1| |#1|) $) "\\spad{differentiate(p, d, x')} extends the \\spad{R}-derivation \\spad{d} to an extension \\spad{D} in \\spad{R[x]} where \\spad{Dx} is given by \\spad{x'},{} and returns \\spad{Dp}.")) (|pseudoRemainder| (($ $ $) "\\spad{pseudoRemainder(p,q)} = \\spad{r},{} for polynomials \\spad{p} and \\spad{q},{} returns the remainder when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|shiftLeft| (($ $ (|NonNegativeInteger|)) "\\spad{shiftLeft(p,n)} returns \\spad{p * monomial(1,n)}")) (|shiftRight| (($ $ (|NonNegativeInteger|)) "\\spad{shiftRight(p,n)} returns \\spad{monicDivide(p,monomial(1,n)).quotient}")) (|karatsubaDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ (|NonNegativeInteger|)) "\\spad{karatsubaDivide(p,n)} returns the same as \\spad{monicDivide(p,monomial(1,n))}")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicDivide(p,q)} divide the polynomial \\spad{p} by the monic polynomial \\spad{q},{} returning the pair \\spad{[quotient, remainder]}. Error: if \\spad{q} isn\\spad{'t} monic.")) (|divideExponents| (((|Union| $ "failed") $ (|NonNegativeInteger|)) "\\spad{divideExponents(p,n)} returns a new polynomial resulting from dividing all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n},{} or \"failed\" if some exponent is not exactly divisible by \\spad{n}.")) (|multiplyExponents| (($ $ (|NonNegativeInteger|)) "\\spad{multiplyExponents(p,n)} returns a new polynomial resulting from multiplying all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n}.")) (|unmakeSUP| (($ (|SparseUnivariatePolynomial| |#1|)) "\\spad{unmakeSUP(sup)} converts \\spad{sup} of type \\spadtype{SparseUnivariatePolynomial(R)} to be a member of the given type. Note: converse of makeSUP.")) (|makeSUP| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{makeSUP(p)} converts the polynomial \\spad{p} to be of type SparseUnivariatePolynomial over the same coefficients.")) (|vectorise| (((|Vector| |#1|) $ (|NonNegativeInteger|)) "\\spad{vectorise(p, n)} returns \\spad{[a0,...,a(n-1)]} where \\spad{p = a0 + a1*x + ... + a(n-1)*x**(n-1)} + higher order terms. The degree of polynomial \\spad{p} can be different from \\spad{n-1}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4444 |has| |#1| (-368)) (-4446 |has| |#1| (-6 -4446)) (-4443 . T) (-4442 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4445 |has| |#1| (-368)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
-(-1253 S |Coef| |Expon|)
+(-1254 S |Coef| |Expon|)
((|constructor| (NIL "\\spadtype{UnivariatePowerSeriesCategory} is the most general univariate power series category with exponents in an ordered abelian monoid. Note: this category exports a substitution function if it is possible to multiply exponents. Note: this category exports a derivative operation if it is possible to multiply coefficients by exponents.")) (|eval| (((|Stream| |#2|) $ |#2|) "\\spad{eval(f,a)} evaluates a power series at a value in the ground ring by returning a stream of partial sums.")) (|extend| (($ $ |#3|) "\\spad{extend(f,n)} causes all terms of \\spad{f} of degree \\spad{<=} \\spad{n} to be computed.")) (|approximate| ((|#2| $ |#3|) "\\spad{approximate(f)} returns a truncated power series with the series variable viewed as an element of the coefficient domain.")) (|truncate| (($ $ |#3| |#3|) "\\spad{truncate(f,k1,k2)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (($ $ |#3|) "\\spad{truncate(f,k)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| ((|#3| $ |#3|) "\\spad{order(f,n) = min(m,n)},{} where \\spad{m} is the degree of the lowest order non-zero term in \\spad{f}.") ((|#3| $) "\\spad{order(f)} is the degree of the lowest order non-zero term in \\spad{f}. This will result in an infinite loop if \\spad{f} has no non-zero terms.")) (|multiplyExponents| (($ $ (|PositiveInteger|)) "\\spad{multiplyExponents(f,n)} multiplies all exponents of the power series \\spad{f} by the positive integer \\spad{n}.")) (|center| ((|#2| $) "\\spad{center(f)} returns the point about which the series \\spad{f} is expanded.")) (|variable| (((|Symbol|) $) "\\spad{variable(f)} returns the (unique) power series variable of the power series \\spad{f}.")) (|elt| ((|#2| $ |#3|) "\\spad{elt(f(x),r)} returns the coefficient of the term of degree \\spad{r} in \\spad{f(x)}. This is the same as the function \\spadfun{coefficient}.")) (|terms| (((|Stream| (|Record| (|:| |k| |#3|) (|:| |c| |#2|))) $) "\\spad{terms(f(x))} returns a stream of non-zero terms,{} where a a term is an exponent-coefficient pair. The terms in the stream are ordered by increasing order of exponents.")))
NIL
((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1121))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -3735) (LIST (|devaluate| |#2|) (QUOTE (-1186))))))
-(-1254 |Coef| |Expon|)
+(-1255 |Coef| |Expon|)
((|constructor| (NIL "\\spadtype{UnivariatePowerSeriesCategory} is the most general univariate power series category with exponents in an ordered abelian monoid. Note: this category exports a substitution function if it is possible to multiply exponents. Note: this category exports a derivative operation if it is possible to multiply coefficients by exponents.")) (|eval| (((|Stream| |#1|) $ |#1|) "\\spad{eval(f,a)} evaluates a power series at a value in the ground ring by returning a stream of partial sums.")) (|extend| (($ $ |#2|) "\\spad{extend(f,n)} causes all terms of \\spad{f} of degree \\spad{<=} \\spad{n} to be computed.")) (|approximate| ((|#1| $ |#2|) "\\spad{approximate(f)} returns a truncated power series with the series variable viewed as an element of the coefficient domain.")) (|truncate| (($ $ |#2| |#2|) "\\spad{truncate(f,k1,k2)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (($ $ |#2|) "\\spad{truncate(f,k)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| ((|#2| $ |#2|) "\\spad{order(f,n) = min(m,n)},{} where \\spad{m} is the degree of the lowest order non-zero term in \\spad{f}.") ((|#2| $) "\\spad{order(f)} is the degree of the lowest order non-zero term in \\spad{f}. This will result in an infinite loop if \\spad{f} has no non-zero terms.")) (|multiplyExponents| (($ $ (|PositiveInteger|)) "\\spad{multiplyExponents(f,n)} multiplies all exponents of the power series \\spad{f} by the positive integer \\spad{n}.")) (|center| ((|#1| $) "\\spad{center(f)} returns the point about which the series \\spad{f} is expanded.")) (|variable| (((|Symbol|) $) "\\spad{variable(f)} returns the (unique) power series variable of the power series \\spad{f}.")) (|elt| ((|#1| $ |#2|) "\\spad{elt(f(x),r)} returns the coefficient of the term of degree \\spad{r} in \\spad{f(x)}. This is the same as the function \\spadfun{coefficient}.")) (|terms| (((|Stream| (|Record| (|:| |k| |#2|) (|:| |c| |#1|))) $) "\\spad{terms(f(x))} returns a stream of non-zero terms,{} where a a term is an exponent-coefficient pair. The terms in the stream are ordered by increasing order of exponents.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1255 RC P)
+(-1256 RC P)
((|constructor| (NIL "This package provides for square-free decomposition of univariate polynomials over arbitrary rings,{} \\spadignore{i.e.} a partial factorization such that each factor is a product of irreducibles with multiplicity one and the factors are pairwise relatively prime. If the ring has characteristic zero,{} the result is guaranteed to satisfy this condition. If the ring is an infinite ring of finite characteristic,{} then it may not be possible to decide when polynomials contain factors which are \\spad{p}th powers. In this case,{} the flag associated with that polynomial is set to \"nil\" (meaning that that polynomials are not guaranteed to be square-free).")) (|BumInSepFFE| (((|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (|Integer|))) (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (|Integer|)))) "\\spad{BumInSepFFE(f)} is a local function,{} exported only because it has multiple conditional definitions.")) (|squareFreePart| ((|#2| |#2|) "\\spad{squareFreePart(p)} returns a polynomial which has the same irreducible factors as the univariate polynomial \\spad{p},{} but each factor has multiplicity one.")) (|squareFree| (((|Factored| |#2|) |#2|) "\\spad{squareFree(p)} computes the square-free factorization of the univariate polynomial \\spad{p}. Each factor has no repeated roots,{} and the factors are pairwise relatively prime.")) (|gcd| (($ $ $) "\\spad{gcd(p,q)} computes the greatest-common-divisor of \\spad{p} and \\spad{q}.")))
NIL
NIL
-(-1256 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
+(-1257 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
((|constructor| (NIL "Mapping package for univariate Puiseux series. This package allows one to apply a function to the coefficients of a univariate Puiseux series.")) (|map| (((|UnivariatePuiseuxSeries| |#2| |#4| |#6|) (|Mapping| |#2| |#1|) (|UnivariatePuiseuxSeries| |#1| |#3| |#5|)) "\\spad{map(f,g(x))} applies the map \\spad{f} to the coefficients of the Puiseux series \\spad{g(x)}.")))
NIL
NIL
-(-1257 |Coef|)
+(-1258 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariatePuiseuxSeriesCategory} is the category of Puiseux series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),var)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{var}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 1. We may integrate a series when we can divide coefficients by rational numbers.")) (|multiplyExponents| (($ $ (|Fraction| (|Integer|))) "\\spad{multiplyExponents(f,r)} multiplies all exponents of the power series \\spad{f} by the positive rational number \\spad{r}.")) (|series| (($ (|NonNegativeInteger|) (|Stream| (|Record| (|:| |k| (|Fraction| (|Integer|))) (|:| |c| |#1|)))) "\\spad{series(n,st)} creates a series from a common denomiator and a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents and \\spad{n} should be a common denominator for the exponents in the stream of terms.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1258 S |Coef| ULS)
+(-1259 S |Coef| ULS)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")) (|laurentIfCan| (((|Union| |#3| "failed") $) "\\spad{laurentIfCan(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. If this is not possible,{} \"failed\" is returned.")) (|laurent| ((|#3| $) "\\spad{laurent(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. Error: if this is not possible.")) (|degree| (((|Fraction| (|Integer|)) $) "\\spad{degree(f(x))} returns the degree of the leading term of the Puiseux series \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurentRep| ((|#3| $) "\\spad{laurentRep(f(x))} returns \\spad{g(x)} where the Puiseux series \\spad{f(x) = g(x^r)} is represented by \\spad{[r,g(x)]}.")) (|rationalPower| (((|Fraction| (|Integer|)) $) "\\spad{rationalPower(f(x))} returns \\spad{r} where the Puiseux series \\spad{f(x) = g(x^r)}.")) (|puiseux| (($ (|Fraction| (|Integer|)) |#3|) "\\spad{puiseux(r,f(x))} returns \\spad{f(x^r)}.")))
NIL
NIL
-(-1259 |Coef| ULS)
+(-1260 |Coef| ULS)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")) (|laurentIfCan| (((|Union| |#2| "failed") $) "\\spad{laurentIfCan(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. If this is not possible,{} \"failed\" is returned.")) (|laurent| ((|#2| $) "\\spad{laurent(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. Error: if this is not possible.")) (|degree| (((|Fraction| (|Integer|)) $) "\\spad{degree(f(x))} returns the degree of the leading term of the Puiseux series \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurentRep| ((|#2| $) "\\spad{laurentRep(f(x))} returns \\spad{g(x)} where the Puiseux series \\spad{f(x) = g(x^r)} is represented by \\spad{[r,g(x)]}.")) (|rationalPower| (((|Fraction| (|Integer|)) $) "\\spad{rationalPower(f(x))} returns \\spad{r} where the Puiseux series \\spad{f(x) = g(x^r)}.")) (|puiseux| (($ (|Fraction| (|Integer|)) |#2|) "\\spad{puiseux(r,f(x))} returns \\spad{f(x^r)}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1260 |Coef| ULS)
+(-1261 |Coef| ULS)
((|constructor| (NIL "This package enables one to construct a univariate Puiseux series domain from a univariate Laurent series domain. Univariate Puiseux series are represented by a pair \\spad{[r,f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))
-(-1261 |Coef| |var| |cen|)
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))
+(-1262 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Puiseux series in one variable \\indented{2}{\\spadtype{UnivariatePuiseuxSeries} is a domain representing Puiseux} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{UnivariatePuiseuxSeries(Integer,x,3)} represents Puiseux series in} \\indented{2}{\\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4446 |has| |#1| (-368)) (-4440 |has| |#1| (-368)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
-(-1262 R FE |var| |cen|)
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570))) (|devaluate| |#1|)))) (|HasCategory| (-413 (-570)) (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2740 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(-1263 R FE |var| |cen|)
((|constructor| (NIL "UnivariatePuiseuxSeriesWithExponentialSingularity is a domain used to represent functions with essential singularities. Objects in this domain are sums,{} where each term in the sum is a univariate Puiseux series times the exponential of a univariate Puiseux series. Thus,{} the elements of this domain are sums of expressions of the form \\spad{g(x) * exp(f(x))},{} where \\spad{g}(\\spad{x}) is a univariate Puiseux series and \\spad{f}(\\spad{x}) is a univariate Puiseux series with no terms of non-negative degree.")) (|dominantTerm| (((|Union| (|Record| (|:| |%term| (|Record| (|:| |%coef| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) (|:| |%expon| (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) (|:| |%expTerms| (|List| (|Record| (|:| |k| (|Fraction| (|Integer|))) (|:| |c| |#2|)))))) (|:| |%type| (|String|))) "failed") $) "\\spad{dominantTerm(f(var))} returns the term that dominates the limiting behavior of \\spad{f(var)} as \\spad{var -> cen+} together with a \\spadtype{String} which briefly describes that behavior. The value of the \\spadtype{String} will be \\spad{\"zero\"} (resp. \\spad{\"infinity\"}) if the term tends to zero (resp. infinity) exponentially and will \\spad{\"series\"} if the term is a Puiseux series.")) (|limitPlus| (((|Union| (|OrderedCompletion| |#2|) "failed") $) "\\spad{limitPlus(f(var))} returns \\spad{limit(var -> cen+,f(var))}.")))
-(((-4450 "*") |has| (-1261 |#2| |#3| |#4|) (-174)) (-4441 |has| (-1261 |#2| |#3| |#4|) (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| (-1261 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1261 |#2| |#3| |#4|) (QUOTE (-146))) (|HasCategory| (-1261 |#2| |#3| |#4|) (QUOTE (-148))) (|HasCategory| (-1261 |#2| |#3| |#4|) (QUOTE (-174))) (-2740 (|HasCategory| (-1261 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1261 |#2| |#3| |#4|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| (-1261 |#2| |#3| |#4|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1261 |#2| |#3| |#4|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-1261 |#2| |#3| |#4|) (QUOTE (-368))) (|HasCategory| (-1261 |#2| |#3| |#4|) (QUOTE (-458))) (|HasCategory| (-1261 |#2| |#3| |#4|) (QUOTE (-562))))
-(-1263 A S)
+(((-4451 "*") |has| (-1262 |#2| |#3| |#4|) (-174)) (-4442 |has| (-1262 |#2| |#3| |#4|) (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| (-1262 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1262 |#2| |#3| |#4|) (QUOTE (-146))) (|HasCategory| (-1262 |#2| |#3| |#4|) (QUOTE (-148))) (|HasCategory| (-1262 |#2| |#3| |#4|) (QUOTE (-174))) (-2740 (|HasCategory| (-1262 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1262 |#2| |#3| |#4|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (|HasCategory| (-1262 |#2| |#3| |#4|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| (-1262 |#2| |#3| |#4|) (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| (-1262 |#2| |#3| |#4|) (QUOTE (-368))) (|HasCategory| (-1262 |#2| |#3| |#4|) (QUOTE (-458))) (|HasCategory| (-1262 |#2| |#3| |#4|) (QUOTE (-562))))
+(-1264 A S)
((|constructor| (NIL "A unary-recursive aggregate is a one where nodes may have either 0 or 1 children. This aggregate models,{} though not precisely,{} a linked list possibly with a single cycle. A node with one children models a non-empty list,{} with the \\spadfun{value} of the list designating the head,{} or \\spadfun{first},{} of the list,{} and the child designating the tail,{} or \\spadfun{rest},{} of the list. A node with no child then designates the empty list. Since these aggregates are recursive aggregates,{} they may be cyclic.")) (|split!| (($ $ (|Integer|)) "\\spad{split!(u,n)} splits \\spad{u} into two aggregates: \\axiom{\\spad{v} = rest(\\spad{u},{}\\spad{n})} and \\axiom{\\spad{w} = first(\\spad{u},{}\\spad{n})},{} returning \\axiom{\\spad{v}}. Note: afterwards \\axiom{rest(\\spad{u},{}\\spad{n})} returns \\axiom{empty()}.")) (|setlast!| ((|#2| $ |#2|) "\\spad{setlast!(u,x)} destructively changes the last element of \\spad{u} to \\spad{x}.")) (|setrest!| (($ $ $) "\\spad{setrest!(u,v)} destructively changes the rest of \\spad{u} to \\spad{v}.")) (|setelt| ((|#2| $ "last" |#2|) "\\spad{setelt(u,\"last\",x)} (also written: \\axiom{\\spad{u}.last \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setlast!(\\spad{u},{}\\spad{v})}.") (($ $ "rest" $) "\\spad{setelt(u,\"rest\",v)} (also written: \\axiom{\\spad{u}.rest \\spad{:=} \\spad{v}}) is equivalent to \\axiom{setrest!(\\spad{u},{}\\spad{v})}.") ((|#2| $ "first" |#2|) "\\spad{setelt(u,\"first\",x)} (also written: \\axiom{\\spad{u}.first \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setfirst!(\\spad{u},{}\\spad{x})}.")) (|setfirst!| ((|#2| $ |#2|) "\\spad{setfirst!(u,x)} destructively changes the first element of a to \\spad{x}.")) (|cycleSplit!| (($ $) "\\spad{cycleSplit!(u)} splits the aggregate by dropping off the cycle. The value returned is the cycle entry,{} or nil if none exists. For example,{} if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} is the cyclic list where \\spad{v} is the head of the cycle,{} \\axiom{cycleSplit!(\\spad{w})} will drop \\spad{v} off \\spad{w} thus destructively changing \\spad{w} to \\spad{u},{} and returning \\spad{v}.")) (|concat!| (($ $ |#2|) "\\spad{concat!(u,x)} destructively adds element \\spad{x} to the end of \\spad{u}. Note: \\axiom{concat!(a,{}\\spad{x}) = setlast!(a,{}[\\spad{x}])}.") (($ $ $) "\\spad{concat!(u,v)} destructively concatenates \\spad{v} to the end of \\spad{u}. Note: \\axiom{concat!(\\spad{u},{}\\spad{v}) = setlast!(\\spad{u},{}\\spad{v})}.")) (|cycleTail| (($ $) "\\spad{cycleTail(u)} returns the last node in the cycle,{} or empty if none exists.")) (|cycleLength| (((|NonNegativeInteger|) $) "\\spad{cycleLength(u)} returns the length of a top-level cycle contained in aggregate \\spad{u},{} or 0 is \\spad{u} has no such cycle.")) (|cycleEntry| (($ $) "\\spad{cycleEntry(u)} returns the head of a top-level cycle contained in aggregate \\spad{u},{} or \\axiom{empty()} if none exists.")) (|third| ((|#2| $) "\\spad{third(u)} returns the third element of \\spad{u}. Note: \\axiom{third(\\spad{u}) = first(rest(rest(\\spad{u})))}.")) (|second| ((|#2| $) "\\spad{second(u)} returns the second element of \\spad{u}. Note: \\axiom{second(\\spad{u}) = first(rest(\\spad{u}))}.")) (|tail| (($ $) "\\spad{tail(u)} returns the last node of \\spad{u}. Note: if \\spad{u} is \\axiom{shallowlyMutable},{} \\axiom{setrest(tail(\\spad{u}),{}\\spad{v}) = concat(\\spad{u},{}\\spad{v})}.")) (|last| (($ $ (|NonNegativeInteger|)) "\\spad{last(u,n)} returns a copy of the last \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) nodes of \\spad{u}. Note: \\axiom{last(\\spad{u},{}\\spad{n})} is a list of \\spad{n} elements.") ((|#2| $) "\\spad{last(u)} resturn the last element of \\spad{u}. Note: for lists,{} \\axiom{last(\\spad{u}) = \\spad{u} . (maxIndex \\spad{u}) = \\spad{u} . (\\# \\spad{u} - 1)}.")) (|rest| (($ $ (|NonNegativeInteger|)) "\\spad{rest(u,n)} returns the \\axiom{\\spad{n}}th (\\spad{n} \\spad{>=} 0) node of \\spad{u}. Note: \\axiom{rest(\\spad{u},{}0) = \\spad{u}}.") (($ $) "\\spad{rest(u)} returns an aggregate consisting of all but the first element of \\spad{u} (equivalently,{} the next node of \\spad{u}).")) (|elt| ((|#2| $ "last") "\\spad{elt(u,\"last\")} (also written: \\axiom{\\spad{u} . last}) is equivalent to last \\spad{u}.") (($ $ "rest") "\\spad{elt(\\%,\"rest\")} (also written: \\axiom{\\spad{u}.rest}) is equivalent to \\axiom{rest \\spad{u}}.") ((|#2| $ "first") "\\spad{elt(u,\"first\")} (also written: \\axiom{\\spad{u} . first}) is equivalent to first \\spad{u}.")) (|first| (($ $ (|NonNegativeInteger|)) "\\spad{first(u,n)} returns a copy of the first \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) elements of \\spad{u}.") ((|#2| $) "\\spad{first(u)} returns the first element of \\spad{u} (equivalently,{} the value at the current node).")) (|concat| (($ |#2| $) "\\spad{concat(x,u)} returns aggregate consisting of \\spad{x} followed by the elements of \\spad{u}. Note: if \\axiom{\\spad{v} = concat(\\spad{x},{}\\spad{u})} then \\axiom{\\spad{x} = first \\spad{v}} and \\axiom{\\spad{u} = rest \\spad{v}}.") (($ $ $) "\\spad{concat(u,v)} returns an aggregate \\spad{w} consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: \\axiom{\\spad{v} = rest(\\spad{w},{}\\#a)}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4449)))
-(-1264 S)
+((|HasAttribute| |#1| (QUOTE -4450)))
+(-1265 S)
((|constructor| (NIL "A unary-recursive aggregate is a one where nodes may have either 0 or 1 children. This aggregate models,{} though not precisely,{} a linked list possibly with a single cycle. A node with one children models a non-empty list,{} with the \\spadfun{value} of the list designating the head,{} or \\spadfun{first},{} of the list,{} and the child designating the tail,{} or \\spadfun{rest},{} of the list. A node with no child then designates the empty list. Since these aggregates are recursive aggregates,{} they may be cyclic.")) (|split!| (($ $ (|Integer|)) "\\spad{split!(u,n)} splits \\spad{u} into two aggregates: \\axiom{\\spad{v} = rest(\\spad{u},{}\\spad{n})} and \\axiom{\\spad{w} = first(\\spad{u},{}\\spad{n})},{} returning \\axiom{\\spad{v}}. Note: afterwards \\axiom{rest(\\spad{u},{}\\spad{n})} returns \\axiom{empty()}.")) (|setlast!| ((|#1| $ |#1|) "\\spad{setlast!(u,x)} destructively changes the last element of \\spad{u} to \\spad{x}.")) (|setrest!| (($ $ $) "\\spad{setrest!(u,v)} destructively changes the rest of \\spad{u} to \\spad{v}.")) (|setelt| ((|#1| $ "last" |#1|) "\\spad{setelt(u,\"last\",x)} (also written: \\axiom{\\spad{u}.last \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setlast!(\\spad{u},{}\\spad{v})}.") (($ $ "rest" $) "\\spad{setelt(u,\"rest\",v)} (also written: \\axiom{\\spad{u}.rest \\spad{:=} \\spad{v}}) is equivalent to \\axiom{setrest!(\\spad{u},{}\\spad{v})}.") ((|#1| $ "first" |#1|) "\\spad{setelt(u,\"first\",x)} (also written: \\axiom{\\spad{u}.first \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setfirst!(\\spad{u},{}\\spad{x})}.")) (|setfirst!| ((|#1| $ |#1|) "\\spad{setfirst!(u,x)} destructively changes the first element of a to \\spad{x}.")) (|cycleSplit!| (($ $) "\\spad{cycleSplit!(u)} splits the aggregate by dropping off the cycle. The value returned is the cycle entry,{} or nil if none exists. For example,{} if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} is the cyclic list where \\spad{v} is the head of the cycle,{} \\axiom{cycleSplit!(\\spad{w})} will drop \\spad{v} off \\spad{w} thus destructively changing \\spad{w} to \\spad{u},{} and returning \\spad{v}.")) (|concat!| (($ $ |#1|) "\\spad{concat!(u,x)} destructively adds element \\spad{x} to the end of \\spad{u}. Note: \\axiom{concat!(a,{}\\spad{x}) = setlast!(a,{}[\\spad{x}])}.") (($ $ $) "\\spad{concat!(u,v)} destructively concatenates \\spad{v} to the end of \\spad{u}. Note: \\axiom{concat!(\\spad{u},{}\\spad{v}) = setlast!(\\spad{u},{}\\spad{v})}.")) (|cycleTail| (($ $) "\\spad{cycleTail(u)} returns the last node in the cycle,{} or empty if none exists.")) (|cycleLength| (((|NonNegativeInteger|) $) "\\spad{cycleLength(u)} returns the length of a top-level cycle contained in aggregate \\spad{u},{} or 0 is \\spad{u} has no such cycle.")) (|cycleEntry| (($ $) "\\spad{cycleEntry(u)} returns the head of a top-level cycle contained in aggregate \\spad{u},{} or \\axiom{empty()} if none exists.")) (|third| ((|#1| $) "\\spad{third(u)} returns the third element of \\spad{u}. Note: \\axiom{third(\\spad{u}) = first(rest(rest(\\spad{u})))}.")) (|second| ((|#1| $) "\\spad{second(u)} returns the second element of \\spad{u}. Note: \\axiom{second(\\spad{u}) = first(rest(\\spad{u}))}.")) (|tail| (($ $) "\\spad{tail(u)} returns the last node of \\spad{u}. Note: if \\spad{u} is \\axiom{shallowlyMutable},{} \\axiom{setrest(tail(\\spad{u}),{}\\spad{v}) = concat(\\spad{u},{}\\spad{v})}.")) (|last| (($ $ (|NonNegativeInteger|)) "\\spad{last(u,n)} returns a copy of the last \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) nodes of \\spad{u}. Note: \\axiom{last(\\spad{u},{}\\spad{n})} is a list of \\spad{n} elements.") ((|#1| $) "\\spad{last(u)} resturn the last element of \\spad{u}. Note: for lists,{} \\axiom{last(\\spad{u}) = \\spad{u} . (maxIndex \\spad{u}) = \\spad{u} . (\\# \\spad{u} - 1)}.")) (|rest| (($ $ (|NonNegativeInteger|)) "\\spad{rest(u,n)} returns the \\axiom{\\spad{n}}th (\\spad{n} \\spad{>=} 0) node of \\spad{u}. Note: \\axiom{rest(\\spad{u},{}0) = \\spad{u}}.") (($ $) "\\spad{rest(u)} returns an aggregate consisting of all but the first element of \\spad{u} (equivalently,{} the next node of \\spad{u}).")) (|elt| ((|#1| $ "last") "\\spad{elt(u,\"last\")} (also written: \\axiom{\\spad{u} . last}) is equivalent to last \\spad{u}.") (($ $ "rest") "\\spad{elt(\\%,\"rest\")} (also written: \\axiom{\\spad{u}.rest}) is equivalent to \\axiom{rest \\spad{u}}.") ((|#1| $ "first") "\\spad{elt(u,\"first\")} (also written: \\axiom{\\spad{u} . first}) is equivalent to first \\spad{u}.")) (|first| (($ $ (|NonNegativeInteger|)) "\\spad{first(u,n)} returns a copy of the first \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) elements of \\spad{u}.") ((|#1| $) "\\spad{first(u)} returns the first element of \\spad{u} (equivalently,{} the value at the current node).")) (|concat| (($ |#1| $) "\\spad{concat(x,u)} returns aggregate consisting of \\spad{x} followed by the elements of \\spad{u}. Note: if \\axiom{\\spad{v} = concat(\\spad{x},{}\\spad{u})} then \\axiom{\\spad{x} = first \\spad{v}} and \\axiom{\\spad{u} = rest \\spad{v}}.") (($ $ $) "\\spad{concat(u,v)} returns an aggregate \\spad{w} consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: \\axiom{\\spad{v} = rest(\\spad{w},{}\\#a)}.")))
NIL
NIL
-(-1265 |Coef1| |Coef2| UTS1 UTS2)
+(-1266 |Coef1| |Coef2| UTS1 UTS2)
((|constructor| (NIL "Mapping package for univariate Taylor series. \\indented{2}{This package allows one to apply a function to the coefficients of} \\indented{2}{a univariate Taylor series.}")) (|map| ((|#4| (|Mapping| |#2| |#1|) |#3|) "\\spad{map(f,g(x))} applies the map \\spad{f} to the coefficients of \\indented{1}{the Taylor series \\spad{g(x)}.}")))
NIL
NIL
-(-1266 S |Coef|)
+(-1267 S |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateTaylorSeriesCategory} is the category of Taylor series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (** (($ $ |#2|) "\\spad{f(x) ** a} computes a power of a power series. When the coefficient ring is a field,{} we may raise a series to an exponent from the coefficient ring provided that the constant coefficient of the series is 1.")) (|polynomial| (((|Polynomial| |#2|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,k1,k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#2|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|multiplyCoefficients| (($ (|Mapping| |#2| (|Integer|)) $) "\\spad{multiplyCoefficients(f,sum(n = 0..infinity,a[n] * x**n))} returns \\spad{sum(n = 0..infinity,f(n) * a[n] * x**n)}. This function is used when Laurent series are represented by a Taylor series and an order.")) (|quoByVar| (($ $) "\\spad{quoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...} Thus,{} this function substracts the constant term and divides by the series variable. This function is used when Laurent series are represented by a Taylor series and an order.")) (|coefficients| (((|Stream| |#2|) $) "\\spad{coefficients(a0 + a1 x + a2 x**2 + ...)} returns a stream of coefficients: \\spad{[a0,a1,a2,...]}. The entries of the stream may be zero.")) (|series| (($ (|Stream| |#2|)) "\\spad{series([a0,a1,a2,...])} is the Taylor series \\spad{a0 + a1 x + a2 x**2 + ...}.") (($ (|Stream| (|Record| (|:| |k| (|NonNegativeInteger|)) (|:| |c| |#2|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-966))) (|HasCategory| |#2| (QUOTE (-1211))) (|HasSignature| |#2| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3555) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1186))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))))
-(-1267 |Coef|)
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-966))) (|HasCategory| |#2| (QUOTE (-1212))) (|HasSignature| |#2| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3722) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1186))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))))
+(-1268 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateTaylorSeriesCategory} is the category of Taylor series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (** (($ $ |#1|) "\\spad{f(x) ** a} computes a power of a power series. When the coefficient ring is a field,{} we may raise a series to an exponent from the coefficient ring provided that the constant coefficient of the series is 1.")) (|polynomial| (((|Polynomial| |#1|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,k1,k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(f,sum(n = 0..infinity,a[n] * x**n))} returns \\spad{sum(n = 0..infinity,f(n) * a[n] * x**n)}. This function is used when Laurent series are represented by a Taylor series and an order.")) (|quoByVar| (($ $) "\\spad{quoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...} Thus,{} this function substracts the constant term and divides by the series variable. This function is used when Laurent series are represented by a Taylor series and an order.")) (|coefficients| (((|Stream| |#1|) $) "\\spad{coefficients(a0 + a1 x + a2 x**2 + ...)} returns a stream of coefficients: \\spad{[a0,a1,a2,...]}. The entries of the stream may be zero.")) (|series| (($ (|Stream| |#1|)) "\\spad{series([a0,a1,a2,...])} is the Taylor series \\spad{a0 + a1 x + a2 x**2 + ...}.") (($ (|Stream| (|Record| (|:| |k| (|NonNegativeInteger|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1268 |Coef| |var| |cen|)
+(-1269 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Taylor series in one variable \\spadtype{UnivariateTaylorSeries} is a domain representing Taylor series in one variable with coefficients in an arbitrary ring. The parameters of the type specify the coefficient ring,{} the power series variable,{} and the center of the power series expansion. For example,{} \\spadtype{UnivariateTaylorSeries}(Integer,{}\\spad{x},{}3) represents Taylor series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x),x)} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|invmultisect| (($ (|Integer|) (|Integer|) $) "\\spad{invmultisect(a,b,f(x))} substitutes \\spad{x^((a+b)*n)} \\indented{1}{for \\spad{x^n} and multiples by \\spad{x^b}.}")) (|multisect| (($ (|Integer|) (|Integer|) $) "\\spad{multisect(a,b,f(x))} selects the coefficients of \\indented{1}{\\spad{x^((a+b)*n+a)},{} and changes this monomial to \\spad{x^n}.}")) (|revert| (($ $) "\\spad{revert(f(x))} returns a Taylor series \\spad{g(x)} such that \\spad{f(g(x)) = g(f(x)) = x}. Series \\spad{f(x)} should have constant coefficient 0 and invertible 1st order coefficient.")) (|generalLambert| (($ $ (|Integer|) (|Integer|)) "\\spad{generalLambert(f(x),a,d)} returns \\spad{f(x^a) + f(x^(a + d)) + \\indented{1}{f(x^(a + 2 d)) + ... }. \\spad{f(x)} should have zero constant} \\indented{1}{coefficient and \\spad{a} and \\spad{d} should be positive.}")) (|evenlambert| (($ $) "\\spad{evenlambert(f(x))} returns \\spad{f(x^2) + f(x^4) + f(x^6) + ...}. \\indented{1}{\\spad{f(x)} should have a zero constant coefficient.} \\indented{1}{This function is used for computing infinite products.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n=1..infinity,f(x^(2*n))) = exp(log(evenlambert(f(x))))}.}")) (|oddlambert| (($ $) "\\spad{oddlambert(f(x))} returns \\spad{f(x) + f(x^3) + f(x^5) + ...}. \\indented{1}{\\spad{f(x)} should have a zero constant coefficient.} \\indented{1}{This function is used for computing infinite products.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n=1..infinity,f(x^(2*n-1)))=exp(log(oddlambert(f(x))))}.}")) (|lambert| (($ $) "\\spad{lambert(f(x))} returns \\spad{f(x) + f(x^2) + f(x^3) + ...}. \\indented{1}{This function is used for computing infinite products.} \\indented{1}{\\spad{f(x)} should have zero constant coefficient.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n = 1..infinity,f(x^n)) = exp(log(lambert(f(x))))}.}")) (|lagrange| (($ $) "\\spad{lagrange(g(x))} produces the Taylor series for \\spad{f(x)} \\indented{1}{where \\spad{f(x)} is implicitly defined as \\spad{f(x) = x*g(f(x))}.}")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),x)} computes the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|univariatePolynomial| (((|UnivariatePolynomial| |#2| |#1|) $ (|NonNegativeInteger|)) "\\spad{univariatePolynomial(f,k)} returns a univariate polynomial \\indented{1}{consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.}")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a \\indented{1}{Taylor series.}") (($ (|UnivariatePolynomial| |#2| |#1|)) "\\spad{coerce(p)} converts a univariate polynomial \\spad{p} in the variable \\spad{var} to a univariate Taylor series in \\spad{var}.")))
-(((-4450 "*") |has| |#1| (-174)) (-4441 |has| |#1| (-562)) (-4442 . T) (-4443 . T) (-4445 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|)))) (|HasCategory| (-777) (QUOTE (-1121))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1211))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3555) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1716) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
-(-1269 |Coef| UTS)
+(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2740 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-777)) (|devaluate| |#1|)))) (|HasCategory| (-777) (QUOTE (-1121))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasSignature| |#1| (LIST (QUOTE -3735) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2740 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-966))) (|HasCategory| |#1| (QUOTE (-1212))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasSignature| |#1| (LIST (QUOTE -3722) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1713) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(-1270 |Coef| UTS)
((|constructor| (NIL "\\indented{1}{This package provides Taylor series solutions to regular} linear or non-linear ordinary differential equations of arbitrary order.")) (|mpsode| (((|List| |#2|) (|List| |#1|) (|List| (|Mapping| |#2| (|List| |#2|)))) "\\spad{mpsode(r,f)} solves the system of differential equations \\spad{dy[i]/dx =f[i] [x,y[1],y[2],...,y[n]]},{} \\spad{y[i](a) = r[i]} for \\spad{i} in 1..\\spad{n}.")) (|ode| ((|#2| (|Mapping| |#2| (|List| |#2|)) (|List| |#1|)) "\\spad{ode(f,cl)} is the solution to \\spad{y<n>=f(y,y',..,y<n-1>)} such that \\spad{y<i>(a) = cl.i} for \\spad{i} in 1..\\spad{n}.")) (|ode2| ((|#2| (|Mapping| |#2| |#2| |#2|) |#1| |#1|) "\\spad{ode2(f,c0,c1)} is the solution to \\spad{y'' = f(y,y')} such that \\spad{y(a) = c0} and \\spad{y'(a) = c1}.")) (|ode1| ((|#2| (|Mapping| |#2| |#2|) |#1|) "\\spad{ode1(f,c)} is the solution to \\spad{y' = f(y)} such that \\spad{y(a) = c}.")) (|fixedPointExquo| ((|#2| |#2| |#2|) "\\spad{fixedPointExquo(f,g)} computes the exact quotient of \\spad{f} and \\spad{g} using a fixed point computation.")) (|stFuncN| (((|Mapping| (|Stream| |#1|) (|List| (|Stream| |#1|))) (|Mapping| |#2| (|List| |#2|))) "\\spad{stFuncN(f)} is a local function xported due to compiler problem. This function is of no interest to the top-level user.")) (|stFunc2| (((|Mapping| (|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) (|Mapping| |#2| |#2| |#2|)) "\\spad{stFunc2(f)} is a local function exported due to compiler problem. This function is of no interest to the top-level user.")) (|stFunc1| (((|Mapping| (|Stream| |#1|) (|Stream| |#1|)) (|Mapping| |#2| |#2|)) "\\spad{stFunc1(f)} is a local function exported due to compiler problem. This function is of no interest to the top-level user.")))
NIL
NIL
-(-1270 -1674 UP L UTS)
+(-1271 -1674 UP L UTS)
((|constructor| (NIL "\\spad{RUTSodetools} provides tools to interface with the series \\indented{1}{ODE solver when presented with linear ODEs.}")) (RF2UTS ((|#4| (|Fraction| |#2|)) "\\spad{RF2UTS(f)} converts \\spad{f} to a Taylor series.")) (LODO2FUN (((|Mapping| |#4| (|List| |#4|)) |#3|) "\\spad{LODO2FUN(op)} returns the function to pass to the series ODE solver in order to solve \\spad{op y = 0}.")) (UTS2UP ((|#2| |#4| (|NonNegativeInteger|)) "\\spad{UTS2UP(s, n)} converts the first \\spad{n} terms of \\spad{s} to a univariate polynomial.")) (UP2UTS ((|#4| |#2|) "\\spad{UP2UTS(p)} converts \\spad{p} to a Taylor series.")))
NIL
((|HasCategory| |#1| (QUOTE (-562))))
-(-1271)
+(-1272)
((|constructor| (NIL "The category of domains that act like unions. UnionType,{} like Type or Category,{} acts mostly as a take that communicates `union-like' intended semantics to the compiler. A domain \\spad{D} that satifies UnionType should provide definitions for `case' operators,{} with corresponding `autoCoerce' operators.")))
NIL
NIL
-(-1272 |sym|)
+(-1273 |sym|)
((|constructor| (NIL "This domain implements variables")) (|variable| (((|Symbol|)) "\\spad{variable()} returns the symbol")) (|coerce| (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol")))
NIL
NIL
-(-1273 S R)
+(-1274 S R)
((|constructor| (NIL "\\spadtype{VectorCategory} represents the type of vector like objects,{} \\spadignore{i.e.} finite sequences indexed by some finite segment of the integers. The operations available on vectors depend on the structure of the underlying components. Many operations from the component domain are defined for vectors componentwise. It can by assumed that extraction or updating components can be done in constant time.")) (|magnitude| ((|#2| $) "\\spad{magnitude(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the length")) (|length| ((|#2| $) "\\spad{length(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the magnitude")) (|cross| (($ $ $) "vectorProduct(\\spad{u},{}\\spad{v}) constructs the cross product of \\spad{u} and \\spad{v}. Error: if \\spad{u} and \\spad{v} are not of length 3.")) (|outerProduct| (((|Matrix| |#2|) $ $) "\\spad{outerProduct(u,v)} constructs the matrix whose (\\spad{i},{}\\spad{j})\\spad{'}th element is \\spad{u}(\\spad{i})\\spad{*v}(\\spad{j}).")) (|dot| ((|#2| $ $) "\\spad{dot(x,y)} computes the inner product of the two vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")) (* (($ $ |#2|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#2| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.") (($ (|Integer|) $) "\\spad{n * y} multiplies each component of the vector \\spad{y} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x - y} returns the component-wise difference of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.") (($ $) "\\spad{-x} negates all components of the vector \\spad{x}.")) (|zero| (($ (|NonNegativeInteger|)) "\\spad{zero(n)} creates a zero vector of length \\spad{n}.")) (+ (($ $ $) "\\spad{x + y} returns the component-wise sum of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")))
NIL
((|HasCategory| |#2| (QUOTE (-1011))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
-(-1274 R)
+(-1275 R)
((|constructor| (NIL "\\spadtype{VectorCategory} represents the type of vector like objects,{} \\spadignore{i.e.} finite sequences indexed by some finite segment of the integers. The operations available on vectors depend on the structure of the underlying components. Many operations from the component domain are defined for vectors componentwise. It can by assumed that extraction or updating components can be done in constant time.")) (|magnitude| ((|#1| $) "\\spad{magnitude(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the length")) (|length| ((|#1| $) "\\spad{length(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the magnitude")) (|cross| (($ $ $) "vectorProduct(\\spad{u},{}\\spad{v}) constructs the cross product of \\spad{u} and \\spad{v}. Error: if \\spad{u} and \\spad{v} are not of length 3.")) (|outerProduct| (((|Matrix| |#1|) $ $) "\\spad{outerProduct(u,v)} constructs the matrix whose (\\spad{i},{}\\spad{j})\\spad{'}th element is \\spad{u}(\\spad{i})\\spad{*v}(\\spad{j}).")) (|dot| ((|#1| $ $) "\\spad{dot(x,y)} computes the inner product of the two vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")) (* (($ $ |#1|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#1| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.") (($ (|Integer|) $) "\\spad{n * y} multiplies each component of the vector \\spad{y} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x - y} returns the component-wise difference of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.") (($ $) "\\spad{-x} negates all components of the vector \\spad{x}.")) (|zero| (($ (|NonNegativeInteger|)) "\\spad{zero(n)} creates a zero vector of length \\spad{n}.")) (+ (($ $ $) "\\spad{x + y} returns the component-wise sum of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
NIL
-(-1275 A B)
+(-1276 A B)
((|constructor| (NIL "\\indented{2}{This package provides operations which all take as arguments} vectors of elements of some type \\spad{A} and functions from \\spad{A} to another of type \\spad{B}. The operations all iterate over their vector argument and either return a value of type \\spad{B} or a vector over \\spad{B}.")) (|map| (((|Union| (|Vector| |#2|) "failed") (|Mapping| (|Union| |#2| "failed") |#1|) (|Vector| |#1|)) "\\spad{map(f, v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values or \\spad{\"failed\"}.") (((|Vector| |#2|) (|Mapping| |#2| |#1|) (|Vector| |#1|)) "\\spad{map(f, v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|Vector| |#1|) |#2|) "\\spad{reduce(func,vec,ident)} combines the elements in \\spad{vec} using the binary function \\spad{func}. Argument \\spad{ident} is returned if \\spad{vec} is empty.")) (|scan| (((|Vector| |#2|) (|Mapping| |#2| |#1| |#2|) (|Vector| |#1|) |#2|) "\\spad{scan(func,vec,ident)} creates a new vector whose elements are the result of applying reduce to the binary function \\spad{func},{} increasing initial subsequences of the vector \\spad{vec},{} and the element \\spad{ident}.")))
NIL
NIL
-(-1276 R)
+(-1277 R)
((|constructor| (NIL "This type represents vector like objects with varying lengths and indexed by a finite segment of integers starting at 1.")) (|vector| (($ (|List| |#1|)) "\\spad{vector(l)} converts the list \\spad{l} to a vector.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-2740 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2740 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2740 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#1| (QUOTE (-1058))) (-12 (|HasCategory| |#1| (QUOTE (-1011))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
-(-1277)
+(-1278)
((|constructor| (NIL "TwoDimensionalViewport creates viewports to display graphs.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(v)} returns the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport} as output of the domain \\spadtype{OutputForm}.")) (|key| (((|Integer|) $) "\\spad{key(v)} returns the process ID number of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport}.")) (|reset| (((|Void|) $) "\\spad{reset(v)} sets the current state of the graph characteristics of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} back to their initial settings.")) (|write| (((|String|) $ (|String|) (|List| (|String|))) "\\spad{write(v,s,lf)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v} and the optional file types indicated by the list \\spad{lf}.") (((|String|) $ (|String|) (|String|)) "\\spad{write(v,s,f)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v} and an optional file type \\spad{f}.") (((|String|) $ (|String|)) "\\spad{write(v,s)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v}.")) (|resize| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{resize(v,w,h)} displays the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with a width of \\spad{w} and a height of \\spad{h},{} keeping the upper left-hand corner position unchanged.")) (|update| (((|Void|) $ (|GraphImage|) (|PositiveInteger|)) "\\spad{update(v,gr,n)} drops the graph \\spad{gr} in slot \\spad{n} of viewport \\spad{v}. The graph \\spad{gr} must have been transmitted already and acquired an integer key.")) (|move| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{move(v,x,y)} displays the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the upper left-hand corner of the viewport window at the screen coordinate position \\spad{x},{} \\spad{y}.")) (|show| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{show(v,n,s)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the graph if \\spad{s} is \"off\".")) (|translate| (((|Void|) $ (|PositiveInteger|) (|Float|) (|Float|)) "\\spad{translate(v,n,dx,dy)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} translated by \\spad{dx} in the \\spad{x}-coordinate direction from the center of the viewport,{} and by \\spad{dy} in the \\spad{y}-coordinate direction from the center. Setting \\spad{dx} and \\spad{dy} to \\spad{0} places the center of the graph at the center of the viewport.")) (|scale| (((|Void|) $ (|PositiveInteger|) (|Float|) (|Float|)) "\\spad{scale(v,n,sx,sy)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} scaled by the factor \\spad{sx} in the \\spad{x}-coordinate direction and by the factor \\spad{sy} in the \\spad{y}-coordinate direction.")) (|dimensions| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{dimensions(v,x,y,width,height)} sets the position of the upper left-hand corner of the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} to the window coordinate \\spad{x},{} \\spad{y},{} and sets the dimensions of the window to that of \\spad{width},{} \\spad{height}. The new dimensions are not displayed until the function \\spadfun{makeViewport2D} is executed again for \\spad{v}.")) (|close| (((|Void|) $) "\\spad{close(v)} closes the viewport window of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and terminates the corresponding process ID.")) (|controlPanel| (((|Void|) $ (|String|)) "\\spad{controlPanel(v,s)} displays the control panel of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or hides the control panel if \\spad{s} is \"off\".")) (|connect| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{connect(v,n,s)} displays the lines connecting the graph points in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the lines if \\spad{s} is \"off\".")) (|region| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{region(v,n,s)} displays the bounding box of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the bounding box if \\spad{s} is \"off\".")) (|points| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{points(v,n,s)} displays the points of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the points if \\spad{s} is \"off\".")) (|units| (((|Void|) $ (|PositiveInteger|) (|Palette|)) "\\spad{units(v,n,c)} displays the units of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the units color set to the given palette color \\spad{c}.") (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{units(v,n,s)} displays the units of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the units if \\spad{s} is \"off\".")) (|axes| (((|Void|) $ (|PositiveInteger|) (|Palette|)) "\\spad{axes(v,n,c)} displays the axes of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the axes color set to the given palette color \\spad{c}.") (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{axes(v,n,s)} displays the axes of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the axes if \\spad{s} is \"off\".")) (|getGraph| (((|GraphImage|) $ (|PositiveInteger|)) "\\spad{getGraph(v,n)} returns the graph which is of the domain \\spadtype{GraphImage} which is located in graph field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of the domain \\spadtype{TwoDimensionalViewport}.")) (|putGraph| (((|Void|) $ (|GraphImage|) (|PositiveInteger|)) "\\spad{putGraph(v,gi,n)} sets the graph field indicated by \\spad{n},{} of the indicated two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} to be the graph,{} \\spad{gi} of domain \\spadtype{GraphImage}. The contents of viewport,{} \\spad{v},{} will contain \\spad{gi} when the function \\spadfun{makeViewport2D} is called to create the an updated viewport \\spad{v}.")) (|title| (((|Void|) $ (|String|)) "\\spad{title(v,s)} changes the title which is shown in the two-dimensional viewport window,{} \\spad{v} of domain \\spadtype{TwoDimensionalViewport}.")) (|graphs| (((|Vector| (|Union| (|GraphImage|) "undefined")) $) "\\spad{graphs(v)} returns a vector,{} or list,{} which is a union of all the graphs,{} of the domain \\spadtype{GraphImage},{} which are allocated for the two-dimensional viewport,{} \\spad{v},{} of domain \\spadtype{TwoDimensionalViewport}. Those graphs which have no data are labeled \"undefined\",{} otherwise their contents are shown.")) (|graphStates| (((|Vector| (|Record| (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)) (|:| |points| (|Integer|)) (|:| |connect| (|Integer|)) (|:| |spline| (|Integer|)) (|:| |axes| (|Integer|)) (|:| |axesColor| (|Palette|)) (|:| |units| (|Integer|)) (|:| |unitsColor| (|Palette|)) (|:| |showing| (|Integer|)))) $) "\\spad{graphStates(v)} returns and shows a listing of a record containing the current state of the characteristics of each of the ten graph records in the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport}.")) (|graphState| (((|Void|) $ (|PositiveInteger|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Palette|) (|Integer|) (|Palette|) (|Integer|)) "\\spad{graphState(v,num,sX,sY,dX,dY,pts,lns,box,axes,axesC,un,unC,cP)} sets the state of the characteristics for the graph indicated by \\spad{num} in the given two-dimensional viewport \\spad{v},{} of domain \\spadtype{TwoDimensionalViewport},{} to the values given as parameters. The scaling of the graph in the \\spad{x} and \\spad{y} component directions is set to be \\spad{sX} and \\spad{sY}; the window translation in the \\spad{x} and \\spad{y} component directions is set to be \\spad{dX} and \\spad{dY}; The graph points,{} lines,{} bounding \\spad{box},{} \\spad{axes},{} or units will be shown in the viewport if their given parameters \\spad{pts},{} \\spad{lns},{} \\spad{box},{} \\spad{axes} or \\spad{un} are set to be \\spad{1},{} but will not be shown if they are set to \\spad{0}. The color of the \\spad{axes} and the color of the units are indicated by the palette colors \\spad{axesC} and \\spad{unC} respectively. To display the control panel when the viewport window is displayed,{} set \\spad{cP} to \\spad{1},{} otherwise set it to \\spad{0}.")) (|options| (($ $ (|List| (|DrawOption|))) "\\spad{options(v,lopt)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and returns \\spad{v} with it\\spad{'s} draw options modified to be those which are indicated in the given list,{} \\spad{lopt} of domain \\spadtype{DrawOption}.") (((|List| (|DrawOption|)) $) "\\spad{options(v)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and returns a list containing the draw options from the domain \\spadtype{DrawOption} for \\spad{v}.")) (|makeViewport2D| (($ (|GraphImage|) (|List| (|DrawOption|))) "\\spad{makeViewport2D(gi,lopt)} creates and displays a viewport window of the domain \\spadtype{TwoDimensionalViewport} whose graph field is assigned to be the given graph,{} \\spad{gi},{} of domain \\spadtype{GraphImage},{} and whose options field is set to be the list of options,{} \\spad{lopt} of domain \\spadtype{DrawOption}.") (($ $) "\\spad{makeViewport2D(v)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and displays a viewport window on the screen which contains the contents of \\spad{v}.")) (|viewport2D| (($) "\\spad{viewport2D()} returns an undefined two-dimensional viewport of the domain \\spadtype{TwoDimensionalViewport} whose contents are empty.")) (|getPickedPoints| (((|List| (|Point| (|DoubleFloat|))) $) "\\spad{getPickedPoints(x)} returns a list of small floats for the points the user interactively picked on the viewport for full integration into the system,{} some design issues need to be addressed: \\spadignore{e.g.} how to go through the GraphImage interface,{} how to default to graphs,{} etc.")))
NIL
NIL
-(-1278)
+(-1279)
((|key| (((|Integer|) $) "\\spad{key(v)} returns the process ID number of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|close| (((|Void|) $) "\\spad{close(v)} closes the viewport window of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and terminates the corresponding process ID.")) (|write| (((|String|) $ (|String|) (|List| (|String|))) "\\spad{write(v,s,lf)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v} and the optional file types indicated by the list \\spad{lf}.") (((|String|) $ (|String|) (|String|)) "\\spad{write(v,s,f)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v} and an optional file type \\spad{f}.") (((|String|) $ (|String|)) "\\spad{write(v,s)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v}.")) (|colorDef| (((|Void|) $ (|Color|) (|Color|)) "\\spad{colorDef(v,c1,c2)} sets the range of colors along the colormap so that the lower end of the colormap is defined by \\spad{c1} and the top end of the colormap is defined by \\spad{c2},{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|reset| (((|Void|) $) "\\spad{reset(v)} sets the current state of the graph characteristics of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} back to their initial settings.")) (|intensity| (((|Void|) $ (|Float|)) "\\spad{intensity(v,i)} sets the intensity of the light source to \\spad{i},{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|lighting| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{lighting(v,x,y,z)} sets the position of the light source to the coordinates \\spad{x},{} \\spad{y},{} and \\spad{z} and displays the graph for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|clipSurface| (((|Void|) $ (|String|)) "\\spad{clipSurface(v,s)} displays the graph with the specified clipping region removed if \\spad{s} is \"on\",{} or displays the graph without clipping implemented if \\spad{s} is \"off\",{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|showClipRegion| (((|Void|) $ (|String|)) "\\spad{showClipRegion(v,s)} displays the clipping region of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the region if \\spad{s} is \"off\".")) (|showRegion| (((|Void|) $ (|String|)) "\\spad{showRegion(v,s)} displays the bounding box of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the box if \\spad{s} is \"off\".")) (|hitherPlane| (((|Void|) $ (|Float|)) "\\spad{hitherPlane(v,h)} sets the hither clipping plane of the graph to \\spad{h},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|eyeDistance| (((|Void|) $ (|Float|)) "\\spad{eyeDistance(v,d)} sets the distance of the observer from the center of the graph to \\spad{d},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|perspective| (((|Void|) $ (|String|)) "\\spad{perspective(v,s)} displays the graph in perspective if \\spad{s} is \"on\",{} or does not display perspective if \\spad{s} is \"off\" for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|translate| (((|Void|) $ (|Float|) (|Float|)) "\\spad{translate(v,dx,dy)} sets the horizontal viewport offset to \\spad{dx} and the vertical viewport offset to \\spad{dy},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|zoom| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{zoom(v,sx,sy,sz)} sets the graph scaling factors for the \\spad{x}-coordinate axis to \\spad{sx},{} the \\spad{y}-coordinate axis to \\spad{sy} and the \\spad{z}-coordinate axis to \\spad{sz} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.") (((|Void|) $ (|Float|)) "\\spad{zoom(v,s)} sets the graph scaling factor to \\spad{s},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|rotate| (((|Void|) $ (|Integer|) (|Integer|)) "\\spad{rotate(v,th,phi)} rotates the graph to the longitudinal view angle \\spad{th} degrees and the latitudinal view angle \\spad{phi} degrees for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new rotation position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Float|) (|Float|)) "\\spad{rotate(v,th,phi)} rotates the graph to the longitudinal view angle \\spad{th} radians and the latitudinal view angle \\spad{phi} radians for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|drawStyle| (((|Void|) $ (|String|)) "\\spad{drawStyle(v,s)} displays the surface for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport} in the style of drawing indicated by \\spad{s}. If \\spad{s} is not a valid drawing style the style is wireframe by default. Possible styles are \\spad{\"shade\"},{} \\spad{\"solid\"} or \\spad{\"opaque\"},{} \\spad{\"smooth\"},{} and \\spad{\"wireMesh\"}.")) (|outlineRender| (((|Void|) $ (|String|)) "\\spad{outlineRender(v,s)} displays the polygon outline showing either triangularized surface or a quadrilateral surface outline depending on the whether the \\spadfun{diagonals} function has been set,{} for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the polygon outline if \\spad{s} is \"off\".")) (|diagonals| (((|Void|) $ (|String|)) "\\spad{diagonals(v,s)} displays the diagonals of the polygon outline showing a triangularized surface instead of a quadrilateral surface outline,{} for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the diagonals if \\spad{s} is \"off\".")) (|axes| (((|Void|) $ (|String|)) "\\spad{axes(v,s)} displays the axes of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the axes if \\spad{s} is \"off\".")) (|controlPanel| (((|Void|) $ (|String|)) "\\spad{controlPanel(v,s)} displays the control panel of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or hides the control panel if \\spad{s} is \"off\".")) (|viewpoint| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,rotx,roty,rotz)} sets the rotation about the \\spad{x}-axis to be \\spad{rotx} radians,{} sets the rotation about the \\spad{y}-axis to be \\spad{roty} radians,{} and sets the rotation about the \\spad{z}-axis to be \\spad{rotz} radians,{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and displays \\spad{v} with the new view position.") (((|Void|) $ (|Float|) (|Float|)) "\\spad{viewpoint(v,th,phi)} sets the longitudinal view angle to \\spad{th} radians and the latitudinal view angle to \\spad{phi} radians for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Integer|) (|Integer|) (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,th,phi,s,dx,dy)} sets the longitudinal view angle to \\spad{th} degrees,{} the latitudinal view angle to \\spad{phi} degrees,{} the scale factor to \\spad{s},{} the horizontal viewport offset to \\spad{dx},{} and the vertical viewport offset to \\spad{dy} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)))) "\\spad{viewpoint(v,viewpt)} sets the viewpoint for the viewport. The viewport record consists of the latitudal and longitudal angles,{} the zoom factor,{} the \\spad{X},{} \\spad{Y},{} and \\spad{Z} scales,{} and the \\spad{X} and \\spad{Y} displacements.") (((|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|))) $) "\\spad{viewpoint(v)} returns the current viewpoint setting of the given viewport,{} \\spad{v}. This function is useful in the situation where the user has created a viewport,{} proceeded to interact with it via the control panel and desires to save the values of the viewpoint as the default settings for another viewport to be created using the system.") (((|Void|) $ (|Float|) (|Float|) (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,th,phi,s,dx,dy)} sets the longitudinal view angle to \\spad{th} radians,{} the latitudinal view angle to \\spad{phi} radians,{} the scale factor to \\spad{s},{} the horizontal viewport offset to \\spad{dx},{} and the vertical viewport offset to \\spad{dy} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.")) (|dimensions| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{dimensions(v,x,y,width,height)} sets the position of the upper left-hand corner of the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} to the window coordinate \\spad{x},{} \\spad{y},{} and sets the dimensions of the window to that of \\spad{width},{} \\spad{height}. The new dimensions are not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.")) (|title| (((|Void|) $ (|String|)) "\\spad{title(v,s)} changes the title which is shown in the three-dimensional viewport window,{} \\spad{v} of domain \\spadtype{ThreeDimensionalViewport}.")) (|resize| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{resize(v,w,h)} displays the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} with a width of \\spad{w} and a height of \\spad{h},{} keeping the upper left-hand corner position unchanged.")) (|move| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{move(v,x,y)} displays the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} with the upper left-hand corner of the viewport window at the screen coordinate position \\spad{x},{} \\spad{y}.")) (|options| (($ $ (|List| (|DrawOption|))) "\\spad{options(v,lopt)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and sets the draw options being used by \\spad{v} to those indicated in the list,{} \\spad{lopt},{} which is a list of options from the domain \\spad{DrawOption}.") (((|List| (|DrawOption|)) $) "\\spad{options(v)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and returns a list of all the draw options from the domain \\spad{DrawOption} which are being used by \\spad{v}.")) (|modifyPointData| (((|Void|) $ (|NonNegativeInteger|) (|Point| (|DoubleFloat|))) "\\spad{modifyPointData(v,ind,pt)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} and places the data point,{} \\spad{pt} into the list of points database of \\spad{v} at the index location given by \\spad{ind}.")) (|subspace| (($ $ (|ThreeSpace| (|DoubleFloat|))) "\\spad{subspace(v,sp)} places the contents of the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} in the subspace \\spad{sp},{} which is of the domain \\spad{ThreeSpace}.") (((|ThreeSpace| (|DoubleFloat|)) $) "\\spad{subspace(v)} returns the contents of the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} as a subspace of the domain \\spad{ThreeSpace}.")) (|makeViewport3D| (($ (|ThreeSpace| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{makeViewport3D(sp,lopt)} takes the given space,{} \\spad{sp} which is of the domain \\spadtype{ThreeSpace} and displays a viewport window on the screen which contains the contents of \\spad{sp},{} and whose draw options are indicated by the list \\spad{lopt},{} which is a list of options from the domain \\spad{DrawOption}.") (($ (|ThreeSpace| (|DoubleFloat|)) (|String|)) "\\spad{makeViewport3D(sp,s)} takes the given space,{} \\spad{sp} which is of the domain \\spadtype{ThreeSpace} and displays a viewport window on the screen which contains the contents of \\spad{sp},{} and whose title is given by \\spad{s}.") (($ $) "\\spad{makeViewport3D(v)} takes the given three-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{ThreeDimensionalViewport} and displays a viewport window on the screen which contains the contents of \\spad{v}.")) (|viewport3D| (($) "\\spad{viewport3D()} returns an undefined three-dimensional viewport of the domain \\spadtype{ThreeDimensionalViewport} whose contents are empty.")) (|viewDeltaYDefault| (((|Float|) (|Float|)) "\\spad{viewDeltaYDefault(dy)} sets the current default vertical offset from the center of the viewport window to be \\spad{dy} and returns \\spad{dy}.") (((|Float|)) "\\spad{viewDeltaYDefault()} returns the current default vertical offset from the center of the viewport window.")) (|viewDeltaXDefault| (((|Float|) (|Float|)) "\\spad{viewDeltaXDefault(dx)} sets the current default horizontal offset from the center of the viewport window to be \\spad{dx} and returns \\spad{dx}.") (((|Float|)) "\\spad{viewDeltaXDefault()} returns the current default horizontal offset from the center of the viewport window.")) (|viewZoomDefault| (((|Float|) (|Float|)) "\\spad{viewZoomDefault(s)} sets the current default graph scaling value to \\spad{s} and returns \\spad{s}.") (((|Float|)) "\\spad{viewZoomDefault()} returns the current default graph scaling value.")) (|viewPhiDefault| (((|Float|) (|Float|)) "\\spad{viewPhiDefault(p)} sets the current default latitudinal view angle in radians to the value \\spad{p} and returns \\spad{p}.") (((|Float|)) "\\spad{viewPhiDefault()} returns the current default latitudinal view angle in radians.")) (|viewThetaDefault| (((|Float|) (|Float|)) "\\spad{viewThetaDefault(t)} sets the current default longitudinal view angle in radians to the value \\spad{t} and returns \\spad{t}.") (((|Float|)) "\\spad{viewThetaDefault()} returns the current default longitudinal view angle in radians.")))
NIL
NIL
-(-1279)
+(-1280)
((|constructor| (NIL "ViewportDefaultsPackage describes default and user definable values for graphics")) (|tubeRadiusDefault| (((|DoubleFloat|)) "\\spad{tubeRadiusDefault()} returns the radius used for a 3D tube plot.") (((|DoubleFloat|) (|Float|)) "\\spad{tubeRadiusDefault(r)} sets the default radius for a 3D tube plot to \\spad{r}.")) (|tubePointsDefault| (((|PositiveInteger|)) "\\spad{tubePointsDefault()} returns the number of points to be used when creating the circle to be used in creating a 3D tube plot.") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{tubePointsDefault(i)} sets the number of points to use when creating the circle to be used in creating a 3D tube plot to \\spad{i}.")) (|var2StepsDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{var2StepsDefault(i)} sets the number of steps to take when creating a 3D mesh in the direction of the first defined free variable to \\spad{i} (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).") (((|PositiveInteger|)) "\\spad{var2StepsDefault()} is the current setting for the number of steps to take when creating a 3D mesh in the direction of the first defined free variable (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).")) (|var1StepsDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{var1StepsDefault(i)} sets the number of steps to take when creating a 3D mesh in the direction of the first defined free variable to \\spad{i} (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).") (((|PositiveInteger|)) "\\spad{var1StepsDefault()} is the current setting for the number of steps to take when creating a 3D mesh in the direction of the first defined free variable (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).")) (|viewWriteAvailable| (((|List| (|String|))) "\\spad{viewWriteAvailable()} returns a list of available methods for writing,{} such as BITMAP,{} POSTSCRIPT,{} etc.")) (|viewWriteDefault| (((|List| (|String|)) (|List| (|String|))) "\\spad{viewWriteDefault(l)} sets the default list of things to write in a viewport data file to the strings in \\spad{l}; a viewAlone file is always genereated.") (((|List| (|String|))) "\\spad{viewWriteDefault()} returns the list of things to write in a viewport data file; a viewAlone file is always generated.")) (|viewDefaults| (((|Void|)) "\\spad{viewDefaults()} resets all the default graphics settings.")) (|viewSizeDefault| (((|List| (|PositiveInteger|)) (|List| (|PositiveInteger|))) "\\spad{viewSizeDefault([w,h])} sets the default viewport width to \\spad{w} and height to \\spad{h}.") (((|List| (|PositiveInteger|))) "\\spad{viewSizeDefault()} returns the default viewport width and height.")) (|viewPosDefault| (((|List| (|NonNegativeInteger|)) (|List| (|NonNegativeInteger|))) "\\spad{viewPosDefault([x,y])} sets the default \\spad{X} and \\spad{Y} position of a viewport window unless overriden explicityly,{} newly created viewports will have th \\spad{X} and \\spad{Y} coordinates \\spad{x},{} \\spad{y}.") (((|List| (|NonNegativeInteger|))) "\\spad{viewPosDefault()} returns the default \\spad{X} and \\spad{Y} position of a viewport window unless overriden explicityly,{} newly created viewports will have this \\spad{X} and \\spad{Y} coordinate.")) (|pointSizeDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{pointSizeDefault(i)} sets the default size of the points in a 2D viewport to \\spad{i}.") (((|PositiveInteger|)) "\\spad{pointSizeDefault()} returns the default size of the points in a 2D viewport.")) (|unitsColorDefault| (((|Palette|) (|Palette|)) "\\spad{unitsColorDefault(p)} sets the default color of the unit ticks in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{unitsColorDefault()} returns the default color of the unit ticks in a 2D viewport.")) (|axesColorDefault| (((|Palette|) (|Palette|)) "\\spad{axesColorDefault(p)} sets the default color of the axes in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{axesColorDefault()} returns the default color of the axes in a 2D viewport.")) (|lineColorDefault| (((|Palette|) (|Palette|)) "\\spad{lineColorDefault(p)} sets the default color of lines connecting points in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{lineColorDefault()} returns the default color of lines connecting points in a 2D viewport.")) (|pointColorDefault| (((|Palette|) (|Palette|)) "\\spad{pointColorDefault(p)} sets the default color of points in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{pointColorDefault()} returns the default color of points in a 2D viewport.")))
NIL
NIL
-(-1280)
+(-1281)
((|constructor| (NIL "ViewportPackage provides functions for creating GraphImages and TwoDimensionalViewports from lists of lists of points.")) (|coerce| (((|TwoDimensionalViewport|) (|GraphImage|)) "\\spad{coerce(gi)} converts the indicated \\spadtype{GraphImage},{} \\spad{gi},{} into the \\spadtype{TwoDimensionalViewport} form.")) (|drawCurves| (((|TwoDimensionalViewport|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|DrawOption|))) "\\spad{drawCurves([[p0],[p1],...,[pn]],[options])} creates a \\spadtype{TwoDimensionalViewport} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}.") (((|TwoDimensionalViewport|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|Palette|) (|Palette|) (|PositiveInteger|) (|List| (|DrawOption|))) "\\spad{drawCurves([[p0],[p1],...,[pn]],ptColor,lineColor,ptSize,[options])} creates a \\spadtype{TwoDimensionalViewport} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}. The point color is specified by \\spad{ptColor},{} the line color is specified by \\spad{lineColor},{} and the point size is specified by \\spad{ptSize}.")) (|graphCurves| (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|DrawOption|))) "\\spad{graphCurves([[p0],[p1],...,[pn]],[options])} creates a \\spadtype{GraphImage} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}.") (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{graphCurves([[p0],[p1],...,[pn]])} creates a \\spadtype{GraphImage} from the list of lists of points indicated by \\spad{p0} through \\spad{pn}.") (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|Palette|) (|Palette|) (|PositiveInteger|) (|List| (|DrawOption|))) "\\spad{graphCurves([[p0],[p1],...,[pn]],ptColor,lineColor,ptSize,[options])} creates a \\spadtype{GraphImage} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}. The graph point color is specified by \\spad{ptColor},{} the graph line color is specified by \\spad{lineColor},{} and the size of the points is specified by \\spad{ptSize}.")))
NIL
NIL
-(-1281)
+(-1282)
((|constructor| (NIL "This type is used when no value is needed,{} \\spadignore{e.g.} in the \\spad{then} part of a one armed \\spad{if}. All values can be coerced to type Void. Once a value has been coerced to Void,{} it cannot be recovered.")) (|void| (($) "\\spad{void()} produces a void object.")))
NIL
NIL
-(-1282 A S)
+(-1283 A S)
((|constructor| (NIL "Vector Spaces (not necessarily finite dimensional) over a field.")) (|dimension| (((|CardinalNumber|)) "\\spad{dimension()} returns the dimensionality of the vector space.")) (/ (($ $ |#2|) "\\spad{x/y} divides the vector \\spad{x} by the scalar \\spad{y}.")))
NIL
NIL
-(-1283 S)
+(-1284 S)
((|constructor| (NIL "Vector Spaces (not necessarily finite dimensional) over a field.")) (|dimension| (((|CardinalNumber|)) "\\spad{dimension()} returns the dimensionality of the vector space.")) (/ (($ $ |#1|) "\\spad{x/y} divides the vector \\spad{x} by the scalar \\spad{y}.")))
-((-4443 . T) (-4442 . T))
+((-4444 . T) (-4443 . T))
NIL
-(-1284 R)
+(-1285 R)
((|constructor| (NIL "This package implements the Weierstrass preparation theorem \\spad{f} or multivariate power series. weierstrass(\\spad{v},{}\\spad{p}) where \\spad{v} is a variable,{} and \\spad{p} is a TaylorSeries(\\spad{R}) in which the terms of lowest degree \\spad{s} must include c*v**s where \\spad{c} is a constant,{}\\spad{s>0},{} is a list of TaylorSeries coefficients A[\\spad{i}] of the equivalent polynomial A = A[0] + A[1]\\spad{*v} + A[2]*v**2 + ... + A[\\spad{s}-1]*v**(\\spad{s}-1) + v**s such that p=A*B ,{} \\spad{B} being a TaylorSeries of minimum degree 0")) (|qqq| (((|Mapping| (|Stream| (|TaylorSeries| |#1|)) (|Stream| (|TaylorSeries| |#1|))) (|NonNegativeInteger|) (|TaylorSeries| |#1|) (|Stream| (|TaylorSeries| |#1|))) "\\spad{qqq(n,s,st)} is used internally.")) (|weierstrass| (((|List| (|TaylorSeries| |#1|)) (|Symbol|) (|TaylorSeries| |#1|)) "\\spad{weierstrass(v,ts)} where \\spad{v} is a variable and \\spad{ts} is \\indented{1}{a TaylorSeries,{} impements the Weierstrass Preparation} \\indented{1}{Theorem. The result is a list of TaylorSeries that} \\indented{1}{are the coefficients of the equivalent series.}")) (|clikeUniv| (((|Mapping| (|SparseUnivariatePolynomial| (|Polynomial| |#1|)) (|Polynomial| |#1|)) (|Symbol|)) "\\spad{clikeUniv(v)} is used internally.")) (|sts2stst| (((|Stream| (|Stream| (|Polynomial| |#1|))) (|Symbol|) (|Stream| (|Polynomial| |#1|))) "\\spad{sts2stst(v,s)} is used internally.")) (|cfirst| (((|Mapping| (|Stream| (|Polynomial| |#1|)) (|Stream| (|Polynomial| |#1|))) (|NonNegativeInteger|)) "\\spad{cfirst n} is used internally.")) (|crest| (((|Mapping| (|Stream| (|Polynomial| |#1|)) (|Stream| (|Polynomial| |#1|))) (|NonNegativeInteger|)) "\\spad{crest n} is used internally.")))
NIL
NIL
-(-1285 K R UP -1674)
+(-1286 K R UP -1674)
((|constructor| (NIL "In this package \\spad{K} is a finite field,{} \\spad{R} is a ring of univariate polynomials over \\spad{K},{} and \\spad{F} is a framed algebra over \\spad{R}. The package provides a function to compute the integral closure of \\spad{R} in the quotient field of \\spad{F} as well as a function to compute a \"local integral basis\" at a specific prime.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) |#2|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,basisDen,basisInv]} containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn}. If \\spad{basis} is the matrix \\spad{(aij, i = 1..n, j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{vi = (1/basisDen) * sum(aij * wj, j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{wi} with respect to the basis \\spad{v1,...,vn}: if \\spad{basisInv} is the matrix \\spad{(bij, i = 1..n, j = 1..n)},{} then \\spad{wi = sum(bij * vj, j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,basisDen,basisInv]} containing information regarding the integral closure of \\spad{R} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn}. If \\spad{basis} is the matrix \\spad{(aij, i = 1..n, j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{vi = (1/basisDen) * sum(aij * wj, j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{wi} with respect to the basis \\spad{v1,...,vn}: if \\spad{basisInv} is the matrix \\spad{(bij, i = 1..n, j = 1..n)},{} then \\spad{wi = sum(bij * vj, j = 1..n)}.")))
NIL
NIL
-(-1286)
+(-1287)
((|constructor| (NIL "This domain represents the syntax of a `where' expression.")) (|qualifier| (((|SpadAst|) $) "\\spad{qualifier(e)} returns the qualifier of the expression `e'.")) (|mainExpression| (((|SpadAst|) $) "\\spad{mainExpression(e)} returns the main expression of the `where' expression `e'.")))
NIL
NIL
-(-1287)
+(-1288)
((|constructor| (NIL "This domain represents the `while' iterator syntax.")) (|condition| (((|SpadAst|) $) "\\spad{condition(i)} returns the condition of the while iterator `i'.")))
NIL
NIL
-(-1288 R |VarSet| E P |vl| |wl| |wtlevel|)
+(-1289 R |VarSet| E P |vl| |wl| |wtlevel|)
((|constructor| (NIL "This domain represents truncated weighted polynomials over a general (not necessarily commutative) polynomial type. The variables must be specified,{} as must the weights. The representation is sparse in the sense that only non-zero terms are represented.")) (|changeWeightLevel| (((|Void|) (|NonNegativeInteger|)) "\\spad{changeWeightLevel(n)} changes the weight level to the new value given: \\spad{NB:} previously calculated terms are not affected")) (/ (((|Union| $ "failed") $ $) "\\spad{x/y} division (only works if minimum weight of divisor is zero,{} and if \\spad{R} is a Field)")))
-((-4443 |has| |#1| (-174)) (-4442 |has| |#1| (-174)) (-4445 . T))
+((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))))
-(-1289 R E V P)
+(-1290 R E V P)
((|constructor| (NIL "A domain constructor of the category \\axiomType{GeneralTriangularSet}. The only requirement for a list of polynomials to be a member of such a domain is the following: no polynomial is constant and two distinct polynomials have distinct main variables. Such a triangular set may not be auto-reduced or consistent. The \\axiomOpFrom{construct}{WuWenTsunTriangularSet} operation does not check the previous requirement. Triangular sets are stored as sorted lists \\spad{w}.\\spad{r}.\\spad{t}. the main variables of their members. Furthermore,{} this domain exports operations dealing with the characteristic set method of Wu Wen Tsun and some optimizations mainly proposed by Dong Ming Wang.\\newline References : \\indented{1}{[1] \\spad{W}. \\spad{T}. WU \"A Zero Structure Theorem for polynomial equations solving\"} \\indented{6}{\\spad{MM} Research Preprints,{} 1987.} \\indented{1}{[2] \\spad{D}. \\spad{M}. WANG \"An implementation of the characteristic set method in Maple\"} \\indented{6}{Proc. DISCO'92. Bath,{} England.}")) (|characteristicSerie| (((|List| $) (|List| |#4|)) "\\axiom{characteristicSerie(\\spad{ps})} returns the same as \\axiom{characteristicSerie(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|List| $) (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{characteristicSerie(\\spad{ps},{}redOp?,{}redOp)} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{ps}} is the union of the regular zero sets of the members of \\axiom{\\spad{lts}}. This is made by the Ritt and Wu Wen Tsun process applying the operation \\axiom{characteristicSet(\\spad{ps},{}redOp?,{}redOp)} to compute characteristic sets in Wu Wen Tsun sense.")) (|characteristicSet| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{characteristicSet(\\spad{ps})} returns the same as \\axiom{characteristicSet(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|Union| $ "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{characteristicSet(\\spad{ps},{}redOp?,{}redOp)} returns a non-contradictory characteristic set of \\axiom{\\spad{ps}} in Wu Wen Tsun sense \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?} (using \\axiom{redOp} to reduce polynomials \\spad{w}.\\spad{r}.\\spad{t} a \\axiom{redOp?} basic set),{} if no non-zero constant polynomial appear during those reductions,{} else \\axiom{\"failed\"} is returned. The operations \\axiom{redOp} and \\axiom{redOp?} must satisfy the following conditions: \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} holds for every polynomials \\axiom{\\spad{p},{}\\spad{q}} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that we have \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|medialSet| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{medial(\\spad{ps})} returns the same as \\axiom{medialSet(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|Union| $ "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{medialSet(\\spad{ps},{}redOp?,{}redOp)} returns \\axiom{\\spad{bs}} a basic set (in Wu Wen Tsun sense \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?}) of some set generating the same ideal as \\axiom{\\spad{ps}} (with rank not higher than any basic set of \\axiom{\\spad{ps}}),{} if no non-zero constant polynomials appear during the computatioms,{} else \\axiom{\"failed\"} is returned. In the former case,{} \\axiom{\\spad{bs}} has to be understood as a candidate for being a characteristic set of \\axiom{\\spad{ps}}. In the original algorithm,{} \\axiom{\\spad{bs}} is simply a basic set of \\axiom{\\spad{ps}}.")))
-((-4449 . T) (-4448 . T))
+((-4450 . T) (-4449 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#4| (LIST (QUOTE -313) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#4| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#3| (QUOTE (-373))) (|HasCategory| |#4| (LIST (QUOTE -619) (QUOTE (-868)))))
-(-1290 R)
+(-1291 R)
((|constructor| (NIL "This is the category of algebras over non-commutative rings. It is used by constructors of non-commutative algebras such as: \\indented{4}{\\spadtype{XPolynomialRing}.} \\indented{4}{\\spadtype{XFreeAlgebra}} Author: Michel Petitot (petitot@lifl.\\spad{fr})")))
-((-4442 . T) (-4443 . T) (-4445 . T))
+((-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1291 |vl| R)
+(-1292 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables do not commute. The coefficient ring may be non-commutative too. However,{} coefficients and variables commute.")))
-((-4445 . T) (-4441 |has| |#2| (-6 -4441)) (-4443 . T) (-4442 . T))
-((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4441)))
-(-1292 R |VarSet| XPOLY)
+((-4446 . T) (-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T))
+((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4442)))
+(-1293 R |VarSet| XPOLY)
((|constructor| (NIL "This package provides computations of logarithms and exponentials for polynomials in non-commutative variables. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|Hausdorff| ((|#3| |#3| |#3| (|NonNegativeInteger|)) "\\axiom{Hausdorff(a,{}\\spad{b},{}\\spad{n})} returns log(exp(a)*exp(\\spad{b})) truncated at order \\axiom{\\spad{n}}.")) (|log| ((|#3| |#3| (|NonNegativeInteger|)) "\\axiom{log(\\spad{p},{} \\spad{n})} returns the logarithm of \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")) (|exp| ((|#3| |#3| (|NonNegativeInteger|)) "\\axiom{exp(\\spad{p},{} \\spad{n})} returns the exponential of \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")))
NIL
NIL
-(-1293 |vl| R)
+(-1294 |vl| R)
((|constructor| (NIL "This category specifies opeations for polynomials and formal series with non-commutative variables.")) (|varList| (((|List| |#1|) $) "\\spad{varList(x)} returns the list of variables which appear in \\spad{x}.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(fn,x)} returns \\spad{Sum(fn(r_i) w_i)} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|sh| (($ $ (|NonNegativeInteger|)) "\\spad{sh(x,n)} returns the shuffle power of \\spad{x} to the \\spad{n}.") (($ $ $) "\\spad{sh(x,y)} returns the shuffle-product of \\spad{x} by \\spad{y}. This multiplication is associative and commutative.")) (|quasiRegular| (($ $) "\\spad{quasiRegular(x)} return \\spad{x} minus its constant term.")) (|quasiRegular?| (((|Boolean|) $) "\\spad{quasiRegular?(x)} return \\spad{true} if \\spad{constant(x)} is zero.")) (|constant| ((|#2| $) "\\spad{constant(x)} returns the constant term of \\spad{x}.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(x)} returns \\spad{true} if \\spad{x} is constant.")) (|coerce| (($ |#1|) "\\spad{coerce(v)} returns \\spad{v}.")) (|mirror| (($ $) "\\spad{mirror(x)} returns \\spad{Sum(r_i mirror(w_i))} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} returns \\spad{true} if \\spad{x} is a monomial")) (|monom| (($ (|OrderedFreeMonoid| |#1|) |#2|) "\\spad{monom(w,r)} returns the product of the word \\spad{w} by the coefficient \\spad{r}.")) (|rquo| (($ $ $) "\\spad{rquo(x,y)} returns the right simplification of \\spad{x} by \\spad{y}.") (($ $ (|OrderedFreeMonoid| |#1|)) "\\spad{rquo(x,w)} returns the right simplification of \\spad{x} by \\spad{w}.") (($ $ |#1|) "\\spad{rquo(x,v)} returns the right simplification of \\spad{x} by the variable \\spad{v}.")) (|lquo| (($ $ $) "\\spad{lquo(x,y)} returns the left simplification of \\spad{x} by \\spad{y}.") (($ $ (|OrderedFreeMonoid| |#1|)) "\\spad{lquo(x,w)} returns the left simplification of \\spad{x} by the word \\spad{w}.") (($ $ |#1|) "\\spad{lquo(x,v)} returns the left simplification of \\spad{x} by the variable \\spad{v}.")) (|coef| ((|#2| $ $) "\\spad{coef(x,y)} returns scalar product of \\spad{x} by \\spad{y},{} the set of words being regarded as an orthogonal basis.") ((|#2| $ (|OrderedFreeMonoid| |#1|)) "\\spad{coef(x,w)} returns the coefficient of the word \\spad{w} in \\spad{x}.")) (|mindegTerm| (((|Record| (|:| |k| (|OrderedFreeMonoid| |#1|)) (|:| |c| |#2|)) $) "\\spad{mindegTerm(x)} returns the term whose word is \\spad{mindeg(x)}.")) (|mindeg| (((|OrderedFreeMonoid| |#1|) $) "\\spad{mindeg(x)} returns the little word which appears in \\spad{x}. Error if \\spad{x=0}.")) (* (($ $ |#2|) "\\spad{x * r} returns the product of \\spad{x} by \\spad{r}. Usefull if \\spad{R} is a non-commutative Ring.") (($ |#1| $) "\\spad{v * x} returns the product of a variable \\spad{x} by \\spad{x}.")))
-((-4441 |has| |#2| (-6 -4441)) (-4443 . T) (-4442 . T) (-4445 . T))
+((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
-(-1294 S -1674)
+(-1295 S -1674)
((|constructor| (NIL "ExtensionField {\\em F} is the category of fields which extend the field \\spad{F}")) (|Frobenius| (($ $ (|NonNegativeInteger|)) "\\spad{Frobenius(a,s)} returns \\spad{a**(q**s)} where \\spad{q} is the size()\\$\\spad{F}.") (($ $) "\\spad{Frobenius(a)} returns \\spad{a ** q} where \\spad{q} is the \\spad{size()\\$F}.")) (|transcendenceDegree| (((|NonNegativeInteger|)) "\\spad{transcendenceDegree()} returns the transcendence degree of the field extension,{} 0 if the extension is algebraic.")) (|extensionDegree| (((|OnePointCompletion| (|PositiveInteger|))) "\\spad{extensionDegree()} returns the degree of the field extension if the extension is algebraic,{} and \\spad{infinity} if it is not.")) (|degree| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{degree(a)} returns the degree of minimal polynomial of an element \\spad{a} if \\spad{a} is algebraic with respect to the ground field \\spad{F},{} and \\spad{infinity} otherwise.")) (|inGroundField?| (((|Boolean|) $) "\\spad{inGroundField?(a)} tests whether an element \\spad{a} is already in the ground field \\spad{F}.")) (|transcendent?| (((|Boolean|) $) "\\spad{transcendent?(a)} tests whether an element \\spad{a} is transcendent with respect to the ground field \\spad{F}.")) (|algebraic?| (((|Boolean|) $) "\\spad{algebraic?(a)} tests whether an element \\spad{a} is algebraic with respect to the ground field \\spad{F}.")))
NIL
((|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-148))))
-(-1295 -1674)
+(-1296 -1674)
((|constructor| (NIL "ExtensionField {\\em F} is the category of fields which extend the field \\spad{F}")) (|Frobenius| (($ $ (|NonNegativeInteger|)) "\\spad{Frobenius(a,s)} returns \\spad{a**(q**s)} where \\spad{q} is the size()\\$\\spad{F}.") (($ $) "\\spad{Frobenius(a)} returns \\spad{a ** q} where \\spad{q} is the \\spad{size()\\$F}.")) (|transcendenceDegree| (((|NonNegativeInteger|)) "\\spad{transcendenceDegree()} returns the transcendence degree of the field extension,{} 0 if the extension is algebraic.")) (|extensionDegree| (((|OnePointCompletion| (|PositiveInteger|))) "\\spad{extensionDegree()} returns the degree of the field extension if the extension is algebraic,{} and \\spad{infinity} if it is not.")) (|degree| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{degree(a)} returns the degree of minimal polynomial of an element \\spad{a} if \\spad{a} is algebraic with respect to the ground field \\spad{F},{} and \\spad{infinity} otherwise.")) (|inGroundField?| (((|Boolean|) $) "\\spad{inGroundField?(a)} tests whether an element \\spad{a} is already in the ground field \\spad{F}.")) (|transcendent?| (((|Boolean|) $) "\\spad{transcendent?(a)} tests whether an element \\spad{a} is transcendent with respect to the ground field \\spad{F}.")) (|algebraic?| (((|Boolean|) $) "\\spad{algebraic?(a)} tests whether an element \\spad{a} is algebraic with respect to the ground field \\spad{F}.")))
-((-4440 . T) (-4446 . T) (-4441 . T) ((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
-(-1296 |VarSet| R)
+(-1297 |VarSet| R)
((|constructor| (NIL "This domain constructor implements polynomials in non-commutative variables written in the Poincare-Birkhoff-Witt basis from the Lyndon basis. These polynomials can be used to compute Baker-Campbell-Hausdorff relations. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|log| (($ $ (|NonNegativeInteger|)) "\\axiom{log(\\spad{p},{}\\spad{n})} returns the logarithm of \\axiom{\\spad{p}} (truncated up to order \\axiom{\\spad{n}}).")) (|exp| (($ $ (|NonNegativeInteger|)) "\\axiom{exp(\\spad{p},{}\\spad{n})} returns the exponential of \\axiom{\\spad{p}} (truncated up to order \\axiom{\\spad{n}}).")) (|product| (($ $ $ (|NonNegativeInteger|)) "\\axiom{product(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a*b} (truncated up to order \\axiom{\\spad{n}}).")) (|LiePolyIfCan| (((|Union| (|LiePolynomial| |#1| |#2|) "failed") $) "\\axiom{LiePolyIfCan(\\spad{p})} return \\axiom{\\spad{p}} if \\axiom{\\spad{p}} is a Lie polynomial.")) (|coerce| (((|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}} as a recursive polynomial.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}} as a distributed polynomial.") (($ (|LiePolynomial| |#1| |#2|)) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}}.")))
-((-4441 |has| |#2| (-6 -4441)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -723) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasAttribute| |#2| (QUOTE -4441)))
-(-1297 |vl| R)
+((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -723) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasAttribute| |#2| (QUOTE -4442)))
+(-1298 |vl| R)
((|constructor| (NIL "The Category of polynomial rings with non-commutative variables. The coefficient ring may be non-commutative too. However coefficients commute with vaiables.")) (|trunc| (($ $ (|NonNegativeInteger|)) "\\spad{trunc(p,n)} returns the polynomial \\spad{p} truncated at order \\spad{n}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} returns the degree of \\spad{p}. \\indented{1}{Note that the degree of a word is its length.}")) (|maxdeg| (((|OrderedFreeMonoid| |#1|) $) "\\spad{maxdeg(p)} returns the greatest leading word in the support of \\spad{p}.")))
-((-4441 |has| |#2| (-6 -4441)) (-4443 . T) (-4442 . T) (-4445 . T))
+((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
NIL
-(-1298 R)
+(-1299 R)
((|constructor| (NIL "\\indented{2}{This type supports multivariate polynomials} whose set of variables is \\spadtype{Symbol}. The representation is recursive. The coefficient ring may be non-commutative and the variables do not commute. However,{} coefficients and variables commute.")))
-((-4441 |has| |#1| (-6 -4441)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#1| (QUOTE (-174))) (|HasAttribute| |#1| (QUOTE -4441)))
-(-1299 R E)
+((-4442 |has| |#1| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-174))) (|HasAttribute| |#1| (QUOTE -4442)))
+(-1300 R E)
((|constructor| (NIL "This domain represents generalized polynomials with coefficients (from a not necessarily commutative ring),{} and words belonging to an arbitrary \\spadtype{OrderedMonoid}. This type is used,{} for instance,{} by the \\spadtype{XDistributedPolynomial} domain constructor where the Monoid is free.")) (|canonicalUnitNormal| ((|attribute|) "canonicalUnitNormal guarantees that the function unitCanonical returns the same representative for all associates of any particular element.")) (/ (($ $ |#1|) "\\spad{p/r} returns \\spad{p*(1/r)}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,x)} returns \\spad{Sum(fn(r_i) w_i)} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|quasiRegular| (($ $) "\\spad{quasiRegular(x)} return \\spad{x} minus its constant term.")) (|quasiRegular?| (((|Boolean|) $) "\\spad{quasiRegular?(x)} return \\spad{true} if \\spad{constant(p)} is zero.")) (|constant| ((|#1| $) "\\spad{constant(p)} return the constant term of \\spad{p}.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(p)} tests whether the polynomial \\spad{p} belongs to the coefficient ring.")) (|coef| ((|#1| $ |#2|) "\\spad{coef(p,e)} extracts the coefficient of the monomial \\spad{e}. Returns zero if \\spad{e} is not present.")) (|reductum| (($ $) "\\spad{reductum(p)} returns \\spad{p} minus its leading term. An error is produced if \\spad{p} is zero.")) (|mindeg| ((|#2| $) "\\spad{mindeg(p)} returns the smallest word occurring in the polynomial \\spad{p} with a non-zero coefficient. An error is produced if \\spad{p} is zero.")) (|maxdeg| ((|#2| $) "\\spad{maxdeg(p)} returns the greatest word occurring in the polynomial \\spad{p} with a non-zero coefficient. An error is produced if \\spad{p} is zero.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# p} returns the number of terms in \\spad{p}.")) (* (($ $ |#1|) "\\spad{p*r} returns the product of \\spad{p} by \\spad{r}.")))
-((-4445 . T) (-4446 |has| |#1| (-6 -4446)) (-4441 |has| |#1| (-6 -4441)) (-4443 . T) (-4442 . T))
-((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4445)) (|HasAttribute| |#1| (QUOTE -4446)) (|HasAttribute| |#1| (QUOTE -4441)))
-(-1300 |VarSet| R)
+((-4446 . T) (-4447 |has| |#1| (-6 -4447)) (-4442 |has| |#1| (-6 -4442)) (-4444 . T) (-4443 . T))
+((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4446)) (|HasAttribute| |#1| (QUOTE -4447)) (|HasAttribute| |#1| (QUOTE -4442)))
+(-1301 |VarSet| R)
((|constructor| (NIL "\\indented{2}{This type supports multivariate polynomials} whose variables do not commute. The representation is recursive. The coefficient ring may be non-commutative. Coefficients and variables commute.")) (|RemainderList| (((|List| (|Record| (|:| |k| |#1|) (|:| |c| $))) $) "\\spad{RemainderList(p)} returns the regular part of \\spad{p} as a list of terms.")) (|unexpand| (($ (|XDistributedPolynomial| |#1| |#2|)) "\\spad{unexpand(p)} returns \\spad{p} in recursive form.")) (|expand| (((|XDistributedPolynomial| |#1| |#2|) $) "\\spad{expand(p)} returns \\spad{p} in distributed form.")))
-((-4441 |has| |#2| (-6 -4441)) (-4443 . T) (-4442 . T) (-4445 . T))
-((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4441)))
-(-1301 A)
+((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4442)))
+(-1302 A)
((|constructor| (NIL "This package implements fixed-point computations on streams.")) (Y (((|List| (|Stream| |#1|)) (|Mapping| (|List| (|Stream| |#1|)) (|List| (|Stream| |#1|))) (|Integer|)) "\\spad{Y(g,n)} computes a fixed point of the function \\spad{g},{} where \\spad{g} takes a list of \\spad{n} streams and returns a list of \\spad{n} streams.") (((|Stream| |#1|) (|Mapping| (|Stream| |#1|) (|Stream| |#1|))) "\\spad{Y(f)} computes a fixed point of the function \\spad{f}.")))
NIL
NIL
-(-1302 R |ls| |ls2|)
+(-1303 R |ls| |ls2|)
((|constructor| (NIL "A package for computing symbolically the complex and real roots of zero-dimensional algebraic systems over the integer or rational numbers. Complex roots are given by means of univariate representations of irreducible regular chains. Real roots are given by means of tuples of coordinates lying in the \\spadtype{RealClosure} of the coefficient ring. This constructor takes three arguments. The first one \\spad{R} is the coefficient ring. The second one \\spad{ls} is the list of variables involved in the systems to solve. The third one must be \\spad{concat(ls,s)} where \\spad{s} is an additional symbol used for the univariate representations. WARNING: The third argument is not checked. All operations are based on triangular decompositions. The default is to compute these decompositions directly from the input system by using the \\spadtype{RegularChain} domain constructor. The lexTriangular algorithm can also be used for computing these decompositions (see the \\spadtype{LexTriangularPackage} package constructor). For that purpose,{} the operations \\axiomOpFrom{univariateSolve}{ZeroDimensionalSolvePackage},{} \\axiomOpFrom{realSolve}{ZeroDimensionalSolvePackage} and \\axiomOpFrom{positiveSolve}{ZeroDimensionalSolvePackage} admit an optional argument. \\newline Author: Marc Moreno Maza.")) (|convert| (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|))) (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#3|)) (|OrderedVariableList| |#3|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)))) "\\spad{convert(st)} returns the members of \\spad{st}.") (((|SparseUnivariatePolynomial| (|RealClosure| (|Fraction| |#1|))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{convert(u)} converts \\spad{u}.") (((|Polynomial| (|RealClosure| (|Fraction| |#1|))) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|))) "\\spad{convert(q)} converts \\spad{q}.") (((|Polynomial| (|RealClosure| (|Fraction| |#1|))) (|Polynomial| |#1|)) "\\spad{convert(p)} converts \\spad{p}.") (((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) "\\spad{convert(q)} converts \\spad{q}.")) (|squareFree| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#3|)) (|OrderedVariableList| |#3|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)))) (|RegularChain| |#1| |#2|)) "\\spad{squareFree(ts)} returns the square-free factorization of \\spad{ts}. Moreover,{} each factor is a Lazard triangular set and the decomposition is a Kalkbrener split of \\spad{ts},{} which is enough here for the matter of solving zero-dimensional algebraic systems. WARNING: \\spad{ts} is not checked to be zero-dimensional.")) (|positiveSolve| (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|))) "\\spad{positiveSolve(lp)} returns the same as \\spad{positiveSolve(lp,false,false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{positiveSolve(lp)} returns the same as \\spad{positiveSolve(lp,info?,false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{positiveSolve(lp,info?,lextri?)} returns the set of the points in the variety associated with \\spad{lp} whose coordinates are (real) strictly positive. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during decomposition into regular chains. If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}. WARNING: For each set of coordinates given by \\spad{positiveSolve(lp,info?,lextri?)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|RegularChain| |#1| |#2|)) "\\spad{positiveSolve(ts)} returns the points of the regular set of \\spad{ts} with (real) strictly positive coordinates.")) (|realSolve| (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|))) "\\spad{realSolve(lp)} returns the same as \\spad{realSolve(ts,false,false,false)}") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{realSolve(ts,info?)} returns the same as \\spad{realSolve(ts,info?,false,false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{realSolve(ts,info?,check?)} returns the same as \\spad{realSolve(ts,info?,check?,false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{realSolve(ts,info?,check?,lextri?)} returns the set of the points in the variety associated with \\spad{lp} whose coordinates are all real. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during decomposition into regular chains. If \\spad{check?} is \\spad{true} then the result is checked. If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}. WARNING: For each set of coordinates given by \\spad{realSolve(ts,info?,check?,lextri?)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|RegularChain| |#1| |#2|)) "\\spad{realSolve(ts)} returns the set of the points in the regular zero set of \\spad{ts} whose coordinates are all real. WARNING: For each set of coordinates given by \\spad{realSolve(ts)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.")) (|univariateSolve| (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|))) "\\spad{univariateSolve(lp)} returns the same as \\spad{univariateSolve(lp,false,false,false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{univariateSolve(lp,info?)} returns the same as \\spad{univariateSolve(lp,info?,false,false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{univariateSolve(lp,info?,check?)} returns the same as \\spad{univariateSolve(lp,info?,check?,false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{univariateSolve(lp,info?,check?,lextri?)} returns a univariate representation of the variety associated with \\spad{lp}. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during the decomposition into regular chains. If \\spad{check?} is \\spad{true} then the result is checked. See \\axiomOpFrom{rur}{RationalUnivariateRepresentationPackage}(\\spad{lp},{}\\spad{true}). If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|RegularChain| |#1| |#2|)) "\\spad{univariateSolve(ts)} returns a univariate representation of \\spad{ts}. See \\axiomOpFrom{rur}{RationalUnivariateRepresentationPackage}(\\spad{lp},{}\\spad{true}).")) (|triangSolve| (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|))) "\\spad{triangSolve(lp)} returns the same as \\spad{triangSolve(lp,false,false)}") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{triangSolve(lp,info?)} returns the same as \\spad{triangSolve(lp,false)}") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{triangSolve(lp,info?,lextri?)} decomposes the variety associated with \\axiom{\\spad{lp}} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{\\spad{lp}} is not zero-dimensional then the result is only a decomposition of its zero-set in the sense of the closure (\\spad{w}.\\spad{r}.\\spad{t}. Zarisky topology). Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during the computations. See \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory}(\\spad{lp},{}\\spad{true},{}\\spad{info?}). If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}.")))
NIL
NIL
-(-1303 R)
+(-1304 R)
((|constructor| (NIL "Test for linear dependence over the integers.")) (|solveLinearlyOverQ| (((|Union| (|Vector| (|Fraction| (|Integer|))) "failed") (|Vector| |#1|) |#1|) "\\spad{solveLinearlyOverQ([v1,...,vn], u)} returns \\spad{[c1,...,cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such rational numbers \\spad{ci}\\spad{'s} exist.")) (|linearDependenceOverZ| (((|Union| (|Vector| (|Integer|)) "failed") (|Vector| |#1|)) "\\spad{linearlyDependenceOverZ([v1,...,vn])} returns \\spad{[c1,...,cn]} if \\spad{c1*v1 + ... + cn*vn = 0} and not all the \\spad{ci}\\spad{'s} are 0,{} \"failed\" if the \\spad{vi}\\spad{'s} are linearly independent over the integers.")) (|linearlyDependentOverZ?| (((|Boolean|) (|Vector| |#1|)) "\\spad{linearlyDependentOverZ?([v1,...,vn])} returns \\spad{true} if the \\spad{vi}\\spad{'s} are linearly dependent over the integers,{} \\spad{false} otherwise.")))
NIL
NIL
-(-1304 |p|)
+(-1305 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4450 "*") . T) (-4442 . T) (-4443 . T) (-4445 . T))
+(((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
NIL
NIL
NIL
@@ -5164,4 +5168,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2267781 2267786 2267791 2267796) (-2 NIL 2267761 2267766 2267771 2267776) (-1 NIL 2267741 2267746 2267751 2267756) (0 NIL 2267721 2267726 2267731 2267736) (-1304 "ZMOD.spad" 2267530 2267543 2267659 2267716) (-1303 "ZLINDEP.spad" 2266596 2266607 2267520 2267525) (-1302 "ZDSOLVE.spad" 2256541 2256563 2266586 2266591) (-1301 "YSTREAM.spad" 2256036 2256047 2256531 2256536) (-1300 "XRPOLY.spad" 2255256 2255276 2255892 2255961) (-1299 "XPR.spad" 2253051 2253064 2254974 2255073) (-1298 "XPOLY.spad" 2252606 2252617 2252907 2252976) (-1297 "XPOLYC.spad" 2251925 2251941 2252532 2252601) (-1296 "XPBWPOLY.spad" 2250362 2250382 2251705 2251774) (-1295 "XF.spad" 2248825 2248840 2250264 2250357) (-1294 "XF.spad" 2247268 2247285 2248709 2248714) (-1293 "XFALG.spad" 2244316 2244332 2247194 2247263) (-1292 "XEXPPKG.spad" 2243567 2243593 2244306 2244311) (-1291 "XDPOLY.spad" 2243181 2243197 2243423 2243492) (-1290 "XALG.spad" 2242841 2242852 2243137 2243176) (-1289 "WUTSET.spad" 2238680 2238697 2242487 2242514) (-1288 "WP.spad" 2237879 2237923 2238538 2238605) (-1287 "WHILEAST.spad" 2237677 2237686 2237869 2237874) (-1286 "WHEREAST.spad" 2237348 2237357 2237667 2237672) (-1285 "WFFINTBS.spad" 2235011 2235033 2237338 2237343) (-1284 "WEIER.spad" 2233233 2233244 2235001 2235006) (-1283 "VSPACE.spad" 2232906 2232917 2233201 2233228) (-1282 "VSPACE.spad" 2232599 2232612 2232896 2232901) (-1281 "VOID.spad" 2232276 2232285 2232589 2232594) (-1280 "VIEW.spad" 2229956 2229965 2232266 2232271) (-1279 "VIEWDEF.spad" 2225157 2225166 2229946 2229951) (-1278 "VIEW3D.spad" 2209118 2209127 2225147 2225152) (-1277 "VIEW2D.spad" 2197009 2197018 2209108 2209113) (-1276 "VECTOR.spad" 2195683 2195694 2195934 2195961) (-1275 "VECTOR2.spad" 2194322 2194335 2195673 2195678) (-1274 "VECTCAT.spad" 2192226 2192237 2194290 2194317) (-1273 "VECTCAT.spad" 2189937 2189950 2192003 2192008) (-1272 "VARIABLE.spad" 2189717 2189732 2189927 2189932) (-1271 "UTYPE.spad" 2189361 2189370 2189707 2189712) (-1270 "UTSODETL.spad" 2188656 2188680 2189317 2189322) (-1269 "UTSODE.spad" 2186872 2186892 2188646 2188651) (-1268 "UTS.spad" 2181676 2181704 2185339 2185436) (-1267 "UTSCAT.spad" 2179155 2179171 2181574 2181671) (-1266 "UTSCAT.spad" 2176278 2176296 2178699 2178704) (-1265 "UTS2.spad" 2175873 2175908 2176268 2176273) (-1264 "URAGG.spad" 2170546 2170557 2175863 2175868) (-1263 "URAGG.spad" 2165183 2165196 2170502 2170507) (-1262 "UPXSSING.spad" 2162828 2162854 2164264 2164397) (-1261 "UPXS.spad" 2159982 2160010 2160960 2161109) (-1260 "UPXSCONS.spad" 2157741 2157761 2158114 2158263) (-1259 "UPXSCCA.spad" 2156312 2156332 2157587 2157736) (-1258 "UPXSCCA.spad" 2155025 2155047 2156302 2156307) (-1257 "UPXSCAT.spad" 2153614 2153630 2154871 2155020) (-1256 "UPXS2.spad" 2153157 2153210 2153604 2153609) (-1255 "UPSQFREE.spad" 2151571 2151585 2153147 2153152) (-1254 "UPSCAT.spad" 2149182 2149206 2151469 2151566) (-1253 "UPSCAT.spad" 2146499 2146525 2148788 2148793) (-1252 "UPOLYC.spad" 2141539 2141550 2146341 2146494) (-1251 "UPOLYC.spad" 2136471 2136484 2141275 2141280) (-1250 "UPOLYC2.spad" 2135942 2135961 2136461 2136466) (-1249 "UP.spad" 2133141 2133156 2133528 2133681) (-1248 "UPMP.spad" 2132041 2132054 2133131 2133136) (-1247 "UPDIVP.spad" 2131606 2131620 2132031 2132036) (-1246 "UPDECOMP.spad" 2129851 2129865 2131596 2131601) (-1245 "UPCDEN.spad" 2129060 2129076 2129841 2129846) (-1244 "UP2.spad" 2128424 2128445 2129050 2129055) (-1243 "UNISEG.spad" 2127777 2127788 2128343 2128348) (-1242 "UNISEG2.spad" 2127274 2127287 2127733 2127738) (-1241 "UNIFACT.spad" 2126377 2126389 2127264 2127269) (-1240 "ULS.spad" 2116935 2116963 2118022 2118451) (-1239 "ULSCONS.spad" 2109331 2109351 2109701 2109850) (-1238 "ULSCCAT.spad" 2107068 2107088 2109177 2109326) (-1237 "ULSCCAT.spad" 2104913 2104935 2107024 2107029) (-1236 "ULSCAT.spad" 2103145 2103161 2104759 2104908) (-1235 "ULS2.spad" 2102659 2102712 2103135 2103140) (-1234 "UINT8.spad" 2102536 2102545 2102649 2102654) (-1233 "UINT64.spad" 2102412 2102421 2102526 2102531) (-1232 "UINT32.spad" 2102288 2102297 2102402 2102407) (-1231 "UINT16.spad" 2102164 2102173 2102278 2102283) (-1230 "UFD.spad" 2101229 2101238 2102090 2102159) (-1229 "UFD.spad" 2100356 2100367 2101219 2101224) (-1228 "UDVO.spad" 2099237 2099246 2100346 2100351) (-1227 "UDPO.spad" 2096730 2096741 2099193 2099198) (-1226 "TYPE.spad" 2096662 2096671 2096720 2096725) (-1225 "TYPEAST.spad" 2096581 2096590 2096652 2096657) (-1224 "TWOFACT.spad" 2095233 2095248 2096571 2096576) (-1223 "TUPLE.spad" 2094719 2094730 2095132 2095137) (-1222 "TUBETOOL.spad" 2091586 2091595 2094709 2094714) (-1221 "TUBE.spad" 2090233 2090250 2091576 2091581) (-1220 "TS.spad" 2088832 2088848 2089798 2089895) (-1219 "TSETCAT.spad" 2075959 2075976 2088800 2088827) (-1218 "TSETCAT.spad" 2063072 2063091 2075915 2075920) (-1217 "TRMANIP.spad" 2057438 2057455 2062778 2062783) (-1216 "TRIMAT.spad" 2056401 2056426 2057428 2057433) (-1215 "TRIGMNIP.spad" 2054928 2054945 2056391 2056396) (-1214 "TRIGCAT.spad" 2054440 2054449 2054918 2054923) (-1213 "TRIGCAT.spad" 2053950 2053961 2054430 2054435) (-1212 "TREE.spad" 2052525 2052536 2053557 2053584) (-1211 "TRANFUN.spad" 2052364 2052373 2052515 2052520) (-1210 "TRANFUN.spad" 2052201 2052212 2052354 2052359) (-1209 "TOPSP.spad" 2051875 2051884 2052191 2052196) (-1208 "TOOLSIGN.spad" 2051538 2051549 2051865 2051870) (-1207 "TEXTFILE.spad" 2050099 2050108 2051528 2051533) (-1206 "TEX.spad" 2047245 2047254 2050089 2050094) (-1205 "TEX1.spad" 2046801 2046812 2047235 2047240) (-1204 "TEMUTL.spad" 2046356 2046365 2046791 2046796) (-1203 "TBCMPPK.spad" 2044449 2044472 2046346 2046351) (-1202 "TBAGG.spad" 2043499 2043522 2044429 2044444) (-1201 "TBAGG.spad" 2042557 2042582 2043489 2043494) (-1200 "TANEXP.spad" 2041965 2041976 2042547 2042552) (-1199 "TABLE.spad" 2040376 2040399 2040646 2040673) (-1198 "TABLEAU.spad" 2039857 2039868 2040366 2040371) (-1197 "TABLBUMP.spad" 2036660 2036671 2039847 2039852) (-1196 "SYSTEM.spad" 2035888 2035897 2036650 2036655) (-1195 "SYSSOLP.spad" 2033371 2033382 2035878 2035883) (-1194 "SYSPTR.spad" 2033270 2033279 2033361 2033366) (-1193 "SYSNNI.spad" 2032452 2032463 2033260 2033265) (-1192 "SYSINT.spad" 2031856 2031867 2032442 2032447) (-1191 "SYNTAX.spad" 2028062 2028071 2031846 2031851) (-1190 "SYMTAB.spad" 2026130 2026139 2028052 2028057) (-1189 "SYMS.spad" 2022153 2022162 2026120 2026125) (-1188 "SYMPOLY.spad" 2021160 2021171 2021242 2021369) (-1187 "SYMFUNC.spad" 2020661 2020672 2021150 2021155) (-1186 "SYMBOL.spad" 2018164 2018173 2020651 2020656) (-1185 "SWITCH.spad" 2014935 2014944 2018154 2018159) (-1184 "SUTS.spad" 2011840 2011868 2013402 2013499) (-1183 "SUPXS.spad" 2008981 2009009 2009972 2010121) (-1182 "SUP.spad" 2005794 2005805 2006567 2006720) (-1181 "SUPFRACF.spad" 2004899 2004917 2005784 2005789) (-1180 "SUP2.spad" 2004291 2004304 2004889 2004894) (-1179 "SUMRF.spad" 2003265 2003276 2004281 2004286) (-1178 "SUMFS.spad" 2002902 2002919 2003255 2003260) (-1177 "SULS.spad" 1993447 1993475 1994547 1994976) (-1176 "SUCHTAST.spad" 1993216 1993225 1993437 1993442) (-1175 "SUCH.spad" 1992898 1992913 1993206 1993211) (-1174 "SUBSPACE.spad" 1985013 1985028 1992888 1992893) (-1173 "SUBRESP.spad" 1984183 1984197 1984969 1984974) (-1172 "STTF.spad" 1980282 1980298 1984173 1984178) (-1171 "STTFNC.spad" 1976750 1976766 1980272 1980277) (-1170 "STTAYLOR.spad" 1969385 1969396 1976631 1976636) (-1169 "STRTBL.spad" 1967890 1967907 1968039 1968066) (-1168 "STRING.spad" 1967299 1967308 1967313 1967340) (-1167 "STRICAT.spad" 1967087 1967096 1967267 1967294) (-1166 "STREAM.spad" 1964005 1964016 1966612 1966627) (-1165 "STREAM3.spad" 1963578 1963593 1963995 1964000) (-1164 "STREAM2.spad" 1962706 1962719 1963568 1963573) (-1163 "STREAM1.spad" 1962412 1962423 1962696 1962701) (-1162 "STINPROD.spad" 1961348 1961364 1962402 1962407) (-1161 "STEP.spad" 1960549 1960558 1961338 1961343) (-1160 "STEPAST.spad" 1959783 1959792 1960539 1960544) (-1159 "STBL.spad" 1958309 1958337 1958476 1958491) (-1158 "STAGG.spad" 1957384 1957395 1958299 1958304) (-1157 "STAGG.spad" 1956457 1956470 1957374 1957379) (-1156 "STACK.spad" 1955814 1955825 1956064 1956091) (-1155 "SREGSET.spad" 1953518 1953535 1955460 1955487) (-1154 "SRDCMPK.spad" 1952079 1952099 1953508 1953513) (-1153 "SRAGG.spad" 1947222 1947231 1952047 1952074) (-1152 "SRAGG.spad" 1942385 1942396 1947212 1947217) (-1151 "SQMATRIX.spad" 1940001 1940019 1940917 1941004) (-1150 "SPLTREE.spad" 1934553 1934566 1939437 1939464) (-1149 "SPLNODE.spad" 1931141 1931154 1934543 1934548) (-1148 "SPFCAT.spad" 1929950 1929959 1931131 1931136) (-1147 "SPECOUT.spad" 1928502 1928511 1929940 1929945) (-1146 "SPADXPT.spad" 1920097 1920106 1928492 1928497) (-1145 "spad-parser.spad" 1919562 1919571 1920087 1920092) (-1144 "SPADAST.spad" 1919263 1919272 1919552 1919557) (-1143 "SPACEC.spad" 1903462 1903473 1919253 1919258) (-1142 "SPACE3.spad" 1903238 1903249 1903452 1903457) (-1141 "SORTPAK.spad" 1902787 1902800 1903194 1903199) (-1140 "SOLVETRA.spad" 1900550 1900561 1902777 1902782) (-1139 "SOLVESER.spad" 1899078 1899089 1900540 1900545) (-1138 "SOLVERAD.spad" 1895104 1895115 1899068 1899073) (-1137 "SOLVEFOR.spad" 1893566 1893584 1895094 1895099) (-1136 "SNTSCAT.spad" 1893166 1893183 1893534 1893561) (-1135 "SMTS.spad" 1891438 1891464 1892731 1892828) (-1134 "SMP.spad" 1888913 1888933 1889303 1889430) (-1133 "SMITH.spad" 1887758 1887783 1888903 1888908) (-1132 "SMATCAT.spad" 1885868 1885898 1887702 1887753) (-1131 "SMATCAT.spad" 1883910 1883942 1885746 1885751) (-1130 "SKAGG.spad" 1882873 1882884 1883878 1883905) (-1129 "SINT.spad" 1881813 1881822 1882739 1882868) (-1128 "SIMPAN.spad" 1881541 1881550 1881803 1881808) (-1127 "SIG.spad" 1880871 1880880 1881531 1881536) (-1126 "SIGNRF.spad" 1879989 1880000 1880861 1880866) (-1125 "SIGNEF.spad" 1879268 1879285 1879979 1879984) (-1124 "SIGAST.spad" 1878653 1878662 1879258 1879263) (-1123 "SHP.spad" 1876581 1876596 1878609 1878614) (-1122 "SHDP.spad" 1866292 1866319 1866801 1866932) (-1121 "SGROUP.spad" 1865900 1865909 1866282 1866287) (-1120 "SGROUP.spad" 1865506 1865517 1865890 1865895) (-1119 "SGCF.spad" 1858669 1858678 1865496 1865501) (-1118 "SFRTCAT.spad" 1857599 1857616 1858637 1858664) (-1117 "SFRGCD.spad" 1856662 1856682 1857589 1857594) (-1116 "SFQCMPK.spad" 1851299 1851319 1856652 1856657) (-1115 "SFORT.spad" 1850738 1850752 1851289 1851294) (-1114 "SEXOF.spad" 1850581 1850621 1850728 1850733) (-1113 "SEX.spad" 1850473 1850482 1850571 1850576) (-1112 "SEXCAT.spad" 1848074 1848114 1850463 1850468) (-1111 "SET.spad" 1846398 1846409 1847495 1847534) (-1110 "SETMN.spad" 1844848 1844865 1846388 1846393) (-1109 "SETCAT.spad" 1844170 1844179 1844838 1844843) (-1108 "SETCAT.spad" 1843490 1843501 1844160 1844165) (-1107 "SETAGG.spad" 1840039 1840050 1843470 1843485) (-1106 "SETAGG.spad" 1836596 1836609 1840029 1840034) (-1105 "SEQAST.spad" 1836299 1836308 1836586 1836591) (-1104 "SEGXCAT.spad" 1835455 1835468 1836289 1836294) (-1103 "SEG.spad" 1835268 1835279 1835374 1835379) (-1102 "SEGCAT.spad" 1834193 1834204 1835258 1835263) (-1101 "SEGBIND.spad" 1833951 1833962 1834140 1834145) (-1100 "SEGBIND2.spad" 1833649 1833662 1833941 1833946) (-1099 "SEGAST.spad" 1833363 1833372 1833639 1833644) (-1098 "SEG2.spad" 1832798 1832811 1833319 1833324) (-1097 "SDVAR.spad" 1832074 1832085 1832788 1832793) (-1096 "SDPOL.spad" 1829500 1829511 1829791 1829918) (-1095 "SCPKG.spad" 1827589 1827600 1829490 1829495) (-1094 "SCOPE.spad" 1826742 1826751 1827579 1827584) (-1093 "SCACHE.spad" 1825438 1825449 1826732 1826737) (-1092 "SASTCAT.spad" 1825347 1825356 1825428 1825433) (-1091 "SAOS.spad" 1825219 1825228 1825337 1825342) (-1090 "SAERFFC.spad" 1824932 1824952 1825209 1825214) (-1089 "SAE.spad" 1823107 1823123 1823718 1823853) (-1088 "SAEFACT.spad" 1822808 1822828 1823097 1823102) (-1087 "RURPK.spad" 1820467 1820483 1822798 1822803) (-1086 "RULESET.spad" 1819920 1819944 1820457 1820462) (-1085 "RULE.spad" 1818160 1818184 1819910 1819915) (-1084 "RULECOLD.spad" 1818012 1818025 1818150 1818155) (-1083 "RTVALUE.spad" 1817747 1817756 1818002 1818007) (-1082 "RSTRCAST.spad" 1817464 1817473 1817737 1817742) (-1081 "RSETGCD.spad" 1813842 1813862 1817454 1817459) (-1080 "RSETCAT.spad" 1803778 1803795 1813810 1813837) (-1079 "RSETCAT.spad" 1793734 1793753 1803768 1803773) (-1078 "RSDCMPK.spad" 1792186 1792206 1793724 1793729) (-1077 "RRCC.spad" 1790570 1790600 1792176 1792181) (-1076 "RRCC.spad" 1788952 1788984 1790560 1790565) (-1075 "RPTAST.spad" 1788654 1788663 1788942 1788947) (-1074 "RPOLCAT.spad" 1768014 1768029 1788522 1788649) (-1073 "RPOLCAT.spad" 1747087 1747104 1767597 1767602) (-1072 "ROUTINE.spad" 1742970 1742979 1745734 1745761) (-1071 "ROMAN.spad" 1742298 1742307 1742836 1742965) (-1070 "ROIRC.spad" 1741378 1741410 1742288 1742293) (-1069 "RNS.spad" 1740281 1740290 1741280 1741373) (-1068 "RNS.spad" 1739270 1739281 1740271 1740276) (-1067 "RNG.spad" 1739005 1739014 1739260 1739265) (-1066 "RNGBIND.spad" 1738165 1738179 1738960 1738965) (-1065 "RMODULE.spad" 1737930 1737941 1738155 1738160) (-1064 "RMCAT2.spad" 1737350 1737407 1737920 1737925) (-1063 "RMATRIX.spad" 1736174 1736193 1736517 1736556) (-1062 "RMATCAT.spad" 1731753 1731784 1736130 1736169) (-1061 "RMATCAT.spad" 1727222 1727255 1731601 1731606) (-1060 "RLINSET.spad" 1726616 1726627 1727212 1727217) (-1059 "RINTERP.spad" 1726504 1726524 1726606 1726611) (-1058 "RING.spad" 1725974 1725983 1726484 1726499) (-1057 "RING.spad" 1725452 1725463 1725964 1725969) (-1056 "RIDIST.spad" 1724844 1724853 1725442 1725447) (-1055 "RGCHAIN.spad" 1723427 1723443 1724329 1724356) (-1054 "RGBCSPC.spad" 1723208 1723220 1723417 1723422) (-1053 "RGBCMDL.spad" 1722738 1722750 1723198 1723203) (-1052 "RF.spad" 1720380 1720391 1722728 1722733) (-1051 "RFFACTOR.spad" 1719842 1719853 1720370 1720375) (-1050 "RFFACT.spad" 1719577 1719589 1719832 1719837) (-1049 "RFDIST.spad" 1718573 1718582 1719567 1719572) (-1048 "RETSOL.spad" 1717992 1718005 1718563 1718568) (-1047 "RETRACT.spad" 1717420 1717431 1717982 1717987) (-1046 "RETRACT.spad" 1716846 1716859 1717410 1717415) (-1045 "RETAST.spad" 1716658 1716667 1716836 1716841) (-1044 "RESULT.spad" 1714718 1714727 1715305 1715332) (-1043 "RESRING.spad" 1714065 1714112 1714656 1714713) (-1042 "RESLATC.spad" 1713389 1713400 1714055 1714060) (-1041 "REPSQ.spad" 1713120 1713131 1713379 1713384) (-1040 "REP.spad" 1710674 1710683 1713110 1713115) (-1039 "REPDB.spad" 1710381 1710392 1710664 1710669) (-1038 "REP2.spad" 1700039 1700050 1710223 1710228) (-1037 "REP1.spad" 1694235 1694246 1699989 1699994) (-1036 "REGSET.spad" 1692032 1692049 1693881 1693908) (-1035 "REF.spad" 1691367 1691378 1691987 1691992) (-1034 "REDORDER.spad" 1690573 1690590 1691357 1691362) (-1033 "RECLOS.spad" 1689356 1689376 1690060 1690153) (-1032 "REALSOLV.spad" 1688496 1688505 1689346 1689351) (-1031 "REAL.spad" 1688368 1688377 1688486 1688491) (-1030 "REAL0Q.spad" 1685666 1685681 1688358 1688363) (-1029 "REAL0.spad" 1682510 1682525 1685656 1685661) (-1028 "RDUCEAST.spad" 1682231 1682240 1682500 1682505) (-1027 "RDIV.spad" 1681886 1681911 1682221 1682226) (-1026 "RDIST.spad" 1681453 1681464 1681876 1681881) (-1025 "RDETRS.spad" 1680317 1680335 1681443 1681448) (-1024 "RDETR.spad" 1678456 1678474 1680307 1680312) (-1023 "RDEEFS.spad" 1677555 1677572 1678446 1678451) (-1022 "RDEEF.spad" 1676565 1676582 1677545 1677550) (-1021 "RCFIELD.spad" 1673751 1673760 1676467 1676560) (-1020 "RCFIELD.spad" 1671023 1671034 1673741 1673746) (-1019 "RCAGG.spad" 1668951 1668962 1671013 1671018) (-1018 "RCAGG.spad" 1666806 1666819 1668870 1668875) (-1017 "RATRET.spad" 1666166 1666177 1666796 1666801) (-1016 "RATFACT.spad" 1665858 1665870 1666156 1666161) (-1015 "RANDSRC.spad" 1665177 1665186 1665848 1665853) (-1014 "RADUTIL.spad" 1664933 1664942 1665167 1665172) (-1013 "RADIX.spad" 1661854 1661868 1663400 1663493) (-1012 "RADFF.spad" 1660267 1660304 1660386 1660542) (-1011 "RADCAT.spad" 1659862 1659871 1660257 1660262) (-1010 "RADCAT.spad" 1659455 1659466 1659852 1659857) (-1009 "QUEUE.spad" 1658803 1658814 1659062 1659089) (-1008 "QUAT.spad" 1657384 1657395 1657727 1657792) (-1007 "QUATCT2.spad" 1657004 1657023 1657374 1657379) (-1006 "QUATCAT.spad" 1655174 1655185 1656934 1656999) (-1005 "QUATCAT.spad" 1653095 1653108 1654857 1654862) (-1004 "QUAGG.spad" 1651922 1651933 1653063 1653090) (-1003 "QQUTAST.spad" 1651690 1651699 1651912 1651917) (-1002 "QFORM.spad" 1651154 1651169 1651680 1651685) (-1001 "QFCAT.spad" 1649856 1649867 1651056 1651149) (-1000 "QFCAT.spad" 1648149 1648162 1649351 1649356) (-999 "QFCAT2.spad" 1647842 1647858 1648139 1648144) (-998 "QEQUAT.spad" 1647401 1647409 1647832 1647837) (-997 "QCMPACK.spad" 1642148 1642167 1647391 1647396) (-996 "QALGSET.spad" 1638227 1638259 1642062 1642067) (-995 "QALGSET2.spad" 1636223 1636241 1638217 1638222) (-994 "PWFFINTB.spad" 1633639 1633660 1636213 1636218) (-993 "PUSHVAR.spad" 1632978 1632997 1633629 1633634) (-992 "PTRANFN.spad" 1629106 1629116 1632968 1632973) (-991 "PTPACK.spad" 1626194 1626204 1629096 1629101) (-990 "PTFUNC2.spad" 1626017 1626031 1626184 1626189) (-989 "PTCAT.spad" 1625272 1625282 1625985 1626012) (-988 "PSQFR.spad" 1624579 1624603 1625262 1625267) (-987 "PSEUDLIN.spad" 1623465 1623475 1624569 1624574) (-986 "PSETPK.spad" 1608898 1608914 1623343 1623348) (-985 "PSETCAT.spad" 1602818 1602841 1608878 1608893) (-984 "PSETCAT.spad" 1596712 1596737 1602774 1602779) (-983 "PSCURVE.spad" 1595695 1595703 1596702 1596707) (-982 "PSCAT.spad" 1594478 1594507 1595593 1595690) (-981 "PSCAT.spad" 1593351 1593382 1594468 1594473) (-980 "PRTITION.spad" 1592440 1592448 1593341 1593346) (-979 "PRTDAST.spad" 1592159 1592167 1592430 1592435) (-978 "PRS.spad" 1581721 1581738 1592115 1592120) (-977 "PRQAGG.spad" 1581156 1581166 1581689 1581716) (-976 "PROPLOG.spad" 1580728 1580736 1581146 1581151) (-975 "PROPFUN2.spad" 1580351 1580364 1580718 1580723) (-974 "PROPFUN1.spad" 1579749 1579760 1580341 1580346) (-973 "PROPFRML.spad" 1578317 1578328 1579739 1579744) (-972 "PROPERTY.spad" 1577805 1577813 1578307 1578312) (-971 "PRODUCT.spad" 1575487 1575499 1575771 1575826) (-970 "PR.spad" 1573879 1573891 1574578 1574705) (-969 "PRINT.spad" 1573631 1573639 1573869 1573874) (-968 "PRIMES.spad" 1571884 1571894 1573621 1573626) (-967 "PRIMELT.spad" 1569965 1569979 1571874 1571879) (-966 "PRIMCAT.spad" 1569592 1569600 1569955 1569960) (-965 "PRIMARR.spad" 1568597 1568607 1568775 1568802) (-964 "PRIMARR2.spad" 1567364 1567376 1568587 1568592) (-963 "PREASSOC.spad" 1566746 1566758 1567354 1567359) (-962 "PPCURVE.spad" 1565883 1565891 1566736 1566741) (-961 "PORTNUM.spad" 1565658 1565666 1565873 1565878) (-960 "POLYROOT.spad" 1564507 1564529 1565614 1565619) (-959 "POLY.spad" 1561842 1561852 1562357 1562484) (-958 "POLYLIFT.spad" 1561107 1561130 1561832 1561837) (-957 "POLYCATQ.spad" 1559225 1559247 1561097 1561102) (-956 "POLYCAT.spad" 1552695 1552716 1559093 1559220) (-955 "POLYCAT.spad" 1545503 1545526 1551903 1551908) (-954 "POLY2UP.spad" 1544955 1544969 1545493 1545498) (-953 "POLY2.spad" 1544552 1544564 1544945 1544950) (-952 "POLUTIL.spad" 1543493 1543522 1544508 1544513) (-951 "POLTOPOL.spad" 1542241 1542256 1543483 1543488) (-950 "POINT.spad" 1541079 1541089 1541166 1541193) (-949 "PNTHEORY.spad" 1537781 1537789 1541069 1541074) (-948 "PMTOOLS.spad" 1536556 1536570 1537771 1537776) (-947 "PMSYM.spad" 1536105 1536115 1536546 1536551) (-946 "PMQFCAT.spad" 1535696 1535710 1536095 1536100) (-945 "PMPRED.spad" 1535175 1535189 1535686 1535691) (-944 "PMPREDFS.spad" 1534629 1534651 1535165 1535170) (-943 "PMPLCAT.spad" 1533709 1533727 1534561 1534566) (-942 "PMLSAGG.spad" 1533294 1533308 1533699 1533704) (-941 "PMKERNEL.spad" 1532873 1532885 1533284 1533289) (-940 "PMINS.spad" 1532453 1532463 1532863 1532868) (-939 "PMFS.spad" 1532030 1532048 1532443 1532448) (-938 "PMDOWN.spad" 1531320 1531334 1532020 1532025) (-937 "PMASS.spad" 1530330 1530338 1531310 1531315) (-936 "PMASSFS.spad" 1529297 1529313 1530320 1530325) (-935 "PLOTTOOL.spad" 1529077 1529085 1529287 1529292) (-934 "PLOT.spad" 1524000 1524008 1529067 1529072) (-933 "PLOT3D.spad" 1520464 1520472 1523990 1523995) (-932 "PLOT1.spad" 1519621 1519631 1520454 1520459) (-931 "PLEQN.spad" 1506911 1506938 1519611 1519616) (-930 "PINTERP.spad" 1506533 1506552 1506901 1506906) (-929 "PINTERPA.spad" 1506317 1506333 1506523 1506528) (-928 "PI.spad" 1505926 1505934 1506291 1506312) (-927 "PID.spad" 1504896 1504904 1505852 1505921) (-926 "PICOERCE.spad" 1504553 1504563 1504886 1504891) (-925 "PGROEB.spad" 1503154 1503168 1504543 1504548) (-924 "PGE.spad" 1494771 1494779 1503144 1503149) (-923 "PGCD.spad" 1493661 1493678 1494761 1494766) (-922 "PFRPAC.spad" 1492810 1492820 1493651 1493656) (-921 "PFR.spad" 1489473 1489483 1492712 1492805) (-920 "PFOTOOLS.spad" 1488731 1488747 1489463 1489468) (-919 "PFOQ.spad" 1488101 1488119 1488721 1488726) (-918 "PFO.spad" 1487520 1487547 1488091 1488096) (-917 "PF.spad" 1487094 1487106 1487325 1487418) (-916 "PFECAT.spad" 1484776 1484784 1487020 1487089) (-915 "PFECAT.spad" 1482486 1482496 1484732 1484737) (-914 "PFBRU.spad" 1480374 1480386 1482476 1482481) (-913 "PFBR.spad" 1477934 1477957 1480364 1480369) (-912 "PERM.spad" 1473619 1473629 1477764 1477779) (-911 "PERMGRP.spad" 1468381 1468391 1473609 1473614) (-910 "PERMCAT.spad" 1466939 1466949 1468361 1468376) (-909 "PERMAN.spad" 1465471 1465485 1466929 1466934) (-908 "PENDTREE.spad" 1464812 1464822 1465100 1465105) (-907 "PDRING.spad" 1463363 1463373 1464792 1464807) (-906 "PDRING.spad" 1461922 1461934 1463353 1463358) (-905 "PDEPROB.spad" 1460937 1460945 1461912 1461917) (-904 "PDEPACK.spad" 1454977 1454985 1460927 1460932) (-903 "PDECOMP.spad" 1454447 1454464 1454967 1454972) (-902 "PDECAT.spad" 1452803 1452811 1454437 1454442) (-901 "PCOMP.spad" 1452656 1452669 1452793 1452798) (-900 "PBWLB.spad" 1451244 1451261 1452646 1452651) (-899 "PATTERN.spad" 1445783 1445793 1451234 1451239) (-898 "PATTERN2.spad" 1445521 1445533 1445773 1445778) (-897 "PATTERN1.spad" 1443857 1443873 1445511 1445516) (-896 "PATRES.spad" 1441432 1441444 1443847 1443852) (-895 "PATRES2.spad" 1441104 1441118 1441422 1441427) (-894 "PATMATCH.spad" 1439301 1439332 1440812 1440817) (-893 "PATMAB.spad" 1438730 1438740 1439291 1439296) (-892 "PATLRES.spad" 1437816 1437830 1438720 1438725) (-891 "PATAB.spad" 1437580 1437590 1437806 1437811) (-890 "PARTPERM.spad" 1434980 1434988 1437570 1437575) (-889 "PARSURF.spad" 1434414 1434442 1434970 1434975) (-888 "PARSU2.spad" 1434211 1434227 1434404 1434409) (-887 "script-parser.spad" 1433731 1433739 1434201 1434206) (-886 "PARSCURV.spad" 1433165 1433193 1433721 1433726) (-885 "PARSC2.spad" 1432956 1432972 1433155 1433160) (-884 "PARPCURV.spad" 1432418 1432446 1432946 1432951) (-883 "PARPC2.spad" 1432209 1432225 1432408 1432413) (-882 "PARAMAST.spad" 1431337 1431345 1432199 1432204) (-881 "PAN2EXPR.spad" 1430749 1430757 1431327 1431332) (-880 "PALETTE.spad" 1429719 1429727 1430739 1430744) (-879 "PAIR.spad" 1428706 1428719 1429307 1429312) (-878 "PADICRC.spad" 1426040 1426058 1427211 1427304) (-877 "PADICRAT.spad" 1424055 1424067 1424276 1424369) (-876 "PADIC.spad" 1423750 1423762 1423981 1424050) (-875 "PADICCT.spad" 1422299 1422311 1423676 1423745) (-874 "PADEPAC.spad" 1420988 1421007 1422289 1422294) (-873 "PADE.spad" 1419740 1419756 1420978 1420983) (-872 "OWP.spad" 1418980 1419010 1419598 1419665) (-871 "OVERSET.spad" 1418553 1418561 1418970 1418975) (-870 "OVAR.spad" 1418334 1418357 1418543 1418548) (-869 "OUT.spad" 1417420 1417428 1418324 1418329) (-868 "OUTFORM.spad" 1406812 1406820 1417410 1417415) (-867 "OUTBFILE.spad" 1406230 1406238 1406802 1406807) (-866 "OUTBCON.spad" 1405236 1405244 1406220 1406225) (-865 "OUTBCON.spad" 1404240 1404250 1405226 1405231) (-864 "OSI.spad" 1403715 1403723 1404230 1404235) (-863 "OSGROUP.spad" 1403633 1403641 1403705 1403710) (-862 "ORTHPOL.spad" 1402118 1402128 1403550 1403555) (-861 "OREUP.spad" 1401571 1401599 1401798 1401837) (-860 "ORESUP.spad" 1400872 1400896 1401251 1401290) (-859 "OREPCTO.spad" 1398729 1398741 1400792 1400797) (-858 "OREPCAT.spad" 1392876 1392886 1398685 1398724) (-857 "OREPCAT.spad" 1386913 1386925 1392724 1392729) (-856 "ORDSET.spad" 1386085 1386093 1386903 1386908) (-855 "ORDSET.spad" 1385255 1385265 1386075 1386080) (-854 "ORDRING.spad" 1384645 1384653 1385235 1385250) (-853 "ORDRING.spad" 1384043 1384053 1384635 1384640) (-852 "ORDMON.spad" 1383898 1383906 1384033 1384038) (-851 "ORDFUNS.spad" 1383030 1383046 1383888 1383893) (-850 "ORDFIN.spad" 1382850 1382858 1383020 1383025) (-849 "ORDCOMP.spad" 1381315 1381325 1382397 1382426) (-848 "ORDCOMP2.spad" 1380608 1380620 1381305 1381310) (-847 "OPTPROB.spad" 1379246 1379254 1380598 1380603) (-846 "OPTPACK.spad" 1371655 1371663 1379236 1379241) (-845 "OPTCAT.spad" 1369334 1369342 1371645 1371650) (-844 "OPSIG.spad" 1368988 1368996 1369324 1369329) (-843 "OPQUERY.spad" 1368537 1368545 1368978 1368983) (-842 "OP.spad" 1368279 1368289 1368359 1368426) (-841 "OPERCAT.spad" 1367745 1367755 1368269 1368274) (-840 "OPERCAT.spad" 1367209 1367221 1367735 1367740) (-839 "ONECOMP.spad" 1365954 1365964 1366756 1366785) (-838 "ONECOMP2.spad" 1365378 1365390 1365944 1365949) (-837 "OMSERVER.spad" 1364384 1364392 1365368 1365373) (-836 "OMSAGG.spad" 1364172 1364182 1364340 1364379) (-835 "OMPKG.spad" 1362788 1362796 1364162 1364167) (-834 "OM.spad" 1361761 1361769 1362778 1362783) (-833 "OMLO.spad" 1361186 1361198 1361647 1361686) (-832 "OMEXPR.spad" 1361020 1361030 1361176 1361181) (-831 "OMERR.spad" 1360565 1360573 1361010 1361015) (-830 "OMERRK.spad" 1359599 1359607 1360555 1360560) (-829 "OMENC.spad" 1358943 1358951 1359589 1359594) (-828 "OMDEV.spad" 1353252 1353260 1358933 1358938) (-827 "OMCONN.spad" 1352661 1352669 1353242 1353247) (-826 "OINTDOM.spad" 1352424 1352432 1352587 1352656) (-825 "OFMONOID.spad" 1350547 1350557 1352380 1352385) (-824 "ODVAR.spad" 1349808 1349818 1350537 1350542) (-823 "ODR.spad" 1349452 1349478 1349620 1349769) (-822 "ODPOL.spad" 1346834 1346844 1347174 1347301) (-821 "ODP.spad" 1336681 1336701 1337054 1337185) (-820 "ODETOOLS.spad" 1335330 1335349 1336671 1336676) (-819 "ODESYS.spad" 1333024 1333041 1335320 1335325) (-818 "ODERTRIC.spad" 1329033 1329050 1332981 1332986) (-817 "ODERED.spad" 1328432 1328456 1329023 1329028) (-816 "ODERAT.spad" 1326047 1326064 1328422 1328427) (-815 "ODEPRRIC.spad" 1323084 1323106 1326037 1326042) (-814 "ODEPROB.spad" 1322341 1322349 1323074 1323079) (-813 "ODEPRIM.spad" 1319675 1319697 1322331 1322336) (-812 "ODEPAL.spad" 1319061 1319085 1319665 1319670) (-811 "ODEPACK.spad" 1305727 1305735 1319051 1319056) (-810 "ODEINT.spad" 1305162 1305178 1305717 1305722) (-809 "ODEIFTBL.spad" 1302557 1302565 1305152 1305157) (-808 "ODEEF.spad" 1298048 1298064 1302547 1302552) (-807 "ODECONST.spad" 1297585 1297603 1298038 1298043) (-806 "ODECAT.spad" 1296183 1296191 1297575 1297580) (-805 "OCT.spad" 1294319 1294329 1295033 1295072) (-804 "OCTCT2.spad" 1293965 1293986 1294309 1294314) (-803 "OC.spad" 1291761 1291771 1293921 1293960) (-802 "OC.spad" 1289282 1289294 1291444 1291449) (-801 "OCAMON.spad" 1289130 1289138 1289272 1289277) (-800 "OASGP.spad" 1288945 1288953 1289120 1289125) (-799 "OAMONS.spad" 1288467 1288475 1288935 1288940) (-798 "OAMON.spad" 1288328 1288336 1288457 1288462) (-797 "OAGROUP.spad" 1288190 1288198 1288318 1288323) (-796 "NUMTUBE.spad" 1287781 1287797 1288180 1288185) (-795 "NUMQUAD.spad" 1275757 1275765 1287771 1287776) (-794 "NUMODE.spad" 1267111 1267119 1275747 1275752) (-793 "NUMINT.spad" 1264677 1264685 1267101 1267106) (-792 "NUMFMT.spad" 1263517 1263525 1264667 1264672) (-791 "NUMERIC.spad" 1255631 1255641 1263322 1263327) (-790 "NTSCAT.spad" 1254139 1254155 1255599 1255626) (-789 "NTPOLFN.spad" 1253690 1253700 1254056 1254061) (-788 "NSUP.spad" 1246736 1246746 1251276 1251429) (-787 "NSUP2.spad" 1246128 1246140 1246726 1246731) (-786 "NSMP.spad" 1242358 1242377 1242666 1242793) (-785 "NREP.spad" 1240736 1240750 1242348 1242353) (-784 "NPCOEF.spad" 1239982 1240002 1240726 1240731) (-783 "NORMRETR.spad" 1239580 1239619 1239972 1239977) (-782 "NORMPK.spad" 1237482 1237501 1239570 1239575) (-781 "NORMMA.spad" 1237170 1237196 1237472 1237477) (-780 "NONE.spad" 1236911 1236919 1237160 1237165) (-779 "NONE1.spad" 1236587 1236597 1236901 1236906) (-778 "NODE1.spad" 1236074 1236090 1236577 1236582) (-777 "NNI.spad" 1234969 1234977 1236048 1236069) (-776 "NLINSOL.spad" 1233595 1233605 1234959 1234964) (-775 "NIPROB.spad" 1232136 1232144 1233585 1233590) (-774 "NFINTBAS.spad" 1229696 1229713 1232126 1232131) (-773 "NETCLT.spad" 1229670 1229681 1229686 1229691) (-772 "NCODIV.spad" 1227886 1227902 1229660 1229665) (-771 "NCNTFRAC.spad" 1227528 1227542 1227876 1227881) (-770 "NCEP.spad" 1225694 1225708 1227518 1227523) (-769 "NASRING.spad" 1225290 1225298 1225684 1225689) (-768 "NASRING.spad" 1224884 1224894 1225280 1225285) (-767 "NARNG.spad" 1224236 1224244 1224874 1224879) (-766 "NARNG.spad" 1223586 1223596 1224226 1224231) (-765 "NAGSP.spad" 1222663 1222671 1223576 1223581) (-764 "NAGS.spad" 1212324 1212332 1222653 1222658) (-763 "NAGF07.spad" 1210755 1210763 1212314 1212319) (-762 "NAGF04.spad" 1205157 1205165 1210745 1210750) (-761 "NAGF02.spad" 1199226 1199234 1205147 1205152) (-760 "NAGF01.spad" 1194987 1194995 1199216 1199221) (-759 "NAGE04.spad" 1188687 1188695 1194977 1194982) (-758 "NAGE02.spad" 1179347 1179355 1188677 1188682) (-757 "NAGE01.spad" 1175349 1175357 1179337 1179342) (-756 "NAGD03.spad" 1173353 1173361 1175339 1175344) (-755 "NAGD02.spad" 1166100 1166108 1173343 1173348) (-754 "NAGD01.spad" 1160393 1160401 1166090 1166095) (-753 "NAGC06.spad" 1156268 1156276 1160383 1160388) (-752 "NAGC05.spad" 1154769 1154777 1156258 1156263) (-751 "NAGC02.spad" 1154036 1154044 1154759 1154764) (-750 "NAALG.spad" 1153577 1153587 1154004 1154031) (-749 "NAALG.spad" 1153138 1153150 1153567 1153572) (-748 "MULTSQFR.spad" 1150096 1150113 1153128 1153133) (-747 "MULTFACT.spad" 1149479 1149496 1150086 1150091) (-746 "MTSCAT.spad" 1147573 1147594 1149377 1149474) (-745 "MTHING.spad" 1147232 1147242 1147563 1147568) (-744 "MSYSCMD.spad" 1146666 1146674 1147222 1147227) (-743 "MSET.spad" 1144624 1144634 1146372 1146411) (-742 "MSETAGG.spad" 1144469 1144479 1144592 1144619) (-741 "MRING.spad" 1141446 1141458 1144177 1144244) (-740 "MRF2.spad" 1141016 1141030 1141436 1141441) (-739 "MRATFAC.spad" 1140562 1140579 1141006 1141011) (-738 "MPRFF.spad" 1138602 1138621 1140552 1140557) (-737 "MPOLY.spad" 1136073 1136088 1136432 1136559) (-736 "MPCPF.spad" 1135337 1135356 1136063 1136068) (-735 "MPC3.spad" 1135154 1135194 1135327 1135332) (-734 "MPC2.spad" 1134800 1134833 1135144 1135149) (-733 "MONOTOOL.spad" 1133151 1133168 1134790 1134795) (-732 "MONOID.spad" 1132470 1132478 1133141 1133146) (-731 "MONOID.spad" 1131787 1131797 1132460 1132465) (-730 "MONOGEN.spad" 1130535 1130548 1131647 1131782) (-729 "MONOGEN.spad" 1129305 1129320 1130419 1130424) (-728 "MONADWU.spad" 1127335 1127343 1129295 1129300) (-727 "MONADWU.spad" 1125363 1125373 1127325 1127330) (-726 "MONAD.spad" 1124523 1124531 1125353 1125358) (-725 "MONAD.spad" 1123681 1123691 1124513 1124518) (-724 "MOEBIUS.spad" 1122417 1122431 1123661 1123676) (-723 "MODULE.spad" 1122287 1122297 1122385 1122412) (-722 "MODULE.spad" 1122177 1122189 1122277 1122282) (-721 "MODRING.spad" 1121512 1121551 1122157 1122172) (-720 "MODOP.spad" 1120177 1120189 1121334 1121401) (-719 "MODMONOM.spad" 1119908 1119926 1120167 1120172) (-718 "MODMON.spad" 1116703 1116719 1117422 1117575) (-717 "MODFIELD.spad" 1116065 1116104 1116605 1116698) (-716 "MMLFORM.spad" 1114925 1114933 1116055 1116060) (-715 "MMAP.spad" 1114667 1114701 1114915 1114920) (-714 "MLO.spad" 1113126 1113136 1114623 1114662) (-713 "MLIFT.spad" 1111738 1111755 1113116 1113121) (-712 "MKUCFUNC.spad" 1111273 1111291 1111728 1111733) (-711 "MKRECORD.spad" 1110877 1110890 1111263 1111268) (-710 "MKFUNC.spad" 1110284 1110294 1110867 1110872) (-709 "MKFLCFN.spad" 1109252 1109262 1110274 1110279) (-708 "MKBCFUNC.spad" 1108747 1108765 1109242 1109247) (-707 "MINT.spad" 1108186 1108194 1108649 1108742) (-706 "MHROWRED.spad" 1106697 1106707 1108176 1108181) (-705 "MFLOAT.spad" 1105217 1105225 1106587 1106692) (-704 "MFINFACT.spad" 1104617 1104639 1105207 1105212) (-703 "MESH.spad" 1102399 1102407 1104607 1104612) (-702 "MDDFACT.spad" 1100610 1100620 1102389 1102394) (-701 "MDAGG.spad" 1099901 1099911 1100590 1100605) (-700 "MCMPLX.spad" 1095912 1095920 1096526 1096727) (-699 "MCDEN.spad" 1095122 1095134 1095902 1095907) (-698 "MCALCFN.spad" 1092244 1092270 1095112 1095117) (-697 "MAYBE.spad" 1091528 1091539 1092234 1092239) (-696 "MATSTOR.spad" 1088836 1088846 1091518 1091523) (-695 "MATRIX.spad" 1087540 1087550 1088024 1088051) (-694 "MATLIN.spad" 1084884 1084908 1087424 1087429) (-693 "MATCAT.spad" 1076613 1076635 1084852 1084879) (-692 "MATCAT.spad" 1068214 1068238 1076455 1076460) (-691 "MATCAT2.spad" 1067496 1067544 1068204 1068209) (-690 "MAPPKG3.spad" 1066411 1066425 1067486 1067491) (-689 "MAPPKG2.spad" 1065749 1065761 1066401 1066406) (-688 "MAPPKG1.spad" 1064577 1064587 1065739 1065744) (-687 "MAPPAST.spad" 1063892 1063900 1064567 1064572) (-686 "MAPHACK3.spad" 1063704 1063718 1063882 1063887) (-685 "MAPHACK2.spad" 1063473 1063485 1063694 1063699) (-684 "MAPHACK1.spad" 1063117 1063127 1063463 1063468) (-683 "MAGMA.spad" 1060907 1060924 1063107 1063112) (-682 "MACROAST.spad" 1060486 1060494 1060897 1060902) (-681 "M3D.spad" 1058206 1058216 1059864 1059869) (-680 "LZSTAGG.spad" 1055444 1055454 1058196 1058201) (-679 "LZSTAGG.spad" 1052680 1052692 1055434 1055439) (-678 "LWORD.spad" 1049385 1049402 1052670 1052675) (-677 "LSTAST.spad" 1049169 1049177 1049375 1049380) (-676 "LSQM.spad" 1047399 1047413 1047793 1047844) (-675 "LSPP.spad" 1046934 1046951 1047389 1047394) (-674 "LSMP.spad" 1045784 1045812 1046924 1046929) (-673 "LSMP1.spad" 1043602 1043616 1045774 1045779) (-672 "LSAGG.spad" 1043271 1043281 1043570 1043597) (-671 "LSAGG.spad" 1042960 1042972 1043261 1043266) (-670 "LPOLY.spad" 1041914 1041933 1042816 1042885) (-669 "LPEFRAC.spad" 1041185 1041195 1041904 1041909) (-668 "LO.spad" 1040586 1040600 1041119 1041146) (-667 "LOGIC.spad" 1040188 1040196 1040576 1040581) (-666 "LOGIC.spad" 1039788 1039798 1040178 1040183) (-665 "LODOOPS.spad" 1038718 1038730 1039778 1039783) (-664 "LODO.spad" 1038102 1038118 1038398 1038437) (-663 "LODOF.spad" 1037148 1037165 1038059 1038064) (-662 "LODOCAT.spad" 1035814 1035824 1037104 1037143) (-661 "LODOCAT.spad" 1034478 1034490 1035770 1035775) (-660 "LODO2.spad" 1033751 1033763 1034158 1034197) (-659 "LODO1.spad" 1033151 1033161 1033431 1033470) (-658 "LODEEF.spad" 1031953 1031971 1033141 1033146) (-657 "LNAGG.spad" 1027785 1027795 1031943 1031948) (-656 "LNAGG.spad" 1023581 1023593 1027741 1027746) (-655 "LMOPS.spad" 1020349 1020366 1023571 1023576) (-654 "LMODULE.spad" 1020117 1020127 1020339 1020344) (-653 "LMDICT.spad" 1019404 1019414 1019668 1019695) (-652 "LLINSET.spad" 1018801 1018811 1019394 1019399) (-651 "LITERAL.spad" 1018707 1018718 1018791 1018796) (-650 "LIST.spad" 1016442 1016452 1017854 1017881) (-649 "LIST3.spad" 1015753 1015767 1016432 1016437) (-648 "LIST2.spad" 1014455 1014467 1015743 1015748) (-647 "LIST2MAP.spad" 1011358 1011370 1014445 1014450) (-646 "LINSET.spad" 1010980 1010990 1011348 1011353) (-645 "LINEXP.spad" 1010414 1010424 1010960 1010975) (-644 "LINDEP.spad" 1009223 1009235 1010326 1010331) (-643 "LIMITRF.spad" 1007151 1007161 1009213 1009218) (-642 "LIMITPS.spad" 1006054 1006067 1007141 1007146) (-641 "LIE.spad" 1004070 1004082 1005344 1005489) (-640 "LIECAT.spad" 1003546 1003556 1003996 1004065) (-639 "LIECAT.spad" 1003050 1003062 1003502 1003507) (-638 "LIB.spad" 1001100 1001108 1001709 1001724) (-637 "LGROBP.spad" 998453 998472 1001090 1001095) (-636 "LF.spad" 997408 997424 998443 998448) (-635 "LFCAT.spad" 996467 996475 997398 997403) (-634 "LEXTRIPK.spad" 991970 991985 996457 996462) (-633 "LEXP.spad" 989973 990000 991950 991965) (-632 "LETAST.spad" 989672 989680 989963 989968) (-631 "LEADCDET.spad" 988070 988087 989662 989667) (-630 "LAZM3PK.spad" 986774 986796 988060 988065) (-629 "LAUPOL.spad" 985467 985480 986367 986436) (-628 "LAPLACE.spad" 985050 985066 985457 985462) (-627 "LA.spad" 984490 984504 984972 985011) (-626 "LALG.spad" 984266 984276 984470 984485) (-625 "LALG.spad" 984050 984062 984256 984261) (-624 "KVTFROM.spad" 983785 983795 984040 984045) (-623 "KTVLOGIC.spad" 983297 983305 983775 983780) (-622 "KRCFROM.spad" 983035 983045 983287 983292) (-621 "KOVACIC.spad" 981758 981775 983025 983030) (-620 "KONVERT.spad" 981480 981490 981748 981753) (-619 "KOERCE.spad" 981217 981227 981470 981475) (-618 "KERNEL.spad" 979872 979882 981001 981006) (-617 "KERNEL2.spad" 979575 979587 979862 979867) (-616 "KDAGG.spad" 978684 978706 979555 979570) (-615 "KDAGG.spad" 977801 977825 978674 978679) (-614 "KAFILE.spad" 976764 976780 976999 977026) (-613 "JORDAN.spad" 974593 974605 976054 976199) (-612 "JOINAST.spad" 974287 974295 974583 974588) (-611 "JAVACODE.spad" 974153 974161 974277 974282) (-610 "IXAGG.spad" 972286 972310 974143 974148) (-609 "IXAGG.spad" 970274 970300 972133 972138) (-608 "IVECTOR.spad" 969044 969059 969199 969226) (-607 "ITUPLE.spad" 968205 968215 969034 969039) (-606 "ITRIGMNP.spad" 967044 967063 968195 968200) (-605 "ITFUN3.spad" 966550 966564 967034 967039) (-604 "ITFUN2.spad" 966294 966306 966540 966545) (-603 "ITFORM.spad" 965649 965657 966284 966289) (-602 "ITAYLOR.spad" 963643 963658 965513 965610) (-601 "ISUPS.spad" 956080 956095 962617 962714) (-600 "ISUMP.spad" 955581 955597 956070 956075) (-599 "ISTRING.spad" 954669 954682 954750 954777) (-598 "ISAST.spad" 954388 954396 954659 954664) (-597 "IRURPK.spad" 953105 953124 954378 954383) (-596 "IRSN.spad" 951109 951117 953095 953100) (-595 "IRRF2F.spad" 949594 949604 951065 951070) (-594 "IRREDFFX.spad" 949195 949206 949584 949589) (-593 "IROOT.spad" 947534 947544 949185 949190) (-592 "IR.spad" 945335 945349 947389 947416) (-591 "IRFORM.spad" 944659 944667 945325 945330) (-590 "IR2.spad" 943687 943703 944649 944654) (-589 "IR2F.spad" 942893 942909 943677 943682) (-588 "IPRNTPK.spad" 942653 942661 942883 942888) (-587 "IPF.spad" 942218 942230 942458 942551) (-586 "IPADIC.spad" 941979 942005 942144 942213) (-585 "IP4ADDR.spad" 941536 941544 941969 941974) (-584 "IOMODE.spad" 941058 941066 941526 941531) (-583 "IOBFILE.spad" 940419 940427 941048 941053) (-582 "IOBCON.spad" 940284 940292 940409 940414) (-581 "INVLAPLA.spad" 939933 939949 940274 940279) (-580 "INTTR.spad" 933315 933332 939923 939928) (-579 "INTTOOLS.spad" 931070 931086 932889 932894) (-578 "INTSLPE.spad" 930390 930398 931060 931065) (-577 "INTRVL.spad" 929956 929966 930304 930385) (-576 "INTRF.spad" 928380 928394 929946 929951) (-575 "INTRET.spad" 927812 927822 928370 928375) (-574 "INTRAT.spad" 926539 926556 927802 927807) (-573 "INTPM.spad" 924924 924940 926182 926187) (-572 "INTPAF.spad" 922788 922806 924856 924861) (-571 "INTPACK.spad" 913162 913170 922778 922783) (-570 "INT.spad" 912610 912618 913016 913157) (-569 "INTHERTR.spad" 911884 911901 912600 912605) (-568 "INTHERAL.spad" 911554 911578 911874 911879) (-567 "INTHEORY.spad" 907993 908001 911544 911549) (-566 "INTG0.spad" 901726 901744 907925 907930) (-565 "INTFTBL.spad" 895755 895763 901716 901721) (-564 "INTFACT.spad" 894814 894824 895745 895750) (-563 "INTEF.spad" 893199 893215 894804 894809) (-562 "INTDOM.spad" 891822 891830 893125 893194) (-561 "INTDOM.spad" 890507 890517 891812 891817) (-560 "INTCAT.spad" 888766 888776 890421 890502) (-559 "INTBIT.spad" 888273 888281 888756 888761) (-558 "INTALG.spad" 887461 887488 888263 888268) (-557 "INTAF.spad" 886961 886977 887451 887456) (-556 "INTABL.spad" 885479 885510 885642 885669) (-555 "INT8.spad" 885359 885367 885469 885474) (-554 "INT64.spad" 885238 885246 885349 885354) (-553 "INT32.spad" 885117 885125 885228 885233) (-552 "INT16.spad" 884996 885004 885107 885112) (-551 "INS.spad" 882499 882507 884898 884991) (-550 "INS.spad" 880088 880098 882489 882494) (-549 "INPSIGN.spad" 879536 879549 880078 880083) (-548 "INPRODPF.spad" 878632 878651 879526 879531) (-547 "INPRODFF.spad" 877720 877744 878622 878627) (-546 "INNMFACT.spad" 876695 876712 877710 877715) (-545 "INMODGCD.spad" 876183 876213 876685 876690) (-544 "INFSP.spad" 874480 874502 876173 876178) (-543 "INFPROD0.spad" 873560 873579 874470 874475) (-542 "INFORM.spad" 870759 870767 873550 873555) (-541 "INFORM1.spad" 870384 870394 870749 870754) (-540 "INFINITY.spad" 869936 869944 870374 870379) (-539 "INETCLTS.spad" 869913 869921 869926 869931) (-538 "INEP.spad" 868451 868473 869903 869908) (-537 "INDE.spad" 868180 868197 868441 868446) (-536 "INCRMAPS.spad" 867601 867611 868170 868175) (-535 "INBFILE.spad" 866673 866681 867591 867596) (-534 "INBFF.spad" 862467 862478 866663 866668) (-533 "INBCON.spad" 860757 860765 862457 862462) (-532 "INBCON.spad" 859045 859055 860747 860752) (-531 "INAST.spad" 858706 858714 859035 859040) (-530 "IMPTAST.spad" 858414 858422 858696 858701) (-529 "IMATRIX.spad" 857359 857385 857871 857898) (-528 "IMATQF.spad" 856453 856497 857315 857320) (-527 "IMATLIN.spad" 855058 855082 856409 856414) (-526 "ILIST.spad" 853716 853731 854241 854268) (-525 "IIARRAY2.spad" 853104 853142 853323 853350) (-524 "IFF.spad" 852514 852530 852785 852878) (-523 "IFAST.spad" 852128 852136 852504 852509) (-522 "IFARRAY.spad" 849621 849636 851311 851338) (-521 "IFAMON.spad" 849483 849500 849577 849582) (-520 "IEVALAB.spad" 848888 848900 849473 849478) (-519 "IEVALAB.spad" 848291 848305 848878 848883) (-518 "IDPO.spad" 848089 848101 848281 848286) (-517 "IDPOAMS.spad" 847845 847857 848079 848084) (-516 "IDPOAM.spad" 847565 847577 847835 847840) (-515 "IDPC.spad" 846503 846515 847555 847560) (-514 "IDPAM.spad" 846248 846260 846493 846498) (-513 "IDPAG.spad" 845995 846007 846238 846243) (-512 "IDENT.spad" 845645 845653 845985 845990) (-511 "IDECOMP.spad" 842884 842902 845635 845640) (-510 "IDEAL.spad" 837833 837872 842819 842824) (-509 "ICDEN.spad" 837022 837038 837823 837828) (-508 "ICARD.spad" 836213 836221 837012 837017) (-507 "IBPTOOLS.spad" 834820 834837 836203 836208) (-506 "IBITS.spad" 834023 834036 834456 834483) (-505 "IBATOOL.spad" 831000 831019 834013 834018) (-504 "IBACHIN.spad" 829507 829522 830990 830995) (-503 "IARRAY2.spad" 828495 828521 829114 829141) (-502 "IARRAY1.spad" 827540 827555 827678 827705) (-501 "IAN.spad" 825763 825771 827356 827449) (-500 "IALGFACT.spad" 825366 825399 825753 825758) (-499 "HYPCAT.spad" 824790 824798 825356 825361) (-498 "HYPCAT.spad" 824212 824222 824780 824785) (-497 "HOSTNAME.spad" 824020 824028 824202 824207) (-496 "HOMOTOP.spad" 823763 823773 824010 824015) (-495 "HOAGG.spad" 821045 821055 823753 823758) (-494 "HOAGG.spad" 818102 818114 820812 820817) (-493 "HEXADEC.spad" 816204 816212 816569 816662) (-492 "HEUGCD.spad" 815239 815250 816194 816199) (-491 "HELLFDIV.spad" 814829 814853 815229 815234) (-490 "HEAP.spad" 814221 814231 814436 814463) (-489 "HEADAST.spad" 813754 813762 814211 814216) (-488 "HDP.spad" 803597 803613 803974 804105) (-487 "HDMP.spad" 800811 800826 801427 801554) (-486 "HB.spad" 799062 799070 800801 800806) (-485 "HASHTBL.spad" 797532 797563 797743 797770) (-484 "HASAST.spad" 797248 797256 797522 797527) (-483 "HACKPI.spad" 796739 796747 797150 797243) (-482 "GTSET.spad" 795678 795694 796385 796412) (-481 "GSTBL.spad" 794197 794232 794371 794386) (-480 "GSERIES.spad" 791368 791395 792329 792478) (-479 "GROUP.spad" 790641 790649 791348 791363) (-478 "GROUP.spad" 789922 789932 790631 790636) (-477 "GROEBSOL.spad" 788416 788437 789912 789917) (-476 "GRMOD.spad" 786987 786999 788406 788411) (-475 "GRMOD.spad" 785556 785570 786977 786982) (-474 "GRIMAGE.spad" 778445 778453 785546 785551) (-473 "GRDEF.spad" 776824 776832 778435 778440) (-472 "GRAY.spad" 775287 775295 776814 776819) (-471 "GRALG.spad" 774364 774376 775277 775282) (-470 "GRALG.spad" 773439 773453 774354 774359) (-469 "GPOLSET.spad" 772893 772916 773121 773148) (-468 "GOSPER.spad" 772162 772180 772883 772888) (-467 "GMODPOL.spad" 771310 771337 772130 772157) (-466 "GHENSEL.spad" 770393 770407 771300 771305) (-465 "GENUPS.spad" 766686 766699 770383 770388) (-464 "GENUFACT.spad" 766263 766273 766676 766681) (-463 "GENPGCD.spad" 765849 765866 766253 766258) (-462 "GENMFACT.spad" 765301 765320 765839 765844) (-461 "GENEEZ.spad" 763252 763265 765291 765296) (-460 "GDMP.spad" 760308 760325 761082 761209) (-459 "GCNAALG.spad" 754231 754258 760102 760169) (-458 "GCDDOM.spad" 753407 753415 754157 754226) (-457 "GCDDOM.spad" 752645 752655 753397 753402) (-456 "GB.spad" 750171 750209 752601 752606) (-455 "GBINTERN.spad" 746191 746229 750161 750166) (-454 "GBF.spad" 741958 741996 746181 746186) (-453 "GBEUCLID.spad" 739840 739878 741948 741953) (-452 "GAUSSFAC.spad" 739153 739161 739830 739835) (-451 "GALUTIL.spad" 737479 737489 739109 739114) (-450 "GALPOLYU.spad" 735933 735946 737469 737474) (-449 "GALFACTU.spad" 734106 734125 735923 735928) (-448 "GALFACT.spad" 724295 724306 734096 734101) (-447 "FVFUN.spad" 721318 721326 724285 724290) (-446 "FVC.spad" 720370 720378 721308 721313) (-445 "FUNDESC.spad" 720048 720056 720360 720365) (-444 "FUNCTION.spad" 719897 719909 720038 720043) (-443 "FT.spad" 718194 718202 719887 719892) (-442 "FTEM.spad" 717359 717367 718184 718189) (-441 "FSUPFACT.spad" 716259 716278 717295 717300) (-440 "FST.spad" 714345 714353 716249 716254) (-439 "FSRED.spad" 713825 713841 714335 714340) (-438 "FSPRMELT.spad" 712707 712723 713782 713787) (-437 "FSPECF.spad" 710798 710814 712697 712702) (-436 "FS.spad" 705066 705076 710573 710793) (-435 "FS.spad" 699112 699124 704621 704626) (-434 "FSINT.spad" 698772 698788 699102 699107) (-433 "FSERIES.spad" 697963 697975 698592 698691) (-432 "FSCINT.spad" 697280 697296 697953 697958) (-431 "FSAGG.spad" 696397 696407 697236 697275) (-430 "FSAGG.spad" 695476 695488 696317 696322) (-429 "FSAGG2.spad" 694219 694235 695466 695471) (-428 "FS2UPS.spad" 688710 688744 694209 694214) (-427 "FS2.spad" 688357 688373 688700 688705) (-426 "FS2EXPXP.spad" 687482 687505 688347 688352) (-425 "FRUTIL.spad" 686436 686446 687472 687477) (-424 "FR.spad" 680152 680162 685460 685529) (-423 "FRNAALG.spad" 675271 675281 680094 680147) (-422 "FRNAALG.spad" 670402 670414 675227 675232) (-421 "FRNAAF2.spad" 669858 669876 670392 670397) (-420 "FRMOD.spad" 669268 669298 669789 669794) (-419 "FRIDEAL.spad" 668493 668514 669248 669263) (-418 "FRIDEAL2.spad" 668097 668129 668483 668488) (-417 "FRETRCT.spad" 667608 667618 668087 668092) (-416 "FRETRCT.spad" 666985 666997 667466 667471) (-415 "FRAMALG.spad" 665333 665346 666941 666980) (-414 "FRAMALG.spad" 663713 663728 665323 665328) (-413 "FRAC.spad" 660812 660822 661215 661388) (-412 "FRAC2.spad" 660417 660429 660802 660807) (-411 "FR2.spad" 659753 659765 660407 660412) (-410 "FPS.spad" 656568 656576 659643 659748) (-409 "FPS.spad" 653411 653421 656488 656493) (-408 "FPC.spad" 652457 652465 653313 653406) (-407 "FPC.spad" 651589 651599 652447 652452) (-406 "FPATMAB.spad" 651351 651361 651579 651584) (-405 "FPARFRAC.spad" 649838 649855 651341 651346) (-404 "FORTRAN.spad" 648344 648387 649828 649833) (-403 "FORT.spad" 647293 647301 648334 648339) (-402 "FORTFN.spad" 644463 644471 647283 647288) (-401 "FORTCAT.spad" 644147 644155 644453 644458) (-400 "FORMULA.spad" 641621 641629 644137 644142) (-399 "FORMULA1.spad" 641100 641110 641611 641616) (-398 "FORDER.spad" 640791 640815 641090 641095) (-397 "FOP.spad" 639992 640000 640781 640786) (-396 "FNLA.spad" 639416 639438 639960 639987) (-395 "FNCAT.spad" 638011 638019 639406 639411) (-394 "FNAME.spad" 637903 637911 638001 638006) (-393 "FMTC.spad" 637701 637709 637829 637898) (-392 "FMONOID.spad" 637366 637376 637657 637662) (-391 "FMONCAT.spad" 634519 634529 637356 637361) (-390 "FM.spad" 634214 634226 634453 634480) (-389 "FMFUN.spad" 631244 631252 634204 634209) (-388 "FMC.spad" 630296 630304 631234 631239) (-387 "FMCAT.spad" 627964 627982 630264 630291) (-386 "FM1.spad" 627321 627333 627898 627925) (-385 "FLOATRP.spad" 625056 625070 627311 627316) (-384 "FLOAT.spad" 618370 618378 624922 625051) (-383 "FLOATCP.spad" 615801 615815 618360 618365) (-382 "FLINEXP.spad" 615513 615523 615781 615796) (-381 "FLINEXP.spad" 615179 615191 615449 615454) (-380 "FLASORT.spad" 614505 614517 615169 615174) (-379 "FLALG.spad" 612151 612170 614431 614500) (-378 "FLAGG.spad" 609193 609203 612131 612146) (-377 "FLAGG.spad" 606136 606148 609076 609081) (-376 "FLAGG2.spad" 604861 604877 606126 606131) (-375 "FINRALG.spad" 602922 602935 604817 604856) (-374 "FINRALG.spad" 600909 600924 602806 602811) (-373 "FINITE.spad" 600061 600069 600899 600904) (-372 "FINAALG.spad" 589182 589192 600003 600056) (-371 "FINAALG.spad" 578315 578327 589138 589143) (-370 "FILE.spad" 577898 577908 578305 578310) (-369 "FILECAT.spad" 576424 576441 577888 577893) (-368 "FIELD.spad" 575830 575838 576326 576419) (-367 "FIELD.spad" 575322 575332 575820 575825) (-366 "FGROUP.spad" 573969 573979 575302 575317) (-365 "FGLMICPK.spad" 572756 572771 573959 573964) (-364 "FFX.spad" 572131 572146 572472 572565) (-363 "FFSLPE.spad" 571634 571655 572121 572126) (-362 "FFPOLY.spad" 562896 562907 571624 571629) (-361 "FFPOLY2.spad" 561956 561973 562886 562891) (-360 "FFP.spad" 561353 561373 561672 561765) (-359 "FF.spad" 560801 560817 561034 561127) (-358 "FFNBX.spad" 559313 559333 560517 560610) (-357 "FFNBP.spad" 557826 557843 559029 559122) (-356 "FFNB.spad" 556291 556312 557507 557600) (-355 "FFINTBAS.spad" 553805 553824 556281 556286) (-354 "FFIELDC.spad" 551382 551390 553707 553800) (-353 "FFIELDC.spad" 549045 549055 551372 551377) (-352 "FFHOM.spad" 547793 547810 549035 549040) (-351 "FFF.spad" 545228 545239 547783 547788) (-350 "FFCGX.spad" 544075 544095 544944 545037) (-349 "FFCGP.spad" 542964 542984 543791 543884) (-348 "FFCG.spad" 541756 541777 542645 542738) (-347 "FFCAT.spad" 534929 534951 541595 541751) (-346 "FFCAT.spad" 528181 528205 534849 534854) (-345 "FFCAT2.spad" 527928 527968 528171 528176) (-344 "FEXPR.spad" 519645 519691 527684 527723) (-343 "FEVALAB.spad" 519353 519363 519635 519640) (-342 "FEVALAB.spad" 518846 518858 519130 519135) (-341 "FDIV.spad" 518288 518312 518836 518841) (-340 "FDIVCAT.spad" 516352 516376 518278 518283) (-339 "FDIVCAT.spad" 514414 514440 516342 516347) (-338 "FDIV2.spad" 514070 514110 514404 514409) (-337 "FCTRDATA.spad" 513078 513086 514060 514065) (-336 "FCPAK1.spad" 511645 511653 513068 513073) (-335 "FCOMP.spad" 511024 511034 511635 511640) (-334 "FC.spad" 501031 501039 511014 511019) (-333 "FAXF.spad" 494002 494016 500933 501026) (-332 "FAXF.spad" 487025 487041 493958 493963) (-331 "FARRAY.spad" 485175 485185 486208 486235) (-330 "FAMR.spad" 483311 483323 485073 485170) (-329 "FAMR.spad" 481431 481445 483195 483200) (-328 "FAMONOID.spad" 481099 481109 481385 481390) (-327 "FAMONC.spad" 479395 479407 481089 481094) (-326 "FAGROUP.spad" 479019 479029 479291 479318) (-325 "FACUTIL.spad" 477223 477240 479009 479014) (-324 "FACTFUNC.spad" 476417 476427 477213 477218) (-323 "EXPUPXS.spad" 473250 473273 474549 474698) (-322 "EXPRTUBE.spad" 470538 470546 473240 473245) (-321 "EXPRODE.spad" 467698 467714 470528 470533) (-320 "EXPR.spad" 462973 462983 463687 464094) (-319 "EXPR2UPS.spad" 459095 459108 462963 462968) (-318 "EXPR2.spad" 458800 458812 459085 459090) (-317 "EXPEXPAN.spad" 455740 455765 456372 456465) (-316 "EXIT.spad" 455411 455419 455730 455735) (-315 "EXITAST.spad" 455147 455155 455401 455406) (-314 "EVALCYC.spad" 454607 454621 455137 455142) (-313 "EVALAB.spad" 454179 454189 454597 454602) (-312 "EVALAB.spad" 453749 453761 454169 454174) (-311 "EUCDOM.spad" 451323 451331 453675 453744) (-310 "EUCDOM.spad" 448959 448969 451313 451318) (-309 "ESTOOLS.spad" 440805 440813 448949 448954) (-308 "ESTOOLS2.spad" 440408 440422 440795 440800) (-307 "ESTOOLS1.spad" 440093 440104 440398 440403) (-306 "ES.spad" 432908 432916 440083 440088) (-305 "ES.spad" 425629 425639 432806 432811) (-304 "ESCONT.spad" 422422 422430 425619 425624) (-303 "ESCONT1.spad" 422171 422183 422412 422417) (-302 "ES2.spad" 421676 421692 422161 422166) (-301 "ES1.spad" 421246 421262 421666 421671) (-300 "ERROR.spad" 418573 418581 421236 421241) (-299 "EQTBL.spad" 417045 417067 417254 417281) (-298 "EQ.spad" 411850 411860 414637 414749) (-297 "EQ2.spad" 411568 411580 411840 411845) (-296 "EP.spad" 407894 407904 411558 411563) (-295 "ENV.spad" 406572 406580 407884 407889) (-294 "ENTIRER.spad" 406240 406248 406516 406567) (-293 "EMR.spad" 405447 405488 406166 406235) (-292 "ELTAGG.spad" 403701 403720 405437 405442) (-291 "ELTAGG.spad" 401919 401940 403657 403662) (-290 "ELTAB.spad" 401368 401386 401909 401914) (-289 "ELFUTS.spad" 400755 400774 401358 401363) (-288 "ELEMFUN.spad" 400444 400452 400745 400750) (-287 "ELEMFUN.spad" 400131 400141 400434 400439) (-286 "ELAGG.spad" 398102 398112 400111 400126) (-285 "ELAGG.spad" 396010 396022 398021 398026) (-284 "ELABOR.spad" 395356 395364 396000 396005) (-283 "ELABEXPR.spad" 394288 394296 395346 395351) (-282 "EFUPXS.spad" 391064 391094 394244 394249) (-281 "EFULS.spad" 387900 387923 391020 391025) (-280 "EFSTRUC.spad" 385915 385931 387890 387895) (-279 "EF.spad" 380691 380707 385905 385910) (-278 "EAB.spad" 378967 378975 380681 380686) (-277 "E04UCFA.spad" 378503 378511 378957 378962) (-276 "E04NAFA.spad" 378080 378088 378493 378498) (-275 "E04MBFA.spad" 377660 377668 378070 378075) (-274 "E04JAFA.spad" 377196 377204 377650 377655) (-273 "E04GCFA.spad" 376732 376740 377186 377191) (-272 "E04FDFA.spad" 376268 376276 376722 376727) (-271 "E04DGFA.spad" 375804 375812 376258 376263) (-270 "E04AGNT.spad" 371654 371662 375794 375799) (-269 "DVARCAT.spad" 368343 368353 371644 371649) (-268 "DVARCAT.spad" 365030 365042 368333 368338) (-267 "DSMP.spad" 362497 362511 362802 362929) (-266 "DROPT.spad" 356456 356464 362487 362492) (-265 "DROPT1.spad" 356121 356131 356446 356451) (-264 "DROPT0.spad" 350978 350986 356111 356116) (-263 "DRAWPT.spad" 349151 349159 350968 350973) (-262 "DRAW.spad" 342027 342040 349141 349146) (-261 "DRAWHACK.spad" 341335 341345 342017 342022) (-260 "DRAWCX.spad" 338805 338813 341325 341330) (-259 "DRAWCURV.spad" 338352 338367 338795 338800) (-258 "DRAWCFUN.spad" 327884 327892 338342 338347) (-257 "DQAGG.spad" 326062 326072 327852 327879) (-256 "DPOLCAT.spad" 321411 321427 325930 326057) (-255 "DPOLCAT.spad" 316846 316864 321367 321372) (-254 "DPMO.spad" 309072 309088 309210 309511) (-253 "DPMM.spad" 301311 301329 301436 301737) (-252 "DOMTMPLT.spad" 300971 300979 301301 301306) (-251 "DOMCTOR.spad" 300726 300734 300961 300966) (-250 "DOMAIN.spad" 299813 299821 300716 300721) (-249 "DMP.spad" 297073 297088 297643 297770) (-248 "DLP.spad" 296425 296435 297063 297068) (-247 "DLIST.spad" 295004 295014 295608 295635) (-246 "DLAGG.spad" 293421 293431 294994 294999) (-245 "DIVRING.spad" 292963 292971 293365 293416) (-244 "DIVRING.spad" 292549 292559 292953 292958) (-243 "DISPLAY.spad" 290739 290747 292539 292544) (-242 "DIRPROD.spad" 280319 280335 280959 281090) (-241 "DIRPROD2.spad" 279137 279155 280309 280314) (-240 "DIRPCAT.spad" 278081 278097 279001 279132) (-239 "DIRPCAT.spad" 276754 276772 277676 277681) (-238 "DIOSP.spad" 275579 275587 276744 276749) (-237 "DIOPS.spad" 274575 274585 275559 275574) (-236 "DIOPS.spad" 273545 273557 274531 274536) (-235 "DIFRING.spad" 272841 272849 273525 273540) (-234 "DIFRING.spad" 272145 272155 272831 272836) (-233 "DIFEXT.spad" 271316 271326 272125 272140) (-232 "DIFEXT.spad" 270404 270416 271215 271220) (-231 "DIAGG.spad" 270034 270044 270384 270399) (-230 "DIAGG.spad" 269672 269684 270024 270029) (-229 "DHMATRIX.spad" 267984 267994 269129 269156) (-228 "DFSFUN.spad" 261624 261632 267974 267979) (-227 "DFLOAT.spad" 258355 258363 261514 261619) (-226 "DFINTTLS.spad" 256586 256602 258345 258350) (-225 "DERHAM.spad" 254500 254532 256566 256581) (-224 "DEQUEUE.spad" 253824 253834 254107 254134) (-223 "DEGRED.spad" 253441 253455 253814 253819) (-222 "DEFINTRF.spad" 250978 250988 253431 253436) (-221 "DEFINTEF.spad" 249488 249504 250968 250973) (-220 "DEFAST.spad" 248856 248864 249478 249483) (-219 "DECIMAL.spad" 246962 246970 247323 247416) (-218 "DDFACT.spad" 244775 244792 246952 246957) (-217 "DBLRESP.spad" 244375 244399 244765 244770) (-216 "DBASE.spad" 243039 243049 244365 244370) (-215 "DATAARY.spad" 242501 242514 243029 243034) (-214 "D03FAFA.spad" 242329 242337 242491 242496) (-213 "D03EEFA.spad" 242149 242157 242319 242324) (-212 "D03AGNT.spad" 241235 241243 242139 242144) (-211 "D02EJFA.spad" 240697 240705 241225 241230) (-210 "D02CJFA.spad" 240175 240183 240687 240692) (-209 "D02BHFA.spad" 239665 239673 240165 240170) (-208 "D02BBFA.spad" 239155 239163 239655 239660) (-207 "D02AGNT.spad" 233969 233977 239145 239150) (-206 "D01WGTS.spad" 232288 232296 233959 233964) (-205 "D01TRNS.spad" 232265 232273 232278 232283) (-204 "D01GBFA.spad" 231787 231795 232255 232260) (-203 "D01FCFA.spad" 231309 231317 231777 231782) (-202 "D01ASFA.spad" 230777 230785 231299 231304) (-201 "D01AQFA.spad" 230223 230231 230767 230772) (-200 "D01APFA.spad" 229647 229655 230213 230218) (-199 "D01ANFA.spad" 229141 229149 229637 229642) (-198 "D01AMFA.spad" 228651 228659 229131 229136) (-197 "D01ALFA.spad" 228191 228199 228641 228646) (-196 "D01AKFA.spad" 227717 227725 228181 228186) (-195 "D01AJFA.spad" 227240 227248 227707 227712) (-194 "D01AGNT.spad" 223307 223315 227230 227235) (-193 "CYCLOTOM.spad" 222813 222821 223297 223302) (-192 "CYCLES.spad" 219669 219677 222803 222808) (-191 "CVMP.spad" 219086 219096 219659 219664) (-190 "CTRIGMNP.spad" 217586 217602 219076 219081) (-189 "CTOR.spad" 217277 217285 217576 217581) (-188 "CTORKIND.spad" 216880 216888 217267 217272) (-187 "CTORCAT.spad" 216129 216137 216870 216875) (-186 "CTORCAT.spad" 215376 215386 216119 216124) (-185 "CTORCALL.spad" 214965 214975 215366 215371) (-184 "CSTTOOLS.spad" 214210 214223 214955 214960) (-183 "CRFP.spad" 207934 207947 214200 214205) (-182 "CRCEAST.spad" 207654 207662 207924 207929) (-181 "CRAPACK.spad" 206705 206715 207644 207649) (-180 "CPMATCH.spad" 206209 206224 206630 206635) (-179 "CPIMA.spad" 205914 205933 206199 206204) (-178 "COORDSYS.spad" 200923 200933 205904 205909) (-177 "CONTOUR.spad" 200334 200342 200913 200918) (-176 "CONTFRAC.spad" 196084 196094 200236 200329) (-175 "CONDUIT.spad" 195842 195850 196074 196079) (-174 "COMRING.spad" 195516 195524 195780 195837) (-173 "COMPPROP.spad" 195034 195042 195506 195511) (-172 "COMPLPAT.spad" 194801 194816 195024 195029) (-171 "COMPLEX.spad" 188938 188948 189182 189443) (-170 "COMPLEX2.spad" 188653 188665 188928 188933) (-169 "COMPILER.spad" 188202 188210 188643 188648) (-168 "COMPFACT.spad" 187804 187818 188192 188197) (-167 "COMPCAT.spad" 185876 185886 187538 187799) (-166 "COMPCAT.spad" 183676 183688 185340 185345) (-165 "COMMUPC.spad" 183424 183442 183666 183671) (-164 "COMMONOP.spad" 182957 182965 183414 183419) (-163 "COMM.spad" 182768 182776 182947 182952) (-162 "COMMAAST.spad" 182531 182539 182758 182763) (-161 "COMBOPC.spad" 181446 181454 182521 182526) (-160 "COMBINAT.spad" 180213 180223 181436 181441) (-159 "COMBF.spad" 177595 177611 180203 180208) (-158 "COLOR.spad" 176432 176440 177585 177590) (-157 "COLONAST.spad" 176098 176106 176422 176427) (-156 "CMPLXRT.spad" 175809 175826 176088 176093) (-155 "CLLCTAST.spad" 175471 175479 175799 175804) (-154 "CLIP.spad" 171579 171587 175461 175466) (-153 "CLIF.spad" 170234 170250 171535 171574) (-152 "CLAGG.spad" 166739 166749 170224 170229) (-151 "CLAGG.spad" 163115 163127 166602 166607) (-150 "CINTSLPE.spad" 162446 162459 163105 163110) (-149 "CHVAR.spad" 160584 160606 162436 162441) (-148 "CHARZ.spad" 160499 160507 160564 160579) (-147 "CHARPOL.spad" 160009 160019 160489 160494) (-146 "CHARNZ.spad" 159762 159770 159989 160004) (-145 "CHAR.spad" 157636 157644 159752 159757) (-144 "CFCAT.spad" 156964 156972 157626 157631) (-143 "CDEN.spad" 156160 156174 156954 156959) (-142 "CCLASS.spad" 154309 154317 155571 155610) (-141 "CATEGORY.spad" 153351 153359 154299 154304) (-140 "CATCTOR.spad" 153242 153250 153341 153346) (-139 "CATAST.spad" 152860 152868 153232 153237) (-138 "CASEAST.spad" 152574 152582 152850 152855) (-137 "CARTEN.spad" 147861 147885 152564 152569) (-136 "CARTEN2.spad" 147251 147278 147851 147856) (-135 "CARD.spad" 144546 144554 147225 147246) (-134 "CAPSLAST.spad" 144320 144328 144536 144541) (-133 "CACHSET.spad" 143944 143952 144310 144315) (-132 "CABMON.spad" 143499 143507 143934 143939) (-131 "BYTEORD.spad" 143174 143182 143489 143494) (-130 "BYTE.spad" 142601 142609 143164 143169) (-129 "BYTEBUF.spad" 140460 140468 141770 141797) (-128 "BTREE.spad" 139533 139543 140067 140094) (-127 "BTOURN.spad" 138538 138548 139140 139167) (-126 "BTCAT.spad" 137930 137940 138506 138533) (-125 "BTCAT.spad" 137342 137354 137920 137925) (-124 "BTAGG.spad" 136808 136816 137310 137337) (-123 "BTAGG.spad" 136294 136304 136798 136803) (-122 "BSTREE.spad" 135035 135045 135901 135928) (-121 "BRILL.spad" 133232 133243 135025 135030) (-120 "BRAGG.spad" 132172 132182 133222 133227) (-119 "BRAGG.spad" 131076 131088 132128 132133) (-118 "BPADICRT.spad" 129057 129069 129312 129405) (-117 "BPADIC.spad" 128721 128733 128983 129052) (-116 "BOUNDZRO.spad" 128377 128394 128711 128716) (-115 "BOP.spad" 123559 123567 128367 128372) (-114 "BOP1.spad" 121025 121035 123549 123554) (-113 "BOOLE.spad" 120675 120683 121015 121020) (-112 "BOOLEAN.spad" 120113 120121 120665 120670) (-111 "BMODULE.spad" 119825 119837 120081 120108) (-110 "BITS.spad" 119246 119254 119461 119488) (-109 "BINDING.spad" 118659 118667 119236 119241) (-108 "BINARY.spad" 116770 116778 117126 117219) (-107 "BGAGG.spad" 115975 115985 116750 116765) (-106 "BGAGG.spad" 115188 115200 115965 115970) (-105 "BFUNCT.spad" 114752 114760 115168 115183) (-104 "BEZOUT.spad" 113892 113919 114702 114707) (-103 "BBTREE.spad" 110737 110747 113499 113526) (-102 "BASTYPE.spad" 110409 110417 110727 110732) (-101 "BASTYPE.spad" 110079 110089 110399 110404) (-100 "BALFACT.spad" 109538 109551 110069 110074) (-99 "AUTOMOR.spad" 108989 108998 109518 109533) (-98 "ATTREG.spad" 105712 105719 108741 108984) (-97 "ATTRBUT.spad" 101735 101742 105692 105707) (-96 "ATTRAST.spad" 101452 101459 101725 101730) (-95 "ATRIG.spad" 100922 100929 101442 101447) (-94 "ATRIG.spad" 100390 100399 100912 100917) (-93 "ASTCAT.spad" 100294 100301 100380 100385) (-92 "ASTCAT.spad" 100196 100205 100284 100289) (-91 "ASTACK.spad" 99535 99544 99803 99830) (-90 "ASSOCEQ.spad" 98361 98372 99491 99496) (-89 "ASP9.spad" 97442 97455 98351 98356) (-88 "ASP8.spad" 96485 96498 97432 97437) (-87 "ASP80.spad" 95807 95820 96475 96480) (-86 "ASP7.spad" 94967 94980 95797 95802) (-85 "ASP78.spad" 94418 94431 94957 94962) (-84 "ASP77.spad" 93787 93800 94408 94413) (-83 "ASP74.spad" 92879 92892 93777 93782) (-82 "ASP73.spad" 92150 92163 92869 92874) (-81 "ASP6.spad" 91017 91030 92140 92145) (-80 "ASP55.spad" 89526 89539 91007 91012) (-79 "ASP50.spad" 87343 87356 89516 89521) (-78 "ASP4.spad" 86638 86651 87333 87338) (-77 "ASP49.spad" 85637 85650 86628 86633) (-76 "ASP42.spad" 84044 84083 85627 85632) (-75 "ASP41.spad" 82623 82662 84034 84039) (-74 "ASP35.spad" 81611 81624 82613 82618) (-73 "ASP34.spad" 80912 80925 81601 81606) (-72 "ASP33.spad" 80472 80485 80902 80907) (-71 "ASP31.spad" 79612 79625 80462 80467) (-70 "ASP30.spad" 78504 78517 79602 79607) (-69 "ASP29.spad" 77970 77983 78494 78499) (-68 "ASP28.spad" 69243 69256 77960 77965) (-67 "ASP27.spad" 68140 68153 69233 69238) (-66 "ASP24.spad" 67227 67240 68130 68135) (-65 "ASP20.spad" 66691 66704 67217 67222) (-64 "ASP1.spad" 66072 66085 66681 66686) (-63 "ASP19.spad" 60758 60771 66062 66067) (-62 "ASP12.spad" 60172 60185 60748 60753) (-61 "ASP10.spad" 59443 59456 60162 60167) (-60 "ARRAY2.spad" 58803 58812 59050 59077) (-59 "ARRAY1.spad" 57640 57649 57986 58013) (-58 "ARRAY12.spad" 56353 56364 57630 57635) (-57 "ARR2CAT.spad" 52127 52148 56321 56348) (-56 "ARR2CAT.spad" 47921 47944 52117 52122) (-55 "ARITY.spad" 47293 47300 47911 47916) (-54 "APPRULE.spad" 46553 46575 47283 47288) (-53 "APPLYORE.spad" 46172 46185 46543 46548) (-52 "ANY.spad" 45031 45038 46162 46167) (-51 "ANY1.spad" 44102 44111 45021 45026) (-50 "ANTISYM.spad" 42547 42563 44082 44097) (-49 "ANON.spad" 42240 42247 42537 42542) (-48 "AN.spad" 40549 40556 42056 42149) (-47 "AMR.spad" 38734 38745 40447 40544) (-46 "AMR.spad" 36756 36769 38471 38476) (-45 "ALIST.spad" 34168 34189 34518 34545) (-44 "ALGSC.spad" 33303 33329 34040 34093) (-43 "ALGPKG.spad" 29086 29097 33259 33264) (-42 "ALGMFACT.spad" 28279 28293 29076 29081) (-41 "ALGMANIP.spad" 25753 25768 28112 28117) (-40 "ALGFF.spad" 24068 24095 24285 24441) (-39 "ALGFACT.spad" 23195 23205 24058 24063) (-38 "ALGEBRA.spad" 23028 23037 23151 23190) (-37 "ALGEBRA.spad" 22893 22904 23018 23023) (-36 "ALAGG.spad" 22405 22426 22861 22888) (-35 "AHYP.spad" 21786 21793 22395 22400) (-34 "AGG.spad" 20103 20110 21776 21781) (-33 "AGG.spad" 18384 18393 20059 20064) (-32 "AF.spad" 16815 16830 18319 18324) (-31 "ADDAST.spad" 16493 16500 16805 16810) (-30 "ACPLOT.spad" 15084 15091 16483 16488) (-29 "ACFS.spad" 12893 12902 14986 15079) (-28 "ACFS.spad" 10788 10799 12883 12888) (-27 "ACF.spad" 7470 7477 10690 10783) (-26 "ACF.spad" 4238 4247 7460 7465) (-25 "ABELSG.spad" 3779 3786 4228 4233) (-24 "ABELSG.spad" 3318 3327 3769 3774) (-23 "ABELMON.spad" 2861 2868 3308 3313) (-22 "ABELMON.spad" 2402 2411 2851 2856) (-21 "ABELGRP.spad" 2067 2074 2392 2397) (-20 "ABELGRP.spad" 1730 1739 2057 2062) (-19 "A1AGG.spad" 870 879 1698 1725) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
+((-3 NIL 2268037 2268042 2268047 2268052) (-2 NIL 2268017 2268022 2268027 2268032) (-1 NIL 2267997 2268002 2268007 2268012) (0 NIL 2267977 2267982 2267987 2267992) (-1305 "ZMOD.spad" 2267786 2267799 2267915 2267972) (-1304 "ZLINDEP.spad" 2266852 2266863 2267776 2267781) (-1303 "ZDSOLVE.spad" 2256797 2256819 2266842 2266847) (-1302 "YSTREAM.spad" 2256292 2256303 2256787 2256792) (-1301 "XRPOLY.spad" 2255512 2255532 2256148 2256217) (-1300 "XPR.spad" 2253307 2253320 2255230 2255329) (-1299 "XPOLY.spad" 2252862 2252873 2253163 2253232) (-1298 "XPOLYC.spad" 2252181 2252197 2252788 2252857) (-1297 "XPBWPOLY.spad" 2250618 2250638 2251961 2252030) (-1296 "XF.spad" 2249081 2249096 2250520 2250613) (-1295 "XF.spad" 2247524 2247541 2248965 2248970) (-1294 "XFALG.spad" 2244572 2244588 2247450 2247519) (-1293 "XEXPPKG.spad" 2243823 2243849 2244562 2244567) (-1292 "XDPOLY.spad" 2243437 2243453 2243679 2243748) (-1291 "XALG.spad" 2243097 2243108 2243393 2243432) (-1290 "WUTSET.spad" 2238936 2238953 2242743 2242770) (-1289 "WP.spad" 2238135 2238179 2238794 2238861) (-1288 "WHILEAST.spad" 2237933 2237942 2238125 2238130) (-1287 "WHEREAST.spad" 2237604 2237613 2237923 2237928) (-1286 "WFFINTBS.spad" 2235267 2235289 2237594 2237599) (-1285 "WEIER.spad" 2233489 2233500 2235257 2235262) (-1284 "VSPACE.spad" 2233162 2233173 2233457 2233484) (-1283 "VSPACE.spad" 2232855 2232868 2233152 2233157) (-1282 "VOID.spad" 2232532 2232541 2232845 2232850) (-1281 "VIEW.spad" 2230212 2230221 2232522 2232527) (-1280 "VIEWDEF.spad" 2225413 2225422 2230202 2230207) (-1279 "VIEW3D.spad" 2209374 2209383 2225403 2225408) (-1278 "VIEW2D.spad" 2197265 2197274 2209364 2209369) (-1277 "VECTOR.spad" 2195939 2195950 2196190 2196217) (-1276 "VECTOR2.spad" 2194578 2194591 2195929 2195934) (-1275 "VECTCAT.spad" 2192482 2192493 2194546 2194573) (-1274 "VECTCAT.spad" 2190193 2190206 2192259 2192264) (-1273 "VARIABLE.spad" 2189973 2189988 2190183 2190188) (-1272 "UTYPE.spad" 2189617 2189626 2189963 2189968) (-1271 "UTSODETL.spad" 2188912 2188936 2189573 2189578) (-1270 "UTSODE.spad" 2187128 2187148 2188902 2188907) (-1269 "UTS.spad" 2181932 2181960 2185595 2185692) (-1268 "UTSCAT.spad" 2179411 2179427 2181830 2181927) (-1267 "UTSCAT.spad" 2176534 2176552 2178955 2178960) (-1266 "UTS2.spad" 2176129 2176164 2176524 2176529) (-1265 "URAGG.spad" 2170802 2170813 2176119 2176124) (-1264 "URAGG.spad" 2165439 2165452 2170758 2170763) (-1263 "UPXSSING.spad" 2163084 2163110 2164520 2164653) (-1262 "UPXS.spad" 2160238 2160266 2161216 2161365) (-1261 "UPXSCONS.spad" 2157997 2158017 2158370 2158519) (-1260 "UPXSCCA.spad" 2156568 2156588 2157843 2157992) (-1259 "UPXSCCA.spad" 2155281 2155303 2156558 2156563) (-1258 "UPXSCAT.spad" 2153870 2153886 2155127 2155276) (-1257 "UPXS2.spad" 2153413 2153466 2153860 2153865) (-1256 "UPSQFREE.spad" 2151827 2151841 2153403 2153408) (-1255 "UPSCAT.spad" 2149438 2149462 2151725 2151822) (-1254 "UPSCAT.spad" 2146755 2146781 2149044 2149049) (-1253 "UPOLYC.spad" 2141795 2141806 2146597 2146750) (-1252 "UPOLYC.spad" 2136727 2136740 2141531 2141536) (-1251 "UPOLYC2.spad" 2136198 2136217 2136717 2136722) (-1250 "UP.spad" 2133397 2133412 2133784 2133937) (-1249 "UPMP.spad" 2132297 2132310 2133387 2133392) (-1248 "UPDIVP.spad" 2131862 2131876 2132287 2132292) (-1247 "UPDECOMP.spad" 2130107 2130121 2131852 2131857) (-1246 "UPCDEN.spad" 2129316 2129332 2130097 2130102) (-1245 "UP2.spad" 2128680 2128701 2129306 2129311) (-1244 "UNISEG.spad" 2128033 2128044 2128599 2128604) (-1243 "UNISEG2.spad" 2127530 2127543 2127989 2127994) (-1242 "UNIFACT.spad" 2126633 2126645 2127520 2127525) (-1241 "ULS.spad" 2117191 2117219 2118278 2118707) (-1240 "ULSCONS.spad" 2109587 2109607 2109957 2110106) (-1239 "ULSCCAT.spad" 2107324 2107344 2109433 2109582) (-1238 "ULSCCAT.spad" 2105169 2105191 2107280 2107285) (-1237 "ULSCAT.spad" 2103401 2103417 2105015 2105164) (-1236 "ULS2.spad" 2102915 2102968 2103391 2103396) (-1235 "UINT8.spad" 2102792 2102801 2102905 2102910) (-1234 "UINT64.spad" 2102668 2102677 2102782 2102787) (-1233 "UINT32.spad" 2102544 2102553 2102658 2102663) (-1232 "UINT16.spad" 2102420 2102429 2102534 2102539) (-1231 "UFD.spad" 2101485 2101494 2102346 2102415) (-1230 "UFD.spad" 2100612 2100623 2101475 2101480) (-1229 "UDVO.spad" 2099493 2099502 2100602 2100607) (-1228 "UDPO.spad" 2096986 2096997 2099449 2099454) (-1227 "TYPE.spad" 2096918 2096927 2096976 2096981) (-1226 "TYPEAST.spad" 2096837 2096846 2096908 2096913) (-1225 "TWOFACT.spad" 2095489 2095504 2096827 2096832) (-1224 "TUPLE.spad" 2094975 2094986 2095388 2095393) (-1223 "TUBETOOL.spad" 2091842 2091851 2094965 2094970) (-1222 "TUBE.spad" 2090489 2090506 2091832 2091837) (-1221 "TS.spad" 2089088 2089104 2090054 2090151) (-1220 "TSETCAT.spad" 2076215 2076232 2089056 2089083) (-1219 "TSETCAT.spad" 2063328 2063347 2076171 2076176) (-1218 "TRMANIP.spad" 2057694 2057711 2063034 2063039) (-1217 "TRIMAT.spad" 2056657 2056682 2057684 2057689) (-1216 "TRIGMNIP.spad" 2055184 2055201 2056647 2056652) (-1215 "TRIGCAT.spad" 2054696 2054705 2055174 2055179) (-1214 "TRIGCAT.spad" 2054206 2054217 2054686 2054691) (-1213 "TREE.spad" 2052781 2052792 2053813 2053840) (-1212 "TRANFUN.spad" 2052620 2052629 2052771 2052776) (-1211 "TRANFUN.spad" 2052457 2052468 2052610 2052615) (-1210 "TOPSP.spad" 2052131 2052140 2052447 2052452) (-1209 "TOOLSIGN.spad" 2051794 2051805 2052121 2052126) (-1208 "TEXTFILE.spad" 2050355 2050364 2051784 2051789) (-1207 "TEX.spad" 2047501 2047510 2050345 2050350) (-1206 "TEX1.spad" 2047057 2047068 2047491 2047496) (-1205 "TEMUTL.spad" 2046612 2046621 2047047 2047052) (-1204 "TBCMPPK.spad" 2044705 2044728 2046602 2046607) (-1203 "TBAGG.spad" 2043755 2043778 2044685 2044700) (-1202 "TBAGG.spad" 2042813 2042838 2043745 2043750) (-1201 "TANEXP.spad" 2042221 2042232 2042803 2042808) (-1200 "TALGOP.spad" 2041945 2041956 2042211 2042216) (-1199 "TABLE.spad" 2040356 2040379 2040626 2040653) (-1198 "TABLEAU.spad" 2039837 2039848 2040346 2040351) (-1197 "TABLBUMP.spad" 2036640 2036651 2039827 2039832) (-1196 "SYSTEM.spad" 2035868 2035877 2036630 2036635) (-1195 "SYSSOLP.spad" 2033351 2033362 2035858 2035863) (-1194 "SYSPTR.spad" 2033250 2033259 2033341 2033346) (-1193 "SYSNNI.spad" 2032432 2032443 2033240 2033245) (-1192 "SYSINT.spad" 2031836 2031847 2032422 2032427) (-1191 "SYNTAX.spad" 2028042 2028051 2031826 2031831) (-1190 "SYMTAB.spad" 2026110 2026119 2028032 2028037) (-1189 "SYMS.spad" 2022133 2022142 2026100 2026105) (-1188 "SYMPOLY.spad" 2021140 2021151 2021222 2021349) (-1187 "SYMFUNC.spad" 2020641 2020652 2021130 2021135) (-1186 "SYMBOL.spad" 2018144 2018153 2020631 2020636) (-1185 "SWITCH.spad" 2014915 2014924 2018134 2018139) (-1184 "SUTS.spad" 2011820 2011848 2013382 2013479) (-1183 "SUPXS.spad" 2008961 2008989 2009952 2010101) (-1182 "SUP.spad" 2005774 2005785 2006547 2006700) (-1181 "SUPFRACF.spad" 2004879 2004897 2005764 2005769) (-1180 "SUP2.spad" 2004271 2004284 2004869 2004874) (-1179 "SUMRF.spad" 2003245 2003256 2004261 2004266) (-1178 "SUMFS.spad" 2002882 2002899 2003235 2003240) (-1177 "SULS.spad" 1993427 1993455 1994527 1994956) (-1176 "SUCHTAST.spad" 1993196 1993205 1993417 1993422) (-1175 "SUCH.spad" 1992878 1992893 1993186 1993191) (-1174 "SUBSPACE.spad" 1984993 1985008 1992868 1992873) (-1173 "SUBRESP.spad" 1984163 1984177 1984949 1984954) (-1172 "STTF.spad" 1980262 1980278 1984153 1984158) (-1171 "STTFNC.spad" 1976730 1976746 1980252 1980257) (-1170 "STTAYLOR.spad" 1969365 1969376 1976611 1976616) (-1169 "STRTBL.spad" 1967870 1967887 1968019 1968046) (-1168 "STRING.spad" 1967279 1967288 1967293 1967320) (-1167 "STRICAT.spad" 1967067 1967076 1967247 1967274) (-1166 "STREAM.spad" 1963985 1963996 1966592 1966607) (-1165 "STREAM3.spad" 1963558 1963573 1963975 1963980) (-1164 "STREAM2.spad" 1962686 1962699 1963548 1963553) (-1163 "STREAM1.spad" 1962392 1962403 1962676 1962681) (-1162 "STINPROD.spad" 1961328 1961344 1962382 1962387) (-1161 "STEP.spad" 1960529 1960538 1961318 1961323) (-1160 "STEPAST.spad" 1959763 1959772 1960519 1960524) (-1159 "STBL.spad" 1958289 1958317 1958456 1958471) (-1158 "STAGG.spad" 1957364 1957375 1958279 1958284) (-1157 "STAGG.spad" 1956437 1956450 1957354 1957359) (-1156 "STACK.spad" 1955794 1955805 1956044 1956071) (-1155 "SREGSET.spad" 1953498 1953515 1955440 1955467) (-1154 "SRDCMPK.spad" 1952059 1952079 1953488 1953493) (-1153 "SRAGG.spad" 1947202 1947211 1952027 1952054) (-1152 "SRAGG.spad" 1942365 1942376 1947192 1947197) (-1151 "SQMATRIX.spad" 1939981 1939999 1940897 1940984) (-1150 "SPLTREE.spad" 1934533 1934546 1939417 1939444) (-1149 "SPLNODE.spad" 1931121 1931134 1934523 1934528) (-1148 "SPFCAT.spad" 1929930 1929939 1931111 1931116) (-1147 "SPECOUT.spad" 1928482 1928491 1929920 1929925) (-1146 "SPADXPT.spad" 1920077 1920086 1928472 1928477) (-1145 "spad-parser.spad" 1919542 1919551 1920067 1920072) (-1144 "SPADAST.spad" 1919243 1919252 1919532 1919537) (-1143 "SPACEC.spad" 1903442 1903453 1919233 1919238) (-1142 "SPACE3.spad" 1903218 1903229 1903432 1903437) (-1141 "SORTPAK.spad" 1902767 1902780 1903174 1903179) (-1140 "SOLVETRA.spad" 1900530 1900541 1902757 1902762) (-1139 "SOLVESER.spad" 1899058 1899069 1900520 1900525) (-1138 "SOLVERAD.spad" 1895084 1895095 1899048 1899053) (-1137 "SOLVEFOR.spad" 1893546 1893564 1895074 1895079) (-1136 "SNTSCAT.spad" 1893146 1893163 1893514 1893541) (-1135 "SMTS.spad" 1891418 1891444 1892711 1892808) (-1134 "SMP.spad" 1888893 1888913 1889283 1889410) (-1133 "SMITH.spad" 1887738 1887763 1888883 1888888) (-1132 "SMATCAT.spad" 1885848 1885878 1887682 1887733) (-1131 "SMATCAT.spad" 1883890 1883922 1885726 1885731) (-1130 "SKAGG.spad" 1882853 1882864 1883858 1883885) (-1129 "SINT.spad" 1881793 1881802 1882719 1882848) (-1128 "SIMPAN.spad" 1881521 1881530 1881783 1881788) (-1127 "SIG.spad" 1880851 1880860 1881511 1881516) (-1126 "SIGNRF.spad" 1879969 1879980 1880841 1880846) (-1125 "SIGNEF.spad" 1879248 1879265 1879959 1879964) (-1124 "SIGAST.spad" 1878633 1878642 1879238 1879243) (-1123 "SHP.spad" 1876561 1876576 1878589 1878594) (-1122 "SHDP.spad" 1866272 1866299 1866781 1866912) (-1121 "SGROUP.spad" 1865880 1865889 1866262 1866267) (-1120 "SGROUP.spad" 1865486 1865497 1865870 1865875) (-1119 "SGCF.spad" 1858649 1858658 1865476 1865481) (-1118 "SFRTCAT.spad" 1857579 1857596 1858617 1858644) (-1117 "SFRGCD.spad" 1856642 1856662 1857569 1857574) (-1116 "SFQCMPK.spad" 1851279 1851299 1856632 1856637) (-1115 "SFORT.spad" 1850718 1850732 1851269 1851274) (-1114 "SEXOF.spad" 1850561 1850601 1850708 1850713) (-1113 "SEX.spad" 1850453 1850462 1850551 1850556) (-1112 "SEXCAT.spad" 1848054 1848094 1850443 1850448) (-1111 "SET.spad" 1846378 1846389 1847475 1847514) (-1110 "SETMN.spad" 1844828 1844845 1846368 1846373) (-1109 "SETCAT.spad" 1844150 1844159 1844818 1844823) (-1108 "SETCAT.spad" 1843470 1843481 1844140 1844145) (-1107 "SETAGG.spad" 1840019 1840030 1843450 1843465) (-1106 "SETAGG.spad" 1836576 1836589 1840009 1840014) (-1105 "SEQAST.spad" 1836279 1836288 1836566 1836571) (-1104 "SEGXCAT.spad" 1835435 1835448 1836269 1836274) (-1103 "SEG.spad" 1835248 1835259 1835354 1835359) (-1102 "SEGCAT.spad" 1834173 1834184 1835238 1835243) (-1101 "SEGBIND.spad" 1833931 1833942 1834120 1834125) (-1100 "SEGBIND2.spad" 1833629 1833642 1833921 1833926) (-1099 "SEGAST.spad" 1833343 1833352 1833619 1833624) (-1098 "SEG2.spad" 1832778 1832791 1833299 1833304) (-1097 "SDVAR.spad" 1832054 1832065 1832768 1832773) (-1096 "SDPOL.spad" 1829480 1829491 1829771 1829898) (-1095 "SCPKG.spad" 1827569 1827580 1829470 1829475) (-1094 "SCOPE.spad" 1826722 1826731 1827559 1827564) (-1093 "SCACHE.spad" 1825418 1825429 1826712 1826717) (-1092 "SASTCAT.spad" 1825327 1825336 1825408 1825413) (-1091 "SAOS.spad" 1825199 1825208 1825317 1825322) (-1090 "SAERFFC.spad" 1824912 1824932 1825189 1825194) (-1089 "SAE.spad" 1823087 1823103 1823698 1823833) (-1088 "SAEFACT.spad" 1822788 1822808 1823077 1823082) (-1087 "RURPK.spad" 1820447 1820463 1822778 1822783) (-1086 "RULESET.spad" 1819900 1819924 1820437 1820442) (-1085 "RULE.spad" 1818140 1818164 1819890 1819895) (-1084 "RULECOLD.spad" 1817992 1818005 1818130 1818135) (-1083 "RTVALUE.spad" 1817727 1817736 1817982 1817987) (-1082 "RSTRCAST.spad" 1817444 1817453 1817717 1817722) (-1081 "RSETGCD.spad" 1813822 1813842 1817434 1817439) (-1080 "RSETCAT.spad" 1803758 1803775 1813790 1813817) (-1079 "RSETCAT.spad" 1793714 1793733 1803748 1803753) (-1078 "RSDCMPK.spad" 1792166 1792186 1793704 1793709) (-1077 "RRCC.spad" 1790550 1790580 1792156 1792161) (-1076 "RRCC.spad" 1788932 1788964 1790540 1790545) (-1075 "RPTAST.spad" 1788634 1788643 1788922 1788927) (-1074 "RPOLCAT.spad" 1767994 1768009 1788502 1788629) (-1073 "RPOLCAT.spad" 1747067 1747084 1767577 1767582) (-1072 "ROUTINE.spad" 1742950 1742959 1745714 1745741) (-1071 "ROMAN.spad" 1742278 1742287 1742816 1742945) (-1070 "ROIRC.spad" 1741358 1741390 1742268 1742273) (-1069 "RNS.spad" 1740261 1740270 1741260 1741353) (-1068 "RNS.spad" 1739250 1739261 1740251 1740256) (-1067 "RNG.spad" 1738985 1738994 1739240 1739245) (-1066 "RNGBIND.spad" 1738145 1738159 1738940 1738945) (-1065 "RMODULE.spad" 1737910 1737921 1738135 1738140) (-1064 "RMCAT2.spad" 1737330 1737387 1737900 1737905) (-1063 "RMATRIX.spad" 1736154 1736173 1736497 1736536) (-1062 "RMATCAT.spad" 1731733 1731764 1736110 1736149) (-1061 "RMATCAT.spad" 1727202 1727235 1731581 1731586) (-1060 "RLINSET.spad" 1726596 1726607 1727192 1727197) (-1059 "RINTERP.spad" 1726484 1726504 1726586 1726591) (-1058 "RING.spad" 1725954 1725963 1726464 1726479) (-1057 "RING.spad" 1725432 1725443 1725944 1725949) (-1056 "RIDIST.spad" 1724824 1724833 1725422 1725427) (-1055 "RGCHAIN.spad" 1723407 1723423 1724309 1724336) (-1054 "RGBCSPC.spad" 1723188 1723200 1723397 1723402) (-1053 "RGBCMDL.spad" 1722718 1722730 1723178 1723183) (-1052 "RF.spad" 1720360 1720371 1722708 1722713) (-1051 "RFFACTOR.spad" 1719822 1719833 1720350 1720355) (-1050 "RFFACT.spad" 1719557 1719569 1719812 1719817) (-1049 "RFDIST.spad" 1718553 1718562 1719547 1719552) (-1048 "RETSOL.spad" 1717972 1717985 1718543 1718548) (-1047 "RETRACT.spad" 1717400 1717411 1717962 1717967) (-1046 "RETRACT.spad" 1716826 1716839 1717390 1717395) (-1045 "RETAST.spad" 1716638 1716647 1716816 1716821) (-1044 "RESULT.spad" 1714698 1714707 1715285 1715312) (-1043 "RESRING.spad" 1714045 1714092 1714636 1714693) (-1042 "RESLATC.spad" 1713369 1713380 1714035 1714040) (-1041 "REPSQ.spad" 1713100 1713111 1713359 1713364) (-1040 "REP.spad" 1710654 1710663 1713090 1713095) (-1039 "REPDB.spad" 1710361 1710372 1710644 1710649) (-1038 "REP2.spad" 1700019 1700030 1710203 1710208) (-1037 "REP1.spad" 1694215 1694226 1699969 1699974) (-1036 "REGSET.spad" 1692012 1692029 1693861 1693888) (-1035 "REF.spad" 1691347 1691358 1691967 1691972) (-1034 "REDORDER.spad" 1690553 1690570 1691337 1691342) (-1033 "RECLOS.spad" 1689336 1689356 1690040 1690133) (-1032 "REALSOLV.spad" 1688476 1688485 1689326 1689331) (-1031 "REAL.spad" 1688348 1688357 1688466 1688471) (-1030 "REAL0Q.spad" 1685646 1685661 1688338 1688343) (-1029 "REAL0.spad" 1682490 1682505 1685636 1685641) (-1028 "RDUCEAST.spad" 1682211 1682220 1682480 1682485) (-1027 "RDIV.spad" 1681866 1681891 1682201 1682206) (-1026 "RDIST.spad" 1681433 1681444 1681856 1681861) (-1025 "RDETRS.spad" 1680297 1680315 1681423 1681428) (-1024 "RDETR.spad" 1678436 1678454 1680287 1680292) (-1023 "RDEEFS.spad" 1677535 1677552 1678426 1678431) (-1022 "RDEEF.spad" 1676545 1676562 1677525 1677530) (-1021 "RCFIELD.spad" 1673731 1673740 1676447 1676540) (-1020 "RCFIELD.spad" 1671003 1671014 1673721 1673726) (-1019 "RCAGG.spad" 1668931 1668942 1670993 1670998) (-1018 "RCAGG.spad" 1666786 1666799 1668850 1668855) (-1017 "RATRET.spad" 1666146 1666157 1666776 1666781) (-1016 "RATFACT.spad" 1665838 1665850 1666136 1666141) (-1015 "RANDSRC.spad" 1665157 1665166 1665828 1665833) (-1014 "RADUTIL.spad" 1664913 1664922 1665147 1665152) (-1013 "RADIX.spad" 1661834 1661848 1663380 1663473) (-1012 "RADFF.spad" 1660247 1660284 1660366 1660522) (-1011 "RADCAT.spad" 1659842 1659851 1660237 1660242) (-1010 "RADCAT.spad" 1659435 1659446 1659832 1659837) (-1009 "QUEUE.spad" 1658783 1658794 1659042 1659069) (-1008 "QUAT.spad" 1657364 1657375 1657707 1657772) (-1007 "QUATCT2.spad" 1656984 1657003 1657354 1657359) (-1006 "QUATCAT.spad" 1655154 1655165 1656914 1656979) (-1005 "QUATCAT.spad" 1653075 1653088 1654837 1654842) (-1004 "QUAGG.spad" 1651902 1651913 1653043 1653070) (-1003 "QQUTAST.spad" 1651670 1651679 1651892 1651897) (-1002 "QFORM.spad" 1651134 1651149 1651660 1651665) (-1001 "QFCAT.spad" 1649836 1649847 1651036 1651129) (-1000 "QFCAT.spad" 1648129 1648142 1649331 1649336) (-999 "QFCAT2.spad" 1647822 1647838 1648119 1648124) (-998 "QEQUAT.spad" 1647381 1647389 1647812 1647817) (-997 "QCMPACK.spad" 1642128 1642147 1647371 1647376) (-996 "QALGSET.spad" 1638207 1638239 1642042 1642047) (-995 "QALGSET2.spad" 1636203 1636221 1638197 1638202) (-994 "PWFFINTB.spad" 1633619 1633640 1636193 1636198) (-993 "PUSHVAR.spad" 1632958 1632977 1633609 1633614) (-992 "PTRANFN.spad" 1629086 1629096 1632948 1632953) (-991 "PTPACK.spad" 1626174 1626184 1629076 1629081) (-990 "PTFUNC2.spad" 1625997 1626011 1626164 1626169) (-989 "PTCAT.spad" 1625252 1625262 1625965 1625992) (-988 "PSQFR.spad" 1624559 1624583 1625242 1625247) (-987 "PSEUDLIN.spad" 1623445 1623455 1624549 1624554) (-986 "PSETPK.spad" 1608878 1608894 1623323 1623328) (-985 "PSETCAT.spad" 1602798 1602821 1608858 1608873) (-984 "PSETCAT.spad" 1596692 1596717 1602754 1602759) (-983 "PSCURVE.spad" 1595675 1595683 1596682 1596687) (-982 "PSCAT.spad" 1594458 1594487 1595573 1595670) (-981 "PSCAT.spad" 1593331 1593362 1594448 1594453) (-980 "PRTITION.spad" 1592440 1592448 1593321 1593326) (-979 "PRTDAST.spad" 1592159 1592167 1592430 1592435) (-978 "PRS.spad" 1581721 1581738 1592115 1592120) (-977 "PRQAGG.spad" 1581156 1581166 1581689 1581716) (-976 "PROPLOG.spad" 1580728 1580736 1581146 1581151) (-975 "PROPFUN2.spad" 1580351 1580364 1580718 1580723) (-974 "PROPFUN1.spad" 1579749 1579760 1580341 1580346) (-973 "PROPFRML.spad" 1578317 1578328 1579739 1579744) (-972 "PROPERTY.spad" 1577805 1577813 1578307 1578312) (-971 "PRODUCT.spad" 1575487 1575499 1575771 1575826) (-970 "PR.spad" 1573879 1573891 1574578 1574705) (-969 "PRINT.spad" 1573631 1573639 1573869 1573874) (-968 "PRIMES.spad" 1571884 1571894 1573621 1573626) (-967 "PRIMELT.spad" 1569965 1569979 1571874 1571879) (-966 "PRIMCAT.spad" 1569592 1569600 1569955 1569960) (-965 "PRIMARR.spad" 1568597 1568607 1568775 1568802) (-964 "PRIMARR2.spad" 1567364 1567376 1568587 1568592) (-963 "PREASSOC.spad" 1566746 1566758 1567354 1567359) (-962 "PPCURVE.spad" 1565883 1565891 1566736 1566741) (-961 "PORTNUM.spad" 1565658 1565666 1565873 1565878) (-960 "POLYROOT.spad" 1564507 1564529 1565614 1565619) (-959 "POLY.spad" 1561842 1561852 1562357 1562484) (-958 "POLYLIFT.spad" 1561107 1561130 1561832 1561837) (-957 "POLYCATQ.spad" 1559225 1559247 1561097 1561102) (-956 "POLYCAT.spad" 1552695 1552716 1559093 1559220) (-955 "POLYCAT.spad" 1545503 1545526 1551903 1551908) (-954 "POLY2UP.spad" 1544955 1544969 1545493 1545498) (-953 "POLY2.spad" 1544552 1544564 1544945 1544950) (-952 "POLUTIL.spad" 1543493 1543522 1544508 1544513) (-951 "POLTOPOL.spad" 1542241 1542256 1543483 1543488) (-950 "POINT.spad" 1541079 1541089 1541166 1541193) (-949 "PNTHEORY.spad" 1537781 1537789 1541069 1541074) (-948 "PMTOOLS.spad" 1536556 1536570 1537771 1537776) (-947 "PMSYM.spad" 1536105 1536115 1536546 1536551) (-946 "PMQFCAT.spad" 1535696 1535710 1536095 1536100) (-945 "PMPRED.spad" 1535175 1535189 1535686 1535691) (-944 "PMPREDFS.spad" 1534629 1534651 1535165 1535170) (-943 "PMPLCAT.spad" 1533709 1533727 1534561 1534566) (-942 "PMLSAGG.spad" 1533294 1533308 1533699 1533704) (-941 "PMKERNEL.spad" 1532873 1532885 1533284 1533289) (-940 "PMINS.spad" 1532453 1532463 1532863 1532868) (-939 "PMFS.spad" 1532030 1532048 1532443 1532448) (-938 "PMDOWN.spad" 1531320 1531334 1532020 1532025) (-937 "PMASS.spad" 1530330 1530338 1531310 1531315) (-936 "PMASSFS.spad" 1529297 1529313 1530320 1530325) (-935 "PLOTTOOL.spad" 1529077 1529085 1529287 1529292) (-934 "PLOT.spad" 1524000 1524008 1529067 1529072) (-933 "PLOT3D.spad" 1520464 1520472 1523990 1523995) (-932 "PLOT1.spad" 1519621 1519631 1520454 1520459) (-931 "PLEQN.spad" 1506911 1506938 1519611 1519616) (-930 "PINTERP.spad" 1506533 1506552 1506901 1506906) (-929 "PINTERPA.spad" 1506317 1506333 1506523 1506528) (-928 "PI.spad" 1505926 1505934 1506291 1506312) (-927 "PID.spad" 1504896 1504904 1505852 1505921) (-926 "PICOERCE.spad" 1504553 1504563 1504886 1504891) (-925 "PGROEB.spad" 1503154 1503168 1504543 1504548) (-924 "PGE.spad" 1494771 1494779 1503144 1503149) (-923 "PGCD.spad" 1493661 1493678 1494761 1494766) (-922 "PFRPAC.spad" 1492810 1492820 1493651 1493656) (-921 "PFR.spad" 1489473 1489483 1492712 1492805) (-920 "PFOTOOLS.spad" 1488731 1488747 1489463 1489468) (-919 "PFOQ.spad" 1488101 1488119 1488721 1488726) (-918 "PFO.spad" 1487520 1487547 1488091 1488096) (-917 "PF.spad" 1487094 1487106 1487325 1487418) (-916 "PFECAT.spad" 1484776 1484784 1487020 1487089) (-915 "PFECAT.spad" 1482486 1482496 1484732 1484737) (-914 "PFBRU.spad" 1480374 1480386 1482476 1482481) (-913 "PFBR.spad" 1477934 1477957 1480364 1480369) (-912 "PERM.spad" 1473619 1473629 1477764 1477779) (-911 "PERMGRP.spad" 1468381 1468391 1473609 1473614) (-910 "PERMCAT.spad" 1466939 1466949 1468361 1468376) (-909 "PERMAN.spad" 1465471 1465485 1466929 1466934) (-908 "PENDTREE.spad" 1464812 1464822 1465100 1465105) (-907 "PDRING.spad" 1463363 1463373 1464792 1464807) (-906 "PDRING.spad" 1461922 1461934 1463353 1463358) (-905 "PDEPROB.spad" 1460937 1460945 1461912 1461917) (-904 "PDEPACK.spad" 1454977 1454985 1460927 1460932) (-903 "PDECOMP.spad" 1454447 1454464 1454967 1454972) (-902 "PDECAT.spad" 1452803 1452811 1454437 1454442) (-901 "PCOMP.spad" 1452656 1452669 1452793 1452798) (-900 "PBWLB.spad" 1451244 1451261 1452646 1452651) (-899 "PATTERN.spad" 1445783 1445793 1451234 1451239) (-898 "PATTERN2.spad" 1445521 1445533 1445773 1445778) (-897 "PATTERN1.spad" 1443857 1443873 1445511 1445516) (-896 "PATRES.spad" 1441432 1441444 1443847 1443852) (-895 "PATRES2.spad" 1441104 1441118 1441422 1441427) (-894 "PATMATCH.spad" 1439301 1439332 1440812 1440817) (-893 "PATMAB.spad" 1438730 1438740 1439291 1439296) (-892 "PATLRES.spad" 1437816 1437830 1438720 1438725) (-891 "PATAB.spad" 1437580 1437590 1437806 1437811) (-890 "PARTPERM.spad" 1434980 1434988 1437570 1437575) (-889 "PARSURF.spad" 1434414 1434442 1434970 1434975) (-888 "PARSU2.spad" 1434211 1434227 1434404 1434409) (-887 "script-parser.spad" 1433731 1433739 1434201 1434206) (-886 "PARSCURV.spad" 1433165 1433193 1433721 1433726) (-885 "PARSC2.spad" 1432956 1432972 1433155 1433160) (-884 "PARPCURV.spad" 1432418 1432446 1432946 1432951) (-883 "PARPC2.spad" 1432209 1432225 1432408 1432413) (-882 "PARAMAST.spad" 1431337 1431345 1432199 1432204) (-881 "PAN2EXPR.spad" 1430749 1430757 1431327 1431332) (-880 "PALETTE.spad" 1429719 1429727 1430739 1430744) (-879 "PAIR.spad" 1428706 1428719 1429307 1429312) (-878 "PADICRC.spad" 1426040 1426058 1427211 1427304) (-877 "PADICRAT.spad" 1424055 1424067 1424276 1424369) (-876 "PADIC.spad" 1423750 1423762 1423981 1424050) (-875 "PADICCT.spad" 1422299 1422311 1423676 1423745) (-874 "PADEPAC.spad" 1420988 1421007 1422289 1422294) (-873 "PADE.spad" 1419740 1419756 1420978 1420983) (-872 "OWP.spad" 1418980 1419010 1419598 1419665) (-871 "OVERSET.spad" 1418553 1418561 1418970 1418975) (-870 "OVAR.spad" 1418334 1418357 1418543 1418548) (-869 "OUT.spad" 1417420 1417428 1418324 1418329) (-868 "OUTFORM.spad" 1406812 1406820 1417410 1417415) (-867 "OUTBFILE.spad" 1406230 1406238 1406802 1406807) (-866 "OUTBCON.spad" 1405236 1405244 1406220 1406225) (-865 "OUTBCON.spad" 1404240 1404250 1405226 1405231) (-864 "OSI.spad" 1403715 1403723 1404230 1404235) (-863 "OSGROUP.spad" 1403633 1403641 1403705 1403710) (-862 "ORTHPOL.spad" 1402118 1402128 1403550 1403555) (-861 "OREUP.spad" 1401571 1401599 1401798 1401837) (-860 "ORESUP.spad" 1400872 1400896 1401251 1401290) (-859 "OREPCTO.spad" 1398729 1398741 1400792 1400797) (-858 "OREPCAT.spad" 1392876 1392886 1398685 1398724) (-857 "OREPCAT.spad" 1386913 1386925 1392724 1392729) (-856 "ORDSET.spad" 1386085 1386093 1386903 1386908) (-855 "ORDSET.spad" 1385255 1385265 1386075 1386080) (-854 "ORDRING.spad" 1384645 1384653 1385235 1385250) (-853 "ORDRING.spad" 1384043 1384053 1384635 1384640) (-852 "ORDMON.spad" 1383898 1383906 1384033 1384038) (-851 "ORDFUNS.spad" 1383030 1383046 1383888 1383893) (-850 "ORDFIN.spad" 1382850 1382858 1383020 1383025) (-849 "ORDCOMP.spad" 1381315 1381325 1382397 1382426) (-848 "ORDCOMP2.spad" 1380608 1380620 1381305 1381310) (-847 "OPTPROB.spad" 1379246 1379254 1380598 1380603) (-846 "OPTPACK.spad" 1371655 1371663 1379236 1379241) (-845 "OPTCAT.spad" 1369334 1369342 1371645 1371650) (-844 "OPSIG.spad" 1368988 1368996 1369324 1369329) (-843 "OPQUERY.spad" 1368537 1368545 1368978 1368983) (-842 "OP.spad" 1368279 1368289 1368359 1368426) (-841 "OPERCAT.spad" 1367745 1367755 1368269 1368274) (-840 "OPERCAT.spad" 1367209 1367221 1367735 1367740) (-839 "ONECOMP.spad" 1365954 1365964 1366756 1366785) (-838 "ONECOMP2.spad" 1365378 1365390 1365944 1365949) (-837 "OMSERVER.spad" 1364384 1364392 1365368 1365373) (-836 "OMSAGG.spad" 1364172 1364182 1364340 1364379) (-835 "OMPKG.spad" 1362788 1362796 1364162 1364167) (-834 "OM.spad" 1361761 1361769 1362778 1362783) (-833 "OMLO.spad" 1361186 1361198 1361647 1361686) (-832 "OMEXPR.spad" 1361020 1361030 1361176 1361181) (-831 "OMERR.spad" 1360565 1360573 1361010 1361015) (-830 "OMERRK.spad" 1359599 1359607 1360555 1360560) (-829 "OMENC.spad" 1358943 1358951 1359589 1359594) (-828 "OMDEV.spad" 1353252 1353260 1358933 1358938) (-827 "OMCONN.spad" 1352661 1352669 1353242 1353247) (-826 "OINTDOM.spad" 1352424 1352432 1352587 1352656) (-825 "OFMONOID.spad" 1350547 1350557 1352380 1352385) (-824 "ODVAR.spad" 1349808 1349818 1350537 1350542) (-823 "ODR.spad" 1349452 1349478 1349620 1349769) (-822 "ODPOL.spad" 1346834 1346844 1347174 1347301) (-821 "ODP.spad" 1336681 1336701 1337054 1337185) (-820 "ODETOOLS.spad" 1335330 1335349 1336671 1336676) (-819 "ODESYS.spad" 1333024 1333041 1335320 1335325) (-818 "ODERTRIC.spad" 1329033 1329050 1332981 1332986) (-817 "ODERED.spad" 1328432 1328456 1329023 1329028) (-816 "ODERAT.spad" 1326047 1326064 1328422 1328427) (-815 "ODEPRRIC.spad" 1323084 1323106 1326037 1326042) (-814 "ODEPROB.spad" 1322341 1322349 1323074 1323079) (-813 "ODEPRIM.spad" 1319675 1319697 1322331 1322336) (-812 "ODEPAL.spad" 1319061 1319085 1319665 1319670) (-811 "ODEPACK.spad" 1305727 1305735 1319051 1319056) (-810 "ODEINT.spad" 1305162 1305178 1305717 1305722) (-809 "ODEIFTBL.spad" 1302557 1302565 1305152 1305157) (-808 "ODEEF.spad" 1298048 1298064 1302547 1302552) (-807 "ODECONST.spad" 1297585 1297603 1298038 1298043) (-806 "ODECAT.spad" 1296183 1296191 1297575 1297580) (-805 "OCT.spad" 1294319 1294329 1295033 1295072) (-804 "OCTCT2.spad" 1293965 1293986 1294309 1294314) (-803 "OC.spad" 1291761 1291771 1293921 1293960) (-802 "OC.spad" 1289282 1289294 1291444 1291449) (-801 "OCAMON.spad" 1289130 1289138 1289272 1289277) (-800 "OASGP.spad" 1288945 1288953 1289120 1289125) (-799 "OAMONS.spad" 1288467 1288475 1288935 1288940) (-798 "OAMON.spad" 1288328 1288336 1288457 1288462) (-797 "OAGROUP.spad" 1288190 1288198 1288318 1288323) (-796 "NUMTUBE.spad" 1287781 1287797 1288180 1288185) (-795 "NUMQUAD.spad" 1275757 1275765 1287771 1287776) (-794 "NUMODE.spad" 1267111 1267119 1275747 1275752) (-793 "NUMINT.spad" 1264677 1264685 1267101 1267106) (-792 "NUMFMT.spad" 1263517 1263525 1264667 1264672) (-791 "NUMERIC.spad" 1255631 1255641 1263322 1263327) (-790 "NTSCAT.spad" 1254139 1254155 1255599 1255626) (-789 "NTPOLFN.spad" 1253690 1253700 1254056 1254061) (-788 "NSUP.spad" 1246736 1246746 1251276 1251429) (-787 "NSUP2.spad" 1246128 1246140 1246726 1246731) (-786 "NSMP.spad" 1242358 1242377 1242666 1242793) (-785 "NREP.spad" 1240736 1240750 1242348 1242353) (-784 "NPCOEF.spad" 1239982 1240002 1240726 1240731) (-783 "NORMRETR.spad" 1239580 1239619 1239972 1239977) (-782 "NORMPK.spad" 1237482 1237501 1239570 1239575) (-781 "NORMMA.spad" 1237170 1237196 1237472 1237477) (-780 "NONE.spad" 1236911 1236919 1237160 1237165) (-779 "NONE1.spad" 1236587 1236597 1236901 1236906) (-778 "NODE1.spad" 1236074 1236090 1236577 1236582) (-777 "NNI.spad" 1234969 1234977 1236048 1236069) (-776 "NLINSOL.spad" 1233595 1233605 1234959 1234964) (-775 "NIPROB.spad" 1232136 1232144 1233585 1233590) (-774 "NFINTBAS.spad" 1229696 1229713 1232126 1232131) (-773 "NETCLT.spad" 1229670 1229681 1229686 1229691) (-772 "NCODIV.spad" 1227886 1227902 1229660 1229665) (-771 "NCNTFRAC.spad" 1227528 1227542 1227876 1227881) (-770 "NCEP.spad" 1225694 1225708 1227518 1227523) (-769 "NASRING.spad" 1225290 1225298 1225684 1225689) (-768 "NASRING.spad" 1224884 1224894 1225280 1225285) (-767 "NARNG.spad" 1224236 1224244 1224874 1224879) (-766 "NARNG.spad" 1223586 1223596 1224226 1224231) (-765 "NAGSP.spad" 1222663 1222671 1223576 1223581) (-764 "NAGS.spad" 1212324 1212332 1222653 1222658) (-763 "NAGF07.spad" 1210755 1210763 1212314 1212319) (-762 "NAGF04.spad" 1205157 1205165 1210745 1210750) (-761 "NAGF02.spad" 1199226 1199234 1205147 1205152) (-760 "NAGF01.spad" 1194987 1194995 1199216 1199221) (-759 "NAGE04.spad" 1188687 1188695 1194977 1194982) (-758 "NAGE02.spad" 1179347 1179355 1188677 1188682) (-757 "NAGE01.spad" 1175349 1175357 1179337 1179342) (-756 "NAGD03.spad" 1173353 1173361 1175339 1175344) (-755 "NAGD02.spad" 1166100 1166108 1173343 1173348) (-754 "NAGD01.spad" 1160393 1160401 1166090 1166095) (-753 "NAGC06.spad" 1156268 1156276 1160383 1160388) (-752 "NAGC05.spad" 1154769 1154777 1156258 1156263) (-751 "NAGC02.spad" 1154036 1154044 1154759 1154764) (-750 "NAALG.spad" 1153577 1153587 1154004 1154031) (-749 "NAALG.spad" 1153138 1153150 1153567 1153572) (-748 "MULTSQFR.spad" 1150096 1150113 1153128 1153133) (-747 "MULTFACT.spad" 1149479 1149496 1150086 1150091) (-746 "MTSCAT.spad" 1147573 1147594 1149377 1149474) (-745 "MTHING.spad" 1147232 1147242 1147563 1147568) (-744 "MSYSCMD.spad" 1146666 1146674 1147222 1147227) (-743 "MSET.spad" 1144624 1144634 1146372 1146411) (-742 "MSETAGG.spad" 1144469 1144479 1144592 1144619) (-741 "MRING.spad" 1141446 1141458 1144177 1144244) (-740 "MRF2.spad" 1141016 1141030 1141436 1141441) (-739 "MRATFAC.spad" 1140562 1140579 1141006 1141011) (-738 "MPRFF.spad" 1138602 1138621 1140552 1140557) (-737 "MPOLY.spad" 1136073 1136088 1136432 1136559) (-736 "MPCPF.spad" 1135337 1135356 1136063 1136068) (-735 "MPC3.spad" 1135154 1135194 1135327 1135332) (-734 "MPC2.spad" 1134800 1134833 1135144 1135149) (-733 "MONOTOOL.spad" 1133151 1133168 1134790 1134795) (-732 "MONOID.spad" 1132470 1132478 1133141 1133146) (-731 "MONOID.spad" 1131787 1131797 1132460 1132465) (-730 "MONOGEN.spad" 1130535 1130548 1131647 1131782) (-729 "MONOGEN.spad" 1129305 1129320 1130419 1130424) (-728 "MONADWU.spad" 1127335 1127343 1129295 1129300) (-727 "MONADWU.spad" 1125363 1125373 1127325 1127330) (-726 "MONAD.spad" 1124523 1124531 1125353 1125358) (-725 "MONAD.spad" 1123681 1123691 1124513 1124518) (-724 "MOEBIUS.spad" 1122417 1122431 1123661 1123676) (-723 "MODULE.spad" 1122287 1122297 1122385 1122412) (-722 "MODULE.spad" 1122177 1122189 1122277 1122282) (-721 "MODRING.spad" 1121512 1121551 1122157 1122172) (-720 "MODOP.spad" 1120177 1120189 1121334 1121401) (-719 "MODMONOM.spad" 1119908 1119926 1120167 1120172) (-718 "MODMON.spad" 1116703 1116719 1117422 1117575) (-717 "MODFIELD.spad" 1116065 1116104 1116605 1116698) (-716 "MMLFORM.spad" 1114925 1114933 1116055 1116060) (-715 "MMAP.spad" 1114667 1114701 1114915 1114920) (-714 "MLO.spad" 1113126 1113136 1114623 1114662) (-713 "MLIFT.spad" 1111738 1111755 1113116 1113121) (-712 "MKUCFUNC.spad" 1111273 1111291 1111728 1111733) (-711 "MKRECORD.spad" 1110877 1110890 1111263 1111268) (-710 "MKFUNC.spad" 1110284 1110294 1110867 1110872) (-709 "MKFLCFN.spad" 1109252 1109262 1110274 1110279) (-708 "MKBCFUNC.spad" 1108747 1108765 1109242 1109247) (-707 "MINT.spad" 1108186 1108194 1108649 1108742) (-706 "MHROWRED.spad" 1106697 1106707 1108176 1108181) (-705 "MFLOAT.spad" 1105217 1105225 1106587 1106692) (-704 "MFINFACT.spad" 1104617 1104639 1105207 1105212) (-703 "MESH.spad" 1102399 1102407 1104607 1104612) (-702 "MDDFACT.spad" 1100610 1100620 1102389 1102394) (-701 "MDAGG.spad" 1099901 1099911 1100590 1100605) (-700 "MCMPLX.spad" 1095912 1095920 1096526 1096727) (-699 "MCDEN.spad" 1095122 1095134 1095902 1095907) (-698 "MCALCFN.spad" 1092244 1092270 1095112 1095117) (-697 "MAYBE.spad" 1091528 1091539 1092234 1092239) (-696 "MATSTOR.spad" 1088836 1088846 1091518 1091523) (-695 "MATRIX.spad" 1087540 1087550 1088024 1088051) (-694 "MATLIN.spad" 1084884 1084908 1087424 1087429) (-693 "MATCAT.spad" 1076613 1076635 1084852 1084879) (-692 "MATCAT.spad" 1068214 1068238 1076455 1076460) (-691 "MATCAT2.spad" 1067496 1067544 1068204 1068209) (-690 "MAPPKG3.spad" 1066411 1066425 1067486 1067491) (-689 "MAPPKG2.spad" 1065749 1065761 1066401 1066406) (-688 "MAPPKG1.spad" 1064577 1064587 1065739 1065744) (-687 "MAPPAST.spad" 1063892 1063900 1064567 1064572) (-686 "MAPHACK3.spad" 1063704 1063718 1063882 1063887) (-685 "MAPHACK2.spad" 1063473 1063485 1063694 1063699) (-684 "MAPHACK1.spad" 1063117 1063127 1063463 1063468) (-683 "MAGMA.spad" 1060907 1060924 1063107 1063112) (-682 "MACROAST.spad" 1060486 1060494 1060897 1060902) (-681 "M3D.spad" 1058206 1058216 1059864 1059869) (-680 "LZSTAGG.spad" 1055444 1055454 1058196 1058201) (-679 "LZSTAGG.spad" 1052680 1052692 1055434 1055439) (-678 "LWORD.spad" 1049385 1049402 1052670 1052675) (-677 "LSTAST.spad" 1049169 1049177 1049375 1049380) (-676 "LSQM.spad" 1047399 1047413 1047793 1047844) (-675 "LSPP.spad" 1046934 1046951 1047389 1047394) (-674 "LSMP.spad" 1045784 1045812 1046924 1046929) (-673 "LSMP1.spad" 1043602 1043616 1045774 1045779) (-672 "LSAGG.spad" 1043271 1043281 1043570 1043597) (-671 "LSAGG.spad" 1042960 1042972 1043261 1043266) (-670 "LPOLY.spad" 1041914 1041933 1042816 1042885) (-669 "LPEFRAC.spad" 1041185 1041195 1041904 1041909) (-668 "LO.spad" 1040586 1040600 1041119 1041146) (-667 "LOGIC.spad" 1040188 1040196 1040576 1040581) (-666 "LOGIC.spad" 1039788 1039798 1040178 1040183) (-665 "LODOOPS.spad" 1038718 1038730 1039778 1039783) (-664 "LODO.spad" 1038102 1038118 1038398 1038437) (-663 "LODOF.spad" 1037148 1037165 1038059 1038064) (-662 "LODOCAT.spad" 1035814 1035824 1037104 1037143) (-661 "LODOCAT.spad" 1034478 1034490 1035770 1035775) (-660 "LODO2.spad" 1033751 1033763 1034158 1034197) (-659 "LODO1.spad" 1033151 1033161 1033431 1033470) (-658 "LODEEF.spad" 1031953 1031971 1033141 1033146) (-657 "LNAGG.spad" 1027785 1027795 1031943 1031948) (-656 "LNAGG.spad" 1023581 1023593 1027741 1027746) (-655 "LMOPS.spad" 1020349 1020366 1023571 1023576) (-654 "LMODULE.spad" 1020117 1020127 1020339 1020344) (-653 "LMDICT.spad" 1019404 1019414 1019668 1019695) (-652 "LLINSET.spad" 1018801 1018811 1019394 1019399) (-651 "LITERAL.spad" 1018707 1018718 1018791 1018796) (-650 "LIST.spad" 1016442 1016452 1017854 1017881) (-649 "LIST3.spad" 1015753 1015767 1016432 1016437) (-648 "LIST2.spad" 1014455 1014467 1015743 1015748) (-647 "LIST2MAP.spad" 1011358 1011370 1014445 1014450) (-646 "LINSET.spad" 1010980 1010990 1011348 1011353) (-645 "LINEXP.spad" 1010414 1010424 1010960 1010975) (-644 "LINDEP.spad" 1009223 1009235 1010326 1010331) (-643 "LIMITRF.spad" 1007151 1007161 1009213 1009218) (-642 "LIMITPS.spad" 1006054 1006067 1007141 1007146) (-641 "LIE.spad" 1004070 1004082 1005344 1005489) (-640 "LIECAT.spad" 1003546 1003556 1003996 1004065) (-639 "LIECAT.spad" 1003050 1003062 1003502 1003507) (-638 "LIB.spad" 1001100 1001108 1001709 1001724) (-637 "LGROBP.spad" 998453 998472 1001090 1001095) (-636 "LF.spad" 997408 997424 998443 998448) (-635 "LFCAT.spad" 996467 996475 997398 997403) (-634 "LEXTRIPK.spad" 991970 991985 996457 996462) (-633 "LEXP.spad" 989973 990000 991950 991965) (-632 "LETAST.spad" 989672 989680 989963 989968) (-631 "LEADCDET.spad" 988070 988087 989662 989667) (-630 "LAZM3PK.spad" 986774 986796 988060 988065) (-629 "LAUPOL.spad" 985467 985480 986367 986436) (-628 "LAPLACE.spad" 985050 985066 985457 985462) (-627 "LA.spad" 984490 984504 984972 985011) (-626 "LALG.spad" 984266 984276 984470 984485) (-625 "LALG.spad" 984050 984062 984256 984261) (-624 "KVTFROM.spad" 983785 983795 984040 984045) (-623 "KTVLOGIC.spad" 983297 983305 983775 983780) (-622 "KRCFROM.spad" 983035 983045 983287 983292) (-621 "KOVACIC.spad" 981758 981775 983025 983030) (-620 "KONVERT.spad" 981480 981490 981748 981753) (-619 "KOERCE.spad" 981217 981227 981470 981475) (-618 "KERNEL.spad" 979872 979882 981001 981006) (-617 "KERNEL2.spad" 979575 979587 979862 979867) (-616 "KDAGG.spad" 978684 978706 979555 979570) (-615 "KDAGG.spad" 977801 977825 978674 978679) (-614 "KAFILE.spad" 976764 976780 976999 977026) (-613 "JORDAN.spad" 974593 974605 976054 976199) (-612 "JOINAST.spad" 974287 974295 974583 974588) (-611 "JAVACODE.spad" 974153 974161 974277 974282) (-610 "IXAGG.spad" 972286 972310 974143 974148) (-609 "IXAGG.spad" 970274 970300 972133 972138) (-608 "IVECTOR.spad" 969044 969059 969199 969226) (-607 "ITUPLE.spad" 968205 968215 969034 969039) (-606 "ITRIGMNP.spad" 967044 967063 968195 968200) (-605 "ITFUN3.spad" 966550 966564 967034 967039) (-604 "ITFUN2.spad" 966294 966306 966540 966545) (-603 "ITFORM.spad" 965649 965657 966284 966289) (-602 "ITAYLOR.spad" 963643 963658 965513 965610) (-601 "ISUPS.spad" 956080 956095 962617 962714) (-600 "ISUMP.spad" 955581 955597 956070 956075) (-599 "ISTRING.spad" 954669 954682 954750 954777) (-598 "ISAST.spad" 954388 954396 954659 954664) (-597 "IRURPK.spad" 953105 953124 954378 954383) (-596 "IRSN.spad" 951109 951117 953095 953100) (-595 "IRRF2F.spad" 949594 949604 951065 951070) (-594 "IRREDFFX.spad" 949195 949206 949584 949589) (-593 "IROOT.spad" 947534 947544 949185 949190) (-592 "IR.spad" 945335 945349 947389 947416) (-591 "IRFORM.spad" 944659 944667 945325 945330) (-590 "IR2.spad" 943687 943703 944649 944654) (-589 "IR2F.spad" 942893 942909 943677 943682) (-588 "IPRNTPK.spad" 942653 942661 942883 942888) (-587 "IPF.spad" 942218 942230 942458 942551) (-586 "IPADIC.spad" 941979 942005 942144 942213) (-585 "IP4ADDR.spad" 941536 941544 941969 941974) (-584 "IOMODE.spad" 941058 941066 941526 941531) (-583 "IOBFILE.spad" 940419 940427 941048 941053) (-582 "IOBCON.spad" 940284 940292 940409 940414) (-581 "INVLAPLA.spad" 939933 939949 940274 940279) (-580 "INTTR.spad" 933315 933332 939923 939928) (-579 "INTTOOLS.spad" 931070 931086 932889 932894) (-578 "INTSLPE.spad" 930390 930398 931060 931065) (-577 "INTRVL.spad" 929956 929966 930304 930385) (-576 "INTRF.spad" 928380 928394 929946 929951) (-575 "INTRET.spad" 927812 927822 928370 928375) (-574 "INTRAT.spad" 926539 926556 927802 927807) (-573 "INTPM.spad" 924924 924940 926182 926187) (-572 "INTPAF.spad" 922788 922806 924856 924861) (-571 "INTPACK.spad" 913162 913170 922778 922783) (-570 "INT.spad" 912610 912618 913016 913157) (-569 "INTHERTR.spad" 911884 911901 912600 912605) (-568 "INTHERAL.spad" 911554 911578 911874 911879) (-567 "INTHEORY.spad" 907993 908001 911544 911549) (-566 "INTG0.spad" 901726 901744 907925 907930) (-565 "INTFTBL.spad" 895755 895763 901716 901721) (-564 "INTFACT.spad" 894814 894824 895745 895750) (-563 "INTEF.spad" 893199 893215 894804 894809) (-562 "INTDOM.spad" 891822 891830 893125 893194) (-561 "INTDOM.spad" 890507 890517 891812 891817) (-560 "INTCAT.spad" 888766 888776 890421 890502) (-559 "INTBIT.spad" 888273 888281 888756 888761) (-558 "INTALG.spad" 887461 887488 888263 888268) (-557 "INTAF.spad" 886961 886977 887451 887456) (-556 "INTABL.spad" 885479 885510 885642 885669) (-555 "INT8.spad" 885359 885367 885469 885474) (-554 "INT64.spad" 885238 885246 885349 885354) (-553 "INT32.spad" 885117 885125 885228 885233) (-552 "INT16.spad" 884996 885004 885107 885112) (-551 "INS.spad" 882499 882507 884898 884991) (-550 "INS.spad" 880088 880098 882489 882494) (-549 "INPSIGN.spad" 879536 879549 880078 880083) (-548 "INPRODPF.spad" 878632 878651 879526 879531) (-547 "INPRODFF.spad" 877720 877744 878622 878627) (-546 "INNMFACT.spad" 876695 876712 877710 877715) (-545 "INMODGCD.spad" 876183 876213 876685 876690) (-544 "INFSP.spad" 874480 874502 876173 876178) (-543 "INFPROD0.spad" 873560 873579 874470 874475) (-542 "INFORM.spad" 870759 870767 873550 873555) (-541 "INFORM1.spad" 870384 870394 870749 870754) (-540 "INFINITY.spad" 869936 869944 870374 870379) (-539 "INETCLTS.spad" 869913 869921 869926 869931) (-538 "INEP.spad" 868451 868473 869903 869908) (-537 "INDE.spad" 868180 868197 868441 868446) (-536 "INCRMAPS.spad" 867601 867611 868170 868175) (-535 "INBFILE.spad" 866673 866681 867591 867596) (-534 "INBFF.spad" 862467 862478 866663 866668) (-533 "INBCON.spad" 860757 860765 862457 862462) (-532 "INBCON.spad" 859045 859055 860747 860752) (-531 "INAST.spad" 858706 858714 859035 859040) (-530 "IMPTAST.spad" 858414 858422 858696 858701) (-529 "IMATRIX.spad" 857359 857385 857871 857898) (-528 "IMATQF.spad" 856453 856497 857315 857320) (-527 "IMATLIN.spad" 855058 855082 856409 856414) (-526 "ILIST.spad" 853716 853731 854241 854268) (-525 "IIARRAY2.spad" 853104 853142 853323 853350) (-524 "IFF.spad" 852514 852530 852785 852878) (-523 "IFAST.spad" 852128 852136 852504 852509) (-522 "IFARRAY.spad" 849621 849636 851311 851338) (-521 "IFAMON.spad" 849483 849500 849577 849582) (-520 "IEVALAB.spad" 848888 848900 849473 849478) (-519 "IEVALAB.spad" 848291 848305 848878 848883) (-518 "IDPO.spad" 848089 848101 848281 848286) (-517 "IDPOAMS.spad" 847845 847857 848079 848084) (-516 "IDPOAM.spad" 847565 847577 847835 847840) (-515 "IDPC.spad" 846503 846515 847555 847560) (-514 "IDPAM.spad" 846248 846260 846493 846498) (-513 "IDPAG.spad" 845995 846007 846238 846243) (-512 "IDENT.spad" 845645 845653 845985 845990) (-511 "IDECOMP.spad" 842884 842902 845635 845640) (-510 "IDEAL.spad" 837833 837872 842819 842824) (-509 "ICDEN.spad" 837022 837038 837823 837828) (-508 "ICARD.spad" 836213 836221 837012 837017) (-507 "IBPTOOLS.spad" 834820 834837 836203 836208) (-506 "IBITS.spad" 834023 834036 834456 834483) (-505 "IBATOOL.spad" 831000 831019 834013 834018) (-504 "IBACHIN.spad" 829507 829522 830990 830995) (-503 "IARRAY2.spad" 828495 828521 829114 829141) (-502 "IARRAY1.spad" 827540 827555 827678 827705) (-501 "IAN.spad" 825763 825771 827356 827449) (-500 "IALGFACT.spad" 825366 825399 825753 825758) (-499 "HYPCAT.spad" 824790 824798 825356 825361) (-498 "HYPCAT.spad" 824212 824222 824780 824785) (-497 "HOSTNAME.spad" 824020 824028 824202 824207) (-496 "HOMOTOP.spad" 823763 823773 824010 824015) (-495 "HOAGG.spad" 821045 821055 823753 823758) (-494 "HOAGG.spad" 818102 818114 820812 820817) (-493 "HEXADEC.spad" 816204 816212 816569 816662) (-492 "HEUGCD.spad" 815239 815250 816194 816199) (-491 "HELLFDIV.spad" 814829 814853 815229 815234) (-490 "HEAP.spad" 814221 814231 814436 814463) (-489 "HEADAST.spad" 813754 813762 814211 814216) (-488 "HDP.spad" 803597 803613 803974 804105) (-487 "HDMP.spad" 800811 800826 801427 801554) (-486 "HB.spad" 799062 799070 800801 800806) (-485 "HASHTBL.spad" 797532 797563 797743 797770) (-484 "HASAST.spad" 797248 797256 797522 797527) (-483 "HACKPI.spad" 796739 796747 797150 797243) (-482 "GTSET.spad" 795678 795694 796385 796412) (-481 "GSTBL.spad" 794197 794232 794371 794386) (-480 "GSERIES.spad" 791368 791395 792329 792478) (-479 "GROUP.spad" 790641 790649 791348 791363) (-478 "GROUP.spad" 789922 789932 790631 790636) (-477 "GROEBSOL.spad" 788416 788437 789912 789917) (-476 "GRMOD.spad" 786987 786999 788406 788411) (-475 "GRMOD.spad" 785556 785570 786977 786982) (-474 "GRIMAGE.spad" 778445 778453 785546 785551) (-473 "GRDEF.spad" 776824 776832 778435 778440) (-472 "GRAY.spad" 775287 775295 776814 776819) (-471 "GRALG.spad" 774364 774376 775277 775282) (-470 "GRALG.spad" 773439 773453 774354 774359) (-469 "GPOLSET.spad" 772893 772916 773121 773148) (-468 "GOSPER.spad" 772162 772180 772883 772888) (-467 "GMODPOL.spad" 771310 771337 772130 772157) (-466 "GHENSEL.spad" 770393 770407 771300 771305) (-465 "GENUPS.spad" 766686 766699 770383 770388) (-464 "GENUFACT.spad" 766263 766273 766676 766681) (-463 "GENPGCD.spad" 765849 765866 766253 766258) (-462 "GENMFACT.spad" 765301 765320 765839 765844) (-461 "GENEEZ.spad" 763252 763265 765291 765296) (-460 "GDMP.spad" 760308 760325 761082 761209) (-459 "GCNAALG.spad" 754231 754258 760102 760169) (-458 "GCDDOM.spad" 753407 753415 754157 754226) (-457 "GCDDOM.spad" 752645 752655 753397 753402) (-456 "GB.spad" 750171 750209 752601 752606) (-455 "GBINTERN.spad" 746191 746229 750161 750166) (-454 "GBF.spad" 741958 741996 746181 746186) (-453 "GBEUCLID.spad" 739840 739878 741948 741953) (-452 "GAUSSFAC.spad" 739153 739161 739830 739835) (-451 "GALUTIL.spad" 737479 737489 739109 739114) (-450 "GALPOLYU.spad" 735933 735946 737469 737474) (-449 "GALFACTU.spad" 734106 734125 735923 735928) (-448 "GALFACT.spad" 724295 724306 734096 734101) (-447 "FVFUN.spad" 721318 721326 724285 724290) (-446 "FVC.spad" 720370 720378 721308 721313) (-445 "FUNDESC.spad" 720048 720056 720360 720365) (-444 "FUNCTION.spad" 719897 719909 720038 720043) (-443 "FT.spad" 718194 718202 719887 719892) (-442 "FTEM.spad" 717359 717367 718184 718189) (-441 "FSUPFACT.spad" 716259 716278 717295 717300) (-440 "FST.spad" 714345 714353 716249 716254) (-439 "FSRED.spad" 713825 713841 714335 714340) (-438 "FSPRMELT.spad" 712707 712723 713782 713787) (-437 "FSPECF.spad" 710798 710814 712697 712702) (-436 "FS.spad" 705066 705076 710573 710793) (-435 "FS.spad" 699112 699124 704621 704626) (-434 "FSINT.spad" 698772 698788 699102 699107) (-433 "FSERIES.spad" 697963 697975 698592 698691) (-432 "FSCINT.spad" 697280 697296 697953 697958) (-431 "FSAGG.spad" 696397 696407 697236 697275) (-430 "FSAGG.spad" 695476 695488 696317 696322) (-429 "FSAGG2.spad" 694219 694235 695466 695471) (-428 "FS2UPS.spad" 688710 688744 694209 694214) (-427 "FS2.spad" 688357 688373 688700 688705) (-426 "FS2EXPXP.spad" 687482 687505 688347 688352) (-425 "FRUTIL.spad" 686436 686446 687472 687477) (-424 "FR.spad" 680152 680162 685460 685529) (-423 "FRNAALG.spad" 675271 675281 680094 680147) (-422 "FRNAALG.spad" 670402 670414 675227 675232) (-421 "FRNAAF2.spad" 669858 669876 670392 670397) (-420 "FRMOD.spad" 669268 669298 669789 669794) (-419 "FRIDEAL.spad" 668493 668514 669248 669263) (-418 "FRIDEAL2.spad" 668097 668129 668483 668488) (-417 "FRETRCT.spad" 667608 667618 668087 668092) (-416 "FRETRCT.spad" 666985 666997 667466 667471) (-415 "FRAMALG.spad" 665333 665346 666941 666980) (-414 "FRAMALG.spad" 663713 663728 665323 665328) (-413 "FRAC.spad" 660812 660822 661215 661388) (-412 "FRAC2.spad" 660417 660429 660802 660807) (-411 "FR2.spad" 659753 659765 660407 660412) (-410 "FPS.spad" 656568 656576 659643 659748) (-409 "FPS.spad" 653411 653421 656488 656493) (-408 "FPC.spad" 652457 652465 653313 653406) (-407 "FPC.spad" 651589 651599 652447 652452) (-406 "FPATMAB.spad" 651351 651361 651579 651584) (-405 "FPARFRAC.spad" 649838 649855 651341 651346) (-404 "FORTRAN.spad" 648344 648387 649828 649833) (-403 "FORT.spad" 647293 647301 648334 648339) (-402 "FORTFN.spad" 644463 644471 647283 647288) (-401 "FORTCAT.spad" 644147 644155 644453 644458) (-400 "FORMULA.spad" 641621 641629 644137 644142) (-399 "FORMULA1.spad" 641100 641110 641611 641616) (-398 "FORDER.spad" 640791 640815 641090 641095) (-397 "FOP.spad" 639992 640000 640781 640786) (-396 "FNLA.spad" 639416 639438 639960 639987) (-395 "FNCAT.spad" 638011 638019 639406 639411) (-394 "FNAME.spad" 637903 637911 638001 638006) (-393 "FMTC.spad" 637701 637709 637829 637898) (-392 "FMONOID.spad" 637366 637376 637657 637662) (-391 "FMONCAT.spad" 634519 634529 637356 637361) (-390 "FM.spad" 634214 634226 634453 634480) (-389 "FMFUN.spad" 631244 631252 634204 634209) (-388 "FMC.spad" 630296 630304 631234 631239) (-387 "FMCAT.spad" 627964 627982 630264 630291) (-386 "FM1.spad" 627321 627333 627898 627925) (-385 "FLOATRP.spad" 625056 625070 627311 627316) (-384 "FLOAT.spad" 618370 618378 624922 625051) (-383 "FLOATCP.spad" 615801 615815 618360 618365) (-382 "FLINEXP.spad" 615513 615523 615781 615796) (-381 "FLINEXP.spad" 615179 615191 615449 615454) (-380 "FLASORT.spad" 614505 614517 615169 615174) (-379 "FLALG.spad" 612151 612170 614431 614500) (-378 "FLAGG.spad" 609193 609203 612131 612146) (-377 "FLAGG.spad" 606136 606148 609076 609081) (-376 "FLAGG2.spad" 604861 604877 606126 606131) (-375 "FINRALG.spad" 602922 602935 604817 604856) (-374 "FINRALG.spad" 600909 600924 602806 602811) (-373 "FINITE.spad" 600061 600069 600899 600904) (-372 "FINAALG.spad" 589182 589192 600003 600056) (-371 "FINAALG.spad" 578315 578327 589138 589143) (-370 "FILE.spad" 577898 577908 578305 578310) (-369 "FILECAT.spad" 576424 576441 577888 577893) (-368 "FIELD.spad" 575830 575838 576326 576419) (-367 "FIELD.spad" 575322 575332 575820 575825) (-366 "FGROUP.spad" 573969 573979 575302 575317) (-365 "FGLMICPK.spad" 572756 572771 573959 573964) (-364 "FFX.spad" 572131 572146 572472 572565) (-363 "FFSLPE.spad" 571634 571655 572121 572126) (-362 "FFPOLY.spad" 562896 562907 571624 571629) (-361 "FFPOLY2.spad" 561956 561973 562886 562891) (-360 "FFP.spad" 561353 561373 561672 561765) (-359 "FF.spad" 560801 560817 561034 561127) (-358 "FFNBX.spad" 559313 559333 560517 560610) (-357 "FFNBP.spad" 557826 557843 559029 559122) (-356 "FFNB.spad" 556291 556312 557507 557600) (-355 "FFINTBAS.spad" 553805 553824 556281 556286) (-354 "FFIELDC.spad" 551382 551390 553707 553800) (-353 "FFIELDC.spad" 549045 549055 551372 551377) (-352 "FFHOM.spad" 547793 547810 549035 549040) (-351 "FFF.spad" 545228 545239 547783 547788) (-350 "FFCGX.spad" 544075 544095 544944 545037) (-349 "FFCGP.spad" 542964 542984 543791 543884) (-348 "FFCG.spad" 541756 541777 542645 542738) (-347 "FFCAT.spad" 534929 534951 541595 541751) (-346 "FFCAT.spad" 528181 528205 534849 534854) (-345 "FFCAT2.spad" 527928 527968 528171 528176) (-344 "FEXPR.spad" 519645 519691 527684 527723) (-343 "FEVALAB.spad" 519353 519363 519635 519640) (-342 "FEVALAB.spad" 518846 518858 519130 519135) (-341 "FDIV.spad" 518288 518312 518836 518841) (-340 "FDIVCAT.spad" 516352 516376 518278 518283) (-339 "FDIVCAT.spad" 514414 514440 516342 516347) (-338 "FDIV2.spad" 514070 514110 514404 514409) (-337 "FCTRDATA.spad" 513078 513086 514060 514065) (-336 "FCPAK1.spad" 511645 511653 513068 513073) (-335 "FCOMP.spad" 511024 511034 511635 511640) (-334 "FC.spad" 501031 501039 511014 511019) (-333 "FAXF.spad" 494002 494016 500933 501026) (-332 "FAXF.spad" 487025 487041 493958 493963) (-331 "FARRAY.spad" 485175 485185 486208 486235) (-330 "FAMR.spad" 483311 483323 485073 485170) (-329 "FAMR.spad" 481431 481445 483195 483200) (-328 "FAMONOID.spad" 481099 481109 481385 481390) (-327 "FAMONC.spad" 479395 479407 481089 481094) (-326 "FAGROUP.spad" 479019 479029 479291 479318) (-325 "FACUTIL.spad" 477223 477240 479009 479014) (-324 "FACTFUNC.spad" 476417 476427 477213 477218) (-323 "EXPUPXS.spad" 473250 473273 474549 474698) (-322 "EXPRTUBE.spad" 470538 470546 473240 473245) (-321 "EXPRODE.spad" 467698 467714 470528 470533) (-320 "EXPR.spad" 462973 462983 463687 464094) (-319 "EXPR2UPS.spad" 459095 459108 462963 462968) (-318 "EXPR2.spad" 458800 458812 459085 459090) (-317 "EXPEXPAN.spad" 455740 455765 456372 456465) (-316 "EXIT.spad" 455411 455419 455730 455735) (-315 "EXITAST.spad" 455147 455155 455401 455406) (-314 "EVALCYC.spad" 454607 454621 455137 455142) (-313 "EVALAB.spad" 454179 454189 454597 454602) (-312 "EVALAB.spad" 453749 453761 454169 454174) (-311 "EUCDOM.spad" 451323 451331 453675 453744) (-310 "EUCDOM.spad" 448959 448969 451313 451318) (-309 "ESTOOLS.spad" 440805 440813 448949 448954) (-308 "ESTOOLS2.spad" 440408 440422 440795 440800) (-307 "ESTOOLS1.spad" 440093 440104 440398 440403) (-306 "ES.spad" 432908 432916 440083 440088) (-305 "ES.spad" 425629 425639 432806 432811) (-304 "ESCONT.spad" 422422 422430 425619 425624) (-303 "ESCONT1.spad" 422171 422183 422412 422417) (-302 "ES2.spad" 421676 421692 422161 422166) (-301 "ES1.spad" 421246 421262 421666 421671) (-300 "ERROR.spad" 418573 418581 421236 421241) (-299 "EQTBL.spad" 417045 417067 417254 417281) (-298 "EQ.spad" 411850 411860 414637 414749) (-297 "EQ2.spad" 411568 411580 411840 411845) (-296 "EP.spad" 407894 407904 411558 411563) (-295 "ENV.spad" 406572 406580 407884 407889) (-294 "ENTIRER.spad" 406240 406248 406516 406567) (-293 "EMR.spad" 405447 405488 406166 406235) (-292 "ELTAGG.spad" 403701 403720 405437 405442) (-291 "ELTAGG.spad" 401919 401940 403657 403662) (-290 "ELTAB.spad" 401368 401386 401909 401914) (-289 "ELFUTS.spad" 400755 400774 401358 401363) (-288 "ELEMFUN.spad" 400444 400452 400745 400750) (-287 "ELEMFUN.spad" 400131 400141 400434 400439) (-286 "ELAGG.spad" 398102 398112 400111 400126) (-285 "ELAGG.spad" 396010 396022 398021 398026) (-284 "ELABOR.spad" 395356 395364 396000 396005) (-283 "ELABEXPR.spad" 394288 394296 395346 395351) (-282 "EFUPXS.spad" 391064 391094 394244 394249) (-281 "EFULS.spad" 387900 387923 391020 391025) (-280 "EFSTRUC.spad" 385915 385931 387890 387895) (-279 "EF.spad" 380691 380707 385905 385910) (-278 "EAB.spad" 378967 378975 380681 380686) (-277 "E04UCFA.spad" 378503 378511 378957 378962) (-276 "E04NAFA.spad" 378080 378088 378493 378498) (-275 "E04MBFA.spad" 377660 377668 378070 378075) (-274 "E04JAFA.spad" 377196 377204 377650 377655) (-273 "E04GCFA.spad" 376732 376740 377186 377191) (-272 "E04FDFA.spad" 376268 376276 376722 376727) (-271 "E04DGFA.spad" 375804 375812 376258 376263) (-270 "E04AGNT.spad" 371654 371662 375794 375799) (-269 "DVARCAT.spad" 368343 368353 371644 371649) (-268 "DVARCAT.spad" 365030 365042 368333 368338) (-267 "DSMP.spad" 362497 362511 362802 362929) (-266 "DROPT.spad" 356456 356464 362487 362492) (-265 "DROPT1.spad" 356121 356131 356446 356451) (-264 "DROPT0.spad" 350978 350986 356111 356116) (-263 "DRAWPT.spad" 349151 349159 350968 350973) (-262 "DRAW.spad" 342027 342040 349141 349146) (-261 "DRAWHACK.spad" 341335 341345 342017 342022) (-260 "DRAWCX.spad" 338805 338813 341325 341330) (-259 "DRAWCURV.spad" 338352 338367 338795 338800) (-258 "DRAWCFUN.spad" 327884 327892 338342 338347) (-257 "DQAGG.spad" 326062 326072 327852 327879) (-256 "DPOLCAT.spad" 321411 321427 325930 326057) (-255 "DPOLCAT.spad" 316846 316864 321367 321372) (-254 "DPMO.spad" 309072 309088 309210 309511) (-253 "DPMM.spad" 301311 301329 301436 301737) (-252 "DOMTMPLT.spad" 300971 300979 301301 301306) (-251 "DOMCTOR.spad" 300726 300734 300961 300966) (-250 "DOMAIN.spad" 299813 299821 300716 300721) (-249 "DMP.spad" 297073 297088 297643 297770) (-248 "DLP.spad" 296425 296435 297063 297068) (-247 "DLIST.spad" 295004 295014 295608 295635) (-246 "DLAGG.spad" 293421 293431 294994 294999) (-245 "DIVRING.spad" 292963 292971 293365 293416) (-244 "DIVRING.spad" 292549 292559 292953 292958) (-243 "DISPLAY.spad" 290739 290747 292539 292544) (-242 "DIRPROD.spad" 280319 280335 280959 281090) (-241 "DIRPROD2.spad" 279137 279155 280309 280314) (-240 "DIRPCAT.spad" 278081 278097 279001 279132) (-239 "DIRPCAT.spad" 276754 276772 277676 277681) (-238 "DIOSP.spad" 275579 275587 276744 276749) (-237 "DIOPS.spad" 274575 274585 275559 275574) (-236 "DIOPS.spad" 273545 273557 274531 274536) (-235 "DIFRING.spad" 272841 272849 273525 273540) (-234 "DIFRING.spad" 272145 272155 272831 272836) (-233 "DIFEXT.spad" 271316 271326 272125 272140) (-232 "DIFEXT.spad" 270404 270416 271215 271220) (-231 "DIAGG.spad" 270034 270044 270384 270399) (-230 "DIAGG.spad" 269672 269684 270024 270029) (-229 "DHMATRIX.spad" 267984 267994 269129 269156) (-228 "DFSFUN.spad" 261624 261632 267974 267979) (-227 "DFLOAT.spad" 258355 258363 261514 261619) (-226 "DFINTTLS.spad" 256586 256602 258345 258350) (-225 "DERHAM.spad" 254500 254532 256566 256581) (-224 "DEQUEUE.spad" 253824 253834 254107 254134) (-223 "DEGRED.spad" 253441 253455 253814 253819) (-222 "DEFINTRF.spad" 250978 250988 253431 253436) (-221 "DEFINTEF.spad" 249488 249504 250968 250973) (-220 "DEFAST.spad" 248856 248864 249478 249483) (-219 "DECIMAL.spad" 246962 246970 247323 247416) (-218 "DDFACT.spad" 244775 244792 246952 246957) (-217 "DBLRESP.spad" 244375 244399 244765 244770) (-216 "DBASE.spad" 243039 243049 244365 244370) (-215 "DATAARY.spad" 242501 242514 243029 243034) (-214 "D03FAFA.spad" 242329 242337 242491 242496) (-213 "D03EEFA.spad" 242149 242157 242319 242324) (-212 "D03AGNT.spad" 241235 241243 242139 242144) (-211 "D02EJFA.spad" 240697 240705 241225 241230) (-210 "D02CJFA.spad" 240175 240183 240687 240692) (-209 "D02BHFA.spad" 239665 239673 240165 240170) (-208 "D02BBFA.spad" 239155 239163 239655 239660) (-207 "D02AGNT.spad" 233969 233977 239145 239150) (-206 "D01WGTS.spad" 232288 232296 233959 233964) (-205 "D01TRNS.spad" 232265 232273 232278 232283) (-204 "D01GBFA.spad" 231787 231795 232255 232260) (-203 "D01FCFA.spad" 231309 231317 231777 231782) (-202 "D01ASFA.spad" 230777 230785 231299 231304) (-201 "D01AQFA.spad" 230223 230231 230767 230772) (-200 "D01APFA.spad" 229647 229655 230213 230218) (-199 "D01ANFA.spad" 229141 229149 229637 229642) (-198 "D01AMFA.spad" 228651 228659 229131 229136) (-197 "D01ALFA.spad" 228191 228199 228641 228646) (-196 "D01AKFA.spad" 227717 227725 228181 228186) (-195 "D01AJFA.spad" 227240 227248 227707 227712) (-194 "D01AGNT.spad" 223307 223315 227230 227235) (-193 "CYCLOTOM.spad" 222813 222821 223297 223302) (-192 "CYCLES.spad" 219669 219677 222803 222808) (-191 "CVMP.spad" 219086 219096 219659 219664) (-190 "CTRIGMNP.spad" 217586 217602 219076 219081) (-189 "CTOR.spad" 217277 217285 217576 217581) (-188 "CTORKIND.spad" 216880 216888 217267 217272) (-187 "CTORCAT.spad" 216129 216137 216870 216875) (-186 "CTORCAT.spad" 215376 215386 216119 216124) (-185 "CTORCALL.spad" 214965 214975 215366 215371) (-184 "CSTTOOLS.spad" 214210 214223 214955 214960) (-183 "CRFP.spad" 207934 207947 214200 214205) (-182 "CRCEAST.spad" 207654 207662 207924 207929) (-181 "CRAPACK.spad" 206705 206715 207644 207649) (-180 "CPMATCH.spad" 206209 206224 206630 206635) (-179 "CPIMA.spad" 205914 205933 206199 206204) (-178 "COORDSYS.spad" 200923 200933 205904 205909) (-177 "CONTOUR.spad" 200334 200342 200913 200918) (-176 "CONTFRAC.spad" 196084 196094 200236 200329) (-175 "CONDUIT.spad" 195842 195850 196074 196079) (-174 "COMRING.spad" 195516 195524 195780 195837) (-173 "COMPPROP.spad" 195034 195042 195506 195511) (-172 "COMPLPAT.spad" 194801 194816 195024 195029) (-171 "COMPLEX.spad" 188938 188948 189182 189443) (-170 "COMPLEX2.spad" 188653 188665 188928 188933) (-169 "COMPILER.spad" 188202 188210 188643 188648) (-168 "COMPFACT.spad" 187804 187818 188192 188197) (-167 "COMPCAT.spad" 185876 185886 187538 187799) (-166 "COMPCAT.spad" 183676 183688 185340 185345) (-165 "COMMUPC.spad" 183424 183442 183666 183671) (-164 "COMMONOP.spad" 182957 182965 183414 183419) (-163 "COMM.spad" 182768 182776 182947 182952) (-162 "COMMAAST.spad" 182531 182539 182758 182763) (-161 "COMBOPC.spad" 181446 181454 182521 182526) (-160 "COMBINAT.spad" 180213 180223 181436 181441) (-159 "COMBF.spad" 177595 177611 180203 180208) (-158 "COLOR.spad" 176432 176440 177585 177590) (-157 "COLONAST.spad" 176098 176106 176422 176427) (-156 "CMPLXRT.spad" 175809 175826 176088 176093) (-155 "CLLCTAST.spad" 175471 175479 175799 175804) (-154 "CLIP.spad" 171579 171587 175461 175466) (-153 "CLIF.spad" 170234 170250 171535 171574) (-152 "CLAGG.spad" 166739 166749 170224 170229) (-151 "CLAGG.spad" 163115 163127 166602 166607) (-150 "CINTSLPE.spad" 162446 162459 163105 163110) (-149 "CHVAR.spad" 160584 160606 162436 162441) (-148 "CHARZ.spad" 160499 160507 160564 160579) (-147 "CHARPOL.spad" 160009 160019 160489 160494) (-146 "CHARNZ.spad" 159762 159770 159989 160004) (-145 "CHAR.spad" 157636 157644 159752 159757) (-144 "CFCAT.spad" 156964 156972 157626 157631) (-143 "CDEN.spad" 156160 156174 156954 156959) (-142 "CCLASS.spad" 154309 154317 155571 155610) (-141 "CATEGORY.spad" 153351 153359 154299 154304) (-140 "CATCTOR.spad" 153242 153250 153341 153346) (-139 "CATAST.spad" 152860 152868 153232 153237) (-138 "CASEAST.spad" 152574 152582 152850 152855) (-137 "CARTEN.spad" 147861 147885 152564 152569) (-136 "CARTEN2.spad" 147251 147278 147851 147856) (-135 "CARD.spad" 144546 144554 147225 147246) (-134 "CAPSLAST.spad" 144320 144328 144536 144541) (-133 "CACHSET.spad" 143944 143952 144310 144315) (-132 "CABMON.spad" 143499 143507 143934 143939) (-131 "BYTEORD.spad" 143174 143182 143489 143494) (-130 "BYTE.spad" 142601 142609 143164 143169) (-129 "BYTEBUF.spad" 140460 140468 141770 141797) (-128 "BTREE.spad" 139533 139543 140067 140094) (-127 "BTOURN.spad" 138538 138548 139140 139167) (-126 "BTCAT.spad" 137930 137940 138506 138533) (-125 "BTCAT.spad" 137342 137354 137920 137925) (-124 "BTAGG.spad" 136808 136816 137310 137337) (-123 "BTAGG.spad" 136294 136304 136798 136803) (-122 "BSTREE.spad" 135035 135045 135901 135928) (-121 "BRILL.spad" 133232 133243 135025 135030) (-120 "BRAGG.spad" 132172 132182 133222 133227) (-119 "BRAGG.spad" 131076 131088 132128 132133) (-118 "BPADICRT.spad" 129057 129069 129312 129405) (-117 "BPADIC.spad" 128721 128733 128983 129052) (-116 "BOUNDZRO.spad" 128377 128394 128711 128716) (-115 "BOP.spad" 123559 123567 128367 128372) (-114 "BOP1.spad" 121025 121035 123549 123554) (-113 "BOOLE.spad" 120675 120683 121015 121020) (-112 "BOOLEAN.spad" 120113 120121 120665 120670) (-111 "BMODULE.spad" 119825 119837 120081 120108) (-110 "BITS.spad" 119246 119254 119461 119488) (-109 "BINDING.spad" 118659 118667 119236 119241) (-108 "BINARY.spad" 116770 116778 117126 117219) (-107 "BGAGG.spad" 115975 115985 116750 116765) (-106 "BGAGG.spad" 115188 115200 115965 115970) (-105 "BFUNCT.spad" 114752 114760 115168 115183) (-104 "BEZOUT.spad" 113892 113919 114702 114707) (-103 "BBTREE.spad" 110737 110747 113499 113526) (-102 "BASTYPE.spad" 110409 110417 110727 110732) (-101 "BASTYPE.spad" 110079 110089 110399 110404) (-100 "BALFACT.spad" 109538 109551 110069 110074) (-99 "AUTOMOR.spad" 108989 108998 109518 109533) (-98 "ATTREG.spad" 105712 105719 108741 108984) (-97 "ATTRBUT.spad" 101735 101742 105692 105707) (-96 "ATTRAST.spad" 101452 101459 101725 101730) (-95 "ATRIG.spad" 100922 100929 101442 101447) (-94 "ATRIG.spad" 100390 100399 100912 100917) (-93 "ASTCAT.spad" 100294 100301 100380 100385) (-92 "ASTCAT.spad" 100196 100205 100284 100289) (-91 "ASTACK.spad" 99535 99544 99803 99830) (-90 "ASSOCEQ.spad" 98361 98372 99491 99496) (-89 "ASP9.spad" 97442 97455 98351 98356) (-88 "ASP8.spad" 96485 96498 97432 97437) (-87 "ASP80.spad" 95807 95820 96475 96480) (-86 "ASP7.spad" 94967 94980 95797 95802) (-85 "ASP78.spad" 94418 94431 94957 94962) (-84 "ASP77.spad" 93787 93800 94408 94413) (-83 "ASP74.spad" 92879 92892 93777 93782) (-82 "ASP73.spad" 92150 92163 92869 92874) (-81 "ASP6.spad" 91017 91030 92140 92145) (-80 "ASP55.spad" 89526 89539 91007 91012) (-79 "ASP50.spad" 87343 87356 89516 89521) (-78 "ASP4.spad" 86638 86651 87333 87338) (-77 "ASP49.spad" 85637 85650 86628 86633) (-76 "ASP42.spad" 84044 84083 85627 85632) (-75 "ASP41.spad" 82623 82662 84034 84039) (-74 "ASP35.spad" 81611 81624 82613 82618) (-73 "ASP34.spad" 80912 80925 81601 81606) (-72 "ASP33.spad" 80472 80485 80902 80907) (-71 "ASP31.spad" 79612 79625 80462 80467) (-70 "ASP30.spad" 78504 78517 79602 79607) (-69 "ASP29.spad" 77970 77983 78494 78499) (-68 "ASP28.spad" 69243 69256 77960 77965) (-67 "ASP27.spad" 68140 68153 69233 69238) (-66 "ASP24.spad" 67227 67240 68130 68135) (-65 "ASP20.spad" 66691 66704 67217 67222) (-64 "ASP1.spad" 66072 66085 66681 66686) (-63 "ASP19.spad" 60758 60771 66062 66067) (-62 "ASP12.spad" 60172 60185 60748 60753) (-61 "ASP10.spad" 59443 59456 60162 60167) (-60 "ARRAY2.spad" 58803 58812 59050 59077) (-59 "ARRAY1.spad" 57640 57649 57986 58013) (-58 "ARRAY12.spad" 56353 56364 57630 57635) (-57 "ARR2CAT.spad" 52127 52148 56321 56348) (-56 "ARR2CAT.spad" 47921 47944 52117 52122) (-55 "ARITY.spad" 47293 47300 47911 47916) (-54 "APPRULE.spad" 46553 46575 47283 47288) (-53 "APPLYORE.spad" 46172 46185 46543 46548) (-52 "ANY.spad" 45031 45038 46162 46167) (-51 "ANY1.spad" 44102 44111 45021 45026) (-50 "ANTISYM.spad" 42547 42563 44082 44097) (-49 "ANON.spad" 42240 42247 42537 42542) (-48 "AN.spad" 40549 40556 42056 42149) (-47 "AMR.spad" 38734 38745 40447 40544) (-46 "AMR.spad" 36756 36769 38471 38476) (-45 "ALIST.spad" 34168 34189 34518 34545) (-44 "ALGSC.spad" 33303 33329 34040 34093) (-43 "ALGPKG.spad" 29086 29097 33259 33264) (-42 "ALGMFACT.spad" 28279 28293 29076 29081) (-41 "ALGMANIP.spad" 25753 25768 28112 28117) (-40 "ALGFF.spad" 24068 24095 24285 24441) (-39 "ALGFACT.spad" 23195 23205 24058 24063) (-38 "ALGEBRA.spad" 23028 23037 23151 23190) (-37 "ALGEBRA.spad" 22893 22904 23018 23023) (-36 "ALAGG.spad" 22405 22426 22861 22888) (-35 "AHYP.spad" 21786 21793 22395 22400) (-34 "AGG.spad" 20103 20110 21776 21781) (-33 "AGG.spad" 18384 18393 20059 20064) (-32 "AF.spad" 16815 16830 18319 18324) (-31 "ADDAST.spad" 16493 16500 16805 16810) (-30 "ACPLOT.spad" 15084 15091 16483 16488) (-29 "ACFS.spad" 12893 12902 14986 15079) (-28 "ACFS.spad" 10788 10799 12883 12888) (-27 "ACF.spad" 7470 7477 10690 10783) (-26 "ACF.spad" 4238 4247 7460 7465) (-25 "ABELSG.spad" 3779 3786 4228 4233) (-24 "ABELSG.spad" 3318 3327 3769 3774) (-23 "ABELMON.spad" 2861 2868 3308 3313) (-22 "ABELMON.spad" 2402 2411 2851 2856) (-21 "ABELGRP.spad" 2067 2074 2392 2397) (-20 "ABELGRP.spad" 1730 1739 2057 2062) (-19 "A1AGG.spad" 870 879 1698 1725) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
diff --git a/src/share/algebra/category.daase b/src/share/algebra/category.daase
index 0b9aea69..0d70ff12 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,6 +1,6 @@
-(188562 . 3480528381)
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(188596 . 3480551183)
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
((((-570)) . T) (($) -2740 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T))
(((|#2| |#2|) . T))
((((-570)) . T))
@@ -56,7 +56,7 @@
(((#0=(-876 |#1|) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
((((-1168)) . T) (((-965 (-130))) . T) (((-868)) . T))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(|has| |#4| (-373))
(|has| |#3| (-373))
(((|#1|) . T))
@@ -74,7 +74,7 @@
((((-570)) . T) (((-413 (-570))) -2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2740 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-562)))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-562)))
-((((-2 (|:| -2159 |#1|) (|:| -1907 |#2|))) . T))
+((((-2 (|:| -2160 |#1|) (|:| -3011 |#2|))) . T))
((($) . T))
((((-570)) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T) (($) -2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1186)) . T))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
@@ -126,12 +126,12 @@
(((|#1|) . T))
(|has| |#1| (-373))
(((|#1|) . T))
-((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
+((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
(((|#1|) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (($) . T))
(-2740 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-570)) . T))
((((-868)) . T))
(((|#1| |#2|) . T))
@@ -270,8 +270,8 @@
(((|#1|) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
-(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
(|has| |#1| (-562))
((((-570)) -2740 (|has| |#4| (-174)) (|has| |#4| (-854)) (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058))) ((|#4|) -2740 (|has| |#4| (-174)) (|has| |#4| (-1109))) (((-413 (-570))) -12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))
((((-570)) -2740 (|has| |#3| (-174)) (|has| |#3| (-854)) (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058))) ((|#3|) -2740 (|has| |#3| (-174)) (|has| |#3| (-1109))) (((-413 (-570))) -12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))
@@ -284,7 +284,7 @@
(|has| |#1| (-562))
((((-705)) . T))
(((|#1|) . T))
-(-12 (|has| |#1| (-1011)) (|has| |#1| (-1211)))
+(-12 (|has| |#1| (-1011)) (|has| |#1| (-1212)))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
(((|#2|) . T) (($) . T) (((-413 (-570))) . T))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
@@ -300,11 +300,11 @@
((((-542)) |has| |#2| (-620 (-542))) (((-899 (-384))) |has| |#2| (-620 (-899 (-384)))) (((-899 (-570))) |has| |#2| (-620 (-899 (-570)))))
((((-868)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-2 (|:| -2159 |#1|) (|:| -1907 |#2|))) . T) (((-868)) . T))
+((((-2 (|:| -2160 |#1|) (|:| -3011 |#2|))) . T) (((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))) (((-899 (-384))) |has| |#1| (-620 (-899 (-384)))) (((-899 (-570))) |has| |#1| (-620 (-899 (-570)))))
(((|#4|) -2740 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($) |has| |#4| (-174)))
(((|#3|) -2740 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
-((((-2 (|:| -2159 |#1|) (|:| -1907 |#2|))) . T))
+((((-2 (|:| -2160 |#1|) (|:| -3011 |#2|))) . T))
((((-868)) . T))
((((-868)) . T))
((((-542)) . T) (((-570)) . T) (((-899 (-570))) . T) (((-384)) . T) (((-227)) . T))
@@ -312,7 +312,7 @@
(((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
((($) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
((((-413 $) (-413 $)) |has| |#2| (-562)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) . T))
(((|#1|) . T))
(|has| |#2| (-916))
((((-1168) (-52)) . T))
@@ -351,9 +351,9 @@
(((|#1|) . T))
(((|#2| |#2|) . T))
(|has| |#1| (-1161))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
-(|has| (-1262 |#1| |#2| |#3| |#4|) (-146))
-(|has| (-1262 |#1| |#2| |#3| |#4|) (-148))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
+(|has| (-1263 |#1| |#2| |#3| |#4|) (-146))
+(|has| (-1263 |#1| |#2| |#3| |#4|) (-148))
(|has| |#1| (-146))
(|has| |#1| (-148))
((((-1186)) -12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058))))
@@ -369,10 +369,10 @@
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-1058)))
((((-868)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(((|#1|) . T))
-((((-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) #0#) |has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))))
+((((-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) #0#) |has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))))
((((-868)) . T))
((((-570) |#1|) . T))
((((-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#2| (-620 (-542)))) (((-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384))))) (((-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570))))))
@@ -386,8 +386,8 @@
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-868)) . T))
((((-868)) . T))
-(|has| (-1261 |#2| |#3| |#4|) (-148))
-(|has| (-1261 |#2| |#3| |#4|) (-146))
+(|has| (-1262 |#2| |#3| |#4|) (-148))
+(|has| (-1262 |#2| |#3| |#4|) (-146))
(((|#2|) |has| |#2| (-1109)) (((-570)) -12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
(((|#1|) . T))
(|has| |#1| (-1109))
@@ -414,7 +414,7 @@
((((-868)) . T))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
(|has| |#1| (-368))
-(-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))
+(-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))
(|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))
(|has| |#1| (-368))
(|has| |#1| (-15 * (|#1| (-777) |#1|)))
@@ -433,11 +433,12 @@
((($) |has| |#1| (-562)) (((-570)) . T))
(-2740 (|has| |#2| (-799)) (|has| |#2| (-854)))
(-2740 (|has| |#2| (-799)) (|has| |#2| (-854)))
-((((-1268 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
-((((-1272 |#2|)) . T) (((-1268 |#1| |#2| |#3|)) . T) (((-1240 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-1269 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
+((((-1273 |#2|)) . T) (((-1269 |#1| |#2| |#3|)) . T) (((-1241 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (((-570)) . T))
(((|#1|) . T))
((((-1186)) -12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058))))
+(((|#1|) . T))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(-12 (|has| |#1| (-368)) (|has| |#2| (-826)))
(-2740 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562)))
@@ -446,8 +447,8 @@
(((#0=(-705) (-1182 #0#)) . T))
((((-587 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
-((((-868)) . T) (((-1276 |#4|)) . T))
-((((-868)) . T) (((-1276 |#3|)) . T))
+((((-868)) . T) (((-1277 |#4|)) . T))
+((((-868)) . T) (((-1277 |#3|)) . T))
((((-587 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
((($) . T) (((-413 (-570))) . T))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-562))))
@@ -455,9 +456,9 @@
((((-868)) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
((($) . T))
-((($ $) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((#1=(-1268 |#1| |#2| |#3|) #1#) |has| |#1| (-368)) ((|#1| |#1|) . T))
+((($ $) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((#1=(-1269 |#1| |#2| |#3|) #1#) |has| |#1| (-368)) ((|#1| |#1|) . T))
(((|#1| |#1|) . T) (($ $) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
+((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
(((|#1|) . T) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
(((|#3|) |has| |#3| (-1058)))
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
@@ -490,12 +491,12 @@
((((-145)) . T))
(((|#3|) |has| |#3| (-1109)) (((-570)) -12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (((-413 (-570))) -12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) . T))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
(((|#1|) |has| |#1| (-174)))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
(|has| |#1| (-368))
((((-1191)) . T))
(((|#1|) . T))
@@ -506,13 +507,13 @@
(|has| |#1| (-854))
(-2740 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-542)) |has| |#1| (-620 (-542))))
(((|#1| |#2|) . T))
((((-1186)) -12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186)))))
((((-1168) |#1|) . T))
(((|#1| |#2| |#3| (-537 |#3|)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(|has| |#1| (-373))
(|has| |#1| (-373))
(|has| |#1| (-373))
@@ -538,7 +539,7 @@
((((-570) |#3|) . T))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
(-2740 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
((((-413 (-570))) . T) (((-570)) . T))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#1| |#1|) . T))
@@ -615,7 +616,7 @@
(((|#1|) . T) (($) . T))
((((-570)) |has| |#1| (-645 (-570))) ((|#1|) . T))
((((-1184 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
-((((-1272 |#2|)) . T) (((-1184 |#1| |#2| |#3|)) . T) (((-1177 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-1273 |#2|)) . T) (((-1184 |#1| |#2| |#3|)) . T) (((-1177 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
(((|#4|) . T))
(((|#3|) . T))
((((-876 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
@@ -721,14 +722,14 @@
((($ $) . T))
(((|#1| |#1|) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-((((-1268 |#1| |#2| |#3|) $) -12 (|has| (-1268 |#1| |#2| |#3|) (-290 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368))) (($ $) . T))
+((((-1269 |#1| |#2| |#3|) $) -12 (|has| (-1269 |#1| |#2| |#3|) (-290 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368))) (($ $) . T))
((($ $) . T))
((($ $) . T))
(((|#1|) . T))
((((-1149 |#1| |#2|)) |has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
(((|#3| |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(((|#2|) . T) (((-570)) |has| |#2| (-1047 (-570))) (((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
@@ -737,9 +738,9 @@
(((|#2|) . T))
(((|#3|) . T))
(-2740 (|has| |#1| (-856)) (|has| |#1| (-1109)))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(((|#2|) . T))
-((((-868)) -2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-619 (-868))) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109))) (((-1276 |#2|)) . T))
+((((-868)) -2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-619 (-868))) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109))) (((-1277 |#2|)) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((|#1|) . T) (((-570)) . T) (($) . T))
(((|#1|) |has| |#1| (-174)))
((((-570)) . T))
@@ -789,7 +790,7 @@
(-2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-868)) . T))
((((-868)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-1058)) (((-570)) -12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))
(((|#1| |#2|) . T))
(-2740 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
@@ -837,9 +838,9 @@
(-2740 (|has| |#1| (-458)) (|has| |#1| (-916)))
((((-570) |#2|) . T))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((($) -2740 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2740 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
((((-570) |#1|) . T))
@@ -854,11 +855,11 @@
(|has| |#1| (-562))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-868)) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
(|has| |#1| (-38 (-413 (-570))))
-((((-394) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-394) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#2| (-1161))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-562)))
@@ -871,7 +872,7 @@
((((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
-((((-1225)) . T) (((-868)) . T) (((-1191)) . T))
+((((-1226)) . T) (((-868)) . T) (((-1191)) . T))
((((-117 |#1|)) . T))
((((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
@@ -928,7 +929,7 @@
((($ $) . T))
((($ $) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-(((#0=(-1268 |#1| |#2| |#3|) #0#) -12 (|has| (-1268 |#1| |#2| |#3|) (-313 (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368))) (((-1186) #0#) -12 (|has| (-1268 |#1| |#2| |#3|) (-520 (-1186) (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368))))
+(((#0=(-1269 |#1| |#2| |#3|) #0#) -12 (|has| (-1269 |#1| |#2| |#3|) (-313 (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368))) (((-1186) #0#) -12 (|has| (-1269 |#1| |#2| |#3|) (-520 (-1186) (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368))))
(-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))
(((|#1|) . T))
(((|#1|) . T))
@@ -970,7 +971,7 @@
((((-868)) . T))
((((-868)) . T))
((((-868)) . T))
-(((|#1| (-1276 |#1|) (-1276 |#1|)) . T))
+(((|#1| (-1277 |#1|) (-1277 |#1|)) . T))
((((-570) (-145)) . T))
((($) . T))
(-2740 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
@@ -1019,7 +1020,7 @@
(((|#3|) |has| |#3| (-1109)))
(|has| |#3| (-373))
((($) |has| |#1| (-562)) ((|#1|) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
-((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
((((-868)) . T))
((((-868)) . T))
(((|#2|) . T))
@@ -1094,7 +1095,7 @@
(|has| |#2| (-174))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))
-(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(-2740 (|has| |#3| (-799)) (|has| |#3| (-854)))
(-2740 (|has| |#3| (-799)) (|has| |#3| (-854)))
((((-868)) . T))
@@ -1125,10 +1126,10 @@
(((|#1| (-413 (-570))) . T))
(((|#3|) . T) (((-618 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-570)) -2740 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
((($ $) . T) ((|#2| $) . T))
@@ -1137,8 +1138,8 @@
((((-868)) . T))
((((-868)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) |has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) |has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))))
((((-868)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
@@ -1154,7 +1155,7 @@
(|has| (-1103 |#1|) (-1109))
(((|#2| |#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
(((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368))))
-((((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((|#1| |#2|) . T))
+((((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((|#1| |#2|) . T))
(((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
((((-570)) . T))
((((-1191)) . T))
@@ -1199,7 +1200,7 @@
(-2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109)))
(-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))
(|has| |#2| (-1161))
-(((#0=(-52)) . T) (((-2 (|:| -2013 (-1186)) (|:| -2223 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2013 (-1186)) (|:| -2224 #0#))) . T))
(((|#1| |#2|) . T))
(-2740 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
(((|#1| (-570) (-1091)) . T))
@@ -1228,7 +1229,7 @@
(((|#4|) . T) (((-868)) . T))
(((|#3|) . T) ((|#2|) . T) (($) -2740 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058))) (((-570)) . T) ((|#4|) -2740 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))))
(((|#2|) . T) (($) -2740 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) (((-570)) . T) ((|#3|) -2740 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(|has| |#1| (-562))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-868)) . T))
@@ -1288,9 +1289,9 @@
(-12 (|has| |#1| (-799)) (|has| |#2| (-799)))
(-2740 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((($) . T) (((-570)) . T) ((|#2|) . T))
-(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#2|) . T) (($) . T))
-(|has| |#1| (-1211))
+(|has| |#1| (-1212))
(((#0=(-570) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
((((-413 (-570))) . T) (($) . T))
(((|#4|) |has| |#4| (-1058)))
@@ -1319,11 +1320,11 @@
((($) . T) (((-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
(-2740 (|has| |#1| (-174)) (|has| |#1| (-562)))
((($) . T))
-(((#0=(-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) #0#) |has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))))
+(((#0=(-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) #0#) |has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))))
((($) . T))
((($) . T))
(((|#2|) |has| |#2| (-1109)))
-((((-868)) -2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-619 (-868))) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109))) (((-1276 |#2|)) . T))
+((((-868)) -2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-619 (-868))) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109))) (((-1277 |#2|)) . T))
((($) . T))
((((-570)) . T) (($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-1168) (-52)) . T))
@@ -1335,10 +1336,10 @@
((((-570)) |has| #0=(-413 |#2|) (-645 (-570))) ((#0#) . T))
((($) . T) (((-570)) . T))
((((-570) (-145)) . T))
-((((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((|#1| |#2|) . T))
+((((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((|#1| |#2|) . T))
((((-413 (-570))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-868)) . T))
((((-917 |#1|)) . T))
(|has| |#1| (-368))
@@ -1355,7 +1356,7 @@
(|has| |#1| (-854))
((((-512)) . T))
(((|#1| (-1186)) . T))
-(((|#1| (-1276 |#1|) (-1276 |#1|)) . T))
+(((|#1| (-1277 |#1|) (-1277 |#1|)) . T))
((((-868)) . T) (((-1191)) . T))
(((|#1| |#2|) . T))
((($ $) . T))
@@ -1367,7 +1368,7 @@
((((-868)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-((((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((|#1| |#2|) . T))
+((((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-174)))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
@@ -1384,7 +1385,7 @@
((((-542)) |has| |#1| (-620 (-542))) (((-899 (-384))) |has| |#1| (-620 (-899 (-384)))) (((-899 (-570))) |has| |#1| (-620 (-899 (-570)))))
((((-868)) . T))
((((-876 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
-(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-512)) . T))
(|has| |#2| (-854))
((((-512)) . T))
@@ -1409,7 +1410,7 @@
((((-542)) |has| |#4| (-620 (-542))))
((((-868)) . T) (((-650 |#4|)) . T))
((($) |has| |#1| (-854)))
-((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
+((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
((((-570)) -2740 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
(((|#1|) . T))
(((|#1|) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
@@ -1419,7 +1420,7 @@
(((|#1|) . T))
((((-1186)) |has| (-413 |#2|) (-907 (-1186))))
(((|#2|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2740 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2740 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
@@ -1429,14 +1430,14 @@
((($) . T))
((($) . T))
(((|#2|) . T))
-((((-868)) -2740 (|has| |#3| (-25)) (|has| |#3| (-132)) (|has| |#3| (-619 (-868))) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-373)) (|has| |#3| (-732)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)) (|has| |#3| (-1109))) (((-1276 |#3|)) . T))
+((((-868)) -2740 (|has| |#3| (-25)) (|has| |#3| (-132)) (|has| |#3| (-619 (-868))) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-373)) (|has| |#3| (-732)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)) (|has| |#3| (-1109))) (((-1277 |#3|)) . T))
((((-570) |#2|) . T))
(-2740 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#2| |#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
(((|#2|) . T) (((-570)) . T))
((((-868)) . T))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((|#2|) . T))
((((-868)) . T))
((((-868)) . T))
((((-1168) (-1186) (-570) (-227) (-868)) . T))
@@ -1527,7 +1528,7 @@
((((-1008 |#1|)) . T) ((|#1|) . T))
((((-868)) . T))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-413 (-570))) . T) (((-413 |#1|)) . T) ((|#1|) . T) (($) . T))
(((|#1| (-1182 |#1|)) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
@@ -1536,7 +1537,7 @@
(((|#1|) . T) (((-570)) . T) (($) . T))
(((|#2|) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-570) |#2|) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
@@ -1549,8 +1550,8 @@
(((|#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#1| (-1109))
(|has| |#2| (-368))
@@ -1595,7 +1596,7 @@
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1| |#2|) . T))
((((-570) (-145)) . T))
-(((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
+(((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
((($) -2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(|has| |#1| (-856))
(((|#2| (-777) (-1091)) . T))
@@ -1619,7 +1620,7 @@
((((-868)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#3|) . T))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
(((|#1|) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
@@ -1647,8 +1648,8 @@
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
((((-394) (-1168)) . T))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((((-868)) -2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-619 (-868))) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109))) (((-1276 |#2|)) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2013 (-1168)) (|:| -2223 #0#))) . T))
+((((-868)) -2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-619 (-868))) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109))) (((-1277 |#2|)) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2013 (-1168)) (|:| -2224 #0#))) . T))
(((|#1|) . T))
((((-868)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
@@ -1668,7 +1669,7 @@
(|has| |#1| (-854))
((((-868)) . T))
(((|#2|) . T))
-((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#2|) . T) (((-570)) . T) (((-825 |#1|)) . T))
@@ -1699,12 +1700,12 @@
(((|#2|) |has| |#2| (-174)))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-1186) (-52)) . T))
((($ $) . T))
(((|#1| (-570)) . T))
@@ -1719,7 +1720,7 @@
((((-570)) . T))
(|has| |#1| (-856))
((((-695 |#2|)) . T) (((-868)) . T))
-((((-1268 |#1| |#2| |#3|)) -12 (|has| (-1268 |#1| |#2| |#3|) (-313 (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368))))
+((((-1269 |#1| |#2| |#3|)) -12 (|has| (-1269 |#1| |#2| |#3|) (-313 (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368))))
((((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#1| |#2|) . T))
((((-413 (-959 |#1|))) . T))
@@ -1754,11 +1755,11 @@
(-2740 (|has| |#1| (-368)) (|has| |#1| (-354)))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-1186)) |has| |#1| (-907 (-1186))) (((-1091)) . T))
(((|#1|) . T))
(|has| |#1| (-854))
-(((#0=(-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) #0#) |has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))))
+(((#0=(-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) #0#) |has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(|has| |#1| (-1109))
((((-868)) . T) (((-1191)) . T))
@@ -1807,11 +1808,11 @@
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) . T))
((($) |has| |#1| (-854)))
-((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
(|has| |#1| (-916))
((((-1186)) . T))
((((-868)) . T))
-((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
+((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
(((|#1|) . T) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
@@ -1819,7 +1820,7 @@
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) #0#) |has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))))
+(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) #0#) |has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))))
(-2740 (|has| |#2| (-458)) (|has| |#2| (-916)))
(-2740 (|has| |#1| (-458)) (|has| |#1| (-916)))
(((|#1|) . T) (($) . T))
@@ -1844,7 +1845,7 @@
((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
((((-678 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
@@ -1864,11 +1865,11 @@
(-2740 (|has| |#3| (-25)) (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-373)) (|has| |#3| (-732)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)) (|has| |#3| (-1109)))
(-2740 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T))
-(|has| |#1| (-1211))
-(|has| |#1| (-1211))
+(|has| |#1| (-1212))
+(|has| |#1| (-1212))
(-2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109)))
-(|has| |#1| (-1211))
-(|has| |#1| (-1211))
+(|has| |#1| (-1212))
+(|has| |#1| (-1212))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T) ((#1=(-413 |#1|) #1#) . T) ((|#1| |#1|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
@@ -1922,7 +1923,7 @@
((((-868)) . T))
((((-868)) . T))
((($ $) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((($ $) . T))
((((-570) (-112)) . T))
((($) . T))
@@ -1945,14 +1946,14 @@
(((|#1|) . T))
((((-868)) . T))
(((|#1| (-570)) . T))
-(((|#1| (-1268 |#1| |#2| |#3|)) . T))
+(((|#1| (-1269 |#1| |#2| |#3|)) . T))
(((|#1|) . T))
(((|#1| (-413 (-570))) . T))
-(((|#1| (-1240 |#1| |#2| |#3|)) . T))
+(((|#1| (-1241 |#1| |#2| |#3|)) . T))
(((|#1| (-777)) . T))
(((|#1|) . T))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(|has| |#1| (-1109))
((((-1168) |#1|) . T))
((($) . T))
@@ -1960,8 +1961,8 @@
(|has| |#2| (-146))
(((|#1| (-537 (-824 (-1186))) (-824 (-1186))) . T))
((((-868)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-1058)))
((((-570) (-112)) . T))
((((-868)) |has| |#1| (-1109)))
@@ -1978,7 +1979,7 @@
(((|#3|) . T))
(-2740 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-868)) . T))
-((((-1261 |#2| |#3| |#4|)) . T) (((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1262 |#2| |#3| |#4|)) . T) (((-1263 |#1| |#2| |#3| |#4|)) . T))
((((-868)) . T))
((((-48)) -12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (((-618 $)) . T) ((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) -2740 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-413 (-959 |#1|))) |has| |#1| (-562)) (((-959 |#1|)) |has| |#1| (-1058)) (((-1186)) . T))
(((|#1|) . T) (($) . T))
@@ -1986,7 +1987,7 @@
(((|#1|) . T))
((($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1|) |has| |#1| (-313 |#1|)))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
((((-570)) |has| |#1| (-893 (-570))) (((-384)) |has| |#1| (-893 (-384))))
(((|#1|) . T))
(((|#1|) . T))
@@ -2000,7 +2001,7 @@
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
(((|#1|) . T) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(((|#1|) |has| |#1| (-174)))
((((-868)) . T))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
@@ -2014,7 +2015,7 @@
(((|#3|) |has| |#3| (-1109)))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
(((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368))))
-((((-1261 |#2| |#3| |#4|)) . T))
+((((-1262 |#2| |#3| |#4|)) . T))
((((-112)) . T))
(|has| |#1| (-826))
(|has| |#1| (-826))
@@ -2024,7 +2025,7 @@
(|has| |#1| (-854))
(((|#1| (-570) (-1091)) . T))
(-2740 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1| (-413 (-570)) (-1091)) . T))
(((|#1| (-777) (-1091)) . T))
(|has| |#1| (-856))
@@ -2043,15 +2044,15 @@
(|has| |#1| (-1109))
((((-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-645 (-570)))) ((|#2|) |has| |#1| (-368)))
(-2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109)))
-((((-695 (-344 (-3748) (-3748 (QUOTE X) (QUOTE HESS)) (-705)))) . T))
+((((-695 (-344 (-3749) (-3749 (QUOTE X) (QUOTE HESS)) (-705)))) . T))
(((|#2|) |has| |#2| (-174)))
(((|#1|) |has| |#1| (-174)))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
((((-868)) . T))
(|has| |#3| (-854))
((((-868)) . T))
-((((-1261 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) . T))
+((((-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) . T))
((((-868)) . T))
(((|#1| |#1|) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
(((|#1|) . T))
@@ -2063,11 +2064,11 @@
((($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-368)))
(|has| |#1| (-856))
(((|#1|) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) . T) (((-570)) . T))
(((|#2|) . T))
((((-570)) . T) ((|#3|) . T))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) |has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) |has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))))
(-2740 (|has| |#1| (-458)) (|has| |#1| (-916)))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
((((-868)) . T))
@@ -2126,7 +2127,7 @@
((((-650 |#1|)) . T))
(|has| |#1| (-916))
(((|#2|) |has| |#2| (-1058)))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(|has| |#1| (-368))
(((|#1|) |has| |#1| (-174)))
(((|#1| |#1|) . T))
@@ -2178,7 +2179,7 @@
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
@@ -2192,7 +2193,7 @@
(((|#2|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-570) |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
((((-384)) . T))
((((-705)) . T))
((((-413 (-570))) . #0=(|has| |#2| (-368))) (($) . #0#))
@@ -2209,7 +2210,7 @@
(|has| |#1| (-368))
((((-1186)) |has| |#2| (-907 (-1186))))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-413 (-570))) . T) (($) . T))
(|has| |#1| (-479))
(|has| |#1| (-373))
@@ -2237,12 +2238,12 @@
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-856))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T))
(|has| |#1| (-148))
(|has| |#1| (-146))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) ((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) ((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
(((|#2|) . T))
(((|#3|) . T))
((((-117 |#1|)) . T))
@@ -2262,10 +2263,10 @@
((((-542)) |has| |#1| (-620 (-542))) (((-899 (-570))) |has| |#1| (-620 (-899 (-570)))) (((-899 (-384))) |has| |#1| (-620 (-899 (-384)))) (((-384)) . #0=(|has| |#1| (-1031))) (((-227)) . #0#))
(((|#1|) |has| |#1| (-368)))
((((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((($ $) . T) (((-618 $) $) . T))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-562)))
-((($) . T) (((-1262 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T))
+((($) . T) (((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T))
((($) -2740 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-562)))
((($) . T) (((-570)) . T) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
(|has| |#1| (-368))
@@ -2299,11 +2300,11 @@
((((-570)) . T))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-562)))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-562)))
-(((#0=(-1261 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))) (($) . T))
+(((#0=(-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))) (($) . T))
((((-570)) . T))
(|has| |#1| (-368))
-(-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-148)) (|has| |#1| (-368))) (|has| |#1| (-148)))
-(-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146)))
+(-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-148)) (|has| |#1| (-368))) (|has| |#1| (-148)))
+(-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146)))
(|has| |#1| (-368))
(|has| |#1| (-146))
(|has| |#1| (-148))
@@ -2335,7 +2336,7 @@
((((-959 |#1|)) . T) (((-868)) . T))
(((|#3|) . T))
(((|#1| |#1|) . T) (($ $) -2740 (|has| |#1| (-294)) (|has| |#1| (-368))) ((#0=(-413 (-570)) #0#) |has| |#1| (-368)))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
((((-959 |#1|)) . T))
((($) . T))
((((-570) |#1|) . T))
@@ -2372,7 +2373,7 @@
((((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
-(-2740 (|has| |#1| (-458)) (|has| |#1| (-1230)))
+(-2740 (|has| |#1| (-458)) (|has| |#1| (-1231)))
((($) . T))
((((-413 (-570))) |has| #0=(-413 |#2|) (-1047 (-413 (-570)))) (((-570)) |has| #0# (-1047 (-570))) ((#0#) . T))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
@@ -2382,7 +2383,7 @@
((($) -2740 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-570)) . T))
(|has| |#1| (-38 (-413 (-570))))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) |has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) |has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(|has| |#1| (-854))
(|has| |#1| (-38 (-413 (-570))))
@@ -2411,7 +2412,7 @@
((((-145)) . T))
((((-786 |#1| (-870 |#2|))) . T))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-(|has| |#1| (-1211))
+(|has| |#1| (-1212))
((((-868)) . T))
(((|#1|) . T))
(-2740 (|has| |#3| (-25)) (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-373)) (|has| |#3| (-732)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)) (|has| |#3| (-1109)))
@@ -2425,10 +2426,10 @@
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-542)) |has| |#4| (-620 (-542))))
((((-868)) . T) (((-650 |#4|)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-854))
-(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) |has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))))
+(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) |has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))))
(|has| |#1| (-1109))
(|has| |#1| (-368))
(((|#1|) . T))
@@ -2448,7 +2449,7 @@
(|has| |#1| (-148))
(|has| |#1| (-146))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
(|has| |#1| (-854))
(((|#1| |#2|) . T))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
@@ -2473,7 +2474,7 @@
((((-868)) . T))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((|#1| |#1|) |has| |#1| (-313 |#1|)))
(((|#1|) -2740 (|has| |#1| (-174)) (|has| |#1| (-368))))
@@ -2512,7 +2513,7 @@
(|has| |#1| (-562))
(((|#2|) . T))
((((-570)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) . T))
(-2740 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
(((|#1| (-59 |#1|) (-59 |#1|)) . T))
@@ -2523,7 +2524,7 @@
((($) . T))
(((|#1|) . T))
((((-868)) . T))
-(((|#2|) |has| |#2| (-6 (-4450 "*"))))
+(((|#2|) |has| |#2| (-6 (-4451 "*"))))
(((|#1|) . T))
(((|#1|) . T))
((($) . T))
@@ -2533,7 +2534,7 @@
(((|#1|) . T))
(((|#1|) . T))
(((|#3|) . T) (((-570)) . T))
-((((-1261 |#2| |#3| |#4|)) . T) (((-570)) . T) (((-1262 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
+((((-1262 |#2| |#3| |#4|)) . T) (((-570)) . T) (((-1263 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
((((-48)) -12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (((-570)) -2740 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))) (|has| |#1| (-1058))) ((|#1|) . T) (((-618 $)) . T) (($) |has| |#1| (-562)) (((-413 (-570))) -2740 (|has| |#1| (-562)) (|has| |#1| (-1047 (-413 (-570))))) (((-413 (-959 |#1|))) |has| |#1| (-562)) (((-959 |#1|)) |has| |#1| (-1058)) (((-1186)) . T))
((((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))) (((-570)) |has| |#2| (-1047 (-570))) ((|#2|) . T) (((-870 |#1|)) . T))
((($) . T) (((-117 |#1|)) . T) (((-413 (-570))) . T))
@@ -2549,16 +2550,16 @@
(((|#4|) . T))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-354)))
((((-1186) (-52)) . T))
-((((-1261 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) . T))
+((((-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T))
((((-868)) . T))
(-2740 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-373)) (|has| |#2| (-732)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)) (|has| |#2| (-1109)))
-(((#0=(-1262 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
+(((#0=(-1263 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
(((|#1| |#1|) |has| |#1| (-174)) ((#0=(-413 (-570)) #0#) |has| |#1| (-562)) (($ $) |has| |#1| (-562)))
((($) -2740 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1| $) |has| |#1| (-290 |#1| |#1|)))
-((((-1262 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T) (($) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-562)) (($) |has| |#1| (-562)))
((((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
(|has| |#1| (-368))
@@ -2571,7 +2572,7 @@
(((|#3|) |has| |#3| (-368)))
(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
((((-1186)) . T))
-((($) . T) (((-1261 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| (-1261 |#2| |#3| |#4|) (-38 (-413 (-570)))) (((-570)) . T))
+((($) . T) (((-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| (-1262 |#2| |#3| |#4|) (-38 (-413 (-570)))) (((-570)) . T))
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
(((|#2| |#3|) . T))
@@ -2586,7 +2587,7 @@
((((-868)) . T))
(((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368))))
(((|#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
-((($ $) . T) ((#0=(-1261 |#2| |#3| |#4|) #0#) . T) ((#1=(-413 (-570)) #1#) |has| #0# (-38 (-413 (-570)))))
+((($ $) . T) ((#0=(-1262 |#2| |#3| |#4|) #0#) . T) ((#1=(-413 (-570)) #1#) |has| #0# (-38 (-413 (-570)))))
((((-917 |#1|)) . T))
(-12 (|has| |#1| (-368)) (|has| |#2| (-826)))
((($) . T) (((-413 (-570))) . T))
@@ -2597,7 +2598,7 @@
(|has| |#1| (-368))
(|has| |#1| (-368))
(((|#1| |#2|) . T))
-((($) . T) ((#0=(-1261 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
+((($) . T) ((#0=(-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
(-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368)) (|has| |#1| (-354)))
(-2740 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
@@ -2645,22 +2646,22 @@
(((|#2|) . T))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
(((|#2|) . T))
-(((|#2|) -2740 (|has| |#2| (-6 (-4450 "*"))) (|has| |#2| (-174))))
+(((|#2|) -2740 (|has| |#2| (-6 (-4451 "*"))) (|has| |#2| (-174))))
(-2740 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(-2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(|has| |#2| (-916))
(|has| |#1| (-916))
(((|#2|) |has| |#2| (-174)))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
((((-868)) . T))
((((-868)) . T))
((((-542)) . T) (((-570)) . T) (((-899 (-570))) . T) (((-384)) . T) (((-227)) . T))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) . T))
(((|#1|) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-868)) . T))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T))
@@ -2682,7 +2683,7 @@
((((-868)) . T))
((((-868)) . T))
((((-189)) . T) (((-868)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-868)) . T))
((((-868)) . T))
@@ -2695,7 +2696,7 @@
((((-868)) . T))
((((-1168)) . T))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((|#1| |#1|) |has| |#1| (-313 |#1|)))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
(|has| |#1| (-856))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
@@ -2738,7 +2739,7 @@
(((#0=(-917 |#1|) #0#) . T) (($ $) . T) ((#1=(-413 (-570)) #1#) . T))
((((-413 |#2|)) . T))
(|has| |#1| (-854))
-((((-1212 |#1|)) . T) (((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-1213 |#1|)) . T) (((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) . T) ((#1=(-570) #1#) . T) (($ $) . T))
((((-917 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
(((|#2|) |has| |#2| (-1058)) (((-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))))
@@ -2757,13 +2758,13 @@
(-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))
(-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))
(-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2013 (-1186)) (|:| -2223 #0#))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2013 (-1186)) (|:| -2224 #0#))) . T))
(|has| |#1| (-354))
((((-570)) . T))
((((-868)) . T))
(((|#1|) . T))
-(((#0=(-1262 |#1| |#2| |#3| |#4|) $) |has| #0# (-290 #0# #0#)))
+(((#0=(-1263 |#1| |#2| |#3| |#4|) $) |has| #0# (-290 #0# #0#)))
(|has| |#1| (-368))
(((|#1|) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))) (($) -2740 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))) (((-570)) -2740 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
(((#0=(-1091) |#1|) . T) ((#0# $) . T) (($ $) . T))
@@ -2810,7 +2811,7 @@
(((|#1|) . T) (($) . T))
(((|#1|) . T) (((-570)) . T))
(((|#1|) . T) (((-570)) . T))
-(((|#1| (-1276 |#1|) (-1276 |#1|)) . T))
+(((|#1| (-1277 |#1|) (-1277 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#2|) . T))
((((-868)) . T))
@@ -2844,7 +2845,7 @@
(|has| |#2| (-1031))
((($) . T))
(|has| |#1| (-916))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2872,7 +2873,7 @@
((((-413 (-570))) . T))
(-2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-1168)) . T) (((-868)) . T))
-(((#0=(-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) #0#) |has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))))
+(((#0=(-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) #0#) |has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))))
((((-1168)) . T))
(|has| |#1| (-916))
(|has| |#2| (-368))
@@ -2910,13 +2911,13 @@
(((|#2|) |has| |#1| (-368)))
(((|#2|) |has| |#1| (-368)))
((((-570)) . T) (($) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
(((|#2|) . T) (((-1186)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) (((-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-570)))) (((-413 (-570))) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-570)))))
(((|#2|) . T))
-((((-1186) #0=(-1262 |#1| |#2| |#3| |#4|)) |has| #0# (-520 (-1186) #0#)) ((#0# #0#) |has| #0# (-313 #0#)))
+((((-1186) #0=(-1263 |#1| |#2| |#3| |#4|)) |has| #0# (-520 (-1186) #0#)) ((#0# #0#) |has| #0# (-313 #0#)))
((((-413 (-570))) . T) (($) . T) (((-413 |#1|)) . T) ((|#1|) . T))
((((-618 $) $) . T) (($ $) . T))
((((-171 (-227))) . T) (((-171 (-384))) . T) (((-1182 (-705))) . T) (((-899 (-384))) . T))
@@ -2956,9 +2957,9 @@
(((|#2|) . T))
(((|#2|) . T))
(-2740 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(|has| |#1| (-38 (-413 (-570))))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-413 (-570))))
@@ -3006,6 +3007,7 @@
(|has| |#1| (-797))
((((-868)) . T))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
+((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
((((-868)) -2740 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-115)) . T) ((|#1|) . T))
@@ -3013,7 +3015,7 @@
(((|#1|) . T))
((((-227)) . T) (((-384)) . T) (((-899 (-384))) . T))
((((-868)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)) (((-413 (-570))) |has| |#1| (-562)))
((((-868)) . T))
((((-868)) . T))
@@ -3037,7 +3039,7 @@
((((-868)) . T))
(|has| |#1| (-148))
(|has| |#1| (-146))
-((($) . T) ((#0=(-1261 |#2| |#3| |#4|)) |has| #0# (-174)) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
+((($) . T) ((#0=(-1262 |#2| |#3| |#4|)) |has| #0# (-174)) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(|has| |#1| (-368))
(|has| |#1| (-368))
@@ -3090,7 +3092,7 @@
(|has| |#2| (-368))
((((-587 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) . T))
(((|#1|) . T))
(((|#1|) . T) (((-570)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
@@ -3116,7 +3118,7 @@
(((#0=(-587 |#1|) #0#) . T) (($ $) . T) ((#1=(-413 (-570)) #1#) . T))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
(((|#1|) |has| |#1| (-174)))
-(((|#1| (-1276 |#1|) (-1276 |#1|)) . T))
+(((|#1| (-1277 |#1|) (-1277 |#1|)) . T))
((((-587 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
((($) . T) (((-413 (-570))) . T))
(((|#1|) . T))
@@ -3124,7 +3126,7 @@
(((|#1|) . T))
(((|#1|) . T))
((($) . T) (((-413 (-570))) . T))
-(((|#2|) |has| |#2| (-6 (-4450 "*"))))
+(((|#2|) |has| |#2| (-6 (-4451 "*"))))
(((|#1|) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((|#1|) . T) (((-570)) . T))
(((|#1|) . T))
@@ -3152,7 +3154,7 @@
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-868)) . T))
(((|#1|) . T))
-((((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) . T))
+((((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -3182,13 +3184,13 @@
((((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
((((-1186)) |has| |#2| (-907 (-1186))) (((-1091)) . T))
((((-868)) . T))
-((((-1261 |#2| |#3| |#4|)) . T))
+((((-1262 |#2| |#3| |#4|)) . T))
((((-917 |#1|)) . T))
((($) . T) (((-413 (-570))) . T))
(-12 (|has| |#1| (-368)) (|has| |#2| (-826)))
(-12 (|has| |#1| (-368)) (|has| |#2| (-826)))
((((-868)) . T))
-(|has| |#1| (-1230))
+(|has| |#1| (-1231))
(((|#2|) . T))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
((((-1186)) |has| |#1| (-907 (-1186))))
@@ -3237,7 +3239,7 @@
(((|#1|) . T))
(((|#1|) |has| |#1| (-174)))
(((|#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
-(((|#2|) -2740 (|has| |#2| (-6 (-4450 "*"))) (|has| |#2| (-174))))
+(((|#2|) -2740 (|has| |#2| (-6 (-4451 "*"))) (|has| |#2| (-174))))
(((|#2|) . T))
(|has| |#1| (-368))
(((|#2|) . T))
@@ -3283,7 +3285,7 @@
(((|#1|) . T))
((((-868)) . T))
(|has| |#2| (-916))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
((((-542)) |has| |#2| (-620 (-542))) (((-899 (-384))) |has| |#2| (-620 (-899 (-384)))) (((-899 (-570))) |has| |#2| (-620 (-899 (-570)))))
((((-868)) . T))
((((-868)) . T))
@@ -3309,7 +3311,7 @@
((((-1191)) . T))
((((-1191)) . T))
((((-650 |#1|)) . T))
-((($) . T) (((-570)) . T) (((-1262 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T))
+((($) . T) (((-570)) . T) (((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T))
((((-570)) -2740 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058))) (($) -2740 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-562)))
((((-1191)) . T))
((((-1191)) . T))
@@ -3339,7 +3341,7 @@
((((-1186)) |has| |#1| (-907 (-1186))) (((-1091)) . T))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
(|has| |#1| (-562))
-(((#0=(-1261 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))) (((-570)) . T) (($) . T))
+(((#0=(-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))) (((-570)) . T) (($) . T))
((($) . T) (((-413 (-570))) . T))
((($) . T))
((($) . T))
@@ -3362,7 +3364,7 @@
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T) ((|#2|) . T))
((((-1091)) . T) ((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
((((-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#2| (-893 (-384)))) (((-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#2| (-893 (-570)))))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
((((-570) |#1|) . T))
(((|#1| |#1|) . T))
((($) . T) ((|#2|) . T))
@@ -3446,7 +3448,7 @@
(((|#2|) . T))
((((-868)) |has| |#1| (-1109)))
((($) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#2| (-826))
@@ -3474,12 +3476,12 @@
((((-1191)) . T))
((((-868)) . T))
((((-868)) . T) (((-1191)) . T))
-((((-1225)) . T) (((-868)) . T) (((-1191)) . T))
+((((-1226)) . T) (((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
((((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) |has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) |has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))))
(-2740 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
((((-570) |#1|) . T))
((((-570) |#1|) . T))
@@ -3500,7 +3502,7 @@
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
(|has| |#1| (-38 (-413 (-570))))
((((-868)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)) (((-413 (-570))) |has| |#1| (-562)))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
(|has| |#1| (-368))
@@ -3528,12 +3530,12 @@
((($) . T) ((|#2|) . T))
((($) . T) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
(|has| |#2| (-916))
-((($) . T) ((#0=(-1261 |#2| |#3| |#4|)) |has| #0# (-174)) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
+((($) . T) ((#0=(-1262 |#2| |#3| |#4|)) |has| #0# (-174)) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
(((|#1|) |has| |#1| (-174)))
((((-570) |#1|) . T))
(((|#1|) . T))
((((-1191)) . T))
-(((#0=(-1262 |#1| |#2| |#3| |#4|)) |has| #0# (-313 #0#)))
+(((#0=(-1263 |#1| |#2| |#3| |#4|)) |has| #0# (-313 #0#)))
((($) . T))
(((|#1|) . T))
((($ $) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2| |#2|) |has| |#1| (-368)) ((|#1| |#1|) . T))
@@ -3558,7 +3560,7 @@
(((|#4|) . T))
(|has| |#1| (-562))
((($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) ((|#1|) . T))
-((((-1186)) -2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))
+((((-1186)) -2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))
(((|#1|) . T) (($) -2740 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
((((-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))))
((((-1186)) -12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186)))))
@@ -3575,9 +3577,9 @@
(((|#1|) . T))
(-2740 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
((($) . T) (((-876 |#1|)) . T) (((-413 (-570))) . T))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
(|has| |#1| (-562))
(((|#1|) . T))
(((|#1|) . T))
@@ -3637,12 +3639,12 @@
((($) . T))
((($) -2740 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((($ $) . T) (((-1186) $) . T))
-((((-1268 |#1| |#2| |#3|)) . T))
+((((-1269 |#1| |#2| |#3|)) . T))
(|has| |#2| (-916))
-((((-1268 |#1| |#2| |#3|)) |has| |#1| (-368)))
+((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
(|has| |#1| (-368))
(((|#1|) . T))
-((((-1268 |#1| |#2| |#3|)) . T) (((-1240 |#1| |#2| |#3|)) . T))
+((((-1269 |#1| |#2| |#3|)) . T) (((-1241 |#1| |#2| |#3|)) . T))
((((-1186)) . T) (((-868)) . T))
(|has| |#1| (-916))
(((|#1|) . T))
@@ -3653,10 +3655,10 @@
((((-1191)) . T))
(((|#1|) |has| |#1| (-174)))
((((-1191)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)) (((-413 (-570))) |has| |#1| (-562)))
((((-1191)) . T))
-((((-1262 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T) (($) . T))
+((((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-562)) (($) |has| |#1| (-562)))
((((-413 (-570))) . T) (($) . T))
(((|#1| (-570)) . T))
@@ -3691,7 +3693,7 @@
(-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))
((((-570)) . T))
((((-570)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
(-2740 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
@@ -3702,12 +3704,12 @@
(|has| |#1| (-368))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
-((($) . T) ((#0=(-1261 |#2| |#3| |#4|)) |has| #0# (-174)) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
+((($) . T) ((#0=(-1262 |#2| |#3| |#4|)) |has| #0# (-174)) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
(|has| |#1| (-235))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
((($) . T) (((-570)) . T))
((($) . T) (((-570)) . T))
-((($) . T) ((#0=(-1261 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
+((($) . T) ((#0=(-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
((((-868)) . T))
(((|#1| (-777) (-1091)) . T))
((((-570) |#1|) . T))
@@ -3798,11 +3800,11 @@
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
((((-1149 |#1| |#2|)) . T))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
-(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
((($) . T))
(|has| |#1| (-1031))
-(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
((((-868)) . T))
((((-542)) |has| |#2| (-620 (-542))) (((-899 (-570))) |has| |#2| (-620 (-899 (-570)))) (((-899 (-384))) |has| |#2| (-620 (-899 (-384)))) (((-384)) . #0=(|has| |#2| (-1031))) (((-227)) . #0#))
((((-298 |#3|)) . T))
@@ -3857,7 +3859,7 @@
((((-868)) . T))
((((-868)) . T))
(((|#1| (-537 |#2|)) . T))
-((((-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) . T))
+((((-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) . T))
((((-570) (-130)) . T))
(((|#1| (-570)) . T))
(((|#1| (-413 (-570))) . T))
@@ -3894,7 +3896,7 @@
(((|#1| |#2|) . T))
((((-1168) |#1|) . T))
((((-413 |#2|)) . T))
-((((-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T))
+((((-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T))
(|has| |#1| (-562))
(|has| |#1| (-562))
((($) . T) ((|#2|) . T))
@@ -3907,10 +3909,10 @@
(((|#1| (-650 |#1|)) |has| |#1| (-854)))
(-2740 (|has| |#1| (-235)) (|has| |#1| (-354)))
(-2740 (|has| |#1| (-368)) (|has| |#1| (-354)))
-((((-1272 |#1|)) . T) (((-570)) . T) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))))
+((((-1273 |#1|)) . T) (((-570)) . T) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))))
(|has| |#1| (-1109))
(((|#1|) . T))
-((((-1272 |#1|)) . T) (((-570)) . T) (($) -2740 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-1091)) . T) ((|#2|) . T) (((-413 (-570))) -2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))
+((((-1273 |#1|)) . T) (((-570)) . T) (($) -2740 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-1091)) . T) ((|#2|) . T) (((-413 (-570))) -2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))
((((-413 (-570))) . T) (($) . T))
((((-1008 |#1|)) . T) ((|#1|) . T) (((-570)) -2740 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570)))) (((-413 (-570))) -2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
@@ -3928,10 +3930,10 @@
(((|#1| |#2| |#3| |#4|) . T))
(((#0=(-1149 |#1| |#2|) #0#) |has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) #0#) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))))
(((#0=(-117 |#1|)) |has| #0# (-313 #0#)))
((($ $) . T))
(-2740 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((($ $) . T) ((#0=(-870 |#1|) $) . T) ((#0# |#2|) . T))
((($ $) . T) ((|#2| $) |has| |#1| (-235)) ((|#2| |#1|) |has| |#1| (-235)) ((|#3| |#1|) . T) ((|#3| $) . T))
-(((-484 . -1109) T) ((-267 . -520) 188453) ((-249 . -520) 188396) ((-247 . -1109) 188346) ((-577 . -111) 188331) ((-537 . -23) T) ((-134 . -1109) T) ((-139 . -1109) T) ((-118 . -313) 188288) ((-138 . -1109) T) ((-485 . -520) 188080) ((-683 . -622) 188064) ((-700 . -102) T) ((-1150 . -520) 187983) ((-396 . -132) T) ((-1289 . -985) 187952) ((-1033 . -1060) 187889) ((-31 . -93) T) ((-608 . -495) 187873) ((-1033 . -646) 187810) ((-627 . -132) T) ((-825 . -852) T) ((-529 . -57) 187760) ((-525 . -520) 187693) ((-359 . -1060) 187638) ((-59 . -520) 187571) ((-522 . -520) 187504) ((-424 . -907) 187463) ((-171 . -1058) T) ((-503 . -520) 187396) ((-502 . -520) 187329) ((-359 . -646) 187274) ((-805 . -1047) 187054) ((-705 . -38) 187019) ((-1249 . -622) 186767) ((-348 . -354) T) ((-1103 . -1102) 186751) ((-1103 . -1109) 186729) ((-861 . -622) 186626) ((-171 . -245) 186577) ((-171 . -235) 186528) ((-1103 . -1104) 186486) ((-878 . -290) 186444) ((-227 . -801) T) ((-227 . -798) T) ((-700 . -288) NIL) ((-577 . -622) 186416) ((-1159 . -1202) 186395) ((-413 . -1001) 186379) ((-48 . -1060) 186344) ((-707 . -21) T) ((-707 . -25) T) ((-48 . -646) 186309) ((-1291 . -654) 186283) ((-320 . -161) 186262) ((-320 . -144) 186241) ((-1159 . -107) 186191) ((-117 . -21) T) ((-40 . -233) 186168) ((-135 . -25) T) ((-117 . -25) T) ((-614 . -292) 186144) ((-481 . -292) 186123) ((-1249 . -330) 186100) ((-1249 . -1058) T) ((-861 . -1058) T) ((-805 . -343) 186084) ((-140 . -187) T) ((-118 . -1161) NIL) ((-91 . -619) 186016) ((-483 . -132) T) ((-1249 . -235) T) ((-1105 . -496) 185997) ((-1105 . -619) 185963) ((-1099 . -496) 185944) ((-1099 . -619) 185910) ((-599 . -1226) T) ((-1082 . -496) 185891) ((-577 . -1058) T) ((-1082 . -619) 185857) ((-668 . -723) 185841) ((-1075 . -496) 185822) ((-1075 . -619) 185788) ((-965 . -292) 185765) ((-60 . -34) T) ((-1071 . -801) T) ((-1071 . -798) T) ((-1045 . -496) 185746) ((-1028 . -496) 185727) ((-822 . -732) T) ((-737 . -47) 185692) ((-629 . -38) 185679) ((-360 . -294) T) ((-357 . -294) T) ((-349 . -294) T) ((-267 . -294) 185610) ((-249 . -294) 185541) ((-1045 . -619) 185507) ((-1033 . -102) T) ((-1028 . -619) 185473) ((-632 . -496) 185454) ((-419 . -732) T) ((-118 . -38) 185399) ((-489 . -496) 185380) ((-632 . -619) 185346) ((-419 . -479) T) ((-220 . -496) 185327) ((-489 . -619) 185293) ((-359 . -102) T) ((-220 . -619) 185259) ((-1220 . -1067) T) ((-348 . -652) 185189) ((-717 . -1067) T) ((-1184 . -47) 185166) ((-1183 . -47) 185136) ((-1177 . -47) 185113) ((-129 . -292) 185088) ((-1044 . -152) 185034) ((-917 . -294) T) ((-1135 . -47) 185006) ((-700 . -313) NIL) ((-521 . -619) 184988) ((-516 . -619) 184970) ((-514 . -619) 184952) ((-331 . -1109) 184902) ((-718 . -458) 184833) ((-48 . -102) T) ((-1260 . -290) 184818) ((-1239 . -290) 184738) ((-650 . -672) 184722) ((-650 . -657) 184706) ((-344 . -21) T) ((-344 . -25) T) ((-40 . -354) NIL) ((-176 . -21) T) ((-176 . -25) T) ((-650 . -378) 184690) ((-611 . -496) 184672) ((-608 . -290) 184649) ((-611 . -619) 184616) ((-394 . -102) T) ((-1129 . -144) T) ((-127 . -619) 184548) ((-880 . -1109) T) ((-664 . -417) 184532) ((-720 . -619) 184514) ((-251 . -619) 184481) ((-189 . -619) 184463) ((-163 . -619) 184445) ((-158 . -619) 184427) ((-1291 . -732) T) ((-1111 . -34) T) ((-877 . -801) NIL) ((-877 . -798) NIL) ((-864 . -856) T) ((-737 . -893) NIL) ((-1300 . -132) T) ((-386 . -132) T) ((-899 . -622) 184395) ((-911 . -102) T) ((-737 . -1047) 184271) ((-537 . -132) T) ((-1096 . -417) 184255) ((-1009 . -495) 184239) ((-118 . -406) 184216) ((-1177 . -1226) 184195) ((-788 . -417) 184179) ((-786 . -417) 184163) ((-950 . -34) T) ((-700 . -1161) NIL) ((-254 . -654) 183998) ((-253 . -654) 183820) ((-823 . -927) 183799) ((-460 . -417) 183783) ((-608 . -19) 183767) ((-1155 . -1219) 183736) ((-1177 . -893) NIL) ((-1177 . -891) 183688) ((-608 . -610) 183665) ((-1212 . -619) 183597) ((-1185 . -619) 183579) ((-62 . -401) T) ((-1183 . -1047) 183514) ((-1177 . -1047) 183480) ((-700 . -38) 183430) ((-40 . -652) 183360) ((-480 . -290) 183345) ((-1232 . -619) 183327) ((-737 . -382) 183311) ((-844 . -619) 183293) ((-664 . -1067) T) ((-1260 . -1011) 183259) ((-1239 . -1011) 183225) ((-1097 . -622) 183209) ((-1072 . -1202) 183184) ((-1085 . -622) 183161) ((-878 . -620) 182968) ((-878 . -619) 182950) ((-1199 . -495) 182887) ((-424 . -1031) 182865) ((-48 . -313) 182852) ((-1072 . -107) 182798) ((-485 . -495) 182735) ((-526 . -1226) T) ((-1177 . -343) 182687) ((-1150 . -495) 182658) ((-1177 . -382) 182610) ((-1096 . -1067) T) ((-443 . -102) T) ((-185 . -1109) T) ((-254 . -34) T) ((-253 . -34) T) ((-788 . -1067) T) ((-786 . -1067) T) ((-737 . -907) 182587) ((-460 . -1067) T) ((-59 . -495) 182571) ((-1043 . -1065) 182545) ((-525 . -495) 182529) ((-522 . -495) 182513) ((-503 . -495) 182497) ((-502 . -495) 182481) ((-247 . -520) 182414) ((-1043 . -111) 182381) ((-1184 . -907) 182294) ((-1183 . -907) 182200) ((-1177 . -907) 182033) ((-1135 . -907) 182017) ((-676 . -1121) T) ((-359 . -1161) T) ((-651 . -93) T) ((-326 . -1065) 181999) ((-254 . -797) 181978) ((-254 . -800) 181929) ((-31 . -496) 181910) ((-254 . -799) 181889) ((-253 . -797) 181868) ((-253 . -800) 181819) ((-253 . -799) 181798) ((-31 . -619) 181764) ((-50 . -1067) T) ((-254 . -732) 181674) ((-253 . -732) 181584) ((-1220 . -1109) T) ((-676 . -23) T) ((-587 . -1067) T) ((-524 . -1067) T) ((-384 . -1065) 181549) ((-326 . -111) 181524) ((-73 . -388) T) ((-73 . -401) T) ((-1033 . -38) 181461) ((-700 . -406) 181443) ((-99 . -102) T) ((-717 . -1109) T) ((-1304 . -1060) 181430) ((-1012 . -146) 181402) ((-1012 . -148) 181374) ((-876 . -652) 181346) ((-384 . -111) 181302) ((-323 . -1230) 181281) ((-480 . -1011) 181247) ((-359 . -38) 181212) ((-40 . -375) 181184) ((-879 . -619) 181056) ((-128 . -126) 181040) ((-122 . -126) 181024) ((-842 . -1065) 180994) ((-839 . -21) 180946) ((-833 . -1065) 180930) ((-839 . -25) 180882) ((-323 . -562) 180833) ((-523 . -622) 180814) ((-570 . -834) T) ((-242 . -1226) T) ((-1043 . -622) 180783) ((-842 . -111) 180748) ((-833 . -111) 180727) ((-1260 . -619) 180709) ((-1239 . -619) 180691) ((-1239 . -620) 180362) ((-1182 . -916) 180341) ((-1134 . -916) 180320) ((-48 . -38) 180285) ((-1298 . -1121) T) ((-608 . -619) 180197) ((-608 . -620) 180158) ((-1296 . -1121) T) ((-366 . -622) 180142) ((-326 . -622) 180126) ((-242 . -1047) 179953) ((-1182 . -654) 179878) ((-1134 . -654) 179803) ((-860 . -654) 179777) ((-724 . -619) 179759) ((-552 . -373) T) ((-1298 . -23) T) ((-1296 . -23) T) ((-497 . -1109) T) ((-384 . -622) 179709) ((-384 . -624) 179691) ((-1043 . -1058) T) ((-871 . -102) T) ((-1199 . -290) 179670) ((-171 . -373) 179621) ((-1013 . -1226) T) ((-842 . -622) 179575) ((-833 . -622) 179530) ((-44 . -23) T) ((-485 . -290) 179509) ((-592 . -1109) T) ((-1155 . -1118) 179478) ((-1113 . -1112) 179430) ((-396 . -21) T) ((-396 . -25) T) ((-153 . -1121) T) ((-1304 . -102) T) ((-1013 . -891) 179412) ((-1013 . -893) 179394) ((-1220 . -723) 179291) ((-629 . -233) 179275) ((-627 . -21) T) ((-293 . -562) T) ((-627 . -25) T) ((-1206 . -1109) T) ((-717 . -723) 179240) ((-242 . -382) 179209) ((-1013 . -1047) 179169) ((-384 . -1058) T) ((-225 . -1067) T) ((-118 . -233) 179146) ((-59 . -290) 179123) ((-153 . -23) T) ((-522 . -290) 179100) ((-331 . -520) 179033) ((-502 . -290) 179010) ((-384 . -245) T) ((-384 . -235) T) ((-842 . -1058) T) ((-833 . -1058) T) ((-718 . -956) 178979) ((-707 . -856) T) ((-480 . -619) 178961) ((-1262 . -1060) 178866) ((-586 . -652) 178838) ((-570 . -652) 178810) ((-501 . -652) 178760) ((-833 . -235) 178739) ((-135 . -856) T) ((-1262 . -646) 178631) ((-664 . -1109) T) ((-1199 . -610) 178610) ((-556 . -1202) 178589) ((-341 . -1109) T) ((-323 . -368) 178568) ((-413 . -148) 178547) ((-413 . -146) 178526) ((-971 . -1121) 178425) ((-242 . -907) 178357) ((-821 . -1121) 178267) ((-660 . -858) 178251) ((-485 . -610) 178230) ((-556 . -107) 178180) ((-1013 . -382) 178162) ((-1013 . -343) 178144) ((-97 . -1109) T) ((-971 . -23) 177955) ((-483 . -21) T) ((-483 . -25) T) ((-821 . -23) 177825) ((-1186 . -619) 177807) ((-59 . -19) 177791) ((-1186 . -620) 177713) ((-1182 . -732) T) ((-1134 . -732) T) ((-522 . -19) 177697) ((-502 . -19) 177681) ((-59 . -610) 177658) ((-1096 . -1109) T) ((-908 . -102) 177636) ((-860 . -732) T) ((-788 . -1109) T) ((-522 . -610) 177613) ((-502 . -610) 177590) ((-786 . -1109) T) ((-786 . -1074) 177557) ((-467 . -1109) T) ((-460 . -1109) T) ((-592 . -723) 177532) ((-655 . -1109) T) ((-1268 . -47) 177509) ((-1262 . -102) T) ((-1261 . -47) 177479) ((-1240 . -47) 177456) ((-1220 . -174) 177407) ((-1183 . -311) 177386) ((-1177 . -311) 177365) ((-1105 . -622) 177346) ((-1099 . -622) 177327) ((-1089 . -562) 177278) ((-1013 . -907) NIL) ((-1089 . -1230) 177229) ((-676 . -132) T) ((-633 . -1121) T) ((-1082 . -622) 177210) ((-1075 . -622) 177191) ((-1045 . -622) 177172) ((-1028 . -622) 177153) ((-705 . -652) 177103) ((-278 . -1109) T) ((-85 . -447) T) ((-85 . -401) T) ((-720 . -1065) 177073) ((-717 . -174) T) ((-50 . -1109) T) ((-601 . -47) 177050) ((-227 . -654) 177015) ((-587 . -1109) T) ((-524 . -1109) T) ((-493 . -826) T) ((-493 . -927) T) ((-364 . -1230) T) ((-358 . -1230) T) ((-350 . -1230) T) ((-323 . -1121) T) ((-320 . -1060) 176925) ((-317 . -1060) 176854) ((-108 . -1230) T) ((-632 . -622) 176835) ((-364 . -562) T) ((-219 . -927) T) ((-219 . -826) T) ((-320 . -646) 176745) ((-317 . -646) 176674) ((-358 . -562) T) ((-350 . -562) T) ((-489 . -622) 176655) ((-108 . -562) T) ((-664 . -723) 176625) ((-1177 . -1031) NIL) ((-220 . -622) 176606) ((-323 . -23) T) ((-67 . -1226) T) ((-1009 . -619) 176538) ((-700 . -233) 176520) ((-720 . -111) 176485) ((-650 . -34) T) ((-247 . -495) 176469) ((-1111 . -1107) 176453) ((-173 . -1109) T) ((-1304 . -1161) T) ((-1300 . -21) T) ((-1300 . -25) T) ((-1298 . -132) T) ((-1296 . -132) T) ((-959 . -916) 176432) ((-1289 . -102) T) ((-1272 . -619) 176398) ((-1261 . -1047) 176333) ((-521 . -622) 176317) ((-1240 . -1226) 176296) ((-1240 . -893) NIL) ((-1240 . -891) 176248) ((-487 . -916) 176227) ((-1240 . -1047) 176193) ((-1220 . -520) 176160) ((-1096 . -723) 176009) ((-1071 . -654) 175996) ((-959 . -654) 175921) ((-603 . -496) 175902) ((-591 . -496) 175883) ((-788 . -723) 175712) ((-603 . -619) 175678) ((-591 . -619) 175644) ((-542 . -619) 175626) ((-542 . -620) 175607) ((-786 . -723) 175456) ((-1086 . -102) T) ((-386 . -25) T) ((-629 . -652) 175428) ((-386 . -21) T) ((-487 . -654) 175353) ((-467 . -723) 175324) ((-460 . -723) 175173) ((-996 . -102) T) ((-1199 . -620) NIL) ((-1199 . -619) 175155) ((-1151 . -1132) 175100) ((-743 . -102) T) ((-118 . -652) 175030) ((-611 . -622) 175012) ((-1055 . -1219) 174941) ((-908 . -313) 174879) ((-537 . -25) T) ((-882 . -93) T) ((-720 . -622) 174833) ((-687 . -93) T) ((-651 . -496) 174814) ((-142 . -102) T) ((-44 . -132) T) ((-682 . -93) T) ((-670 . -619) 174796) ((-348 . -1067) T) ((-293 . -1121) T) ((-651 . -619) 174749) ((-484 . -93) T) ((-360 . -619) 174731) ((-357 . -619) 174713) ((-349 . -619) 174695) ((-267 . -620) 174443) ((-267 . -619) 174425) ((-249 . -619) 174407) ((-249 . -620) 174268) ((-134 . -93) T) ((-139 . -93) T) ((-138 . -93) T) ((-1150 . -619) 174250) ((-1129 . -646) 174237) ((-1129 . -1060) 174224) ((-825 . -732) T) ((-825 . -863) T) ((-608 . -292) 174201) ((-587 . -723) 174166) ((-485 . -620) NIL) ((-485 . -619) 174148) ((-524 . -723) 174093) ((-320 . -102) T) ((-317 . -102) T) ((-293 . -23) T) ((-153 . -132) T) ((-917 . -619) 174075) ((-917 . -620) 174057) ((-392 . -732) T) ((-878 . -1065) 174009) ((-878 . -111) 173947) ((-720 . -1058) T) ((-718 . -1252) 173931) ((-700 . -354) NIL) ((-137 . -102) T) ((-115 . -102) T) ((-140 . -102) T) ((-525 . -619) 173863) ((-384 . -801) T) ((-225 . -1109) T) ((-169 . -1226) T) ((-384 . -798) T) ((-227 . -800) T) ((-227 . -797) T) ((-59 . -620) 173824) ((-59 . -619) 173736) ((-227 . -732) T) ((-522 . -620) 173697) ((-522 . -619) 173609) ((-503 . -619) 173541) ((-502 . -620) 173502) ((-502 . -619) 173414) ((-1089 . -368) 173365) ((-40 . -417) 173342) ((-77 . -1226) T) ((-877 . -916) NIL) ((-364 . -333) 173326) ((-364 . -368) T) ((-358 . -333) 173310) ((-358 . -368) T) ((-350 . -333) 173294) ((-350 . -368) T) ((-320 . -288) 173273) ((-108 . -368) T) ((-70 . -1226) T) ((-1240 . -343) 173225) ((-877 . -654) 173170) ((-1240 . -382) 173122) ((-971 . -132) 172977) ((-821 . -132) 172847) ((-965 . -657) 172831) ((-1096 . -174) 172742) ((-965 . -378) 172726) ((-1071 . -800) T) ((-1071 . -797) T) ((-878 . -622) 172624) ((-788 . -174) 172515) ((-786 . -174) 172426) ((-822 . -47) 172388) ((-1071 . -732) T) ((-331 . -495) 172372) ((-959 . -732) T) ((-1289 . -313) 172310) ((-460 . -174) 172221) ((-247 . -290) 172198) ((-1268 . -907) 172111) ((-1261 . -907) 172017) ((-1260 . -1065) 171852) ((-487 . -732) T) ((-1240 . -907) 171685) ((-1239 . -1065) 171493) ((-1220 . -294) 171472) ((-1196 . -1226) T) ((-1193 . -373) T) ((-1192 . -373) T) ((-1155 . -152) 171456) ((-1129 . -102) T) ((-1127 . -1109) T) ((-1089 . -23) T) ((-1089 . -1121) T) ((-1084 . -102) T) ((-1066 . -619) 171423) ((-934 . -962) T) ((-743 . -313) 171361) ((-75 . -1226) T) ((-670 . -387) 171333) ((-171 . -916) 171286) ((-30 . -962) T) ((-112 . -850) T) ((-1 . -619) 171268) ((-1012 . -415) 171240) ((-129 . -657) 171222) ((-50 . -626) 171206) ((-700 . -652) 171141) ((-601 . -907) 171054) ((-444 . -102) T) ((-129 . -378) 171036) ((-142 . -313) NIL) ((-878 . -1058) T) ((-839 . -856) 171015) ((-81 . -1226) T) ((-717 . -294) T) ((-40 . -1067) T) ((-587 . -174) T) ((-524 . -174) T) ((-517 . -619) 170997) ((-171 . -654) 170907) ((-513 . -619) 170889) ((-356 . -148) 170871) ((-356 . -146) T) ((-364 . -1121) T) ((-358 . -1121) T) ((-350 . -1121) T) ((-1013 . -311) T) ((-921 . -311) T) ((-878 . -245) T) ((-108 . -1121) T) ((-878 . -235) 170850) ((-1260 . -111) 170671) ((-1239 . -111) 170460) ((-247 . -1264) 170444) ((-570 . -854) T) ((-364 . -23) T) ((-359 . -354) T) ((-320 . -313) 170431) ((-317 . -313) 170372) ((-358 . -23) T) ((-323 . -132) T) ((-350 . -23) T) ((-1013 . -1031) T) ((-31 . -622) 170353) ((-108 . -23) T) ((-660 . -1060) 170337) ((-247 . -610) 170314) ((-337 . -1109) T) ((-660 . -646) 170284) ((-1262 . -38) 170176) ((-1249 . -916) 170155) ((-112 . -1109) T) ((-1044 . -102) T) ((-1249 . -654) 170080) ((-877 . -800) NIL) ((-861 . -654) 170054) ((-877 . -797) NIL) ((-822 . -893) NIL) ((-877 . -732) T) ((-1096 . -520) 169927) ((-788 . -520) 169874) ((-786 . -520) 169826) ((-577 . -654) 169813) ((-822 . -1047) 169641) ((-460 . -520) 169584) ((-394 . -395) T) ((-1260 . -622) 169397) ((-1239 . -622) 169145) ((-60 . -1226) T) ((-627 . -856) 169124) ((-506 . -667) T) ((-1155 . -985) 169093) ((-1033 . -652) 169030) ((-1012 . -458) T) ((-705 . -854) T) ((-516 . -798) T) ((-480 . -1065) 168865) ((-506 . -113) T) ((-348 . -1109) T) ((-317 . -1161) NIL) ((-293 . -132) T) ((-400 . -1109) T) ((-876 . -1067) T) ((-700 . -375) 168832) ((-359 . -652) 168762) ((-225 . -626) 168739) ((-331 . -290) 168716) ((-480 . -111) 168537) ((-1260 . -1058) T) ((-1239 . -1058) T) ((-822 . -382) 168521) ((-171 . -732) T) ((-660 . -102) T) ((-1260 . -245) 168500) ((-1260 . -235) 168452) ((-1239 . -235) 168357) ((-1239 . -245) 168336) ((-1012 . -408) NIL) ((-676 . -645) 168284) ((-320 . -38) 168194) ((-317 . -38) 168123) ((-69 . -619) 168105) ((-323 . -499) 168071) ((-48 . -652) 168021) ((-1199 . -292) 168000) ((-1234 . -856) T) ((-1122 . -1121) 167910) ((-83 . -1226) T) ((-61 . -619) 167892) ((-485 . -292) 167871) ((-1291 . -1047) 167848) ((-1174 . -1109) T) ((-1122 . -23) 167718) ((-822 . -907) 167654) ((-1249 . -732) T) ((-1111 . -1226) T) ((-480 . -622) 167480) ((-1096 . -294) 167411) ((-973 . -1109) T) ((-900 . -102) T) ((-788 . -294) 167322) ((-331 . -19) 167306) ((-59 . -292) 167283) ((-786 . -294) 167214) ((-861 . -732) T) ((-118 . -854) NIL) ((-522 . -292) 167191) ((-331 . -610) 167168) ((-502 . -292) 167145) ((-460 . -294) 167076) ((-1044 . -313) 166927) ((-882 . -496) 166908) ((-882 . -619) 166874) ((-687 . -496) 166855) ((-577 . -732) T) ((-682 . -496) 166836) ((-687 . -619) 166786) ((-682 . -619) 166752) ((-668 . -619) 166734) ((-484 . -496) 166715) ((-484 . -619) 166681) ((-247 . -620) 166642) ((-247 . -496) 166619) ((-139 . -496) 166600) ((-138 . -496) 166581) ((-134 . -496) 166562) ((-247 . -619) 166454) ((-215 . -102) T) ((-139 . -619) 166420) ((-138 . -619) 166386) ((-134 . -619) 166352) ((-1156 . -34) T) ((-950 . -1226) T) ((-348 . -723) 166297) ((-676 . -25) T) ((-676 . -21) T) ((-1186 . -622) 166278) ((-480 . -1058) T) ((-641 . -423) 166243) ((-613 . -423) 166208) ((-1129 . -1161) T) ((-718 . -1060) 166031) ((-587 . -294) T) ((-524 . -294) T) ((-1261 . -311) 166010) ((-480 . -235) 165962) ((-480 . -245) 165941) ((-1240 . -311) 165920) ((-718 . -646) 165749) ((-1240 . -1031) NIL) ((-1089 . -132) T) ((-878 . -801) 165728) ((-145 . -102) T) ((-40 . -1109) T) ((-878 . -798) 165707) ((-650 . -1019) 165691) ((-586 . -1067) T) ((-570 . -1067) T) ((-501 . -1067) T) ((-413 . -458) T) ((-364 . -132) T) ((-320 . -406) 165675) ((-317 . -406) 165636) ((-358 . -132) T) ((-350 . -132) T) ((-1191 . -1109) T) ((-1129 . -38) 165623) ((-1103 . -619) 165590) ((-108 . -132) T) ((-961 . -1109) T) ((-928 . -1109) T) ((-777 . -1109) T) ((-678 . -1109) T) ((-707 . -148) T) ((-117 . -148) T) ((-1298 . -21) T) ((-1298 . -25) T) ((-1296 . -21) T) ((-1296 . -25) T) ((-670 . -1065) 165574) ((-537 . -856) T) ((-506 . -856) T) ((-360 . -1065) 165526) ((-357 . -1065) 165478) ((-349 . -1065) 165430) ((-254 . -1226) T) ((-253 . -1226) T) ((-267 . -1065) 165273) ((-249 . -1065) 165116) ((-670 . -111) 165095) ((-553 . -850) T) ((-360 . -111) 165033) ((-357 . -111) 164971) ((-349 . -111) 164909) ((-267 . -111) 164738) ((-249 . -111) 164567) ((-823 . -1230) 164546) ((-629 . -417) 164530) ((-44 . -21) T) ((-44 . -25) T) ((-821 . -645) 164436) ((-823 . -562) 164415) ((-254 . -1047) 164242) ((-253 . -1047) 164069) ((-127 . -120) 164053) ((-917 . -1065) 164018) ((-718 . -102) T) ((-705 . -1067) T) ((-603 . -622) 163999) ((-591 . -622) 163980) ((-542 . -624) 163883) ((-348 . -174) T) ((-88 . -619) 163865) ((-153 . -21) T) ((-153 . -25) T) ((-917 . -111) 163821) ((-40 . -723) 163766) ((-876 . -1109) T) ((-670 . -622) 163743) ((-651 . -622) 163724) ((-360 . -622) 163661) ((-357 . -622) 163598) ((-553 . -1109) T) ((-349 . -622) 163535) ((-331 . -620) 163496) ((-331 . -619) 163408) ((-267 . -622) 163161) ((-249 . -622) 162946) ((-1239 . -798) 162899) ((-1239 . -801) 162852) ((-254 . -382) 162821) ((-253 . -382) 162790) ((-660 . -38) 162760) ((-614 . -34) T) ((-488 . -1121) 162670) ((-481 . -34) T) ((-1122 . -132) 162540) ((-971 . -25) 162351) ((-917 . -622) 162301) ((-880 . -619) 162283) ((-971 . -21) 162238) ((-821 . -21) 162148) ((-821 . -25) 161999) ((-1232 . -373) T) ((-629 . -1067) T) ((-1188 . -562) 161978) ((-1182 . -47) 161955) ((-360 . -1058) T) ((-357 . -1058) T) ((-488 . -23) 161825) ((-349 . -1058) T) ((-267 . -1058) T) ((-249 . -1058) T) ((-1134 . -47) 161797) ((-118 . -1067) T) ((-1043 . -654) 161771) ((-965 . -34) T) ((-360 . -235) 161750) ((-360 . -245) T) ((-357 . -235) 161729) ((-357 . -245) T) ((-349 . -235) 161708) ((-349 . -245) T) ((-267 . -330) 161680) ((-249 . -330) 161637) ((-267 . -235) 161616) ((-1166 . -152) 161600) ((-254 . -907) 161532) ((-253 . -907) 161464) ((-1091 . -856) T) ((-420 . -1121) T) ((-1063 . -23) T) ((-917 . -1058) T) ((-326 . -654) 161446) ((-1033 . -854) T) ((-1220 . -1011) 161412) ((-1183 . -927) 161391) ((-1177 . -927) 161370) ((-1177 . -826) NIL) ((-1008 . -1060) 161266) ((-974 . -1226) T) ((-917 . -245) T) ((-823 . -368) 161245) ((-390 . -23) T) ((-128 . -1109) 161223) ((-122 . -1109) 161201) ((-917 . -235) T) ((-129 . -34) T) ((-384 . -654) 161166) ((-1008 . -646) 161114) ((-876 . -723) 161101) ((-1304 . -652) 161073) ((-1055 . -152) 161038) ((-40 . -174) T) ((-700 . -417) 161020) ((-718 . -313) 161007) ((-842 . -654) 160967) ((-833 . -654) 160941) ((-323 . -25) T) ((-323 . -21) T) ((-664 . -290) 160920) ((-586 . -1109) T) ((-570 . -1109) T) ((-501 . -1109) T) ((-247 . -292) 160897) ((-317 . -233) 160858) ((-1182 . -893) NIL) ((-55 . -1109) T) ((-1134 . -893) 160717) ((-130 . -856) T) ((-1182 . -1047) 160597) ((-1134 . -1047) 160480) ((-185 . -619) 160462) ((-860 . -1047) 160358) ((-788 . -290) 160285) ((-823 . -1121) T) ((-1043 . -732) T) ((-608 . -657) 160269) ((-1055 . -985) 160198) ((-1008 . -102) T) ((-823 . -23) T) ((-718 . -1161) 160176) ((-700 . -1067) T) ((-608 . -378) 160160) ((-356 . -458) T) ((-348 . -294) T) ((-1277 . -1109) T) ((-250 . -1109) T) ((-405 . -102) T) ((-293 . -21) T) ((-293 . -25) T) ((-366 . -732) T) ((-716 . -1109) T) ((-705 . -1109) T) ((-366 . -479) T) ((-1220 . -619) 160142) ((-1182 . -382) 160126) ((-1134 . -382) 160110) ((-1033 . -417) 160072) ((-142 . -231) 160054) ((-384 . -800) T) ((-384 . -797) T) ((-876 . -174) T) ((-384 . -732) T) ((-717 . -619) 160036) ((-718 . -38) 159865) ((-1276 . -1274) 159849) ((-356 . -408) T) ((-1276 . -1109) 159799) ((-586 . -723) 159786) ((-570 . -723) 159773) ((-501 . -723) 159738) ((-1262 . -652) 159628) ((-320 . -635) 159607) ((-842 . -732) T) ((-833 . -732) T) ((-650 . -1226) T) ((-1089 . -645) 159555) ((-1182 . -907) 159498) ((-1134 . -907) 159482) ((-668 . -1065) 159466) ((-108 . -645) 159448) ((-488 . -132) 159318) ((-1188 . -1121) T) ((-959 . -47) 159287) ((-629 . -1109) T) ((-668 . -111) 159266) ((-497 . -619) 159232) ((-331 . -292) 159209) ((-487 . -47) 159166) ((-1188 . -23) T) ((-118 . -1109) T) ((-103 . -102) 159144) ((-1288 . -1121) T) ((-554 . -856) T) ((-1063 . -132) T) ((-1033 . -1067) T) ((-825 . -1047) 159128) ((-1012 . -730) 159100) ((-1288 . -23) T) ((-705 . -723) 159065) ((-592 . -619) 159047) ((-392 . -1047) 159031) ((-359 . -1067) T) ((-390 . -132) T) ((-328 . -1047) 159015) ((-1206 . -619) 158997) ((-1129 . -834) T) ((-1114 . -1109) T) ((-227 . -893) 158979) ((-1013 . -927) T) ((-91 . -34) T) ((-1013 . -826) T) ((-921 . -927) T) ((-1089 . -21) T) ((-1089 . -25) T) ((-493 . -1230) T) ((-1008 . -313) 158944) ((-882 . -622) 158925) ((-720 . -654) 158885) ((-219 . -1230) T) ((-687 . -622) 158866) ((-227 . -1047) 158826) ((-40 . -294) T) ((-682 . -622) 158807) ((-493 . -562) T) ((-484 . -622) 158788) ((-320 . -652) 158472) ((-317 . -652) 158386) ((-364 . -25) T) ((-364 . -21) T) ((-358 . -25) T) ((-219 . -562) T) ((-358 . -21) T) ((-350 . -25) T) ((-350 . -21) T) ((-247 . -622) 158363) ((-139 . -622) 158344) ((-138 . -622) 158325) ((-134 . -622) 158306) ((-108 . -25) T) ((-108 . -21) T) ((-48 . -1067) T) ((-586 . -174) T) ((-570 . -174) T) ((-501 . -174) T) ((-664 . -619) 158288) ((-743 . -742) 158272) ((-341 . -619) 158254) ((-68 . -388) T) ((-68 . -401) T) ((-1111 . -107) 158238) ((-1071 . -893) 158220) ((-959 . -893) 158145) ((-659 . -1121) T) ((-629 . -723) 158132) ((-487 . -893) NIL) ((-1155 . -102) T) ((-1103 . -624) 158116) ((-1071 . -1047) 158098) ((-97 . -619) 158080) ((-483 . -148) T) ((-959 . -1047) 157960) ((-118 . -723) 157905) ((-659 . -23) T) ((-487 . -1047) 157781) ((-1096 . -620) NIL) ((-1096 . -619) 157763) ((-788 . -620) NIL) ((-788 . -619) 157724) ((-786 . -620) 157358) ((-786 . -619) 157272) ((-1122 . -645) 157178) ((-467 . -619) 157160) ((-460 . -619) 157142) ((-460 . -620) 157003) ((-1044 . -231) 156949) ((-878 . -916) 156928) ((-127 . -34) T) ((-823 . -132) T) ((-655 . -619) 156910) ((-584 . -102) T) ((-360 . -1295) 156894) ((-357 . -1295) 156878) ((-349 . -1295) 156862) ((-128 . -520) 156795) ((-122 . -520) 156728) ((-517 . -798) T) ((-517 . -801) T) ((-516 . -800) T) ((-103 . -313) 156666) ((-224 . -102) 156644) ((-705 . -174) T) ((-700 . -1109) T) ((-878 . -654) 156596) ((-65 . -389) T) ((-278 . -619) 156578) ((-65 . -401) T) ((-959 . -382) 156562) ((-876 . -294) T) ((-50 . -619) 156544) ((-1008 . -38) 156492) ((-1129 . -652) 156464) ((-587 . -619) 156446) ((-487 . -382) 156430) ((-587 . -620) 156412) ((-524 . -619) 156394) ((-917 . -1295) 156381) ((-877 . -1226) T) ((-707 . -458) T) ((-501 . -520) 156347) ((-493 . -368) T) ((-360 . -373) 156326) ((-357 . -373) 156305) ((-349 . -373) 156284) ((-720 . -732) T) ((-219 . -368) T) ((-117 . -458) T) ((-1299 . -1290) 156268) ((-877 . -891) 156245) ((-877 . -893) NIL) ((-971 . -856) 156144) ((-821 . -856) 156095) ((-1233 . -102) T) ((-660 . -662) 156079) ((-1212 . -34) T) ((-173 . -619) 156061) ((-1122 . -21) 155971) ((-1122 . -25) 155822) ((-877 . -1047) 155799) ((-959 . -907) 155780) ((-1249 . -47) 155757) ((-917 . -373) T) ((-59 . -657) 155741) ((-522 . -657) 155725) ((-487 . -907) 155702) ((-71 . -447) T) ((-71 . -401) T) ((-502 . -657) 155686) ((-59 . -378) 155670) ((-629 . -174) T) ((-522 . -378) 155654) ((-502 . -378) 155638) ((-833 . -714) 155622) ((-1182 . -311) 155601) ((-1188 . -132) T) ((-1151 . -1060) 155585) ((-118 . -174) T) ((-1151 . -646) 155517) ((-1155 . -313) 155455) ((-171 . -1226) T) ((-1288 . -132) T) ((-872 . -1060) 155425) ((-641 . -750) 155409) ((-613 . -750) 155393) ((-1261 . -927) 155372) ((-1240 . -927) 155351) ((-1240 . -826) NIL) ((-872 . -646) 155321) ((-700 . -723) 155271) ((-1239 . -916) 155224) ((-1033 . -1109) T) ((-877 . -382) 155201) ((-877 . -343) 155178) ((-912 . -1121) T) ((-171 . -891) 155162) ((-171 . -893) 155087) ((-493 . -1121) T) ((-359 . -1109) T) ((-219 . -1121) T) ((-76 . -447) T) ((-76 . -401) T) ((-171 . -1047) 154983) ((-323 . -856) T) ((-1276 . -520) 154916) ((-1260 . -654) 154813) ((-1239 . -654) 154683) ((-878 . -800) 154662) ((-878 . -797) 154641) ((-878 . -732) T) ((-493 . -23) T) ((-225 . -619) 154623) ((-176 . -458) T) ((-224 . -313) 154561) ((-86 . -447) T) ((-86 . -401) T) ((-219 . -23) T) ((-1300 . -1293) 154540) ((-683 . -1047) 154524) ((-586 . -294) T) ((-570 . -294) T) ((-501 . -294) T) ((-137 . -476) 154479) ((-660 . -652) 154438) ((-48 . -1109) T) ((-718 . -233) 154422) ((-877 . -907) NIL) ((-1249 . -893) NIL) ((-896 . -102) T) ((-892 . -102) T) ((-394 . -1109) T) ((-171 . -382) 154406) ((-171 . -343) 154390) ((-1249 . -1047) 154270) ((-861 . -1047) 154166) ((-1151 . -102) T) ((-668 . -798) 154145) ((-659 . -132) T) ((-668 . -801) 154124) ((-118 . -520) 154032) ((-577 . -1047) 154014) ((-298 . -1283) 153984) ((-872 . -102) T) ((-970 . -562) 153963) ((-1220 . -1065) 153846) ((-1012 . -1060) 153791) ((-488 . -645) 153697) ((-911 . -1109) T) ((-1033 . -723) 153634) ((-717 . -1065) 153599) ((-1012 . -646) 153544) ((-623 . -102) T) ((-608 . -34) T) ((-1156 . -1226) T) ((-1220 . -111) 153413) ((-480 . -654) 153310) ((-359 . -723) 153255) ((-171 . -907) 153214) ((-705 . -294) T) ((-700 . -174) T) ((-717 . -111) 153170) ((-1304 . -1067) T) ((-1249 . -382) 153154) ((-424 . -1230) 153132) ((-1127 . -619) 153114) ((-317 . -854) NIL) ((-424 . -562) T) ((-227 . -311) T) ((-1239 . -797) 153067) ((-1239 . -800) 153020) ((-1260 . -732) T) ((-1239 . -732) T) ((-48 . -723) 152985) ((-227 . -1031) T) ((-356 . -1283) 152962) ((-1262 . -417) 152928) ((-724 . -732) T) ((-337 . -619) 152910) ((-1249 . -907) 152853) ((-1220 . -622) 152735) ((-112 . -619) 152717) ((-112 . -620) 152699) ((-724 . -479) T) ((-717 . -622) 152649) ((-1299 . -1060) 152633) ((-488 . -21) 152543) ((-128 . -495) 152527) ((-122 . -495) 152511) ((-488 . -25) 152362) ((-1299 . -646) 152332) ((-629 . -294) T) ((-592 . -1065) 152307) ((-443 . -1109) T) ((-1071 . -311) T) ((-118 . -294) T) ((-1113 . -102) T) ((-1012 . -102) T) ((-592 . -111) 152275) ((-1151 . -313) 152213) ((-1220 . -1058) T) ((-1071 . -1031) T) ((-66 . -1226) T) ((-1063 . -25) T) ((-1063 . -21) T) ((-717 . -1058) T) ((-390 . -21) T) ((-390 . -25) T) ((-700 . -520) NIL) ((-1033 . -174) T) ((-717 . -245) T) ((-1071 . -551) T) ((-718 . -652) 152123) ((-512 . -102) T) ((-508 . -102) T) ((-359 . -174) T) ((-348 . -619) 152105) ((-413 . -1060) 152057) ((-400 . -619) 152039) ((-1129 . -854) T) ((-480 . -732) T) ((-899 . -1047) 152007) ((-413 . -646) 151959) ((-108 . -856) T) ((-664 . -1065) 151943) ((-493 . -132) T) ((-1262 . -1067) T) ((-219 . -132) T) ((-1166 . -102) 151921) ((-99 . -1109) T) ((-247 . -672) 151905) ((-247 . -657) 151889) ((-664 . -111) 151868) ((-592 . -622) 151852) ((-320 . -417) 151836) ((-247 . -378) 151820) ((-1169 . -237) 151767) ((-1008 . -233) 151751) ((-74 . -1226) T) ((-48 . -174) T) ((-707 . -393) T) ((-707 . -144) T) ((-1299 . -102) T) ((-1206 . -622) 151733) ((-1096 . -1065) 151576) ((-267 . -916) 151555) ((-249 . -916) 151534) ((-788 . -1065) 151357) ((-786 . -1065) 151200) ((-614 . -1226) T) ((-1174 . -619) 151182) ((-1096 . -111) 151011) ((-1055 . -102) T) ((-481 . -1226) T) ((-467 . -1065) 150982) ((-460 . -1065) 150825) ((-670 . -654) 150809) ((-877 . -311) T) ((-788 . -111) 150618) ((-786 . -111) 150447) ((-360 . -654) 150399) ((-357 . -654) 150351) ((-349 . -654) 150303) ((-267 . -654) 150228) ((-249 . -654) 150153) ((-1168 . -856) T) ((-1097 . -1047) 150137) ((-467 . -111) 150098) ((-460 . -111) 149927) ((-1085 . -1047) 149904) ((-1009 . -34) T) ((-973 . -619) 149886) ((-965 . -1226) T) ((-127 . -1019) 149870) ((-970 . -1121) T) ((-877 . -1031) NIL) ((-741 . -1121) T) ((-721 . -1121) T) ((-664 . -622) 149788) ((-1276 . -495) 149772) ((-1151 . -38) 149732) ((-970 . -23) T) ((-917 . -654) 149697) ((-871 . -1109) T) ((-849 . -102) T) ((-823 . -21) T) ((-641 . -1060) 149681) ((-613 . -1060) 149665) ((-823 . -25) T) ((-741 . -23) T) ((-721 . -23) T) ((-641 . -646) 149649) ((-110 . -667) T) ((-613 . -646) 149633) ((-587 . -1065) 149598) ((-524 . -1065) 149543) ((-229 . -57) 149501) ((-459 . -23) T) ((-413 . -102) T) ((-266 . -102) T) ((-110 . -113) T) ((-700 . -294) T) ((-872 . -38) 149471) ((-587 . -111) 149427) ((-524 . -111) 149356) ((-1096 . -622) 149092) ((-424 . -1121) T) ((-320 . -1067) 148982) ((-317 . -1067) T) ((-129 . -1226) T) ((-788 . -622) 148730) ((-786 . -622) 148496) ((-664 . -1058) T) ((-1304 . -1109) T) ((-460 . -622) 148281) ((-171 . -311) 148212) ((-424 . -23) T) ((-40 . -619) 148194) ((-40 . -620) 148178) ((-108 . -1001) 148160) ((-117 . -875) 148144) ((-655 . -622) 148128) ((-48 . -520) 148094) ((-1212 . -1019) 148078) ((-1191 . -619) 148045) ((-1199 . -34) T) ((-961 . -619) 148011) ((-928 . -619) 147993) ((-1122 . -856) 147944) ((-777 . -619) 147926) ((-678 . -619) 147908) ((-1166 . -313) 147846) ((-485 . -34) T) ((-1101 . -1226) T) ((-483 . -458) T) ((-1150 . -34) T) ((-1096 . -1058) T) ((-50 . -622) 147815) ((-788 . -1058) T) ((-786 . -1058) T) ((-653 . -237) 147799) ((-638 . -237) 147745) ((-587 . -622) 147695) ((-524 . -622) 147625) ((-1249 . -311) 147604) ((-1096 . -330) 147565) ((-460 . -1058) T) ((-1188 . -21) T) ((-1096 . -235) 147544) ((-788 . -330) 147521) ((-788 . -235) T) ((-786 . -330) 147493) ((-737 . -1230) 147472) ((-331 . -657) 147456) ((-1188 . -25) T) ((-59 . -34) T) ((-525 . -34) T) ((-522 . -34) T) ((-460 . -330) 147435) ((-331 . -378) 147419) ((-503 . -34) T) ((-502 . -34) T) ((-1012 . -1161) NIL) ((-737 . -562) 147350) ((-641 . -102) T) ((-613 . -102) T) ((-360 . -732) T) ((-357 . -732) T) ((-349 . -732) T) ((-267 . -732) T) ((-249 . -732) T) ((-1055 . -313) 147258) ((-908 . -1109) 147236) ((-50 . -1058) T) ((-1288 . -21) T) ((-1288 . -25) T) ((-1184 . -562) 147215) ((-1183 . -1230) 147194) ((-1183 . -562) 147145) ((-587 . -1058) T) ((-524 . -1058) T) ((-1177 . -1230) 147124) ((-366 . -1047) 147108) ((-326 . -1047) 147092) ((-1033 . -294) T) ((-384 . -893) 147074) ((-1177 . -562) 147025) ((-1012 . -38) 146970) ((-1008 . -652) 146893) ((-805 . -1121) T) ((-917 . -732) T) ((-587 . -245) T) ((-587 . -235) T) ((-524 . -235) T) ((-524 . -245) T) ((-1135 . -562) 146872) ((-359 . -294) T) ((-653 . -701) 146856) ((-384 . -1047) 146816) ((-298 . -1060) 146737) ((-1129 . -1067) T) ((-103 . -126) 146721) ((-298 . -646) 146663) ((-805 . -23) T) ((-1298 . -1293) 146639) ((-1276 . -290) 146616) ((-413 . -313) 146581) ((-1296 . -1293) 146560) ((-1262 . -1109) T) ((-876 . -619) 146542) ((-842 . -1047) 146511) ((-205 . -793) T) ((-204 . -793) T) ((-203 . -793) T) ((-202 . -793) T) ((-201 . -793) T) ((-200 . -793) T) ((-199 . -793) T) ((-198 . -793) T) ((-197 . -793) T) ((-196 . -793) T) ((-553 . -619) 146493) ((-501 . -1011) T) ((-277 . -845) T) ((-276 . -845) T) ((-275 . -845) T) ((-274 . -845) T) ((-48 . -294) T) ((-273 . -845) T) ((-272 . -845) T) ((-271 . -845) T) ((-195 . -793) T) ((-618 . -856) T) ((-660 . -417) 146477) ((-225 . -622) 146439) ((-110 . -856) T) ((-659 . -21) T) ((-659 . -25) T) ((-1299 . -38) 146409) ((-118 . -290) 146360) ((-1276 . -19) 146344) ((-1276 . -610) 146321) ((-1289 . -1109) T) ((-356 . -1060) 146266) ((-1086 . -1109) T) ((-996 . -1109) T) ((-970 . -132) T) ((-743 . -1109) T) ((-356 . -646) 146211) ((-741 . -132) T) ((-721 . -132) T) ((-517 . -799) T) ((-517 . -800) T) ((-459 . -132) T) ((-413 . -1161) 146189) ((-225 . -1058) T) ((-298 . -102) 145971) ((-142 . -1109) T) ((-705 . -1011) T) ((-91 . -1226) T) ((-128 . -619) 145903) ((-122 . -619) 145835) ((-1304 . -174) T) ((-1183 . -368) 145814) ((-1177 . -368) 145793) ((-320 . -1109) T) ((-424 . -132) T) ((-317 . -1109) T) ((-413 . -38) 145745) ((-1142 . -102) T) ((-1262 . -723) 145637) ((-660 . -1067) T) ((-1144 . -1271) T) ((-323 . -146) 145616) ((-323 . -148) 145595) ((-137 . -1109) T) ((-140 . -1109) T) ((-115 . -1109) T) ((-864 . -102) T) ((-586 . -619) 145577) ((-570 . -620) 145476) ((-570 . -619) 145458) ((-501 . -619) 145440) ((-501 . -620) 145385) ((-491 . -23) T) ((-488 . -856) 145336) ((-493 . -645) 145318) ((-972 . -619) 145300) ((-219 . -645) 145282) ((-227 . -410) T) ((-668 . -654) 145266) ((-55 . -619) 145248) ((-1182 . -927) 145227) ((-737 . -1121) T) ((-356 . -102) T) ((-1225 . -1092) T) ((-1129 . -850) T) ((-824 . -856) T) ((-737 . -23) T) ((-348 . -1065) 145172) ((-1168 . -1167) T) ((-1156 . -107) 145156) ((-1184 . -1121) T) ((-1183 . -1121) T) ((-521 . -1047) 145140) ((-1177 . -1121) T) ((-1135 . -1121) T) ((-348 . -111) 145069) ((-1013 . -1230) T) ((-127 . -1226) T) ((-921 . -1230) T) ((-700 . -290) NIL) ((-1277 . -619) 145051) ((-1184 . -23) T) ((-1183 . -23) T) ((-1177 . -23) T) ((-1013 . -562) T) ((-1151 . -233) 145035) ((-921 . -562) T) ((-1135 . -23) T) ((-250 . -619) 145017) ((-1084 . -1109) T) ((-805 . -132) T) ((-716 . -619) 144999) ((-320 . -723) 144909) ((-317 . -723) 144838) ((-705 . -619) 144820) ((-705 . -620) 144765) ((-413 . -406) 144749) ((-444 . -1109) T) ((-493 . -25) T) ((-493 . -21) T) ((-1129 . -1109) T) ((-219 . -25) T) ((-219 . -21) T) ((-718 . -417) 144733) ((-720 . -1047) 144702) ((-1276 . -619) 144614) ((-1276 . -620) 144575) ((-1262 . -174) T) ((-247 . -34) T) ((-348 . -622) 144505) ((-400 . -622) 144487) ((-933 . -983) T) ((-1212 . -1226) T) ((-668 . -797) 144466) ((-668 . -800) 144445) ((-404 . -401) T) ((-529 . -102) 144423) ((-1044 . -1109) T) ((-224 . -1004) 144407) ((-510 . -102) T) ((-629 . -619) 144389) ((-45 . -856) NIL) ((-629 . -620) 144366) ((-1044 . -616) 144341) ((-908 . -520) 144274) ((-348 . -1058) T) ((-118 . -620) NIL) ((-118 . -619) 144256) ((-878 . -1226) T) ((-676 . -423) 144240) ((-676 . -1132) 144185) ((-506 . -152) 144167) ((-348 . -235) T) ((-348 . -245) T) ((-40 . -1065) 144112) ((-878 . -891) 144096) ((-878 . -893) 144021) ((-718 . -1067) T) ((-700 . -1011) NIL) ((-1260 . -47) 143991) ((-1239 . -47) 143968) ((-1150 . -1019) 143939) ((-3 . |UnionCategory|) T) ((-1129 . -723) 143926) ((-1114 . -619) 143908) ((-1089 . -148) 143887) ((-1089 . -146) 143838) ((-973 . -622) 143822) ((-227 . -927) T) ((-40 . -111) 143751) ((-878 . -1047) 143615) ((-1013 . -368) T) ((-1012 . -233) 143592) ((-707 . -1060) 143579) ((-921 . -368) T) ((-707 . -646) 143566) ((-323 . -1214) 143532) ((-384 . -311) T) ((-323 . -1211) 143498) ((-320 . -174) 143477) ((-317 . -174) T) ((-587 . -1295) 143464) ((-524 . -1295) 143441) ((-364 . -148) 143420) ((-117 . -1060) 143407) ((-364 . -146) 143358) ((-358 . -148) 143337) ((-358 . -146) 143288) ((-350 . -148) 143267) ((-614 . -1202) 143243) ((-117 . -646) 143230) ((-350 . -146) 143181) ((-323 . -35) 143147) ((-481 . -1202) 143126) ((0 . |EnumerationCategory|) T) ((-323 . -95) 143092) ((-384 . -1031) T) ((-108 . -148) T) ((-108 . -146) NIL) ((-45 . -237) 143042) ((-660 . -1109) T) ((-614 . -107) 142989) ((-491 . -132) T) ((-481 . -107) 142939) ((-242 . -1121) 142849) ((-878 . -382) 142833) ((-878 . -343) 142817) ((-242 . -23) 142687) ((-40 . -622) 142617) ((-1071 . -927) T) ((-1071 . -826) T) ((-587 . -373) T) ((-524 . -373) T) ((-1289 . -520) 142550) ((-1268 . -562) 142529) ((-356 . -1161) T) ((-331 . -34) T) ((-44 . -423) 142513) ((-1191 . -622) 142449) ((-879 . -1226) T) ((-396 . -750) 142433) ((-1261 . -1230) 142412) ((-1261 . -562) 142363) ((-1151 . -652) 142322) ((-737 . -132) T) ((-678 . -622) 142306) ((-1240 . -1230) 142285) ((-1240 . -562) 142236) ((-1239 . -1226) 142215) ((-1239 . -893) 142088) ((-1239 . -891) 142058) ((-1184 . -132) T) ((-315 . -1092) T) ((-1183 . -132) T) ((-743 . -520) 141991) ((-1177 . -132) T) ((-1135 . -132) T) ((-900 . -1109) T) ((-145 . -850) T) ((-1033 . -1011) T) ((-697 . -619) 141973) ((-1013 . -23) T) ((-529 . -313) 141911) ((-1013 . -1121) T) ((-142 . -520) NIL) ((-872 . -652) 141856) ((-1012 . -354) NIL) ((-980 . -23) T) ((-921 . -1121) T) ((-356 . -38) 141821) ((-921 . -23) T) ((-878 . -907) 141780) ((-82 . -619) 141762) ((-40 . -1058) T) ((-876 . -1065) 141749) ((-876 . -111) 141734) ((-707 . -102) T) ((-700 . -619) 141716) ((-608 . -1226) T) ((-602 . -562) 141695) ((-433 . -1121) T) ((-344 . -1060) 141679) ((-215 . -1109) T) ((-176 . -1060) 141611) ((-480 . -47) 141581) ((-135 . -102) T) ((-40 . -235) 141553) ((-40 . -245) T) ((-117 . -102) T) ((-601 . -562) 141532) ((-344 . -646) 141516) ((-700 . -620) 141424) ((-320 . -520) 141390) ((-176 . -646) 141322) ((-317 . -520) 141214) ((-1260 . -1047) 141198) ((-1239 . -1047) 140984) ((-1008 . -417) 140968) ((-433 . -23) T) ((-1129 . -174) T) ((-1262 . -294) T) ((-660 . -723) 140938) ((-145 . -1109) T) ((-48 . -1011) T) ((-413 . -233) 140922) ((-299 . -237) 140872) ((-877 . -927) T) ((-877 . -826) NIL) ((-876 . -622) 140844) ((-870 . -856) T) ((-1239 . -343) 140814) ((-1239 . -382) 140784) ((-224 . -1130) 140768) ((-1276 . -292) 140745) ((-1220 . -654) 140670) ((-1012 . -652) 140600) ((-970 . -21) T) ((-970 . -25) T) ((-741 . -21) T) ((-741 . -25) T) ((-721 . -21) T) ((-721 . -25) T) ((-717 . -654) 140565) ((-459 . -21) T) ((-459 . -25) T) ((-344 . -102) T) ((-176 . -102) T) ((-1008 . -1067) T) ((-876 . -1058) T) ((-780 . -102) T) ((-1261 . -368) 140544) ((-1260 . -907) 140450) ((-1240 . -368) 140429) ((-1239 . -907) 140280) ((-1033 . -619) 140262) ((-413 . -834) 140215) ((-1184 . -499) 140181) ((-171 . -927) 140112) ((-1183 . -499) 140078) ((-1177 . -499) 140044) ((-718 . -1109) T) ((-1135 . -499) 140010) ((-586 . -1065) 139997) ((-570 . -1065) 139984) ((-501 . -1065) 139949) ((-320 . -294) 139928) ((-317 . -294) T) ((-359 . -619) 139910) ((-424 . -25) T) ((-424 . -21) T) ((-99 . -290) 139889) ((-586 . -111) 139874) ((-570 . -111) 139859) ((-501 . -111) 139815) ((-1186 . -893) 139782) ((-908 . -495) 139766) ((-48 . -619) 139748) ((-48 . -620) 139693) ((-242 . -132) 139563) ((-1299 . -652) 139522) ((-1249 . -927) 139501) ((-822 . -1230) 139480) ((-394 . -496) 139461) ((-1044 . -520) 139305) ((-394 . -619) 139271) ((-822 . -562) 139202) ((-592 . -654) 139177) ((-267 . -47) 139149) ((-249 . -47) 139106) ((-537 . -515) 139083) ((-586 . -622) 139055) ((-570 . -622) 139027) ((-501 . -622) 138960) ((-1083 . -1226) T) ((-1009 . -1226) T) ((-1268 . -23) T) ((-705 . -1065) 138925) ((-1268 . -1121) T) ((-1261 . -1121) T) ((-1261 . -23) T) ((-1240 . -1121) T) ((-1240 . -23) T) ((-1012 . -375) 138897) ((-112 . -373) T) ((-480 . -907) 138803) ((-1220 . -732) T) ((-911 . -619) 138785) ((-55 . -622) 138767) ((-91 . -107) 138751) ((-1129 . -294) T) ((-912 . -856) 138702) ((-707 . -1161) T) ((-705 . -111) 138658) ((-849 . -652) 138575) ((-602 . -1121) T) ((-601 . -1121) T) ((-718 . -723) 138404) ((-717 . -732) T) ((-1013 . -132) T) ((-980 . -132) T) ((-493 . -856) T) ((-921 . -132) T) ((-805 . -25) T) ((-805 . -21) T) ((-219 . -856) T) ((-413 . -652) 138341) ((-586 . -1058) T) ((-570 . -1058) T) ((-501 . -1058) T) ((-602 . -23) T) ((-348 . -1295) 138318) ((-323 . -458) 138297) ((-344 . -313) 138284) ((-601 . -23) T) ((-433 . -132) T) ((-664 . -654) 138258) ((-247 . -1019) 138242) ((-878 . -311) T) ((-1300 . -1290) 138226) ((-777 . -798) T) ((-777 . -801) T) ((-707 . -38) 138213) ((-570 . -235) T) ((-501 . -245) T) ((-501 . -235) T) ((-1159 . -237) 138163) ((-1096 . -916) 138142) ((-117 . -38) 138129) ((-211 . -806) T) ((-210 . -806) T) ((-209 . -806) T) ((-208 . -806) T) ((-878 . -1031) 138107) ((-1289 . -495) 138091) ((-788 . -916) 138070) ((-786 . -916) 138049) ((-1199 . -1226) T) ((-460 . -916) 138028) ((-743 . -495) 138012) ((-1096 . -654) 137937) ((-705 . -622) 137872) ((-788 . -654) 137797) ((-629 . -1065) 137784) ((-485 . -1226) T) ((-348 . -373) T) ((-142 . -495) 137766) ((-786 . -654) 137691) ((-1150 . -1226) T) ((-555 . -856) T) ((-467 . -654) 137662) ((-267 . -893) 137521) ((-249 . -893) NIL) ((-118 . -1065) 137466) ((-460 . -654) 137391) ((-670 . -1047) 137368) ((-629 . -111) 137353) ((-396 . -1060) 137337) ((-360 . -1047) 137321) ((-357 . -1047) 137305) ((-349 . -1047) 137289) ((-267 . -1047) 137133) ((-249 . -1047) 137009) ((-118 . -111) 136938) ((-59 . -1226) T) ((-396 . -646) 136922) ((-627 . -1060) 136906) ((-525 . -1226) T) ((-522 . -1226) T) ((-503 . -1226) T) ((-502 . -1226) T) ((-443 . -619) 136888) ((-440 . -619) 136870) ((-627 . -646) 136854) ((-3 . -102) T) ((-1036 . -1219) 136823) ((-839 . -102) T) ((-695 . -57) 136781) ((-705 . -1058) T) ((-641 . -652) 136750) ((-613 . -652) 136719) ((-50 . -654) 136693) ((-293 . -458) T) ((-482 . -1219) 136662) ((0 . -102) T) ((-587 . -654) 136627) ((-524 . -654) 136572) ((-49 . -102) T) ((-917 . -1047) 136559) ((-705 . -245) T) ((-1089 . -415) 136538) ((-737 . -645) 136486) ((-1008 . -1109) T) ((-718 . -174) 136377) ((-629 . -622) 136272) ((-493 . -1001) 136254) ((-267 . -382) 136238) ((-249 . -382) 136222) ((-405 . -1109) T) ((-1035 . -102) 136200) ((-344 . -38) 136184) ((-219 . -1001) 136166) ((-118 . -622) 136096) ((-176 . -38) 136028) ((-1260 . -311) 136007) ((-1239 . -311) 135986) ((-664 . -732) T) ((-99 . -619) 135968) ((-483 . -1060) 135933) ((-1177 . -645) 135885) ((-483 . -646) 135850) ((-491 . -25) T) ((-491 . -21) T) ((-1239 . -1031) 135802) ((-1066 . -1226) T) ((-629 . -1058) T) ((-384 . -410) T) ((-396 . -102) T) ((-1114 . -624) 135717) ((-267 . -907) 135663) ((-249 . -907) 135640) ((-118 . -1058) T) ((-822 . -1121) T) ((-1096 . -732) T) ((-629 . -235) 135619) ((-627 . -102) T) ((-788 . -732) T) ((-786 . -732) T) ((-419 . -1121) T) ((-118 . -245) T) ((-40 . -373) NIL) ((-118 . -235) NIL) ((-1231 . -856) T) ((-460 . -732) T) ((-822 . -23) T) ((-737 . -25) T) ((-737 . -21) T) ((-1086 . -290) 135598) ((-78 . -402) T) ((-78 . -401) T) ((-539 . -773) 135580) ((-700 . -1065) 135530) ((-1268 . -132) T) ((-1261 . -132) T) ((-1240 . -132) T) ((-1184 . -25) T) ((-1151 . -417) 135514) ((-641 . -372) 135446) ((-613 . -372) 135378) ((-1166 . -1158) 135362) ((-103 . -1109) 135340) ((-1184 . -21) T) ((-1183 . -21) T) ((-871 . -619) 135322) ((-1008 . -723) 135270) ((-225 . -654) 135237) ((-700 . -111) 135171) ((-50 . -732) T) ((-1183 . -25) T) ((-356 . -354) T) ((-1177 . -21) T) ((-1089 . -458) 135122) ((-1177 . -25) T) ((-718 . -520) 135069) ((-587 . -732) T) ((-524 . -732) T) ((-1135 . -21) T) ((-1135 . -25) T) ((-602 . -132) T) ((-298 . -652) 134804) ((-601 . -132) T) ((-364 . -458) T) ((-358 . -458) T) ((-350 . -458) T) ((-480 . -311) 134783) ((-1234 . -102) T) ((-317 . -290) 134718) ((-108 . -458) T) ((-79 . -447) T) ((-79 . -401) T) ((-483 . -102) T) ((-697 . -622) 134702) ((-1304 . -619) 134684) ((-1304 . -620) 134666) ((-1089 . -408) 134645) ((-1044 . -495) 134576) ((-570 . -801) T) ((-570 . -798) T) ((-1072 . -237) 134522) ((-364 . -408) 134473) ((-358 . -408) 134424) ((-350 . -408) 134375) ((-1291 . -1121) T) ((-1300 . -1060) 134359) ((-386 . -1060) 134343) ((-1300 . -646) 134313) ((-386 . -646) 134283) ((-700 . -622) 134218) ((-1291 . -23) T) ((-1278 . -102) T) ((-177 . -619) 134200) ((-1151 . -1067) T) ((-553 . -373) T) ((-676 . -750) 134184) ((-1188 . -146) 134163) ((-1188 . -148) 134142) ((-1155 . -1109) T) ((-1155 . -1080) 134111) ((-69 . -1226) T) ((-1033 . -1065) 134048) ((-356 . -652) 133978) ((-872 . -1067) T) ((-242 . -645) 133884) ((-700 . -1058) T) ((-359 . -1065) 133829) ((-61 . -1226) T) ((-1033 . -111) 133745) ((-908 . -619) 133656) ((-700 . -245) T) ((-700 . -235) NIL) ((-849 . -854) 133635) ((-705 . -801) T) ((-705 . -798) T) ((-1012 . -417) 133612) ((-359 . -111) 133541) ((-384 . -927) T) ((-413 . -854) 133520) ((-718 . -294) 133431) ((-225 . -732) T) ((-1268 . -499) 133397) ((-1261 . -499) 133363) ((-1240 . -499) 133329) ((-584 . -1109) T) ((-320 . -1011) 133308) ((-224 . -1109) 133286) ((-1233 . -850) T) ((-323 . -982) 133248) ((-105 . -102) T) ((-48 . -1065) 133213) ((-1300 . -102) T) ((-386 . -102) T) ((-48 . -111) 133169) ((-1013 . -645) 133151) ((-1262 . -619) 133133) ((-537 . -102) T) ((-506 . -102) T) ((-1142 . -1143) 133117) ((-153 . -1283) 133101) ((-247 . -1226) T) ((-1225 . -102) T) ((-1033 . -622) 133038) ((-1182 . -1230) 133017) ((-359 . -622) 132947) ((-1134 . -1230) 132926) ((-242 . -21) 132836) ((-242 . -25) 132687) ((-128 . -120) 132671) ((-122 . -120) 132655) ((-44 . -750) 132639) ((-1182 . -562) 132550) ((-1134 . -562) 132481) ((-1233 . -1109) T) ((-1044 . -290) 132456) ((-1176 . -1092) T) ((-1003 . -1092) T) ((-822 . -132) T) ((-118 . -801) NIL) ((-118 . -798) NIL) ((-360 . -311) T) ((-357 . -311) T) ((-349 . -311) T) ((-254 . -1121) 132366) ((-253 . -1121) 132276) ((-1033 . -1058) T) ((-1012 . -1067) T) ((-48 . -622) 132209) ((-348 . -654) 132154) ((-627 . -38) 132138) ((-1289 . -619) 132100) ((-1289 . -620) 132061) ((-1086 . -619) 132043) ((-1033 . -245) T) ((-359 . -1058) T) ((-821 . -1283) 132013) ((-254 . -23) T) ((-253 . -23) T) ((-996 . -619) 131995) ((-743 . -620) 131956) ((-743 . -619) 131938) ((-805 . -856) 131917) ((-1169 . -152) 131864) ((-1008 . -520) 131776) ((-359 . -235) T) ((-359 . -245) T) ((-394 . -622) 131757) ((-1013 . -25) T) ((-142 . -619) 131739) ((-142 . -620) 131698) ((-917 . -311) T) ((-1013 . -21) T) ((-980 . -25) T) ((-921 . -21) T) ((-921 . -25) T) ((-433 . -21) T) ((-433 . -25) T) ((-849 . -417) 131682) ((-48 . -1058) T) ((-1298 . -1290) 131666) ((-1296 . -1290) 131650) ((-1044 . -610) 131625) ((-320 . -620) 131486) ((-320 . -619) 131468) ((-317 . -620) NIL) ((-317 . -619) 131450) ((-48 . -245) T) ((-48 . -235) T) ((-660 . -290) 131411) ((-556 . -237) 131361) ((-140 . -619) 131328) ((-137 . -619) 131310) ((-115 . -619) 131292) ((-483 . -38) 131257) ((-1300 . -1297) 131236) ((-1291 . -132) T) ((-1299 . -1067) T) ((-1091 . -102) T) ((-88 . -1226) T) ((-506 . -313) NIL) ((-1009 . -107) 131220) ((-896 . -1109) T) ((-892 . -1109) T) ((-1276 . -657) 131204) ((-1276 . -378) 131188) ((-331 . -1226) T) ((-599 . -856) T) ((-1151 . -1109) T) ((-1151 . -1062) 131128) ((-103 . -520) 131061) ((-934 . -619) 131043) ((-348 . -732) T) ((-30 . -619) 131025) ((-872 . -1109) T) ((-849 . -1067) 131004) ((-40 . -654) 130949) ((-227 . -1230) T) ((-413 . -1067) T) ((-1168 . -152) 130931) ((-1008 . -294) 130882) ((-623 . -1109) T) ((-227 . -562) T) ((-323 . -1257) 130866) ((-323 . -1254) 130836) ((-707 . -652) 130808) ((-1199 . -1202) 130787) ((-1084 . -619) 130769) ((-1199 . -107) 130719) ((-653 . -152) 130703) ((-638 . -152) 130649) ((-117 . -652) 130621) ((-485 . -1202) 130600) ((-493 . -148) T) ((-493 . -146) NIL) ((-1129 . -620) 130515) ((-444 . -619) 130497) ((-219 . -148) T) ((-219 . -146) NIL) ((-1129 . -619) 130479) ((-130 . -102) T) ((-52 . -102) T) ((-1240 . -645) 130431) ((-485 . -107) 130381) ((-1002 . -23) T) ((-1300 . -38) 130351) ((-1182 . -1121) T) ((-1134 . -1121) T) ((-1071 . -1230) T) ((-315 . -102) T) ((-860 . -1121) T) ((-959 . -1230) 130330) ((-487 . -1230) 130309) ((-1071 . -562) T) ((-959 . -562) 130240) ((-1182 . -23) T) ((-1160 . -1092) T) ((-1134 . -23) T) ((-860 . -23) T) ((-487 . -562) 130171) ((-1151 . -723) 130103) ((-676 . -1060) 130087) ((-1155 . -520) 130020) ((-676 . -646) 130004) ((-1044 . -620) NIL) ((-1044 . -619) 129986) ((-96 . -1092) T) ((-872 . -723) 129956) ((-1220 . -47) 129925) ((-254 . -132) T) ((-253 . -132) T) ((-1113 . -1109) T) ((-1012 . -1109) T) ((-62 . -619) 129907) ((-1177 . -856) NIL) ((-1033 . -798) T) ((-1033 . -801) T) ((-1304 . -1065) 129894) ((-1304 . -111) 129879) ((-1268 . -25) T) ((-1268 . -21) T) ((-876 . -654) 129866) ((-1261 . -21) T) ((-1261 . -25) T) ((-1240 . -21) T) ((-1240 . -25) T) ((-1036 . -152) 129850) ((-878 . -826) 129829) ((-878 . -927) T) ((-718 . -290) 129756) ((-602 . -21) T) ((-344 . -652) 129715) ((-602 . -25) T) ((-601 . -21) T) ((-176 . -652) 129632) ((-40 . -732) T) ((-224 . -520) 129565) ((-601 . -25) T) ((-482 . -152) 129549) ((-469 . -152) 129533) ((-928 . -800) T) ((-928 . -732) T) ((-777 . -799) T) ((-777 . -800) T) ((-512 . -1109) T) ((-508 . -1109) T) ((-777 . -732) T) ((-227 . -368) T) ((-1298 . -1060) 129517) ((-1296 . -1060) 129501) ((-1298 . -646) 129471) ((-1166 . -1109) 129449) ((-877 . -1230) T) ((-1296 . -646) 129419) ((-660 . -619) 129401) ((-877 . -562) T) ((-700 . -373) NIL) ((-44 . -1060) 129385) ((-1304 . -622) 129367) ((-1299 . -1109) T) ((-676 . -102) T) ((-364 . -1283) 129351) ((-358 . -1283) 129335) ((-44 . -646) 129319) ((-350 . -1283) 129303) ((-554 . -102) T) ((-526 . -856) 129282) ((-1055 . -1109) T) ((-823 . -458) 129261) ((-153 . -1060) 129245) ((-1055 . -1080) 129174) ((-1036 . -985) 129143) ((-825 . -1121) T) ((-1012 . -723) 129088) ((-153 . -646) 129072) ((-392 . -1121) T) ((-482 . -985) 129041) ((-469 . -985) 129010) ((-110 . -152) 128992) ((-73 . -619) 128974) ((-900 . -619) 128956) ((-1089 . -730) 128935) ((-1304 . -1058) T) ((-822 . -645) 128883) ((-298 . -1067) 128825) ((-171 . -1230) 128730) ((-227 . -1121) T) ((-328 . -23) T) ((-1177 . -1001) 128682) ((-849 . -1109) T) ((-1262 . -1065) 128587) ((-1135 . -746) 128566) ((-1260 . -927) 128545) ((-1239 . -927) 128524) ((-876 . -732) T) ((-171 . -562) 128435) ((-586 . -654) 128422) ((-570 . -654) 128409) ((-413 . -1109) T) ((-266 . -1109) T) ((-215 . -619) 128391) ((-501 . -654) 128356) ((-227 . -23) T) ((-1239 . -826) 128309) ((-1298 . -102) T) ((-359 . -1295) 128286) ((-1296 . -102) T) ((-1262 . -111) 128178) ((-821 . -1060) 128075) ((-821 . -646) 128017) ((-145 . -619) 127999) ((-1002 . -132) T) ((-44 . -102) T) ((-242 . -856) 127950) ((-1249 . -1230) 127929) ((-103 . -495) 127913) ((-1299 . -723) 127883) ((-1096 . -47) 127844) ((-1071 . -1121) T) ((-959 . -1121) T) ((-128 . -34) T) ((-122 . -34) T) ((-788 . -47) 127821) ((-786 . -47) 127793) ((-1249 . -562) 127704) ((-359 . -373) T) ((-487 . -1121) T) ((-1182 . -132) T) ((-1134 . -132) T) ((-460 . -47) 127683) ((-877 . -368) T) ((-860 . -132) T) ((-153 . -102) T) ((-1071 . -23) T) ((-959 . -23) T) ((-577 . -562) T) ((-822 . -25) T) ((-822 . -21) T) ((-1151 . -520) 127616) ((-598 . -1092) T) ((-592 . -1047) 127600) ((-1262 . -622) 127474) ((-487 . -23) T) ((-356 . -1067) T) ((-1220 . -907) 127455) ((-676 . -313) 127393) ((-1122 . -1283) 127363) ((-705 . -654) 127328) ((-1012 . -174) T) ((-970 . -146) 127307) ((-641 . -1109) T) ((-613 . -1109) T) ((-970 . -148) 127286) ((-1013 . -856) T) ((-741 . -148) 127265) ((-741 . -146) 127244) ((-980 . -856) T) ((-839 . -652) 127161) ((-480 . -927) 127140) ((-323 . -1060) 126975) ((-320 . -1065) 126885) ((-317 . -1065) 126814) ((-1008 . -290) 126772) ((-413 . -723) 126724) ((-323 . -646) 126565) ((-707 . -854) T) ((-1262 . -1058) T) ((-320 . -111) 126461) ((-317 . -111) 126374) ((-971 . -102) T) ((-821 . -102) 126164) ((-718 . -620) NIL) ((-718 . -619) 126146) ((-664 . -1047) 126042) ((-1262 . -330) 125986) ((-1044 . -292) 125961) ((-586 . -732) T) ((-570 . -800) T) ((-171 . -368) 125912) ((-570 . -797) T) ((-570 . -732) T) ((-501 . -732) T) ((-1155 . -495) 125896) ((-1096 . -893) NIL) ((-877 . -1121) T) ((-118 . -916) NIL) ((-1298 . -1297) 125872) ((-1296 . -1297) 125851) ((-788 . -893) NIL) ((-786 . -893) 125710) ((-1291 . -25) T) ((-1291 . -21) T) ((-1223 . -102) 125688) ((-1115 . -401) T) ((-629 . -654) 125675) ((-460 . -893) NIL) ((-681 . -102) 125653) ((-1096 . -1047) 125480) ((-877 . -23) T) ((-788 . -1047) 125339) ((-786 . -1047) 125196) ((-118 . -654) 125141) ((-460 . -1047) 125017) ((-320 . -622) 124581) ((-317 . -622) 124464) ((-396 . -652) 124433) ((-655 . -1047) 124417) ((-633 . -102) T) ((-224 . -495) 124401) ((-1276 . -34) T) ((-627 . -652) 124360) ((-293 . -1060) 124347) ((-137 . -622) 124331) ((-293 . -646) 124318) ((-641 . -723) 124302) ((-613 . -723) 124286) ((-676 . -38) 124246) ((-323 . -102) T) ((-85 . -619) 124228) ((-50 . -1047) 124212) ((-1129 . -1065) 124199) ((-1096 . -382) 124183) ((-788 . -382) 124167) ((-705 . -732) T) ((-705 . -800) T) ((-705 . -797) T) ((-587 . -1047) 124154) ((-524 . -1047) 124131) ((-60 . -57) 124093) ((-328 . -132) T) ((-320 . -1058) 123983) ((-317 . -1058) T) ((-171 . -1121) T) ((-786 . -382) 123967) ((-45 . -152) 123917) ((-1013 . -1001) 123899) ((-460 . -382) 123883) ((-413 . -174) T) ((-320 . -245) 123862) ((-317 . -245) T) ((-317 . -235) NIL) ((-298 . -1109) 123644) ((-227 . -132) T) ((-1129 . -111) 123629) ((-171 . -23) T) ((-805 . -148) 123608) ((-805 . -146) 123587) ((-254 . -645) 123493) ((-253 . -645) 123399) ((-323 . -288) 123365) ((-1166 . -520) 123298) ((-483 . -652) 123248) ((-1142 . -1109) T) ((-227 . -1069) T) ((-821 . -313) 123186) ((-1096 . -907) 123121) ((-788 . -907) 123064) ((-786 . -907) 123048) ((-1298 . -38) 123018) ((-1296 . -38) 122988) ((-1249 . -1121) T) ((-861 . -1121) T) ((-460 . -907) 122965) ((-864 . -1109) T) ((-1249 . -23) T) ((-1129 . -622) 122937) ((-577 . -1121) T) ((-861 . -23) T) ((-629 . -732) T) ((-360 . -927) T) ((-357 . -927) T) ((-293 . -102) T) ((-349 . -927) T) ((-1071 . -132) T) ((-979 . -1092) T) ((-959 . -132) T) ((-118 . -800) NIL) ((-118 . -797) NIL) ((-118 . -732) T) ((-700 . -916) NIL) ((-1055 . -520) 122838) ((-487 . -132) T) ((-577 . -23) T) ((-681 . -313) 122776) ((-641 . -767) T) ((-613 . -767) T) ((-1240 . -856) NIL) ((-1089 . -1060) 122686) ((-1012 . -294) T) ((-700 . -654) 122636) ((-254 . -21) T) ((-356 . -1109) T) ((-254 . -25) T) ((-253 . -21) T) ((-253 . -25) T) ((-153 . -38) 122620) ((-2 . -102) T) ((-917 . -927) T) ((-1089 . -646) 122488) ((-488 . -1283) 122458) ((-1129 . -1058) T) ((-717 . -311) T) ((-364 . -1060) 122410) ((-358 . -1060) 122362) ((-350 . -1060) 122314) ((-364 . -646) 122266) ((-225 . -1047) 122243) ((-358 . -646) 122195) ((-108 . -1060) 122145) ((-350 . -646) 122097) ((-298 . -723) 122039) ((-707 . -1067) T) ((-493 . -458) T) ((-413 . -520) 121951) ((-108 . -646) 121901) ((-219 . -458) T) ((-1129 . -235) T) ((-299 . -152) 121851) ((-1008 . -620) 121812) ((-1008 . -619) 121794) ((-998 . -619) 121776) ((-117 . -1067) T) ((-660 . -1065) 121760) ((-227 . -499) T) ((-405 . -619) 121742) ((-405 . -620) 121719) ((-1063 . -1283) 121689) ((-660 . -111) 121668) ((-1151 . -495) 121652) ((-1300 . -652) 121611) ((-386 . -652) 121580) ((-821 . -38) 121550) ((-63 . -447) T) ((-63 . -401) T) ((-1169 . -102) T) ((-877 . -132) T) ((-490 . -102) 121528) ((-1304 . -373) T) ((-1089 . -102) T) ((-1070 . -102) T) ((-356 . -723) 121473) ((-737 . -148) 121452) ((-737 . -146) 121431) ((-660 . -622) 121349) ((-1033 . -654) 121286) ((-529 . -1109) 121264) ((-364 . -102) T) ((-358 . -102) T) ((-350 . -102) T) ((-108 . -102) T) ((-510 . -1109) T) ((-359 . -654) 121209) ((-1182 . -645) 121157) ((-1134 . -645) 121105) ((-390 . -515) 121084) ((-839 . -854) 121063) ((-384 . -1230) T) ((-700 . -732) T) ((-1240 . -1001) 121015) ((-344 . -1067) T) ((-112 . -1226) T) ((-176 . -1067) T) ((-103 . -619) 120947) ((-1184 . -146) 120926) ((-1184 . -148) 120905) ((-384 . -562) T) ((-1183 . -148) 120884) ((-1183 . -146) 120863) ((-1177 . -146) 120770) ((-413 . -294) T) ((-1177 . -148) 120677) ((-1135 . -148) 120656) ((-1135 . -146) 120635) ((-323 . -38) 120476) ((-171 . -132) T) ((-317 . -801) NIL) ((-317 . -798) NIL) ((-660 . -1058) T) ((-48 . -654) 120441) ((-1122 . -1060) 120338) ((-900 . -622) 120315) ((-1122 . -646) 120257) ((-1176 . -102) T) ((-1003 . -102) T) ((-1002 . -21) T) ((-128 . -1019) 120241) ((-122 . -1019) 120225) ((-1002 . -25) T) ((-908 . -120) 120209) ((-1168 . -102) T) ((-1249 . -132) T) ((-1182 . -25) T) ((-1182 . -21) T) ((-861 . -132) T) ((-1134 . -25) T) ((-1134 . -21) T) ((-860 . -25) T) ((-860 . -21) T) ((-788 . -311) 120188) ((-653 . -102) 120166) ((-638 . -102) T) ((-1169 . -313) 119961) ((-577 . -132) T) ((-627 . -854) 119940) ((-1166 . -495) 119924) ((-1159 . -152) 119874) ((-1155 . -619) 119836) ((-1155 . -620) 119797) ((-1033 . -797) T) ((-1033 . -800) T) ((-1033 . -732) T) ((-718 . -1065) 119620) ((-490 . -313) 119558) ((-459 . -423) 119528) ((-356 . -174) T) ((-293 . -38) 119515) ((-277 . -102) T) ((-276 . -102) T) ((-275 . -102) T) ((-274 . -102) T) ((-273 . -102) T) ((-272 . -102) T) ((-348 . -1047) 119492) ((-271 . -102) T) ((-214 . -102) T) ((-213 . -102) T) ((-211 . -102) T) ((-210 . -102) T) ((-209 . -102) T) ((-208 . -102) T) ((-205 . -102) T) ((-204 . -102) T) ((-203 . -102) T) ((-202 . -102) T) ((-201 . -102) T) ((-200 . -102) T) ((-199 . -102) T) ((-198 . -102) T) ((-197 . -102) T) ((-196 . -102) T) ((-195 . -102) T) ((-359 . -732) T) ((-718 . -111) 119301) ((-676 . -233) 119285) ((-587 . -311) T) ((-524 . -311) T) ((-298 . -520) 119234) ((-108 . -313) NIL) ((-72 . -401) T) ((-1122 . -102) 119024) ((-839 . -417) 119008) ((-1129 . -801) T) ((-1129 . -798) T) ((-707 . -1109) T) ((-584 . -619) 118990) ((-384 . -368) T) ((-171 . -499) 118968) ((-224 . -619) 118900) ((-135 . -1109) T) ((-117 . -1109) T) ((-973 . -1226) T) ((-48 . -732) T) ((-1055 . -495) 118865) ((-142 . -431) 118847) ((-142 . -373) T) ((-1036 . -102) T) ((-518 . -515) 118826) ((-718 . -622) 118582) ((-482 . -102) T) ((-469 . -102) T) ((-1043 . -1121) T) ((-1233 . -619) 118564) ((-1191 . -1047) 118500) ((-1184 . -35) 118466) ((-1184 . -95) 118432) ((-1184 . -1214) 118398) ((-1184 . -1211) 118364) ((-1168 . -313) NIL) ((-89 . -402) T) ((-89 . -401) T) ((-1089 . -1161) 118343) ((-1183 . -1211) 118309) ((-1183 . -1214) 118275) ((-1043 . -23) T) ((-1183 . -95) 118241) ((-577 . -499) T) ((-1183 . -35) 118207) ((-1177 . -1211) 118173) ((-1177 . -1214) 118139) ((-1177 . -95) 118105) ((-366 . -1121) T) ((-364 . -1161) 118084) ((-358 . -1161) 118063) ((-350 . -1161) 118042) ((-1177 . -35) 118008) ((-1135 . -35) 117974) ((-1135 . -95) 117940) ((-108 . -1161) T) ((-1135 . -1214) 117906) ((-839 . -1067) 117885) ((-653 . -313) 117823) ((-638 . -313) 117674) ((-1135 . -1211) 117640) ((-718 . -1058) T) ((-1071 . -645) 117622) ((-1089 . -38) 117490) ((-959 . -645) 117438) ((-1013 . -148) T) ((-1013 . -146) NIL) ((-384 . -1121) T) ((-328 . -25) T) ((-326 . -23) T) ((-950 . -856) 117417) ((-718 . -330) 117394) ((-487 . -645) 117342) ((-40 . -1047) 117230) ((-718 . -235) T) ((-707 . -723) 117217) ((-344 . -1109) T) ((-176 . -1109) T) ((-335 . -856) T) ((-424 . -458) 117167) ((-384 . -23) T) ((-364 . -38) 117132) ((-358 . -38) 117097) ((-350 . -38) 117062) ((-80 . -447) T) ((-80 . -401) T) ((-227 . -25) T) ((-227 . -21) T) ((-842 . -1121) T) ((-108 . -38) 117012) ((-833 . -1121) T) ((-780 . -1109) T) ((-117 . -723) 116999) ((-678 . -1047) 116983) ((-618 . -102) T) ((-842 . -23) T) ((-833 . -23) T) ((-1166 . -290) 116960) ((-1122 . -313) 116898) ((-488 . -1060) 116795) ((-1111 . -237) 116779) ((-64 . -402) T) ((-64 . -401) T) ((-1160 . -102) T) ((-110 . -102) T) ((-488 . -646) 116721) ((-40 . -382) 116698) ((-96 . -102) T) ((-659 . -858) 116682) ((-1144 . -1092) T) ((-1071 . -21) T) ((-1071 . -25) T) ((-1063 . -1060) 116666) ((-821 . -233) 116635) ((-959 . -25) T) ((-959 . -21) T) ((-1063 . -646) 116577) ((-627 . -1067) T) ((-1129 . -373) T) ((-1036 . -313) 116515) ((-676 . -652) 116474) ((-487 . -25) T) ((-487 . -21) T) ((-390 . -1060) 116458) ((-896 . -619) 116440) ((-892 . -619) 116422) ((-529 . -520) 116355) ((-254 . -856) 116306) ((-253 . -856) 116257) ((-390 . -646) 116227) ((-877 . -645) 116204) ((-482 . -313) 116142) ((-469 . -313) 116080) ((-356 . -294) T) ((-1166 . -1264) 116064) ((-1151 . -619) 116026) ((-1151 . -620) 115987) ((-1149 . -102) T) ((-1008 . -1065) 115883) ((-40 . -907) 115835) ((-1166 . -610) 115812) ((-1304 . -654) 115799) ((-872 . -496) 115776) ((-1072 . -152) 115722) ((-878 . -1230) T) ((-1008 . -111) 115604) ((-344 . -723) 115588) ((-872 . -619) 115550) ((-176 . -723) 115482) ((-413 . -290) 115440) ((-878 . -562) T) ((-108 . -406) 115422) ((-84 . -389) T) ((-84 . -401) T) ((-707 . -174) T) ((-623 . -619) 115404) ((-99 . -732) T) ((-488 . -102) 115194) ((-99 . -479) T) ((-117 . -174) T) ((-1298 . -652) 115153) ((-1296 . -652) 115112) ((-1122 . -38) 115082) ((-171 . -645) 115030) ((-1063 . -102) T) ((-1008 . -622) 114920) ((-877 . -25) T) ((-821 . -240) 114899) ((-877 . -21) T) ((-824 . -102) T) ((-44 . -652) 114842) ((-420 . -102) T) ((-390 . -102) T) ((-110 . -313) NIL) ((-229 . -102) 114820) ((-128 . -1226) T) ((-122 . -1226) T) ((-823 . -1060) 114771) ((-823 . -646) 114713) ((-1043 . -132) T) ((-676 . -372) 114697) ((-153 . -652) 114656) ((-1008 . -1058) T) ((-1249 . -645) 114604) ((-1113 . -619) 114586) ((-1012 . -619) 114568) ((-521 . -23) T) ((-516 . -23) T) ((-348 . -311) T) ((-514 . -23) T) ((-326 . -132) T) ((-3 . -1109) T) ((-1012 . -620) 114552) ((-1008 . -245) 114531) ((-1008 . -235) 114510) ((-1304 . -732) T) ((-1268 . -146) 114489) ((-839 . -1109) T) ((-1268 . -148) 114468) ((-1261 . -148) 114447) ((-1261 . -146) 114426) ((-1260 . -1230) 114405) ((-1240 . -146) 114312) ((-1240 . -148) 114219) ((-1239 . -1230) 114198) ((-384 . -132) T) ((-570 . -893) 114180) ((0 . -1109) T) ((-176 . -174) T) ((-171 . -21) T) ((-171 . -25) T) ((-49 . -1109) T) ((-1262 . -654) 114085) ((-1260 . -562) 114036) ((-720 . -1121) T) ((-1239 . -562) 113987) ((-570 . -1047) 113969) ((-601 . -148) 113948) ((-601 . -146) 113927) ((-501 . -1047) 113870) ((-1144 . -1146) T) ((-87 . -389) T) ((-87 . -401) T) ((-878 . -368) T) ((-842 . -132) T) ((-833 . -132) T) ((-971 . -652) 113814) ((-720 . -23) T) ((-512 . -619) 113780) ((-508 . -619) 113762) ((-821 . -652) 113512) ((-1300 . -1067) T) ((-384 . -1069) T) ((-1035 . -1109) 113490) ((-55 . -1047) 113472) ((-908 . -34) T) ((-488 . -313) 113410) ((-598 . -102) T) ((-1166 . -620) 113371) ((-1166 . -619) 113303) ((-1188 . -1060) 113186) ((-45 . -102) T) ((-823 . -102) T) ((-1188 . -646) 113083) ((-1249 . -25) T) ((-1249 . -21) T) ((-861 . -25) T) ((-44 . -372) 113067) ((-861 . -21) T) ((-737 . -458) 113018) ((-1299 . -619) 113000) ((-1288 . -1060) 112970) ((-1063 . -313) 112908) ((-677 . -1092) T) ((-612 . -1092) T) ((-396 . -1109) T) ((-577 . -25) T) ((-577 . -21) T) ((-182 . -1092) T) ((-162 . -1092) T) ((-157 . -1092) T) ((-155 . -1092) T) ((-1288 . -646) 112878) ((-627 . -1109) T) ((-705 . -893) 112860) ((-1276 . -1226) T) ((-229 . -313) 112798) ((-145 . -373) T) ((-1055 . -620) 112740) ((-1055 . -619) 112683) ((-317 . -916) NIL) ((-1234 . -850) T) ((-705 . -1047) 112628) ((-717 . -927) T) ((-480 . -1230) 112607) ((-1183 . -458) 112586) ((-1177 . -458) 112565) ((-334 . -102) T) ((-878 . -1121) T) ((-323 . -652) 112447) ((-320 . -654) 112268) ((-317 . -654) 112197) ((-480 . -562) 112148) ((-344 . -520) 112114) ((-556 . -152) 112064) ((-40 . -311) T) ((-849 . -619) 112046) ((-707 . -294) T) ((-878 . -23) T) ((-384 . -499) T) ((-1089 . -233) 112016) ((-518 . -102) T) ((-413 . -620) 111823) ((-413 . -619) 111805) ((-266 . -619) 111787) ((-117 . -294) T) ((-1262 . -732) T) ((-1260 . -368) 111766) ((-1239 . -368) 111745) ((-1289 . -34) T) ((-1234 . -1109) T) ((-118 . -1226) T) ((-108 . -233) 111727) ((-1188 . -102) T) ((-483 . -1109) T) ((-529 . -495) 111711) ((-743 . -34) T) ((-659 . -1060) 111695) ((-488 . -38) 111665) ((-659 . -646) 111635) ((-142 . -34) T) ((-118 . -891) 111612) ((-118 . -893) NIL) ((-629 . -1047) 111495) ((-650 . -856) 111474) ((-1288 . -102) T) ((-299 . -102) T) ((-718 . -373) 111453) ((-118 . -1047) 111430) ((-396 . -723) 111414) ((-627 . -723) 111398) ((-45 . -313) 111202) ((-822 . -146) 111181) ((-822 . -148) 111160) ((-293 . -652) 111132) ((-1299 . -387) 111111) ((-825 . -856) T) ((-1278 . -1109) T) ((-1169 . -231) 111058) ((-392 . -856) 111037) ((-1268 . -1214) 111003) ((-1268 . -1211) 110969) ((-1261 . -1211) 110935) ((-521 . -132) T) ((-1261 . -1214) 110901) ((-1240 . -1211) 110867) ((-1240 . -1214) 110833) ((-1268 . -35) 110799) ((-1268 . -95) 110765) ((-641 . -619) 110734) ((-613 . -619) 110703) ((-227 . -856) T) ((-1261 . -95) 110669) ((-1261 . -35) 110635) ((-1260 . -1121) T) ((-1129 . -654) 110622) ((-1240 . -95) 110588) ((-1239 . -1121) T) ((-599 . -152) 110570) ((-1089 . -354) 110549) ((-176 . -294) T) ((-118 . -382) 110526) ((-118 . -343) 110503) ((-1240 . -35) 110469) ((-876 . -311) T) ((-317 . -800) NIL) ((-317 . -797) NIL) ((-320 . -732) 110318) ((-317 . -732) T) ((-480 . -368) 110297) ((-364 . -354) 110276) ((-358 . -354) 110255) ((-350 . -354) 110234) ((-320 . -479) 110213) ((-1260 . -23) T) ((-1239 . -23) T) ((-724 . -1121) T) ((-720 . -132) T) ((-659 . -102) T) ((-483 . -723) 110178) ((-45 . -286) 110128) ((-105 . -1109) T) ((-68 . -619) 110110) ((-979 . -102) T) ((-870 . -102) T) ((-629 . -907) 110069) ((-1300 . -1109) T) ((-386 . -1109) T) ((-82 . -1226) T) ((-1225 . -1109) T) ((-1071 . -856) T) ((-118 . -907) NIL) ((-788 . -927) 110048) ((-719 . -856) T) ((-537 . -1109) T) ((-506 . -1109) T) ((-360 . -1230) T) ((-357 . -1230) T) ((-349 . -1230) T) ((-267 . -1230) 110027) ((-249 . -1230) 110006) ((-539 . -866) T) ((-1122 . -233) 109975) ((-1168 . -834) T) ((-1151 . -1065) 109959) ((-396 . -767) T) ((-700 . -1226) T) ((-697 . -1047) 109943) ((-360 . -562) T) ((-357 . -562) T) ((-349 . -562) T) ((-267 . -562) 109874) ((-249 . -562) 109805) ((-531 . -1092) T) ((-1151 . -111) 109784) ((-459 . -750) 109754) ((-872 . -1065) 109724) ((-823 . -38) 109666) ((-700 . -891) 109648) ((-700 . -893) 109630) ((-299 . -313) 109434) ((-917 . -1230) T) ((-1166 . -292) 109411) ((-1089 . -652) 109306) ((-676 . -417) 109290) ((-872 . -111) 109255) ((-1013 . -458) T) ((-700 . -1047) 109200) ((-917 . -562) T) ((-539 . -619) 109182) ((-587 . -927) T) ((-493 . -1060) 109132) ((-480 . -1121) T) ((-524 . -927) T) ((-921 . -458) T) ((-65 . -619) 109114) ((-219 . -1060) 109064) ((-493 . -646) 109014) ((-364 . -652) 108951) ((-358 . -652) 108888) ((-350 . -652) 108825) ((-638 . -231) 108771) ((-219 . -646) 108721) ((-108 . -652) 108671) ((-480 . -23) T) ((-1129 . -800) T) ((-878 . -132) T) ((-1129 . -797) T) ((-1291 . -1293) 108650) ((-1129 . -732) T) ((-660 . -654) 108624) ((-298 . -619) 108365) ((-1151 . -622) 108283) ((-1044 . -34) T) ((-821 . -854) 108262) ((-586 . -311) T) ((-570 . -311) T) ((-501 . -311) T) ((-1300 . -723) 108232) ((-700 . -382) 108214) ((-700 . -343) 108196) ((-483 . -174) T) ((-386 . -723) 108166) ((-872 . -622) 108101) ((-877 . -856) NIL) ((-570 . -1031) T) ((-501 . -1031) T) ((-1142 . -619) 108083) ((-1122 . -240) 108062) ((-216 . -102) T) ((-1159 . -102) T) ((-71 . -619) 108044) ((-1151 . -1058) T) ((-1188 . -38) 107941) ((-864 . -619) 107923) ((-570 . -551) T) ((-676 . -1067) T) ((-737 . -956) 107876) ((-1151 . -235) 107855) ((-1091 . -1109) T) ((-1043 . -25) T) ((-1043 . -21) T) ((-1012 . -1065) 107800) ((-912 . -102) T) ((-872 . -1058) T) ((-700 . -907) NIL) ((-360 . -333) 107784) ((-360 . -368) T) ((-357 . -333) 107768) ((-357 . -368) T) ((-349 . -333) 107752) ((-349 . -368) T) ((-493 . -102) T) ((-1288 . -38) 107722) ((-552 . -856) T) ((-529 . -693) 107672) ((-219 . -102) T) ((-1033 . -1047) 107552) ((-1012 . -111) 107481) ((-1184 . -982) 107450) ((-526 . -152) 107434) ((-1089 . -375) 107413) ((-356 . -619) 107395) ((-326 . -21) T) ((-359 . -1047) 107372) ((-326 . -25) T) ((-1183 . -982) 107334) ((-1177 . -982) 107303) ((-76 . -619) 107285) ((-1135 . -982) 107252) ((-705 . -311) T) ((-130 . -850) T) ((-917 . -368) T) ((-384 . -25) T) ((-384 . -21) T) ((-917 . -333) 107239) ((-86 . -619) 107221) ((-705 . -1031) T) ((-683 . -856) T) ((-1260 . -132) T) ((-1239 . -132) T) ((-908 . -1019) 107205) ((-842 . -21) T) ((-48 . -1047) 107148) ((-842 . -25) T) ((-833 . -25) T) ((-833 . -21) T) ((-1122 . -652) 106898) ((-1298 . -1067) T) ((-555 . -102) T) ((-1296 . -1067) T) ((-660 . -732) T) ((-1113 . -624) 106801) ((-1012 . -622) 106731) ((-1299 . -1065) 106715) ((-821 . -417) 106684) ((-103 . -120) 106668) ((-130 . -1109) T) ((-52 . -1109) T) ((-933 . -619) 106650) ((-877 . -1001) 106627) ((-829 . -102) T) ((-1299 . -111) 106606) ((-659 . -38) 106576) ((-577 . -856) T) ((-360 . -1121) T) ((-357 . -1121) T) ((-349 . -1121) T) ((-267 . -1121) T) ((-249 . -1121) T) ((-629 . -311) 106555) ((-1159 . -313) 106359) ((-670 . -23) T) ((-530 . -1092) T) ((-315 . -1109) T) ((-488 . -233) 106328) ((-153 . -1067) T) ((-360 . -23) T) ((-357 . -23) T) ((-349 . -23) T) ((-118 . -311) T) ((-267 . -23) T) ((-249 . -23) T) ((-1012 . -1058) T) ((-718 . -916) 106307) ((-1166 . -622) 106284) ((-1012 . -235) 106256) ((-1012 . -245) T) ((-118 . -1031) NIL) ((-917 . -1121) T) ((-1261 . -458) 106235) ((-1240 . -458) 106214) ((-529 . -619) 106146) ((-718 . -654) 106071) ((-413 . -1065) 106023) ((-510 . -619) 106005) ((-917 . -23) T) ((-493 . -313) NIL) ((-1299 . -622) 105961) ((-480 . -132) T) ((-219 . -313) NIL) ((-413 . -111) 105899) ((-821 . -1067) 105829) ((-743 . -1107) 105813) ((-1260 . -499) 105779) ((-1239 . -499) 105745) ((-554 . -850) T) ((-142 . -1107) 105727) ((-483 . -294) T) ((-1299 . -1058) T) ((-1231 . -102) T) ((-1072 . -102) T) ((-849 . -622) 105595) ((-506 . -520) NIL) ((-488 . -240) 105574) ((-413 . -622) 105472) ((-970 . -1060) 105355) ((-741 . -1060) 105325) ((-970 . -646) 105222) ((-1182 . -146) 105201) ((-741 . -646) 105171) ((-459 . -1060) 105141) ((-1182 . -148) 105120) ((-1134 . -148) 105099) ((-1134 . -146) 105078) ((-641 . -1065) 105062) ((-613 . -1065) 105046) ((-459 . -646) 105016) ((-1184 . -1267) 105000) ((-1184 . -1254) 104977) ((-676 . -1109) T) ((-676 . -1062) 104917) ((-1183 . -1259) 104878) ((-554 . -1109) T) ((-493 . -1161) T) ((-1183 . -1254) 104848) ((-1183 . -1257) 104832) ((-1177 . -1238) 104793) ((-219 . -1161) T) ((-348 . -927) T) ((-824 . -269) 104777) ((-641 . -111) 104756) ((-613 . -111) 104735) ((-1177 . -1254) 104712) ((-849 . -1058) 104691) ((-1177 . -1236) 104675) ((-521 . -25) T) ((-501 . -306) T) ((-517 . -23) T) ((-516 . -25) T) ((-514 . -25) T) ((-513 . -23) T) ((-424 . -1060) 104649) ((-413 . -1058) T) ((-323 . -1067) T) ((-700 . -311) T) ((-424 . -646) 104623) ((-108 . -854) T) ((-718 . -732) T) ((-413 . -245) T) ((-413 . -235) 104602) ((-493 . -38) 104552) ((-219 . -38) 104502) ((-480 . -499) 104468) ((-1233 . -373) T) ((-1168 . -1153) T) ((-1110 . -102) T) ((-707 . -619) 104450) ((-707 . -620) 104365) ((-720 . -21) T) ((-720 . -25) T) ((-1144 . -102) T) ((-488 . -652) 104115) ((-135 . -619) 104097) ((-117 . -619) 104079) ((-158 . -25) T) ((-1298 . -1109) T) ((-878 . -645) 104027) ((-1296 . -1109) T) ((-970 . -102) T) ((-741 . -102) T) ((-721 . -102) T) ((-459 . -102) T) ((-822 . -458) 103978) ((-44 . -1109) T) ((-1097 . -856) T) ((-1072 . -313) 103829) ((-670 . -132) T) ((-1063 . -652) 103798) ((-676 . -723) 103782) ((-293 . -1067) T) ((-360 . -132) T) ((-357 . -132) T) ((-349 . -132) T) ((-267 . -132) T) ((-249 . -132) T) ((-390 . -652) 103751) ((-424 . -102) T) ((-153 . -1109) T) ((-45 . -231) 103701) ((-805 . -1060) 103685) ((-965 . -856) 103664) ((-1008 . -654) 103602) ((-805 . -646) 103586) ((-242 . -1283) 103556) ((-1033 . -311) T) ((-298 . -1065) 103477) ((-917 . -132) T) ((-40 . -927) T) ((-493 . -406) 103459) ((-359 . -311) T) ((-219 . -406) 103441) ((-1089 . -417) 103425) ((-298 . -111) 103341) ((-1193 . -856) T) ((-1192 . -856) T) ((-878 . -25) T) ((-878 . -21) T) ((-344 . -619) 103323) ((-1262 . -47) 103267) ((-227 . -148) T) ((-176 . -619) 103249) ((-1122 . -854) 103228) ((-780 . -619) 103210) ((-129 . -856) T) ((-614 . -237) 103157) ((-481 . -237) 103107) ((-1298 . -723) 103077) ((-48 . -311) T) ((-1296 . -723) 103047) ((-65 . -622) 102976) ((-971 . -1109) T) ((-821 . -1109) 102766) ((-316 . -102) T) ((-908 . -1226) T) ((-48 . -1031) T) ((-1239 . -645) 102674) ((-695 . -102) 102652) ((-44 . -723) 102636) ((-556 . -102) T) ((-298 . -622) 102567) ((-67 . -388) T) ((-67 . -401) T) ((-668 . -23) T) ((-823 . -652) 102503) ((-676 . -767) T) ((-1223 . -1109) 102481) ((-356 . -1065) 102426) ((-681 . -1109) 102404) ((-1071 . -148) T) ((-959 . -148) 102383) ((-959 . -146) 102362) ((-805 . -102) T) ((-153 . -723) 102346) ((-487 . -148) 102325) ((-487 . -146) 102304) ((-356 . -111) 102233) ((-1089 . -1067) T) ((-326 . -856) 102212) ((-1268 . -982) 102181) ((-633 . -1109) T) ((-1261 . -982) 102143) ((-517 . -132) T) ((-513 . -132) T) ((-299 . -231) 102093) ((-364 . -1067) T) ((-358 . -1067) T) ((-350 . -1067) T) ((-298 . -1058) 102035) ((-1240 . -982) 102004) ((-384 . -856) T) ((-108 . -1067) T) ((-1008 . -732) T) ((-876 . -927) T) ((-849 . -801) 101983) ((-849 . -798) 101962) ((-424 . -313) 101901) ((-474 . -102) T) ((-601 . -982) 101870) ((-323 . -1109) T) ((-413 . -801) 101849) ((-413 . -798) 101828) ((-506 . -495) 101810) ((-1262 . -1047) 101776) ((-1260 . -21) T) ((-1260 . -25) T) ((-1239 . -21) T) ((-1239 . -25) T) ((-821 . -723) 101718) ((-356 . -622) 101648) ((-705 . -410) T) ((-1289 . -1226) T) ((-612 . -102) T) ((-1122 . -417) 101617) ((-1012 . -373) NIL) ((-677 . -102) T) ((-182 . -102) T) ((-162 . -102) T) ((-157 . -102) T) ((-155 . -102) T) ((-103 . -34) T) ((-1188 . -652) 101527) ((-743 . -1226) T) ((-737 . -1060) 101370) ((-44 . -767) T) ((-737 . -646) 101219) ((-599 . -102) T) ((-77 . -402) T) ((-77 . -401) T) ((-659 . -662) 101203) ((-142 . -1226) T) ((-877 . -148) T) ((-877 . -146) NIL) ((-1225 . -93) T) ((-356 . -1058) T) ((-70 . -388) T) ((-70 . -401) T) ((-1175 . -102) T) ((-676 . -520) 101136) ((-1288 . -652) 101081) ((-695 . -313) 101019) ((-970 . -38) 100916) ((-1190 . -619) 100898) ((-741 . -38) 100868) ((-556 . -313) 100672) ((-1184 . -1060) 100555) ((-320 . -1226) T) ((-356 . -235) T) ((-356 . -245) T) ((-317 . -1226) T) ((-293 . -1109) T) ((-1183 . -1060) 100390) ((-1177 . -1060) 100180) ((-1135 . -1060) 100063) ((-1184 . -646) 99960) ((-1183 . -646) 99801) ((-717 . -1230) T) ((-1177 . -646) 99597) ((-1166 . -657) 99581) ((-1135 . -646) 99478) ((-1220 . -562) 99457) ((-825 . -391) 99441) ((-717 . -562) T) ((-320 . -891) 99425) ((-320 . -893) 99350) ((-317 . -891) 99311) ((-317 . -893) NIL) ((-805 . -313) 99276) ((-323 . -723) 99117) ((-392 . -391) 99101) ((-328 . -327) 99078) ((-491 . -102) T) ((-480 . -25) T) ((-480 . -21) T) ((-424 . -38) 99052) ((-320 . -1047) 98715) ((-227 . -1211) T) ((-227 . -1214) T) ((-3 . -619) 98697) ((-317 . -1047) 98627) ((-2 . -1109) T) ((-2 . |RecordCategory|) T) ((-839 . -619) 98609) ((-1122 . -1067) 98539) ((-586 . -927) T) ((-570 . -826) T) ((-570 . -927) T) ((-501 . -927) T) ((-137 . -1047) 98523) ((-227 . -95) T) ((-171 . -148) 98502) ((-75 . -447) T) ((0 . -619) 98484) ((-75 . -401) T) ((-171 . -146) 98435) ((-227 . -35) T) ((-49 . -619) 98417) ((-483 . -1067) T) ((-493 . -233) 98399) ((-490 . -977) 98383) ((-488 . -854) 98362) ((-219 . -233) 98344) ((-81 . -447) T) ((-81 . -401) T) ((-1155 . -34) T) ((-821 . -174) 98323) ((-737 . -102) T) ((-659 . -652) 98282) ((-1035 . -619) 98249) ((-506 . -290) 98224) ((-320 . -382) 98193) ((-317 . -382) 98154) ((-317 . -343) 98115) ((-1094 . -619) 98097) ((-822 . -956) 98044) ((-668 . -132) T) ((-1249 . -146) 98023) ((-1249 . -148) 98002) ((-1184 . -102) T) ((-1183 . -102) T) ((-1177 . -102) T) ((-1169 . -1109) T) ((-1135 . -102) T) ((-224 . -34) T) ((-293 . -723) 97989) ((-1169 . -616) 97965) ((-599 . -313) NIL) ((-490 . -1109) 97943) ((-1159 . -231) 97893) ((-396 . -619) 97875) ((-516 . -856) T) ((-1129 . -1226) T) ((-1268 . -1267) 97859) ((-1268 . -1254) 97836) ((-1261 . -1259) 97797) ((-1261 . -1254) 97767) ((-1261 . -1257) 97751) ((-1240 . -1238) 97712) ((-1240 . -1254) 97689) ((-627 . -619) 97671) ((-1240 . -1236) 97655) ((-705 . -927) T) ((-1184 . -288) 97621) ((-1183 . -288) 97587) ((-1177 . -288) 97553) ((-1089 . -1109) T) ((-1070 . -1109) T) ((-48 . -306) T) ((-320 . -907) 97519) ((-317 . -907) NIL) ((-1070 . -1077) 97498) ((-1129 . -893) 97480) ((-805 . -38) 97464) ((-267 . -645) 97412) ((-249 . -645) 97360) ((-707 . -1065) 97347) ((-601 . -1254) 97324) ((-1135 . -288) 97290) ((-323 . -174) 97221) ((-364 . -1109) T) ((-358 . -1109) T) ((-350 . -1109) T) ((-506 . -19) 97203) ((-1129 . -1047) 97185) ((-1111 . -152) 97169) ((-108 . -1109) T) ((-117 . -1065) 97156) ((-717 . -368) T) ((-506 . -610) 97131) ((-707 . -111) 97116) ((-442 . -102) T) ((-882 . -1271) T) ((-252 . -102) T) ((-45 . -1158) 97066) ((-117 . -111) 97051) ((-641 . -726) T) ((-613 . -726) T) ((-1278 . -619) 97033) ((-1234 . -619) 97015) ((-1232 . -856) T) ((-821 . -520) 96948) ((-1044 . -1226) T) ((-242 . -1060) 96845) ((-1220 . -1121) T) ((-1220 . -23) T) ((-950 . -152) 96829) ((-1182 . -458) 96760) ((-1177 . -313) 96645) ((-242 . -646) 96587) ((-1176 . -1109) T) ((-1168 . -1109) T) ((-1151 . -654) 96561) ((-531 . -102) T) ((-526 . -102) 96511) ((-1135 . -313) 96498) ((-1134 . -458) 96449) ((-1096 . -1230) 96428) ((-788 . -1230) 96407) ((-786 . -1230) 96386) ((-62 . -1226) T) ((-483 . -619) 96338) ((-483 . -620) 96260) ((-1096 . -562) 96191) ((-1003 . -1109) T) ((-788 . -562) 96102) ((-786 . -562) 96033) ((-488 . -417) 96002) ((-629 . -927) 95981) ((-460 . -1230) 95960) ((-737 . -313) 95947) ((-707 . -622) 95919) ((-404 . -619) 95901) ((-681 . -520) 95834) ((-670 . -25) T) ((-670 . -21) T) ((-460 . -562) 95765) ((-360 . -25) T) ((-360 . -21) T) ((-118 . -927) T) ((-118 . -826) NIL) ((-357 . -25) T) ((-357 . -21) T) ((-349 . -25) T) ((-349 . -21) T) ((-267 . -25) T) ((-267 . -21) T) ((-249 . -25) T) ((-249 . -21) T) ((-83 . -389) T) ((-83 . -401) T) ((-135 . -622) 95747) ((-117 . -622) 95719) ((-1089 . -723) 95587) ((-1013 . -1060) 95537) ((-1013 . -646) 95487) ((-950 . -989) 95471) ((-921 . -646) 95423) ((-921 . -1060) 95375) ((-917 . -21) T) ((-917 . -25) T) ((-878 . -856) 95326) ((-872 . -654) 95286) ((-717 . -1121) T) ((-717 . -23) T) ((-293 . -174) T) ((-707 . -1058) T) ((-315 . -93) T) ((-707 . -235) T) ((-653 . -1109) 95264) ((-638 . -616) 95239) ((-638 . -1109) T) ((-587 . -1230) T) ((-587 . -562) T) ((-524 . -1230) T) ((-524 . -562) T) ((-493 . -652) 95189) ((-433 . -1060) 95173) ((-433 . -646) 95157) ((-364 . -723) 95109) ((-358 . -723) 95061) ((-344 . -1065) 95045) ((-350 . -723) 94997) ((-344 . -111) 94976) ((-176 . -1065) 94908) ((-219 . -652) 94858) ((-176 . -111) 94769) ((-108 . -723) 94719) ((-277 . -1109) T) ((-276 . -1109) T) ((-275 . -1109) T) ((-274 . -1109) T) ((-273 . -1109) T) ((-272 . -1109) T) ((-271 . -1109) T) ((-214 . -1109) T) ((-213 . -1109) T) ((-171 . -1214) 94697) ((-171 . -1211) 94675) ((-211 . -1109) T) ((-210 . -1109) T) ((-117 . -1058) T) ((-209 . -1109) T) ((-208 . -1109) T) ((-205 . -1109) T) ((-204 . -1109) T) ((-203 . -1109) T) ((-202 . -1109) T) ((-201 . -1109) T) ((-200 . -1109) T) ((-199 . -1109) T) ((-198 . -1109) T) ((-197 . -1109) T) ((-196 . -1109) T) ((-195 . -1109) T) ((-242 . -102) 94465) ((-171 . -35) 94443) ((-171 . -95) 94421) ((-660 . -1047) 94317) ((-488 . -1067) 94247) ((-1122 . -1109) 94037) ((-1151 . -34) T) ((-676 . -495) 94021) ((-73 . -1226) T) ((-105 . -619) 94003) ((-1300 . -619) 93985) ((-386 . -619) 93967) ((-344 . -622) 93919) ((-176 . -622) 93836) ((-1225 . -496) 93817) ((-737 . -38) 93666) ((-577 . -1214) T) ((-577 . -1211) T) ((-537 . -619) 93648) ((-526 . -313) 93586) ((-506 . -619) 93568) ((-506 . -620) 93550) ((-1225 . -619) 93516) ((-1177 . -1161) NIL) ((-1036 . -1080) 93485) ((-1036 . -1109) T) ((-1013 . -102) T) ((-980 . -102) T) ((-921 . -102) T) ((-900 . -1047) 93462) ((-1151 . -732) T) ((-1012 . -654) 93407) ((-482 . -1109) T) ((-469 . -1109) T) ((-592 . -23) T) ((-577 . -35) T) ((-577 . -95) T) ((-433 . -102) T) ((-1072 . -231) 93353) ((-1184 . -38) 93250) ((-872 . -732) T) ((-700 . -927) T) ((-517 . -25) T) ((-513 . -21) T) ((-513 . -25) T) ((-1183 . -38) 93091) ((-344 . -1058) T) ((-1177 . -38) 92887) ((-1089 . -174) T) ((-176 . -1058) T) ((-1135 . -38) 92784) ((-718 . -47) 92761) ((-364 . -174) T) ((-358 . -174) T) ((-525 . -57) 92735) ((-503 . -57) 92685) ((-356 . -1295) 92662) ((-227 . -458) T) ((-323 . -294) 92613) ((-350 . -174) T) ((-176 . -245) T) ((-1239 . -856) 92512) ((-108 . -174) T) ((-878 . -1001) 92496) ((-664 . -1121) T) ((-587 . -368) T) ((-587 . -333) 92483) ((-524 . -333) 92460) ((-524 . -368) T) ((-320 . -311) 92439) ((-317 . -311) T) ((-608 . -856) 92418) ((-1122 . -723) 92360) ((-526 . -286) 92344) ((-664 . -23) T) ((-424 . -233) 92328) ((-317 . -1031) NIL) ((-341 . -23) T) ((-103 . -1019) 92312) ((-45 . -36) 92291) ((-618 . -1109) T) ((-356 . -373) T) ((-530 . -102) T) ((-501 . -27) T) ((-242 . -313) 92229) ((-1096 . -1121) T) ((-1299 . -654) 92203) ((-788 . -1121) T) ((-786 . -1121) T) ((-460 . -1121) T) ((-1071 . -458) T) ((-1160 . -1109) T) ((-959 . -458) 92154) ((-1124 . -1092) T) ((-110 . -1109) T) ((-1096 . -23) T) ((-823 . -1067) T) ((-788 . -23) T) ((-786 . -23) T) ((-487 . -458) 92105) ((-1169 . -520) 91888) ((-386 . -387) 91867) ((-1188 . -417) 91851) ((-467 . -23) T) ((-460 . -23) T) ((-96 . -1109) T) ((-490 . -520) 91784) ((-1268 . -1060) 91667) ((-1268 . -646) 91564) ((-1261 . -646) 91405) ((-1261 . -1060) 91240) ((-293 . -294) T) ((-1240 . -1060) 91030) ((-1091 . -619) 91012) ((-1091 . -620) 90993) ((-413 . -916) 90972) ((-1240 . -646) 90768) ((-50 . -1121) T) ((-1220 . -132) T) ((-1033 . -927) T) ((-1012 . -732) T) ((-849 . -654) 90741) ((-718 . -893) NIL) ((-602 . -1060) 90701) ((-587 . -1121) T) ((-524 . -1121) T) ((-601 . -1060) 90584) ((-1177 . -406) 90536) ((-1013 . -313) NIL) ((-821 . -495) 90520) ((-602 . -646) 90493) ((-359 . -927) T) ((-601 . -646) 90390) ((-1166 . -34) T) ((-413 . -654) 90342) ((-50 . -23) T) ((-717 . -132) T) ((-718 . -1047) 90222) ((-587 . -23) T) ((-108 . -520) NIL) ((-524 . -23) T) ((-171 . -415) 90193) ((-1149 . -1109) T) ((-1291 . -1290) 90177) ((-707 . -801) T) ((-707 . -798) T) ((-1129 . -311) T) ((-384 . -148) T) ((-284 . -619) 90159) ((-283 . -619) 90141) ((-1239 . -1001) 90111) ((-48 . -927) T) ((-681 . -495) 90095) ((-254 . -1283) 90065) ((-253 . -1283) 90035) ((-1186 . -856) T) ((-1122 . -174) 90014) ((-1129 . -1031) T) ((-1055 . -34) T) ((-842 . -148) 89993) ((-842 . -146) 89972) ((-743 . -107) 89956) ((-618 . -133) T) ((-488 . -1109) 89746) ((-1188 . -1067) T) ((-877 . -458) T) ((-85 . -1226) T) ((-242 . -38) 89716) ((-142 . -107) 89698) ((-718 . -382) 89682) ((-839 . -622) 89550) ((-1299 . -732) T) ((-1288 . -1067) T) ((-1129 . -551) T) ((-585 . -102) T) ((-130 . -496) 89532) ((-1268 . -102) T) ((-396 . -1065) 89516) ((-1261 . -102) T) ((-1182 . -956) 89485) ((-130 . -619) 89452) ((-52 . -619) 89434) ((-1134 . -956) 89401) ((-659 . -417) 89385) ((-1240 . -102) T) ((-1168 . -520) NIL) ((-668 . -25) T) ((-627 . -1065) 89369) ((-668 . -21) T) ((-970 . -652) 89279) ((-741 . -652) 89224) ((-721 . -652) 89196) ((-396 . -111) 89175) ((-224 . -257) 89159) ((-1063 . -1062) 89099) ((-1063 . -1109) T) ((-1013 . -1161) T) ((-824 . -1109) T) ((-459 . -652) 89014) ((-348 . -1230) T) ((-641 . -654) 88998) ((-627 . -111) 88977) ((-613 . -654) 88961) ((-602 . -102) T) ((-315 . -496) 88942) ((-592 . -132) T) ((-601 . -102) T) ((-420 . -1109) T) ((-390 . -1109) T) ((-315 . -619) 88908) ((-229 . -1109) 88886) ((-653 . -520) 88819) ((-638 . -520) 88663) ((-839 . -1058) 88642) ((-650 . -152) 88626) ((-348 . -562) T) ((-718 . -907) 88569) ((-556 . -231) 88519) ((-1268 . -288) 88485) ((-1261 . -288) 88451) ((-1089 . -294) 88402) ((-493 . -854) T) ((-225 . -1121) T) ((-1240 . -288) 88368) ((-1220 . -499) 88334) ((-1013 . -38) 88284) ((-219 . -854) T) ((-424 . -652) 88243) ((-921 . -38) 88195) ((-849 . -800) 88174) ((-849 . -797) 88153) ((-849 . -732) 88132) ((-364 . -294) T) ((-358 . -294) T) ((-350 . -294) T) ((-171 . -458) 88063) ((-433 . -38) 88047) ((-108 . -294) T) ((-225 . -23) T) ((-413 . -800) 88026) ((-413 . -797) 88005) ((-413 . -732) T) ((-506 . -292) 87980) ((-483 . -1065) 87945) ((-664 . -132) T) ((-627 . -622) 87914) ((-1122 . -520) 87847) ((-341 . -132) T) ((-171 . -408) 87826) ((-488 . -723) 87768) ((-821 . -290) 87745) ((-483 . -111) 87701) ((-659 . -1067) T) ((-822 . -1060) 87544) ((-1287 . -1092) T) ((-1249 . -458) 87475) ((-822 . -646) 87324) ((-1286 . -1092) T) ((-1096 . -132) T) ((-1063 . -723) 87266) ((-788 . -132) T) ((-786 . -132) T) ((-577 . -458) T) ((-1036 . -520) 87199) ((-627 . -1058) T) ((-598 . -1109) T) ((-539 . -175) T) ((-467 . -132) T) ((-460 . -132) T) ((-45 . -1109) T) ((-390 . -723) 87169) ((-823 . -1109) T) ((-482 . -520) 87102) ((-469 . -520) 87035) ((-459 . -372) 87005) ((-45 . -616) 86984) ((-320 . -306) T) ((-483 . -622) 86934) ((-1240 . -313) 86819) ((-676 . -619) 86781) ((-59 . -856) 86760) ((-1013 . -406) 86742) ((-554 . -619) 86724) ((-805 . -652) 86683) ((-821 . -610) 86660) ((-522 . -856) 86639) ((-502 . -856) 86618) ((-40 . -1230) T) ((-1008 . -1047) 86514) ((-50 . -132) T) ((-587 . -132) T) ((-524 . -132) T) ((-298 . -654) 86374) ((-348 . -333) 86351) ((-348 . -368) T) ((-326 . -327) 86328) ((-323 . -290) 86313) ((-40 . -562) T) ((-384 . -1211) T) ((-384 . -1214) T) ((-1044 . -1202) 86288) ((-1199 . -237) 86238) ((-1177 . -233) 86190) ((-334 . -1109) T) ((-384 . -95) T) ((-384 . -35) T) ((-1044 . -107) 86136) ((-483 . -1058) T) ((-1300 . -1065) 86120) ((-485 . -237) 86070) ((-1169 . -495) 86004) ((-1291 . -1060) 85988) ((-386 . -1065) 85972) ((-1291 . -646) 85942) ((-483 . -245) T) ((-822 . -102) T) ((-720 . -148) 85921) ((-720 . -146) 85900) ((-490 . -495) 85884) ((-491 . -340) 85853) ((-1300 . -111) 85832) ((-518 . -1109) T) ((-488 . -174) 85811) ((-1008 . -382) 85795) ((-419 . -102) T) ((-386 . -111) 85774) ((-1008 . -343) 85758) ((-282 . -992) 85742) ((-281 . -992) 85726) ((-1298 . -619) 85708) ((-1296 . -619) 85690) ((-110 . -520) NIL) ((-1182 . -1252) 85674) ((-860 . -858) 85658) ((-1188 . -1109) T) ((-103 . -1226) T) ((-959 . -956) 85619) ((-823 . -723) 85561) ((-1240 . -1161) NIL) ((-487 . -956) 85506) ((-1071 . -144) T) ((-60 . -102) 85484) ((-44 . -619) 85466) ((-78 . -619) 85448) ((-356 . -654) 85393) ((-1288 . -1109) T) ((-517 . -856) T) ((-348 . -1121) T) ((-299 . -1109) T) ((-1008 . -907) 85352) ((-299 . -616) 85331) ((-1300 . -622) 85280) ((-1268 . -38) 85177) ((-1261 . -38) 85018) ((-1240 . -38) 84814) ((-493 . -1067) T) ((-386 . -622) 84798) ((-219 . -1067) T) ((-348 . -23) T) ((-153 . -619) 84780) ((-839 . -801) 84759) ((-839 . -798) 84738) ((-1225 . -622) 84719) ((-602 . -38) 84692) ((-601 . -38) 84589) ((-876 . -562) T) ((-225 . -132) T) ((-323 . -1011) 84555) ((-79 . -619) 84537) ((-718 . -311) 84516) ((-298 . -732) 84418) ((-830 . -102) T) ((-870 . -850) T) ((-298 . -479) 84397) ((-1291 . -102) T) ((-40 . -368) T) ((-878 . -148) 84376) ((-491 . -652) 84358) ((-878 . -146) 84337) ((-1168 . -495) 84319) ((-1300 . -1058) T) ((-488 . -520) 84252) ((-1155 . -1226) T) ((-971 . -619) 84234) ((-653 . -495) 84218) ((-638 . -495) 84149) ((-821 . -619) 83880) ((-48 . -27) T) ((-1188 . -723) 83777) ((-659 . -1109) T) ((-867 . -866) T) ((-442 . -369) 83751) ((-737 . -652) 83661) ((-1111 . -102) T) ((-979 . -1109) T) ((-870 . -1109) T) ((-822 . -313) 83648) ((-539 . -533) T) ((-539 . -582) T) ((-1296 . -387) 83620) ((-1063 . -520) 83553) ((-1169 . -290) 83529) ((-242 . -233) 83498) ((-254 . -1060) 83395) ((-253 . -1060) 83292) ((-1288 . -723) 83262) ((-1176 . -93) T) ((-1003 . -93) T) ((-823 . -174) 83241) ((-254 . -646) 83183) ((-253 . -646) 83125) ((-1223 . -496) 83102) ((-229 . -520) 83035) ((-627 . -801) 83014) ((-627 . -798) 82993) ((-1223 . -619) 82905) ((-224 . -1226) T) ((-681 . -619) 82837) ((-1184 . -652) 82747) ((-1166 . -1019) 82731) ((-950 . -102) 82681) ((-356 . -732) T) ((-867 . -619) 82663) ((-1183 . -652) 82545) ((-1177 . -652) 82382) ((-1135 . -652) 82292) ((-1240 . -406) 82244) ((-1122 . -495) 82228) ((-60 . -313) 82166) ((-335 . -102) T) ((-1220 . -21) T) ((-1220 . -25) T) ((-40 . -1121) T) ((-717 . -21) T) ((-633 . -619) 82148) ((-521 . -327) 82127) ((-717 . -25) T) ((-445 . -102) T) ((-108 . -290) NIL) ((-928 . -1121) T) ((-40 . -23) T) ((-777 . -1121) T) ((-570 . -1230) T) ((-501 . -1230) T) ((-323 . -619) 82109) ((-1013 . -233) 82091) ((-171 . -167) 82075) ((-586 . -562) T) ((-570 . -562) T) ((-501 . -562) T) ((-777 . -23) T) ((-1260 . -148) 82054) ((-1169 . -610) 82030) ((-1260 . -146) 82009) ((-1036 . -495) 81993) ((-1239 . -146) 81918) ((-1239 . -148) 81843) ((-1291 . -1297) 81822) ((-482 . -495) 81806) ((-469 . -495) 81790) ((-529 . -34) T) ((-659 . -723) 81760) ((-112 . -976) T) ((-668 . -856) 81739) ((-1188 . -174) 81690) ((-370 . -102) T) ((-242 . -240) 81669) ((-254 . -102) T) ((-253 . -102) T) ((-1249 . -956) 81638) ((-247 . -856) 81617) ((-822 . -38) 81466) ((-45 . -520) 81258) ((-1168 . -290) 81233) ((-216 . -1109) T) ((-1159 . -1109) T) ((-1159 . -616) 81212) ((-592 . -25) T) ((-592 . -21) T) ((-1111 . -313) 81150) ((-970 . -417) 81134) ((-705 . -1230) T) ((-638 . -290) 81109) ((-1096 . -645) 81057) ((-788 . -645) 81005) ((-786 . -645) 80953) ((-348 . -132) T) ((-293 . -619) 80935) ((-912 . -1109) T) ((-705 . -562) T) ((-130 . -622) 80917) ((-876 . -1121) T) ((-460 . -645) 80865) ((-912 . -910) 80849) ((-384 . -458) T) ((-493 . -1109) T) ((-950 . -313) 80787) ((-707 . -654) 80774) ((-555 . -850) T) ((-219 . -1109) T) ((-320 . -927) 80753) ((-317 . -927) T) ((-317 . -826) NIL) ((-396 . -726) T) ((-876 . -23) T) ((-117 . -654) 80740) ((-480 . -146) 80719) ((-424 . -417) 80703) ((-480 . -148) 80682) ((-110 . -495) 80664) ((-315 . -622) 80645) ((-2 . -619) 80627) ((-188 . -102) T) ((-1168 . -19) 80609) ((-1168 . -610) 80584) ((-664 . -21) T) ((-664 . -25) T) ((-599 . -1153) T) ((-1122 . -290) 80561) ((-341 . -25) T) ((-341 . -21) T) ((-242 . -652) 80311) ((-501 . -368) T) ((-1291 . -38) 80281) ((-1182 . -1060) 80104) ((-1151 . -1226) T) ((-1134 . -1060) 79947) ((-860 . -1060) 79931) ((-638 . -610) 79906) ((-1298 . -1065) 79890) ((-1296 . -1065) 79874) ((-1182 . -646) 79703) ((-1134 . -646) 79552) ((-860 . -646) 79522) ((-1260 . -1211) 79488) ((-1260 . -1214) 79454) ((-555 . -1109) T) ((-1096 . -25) T) ((-1096 . -21) T) ((-537 . -798) T) ((-537 . -801) T) ((-118 . -1230) T) ((-970 . -1067) T) ((-629 . -562) T) ((-788 . -25) T) ((-788 . -21) T) ((-786 . -21) T) ((-786 . -25) T) ((-741 . -1067) T) ((-721 . -1067) T) ((-676 . -1065) 79438) ((-523 . -1092) T) ((-467 . -25) T) ((-118 . -562) T) ((-467 . -21) T) ((-460 . -25) T) ((-460 . -21) T) ((-1260 . -95) 79404) ((-1160 . -93) T) ((-1151 . -1047) 79300) ((-823 . -294) 79279) ((-1243 . -102) 79257) ((-829 . -1109) T) ((-973 . -976) T) ((-676 . -111) 79236) ((-623 . -1226) T) ((-299 . -520) 79028) ((-1240 . -233) 78980) ((-1239 . -1211) 78946) ((-1239 . -1214) 78912) ((-254 . -313) 78850) ((-253 . -313) 78788) ((-1234 . -373) T) ((-1169 . -620) NIL) ((-1169 . -619) 78770) ((-1231 . -850) T) ((-1151 . -382) 78754) ((-1129 . -826) T) ((-96 . -93) T) ((-1129 . -927) T) ((-1122 . -610) 78731) ((-1089 . -620) 78715) ((-1013 . -652) 78665) ((-921 . -652) 78602) ((-821 . -292) 78579) ((-490 . -619) 78511) ((-614 . -152) 78458) ((-493 . -723) 78408) ((-424 . -1067) T) ((-488 . -495) 78392) ((-433 . -652) 78351) ((-331 . -856) 78330) ((-344 . -654) 78304) ((-50 . -21) T) ((-50 . -25) T) ((-219 . -723) 78254) ((-171 . -730) 78225) ((-176 . -654) 78157) ((-587 . -21) T) ((-587 . -25) T) ((-524 . -25) T) ((-524 . -21) T) ((-481 . -152) 78107) ((-1089 . -619) 78089) ((-1070 . -619) 78071) ((-1002 . -102) T) ((-868 . -102) T) ((-805 . -417) 78034) ((-40 . -132) T) ((-705 . -368) T) ((-707 . -732) T) ((-707 . -800) T) ((-707 . -797) T) ((-214 . -902) T) ((-586 . -1121) T) ((-570 . -1121) T) ((-501 . -1121) T) ((-364 . -619) 78016) ((-358 . -619) 77998) ((-350 . -619) 77980) ((-66 . -402) T) ((-66 . -401) T) ((-108 . -620) 77910) ((-108 . -619) 77852) ((-213 . -902) T) ((-965 . -152) 77836) ((-777 . -132) T) ((-676 . -622) 77754) ((-135 . -732) T) ((-117 . -732) T) ((-1260 . -35) 77720) ((-1063 . -495) 77704) ((-586 . -23) T) ((-570 . -23) T) ((-501 . -23) T) ((-1239 . -95) 77670) ((-1239 . -35) 77636) ((-1182 . -102) T) ((-1134 . -102) T) ((-860 . -102) T) ((-229 . -495) 77620) ((-1298 . -111) 77599) ((-1296 . -111) 77578) ((-44 . -1065) 77562) ((-1298 . -622) 77508) ((-1249 . -1252) 77492) ((-861 . -858) 77476) ((-1298 . -1058) T) ((-1188 . -294) 77455) ((-110 . -290) 77430) ((-1296 . -622) 77359) ((-129 . -152) 77341) ((-1151 . -907) 77300) ((-44 . -111) 77279) ((-1231 . -1109) T) ((-1191 . -1271) T) ((-1176 . -496) 77260) ((-1176 . -619) 77226) ((-676 . -1058) T) ((-1168 . -620) NIL) ((-1168 . -619) 77208) ((-1072 . -616) 77183) ((-1072 . -1109) T) ((-1003 . -496) 77164) ((-74 . -447) T) ((-74 . -401) T) ((-1003 . -619) 77130) ((-153 . -1065) 77114) ((-676 . -235) 77093) ((-577 . -560) 77077) ((-360 . -148) 77056) ((-360 . -146) 77007) ((-357 . -148) 76986) ((-357 . -146) 76937) ((-349 . -148) 76916) ((-349 . -146) 76867) ((-267 . -146) 76846) ((-267 . -148) 76825) ((-254 . -38) 76795) ((-249 . -148) 76774) ((-118 . -368) T) ((-249 . -146) 76753) ((-253 . -38) 76723) ((-153 . -111) 76702) ((-1012 . -1047) 76590) ((-1177 . -854) NIL) ((-700 . -1230) T) ((-805 . -1067) T) ((-705 . -1121) T) ((-1296 . -1058) T) ((-1166 . -1226) T) ((-1012 . -382) 76567) ((-917 . -146) T) ((-917 . -148) 76549) ((-876 . -132) T) ((-821 . -1065) 76446) ((-705 . -23) T) ((-700 . -562) T) ((-227 . -1060) 76411) ((-653 . -619) 76343) ((-653 . -620) 76304) ((-638 . -620) NIL) ((-638 . -619) 76286) ((-493 . -174) T) ((-227 . -646) 76251) ((-225 . -21) T) ((-219 . -174) T) ((-225 . -25) T) ((-480 . -1214) 76217) ((-480 . -1211) 76183) ((-277 . -619) 76165) ((-276 . -619) 76147) ((-275 . -619) 76129) ((-274 . -619) 76111) ((-273 . -619) 76093) ((-506 . -657) 76075) ((-272 . -619) 76057) ((-344 . -732) T) ((-271 . -619) 76039) ((-110 . -19) 76021) ((-176 . -732) T) ((-506 . -378) 76003) ((-214 . -619) 75985) ((-526 . -1158) 75969) ((-506 . -124) T) ((-110 . -610) 75944) ((-213 . -619) 75926) ((-480 . -35) 75892) ((-480 . -95) 75858) ((-211 . -619) 75840) ((-210 . -619) 75822) ((-209 . -619) 75804) ((-208 . -619) 75786) ((-205 . -619) 75768) ((-204 . -619) 75750) ((-203 . -619) 75732) ((-202 . -619) 75714) ((-201 . -619) 75696) ((-200 . -619) 75678) ((-199 . -619) 75660) ((-542 . -1112) 75612) ((-198 . -619) 75594) ((-197 . -619) 75576) ((-45 . -495) 75513) ((-196 . -619) 75495) ((-195 . -619) 75477) ((-153 . -622) 75446) ((-1124 . -102) T) ((-821 . -111) 75336) ((-650 . -102) 75286) ((-488 . -290) 75263) ((-1122 . -619) 74994) ((-1110 . -1109) T) ((-1055 . -1226) T) ((-1299 . -1047) 74978) ((-1071 . -1060) 74965) ((-1182 . -313) 74952) ((-959 . -1060) 74795) ((-1144 . -1109) T) ((-1134 . -313) 74782) ((-629 . -1121) T) ((-1071 . -646) 74769) ((-1105 . -1092) T) ((-959 . -646) 74618) ((-1099 . -1092) T) ((-487 . -1060) 74461) ((-1082 . -1092) T) ((-1075 . -1092) T) ((-1045 . -1092) T) ((-1028 . -1092) T) ((-118 . -1121) T) ((-487 . -646) 74310) ((-825 . -102) T) ((-632 . -1092) T) ((-629 . -23) T) ((-1159 . -520) 74102) ((-489 . -1092) T) ((-392 . -102) T) ((-328 . -102) T) ((-220 . -1092) T) ((-970 . -1109) T) ((-153 . -1058) T) ((-737 . -417) 74086) ((-118 . -23) T) ((-1012 . -907) 74038) ((-741 . -1109) T) ((-721 . -1109) T) ((-459 . -1109) T) ((-413 . -1226) T) ((-320 . -436) 74022) ((-598 . -93) T) ((-1268 . -652) 73932) ((-1036 . -620) 73893) ((-1033 . -1230) T) ((-227 . -102) T) ((-1036 . -619) 73855) ((-1261 . -652) 73737) ((-822 . -233) 73721) ((-821 . -622) 73451) ((-1240 . -652) 73288) ((-1033 . -562) T) ((-839 . -654) 73261) ((-359 . -1230) T) ((-482 . -619) 73223) ((-482 . -620) 73184) ((-469 . -620) 73145) ((-469 . -619) 73107) ((-602 . -652) 73066) ((-413 . -891) 73050) ((-323 . -1065) 72885) ((-413 . -893) 72810) ((-601 . -652) 72720) ((-849 . -1047) 72616) ((-493 . -520) NIL) ((-488 . -610) 72593) ((-359 . -562) T) ((-219 . -520) NIL) ((-878 . -458) T) ((-424 . -1109) T) ((-413 . -1047) 72457) ((-323 . -111) 72278) ((-700 . -368) T) ((-227 . -288) T) ((-1223 . -622) 72255) ((-48 . -1230) T) ((-821 . -1058) 72185) ((-1182 . -1161) 72163) ((-586 . -132) T) ((-570 . -132) T) ((-501 . -132) T) ((-1169 . -292) 72139) ((-48 . -562) T) ((-1071 . -102) T) ((-959 . -102) T) ((-877 . -1060) 72084) ((-320 . -27) 72063) ((-821 . -235) 72015) ((-251 . -841) 71997) ((-242 . -854) 71976) ((-189 . -841) 71958) ((-719 . -102) T) ((-299 . -495) 71895) ((-877 . -646) 71840) ((-487 . -102) T) ((-737 . -1067) T) ((-618 . -619) 71822) ((-618 . -620) 71683) ((-413 . -382) 71667) ((-413 . -343) 71651) ((-323 . -622) 71477) ((-1182 . -38) 71306) ((-1134 . -38) 71155) ((-860 . -38) 71125) ((-396 . -654) 71109) ((-650 . -313) 71047) ((-1160 . -496) 71028) ((-1160 . -619) 70994) ((-970 . -723) 70891) ((-741 . -723) 70861) ((-224 . -107) 70845) ((-45 . -290) 70770) ((-627 . -654) 70744) ((-316 . -1109) T) ((-293 . -1065) 70731) ((-110 . -619) 70713) ((-110 . -620) 70695) ((-459 . -723) 70665) ((-822 . -256) 70604) ((-695 . -1109) 70582) ((-556 . -1109) T) ((-1184 . -1067) T) ((-1183 . -1067) T) ((-96 . -496) 70563) ((-1177 . -1067) T) ((-293 . -111) 70548) ((-1135 . -1067) T) ((-556 . -616) 70527) ((-96 . -619) 70493) ((-1013 . -854) T) ((-229 . -693) 70451) ((-700 . -1121) T) ((-1220 . -746) 70427) ((-1033 . -368) T) ((-844 . -841) 70409) ((-839 . -800) 70388) ((-413 . -907) 70347) ((-323 . -1058) T) ((-348 . -25) T) ((-348 . -21) T) ((-171 . -1060) 70257) ((-68 . -1226) T) ((-839 . -797) 70236) ((-424 . -723) 70210) ((-805 . -1109) T) ((-718 . -927) 70189) ((-705 . -132) T) ((-171 . -646) 70017) ((-700 . -23) T) ((-493 . -294) T) ((-839 . -732) 69996) ((-323 . -235) 69948) ((-323 . -245) 69927) ((-219 . -294) T) ((-130 . -373) T) ((-1260 . -458) 69906) ((-1239 . -458) 69885) ((-359 . -333) 69862) ((-359 . -368) T) ((-1149 . -619) 69844) ((-45 . -1264) 69794) ((-877 . -102) T) ((-650 . -286) 69778) ((-705 . -1069) T) ((-1287 . -102) T) ((-1286 . -102) T) ((-483 . -654) 69743) ((-474 . -1109) T) ((-45 . -610) 69668) ((-1168 . -292) 69643) ((-293 . -622) 69615) ((-40 . -645) 69554) ((-1249 . -1060) 69377) ((-861 . -1060) 69361) ((-48 . -368) T) ((-1115 . -619) 69343) ((-1249 . -646) 69172) ((-861 . -646) 69142) ((-638 . -292) 69117) ((-822 . -652) 69027) ((-577 . -1060) 69014) ((-488 . -619) 68745) ((-242 . -417) 68714) ((-959 . -313) 68701) ((-577 . -646) 68688) ((-65 . -1226) T) ((-1072 . -520) 68532) ((-677 . -1109) T) ((-629 . -132) T) ((-487 . -313) 68519) ((-612 . -1109) T) ((-552 . -102) T) ((-118 . -132) T) ((-293 . -1058) T) ((-182 . -1109) T) ((-162 . -1109) T) ((-157 . -1109) T) ((-155 . -1109) T) ((-459 . -767) T) ((-31 . -1092) T) ((-970 . -174) 68470) ((-979 . -93) T) ((-1089 . -1065) 68380) ((-627 . -800) 68359) ((-599 . -1109) T) ((-627 . -797) 68338) ((-627 . -732) T) ((-299 . -290) 68317) ((-298 . -1226) T) ((-1063 . -619) 68279) ((-1063 . -620) 68240) ((-1033 . -1121) T) ((-171 . -102) T) ((-278 . -856) T) ((-1175 . -1109) T) ((-824 . -619) 68222) ((-1122 . -292) 68199) ((-1111 . -231) 68183) ((-1012 . -311) T) ((-805 . -723) 68167) ((-364 . -1065) 68119) ((-359 . -1121) T) ((-358 . -1065) 68071) ((-420 . -619) 68053) ((-390 . -619) 68035) ((-350 . -1065) 67987) ((-229 . -619) 67919) ((-1089 . -111) 67815) ((-1033 . -23) T) ((-108 . -1065) 67765) ((-905 . -102) T) ((-847 . -102) T) ((-814 . -102) T) ((-775 . -102) T) ((-683 . -102) T) ((-480 . -458) 67744) ((-424 . -174) T) ((-364 . -111) 67682) ((-358 . -111) 67620) ((-350 . -111) 67558) ((-254 . -233) 67527) ((-253 . -233) 67496) ((-359 . -23) T) ((-71 . -1226) T) ((-227 . -38) 67461) ((-108 . -111) 67395) ((-40 . -25) T) ((-40 . -21) T) ((-676 . -726) T) ((-171 . -288) 67373) ((-48 . -1121) T) ((-928 . -25) T) ((-777 . -25) T) ((-1300 . -654) 67347) ((-1159 . -495) 67284) ((-491 . -1109) T) ((-1291 . -652) 67243) ((-1249 . -102) T) ((-1071 . -1161) T) ((-861 . -102) T) ((-242 . -1067) 67173) ((-971 . -798) 67126) ((-971 . -801) 67079) ((-386 . -654) 67063) ((-48 . -23) T) ((-821 . -801) 67014) ((-821 . -798) 66965) ((-554 . -373) T) ((-299 . -610) 66944) ((-483 . -732) T) ((-577 . -102) T) ((-1089 . -622) 66762) ((-251 . -187) T) ((-189 . -187) T) ((-877 . -313) 66719) ((-659 . -290) 66698) ((-112 . -667) T) ((-364 . -622) 66635) ((-358 . -622) 66572) ((-350 . -622) 66509) ((-76 . -1226) T) ((-108 . -622) 66459) ((-112 . -113) T) ((-1071 . -38) 66446) ((-670 . -379) 66425) ((-959 . -38) 66274) ((-737 . -1109) T) ((-487 . -38) 66123) ((-86 . -1226) T) ((-598 . -496) 66104) ((-577 . -288) T) ((-1240 . -854) NIL) ((-598 . -619) 66070) ((-1184 . -1109) T) ((-1183 . -1109) T) ((-1089 . -1058) T) ((-356 . -1047) 66047) ((-823 . -496) 66031) ((-1013 . -1067) T) ((-45 . -619) 66013) ((-45 . -620) NIL) ((-921 . -1067) T) ((-823 . -619) 65982) ((-1177 . -1109) T) ((-1156 . -102) 65960) ((-1089 . -245) 65911) ((-433 . -1067) T) ((-364 . -1058) T) ((-370 . -369) 65888) ((-358 . -1058) T) ((-350 . -1058) T) ((-254 . -240) 65867) ((-253 . -240) 65846) ((-1089 . -235) 65771) ((-1135 . -1109) T) ((-298 . -907) 65730) ((-108 . -1058) T) ((-700 . -132) T) ((-424 . -520) 65572) ((-364 . -235) 65551) ((-364 . -245) T) ((-44 . -726) T) ((-358 . -235) 65530) ((-358 . -245) T) ((-350 . -235) 65509) ((-350 . -245) T) ((-1176 . -622) 65490) ((-171 . -313) 65455) ((-108 . -245) T) ((-108 . -235) T) ((-1003 . -622) 65436) ((-323 . -798) T) ((-876 . -21) T) ((-876 . -25) T) ((-413 . -311) T) ((-506 . -34) T) ((-110 . -292) 65411) ((-1122 . -1065) 65308) ((-877 . -1161) NIL) ((-334 . -619) 65290) ((-413 . -1031) 65268) ((-1122 . -111) 65158) ((-697 . -1271) T) ((-442 . -1109) T) ((-252 . -1109) T) ((-1300 . -732) T) ((-63 . -619) 65140) ((-877 . -38) 65085) ((-529 . -1226) T) ((-608 . -152) 65069) ((-518 . -619) 65051) ((-1249 . -313) 65038) ((-737 . -723) 64887) ((-537 . -799) T) ((-537 . -800) T) ((-570 . -645) 64869) ((-501 . -645) 64829) ((-360 . -458) T) ((-357 . -458) T) ((-349 . -458) T) ((-267 . -458) 64780) ((-531 . -1109) T) ((-526 . -1109) 64730) ((-249 . -458) 64681) ((-1159 . -290) 64660) ((-1188 . -619) 64642) ((-695 . -520) 64575) ((-970 . -294) 64554) ((-556 . -520) 64346) ((-254 . -652) 64166) ((-253 . -652) 63973) ((-1288 . -619) 63942) ((-1288 . -496) 63926) ((-1182 . -233) 63910) ((-1122 . -622) 63640) ((-171 . -1161) 63619) ((-1184 . -723) 63516) ((-1183 . -723) 63357) ((-973 . -113) T) ((-899 . -102) T) ((-1177 . -723) 63153) ((-1135 . -723) 63050) ((-1166 . -680) 63034) ((-360 . -408) 62985) ((-357 . -408) 62936) ((-349 . -408) 62887) ((-1033 . -132) T) ((-805 . -520) 62799) ((-299 . -620) NIL) ((-299 . -619) 62781) ((-917 . -458) T) ((-971 . -373) 62734) ((-821 . -373) 62713) ((-516 . -515) 62692) ((-514 . -515) 62671) ((-493 . -290) NIL) ((-488 . -292) 62648) ((-424 . -294) T) ((-359 . -132) T) ((-219 . -290) NIL) ((-700 . -499) NIL) ((-99 . -1121) T) ((-171 . -38) 62476) ((-1260 . -982) 62438) ((-1156 . -313) 62376) ((-1239 . -982) 62345) ((-917 . -408) T) ((-1122 . -1058) 62275) ((-1262 . -562) T) ((-1159 . -610) 62254) ((-112 . -856) T) ((-1072 . -495) 62185) ((-586 . -21) T) ((-586 . -25) T) ((-570 . -21) T) ((-570 . -25) T) ((-501 . -25) T) ((-501 . -21) T) ((-1249 . -1161) 62163) ((-1122 . -235) 62115) ((-48 . -132) T) ((-1207 . -102) T) ((-242 . -1109) 61905) ((-877 . -406) 61882) ((-1097 . -102) T) ((-1085 . -102) T) ((-614 . -102) T) ((-481 . -102) T) ((-1249 . -38) 61711) ((-861 . -38) 61681) ((-1043 . -1060) 61655) ((-737 . -174) 61566) ((-659 . -619) 61548) ((-651 . -1092) T) ((-1043 . -646) 61532) ((-577 . -38) 61519) ((-979 . -496) 61500) ((-979 . -619) 61466) ((-965 . -102) 61416) ((-870 . -619) 61398) ((-870 . -620) 61320) ((-599 . -520) NIL) ((-1268 . -1067) T) ((-1261 . -1067) T) ((-326 . -1060) 61302) ((-1240 . -1067) T) ((-1304 . -1121) T) ((-1220 . -148) 61281) ((-326 . -646) 61263) ((-1220 . -146) 61242) ((-1194 . -102) T) ((-1193 . -102) T) ((-1192 . -102) T) ((-1184 . -174) 61193) ((-602 . -1067) T) ((-601 . -1067) T) ((-1183 . -174) 61124) ((-1177 . -174) 61055) ((-384 . -1060) 61020) ((-1160 . -622) 61001) ((-1135 . -174) 60952) ((-1013 . -1109) T) ((-980 . -1109) T) ((-921 . -1109) T) ((-384 . -646) 60917) ((-805 . -803) 60901) ((-705 . -25) T) ((-705 . -21) T) ((-118 . -645) 60878) ((-707 . -893) 60860) ((-433 . -1109) T) ((-320 . -1230) 60839) ((-317 . -1230) T) ((-171 . -406) 60823) ((-842 . -1060) 60793) ((-480 . -982) 60755) ((-131 . -102) T) ((-129 . -102) T) ((-72 . -619) 60737) ((-833 . -1060) 60721) ((-108 . -801) T) ((-108 . -798) T) ((-707 . -1047) 60703) ((-320 . -562) 60682) ((-317 . -562) T) ((-842 . -646) 60652) ((-833 . -646) 60622) ((-1304 . -23) T) ((-135 . -1047) 60604) ((-96 . -622) 60585) ((-1002 . -652) 60567) ((-488 . -1065) 60464) ((-45 . -292) 60389) ((-242 . -723) 60331) ((-523 . -102) T) ((-488 . -111) 60221) ((-1101 . -102) 60191) ((-1043 . -102) T) ((-1182 . -652) 60101) ((-1134 . -652) 60011) ((-860 . -652) 59970) ((-650 . -834) 59949) ((-737 . -520) 59892) ((-1063 . -1065) 59876) ((-1144 . -93) T) ((-1072 . -290) 59851) ((-629 . -21) T) ((-629 . -25) T) ((-530 . -1109) T) ((-676 . -654) 59825) ((-366 . -102) T) ((-326 . -102) T) ((-390 . -1065) 59809) ((-1063 . -111) 59788) ((-822 . -417) 59772) ((-118 . -25) T) ((-89 . -619) 59754) ((-118 . -21) T) ((-614 . -313) 59549) ((-481 . -313) 59353) ((-1159 . -620) NIL) ((-390 . -111) 59332) ((-384 . -102) T) ((-216 . -619) 59314) ((-1159 . -619) 59296) ((-1177 . -520) 59065) ((-1013 . -723) 59015) ((-1135 . -520) 58985) ((-921 . -723) 58937) ((-488 . -622) 58667) ((-356 . -311) T) ((-1199 . -152) 58617) ((-965 . -313) 58555) ((-842 . -102) T) ((-433 . -723) 58539) ((-227 . -834) T) ((-833 . -102) T) ((-831 . -102) T) ((-485 . -152) 58489) ((-1260 . -1259) 58468) ((-1129 . -1230) T) ((-344 . -1047) 58435) ((-1260 . -1254) 58405) ((-1260 . -1257) 58389) ((-1239 . -1238) 58368) ((-80 . -619) 58350) ((-912 . -619) 58332) ((-1239 . -1254) 58309) ((-1129 . -562) T) ((-928 . -856) T) ((-777 . -856) T) ((-678 . -856) T) ((-493 . -620) 58239) ((-493 . -619) 58180) ((-384 . -288) T) ((-1239 . -1236) 58164) ((-1262 . -1121) T) ((-219 . -620) 58094) ((-219 . -619) 58035) ((-1298 . -654) 58009) ((-1072 . -610) 57984) ((-824 . -622) 57968) ((-59 . -152) 57952) ((-522 . -152) 57936) ((-502 . -152) 57920) ((-364 . -1295) 57904) ((-358 . -1295) 57888) ((-350 . -1295) 57872) ((-320 . -368) 57851) ((-317 . -368) T) ((-488 . -1058) 57781) ((-700 . -645) 57763) ((-1296 . -654) 57737) ((-129 . -313) NIL) ((-1262 . -23) T) ((-695 . -495) 57721) ((-64 . -619) 57703) ((-1122 . -801) 57654) ((-1122 . -798) 57605) ((-556 . -495) 57542) ((-676 . -34) T) ((-488 . -235) 57494) ((-299 . -292) 57473) ((-242 . -174) 57452) ((-822 . -1067) T) ((-44 . -654) 57410) ((-1089 . -373) 57361) ((-1096 . -146) 57340) ((-737 . -294) 57271) ((-526 . -520) 57204) ((-823 . -1065) 57155) ((-1096 . -148) 57134) ((-555 . -619) 57116) ((-364 . -373) 57095) ((-358 . -373) 57074) ((-350 . -373) 57053) ((-975 . -1226) T) ((-877 . -233) 57030) ((-823 . -111) 56972) ((-788 . -146) 56951) ((-788 . -148) 56930) ((-267 . -956) 56897) ((-254 . -854) 56876) ((-249 . -956) 56821) ((-253 . -854) 56800) ((-786 . -146) 56779) ((-786 . -148) 56758) ((-153 . -654) 56732) ((-585 . -1109) T) ((-460 . -148) 56711) ((-460 . -146) 56690) ((-676 . -732) T) ((-829 . -619) 56672) ((-1268 . -1109) T) ((-1261 . -1109) T) ((-1240 . -1109) T) ((-1220 . -1214) 56638) ((-1220 . -1211) 56604) ((-1184 . -294) 56583) ((-1183 . -294) 56534) ((-1177 . -294) 56485) ((-1135 . -294) 56464) ((-344 . -907) 56445) ((-1013 . -174) T) ((-921 . -174) T) ((-700 . -21) T) ((-700 . -25) T) ((-227 . -652) 56395) ((-602 . -1109) T) ((-601 . -1109) T) ((-480 . -1257) 56379) ((-480 . -1254) 56349) ((-424 . -290) 56277) ((-553 . -856) T) ((-320 . -1121) 56126) ((-317 . -1121) T) ((-1220 . -35) 56092) ((-1220 . -95) 56058) ((-84 . -619) 56040) ((-91 . -102) 56018) ((-1304 . -132) T) ((-720 . -1060) 55988) ((-598 . -622) 55969) ((-587 . -146) T) ((-587 . -148) 55951) ((-524 . -148) 55933) ((-524 . -146) T) ((-720 . -646) 55903) ((-320 . -23) 55755) ((-40 . -347) 55729) ((-317 . -23) T) ((-823 . -622) 55643) ((-1168 . -657) 55625) ((-1291 . -1067) T) ((-1168 . -378) 55607) ((-821 . -654) 55455) ((-1105 . -102) T) ((-1099 . -102) T) ((-1082 . -102) T) ((-171 . -233) 55439) ((-1075 . -102) T) ((-1045 . -102) T) ((-1028 . -102) T) ((-599 . -495) 55421) ((-632 . -102) T) ((-242 . -520) 55354) ((-489 . -102) T) ((-1298 . -732) T) ((-1296 . -732) T) ((-220 . -102) T) ((-1188 . -1065) 55237) ((-1071 . -652) 55209) ((-959 . -652) 55119) ((-1188 . -111) 54988) ((-882 . -1092) T) ((-487 . -652) 54898) ((-867 . -175) T) ((-823 . -1058) T) ((-687 . -1092) T) ((-682 . -1092) T) ((-521 . -102) T) ((-516 . -102) T) ((-48 . -645) 54858) ((-514 . -102) T) ((-484 . -1092) T) ((-1288 . -1065) 54828) ((-139 . -1092) T) ((-138 . -1092) T) ((-134 . -1092) T) ((-1043 . -38) 54812) ((-823 . -235) T) ((-823 . -245) 54791) ((-1288 . -111) 54756) ((-1268 . -723) 54653) ((-1261 . -723) 54494) ((-556 . -290) 54473) ((-1249 . -233) 54457) ((-1231 . -619) 54439) ((-612 . -93) T) ((-1072 . -620) NIL) ((-1072 . -619) 54421) ((-677 . -93) T) ((-182 . -93) T) ((-162 . -93) T) ((-157 . -93) T) ((-155 . -93) T) ((-1240 . -723) 54217) ((-1012 . -927) T) ((-153 . -732) T) ((-1188 . -622) 54070) ((-1122 . -373) 54049) ((-1033 . -25) T) ((-1013 . -520) NIL) ((-254 . -417) 54018) ((-253 . -417) 53987) ((-1033 . -21) T) ((-878 . -1060) 53939) ((-602 . -723) 53912) ((-601 . -723) 53809) ((-805 . -290) 53767) ((-127 . -102) 53745) ((-839 . -1047) 53641) ((-171 . -834) 53620) ((-323 . -654) 53517) ((-821 . -34) T) ((-720 . -102) T) ((-1129 . -1121) T) ((-1035 . -1226) T) ((-878 . -646) 53469) ((-384 . -38) 53434) ((-359 . -25) T) ((-359 . -21) T) ((-189 . -102) T) ((-163 . -102) T) ((-251 . -102) T) ((-158 . -102) T) ((-360 . -1283) 53418) ((-357 . -1283) 53402) ((-349 . -1283) 53386) ((-171 . -354) 53365) ((-570 . -856) T) ((-1129 . -23) T) ((-87 . -619) 53347) ((-707 . -311) T) ((-842 . -38) 53317) ((-833 . -38) 53287) ((-1288 . -622) 53229) ((-1262 . -132) T) ((-1159 . -292) 53208) ((-971 . -732) 53107) ((-971 . -799) 53060) ((-971 . -800) 53013) ((-821 . -797) 52992) ((-117 . -311) T) ((-91 . -313) 52930) ((-681 . -34) T) ((-556 . -610) 52909) ((-48 . -25) T) ((-48 . -21) T) ((-821 . -800) 52860) ((-821 . -799) 52839) ((-707 . -1031) T) ((-659 . -1065) 52823) ((-877 . -652) 52753) ((-821 . -732) 52663) ((-971 . -479) 52616) ((-488 . -801) 52567) ((-488 . -798) 52518) ((-917 . -1283) 52505) ((-1188 . -1058) T) ((-659 . -111) 52484) ((-1188 . -330) 52461) ((-1212 . -102) 52439) ((-1110 . -619) 52421) ((-707 . -551) T) ((-822 . -1109) T) ((-1288 . -1058) T) ((-1144 . -496) 52402) ((-1232 . -102) T) ((-419 . -1109) T) ((-1144 . -619) 52368) ((-254 . -1067) 52298) ((-253 . -1067) 52228) ((-844 . -102) T) ((-293 . -654) 52215) ((-599 . -290) 52190) ((-695 . -693) 52148) ((-970 . -619) 52130) ((-878 . -102) T) ((-741 . -619) 52112) ((-721 . -619) 52094) ((-1268 . -174) 52045) ((-1261 . -174) 51976) ((-1240 . -174) 51907) ((-705 . -856) T) ((-1013 . -294) T) ((-459 . -619) 51889) ((-633 . -732) T) ((-60 . -1109) 51867) ((-247 . -152) 51851) ((-921 . -294) T) ((-1033 . -1021) T) ((-633 . -479) T) ((-718 . -1230) 51830) ((-659 . -622) 51748) ((-171 . -652) 51643) ((-1276 . -856) 51622) ((-602 . -174) 51601) ((-601 . -174) 51552) ((-1260 . -646) 51393) ((-1260 . -1060) 51228) ((-1239 . -646) 51042) ((-1239 . -1060) 50850) ((-718 . -562) 50761) ((-413 . -927) T) ((-413 . -826) 50740) ((-323 . -800) T) ((-979 . -622) 50721) ((-323 . -732) T) ((-424 . -619) 50703) ((-424 . -620) 50610) ((-650 . -1158) 50594) ((-110 . -657) 50576) ((-176 . -311) T) ((-127 . -313) 50514) ((-110 . -378) 50496) ((-404 . -1226) T) ((-320 . -132) 50367) ((-317 . -132) T) ((-69 . -401) T) ((-110 . -124) T) ((-526 . -495) 50351) ((-660 . -1121) T) ((-599 . -19) 50333) ((-61 . -447) T) ((-61 . -401) T) ((-830 . -1109) T) ((-599 . -610) 50308) ((-483 . -1047) 50268) ((-659 . -1058) T) ((-660 . -23) T) ((-1291 . -1109) T) ((-31 . -102) T) ((-1249 . -652) 50178) ((-861 . -652) 50137) ((-822 . -723) 49986) ((-583 . -866) T) ((-577 . -652) 49958) ((-118 . -856) NIL) ((-1182 . -417) 49942) ((-1134 . -417) 49926) ((-860 . -417) 49910) ((-879 . -102) 49861) ((-1260 . -102) T) ((-1240 . -520) 49630) ((-1239 . -102) T) ((-1212 . -313) 49568) ((-1184 . -290) 49553) ((-1183 . -290) 49538) ((-531 . -93) T) ((-1177 . -290) 49386) ((-316 . -619) 49368) ((-1111 . -1109) T) ((-1089 . -654) 49278) ((-717 . -458) T) ((-695 . -619) 49210) ((-293 . -732) T) ((-108 . -916) NIL) ((-695 . -620) 49171) ((-607 . -619) 49153) ((-583 . -619) 49135) ((-556 . -620) NIL) ((-556 . -619) 49117) ((-535 . -619) 49099) ((-517 . -515) 49078) ((-493 . -1065) 49028) ((-480 . -1060) 48863) ((-513 . -515) 48842) ((-480 . -646) 48683) ((-219 . -1065) 48633) ((-364 . -654) 48585) ((-358 . -654) 48537) ((-227 . -854) T) ((-350 . -654) 48489) ((-608 . -102) 48439) ((-488 . -373) 48418) ((-108 . -654) 48368) ((-493 . -111) 48302) ((-242 . -495) 48286) ((-348 . -148) 48268) ((-348 . -146) T) ((-171 . -375) 48239) ((-950 . -1274) 48223) ((-219 . -111) 48157) ((-878 . -313) 48122) ((-950 . -1109) 48072) ((-805 . -620) 48033) ((-805 . -619) 48015) ((-724 . -102) T) ((-335 . -1109) T) ((-216 . -622) 47992) ((-1129 . -132) T) ((-720 . -38) 47962) ((-320 . -499) 47941) ((-506 . -1226) T) ((-1260 . -288) 47907) ((-1239 . -288) 47873) ((-331 . -152) 47857) ((-445 . -1109) T) ((-1072 . -292) 47832) ((-1291 . -723) 47802) ((-1169 . -34) T) ((-1300 . -1047) 47779) ((-474 . -619) 47761) ((-490 . -34) T) ((-386 . -1047) 47745) ((-1182 . -1067) T) ((-1134 . -1067) T) ((-860 . -1067) T) ((-1071 . -854) T) ((-493 . -622) 47695) ((-219 . -622) 47645) ((-822 . -174) 47556) ((-526 . -290) 47533) ((-1268 . -294) 47512) ((-1207 . -369) 47486) ((-1097 . -269) 47470) ((-677 . -496) 47451) ((-677 . -619) 47417) ((-612 . -496) 47398) ((-118 . -1001) 47375) ((-612 . -619) 47325) ((-480 . -102) T) ((-182 . -496) 47306) ((-182 . -619) 47272) ((-162 . -496) 47253) ((-157 . -496) 47234) ((-155 . -496) 47215) ((-162 . -619) 47181) ((-157 . -619) 47147) ((-370 . -1109) T) ((-254 . -1109) T) ((-253 . -1109) T) ((-155 . -619) 47113) ((-1261 . -294) 47064) ((-1240 . -294) 47015) ((-878 . -1161) 46993) ((-1184 . -1011) 46959) ((-614 . -369) 46899) ((-1183 . -1011) 46865) ((-614 . -231) 46812) ((-700 . -856) T) ((-599 . -619) 46794) ((-599 . -620) NIL) ((-481 . -231) 46744) ((-493 . -1058) T) ((-1177 . -1011) 46710) ((-88 . -446) T) ((-88 . -401) T) ((-219 . -1058) T) ((-1135 . -1011) 46676) ((-1089 . -732) T) ((-718 . -1121) T) ((-602 . -294) 46655) ((-601 . -294) 46634) ((-493 . -245) T) ((-493 . -235) T) ((-219 . -245) T) ((-219 . -235) T) ((-1175 . -619) 46616) ((-878 . -38) 46568) ((-364 . -732) T) ((-358 . -732) T) ((-350 . -732) T) ((-108 . -800) T) ((-108 . -797) T) ((-718 . -23) T) ((-108 . -732) T) ((-526 . -1264) 46552) ((-1304 . -25) T) ((-480 . -288) 46518) ((-1304 . -21) T) ((-1239 . -313) 46457) ((-1186 . -102) T) ((-40 . -146) 46429) ((-40 . -148) 46401) ((-526 . -610) 46378) ((-1122 . -654) 46226) ((-608 . -313) 46164) ((-45 . -657) 46114) ((-45 . -672) 46064) ((-45 . -378) 46014) ((-1168 . -34) T) ((-877 . -854) NIL) ((-660 . -132) T) ((-491 . -619) 45996) ((-242 . -290) 45973) ((-188 . -1109) T) ((-1096 . -458) 45924) ((-822 . -520) 45798) ((-670 . -1060) 45782) ((-653 . -34) T) ((-638 . -34) T) ((-788 . -458) 45713) ((-670 . -646) 45697) ((-360 . -1060) 45649) ((-357 . -1060) 45601) ((-349 . -1060) 45553) ((-267 . -1060) 45396) ((-249 . -1060) 45239) ((-786 . -458) 45190) ((-360 . -646) 45142) ((-357 . -646) 45094) ((-349 . -646) 45046) ((-267 . -646) 44895) ((-249 . -646) 44744) ((-460 . -458) 44695) ((-959 . -417) 44679) ((-737 . -619) 44661) ((-254 . -723) 44603) ((-253 . -723) 44545) ((-737 . -620) 44406) ((-487 . -417) 44390) ((-344 . -306) T) ((-530 . -93) T) ((-356 . -927) T) ((-1009 . -102) 44368) ((-917 . -1060) 44333) ((-1033 . -856) T) ((-60 . -520) 44266) ((-917 . -646) 44231) ((-1239 . -1161) 44183) ((-1013 . -290) NIL) ((-227 . -1067) T) ((-384 . -834) T) ((-1122 . -34) T) ((-587 . -458) T) ((-524 . -458) T) ((-1243 . -1102) 44167) ((-1243 . -1109) 44145) ((-242 . -610) 44122) ((-1243 . -1104) 44079) ((-1184 . -619) 44061) ((-1183 . -619) 44043) ((-1177 . -619) 44025) ((-1177 . -620) NIL) ((-1135 . -619) 44007) ((-878 . -406) 43991) ((-603 . -102) T) ((-591 . -102) T) ((-542 . -102) T) ((-1260 . -38) 43832) ((-1239 . -38) 43646) ((-876 . -148) T) ((-587 . -408) T) ((-524 . -408) T) ((-1272 . -102) T) ((-1262 . -21) T) ((-1262 . -25) T) ((-1122 . -797) 43625) ((-1122 . -800) 43576) ((-1122 . -799) 43555) ((-1002 . -1109) T) ((-1036 . -34) T) ((-868 . -1109) T) ((-1122 . -732) 43465) ((-670 . -102) T) ((-651 . -102) T) ((-556 . -292) 43444) ((-1199 . -102) T) ((-482 . -34) T) ((-469 . -34) T) ((-360 . -102) T) ((-357 . -102) T) ((-349 . -102) T) ((-267 . -102) T) ((-249 . -102) T) ((-483 . -311) T) ((-1071 . -1067) T) ((-959 . -1067) T) ((-320 . -645) 43350) ((-317 . -645) 43311) ((-1182 . -1109) T) ((-487 . -1067) T) ((-485 . -102) T) ((-442 . -619) 43293) ((-1134 . -1109) T) ((-252 . -619) 43275) ((-860 . -1109) T) ((-1150 . -102) T) ((-822 . -294) 43206) ((-970 . -1065) 43089) ((-483 . -1031) T) ((-741 . -1065) 43059) ((-1043 . -652) 43018) ((-459 . -1065) 42988) ((-1156 . -1130) 42972) ((-1111 . -520) 42905) ((-970 . -111) 42774) ((-917 . -102) T) ((-741 . -111) 42739) ((-531 . -496) 42720) ((-531 . -619) 42686) ((-59 . -102) 42636) ((-526 . -620) 42597) ((-526 . -619) 42509) ((-525 . -102) 42487) ((-522 . -102) 42437) ((-503 . -102) 42415) ((-502 . -102) 42365) ((-459 . -111) 42328) ((-254 . -174) 42307) ((-253 . -174) 42286) ((-326 . -652) 42268) ((-424 . -1065) 42242) ((-1220 . -982) 42204) ((-1008 . -1121) T) ((-384 . -652) 42154) ((-1144 . -622) 42135) ((-950 . -520) 42068) ((-493 . -801) T) ((-480 . -38) 41909) ((-424 . -111) 41876) ((-493 . -798) T) ((-1009 . -313) 41814) ((-219 . -801) T) ((-219 . -798) T) ((-1008 . -23) T) ((-718 . -132) T) ((-1239 . -406) 41784) ((-842 . -652) 41729) ((-833 . -652) 41688) ((-320 . -25) 41540) ((-171 . -417) 41524) ((-320 . -21) 41395) ((-317 . -25) T) ((-317 . -21) T) ((-870 . -373) T) ((-970 . -622) 41248) ((-110 . -34) T) ((-741 . -622) 41204) ((-721 . -622) 41186) ((-488 . -654) 41034) ((-877 . -1067) T) ((-599 . -292) 41009) ((-586 . -148) T) ((-570 . -148) T) ((-501 . -148) T) ((-1182 . -723) 40838) ((-1066 . -102) 40816) ((-1134 . -723) 40665) ((-1129 . -645) 40647) ((-860 . -723) 40617) ((-676 . -1226) T) ((-1 . -102) T) ((-424 . -622) 40525) ((-242 . -619) 40256) ((-1124 . -1109) T) ((-1249 . -417) 40240) ((-1199 . -313) 40044) ((-970 . -1058) T) ((-741 . -1058) T) ((-721 . -1058) T) ((-650 . -1109) 39994) ((-1063 . -654) 39978) ((-861 . -417) 39962) ((-517 . -102) T) ((-513 . -102) T) ((-267 . -313) 39949) ((-249 . -313) 39936) ((-970 . -330) 39915) ((-390 . -654) 39899) ((-676 . -1047) 39795) ((-485 . -313) 39599) ((-254 . -520) 39532) ((-253 . -520) 39465) ((-1150 . -313) 39391) ((-825 . -1109) T) ((-805 . -1065) 39375) ((-1268 . -290) 39360) ((-1261 . -290) 39345) ((-1240 . -290) 39193) ((-392 . -1109) T) ((-328 . -1109) T) ((-424 . -1058) T) ((-171 . -1067) T) ((-59 . -313) 39131) ((-805 . -111) 39110) ((-601 . -290) 39095) ((-525 . -313) 39033) ((-522 . -313) 38971) ((-503 . -313) 38909) ((-502 . -313) 38847) ((-424 . -235) 38826) ((-488 . -34) T) ((-1013 . -620) 38756) ((-227 . -1109) T) ((-1013 . -619) 38716) ((-980 . -619) 38676) ((-980 . -620) 38651) ((-921 . -619) 38633) ((-705 . -148) T) ((-707 . -927) T) ((-707 . -826) T) ((-433 . -619) 38615) ((-1129 . -21) T) ((-1129 . -25) T) ((-676 . -382) 38599) ((-117 . -927) T) ((-878 . -233) 38583) ((-78 . -1226) T) ((-127 . -126) 38567) ((-1063 . -34) T) ((-1298 . -1047) 38541) ((-1296 . -1047) 38498) ((-1249 . -1067) T) ((-861 . -1067) T) ((-488 . -797) 38477) ((-360 . -1161) 38456) ((-357 . -1161) 38435) ((-349 . -1161) 38414) ((-488 . -800) 38365) ((-488 . -799) 38344) ((-229 . -34) T) ((-488 . -732) 38254) ((-805 . -622) 38100) ((-668 . -1060) 38084) ((-60 . -495) 38068) ((-577 . -1067) T) ((-668 . -646) 38052) ((-1182 . -174) 37943) ((-1134 . -174) 37854) ((-1071 . -1109) T) ((-1096 . -956) 37799) ((-959 . -1109) T) ((-823 . -654) 37750) ((-788 . -956) 37719) ((-719 . -1109) T) ((-786 . -956) 37686) ((-522 . -286) 37670) ((-676 . -907) 37629) ((-487 . -1109) T) ((-460 . -956) 37596) ((-79 . -1226) T) ((-360 . -38) 37561) ((-357 . -38) 37526) ((-349 . -38) 37491) ((-267 . -38) 37340) ((-249 . -38) 37189) ((-917 . -1161) T) ((-530 . -496) 37170) ((-629 . -148) 37149) ((-629 . -146) 37128) ((-530 . -619) 37094) ((-118 . -148) T) ((-118 . -146) NIL) ((-420 . -732) T) ((-805 . -1058) T) ((-348 . -458) T) ((-1268 . -1011) 37060) ((-1261 . -1011) 37026) ((-1240 . -1011) 36992) ((-917 . -38) 36957) ((-227 . -723) 36922) ((-323 . -47) 36892) ((-40 . -415) 36864) ((-141 . -619) 36846) ((-1008 . -132) T) ((-821 . -1226) T) ((-176 . -927) T) ((-555 . -373) T) ((-612 . -622) 36827) ((-348 . -408) T) ((-720 . -652) 36772) ((-677 . -622) 36753) ((-182 . -622) 36734) ((-162 . -622) 36715) ((-157 . -622) 36696) ((-155 . -622) 36677) ((-526 . -292) 36654) ((-1239 . -233) 36624) ((-882 . -102) T) ((-821 . -1047) 36451) ((-45 . -34) T) ((-687 . -102) T) ((-682 . -102) T) ((-668 . -102) T) ((-660 . -21) T) ((-660 . -25) T) ((-1111 . -495) 36435) ((-681 . -1226) T) ((-484 . -102) T) ((-247 . -102) 36385) ((-552 . -850) T) ((-138 . -102) T) ((-134 . -102) T) ((-139 . -102) T) ((-877 . -1109) T) ((-1188 . -654) 36310) ((-1071 . -723) 36297) ((-737 . -1065) 36140) ((-1182 . -520) 36087) ((-959 . -723) 35936) ((-1134 . -520) 35888) ((-1287 . -1109) T) ((-1286 . -1109) T) ((-487 . -723) 35737) ((-67 . -619) 35719) ((-737 . -111) 35548) ((-950 . -495) 35532) ((-1288 . -654) 35492) ((-823 . -732) T) ((-1184 . -1065) 35375) ((-1183 . -1065) 35210) ((-1177 . -1065) 35000) ((-1135 . -1065) 34883) ((-1012 . -1230) T) ((-1103 . -102) 34861) ((-821 . -382) 34830) ((-585 . -619) 34812) ((-552 . -1109) T) ((-1012 . -562) T) ((-1184 . -111) 34681) ((-1183 . -111) 34502) ((-1177 . -111) 34271) ((-1135 . -111) 34140) ((-1114 . -1112) 34104) ((-384 . -854) T) ((-1268 . -619) 34086) ((-1261 . -619) 34068) ((-878 . -652) 34005) ((-1240 . -619) 33987) ((-1240 . -620) NIL) ((-242 . -292) 33964) ((-40 . -458) T) ((-227 . -174) T) ((-171 . -1109) T) ((-737 . -622) 33749) ((-700 . -148) T) ((-700 . -146) NIL) ((-602 . -619) 33731) ((-601 . -619) 33713) ((-905 . -1109) T) ((-847 . -1109) T) ((-814 . -1109) T) ((-775 . -1109) T) ((-664 . -858) 33697) ((-683 . -1109) T) ((-821 . -907) 33629) ((-1231 . -373) T) ((-40 . -408) NIL) ((-1184 . -622) 33511) ((-1129 . -667) T) ((-877 . -723) 33456) ((-254 . -495) 33440) ((-253 . -495) 33424) ((-1183 . -622) 33167) ((-1177 . -622) 32962) ((-718 . -645) 32910) ((-659 . -654) 32884) ((-1135 . -622) 32766) ((-299 . -34) T) ((-1129 . -113) T) ((-737 . -1058) T) ((-587 . -1283) 32753) ((-524 . -1283) 32730) ((-1249 . -1109) T) ((-1182 . -294) 32641) ((-1134 . -294) 32572) ((-1071 . -174) T) ((-861 . -1109) T) ((-959 . -174) 32483) ((-788 . -1252) 32467) ((-650 . -520) 32400) ((-77 . -619) 32382) ((-737 . -330) 32347) ((-1188 . -732) T) ((-577 . -1109) T) ((-487 . -174) 32258) ((-247 . -313) 32196) ((-1151 . -1121) T) ((-70 . -619) 32178) ((-1288 . -732) T) ((-1184 . -1058) T) ((-1183 . -1058) T) ((-331 . -102) 32128) ((-1177 . -1058) T) ((-1151 . -23) T) ((-1135 . -1058) T) ((-91 . -1130) 32112) ((-872 . -1121) T) ((-1184 . -235) 32071) ((-1183 . -245) 32050) ((-1183 . -235) 32002) ((-1177 . -235) 31889) ((-1177 . -245) 31868) ((-323 . -907) 31774) ((-872 . -23) T) ((-171 . -723) 31602) ((-413 . -1230) T) ((-1110 . -373) T) ((-1012 . -368) T) ((-876 . -458) T) ((-1033 . -148) T) ((-950 . -290) 31579) ((-317 . -856) NIL) ((-1260 . -652) 31461) ((-880 . -102) T) ((-1239 . -652) 31316) ((-718 . -25) T) ((-413 . -562) T) ((-718 . -21) T) ((-531 . -622) 31297) ((-359 . -148) 31279) ((-359 . -146) T) ((-1156 . -1109) 31257) ((-459 . -726) T) ((-75 . -619) 31239) ((-115 . -856) T) ((-247 . -286) 31223) ((-242 . -1065) 31120) ((-81 . -619) 31102) ((-741 . -373) 31055) ((-1186 . -834) T) ((-743 . -237) 31039) ((-1169 . -1226) T) ((-142 . -237) 31021) ((-242 . -111) 30911) ((-1249 . -723) 30740) ((-48 . -148) T) ((-877 . -174) T) ((-861 . -723) 30710) ((-490 . -1226) T) ((-959 . -520) 30657) ((-659 . -732) T) ((-577 . -723) 30644) ((-1043 . -1067) T) ((-487 . -520) 30587) ((-950 . -19) 30571) ((-950 . -610) 30548) ((-822 . -620) NIL) ((-822 . -619) 30530) ((-1220 . -1060) 30413) ((-1013 . -1065) 30363) ((-419 . -619) 30345) ((-254 . -290) 30322) ((-253 . -290) 30299) ((-493 . -916) NIL) ((-320 . -29) 30269) ((-108 . -1226) T) ((-1012 . -1121) T) ((-219 . -916) NIL) ((-1220 . -646) 30166) ((-921 . -1065) 30118) ((-1089 . -1047) 30014) ((-1013 . -111) 29948) ((-717 . -1060) 29913) ((-1012 . -23) T) ((-921 . -111) 29851) ((-743 . -701) 29835) ((-717 . -646) 29800) ((-267 . -233) 29784) ((-433 . -1065) 29768) ((-384 . -1067) T) ((-242 . -622) 29498) ((-700 . -1214) NIL) ((-493 . -654) 29448) ((-480 . -652) 29330) ((-108 . -891) 29312) ((-108 . -893) 29294) ((-700 . -1211) NIL) ((-219 . -654) 29244) ((-364 . -1047) 29228) ((-358 . -1047) 29212) ((-331 . -313) 29150) ((-350 . -1047) 29134) ((-227 . -294) T) ((-433 . -111) 29113) ((-60 . -619) 29045) ((-171 . -174) T) ((-1129 . -856) T) ((-108 . -1047) 29005) ((-899 . -1109) T) ((-842 . -1067) T) ((-833 . -1067) T) ((-700 . -35) NIL) ((-700 . -95) NIL) ((-317 . -1001) 28966) ((-185 . -102) T) ((-586 . -458) T) ((-570 . -458) T) ((-501 . -458) T) ((-413 . -368) T) ((-242 . -1058) 28896) ((-1159 . -34) T) ((-483 . -927) T) ((-1008 . -645) 28844) ((-254 . -610) 28821) ((-253 . -610) 28798) ((-1089 . -382) 28782) ((-877 . -520) 28690) ((-242 . -235) 28642) ((-1168 . -1226) T) ((-1013 . -622) 28592) ((-921 . -622) 28529) ((-830 . -619) 28511) ((-1299 . -1121) T) ((-1291 . -619) 28493) ((-1249 . -174) 28384) ((-433 . -622) 28353) ((-108 . -382) 28335) ((-108 . -343) 28317) ((-1071 . -294) T) ((-959 . -294) 28248) ((-805 . -373) 28227) ((-653 . -1226) T) ((-638 . -1226) T) ((-592 . -1060) 28202) ((-487 . -294) 28133) ((-577 . -174) T) ((-331 . -286) 28117) ((-1299 . -23) T) ((-1220 . -102) T) ((-1207 . -1109) T) ((-1097 . -1109) T) ((-1085 . -1109) T) ((-592 . -646) 28092) ((-83 . -619) 28074) ((-1193 . -850) T) ((-1192 . -850) T) ((-717 . -102) T) ((-360 . -354) 28053) ((-614 . -1109) T) ((-357 . -354) 28032) ((-349 . -354) 28011) ((-481 . -1109) T) ((-1199 . -231) 27961) ((-267 . -256) 27923) ((-1151 . -132) T) ((-614 . -616) 27899) ((-1089 . -907) 27832) ((-1013 . -1058) T) ((-921 . -1058) T) ((-481 . -616) 27811) ((-1177 . -798) NIL) ((-1177 . -801) NIL) ((-1111 . -620) 27772) ((-485 . -231) 27722) ((-1111 . -619) 27704) ((-1013 . -245) T) ((-1013 . -235) T) ((-433 . -1058) T) ((-965 . -1109) 27654) ((-921 . -245) T) ((-872 . -132) T) ((-705 . -458) T) ((-849 . -1121) 27633) ((-108 . -907) NIL) ((-1220 . -288) 27599) ((-878 . -854) 27578) ((-1122 . -1226) T) ((-912 . -732) T) ((-171 . -520) 27490) ((-1008 . -25) T) ((-912 . -479) T) ((-413 . -1121) T) ((-493 . -800) T) ((-493 . -797) T) ((-917 . -354) T) ((-493 . -732) T) ((-219 . -800) T) ((-219 . -797) T) ((-1008 . -21) T) ((-219 . -732) T) ((-849 . -23) 27442) ((-1194 . -1109) T) ((-664 . -1060) 27426) ((-1193 . -1109) T) ((-530 . -622) 27407) ((-1192 . -1109) T) ((-323 . -311) 27386) ((-1044 . -237) 27332) ((-664 . -646) 27302) ((-413 . -23) T) ((-950 . -620) 27263) ((-950 . -619) 27175) ((-650 . -495) 27159) ((-45 . -1019) 27109) ((-623 . -976) T) ((-497 . -102) T) ((-335 . -619) 27091) ((-1122 . -1047) 26918) ((-599 . -657) 26900) ((-131 . -1109) T) ((-129 . -1109) T) ((-599 . -378) 26882) ((-348 . -1283) 26859) ((-445 . -619) 26841) ((-1249 . -520) 26788) ((-1096 . -1060) 26631) ((-1036 . -1226) T) ((-877 . -294) T) ((-1182 . -290) 26558) ((-1096 . -646) 26407) ((-1009 . -1004) 26391) ((-788 . -1060) 26214) ((-786 . -1060) 26057) ((-788 . -646) 25886) ((-786 . -646) 25735) ((-482 . -1226) T) ((-469 . -1226) T) ((-592 . -102) T) ((-467 . -1060) 25706) ((-460 . -1060) 25549) ((-670 . -652) 25518) ((-629 . -458) 25497) ((-467 . -646) 25468) ((-460 . -646) 25317) ((-360 . -652) 25254) ((-357 . -652) 25191) ((-349 . -652) 25128) ((-267 . -652) 25038) ((-249 . -652) 24948) ((-1291 . -387) 24920) ((-523 . -1109) T) ((-118 . -458) T) ((-1206 . -102) T) ((-1101 . -1109) 24890) ((-1043 . -1109) T) ((-1124 . -93) T) ((-900 . -856) T) ((-1268 . -111) 24759) ((-356 . -1230) T) ((-1268 . -1065) 24642) ((-1122 . -382) 24611) ((-1261 . -1065) 24446) ((-1240 . -1065) 24236) ((-1261 . -111) 24057) ((-1240 . -111) 23826) ((-1220 . -313) 23813) ((-1012 . -132) T) ((-917 . -652) 23763) ((-370 . -619) 23745) ((-356 . -562) T) ((-293 . -311) T) ((-602 . -1065) 23705) ((-601 . -1065) 23588) ((-587 . -1060) 23553) ((-524 . -1060) 23498) ((-366 . -1109) T) ((-326 . -1109) T) ((-254 . -619) 23459) ((-253 . -619) 23420) ((-587 . -646) 23385) ((-524 . -646) 23330) ((-700 . -415) 23297) ((-641 . -23) T) ((-613 . -23) T) ((-664 . -102) T) ((-602 . -111) 23250) ((-601 . -111) 23119) ((-384 . -1109) T) ((-341 . -102) T) ((-171 . -294) 23030) ((-1239 . -854) 22983) ((-720 . -1067) T) ((-1156 . -520) 22916) ((-1122 . -907) 22848) ((-842 . -1109) T) ((-833 . -1109) T) ((-831 . -1109) T) ((-97 . -102) T) ((-145 . -856) T) ((-618 . -891) 22832) ((-110 . -1226) T) ((-1096 . -102) T) ((-1072 . -34) T) ((-788 . -102) T) ((-786 . -102) T) ((-1268 . -622) 22714) ((-1261 . -622) 22457) ((-467 . -102) T) ((-460 . -102) T) ((-1240 . -622) 22252) ((-242 . -801) 22203) ((-242 . -798) 22154) ((-655 . -102) T) ((-602 . -622) 22112) ((-601 . -622) 21994) ((-1249 . -294) 21905) ((-670 . -640) 21889) ((-188 . -619) 21871) ((-650 . -290) 21848) ((-1043 . -723) 21832) ((-577 . -294) T) ((-970 . -654) 21757) ((-1299 . -132) T) ((-741 . -654) 21717) ((-721 . -654) 21704) ((-278 . -102) T) ((-459 . -654) 21634) ((-50 . -102) T) ((-587 . -102) T) ((-524 . -102) T) ((-1268 . -1058) T) ((-1261 . -1058) T) ((-1240 . -1058) T) ((-513 . -652) 21616) ((-326 . -723) 21598) ((-1268 . -235) 21557) ((-1261 . -245) 21536) ((-1261 . -235) 21488) ((-1240 . -235) 21375) ((-1240 . -245) 21354) ((-1220 . -38) 21251) ((-602 . -1058) T) ((-601 . -1058) T) ((-1013 . -801) T) ((-1013 . -798) T) ((-980 . -801) T) ((-980 . -798) T) ((-878 . -1067) T) ((-109 . -619) 21233) ((-700 . -458) T) ((-384 . -723) 21198) ((-424 . -654) 21172) ((-876 . -875) 21156) ((-717 . -38) 21121) ((-601 . -235) 21080) ((-40 . -730) 21052) ((-356 . -333) 21029) ((-356 . -368) T) ((-1089 . -311) 20980) ((-298 . -1121) 20861) ((-1115 . -1226) T) ((-173 . -102) T) ((-1243 . -619) 20828) ((-849 . -132) 20780) ((-650 . -1264) 20764) ((-842 . -723) 20734) ((-833 . -723) 20704) ((-488 . -1226) T) ((-364 . -311) T) ((-358 . -311) T) ((-350 . -311) T) ((-650 . -610) 20681) ((-413 . -132) T) ((-526 . -672) 20665) ((-108 . -311) T) ((-298 . -23) 20548) ((-526 . -657) 20532) ((-700 . -408) NIL) ((-526 . -378) 20516) ((-295 . -619) 20498) ((-91 . -1109) 20476) ((-108 . -1031) T) ((-570 . -144) T) ((-1276 . -152) 20460) ((-488 . -1047) 20287) ((-1262 . -146) 20248) ((-1262 . -148) 20209) ((-1063 . -1226) T) ((-1002 . -619) 20191) ((-868 . -619) 20173) ((-822 . -1065) 20016) ((-1287 . -93) T) ((-1286 . -93) T) ((-1182 . -620) NIL) ((-1105 . -1109) T) ((-1099 . -1109) T) ((-1096 . -313) 20003) ((-1082 . -1109) T) ((-229 . -1226) T) ((-1075 . -1109) T) ((-1045 . -1109) T) ((-1028 . -1109) T) ((-788 . -313) 19990) ((-786 . -313) 19977) ((-1182 . -619) 19959) ((-822 . -111) 19788) ((-1134 . -619) 19770) ((-632 . -1109) T) ((-583 . -175) T) ((-535 . -175) T) ((-460 . -313) 19757) ((-489 . -1109) T) ((-1134 . -620) 19505) ((-1043 . -174) T) ((-950 . -292) 19482) ((-220 . -1109) T) ((-860 . -619) 19464) ((-614 . -520) 19247) ((-81 . -622) 19188) ((-824 . -1047) 19172) ((-481 . -520) 18964) ((-970 . -732) T) ((-741 . -732) T) ((-721 . -732) T) ((-356 . -1121) T) ((-1189 . -619) 18946) ((-225 . -102) T) ((-488 . -382) 18915) ((-521 . -1109) T) ((-516 . -1109) T) ((-514 . -1109) T) ((-805 . -654) 18889) ((-1033 . -458) T) ((-965 . -520) 18822) ((-356 . -23) T) ((-641 . -132) T) ((-613 . -132) T) ((-359 . -458) T) ((-242 . -373) 18801) ((-384 . -174) T) ((-1260 . -1067) T) ((-1239 . -1067) T) ((-227 . -1011) T) ((-822 . -622) 18538) ((-705 . -393) T) ((-424 . -732) T) ((-707 . -1230) T) ((-1151 . -645) 18486) ((-586 . -875) 18470) ((-1291 . -1065) 18454) ((-1169 . -1202) 18430) ((-707 . -562) T) ((-127 . -1109) 18408) ((-720 . -1109) T) ((-664 . -38) 18378) ((-488 . -907) 18310) ((-251 . -1109) T) ((-189 . -1109) T) ((-359 . -408) T) ((-320 . -148) 18289) ((-320 . -146) 18268) ((-129 . -520) NIL) ((-117 . -562) T) ((-317 . -148) 18224) ((-317 . -146) 18180) ((-48 . -458) T) ((-163 . -1109) T) ((-158 . -1109) T) ((-1169 . -107) 18127) ((-788 . -1161) 18105) ((-695 . -34) T) ((-1291 . -111) 18084) ((-556 . -34) T) ((-490 . -107) 18068) ((-254 . -292) 18045) ((-253 . -292) 18022) ((-877 . -290) 17973) ((-45 . -1226) T) ((-1232 . -850) T) ((-822 . -1058) T) ((-668 . -652) 17942) ((-1188 . -47) 17919) ((-822 . -330) 17881) ((-1096 . -38) 17730) ((-822 . -235) 17709) ((-788 . -38) 17538) ((-786 . -38) 17387) ((-1124 . -496) 17368) ((-460 . -38) 17217) ((-1124 . -619) 17183) ((-1127 . -102) T) ((-650 . -620) 17144) ((-650 . -619) 17056) ((-587 . -1161) T) ((-524 . -1161) T) ((-1156 . -495) 17040) ((-348 . -1060) 16985) ((-1212 . -1109) 16963) ((-1151 . -25) T) ((-1151 . -21) T) ((-348 . -646) 16908) ((-1291 . -622) 16857) ((-480 . -1067) T) ((-1232 . -1109) T) ((-1240 . -798) NIL) ((-1240 . -801) NIL) ((-1008 . -856) 16836) ((-844 . -1109) T) ((-825 . -619) 16818) ((-872 . -21) T) ((-872 . -25) T) ((-805 . -732) T) ((-176 . -1230) T) ((-587 . -38) 16783) ((-524 . -38) 16748) ((-392 . -619) 16730) ((-337 . -102) T) ((-328 . -619) 16712) ((-171 . -290) 16670) ((-63 . -1226) T) ((-112 . -102) T) ((-878 . -1109) T) ((-176 . -562) T) ((-720 . -723) 16640) ((-298 . -132) 16523) ((-227 . -619) 16505) ((-227 . -620) 16435) ((-1012 . -645) 16374) ((-1291 . -1058) T) ((-1129 . -148) T) ((-638 . -1202) 16349) ((-737 . -916) 16328) ((-599 . -34) T) ((-653 . -107) 16312) ((-638 . -107) 16258) ((-1249 . -290) 16185) ((-737 . -654) 16110) ((-299 . -1226) T) ((-1188 . -1047) 16006) ((-950 . -624) 15983) ((-583 . -582) T) ((-583 . -533) T) ((-535 . -533) T) ((-1177 . -916) NIL) ((-1071 . -620) 15898) ((-1071 . -619) 15880) ((-959 . -619) 15862) ((-719 . -496) 15812) ((-348 . -102) T) ((-254 . -1065) 15709) ((-253 . -1065) 15606) ((-400 . -102) T) ((-31 . -1109) T) ((-959 . -620) 15467) ((-719 . -619) 15402) ((-1289 . -1219) 15371) ((-487 . -619) 15353) ((-487 . -620) 15214) ((-267 . -417) 15198) ((-249 . -417) 15182) ((-254 . -111) 15072) ((-253 . -111) 14962) ((-1184 . -654) 14887) ((-1183 . -654) 14784) ((-1177 . -654) 14636) ((-1135 . -654) 14561) ((-356 . -132) T) ((-82 . -447) T) ((-82 . -401) T) ((-1012 . -25) T) ((-1012 . -21) T) ((-879 . -1109) 14512) ((-40 . -1060) 14457) ((-878 . -723) 14409) ((-40 . -646) 14354) ((-384 . -294) T) ((-171 . -1011) 14305) ((-700 . -393) T) ((-1008 . -1006) 14289) ((-707 . -1121) T) ((-700 . -167) 14271) ((-1260 . -1109) T) ((-1239 . -1109) T) ((-320 . -1211) 14250) ((-320 . -1214) 14229) ((-1174 . -102) T) ((-320 . -966) 14208) ((-135 . -1121) T) ((-117 . -1121) T) ((-608 . -1274) 14192) ((-707 . -23) T) ((-608 . -1109) 14142) ((-320 . -95) 14121) ((-91 . -520) 14054) ((-176 . -368) T) ((-254 . -622) 13784) ((-253 . -622) 13514) ((-320 . -35) 13493) ((-614 . -495) 13427) ((-135 . -23) T) ((-117 . -23) T) ((-973 . -102) T) ((-724 . -1109) T) ((-481 . -495) 13364) ((-413 . -645) 13312) ((-659 . -1047) 13208) ((-965 . -495) 13192) ((-360 . -1067) T) ((-357 . -1067) T) ((-349 . -1067) T) ((-267 . -1067) T) ((-249 . -1067) T) ((-877 . -620) NIL) ((-877 . -619) 13174) ((-1287 . -496) 13155) ((-1286 . -496) 13136) ((-1299 . -21) T) ((-1287 . -619) 13102) ((-1286 . -619) 13068) ((-577 . -1011) T) ((-737 . -732) T) ((-1299 . -25) T) ((-254 . -1058) 12998) ((-253 . -1058) 12928) ((-72 . -1226) T) ((-254 . -235) 12880) ((-253 . -235) 12832) ((-40 . -102) T) ((-917 . -1067) T) ((-1191 . -102) T) ((-129 . -495) 12814) ((-1184 . -732) T) ((-1183 . -732) T) ((-1177 . -732) T) ((-1177 . -797) NIL) ((-1177 . -800) NIL) ((-961 . -102) T) ((-928 . -102) T) ((-876 . -1060) 12801) ((-1135 . -732) T) ((-777 . -102) T) ((-678 . -102) T) ((-876 . -646) 12788) ((-552 . -619) 12770) ((-480 . -1109) T) ((-344 . -1121) T) ((-176 . -1121) T) ((-323 . -927) 12749) ((-1260 . -723) 12590) ((-878 . -174) T) ((-1239 . -723) 12404) ((-849 . -21) 12356) ((-849 . -25) 12308) ((-247 . -1158) 12292) ((-127 . -520) 12225) ((-413 . -25) T) ((-413 . -21) T) ((-344 . -23) T) ((-171 . -620) 11991) ((-171 . -619) 11973) ((-176 . -23) T) ((-650 . -292) 11950) ((-526 . -34) T) ((-905 . -619) 11932) ((-89 . -1226) T) ((-847 . -619) 11914) ((-814 . -619) 11896) ((-775 . -619) 11878) ((-683 . -619) 11860) ((-242 . -654) 11708) ((-623 . -113) T) ((-1186 . -1109) T) ((-1182 . -1065) 11531) ((-1159 . -1226) T) ((-1134 . -1065) 11374) ((-860 . -1065) 11358) ((-1243 . -624) 11342) ((-1182 . -111) 11151) ((-1134 . -111) 10980) ((-860 . -111) 10959) ((-1233 . -856) T) ((-1249 . -620) NIL) ((-1249 . -619) 10941) ((-348 . -1161) T) ((-861 . -619) 10923) ((-1085 . -290) 10902) ((-80 . -1226) T) ((-1013 . -916) NIL) ((-614 . -290) 10878) ((-1212 . -520) 10811) ((-493 . -1226) T) ((-577 . -619) 10793) ((-481 . -290) 10772) ((-1220 . -652) 10682) ((-523 . -93) T) ((-1096 . -233) 10666) ((-219 . -1226) T) ((-1013 . -654) 10616) ((-965 . -290) 10593) ((-293 . -927) T) ((-823 . -311) 10572) ((-876 . -102) T) ((-788 . -233) 10556) ((-921 . -654) 10508) ((-717 . -652) 10458) ((-700 . -730) 10425) ((-641 . -21) T) ((-641 . -25) T) ((-613 . -21) T) ((-553 . -102) T) ((-348 . -38) 10390) ((-493 . -891) 10372) ((-493 . -893) 10354) ((-480 . -723) 10195) ((-219 . -891) 10177) ((-64 . -1226) T) ((-219 . -893) 10159) ((-613 . -25) T) ((-433 . -654) 10133) ((-1182 . -622) 9902) ((-493 . -1047) 9862) ((-878 . -520) 9774) ((-1134 . -622) 9566) ((-860 . -622) 9484) ((-219 . -1047) 9444) ((-242 . -34) T) ((-1009 . -1109) 9422) ((-586 . -1060) 9409) ((-570 . -1060) 9396) ((-501 . -1060) 9361) ((-1260 . -174) 9292) ((-1239 . -174) 9223) ((-586 . -646) 9210) ((-570 . -646) 9197) ((-501 . -646) 9162) ((-718 . -146) 9141) ((-718 . -148) 9120) ((-707 . -132) T) ((-137 . -471) 9097) ((-1156 . -619) 9029) ((-664 . -662) 9013) ((-129 . -290) 8988) ((-117 . -132) T) ((-483 . -1230) T) ((-614 . -610) 8964) ((-481 . -610) 8943) ((-341 . -340) 8912) ((-603 . -1109) T) ((-591 . -1109) T) ((-542 . -1109) T) ((-483 . -562) T) ((-1182 . -1058) T) ((-1134 . -1058) T) ((-860 . -1058) T) ((-242 . -797) 8891) ((-242 . -800) 8842) ((-242 . -799) 8821) ((-1182 . -330) 8798) ((-242 . -732) 8708) ((-965 . -19) 8692) ((-493 . -382) 8674) ((-493 . -343) 8656) ((-1134 . -330) 8628) ((-359 . -1283) 8605) ((-219 . -382) 8587) ((-219 . -343) 8569) ((-965 . -610) 8546) ((-1182 . -235) T) ((-1272 . -1109) T) ((-670 . -1109) T) ((-651 . -1109) T) ((-1199 . -1109) T) ((-1096 . -256) 8483) ((-592 . -652) 8443) ((-360 . -1109) T) ((-357 . -1109) T) ((-349 . -1109) T) ((-267 . -1109) T) ((-249 . -1109) T) ((-84 . -1226) T) ((-128 . -102) 8421) ((-122 . -102) 8399) ((-1199 . -616) 8378) ((-1239 . -520) 8238) ((-1150 . -1109) T) ((-1124 . -622) 8219) ((-485 . -1109) T) ((-1089 . -927) 8170) ((-1013 . -800) T) ((-485 . -616) 8149) ((-254 . -801) 8100) ((-254 . -798) 8051) ((-253 . -801) 8002) ((-40 . -1161) NIL) ((-253 . -798) 7953) ((-1013 . -797) T) ((-129 . -19) 7935) ((-1013 . -732) T) ((-705 . -1060) 7900) ((-980 . -800) T) ((-921 . -732) T) ((-917 . -1109) T) ((-129 . -610) 7875) ((-705 . -646) 7840) ((-91 . -495) 7824) ((-493 . -907) NIL) ((-899 . -619) 7806) ((-227 . -1065) 7771) ((-878 . -294) T) ((-219 . -907) NIL) ((-839 . -1121) 7750) ((-59 . -1109) 7700) ((-525 . -1109) 7678) ((-522 . -1109) 7628) ((-503 . -1109) 7606) ((-502 . -1109) 7556) ((-586 . -102) T) ((-570 . -102) T) ((-501 . -102) T) ((-480 . -174) 7487) ((-364 . -927) T) ((-358 . -927) T) ((-350 . -927) T) ((-227 . -111) 7443) ((-839 . -23) 7395) ((-433 . -732) T) ((-108 . -927) T) ((-40 . -38) 7340) ((-108 . -826) T) ((-587 . -354) T) ((-524 . -354) T) ((-842 . -290) 7319) ((-320 . -458) 7298) ((-317 . -458) T) ((-664 . -652) 7257) ((-608 . -520) 7190) ((-344 . -132) T) ((-176 . -132) T) ((-298 . -25) 7054) ((-298 . -21) 6937) ((-45 . -1202) 6916) ((-66 . -619) 6898) ((-55 . -102) T) ((-341 . -652) 6880) ((-45 . -107) 6830) ((-825 . -622) 6814) ((-1277 . -102) T) ((-1276 . -102) 6764) ((-1268 . -654) 6689) ((-1261 . -654) 6586) ((-1240 . -654) 6438) ((-1111 . -431) 6422) ((-1111 . -373) 6401) ((-392 . -622) 6385) ((-328 . -622) 6369) ((-1240 . -916) NIL) ((-1207 . -619) 6351) ((-1072 . -1226) T) ((-1096 . -652) 6261) ((-1071 . -1065) 6248) ((-1071 . -111) 6233) ((-959 . -1065) 6076) ((-959 . -111) 5905) ((-788 . -652) 5815) ((-786 . -652) 5725) ((-629 . -1060) 5712) ((-670 . -723) 5696) ((-629 . -646) 5683) ((-487 . -1065) 5526) ((-483 . -368) T) ((-467 . -652) 5482) ((-460 . -652) 5392) ((-227 . -622) 5342) ((-360 . -723) 5294) ((-357 . -723) 5246) ((-118 . -1060) 5191) ((-349 . -723) 5143) ((-267 . -723) 4992) ((-249 . -723) 4841) ((-1105 . -93) T) ((-1099 . -93) T) ((-118 . -646) 4786) ((-1082 . -93) T) ((-950 . -657) 4770) ((-1075 . -93) T) ((-487 . -111) 4599) ((-1066 . -1109) 4577) ((-1045 . -93) T) ((-950 . -378) 4561) ((-250 . -102) T) ((-1028 . -93) T) ((-74 . -619) 4543) ((-970 . -47) 4522) ((-716 . -102) T) ((-705 . -102) T) ((-1 . -1109) T) ((-627 . -1121) T) ((-1097 . -619) 4504) ((-632 . -93) T) ((-1085 . -619) 4486) ((-917 . -723) 4451) ((-127 . -495) 4435) ((-489 . -93) T) ((-627 . -23) T) ((-396 . -23) T) ((-87 . -1226) T) ((-220 . -93) T) ((-614 . -619) 4417) ((-614 . -620) NIL) ((-481 . -620) NIL) ((-481 . -619) 4399) ((-356 . -25) T) ((-356 . -21) T) ((-50 . -652) 4358) ((-517 . -1109) T) ((-513 . -1109) T) ((-128 . -313) 4296) ((-122 . -313) 4234) ((-602 . -654) 4208) ((-601 . -654) 4133) ((-587 . -652) 4083) ((-227 . -1058) T) ((-524 . -652) 4013) ((-384 . -1011) T) ((-227 . -245) T) ((-227 . -235) T) ((-1071 . -622) 3985) ((-1071 . -624) 3966) ((-965 . -620) 3927) ((-965 . -619) 3839) ((-959 . -622) 3628) ((-876 . -38) 3615) ((-719 . -622) 3565) ((-1260 . -294) 3516) ((-1239 . -294) 3467) ((-487 . -622) 3252) ((-1129 . -458) T) ((-508 . -856) T) ((-320 . -1148) 3231) ((-1008 . -148) 3210) ((-1008 . -146) 3189) ((-501 . -313) 3176) ((-299 . -1202) 3155) ((-1194 . -619) 3137) ((-1193 . -619) 3119) ((-1192 . -619) 3101) ((-877 . -1065) 3046) ((-483 . -1121) T) ((-140 . -841) 3028) ((-115 . -841) 3009) ((-629 . -102) T) ((-1212 . -495) 2993) ((-254 . -373) 2972) ((-253 . -373) 2951) ((-1071 . -1058) T) ((-299 . -107) 2901) ((-131 . -619) 2883) ((-129 . -620) NIL) ((-129 . -619) 2827) ((-118 . -102) T) ((-959 . -1058) T) ((-877 . -111) 2756) ((-483 . -23) T) ((-487 . -1058) T) ((-1071 . -235) T) ((-959 . -330) 2725) ((-487 . -330) 2682) ((-360 . -174) T) ((-357 . -174) T) ((-349 . -174) T) ((-267 . -174) 2593) ((-249 . -174) 2504) ((-970 . -1047) 2400) ((-523 . -496) 2381) ((-741 . -1047) 2352) ((-523 . -619) 2318) ((-1114 . -102) T) ((-1101 . -619) 2277) ((-1043 . -619) 2259) ((-700 . -1060) 2209) ((-1289 . -152) 2193) ((-1287 . -622) 2174) ((-1286 . -622) 2155) ((-1281 . -619) 2137) ((-1268 . -732) T) ((-700 . -646) 2087) ((-1261 . -732) T) ((-1240 . -797) NIL) ((-1240 . -800) NIL) ((-171 . -1065) 1997) ((-917 . -174) T) ((-877 . -622) 1927) ((-1240 . -732) T) ((-1012 . -347) 1901) ((-225 . -652) 1853) ((-1009 . -520) 1786) ((-849 . -856) 1765) ((-570 . -1161) T) ((-480 . -294) 1716) ((-602 . -732) T) ((-366 . -619) 1698) ((-326 . -619) 1680) ((-424 . -1047) 1576) ((-601 . -732) T) ((-413 . -856) 1527) ((-171 . -111) 1423) ((-839 . -132) 1375) ((-743 . -152) 1359) ((-1276 . -313) 1297) ((-493 . -311) T) ((-384 . -619) 1264) ((-526 . -1019) 1248) ((-384 . -620) 1162) ((-219 . -311) T) ((-142 . -152) 1144) ((-720 . -290) 1123) ((-493 . -1031) T) ((-586 . -38) 1110) ((-570 . -38) 1097) ((-501 . -38) 1062) ((-219 . -1031) T) ((-877 . -1058) T) ((-842 . -619) 1044) ((-833 . -619) 1026) ((-831 . -619) 1008) ((-822 . -916) 987) ((-1300 . -1121) T) ((-1249 . -1065) 810) ((-861 . -1065) 794) ((-877 . -245) T) ((-877 . -235) NIL) ((-695 . -1226) T) ((-1300 . -23) T) ((-822 . -654) 719) ((-556 . -1226) T) ((-424 . -343) 703) ((-577 . -1065) 690) ((-1249 . -111) 499) ((-707 . -645) 481) ((-861 . -111) 460) ((-386 . -23) T) ((-171 . -622) 238) ((-1199 . -520) 30) ((-882 . -1109) T) ((-687 . -1109) T) ((-682 . -1109) T) ((-668 . -1109) T)) \ No newline at end of file
+(((-484 . -1109) T) ((-267 . -520) 188487) ((-249 . -520) 188430) ((-247 . -1109) 188380) ((-577 . -111) 188365) ((-537 . -23) T) ((-134 . -1109) T) ((-139 . -1109) T) ((-118 . -313) 188322) ((-138 . -1109) T) ((-485 . -520) 188114) ((-683 . -622) 188098) ((-700 . -102) T) ((-1150 . -520) 188017) ((-396 . -132) T) ((-1290 . -985) 187986) ((-1033 . -1060) 187923) ((-31 . -93) T) ((-608 . -495) 187907) ((-1033 . -646) 187844) ((-627 . -132) T) ((-825 . -852) T) ((-529 . -57) 187794) ((-525 . -520) 187727) ((-359 . -1060) 187672) ((-59 . -520) 187605) ((-522 . -520) 187538) ((-424 . -907) 187497) ((-171 . -1058) T) ((-503 . -520) 187430) ((-502 . -520) 187363) ((-359 . -646) 187308) ((-805 . -1047) 187088) ((-705 . -38) 187053) ((-1250 . -622) 186801) ((-348 . -354) T) ((-1103 . -1102) 186785) ((-1103 . -1109) 186763) ((-861 . -622) 186660) ((-171 . -245) 186611) ((-171 . -235) 186562) ((-1103 . -1104) 186520) ((-878 . -290) 186478) ((-227 . -801) T) ((-227 . -798) T) ((-700 . -288) NIL) ((-577 . -622) 186450) ((-1159 . -1203) 186429) ((-413 . -1001) 186413) ((-48 . -1060) 186378) ((-707 . -21) T) ((-707 . -25) T) ((-48 . -646) 186343) ((-1292 . -654) 186317) ((-320 . -161) 186296) ((-320 . -144) 186275) ((-1159 . -107) 186225) ((-117 . -21) T) ((-40 . -233) 186202) ((-135 . -25) T) ((-117 . -25) T) ((-614 . -292) 186178) ((-481 . -292) 186157) ((-1250 . -330) 186134) ((-1250 . -1058) T) ((-861 . -1058) T) ((-805 . -343) 186118) ((-140 . -187) T) ((-118 . -1161) NIL) ((-91 . -619) 186050) ((-483 . -132) T) ((-1250 . -235) T) ((-1105 . -496) 186031) ((-1105 . -619) 185997) ((-1099 . -496) 185978) ((-1099 . -619) 185944) ((-599 . -1227) T) ((-1082 . -496) 185925) ((-577 . -1058) T) ((-1082 . -619) 185891) ((-668 . -723) 185875) ((-1075 . -496) 185856) ((-1075 . -619) 185822) ((-965 . -292) 185799) ((-60 . -34) T) ((-1071 . -801) T) ((-1071 . -798) T) ((-1045 . -496) 185780) ((-1028 . -496) 185761) ((-822 . -732) T) ((-737 . -47) 185726) ((-629 . -38) 185713) ((-360 . -294) T) ((-357 . -294) T) ((-349 . -294) T) ((-267 . -294) 185644) ((-249 . -294) 185575) ((-1045 . -619) 185541) ((-1033 . -102) T) ((-1028 . -619) 185507) ((-632 . -496) 185488) ((-419 . -732) T) ((-118 . -38) 185433) ((-489 . -496) 185414) ((-632 . -619) 185380) ((-419 . -479) T) ((-220 . -496) 185361) ((-489 . -619) 185327) ((-359 . -102) T) ((-220 . -619) 185293) ((-1221 . -1067) T) ((-348 . -652) 185223) ((-717 . -1067) T) ((-1184 . -47) 185200) ((-1183 . -47) 185170) ((-1177 . -47) 185147) ((-129 . -292) 185122) ((-1044 . -152) 185068) ((-917 . -294) T) ((-1135 . -47) 185040) ((-700 . -313) NIL) ((-521 . -619) 185022) ((-516 . -619) 185004) ((-514 . -619) 184986) ((-331 . -1109) 184936) ((-718 . -458) 184867) ((-48 . -102) T) ((-1261 . -290) 184852) ((-1240 . -290) 184772) ((-650 . -672) 184756) ((-650 . -657) 184740) ((-344 . -21) T) ((-344 . -25) T) ((-40 . -354) NIL) ((-176 . -21) T) ((-176 . -25) T) ((-650 . -378) 184724) ((-611 . -496) 184706) ((-608 . -290) 184683) ((-611 . -619) 184650) ((-394 . -102) T) ((-1129 . -144) T) ((-127 . -619) 184582) ((-880 . -1109) T) ((-664 . -417) 184566) ((-720 . -619) 184548) ((-251 . -619) 184515) ((-189 . -619) 184497) ((-163 . -619) 184479) ((-158 . -619) 184461) ((-1292 . -732) T) ((-1111 . -34) T) ((-877 . -801) NIL) ((-877 . -798) NIL) ((-864 . -856) T) ((-737 . -893) NIL) ((-1301 . -132) T) ((-386 . -132) T) ((-899 . -622) 184429) ((-911 . -102) T) ((-737 . -1047) 184305) ((-537 . -132) T) ((-1096 . -417) 184289) ((-1009 . -495) 184273) ((-118 . -406) 184250) ((-1177 . -1227) 184229) ((-788 . -417) 184213) ((-786 . -417) 184197) ((-950 . -34) T) ((-700 . -1161) NIL) ((-254 . -654) 184032) ((-253 . -654) 183854) ((-823 . -927) 183833) ((-460 . -417) 183817) ((-608 . -19) 183801) ((-1155 . -1220) 183770) ((-1177 . -893) NIL) ((-1177 . -891) 183722) ((-608 . -610) 183699) ((-1213 . -619) 183631) ((-1185 . -619) 183613) ((-62 . -401) T) ((-1183 . -1047) 183548) ((-1177 . -1047) 183514) ((-700 . -38) 183464) ((-40 . -652) 183394) ((-480 . -290) 183379) ((-1233 . -619) 183361) ((-737 . -382) 183345) ((-844 . -619) 183327) ((-664 . -1067) T) ((-1261 . -1011) 183293) ((-1240 . -1011) 183259) ((-1097 . -622) 183243) ((-1072 . -1203) 183218) ((-1085 . -622) 183195) ((-878 . -620) 183002) ((-878 . -619) 182984) ((-1199 . -495) 182921) ((-424 . -1031) 182899) ((-48 . -313) 182886) ((-1072 . -107) 182832) ((-485 . -495) 182769) ((-526 . -1227) T) ((-1177 . -343) 182721) ((-1150 . -495) 182692) ((-1177 . -382) 182644) ((-1096 . -1067) T) ((-443 . -102) T) ((-185 . -1109) T) ((-254 . -34) T) ((-253 . -34) T) ((-788 . -1067) T) ((-786 . -1067) T) ((-737 . -907) 182621) ((-460 . -1067) T) ((-59 . -495) 182605) ((-1043 . -1065) 182579) ((-525 . -495) 182563) ((-522 . -495) 182547) ((-503 . -495) 182531) ((-502 . -495) 182515) ((-247 . -520) 182448) ((-1043 . -111) 182415) ((-1184 . -907) 182328) ((-1183 . -907) 182234) ((-1177 . -907) 182067) ((-1135 . -907) 182051) ((-676 . -1121) T) ((-359 . -1161) T) ((-651 . -93) T) ((-326 . -1065) 182033) ((-254 . -797) 182012) ((-254 . -800) 181963) ((-31 . -496) 181944) ((-254 . -799) 181923) ((-253 . -797) 181902) ((-253 . -800) 181853) ((-253 . -799) 181832) ((-31 . -619) 181798) ((-50 . -1067) T) ((-254 . -732) 181708) ((-253 . -732) 181618) ((-1221 . -1109) T) ((-676 . -23) T) ((-587 . -1067) T) ((-524 . -1067) T) ((-384 . -1065) 181583) ((-326 . -111) 181558) ((-73 . -388) T) ((-73 . -401) T) ((-1033 . -38) 181495) ((-700 . -406) 181477) ((-99 . -102) T) ((-717 . -1109) T) ((-1305 . -1060) 181464) ((-1012 . -146) 181436) ((-1012 . -148) 181408) ((-876 . -652) 181380) ((-384 . -111) 181336) ((-323 . -1231) 181315) ((-480 . -1011) 181281) ((-359 . -38) 181246) ((-40 . -375) 181218) ((-879 . -619) 181090) ((-128 . -126) 181074) ((-122 . -126) 181058) ((-842 . -1065) 181028) ((-839 . -21) 180980) ((-833 . -1065) 180964) ((-839 . -25) 180916) ((-323 . -562) 180867) ((-523 . -622) 180848) ((-570 . -834) T) ((-242 . -1227) T) ((-1043 . -622) 180817) ((-842 . -111) 180782) ((-833 . -111) 180761) ((-1261 . -619) 180743) ((-1240 . -619) 180725) ((-1240 . -620) 180396) ((-1182 . -916) 180375) ((-1134 . -916) 180354) ((-48 . -38) 180319) ((-1299 . -1121) T) ((-608 . -619) 180231) ((-608 . -620) 180192) ((-1297 . -1121) T) ((-366 . -622) 180176) ((-326 . -622) 180160) ((-242 . -1047) 179987) ((-1182 . -654) 179912) ((-1134 . -654) 179837) ((-860 . -654) 179811) ((-724 . -619) 179793) ((-552 . -373) T) ((-1299 . -23) T) ((-1297 . -23) T) ((-497 . -1109) T) ((-384 . -622) 179743) ((-384 . -624) 179725) ((-1043 . -1058) T) ((-871 . -102) T) ((-1199 . -290) 179704) ((-171 . -373) 179655) ((-1013 . -1227) T) ((-842 . -622) 179609) ((-833 . -622) 179564) ((-44 . -23) T) ((-485 . -290) 179543) ((-592 . -1109) T) ((-1155 . -1118) 179512) ((-1113 . -1112) 179464) ((-396 . -21) T) ((-396 . -25) T) ((-153 . -1121) T) ((-1305 . -102) T) ((-1013 . -891) 179446) ((-1013 . -893) 179428) ((-1221 . -723) 179325) ((-629 . -233) 179309) ((-627 . -21) T) ((-293 . -562) T) ((-627 . -25) T) ((-1207 . -1109) T) ((-717 . -723) 179274) ((-242 . -382) 179243) ((-1013 . -1047) 179203) ((-384 . -1058) T) ((-225 . -1067) T) ((-118 . -233) 179180) ((-59 . -290) 179157) ((-153 . -23) T) ((-522 . -290) 179134) ((-331 . -520) 179067) ((-502 . -290) 179044) ((-384 . -245) T) ((-384 . -235) T) ((-842 . -1058) T) ((-833 . -1058) T) ((-718 . -956) 179013) ((-707 . -856) T) ((-480 . -619) 178995) ((-1263 . -1060) 178900) ((-586 . -652) 178872) ((-570 . -652) 178844) ((-501 . -652) 178794) ((-833 . -235) 178773) ((-135 . -856) T) ((-1263 . -646) 178665) ((-664 . -1109) T) ((-1199 . -610) 178644) ((-556 . -1203) 178623) ((-341 . -1109) T) ((-323 . -368) 178602) ((-413 . -148) 178581) ((-413 . -146) 178560) ((-971 . -1121) 178459) ((-242 . -907) 178391) ((-821 . -1121) 178301) ((-660 . -858) 178285) ((-485 . -610) 178264) ((-556 . -107) 178214) ((-1013 . -382) 178196) ((-1013 . -343) 178178) ((-97 . -1109) T) ((-971 . -23) 177989) ((-483 . -21) T) ((-483 . -25) T) ((-821 . -23) 177859) ((-1186 . -619) 177841) ((-59 . -19) 177825) ((-1186 . -620) 177747) ((-1182 . -732) T) ((-1134 . -732) T) ((-522 . -19) 177731) ((-502 . -19) 177715) ((-59 . -610) 177692) ((-1096 . -1109) T) ((-908 . -102) 177670) ((-860 . -732) T) ((-788 . -1109) T) ((-522 . -610) 177647) ((-502 . -610) 177624) ((-786 . -1109) T) ((-786 . -1074) 177591) ((-467 . -1109) T) ((-460 . -1109) T) ((-592 . -723) 177566) ((-655 . -1109) T) ((-1269 . -47) 177543) ((-1263 . -102) T) ((-1262 . -47) 177513) ((-1241 . -47) 177490) ((-1221 . -174) 177441) ((-1183 . -311) 177420) ((-1177 . -311) 177399) ((-1105 . -622) 177380) ((-1099 . -622) 177361) ((-1089 . -562) 177312) ((-1013 . -907) NIL) ((-1089 . -1231) 177263) ((-676 . -132) T) ((-633 . -1121) T) ((-1082 . -622) 177244) ((-1075 . -622) 177225) ((-1045 . -622) 177206) ((-1028 . -622) 177187) ((-705 . -652) 177137) ((-278 . -1109) T) ((-85 . -447) T) ((-85 . -401) T) ((-720 . -1065) 177107) ((-717 . -174) T) ((-50 . -1109) T) ((-601 . -47) 177084) ((-227 . -654) 177049) ((-587 . -1109) T) ((-524 . -1109) T) ((-493 . -826) T) ((-493 . -927) T) ((-364 . -1231) T) ((-358 . -1231) T) ((-350 . -1231) T) ((-323 . -1121) T) ((-320 . -1060) 176959) ((-317 . -1060) 176888) ((-108 . -1231) T) ((-632 . -622) 176869) ((-364 . -562) T) ((-219 . -927) T) ((-219 . -826) T) ((-320 . -646) 176779) ((-317 . -646) 176708) ((-358 . -562) T) ((-350 . -562) T) ((-489 . -622) 176689) ((-108 . -562) T) ((-664 . -723) 176659) ((-1177 . -1031) NIL) ((-220 . -622) 176640) ((-323 . -23) T) ((-67 . -1227) T) ((-1009 . -619) 176572) ((-700 . -233) 176554) ((-720 . -111) 176519) ((-650 . -34) T) ((-247 . -495) 176503) ((-1111 . -1107) 176487) ((-173 . -1109) T) ((-1305 . -1161) T) ((-1301 . -21) T) ((-1301 . -25) T) ((-1299 . -132) T) ((-1297 . -132) T) ((-959 . -916) 176466) ((-1290 . -102) T) ((-1273 . -619) 176432) ((-1262 . -1047) 176367) ((-521 . -622) 176351) ((-1241 . -1227) 176330) ((-1241 . -893) NIL) ((-1241 . -891) 176282) ((-487 . -916) 176261) ((-1241 . -1047) 176227) ((-1221 . -520) 176194) ((-1096 . -723) 176043) ((-1071 . -654) 176030) ((-959 . -654) 175955) ((-603 . -496) 175936) ((-591 . -496) 175917) ((-788 . -723) 175746) ((-603 . -619) 175712) ((-591 . -619) 175678) ((-542 . -619) 175660) ((-542 . -620) 175641) ((-786 . -723) 175490) ((-1086 . -102) T) ((-386 . -25) T) ((-629 . -652) 175462) ((-386 . -21) T) ((-487 . -654) 175387) ((-467 . -723) 175358) ((-460 . -723) 175207) ((-996 . -102) T) ((-1199 . -620) NIL) ((-1199 . -619) 175189) ((-1151 . -1132) 175134) ((-743 . -102) T) ((-118 . -652) 175064) ((-611 . -622) 175046) ((-1055 . -1220) 174975) ((-908 . -313) 174913) ((-537 . -25) T) ((-882 . -93) T) ((-720 . -622) 174867) ((-687 . -93) T) ((-651 . -496) 174848) ((-142 . -102) T) ((-44 . -132) T) ((-682 . -93) T) ((-670 . -619) 174830) ((-348 . -1067) T) ((-293 . -1121) T) ((-651 . -619) 174783) ((-484 . -93) T) ((-360 . -619) 174765) ((-357 . -619) 174747) ((-349 . -619) 174729) ((-267 . -620) 174477) ((-267 . -619) 174459) ((-249 . -619) 174441) ((-249 . -620) 174302) ((-134 . -93) T) ((-139 . -93) T) ((-138 . -93) T) ((-1150 . -619) 174284) ((-1129 . -646) 174271) ((-1129 . -1060) 174258) ((-825 . -732) T) ((-825 . -863) T) ((-608 . -292) 174235) ((-587 . -723) 174200) ((-485 . -620) NIL) ((-485 . -619) 174182) ((-524 . -723) 174127) ((-320 . -102) T) ((-317 . -102) T) ((-293 . -23) T) ((-153 . -132) T) ((-917 . -619) 174109) ((-917 . -620) 174091) ((-392 . -732) T) ((-878 . -1065) 174043) ((-878 . -111) 173981) ((-720 . -1058) T) ((-718 . -1253) 173965) ((-700 . -354) NIL) ((-137 . -102) T) ((-115 . -102) T) ((-140 . -102) T) ((-525 . -619) 173897) ((-384 . -801) T) ((-225 . -1109) T) ((-169 . -1227) T) ((-384 . -798) T) ((-227 . -800) T) ((-227 . -797) T) ((-59 . -620) 173858) ((-59 . -619) 173770) ((-227 . -732) T) ((-522 . -620) 173731) ((-522 . -619) 173643) ((-503 . -619) 173575) ((-502 . -620) 173536) ((-502 . -619) 173448) ((-1089 . -368) 173399) ((-40 . -417) 173376) ((-77 . -1227) T) ((-877 . -916) NIL) ((-364 . -333) 173360) ((-364 . -368) T) ((-358 . -333) 173344) ((-358 . -368) T) ((-350 . -333) 173328) ((-350 . -368) T) ((-320 . -288) 173307) ((-108 . -368) T) ((-70 . -1227) T) ((-1241 . -343) 173259) ((-877 . -654) 173204) ((-1241 . -382) 173156) ((-971 . -132) 173011) ((-821 . -132) 172881) ((-965 . -657) 172865) ((-1096 . -174) 172776) ((-965 . -378) 172760) ((-1071 . -800) T) ((-1071 . -797) T) ((-878 . -622) 172658) ((-788 . -174) 172549) ((-786 . -174) 172460) ((-822 . -47) 172422) ((-1071 . -732) T) ((-331 . -495) 172406) ((-959 . -732) T) ((-1290 . -313) 172344) ((-460 . -174) 172255) ((-247 . -290) 172232) ((-1269 . -907) 172145) ((-1262 . -907) 172051) ((-1261 . -1065) 171886) ((-487 . -732) T) ((-1241 . -907) 171719) ((-1240 . -1065) 171527) ((-1221 . -294) 171506) ((-1196 . -1227) T) ((-1193 . -373) T) ((-1192 . -373) T) ((-1155 . -152) 171490) ((-1129 . -102) T) ((-1127 . -1109) T) ((-1089 . -23) T) ((-1089 . -1121) T) ((-1084 . -102) T) ((-1066 . -619) 171457) ((-934 . -962) T) ((-743 . -313) 171395) ((-75 . -1227) T) ((-670 . -387) 171367) ((-171 . -916) 171320) ((-30 . -962) T) ((-112 . -850) T) ((-1 . -619) 171302) ((-1012 . -415) 171274) ((-129 . -657) 171256) ((-50 . -626) 171240) ((-700 . -652) 171175) ((-601 . -907) 171088) ((-444 . -102) T) ((-129 . -378) 171070) ((-142 . -313) NIL) ((-878 . -1058) T) ((-839 . -856) 171049) ((-81 . -1227) T) ((-717 . -294) T) ((-40 . -1067) T) ((-587 . -174) T) ((-524 . -174) T) ((-517 . -619) 171031) ((-171 . -654) 170941) ((-513 . -619) 170923) ((-356 . -148) 170905) ((-356 . -146) T) ((-364 . -1121) T) ((-358 . -1121) T) ((-350 . -1121) T) ((-1013 . -311) T) ((-921 . -311) T) ((-878 . -245) T) ((-108 . -1121) T) ((-878 . -235) 170884) ((-1261 . -111) 170705) ((-1240 . -111) 170494) ((-247 . -1265) 170478) ((-570 . -854) T) ((-364 . -23) T) ((-359 . -354) T) ((-320 . -313) 170465) ((-317 . -313) 170406) ((-358 . -23) T) ((-323 . -132) T) ((-350 . -23) T) ((-1013 . -1031) T) ((-31 . -622) 170387) ((-108 . -23) T) ((-660 . -1060) 170371) ((-247 . -610) 170348) ((-337 . -1109) T) ((-660 . -646) 170318) ((-1263 . -38) 170210) ((-1250 . -916) 170189) ((-112 . -1109) T) ((-1044 . -102) T) ((-1250 . -654) 170114) ((-877 . -800) NIL) ((-861 . -654) 170088) ((-877 . -797) NIL) ((-822 . -893) NIL) ((-877 . -732) T) ((-1096 . -520) 169961) ((-788 . -520) 169908) ((-786 . -520) 169860) ((-577 . -654) 169847) ((-822 . -1047) 169675) ((-460 . -520) 169618) ((-394 . -395) T) ((-1261 . -622) 169431) ((-1240 . -622) 169179) ((-60 . -1227) T) ((-627 . -856) 169158) ((-506 . -667) T) ((-1155 . -985) 169127) ((-1033 . -652) 169064) ((-1012 . -458) T) ((-705 . -854) T) ((-516 . -798) T) ((-480 . -1065) 168899) ((-506 . -113) T) ((-348 . -1109) T) ((-317 . -1161) NIL) ((-293 . -132) T) ((-400 . -1109) T) ((-876 . -1067) T) ((-700 . -375) 168866) ((-359 . -652) 168796) ((-225 . -626) 168773) ((-331 . -290) 168750) ((-480 . -111) 168571) ((-1261 . -1058) T) ((-1240 . -1058) T) ((-822 . -382) 168555) ((-171 . -732) T) ((-660 . -102) T) ((-1261 . -245) 168534) ((-1261 . -235) 168486) ((-1240 . -235) 168391) ((-1240 . -245) 168370) ((-1012 . -408) NIL) ((-676 . -645) 168318) ((-320 . -38) 168228) ((-317 . -38) 168157) ((-69 . -619) 168139) ((-323 . -499) 168105) ((-48 . -652) 168055) ((-1199 . -292) 168034) ((-1235 . -856) T) ((-1122 . -1121) 167944) ((-83 . -1227) T) ((-61 . -619) 167926) ((-485 . -292) 167905) ((-1292 . -1047) 167882) ((-1174 . -1109) T) ((-1122 . -23) 167752) ((-822 . -907) 167688) ((-1250 . -732) T) ((-1111 . -1227) T) ((-480 . -622) 167514) ((-1096 . -294) 167445) ((-973 . -1109) T) ((-900 . -102) T) ((-788 . -294) 167356) ((-331 . -19) 167340) ((-59 . -292) 167317) ((-786 . -294) 167248) ((-861 . -732) T) ((-118 . -854) NIL) ((-522 . -292) 167225) ((-331 . -610) 167202) ((-502 . -292) 167179) ((-460 . -294) 167110) ((-1044 . -313) 166961) ((-882 . -496) 166942) ((-882 . -619) 166908) ((-687 . -496) 166889) ((-577 . -732) T) ((-682 . -496) 166870) ((-687 . -619) 166820) ((-682 . -619) 166786) ((-668 . -619) 166768) ((-484 . -496) 166749) ((-484 . -619) 166715) ((-247 . -620) 166676) ((-247 . -496) 166653) ((-139 . -496) 166634) ((-138 . -496) 166615) ((-134 . -496) 166596) ((-247 . -619) 166488) ((-215 . -102) T) ((-139 . -619) 166454) ((-138 . -619) 166420) ((-134 . -619) 166386) ((-1156 . -34) T) ((-950 . -1227) T) ((-348 . -723) 166331) ((-676 . -25) T) ((-676 . -21) T) ((-1186 . -622) 166312) ((-480 . -1058) T) ((-641 . -423) 166277) ((-613 . -423) 166242) ((-1129 . -1161) T) ((-718 . -1060) 166065) ((-587 . -294) T) ((-524 . -294) T) ((-1262 . -311) 166044) ((-480 . -235) 165996) ((-480 . -245) 165975) ((-1241 . -311) 165954) ((-718 . -646) 165783) ((-1241 . -1031) NIL) ((-1089 . -132) T) ((-878 . -801) 165762) ((-145 . -102) T) ((-40 . -1109) T) ((-878 . -798) 165741) ((-650 . -1019) 165725) ((-586 . -1067) T) ((-570 . -1067) T) ((-501 . -1067) T) ((-413 . -458) T) ((-364 . -132) T) ((-320 . -406) 165709) ((-317 . -406) 165670) ((-358 . -132) T) ((-350 . -132) T) ((-1191 . -1109) T) ((-1129 . -38) 165657) ((-1103 . -619) 165624) ((-108 . -132) T) ((-961 . -1109) T) ((-928 . -1109) T) ((-777 . -1109) T) ((-678 . -1109) T) ((-707 . -148) T) ((-117 . -148) T) ((-1299 . -21) T) ((-1299 . -25) T) ((-1297 . -21) T) ((-1297 . -25) T) ((-670 . -1065) 165608) ((-537 . -856) T) ((-506 . -856) T) ((-360 . -1065) 165560) ((-357 . -1065) 165512) ((-349 . -1065) 165464) ((-254 . -1227) T) ((-253 . -1227) T) ((-267 . -1065) 165307) ((-249 . -1065) 165150) ((-670 . -111) 165129) ((-553 . -850) T) ((-360 . -111) 165067) ((-357 . -111) 165005) ((-349 . -111) 164943) ((-267 . -111) 164772) ((-249 . -111) 164601) ((-823 . -1231) 164580) ((-629 . -417) 164564) ((-44 . -21) T) ((-44 . -25) T) ((-821 . -645) 164470) ((-823 . -562) 164449) ((-254 . -1047) 164276) ((-253 . -1047) 164103) ((-127 . -120) 164087) ((-917 . -1065) 164052) ((-718 . -102) T) ((-705 . -1067) T) ((-603 . -622) 164033) ((-591 . -622) 164014) ((-542 . -624) 163917) ((-348 . -174) T) ((-88 . -619) 163899) ((-153 . -21) T) ((-153 . -25) T) ((-917 . -111) 163855) ((-40 . -723) 163800) ((-876 . -1109) T) ((-670 . -622) 163777) ((-651 . -622) 163758) ((-360 . -622) 163695) ((-357 . -622) 163632) ((-553 . -1109) T) ((-349 . -622) 163569) ((-331 . -620) 163530) ((-331 . -619) 163442) ((-267 . -622) 163195) ((-249 . -622) 162980) ((-1240 . -798) 162933) ((-1240 . -801) 162886) ((-254 . -382) 162855) ((-253 . -382) 162824) ((-660 . -38) 162794) ((-614 . -34) T) ((-488 . -1121) 162704) ((-481 . -34) T) ((-1122 . -132) 162574) ((-971 . -25) 162385) ((-917 . -622) 162335) ((-880 . -619) 162317) ((-971 . -21) 162272) ((-821 . -21) 162182) ((-821 . -25) 162033) ((-1233 . -373) T) ((-629 . -1067) T) ((-1188 . -562) 162012) ((-1182 . -47) 161989) ((-360 . -1058) T) ((-357 . -1058) T) ((-488 . -23) 161859) ((-349 . -1058) T) ((-267 . -1058) T) ((-249 . -1058) T) ((-1134 . -47) 161831) ((-118 . -1067) T) ((-1043 . -654) 161805) ((-965 . -34) T) ((-360 . -235) 161784) ((-360 . -245) T) ((-357 . -235) 161763) ((-357 . -245) T) ((-349 . -235) 161742) ((-349 . -245) T) ((-267 . -330) 161714) ((-249 . -330) 161671) ((-267 . -235) 161650) ((-1166 . -152) 161634) ((-254 . -907) 161566) ((-253 . -907) 161498) ((-1091 . -856) T) ((-420 . -1121) T) ((-1063 . -23) T) ((-917 . -1058) T) ((-326 . -654) 161480) ((-1033 . -854) T) ((-1221 . -1011) 161446) ((-1183 . -927) 161425) ((-1177 . -927) 161404) ((-1177 . -826) NIL) ((-1008 . -1060) 161300) ((-974 . -1227) T) ((-917 . -245) T) ((-823 . -368) 161279) ((-390 . -23) T) ((-128 . -1109) 161257) ((-122 . -1109) 161235) ((-917 . -235) T) ((-129 . -34) T) ((-384 . -654) 161200) ((-1008 . -646) 161148) ((-876 . -723) 161135) ((-1305 . -652) 161107) ((-1055 . -152) 161072) ((-40 . -174) T) ((-700 . -417) 161054) ((-718 . -313) 161041) ((-842 . -654) 161001) ((-833 . -654) 160975) ((-323 . -25) T) ((-323 . -21) T) ((-664 . -290) 160954) ((-586 . -1109) T) ((-570 . -1109) T) ((-501 . -1109) T) ((-247 . -292) 160931) ((-317 . -233) 160892) ((-1182 . -893) NIL) ((-55 . -1109) T) ((-1134 . -893) 160751) ((-130 . -856) T) ((-1182 . -1047) 160631) ((-1134 . -1047) 160514) ((-185 . -619) 160496) ((-860 . -1047) 160392) ((-788 . -290) 160319) ((-823 . -1121) T) ((-1043 . -732) T) ((-608 . -657) 160303) ((-1055 . -985) 160232) ((-1008 . -102) T) ((-823 . -23) T) ((-718 . -1161) 160210) ((-700 . -1067) T) ((-608 . -378) 160194) ((-356 . -458) T) ((-348 . -294) T) ((-1278 . -1109) T) ((-250 . -1109) T) ((-405 . -102) T) ((-293 . -21) T) ((-293 . -25) T) ((-366 . -732) T) ((-716 . -1109) T) ((-705 . -1109) T) ((-366 . -479) T) ((-1221 . -619) 160176) ((-1182 . -382) 160160) ((-1134 . -382) 160144) ((-1033 . -417) 160106) ((-142 . -231) 160088) ((-384 . -800) T) ((-384 . -797) T) ((-876 . -174) T) ((-384 . -732) T) ((-717 . -619) 160070) ((-718 . -38) 159899) ((-1277 . -1275) 159883) ((-356 . -408) T) ((-1277 . -1109) 159833) ((-1200 . -1109) T) ((-586 . -723) 159820) ((-570 . -723) 159807) ((-501 . -723) 159772) ((-1263 . -652) 159662) ((-320 . -635) 159641) ((-842 . -732) T) ((-833 . -732) T) ((-650 . -1227) T) ((-1089 . -645) 159589) ((-1182 . -907) 159532) ((-1134 . -907) 159516) ((-668 . -1065) 159500) ((-108 . -645) 159482) ((-488 . -132) 159352) ((-1188 . -1121) T) ((-959 . -47) 159321) ((-629 . -1109) T) ((-668 . -111) 159300) ((-497 . -619) 159266) ((-331 . -292) 159243) ((-487 . -47) 159200) ((-1188 . -23) T) ((-118 . -1109) T) ((-103 . -102) 159178) ((-1289 . -1121) T) ((-554 . -856) T) ((-1063 . -132) T) ((-1033 . -1067) T) ((-825 . -1047) 159162) ((-1012 . -730) 159134) ((-1289 . -23) T) ((-705 . -723) 159099) ((-592 . -619) 159081) ((-392 . -1047) 159065) ((-359 . -1067) T) ((-390 . -132) T) ((-328 . -1047) 159049) ((-1207 . -619) 159031) ((-1129 . -834) T) ((-1114 . -1109) T) ((-227 . -893) 159013) ((-1013 . -927) T) ((-91 . -34) T) ((-1013 . -826) T) ((-921 . -927) T) ((-1089 . -21) T) ((-1089 . -25) T) ((-493 . -1231) T) ((-1008 . -313) 158978) ((-882 . -622) 158959) ((-720 . -654) 158919) ((-219 . -1231) T) ((-687 . -622) 158900) ((-227 . -1047) 158860) ((-40 . -294) T) ((-682 . -622) 158841) ((-493 . -562) T) ((-484 . -622) 158822) ((-320 . -652) 158506) ((-317 . -652) 158420) ((-364 . -25) T) ((-364 . -21) T) ((-358 . -25) T) ((-219 . -562) T) ((-358 . -21) T) ((-350 . -25) T) ((-350 . -21) T) ((-247 . -622) 158397) ((-139 . -622) 158378) ((-138 . -622) 158359) ((-134 . -622) 158340) ((-108 . -25) T) ((-108 . -21) T) ((-48 . -1067) T) ((-586 . -174) T) ((-570 . -174) T) ((-501 . -174) T) ((-664 . -619) 158322) ((-743 . -742) 158306) ((-341 . -619) 158288) ((-68 . -388) T) ((-68 . -401) T) ((-1111 . -107) 158272) ((-1071 . -893) 158254) ((-959 . -893) 158179) ((-659 . -1121) T) ((-629 . -723) 158166) ((-487 . -893) NIL) ((-1155 . -102) T) ((-1103 . -624) 158150) ((-1071 . -1047) 158132) ((-97 . -619) 158114) ((-483 . -148) T) ((-959 . -1047) 157994) ((-118 . -723) 157939) ((-659 . -23) T) ((-487 . -1047) 157815) ((-1096 . -620) NIL) ((-1096 . -619) 157797) ((-788 . -620) NIL) ((-788 . -619) 157758) ((-786 . -620) 157392) ((-786 . -619) 157306) ((-1122 . -645) 157212) ((-467 . -619) 157194) ((-460 . -619) 157176) ((-460 . -620) 157037) ((-1044 . -231) 156983) ((-878 . -916) 156962) ((-127 . -34) T) ((-823 . -132) T) ((-655 . -619) 156944) ((-584 . -102) T) ((-360 . -1296) 156928) ((-357 . -1296) 156912) ((-349 . -1296) 156896) ((-128 . -520) 156829) ((-122 . -520) 156762) ((-517 . -798) T) ((-517 . -801) T) ((-516 . -800) T) ((-103 . -313) 156700) ((-224 . -102) 156678) ((-705 . -174) T) ((-700 . -1109) T) ((-878 . -654) 156630) ((-65 . -389) T) ((-278 . -619) 156612) ((-65 . -401) T) ((-959 . -382) 156596) ((-876 . -294) T) ((-50 . -619) 156578) ((-1008 . -38) 156526) ((-1129 . -652) 156498) ((-587 . -619) 156480) ((-487 . -382) 156464) ((-587 . -620) 156446) ((-524 . -619) 156428) ((-917 . -1296) 156415) ((-877 . -1227) T) ((-707 . -458) T) ((-501 . -520) 156381) ((-493 . -368) T) ((-360 . -373) 156360) ((-357 . -373) 156339) ((-349 . -373) 156318) ((-720 . -732) T) ((-219 . -368) T) ((-117 . -458) T) ((-1300 . -1291) 156302) ((-877 . -891) 156279) ((-877 . -893) NIL) ((-971 . -856) 156178) ((-821 . -856) 156129) ((-1234 . -102) T) ((-660 . -662) 156113) ((-1213 . -34) T) ((-173 . -619) 156095) ((-1122 . -21) 156005) ((-1122 . -25) 155856) ((-877 . -1047) 155833) ((-959 . -907) 155814) ((-1250 . -47) 155791) ((-917 . -373) T) ((-59 . -657) 155775) ((-522 . -657) 155759) ((-487 . -907) 155736) ((-71 . -447) T) ((-71 . -401) T) ((-502 . -657) 155720) ((-59 . -378) 155704) ((-629 . -174) T) ((-522 . -378) 155688) ((-502 . -378) 155672) ((-833 . -714) 155656) ((-1182 . -311) 155635) ((-1188 . -132) T) ((-1151 . -1060) 155619) ((-118 . -174) T) ((-1151 . -646) 155551) ((-1155 . -313) 155489) ((-171 . -1227) T) ((-1289 . -132) T) ((-872 . -1060) 155459) ((-641 . -750) 155443) ((-613 . -750) 155427) ((-1262 . -927) 155406) ((-1241 . -927) 155385) ((-1241 . -826) NIL) ((-872 . -646) 155355) ((-700 . -723) 155305) ((-1240 . -916) 155258) ((-1033 . -1109) T) ((-877 . -382) 155235) ((-877 . -343) 155212) ((-912 . -1121) T) ((-171 . -891) 155196) ((-171 . -893) 155121) ((-493 . -1121) T) ((-359 . -1109) T) ((-219 . -1121) T) ((-76 . -447) T) ((-76 . -401) T) ((-171 . -1047) 155017) ((-323 . -856) T) ((-1277 . -520) 154950) ((-1261 . -654) 154847) ((-1240 . -654) 154717) ((-878 . -800) 154696) ((-878 . -797) 154675) ((-878 . -732) T) ((-493 . -23) T) ((-225 . -619) 154657) ((-176 . -458) T) ((-224 . -313) 154595) ((-86 . -447) T) ((-86 . -401) T) ((-219 . -23) T) ((-1301 . -1294) 154574) ((-683 . -1047) 154558) ((-586 . -294) T) ((-570 . -294) T) ((-501 . -294) T) ((-137 . -476) 154513) ((-660 . -652) 154472) ((-48 . -1109) T) ((-718 . -233) 154456) ((-877 . -907) NIL) ((-1250 . -893) NIL) ((-896 . -102) T) ((-892 . -102) T) ((-394 . -1109) T) ((-171 . -382) 154440) ((-171 . -343) 154424) ((-1250 . -1047) 154304) ((-861 . -1047) 154200) ((-1151 . -102) T) ((-668 . -798) 154179) ((-659 . -132) T) ((-668 . -801) 154158) ((-118 . -520) 154066) ((-577 . -1047) 154048) ((-298 . -1284) 154018) ((-872 . -102) T) ((-970 . -562) 153997) ((-1221 . -1065) 153880) ((-1012 . -1060) 153825) ((-488 . -645) 153731) ((-911 . -1109) T) ((-1033 . -723) 153668) ((-717 . -1065) 153633) ((-1012 . -646) 153578) ((-623 . -102) T) ((-608 . -34) T) ((-1156 . -1227) T) ((-1221 . -111) 153447) ((-480 . -654) 153344) ((-359 . -723) 153289) ((-171 . -907) 153248) ((-705 . -294) T) ((-700 . -174) T) ((-717 . -111) 153204) ((-1305 . -1067) T) ((-1250 . -382) 153188) ((-424 . -1231) 153166) ((-1127 . -619) 153148) ((-317 . -854) NIL) ((-424 . -562) T) ((-227 . -311) T) ((-1240 . -797) 153101) ((-1240 . -800) 153054) ((-1261 . -732) T) ((-1240 . -732) T) ((-48 . -723) 153019) ((-227 . -1031) T) ((-356 . -1284) 152996) ((-1263 . -417) 152962) ((-724 . -732) T) ((-337 . -619) 152944) ((-1250 . -907) 152887) ((-1221 . -622) 152769) ((-112 . -619) 152751) ((-112 . -620) 152733) ((-724 . -479) T) ((-717 . -622) 152683) ((-1300 . -1060) 152667) ((-488 . -21) 152577) ((-128 . -495) 152561) ((-122 . -495) 152545) ((-488 . -25) 152396) ((-1300 . -646) 152366) ((-629 . -294) T) ((-592 . -1065) 152341) ((-443 . -1109) T) ((-1071 . -311) T) ((-118 . -294) T) ((-1113 . -102) T) ((-1012 . -102) T) ((-592 . -111) 152309) ((-1151 . -313) 152247) ((-1221 . -1058) T) ((-1071 . -1031) T) ((-66 . -1227) T) ((-1063 . -25) T) ((-1063 . -21) T) ((-717 . -1058) T) ((-390 . -21) T) ((-390 . -25) T) ((-700 . -520) NIL) ((-1033 . -174) T) ((-717 . -245) T) ((-1071 . -551) T) ((-718 . -652) 152157) ((-512 . -102) T) ((-508 . -102) T) ((-359 . -174) T) ((-348 . -619) 152139) ((-413 . -1060) 152091) ((-400 . -619) 152073) ((-1129 . -854) T) ((-480 . -732) T) ((-899 . -1047) 152041) ((-413 . -646) 151993) ((-108 . -856) T) ((-664 . -1065) 151977) ((-493 . -132) T) ((-1263 . -1067) T) ((-219 . -132) T) ((-1166 . -102) 151955) ((-99 . -1109) T) ((-247 . -672) 151939) ((-247 . -657) 151923) ((-664 . -111) 151902) ((-592 . -622) 151886) ((-320 . -417) 151870) ((-247 . -378) 151854) ((-1169 . -237) 151801) ((-1008 . -233) 151785) ((-74 . -1227) T) ((-48 . -174) T) ((-707 . -393) T) ((-707 . -144) T) ((-1300 . -102) T) ((-1207 . -622) 151767) ((-1096 . -1065) 151610) ((-267 . -916) 151589) ((-249 . -916) 151568) ((-788 . -1065) 151391) ((-786 . -1065) 151234) ((-614 . -1227) T) ((-1174 . -619) 151216) ((-1096 . -111) 151045) ((-1055 . -102) T) ((-481 . -1227) T) ((-467 . -1065) 151016) ((-460 . -1065) 150859) ((-670 . -654) 150843) ((-877 . -311) T) ((-788 . -111) 150652) ((-786 . -111) 150481) ((-360 . -654) 150433) ((-357 . -654) 150385) ((-349 . -654) 150337) ((-267 . -654) 150262) ((-249 . -654) 150187) ((-1168 . -856) T) ((-1097 . -1047) 150171) ((-467 . -111) 150132) ((-460 . -111) 149961) ((-1085 . -1047) 149938) ((-1009 . -34) T) ((-973 . -619) 149920) ((-965 . -1227) T) ((-127 . -1019) 149904) ((-970 . -1121) T) ((-877 . -1031) NIL) ((-741 . -1121) T) ((-721 . -1121) T) ((-664 . -622) 149822) ((-1277 . -495) 149806) ((-1151 . -38) 149766) ((-970 . -23) T) ((-917 . -654) 149731) ((-871 . -1109) T) ((-849 . -102) T) ((-823 . -21) T) ((-641 . -1060) 149715) ((-613 . -1060) 149699) ((-823 . -25) T) ((-741 . -23) T) ((-721 . -23) T) ((-641 . -646) 149683) ((-110 . -667) T) ((-613 . -646) 149667) ((-587 . -1065) 149632) ((-524 . -1065) 149577) ((-229 . -57) 149535) ((-459 . -23) T) ((-413 . -102) T) ((-266 . -102) T) ((-110 . -113) T) ((-700 . -294) T) ((-872 . -38) 149505) ((-587 . -111) 149461) ((-524 . -111) 149390) ((-1096 . -622) 149126) ((-424 . -1121) T) ((-320 . -1067) 149016) ((-317 . -1067) T) ((-129 . -1227) T) ((-788 . -622) 148764) ((-786 . -622) 148530) ((-664 . -1058) T) ((-1305 . -1109) T) ((-460 . -622) 148315) ((-171 . -311) 148246) ((-424 . -23) T) ((-40 . -619) 148228) ((-40 . -620) 148212) ((-108 . -1001) 148194) ((-117 . -875) 148178) ((-655 . -622) 148162) ((-48 . -520) 148128) ((-1213 . -1019) 148112) ((-1191 . -619) 148079) ((-1199 . -34) T) ((-961 . -619) 148045) ((-928 . -619) 148027) ((-1122 . -856) 147978) ((-777 . -619) 147960) ((-678 . -619) 147942) ((-1166 . -313) 147880) ((-485 . -34) T) ((-1101 . -1227) T) ((-483 . -458) T) ((-1150 . -34) T) ((-1096 . -1058) T) ((-50 . -622) 147849) ((-788 . -1058) T) ((-786 . -1058) T) ((-653 . -237) 147833) ((-638 . -237) 147779) ((-587 . -622) 147729) ((-524 . -622) 147659) ((-1250 . -311) 147638) ((-1096 . -330) 147599) ((-460 . -1058) T) ((-1188 . -21) T) ((-1096 . -235) 147578) ((-788 . -330) 147555) ((-788 . -235) T) ((-786 . -330) 147527) ((-737 . -1231) 147506) ((-331 . -657) 147490) ((-1188 . -25) T) ((-59 . -34) T) ((-525 . -34) T) ((-522 . -34) T) ((-460 . -330) 147469) ((-331 . -378) 147453) ((-503 . -34) T) ((-502 . -34) T) ((-1012 . -1161) NIL) ((-737 . -562) 147384) ((-641 . -102) T) ((-613 . -102) T) ((-360 . -732) T) ((-357 . -732) T) ((-349 . -732) T) ((-267 . -732) T) ((-249 . -732) T) ((-1055 . -313) 147292) ((-908 . -1109) 147270) ((-50 . -1058) T) ((-1289 . -21) T) ((-1289 . -25) T) ((-1184 . -562) 147249) ((-1183 . -1231) 147228) ((-1183 . -562) 147179) ((-587 . -1058) T) ((-524 . -1058) T) ((-1177 . -1231) 147158) ((-366 . -1047) 147142) ((-326 . -1047) 147126) ((-1033 . -294) T) ((-384 . -893) 147108) ((-1177 . -562) 147059) ((-1012 . -38) 147004) ((-1008 . -652) 146927) ((-805 . -1121) T) ((-917 . -732) T) ((-587 . -245) T) ((-587 . -235) T) ((-524 . -235) T) ((-524 . -245) T) ((-1135 . -562) 146906) ((-359 . -294) T) ((-653 . -701) 146890) ((-384 . -1047) 146850) ((-298 . -1060) 146771) ((-1129 . -1067) T) ((-103 . -126) 146755) ((-298 . -646) 146697) ((-805 . -23) T) ((-1299 . -1294) 146673) ((-1277 . -290) 146650) ((-413 . -313) 146615) ((-1297 . -1294) 146594) ((-1263 . -1109) T) ((-876 . -619) 146576) ((-842 . -1047) 146545) ((-205 . -793) T) ((-204 . -793) T) ((-203 . -793) T) ((-202 . -793) T) ((-201 . -793) T) ((-200 . -793) T) ((-199 . -793) T) ((-198 . -793) T) ((-197 . -793) T) ((-196 . -793) T) ((-553 . -619) 146527) ((-501 . -1011) T) ((-277 . -845) T) ((-276 . -845) T) ((-275 . -845) T) ((-274 . -845) T) ((-48 . -294) T) ((-273 . -845) T) ((-272 . -845) T) ((-271 . -845) T) ((-195 . -793) T) ((-618 . -856) T) ((-660 . -417) 146511) ((-225 . -622) 146473) ((-110 . -856) T) ((-659 . -21) T) ((-659 . -25) T) ((-1300 . -38) 146443) ((-118 . -290) 146394) ((-1277 . -19) 146378) ((-1277 . -610) 146355) ((-1290 . -1109) T) ((-356 . -1060) 146300) ((-1086 . -1109) T) ((-996 . -1109) T) ((-970 . -132) T) ((-743 . -1109) T) ((-356 . -646) 146245) ((-741 . -132) T) ((-721 . -132) T) ((-517 . -799) T) ((-517 . -800) T) ((-459 . -132) T) ((-413 . -1161) 146223) ((-225 . -1058) T) ((-298 . -102) 146005) ((-142 . -1109) T) ((-705 . -1011) T) ((-91 . -1227) T) ((-128 . -619) 145937) ((-122 . -619) 145869) ((-1305 . -174) T) ((-1183 . -368) 145848) ((-1177 . -368) 145827) ((-320 . -1109) T) ((-424 . -132) T) ((-317 . -1109) T) ((-413 . -38) 145779) ((-1142 . -102) T) ((-1263 . -723) 145671) ((-660 . -1067) T) ((-1144 . -1272) T) ((-323 . -146) 145650) ((-323 . -148) 145629) ((-137 . -1109) T) ((-140 . -1109) T) ((-115 . -1109) T) ((-864 . -102) T) ((-586 . -619) 145611) ((-570 . -620) 145510) ((-570 . -619) 145492) ((-501 . -619) 145474) ((-501 . -620) 145419) ((-491 . -23) T) ((-488 . -856) 145370) ((-493 . -645) 145352) ((-972 . -619) 145334) ((-219 . -645) 145316) ((-227 . -410) T) ((-668 . -654) 145300) ((-55 . -619) 145282) ((-1182 . -927) 145261) ((-737 . -1121) T) ((-356 . -102) T) ((-1226 . -1092) T) ((-1129 . -850) T) ((-824 . -856) T) ((-737 . -23) T) ((-348 . -1065) 145206) ((-1168 . -1167) T) ((-1156 . -107) 145190) ((-1184 . -1121) T) ((-1183 . -1121) T) ((-521 . -1047) 145174) ((-1177 . -1121) T) ((-1135 . -1121) T) ((-348 . -111) 145103) ((-1013 . -1231) T) ((-127 . -1227) T) ((-921 . -1231) T) ((-700 . -290) NIL) ((-1278 . -619) 145085) ((-1184 . -23) T) ((-1183 . -23) T) ((-1177 . -23) T) ((-1013 . -562) T) ((-1151 . -233) 145069) ((-921 . -562) T) ((-1135 . -23) T) ((-250 . -619) 145051) ((-1084 . -1109) T) ((-805 . -132) T) ((-716 . -619) 145033) ((-320 . -723) 144943) ((-317 . -723) 144872) ((-705 . -619) 144854) ((-705 . -620) 144799) ((-413 . -406) 144783) ((-444 . -1109) T) ((-493 . -25) T) ((-493 . -21) T) ((-1129 . -1109) T) ((-219 . -25) T) ((-219 . -21) T) ((-718 . -417) 144767) ((-720 . -1047) 144736) ((-1277 . -619) 144648) ((-1277 . -620) 144609) ((-1263 . -174) T) ((-1200 . -619) 144591) ((-247 . -34) T) ((-348 . -622) 144521) ((-400 . -622) 144503) ((-933 . -983) T) ((-1213 . -1227) T) ((-668 . -797) 144482) ((-668 . -800) 144461) ((-404 . -401) T) ((-529 . -102) 144439) ((-1044 . -1109) T) ((-224 . -1004) 144423) ((-510 . -102) T) ((-629 . -619) 144405) ((-45 . -856) NIL) ((-629 . -620) 144382) ((-1044 . -616) 144357) ((-908 . -520) 144290) ((-348 . -1058) T) ((-118 . -620) NIL) ((-118 . -619) 144272) ((-878 . -1227) T) ((-676 . -423) 144256) ((-676 . -1132) 144201) ((-506 . -152) 144183) ((-348 . -235) T) ((-348 . -245) T) ((-40 . -1065) 144128) ((-878 . -891) 144112) ((-878 . -893) 144037) ((-718 . -1067) T) ((-700 . -1011) NIL) ((-1261 . -47) 144007) ((-1240 . -47) 143984) ((-1150 . -1019) 143955) ((-3 . |UnionCategory|) T) ((-1129 . -723) 143942) ((-1114 . -619) 143924) ((-1089 . -148) 143903) ((-1089 . -146) 143854) ((-973 . -622) 143838) ((-227 . -927) T) ((-40 . -111) 143767) ((-878 . -1047) 143631) ((-1013 . -368) T) ((-1012 . -233) 143608) ((-707 . -1060) 143595) ((-921 . -368) T) ((-707 . -646) 143582) ((-323 . -1215) 143548) ((-384 . -311) T) ((-323 . -1212) 143514) ((-320 . -174) 143493) ((-317 . -174) T) ((-587 . -1296) 143480) ((-524 . -1296) 143457) ((-364 . -148) 143436) ((-117 . -1060) 143423) ((-364 . -146) 143374) ((-358 . -148) 143353) ((-358 . -146) 143304) ((-350 . -148) 143283) ((-614 . -1203) 143259) ((-117 . -646) 143246) ((-350 . -146) 143197) ((-323 . -35) 143163) ((-481 . -1203) 143142) ((0 . |EnumerationCategory|) T) ((-323 . -95) 143108) ((-384 . -1031) T) ((-108 . -148) T) ((-108 . -146) NIL) ((-45 . -237) 143058) ((-660 . -1109) T) ((-614 . -107) 143005) ((-491 . -132) T) ((-481 . -107) 142955) ((-242 . -1121) 142865) ((-878 . -382) 142849) ((-878 . -343) 142833) ((-242 . -23) 142703) ((-40 . -622) 142633) ((-1071 . -927) T) ((-1071 . -826) T) ((-587 . -373) T) ((-524 . -373) T) ((-1290 . -520) 142566) ((-1269 . -562) 142545) ((-356 . -1161) T) ((-331 . -34) T) ((-44 . -423) 142529) ((-1191 . -622) 142465) ((-879 . -1227) T) ((-396 . -750) 142449) ((-1262 . -1231) 142428) ((-1262 . -562) 142379) ((-1151 . -652) 142338) ((-737 . -132) T) ((-678 . -622) 142322) ((-1241 . -1231) 142301) ((-1241 . -562) 142252) ((-1240 . -1227) 142231) ((-1240 . -893) 142104) ((-1240 . -891) 142074) ((-1184 . -132) T) ((-315 . -1092) T) ((-1183 . -132) T) ((-743 . -520) 142007) ((-1177 . -132) T) ((-1135 . -132) T) ((-900 . -1109) T) ((-145 . -850) T) ((-1033 . -1011) T) ((-697 . -619) 141989) ((-1013 . -23) T) ((-529 . -313) 141927) ((-1013 . -1121) T) ((-142 . -520) NIL) ((-872 . -652) 141872) ((-1012 . -354) NIL) ((-980 . -23) T) ((-921 . -1121) T) ((-356 . -38) 141837) ((-921 . -23) T) ((-878 . -907) 141796) ((-82 . -619) 141778) ((-40 . -1058) T) ((-876 . -1065) 141765) ((-876 . -111) 141750) ((-707 . -102) T) ((-700 . -619) 141732) ((-608 . -1227) T) ((-602 . -562) 141711) ((-433 . -1121) T) ((-344 . -1060) 141695) ((-215 . -1109) T) ((-176 . -1060) 141627) ((-480 . -47) 141597) ((-135 . -102) T) ((-40 . -235) 141569) ((-40 . -245) T) ((-117 . -102) T) ((-601 . -562) 141548) ((-344 . -646) 141532) ((-700 . -620) 141440) ((-320 . -520) 141406) ((-176 . -646) 141338) ((-317 . -520) 141230) ((-1261 . -1047) 141214) ((-1240 . -1047) 141000) ((-1008 . -417) 140984) ((-433 . -23) T) ((-1129 . -174) T) ((-1263 . -294) T) ((-660 . -723) 140954) ((-145 . -1109) T) ((-48 . -1011) T) ((-413 . -233) 140938) ((-299 . -237) 140888) ((-877 . -927) T) ((-877 . -826) NIL) ((-876 . -622) 140860) ((-870 . -856) T) ((-1240 . -343) 140830) ((-1240 . -382) 140800) ((-224 . -1130) 140784) ((-1277 . -292) 140761) ((-1221 . -654) 140686) ((-1012 . -652) 140616) ((-970 . -21) T) ((-970 . -25) T) ((-741 . -21) T) ((-741 . -25) T) ((-721 . -21) T) ((-721 . -25) T) ((-717 . -654) 140581) ((-459 . -21) T) ((-459 . -25) T) ((-344 . -102) T) ((-176 . -102) T) ((-1008 . -1067) T) ((-876 . -1058) T) ((-780 . -102) T) ((-1262 . -368) 140560) ((-1261 . -907) 140466) ((-1241 . -368) 140445) ((-1240 . -907) 140296) ((-1033 . -619) 140278) ((-413 . -834) 140231) ((-1184 . -499) 140197) ((-171 . -927) 140128) ((-1183 . -499) 140094) ((-1177 . -499) 140060) ((-718 . -1109) T) ((-1135 . -499) 140026) ((-586 . -1065) 140013) ((-570 . -1065) 140000) ((-501 . -1065) 139965) ((-320 . -294) 139944) ((-317 . -294) T) ((-359 . -619) 139926) ((-424 . -25) T) ((-424 . -21) T) ((-99 . -290) 139905) ((-586 . -111) 139890) ((-570 . -111) 139875) ((-501 . -111) 139831) ((-1186 . -893) 139798) ((-908 . -495) 139782) ((-48 . -619) 139764) ((-48 . -620) 139709) ((-242 . -132) 139579) ((-1300 . -652) 139538) ((-1250 . -927) 139517) ((-822 . -1231) 139496) ((-394 . -496) 139477) ((-1044 . -520) 139321) ((-394 . -619) 139287) ((-822 . -562) 139218) ((-592 . -654) 139193) ((-267 . -47) 139165) ((-249 . -47) 139122) ((-537 . -515) 139099) ((-586 . -622) 139071) ((-570 . -622) 139043) ((-501 . -622) 138976) ((-1083 . -1227) T) ((-1009 . -1227) T) ((-1269 . -23) T) ((-705 . -1065) 138941) ((-1269 . -1121) T) ((-1262 . -1121) T) ((-1262 . -23) T) ((-1241 . -1121) T) ((-1241 . -23) T) ((-1012 . -375) 138913) ((-112 . -373) T) ((-480 . -907) 138819) ((-1221 . -732) T) ((-911 . -619) 138801) ((-55 . -622) 138783) ((-91 . -107) 138767) ((-1129 . -294) T) ((-912 . -856) 138718) ((-707 . -1161) T) ((-705 . -111) 138674) ((-849 . -652) 138591) ((-602 . -1121) T) ((-601 . -1121) T) ((-718 . -723) 138420) ((-717 . -732) T) ((-1013 . -132) T) ((-980 . -132) T) ((-493 . -856) T) ((-921 . -132) T) ((-805 . -25) T) ((-805 . -21) T) ((-219 . -856) T) ((-413 . -652) 138357) ((-586 . -1058) T) ((-570 . -1058) T) ((-501 . -1058) T) ((-602 . -23) T) ((-348 . -1296) 138334) ((-323 . -458) 138313) ((-344 . -313) 138300) ((-601 . -23) T) ((-433 . -132) T) ((-664 . -654) 138274) ((-247 . -1019) 138258) ((-878 . -311) T) ((-1301 . -1291) 138242) ((-777 . -798) T) ((-777 . -801) T) ((-707 . -38) 138229) ((-570 . -235) T) ((-501 . -245) T) ((-501 . -235) T) ((-1159 . -237) 138179) ((-1096 . -916) 138158) ((-117 . -38) 138145) ((-211 . -806) T) ((-210 . -806) T) ((-209 . -806) T) ((-208 . -806) T) ((-878 . -1031) 138123) ((-1290 . -495) 138107) ((-788 . -916) 138086) ((-786 . -916) 138065) ((-1199 . -1227) T) ((-460 . -916) 138044) ((-743 . -495) 138028) ((-1096 . -654) 137953) ((-705 . -622) 137888) ((-788 . -654) 137813) ((-629 . -1065) 137800) ((-485 . -1227) T) ((-348 . -373) T) ((-142 . -495) 137782) ((-786 . -654) 137707) ((-1150 . -1227) T) ((-555 . -856) T) ((-467 . -654) 137678) ((-267 . -893) 137537) ((-249 . -893) NIL) ((-118 . -1065) 137482) ((-460 . -654) 137407) ((-670 . -1047) 137384) ((-629 . -111) 137369) ((-396 . -1060) 137353) ((-360 . -1047) 137337) ((-357 . -1047) 137321) ((-349 . -1047) 137305) ((-267 . -1047) 137149) ((-249 . -1047) 137025) ((-118 . -111) 136954) ((-59 . -1227) T) ((-396 . -646) 136938) ((-627 . -1060) 136922) ((-525 . -1227) T) ((-522 . -1227) T) ((-503 . -1227) T) ((-502 . -1227) T) ((-443 . -619) 136904) ((-440 . -619) 136886) ((-627 . -646) 136870) ((-3 . -102) T) ((-1036 . -1220) 136839) ((-839 . -102) T) ((-695 . -57) 136797) ((-705 . -1058) T) ((-641 . -652) 136766) ((-613 . -652) 136735) ((-50 . -654) 136709) ((-293 . -458) T) ((-482 . -1220) 136678) ((0 . -102) T) ((-587 . -654) 136643) ((-524 . -654) 136588) ((-49 . -102) T) ((-917 . -1047) 136575) ((-705 . -245) T) ((-1089 . -415) 136554) ((-737 . -645) 136502) ((-1008 . -1109) T) ((-718 . -174) 136393) ((-629 . -622) 136288) ((-493 . -1001) 136270) ((-267 . -382) 136254) ((-249 . -382) 136238) ((-405 . -1109) T) ((-1035 . -102) 136216) ((-344 . -38) 136200) ((-219 . -1001) 136182) ((-118 . -622) 136112) ((-176 . -38) 136044) ((-1261 . -311) 136023) ((-1240 . -311) 136002) ((-664 . -732) T) ((-99 . -619) 135984) ((-483 . -1060) 135949) ((-1177 . -645) 135901) ((-483 . -646) 135866) ((-491 . -25) T) ((-491 . -21) T) ((-1240 . -1031) 135818) ((-1066 . -1227) T) ((-629 . -1058) T) ((-384 . -410) T) ((-396 . -102) T) ((-1114 . -624) 135733) ((-267 . -907) 135679) ((-249 . -907) 135656) ((-118 . -1058) T) ((-822 . -1121) T) ((-1096 . -732) T) ((-629 . -235) 135635) ((-627 . -102) T) ((-788 . -732) T) ((-786 . -732) T) ((-419 . -1121) T) ((-118 . -245) T) ((-40 . -373) NIL) ((-118 . -235) NIL) ((-1232 . -856) T) ((-460 . -732) T) ((-822 . -23) T) ((-737 . -25) T) ((-737 . -21) T) ((-1086 . -290) 135614) ((-78 . -402) T) ((-78 . -401) T) ((-539 . -773) 135596) ((-700 . -1065) 135546) ((-1269 . -132) T) ((-1262 . -132) T) ((-1241 . -132) T) ((-1184 . -25) T) ((-1151 . -417) 135530) ((-641 . -372) 135462) ((-613 . -372) 135394) ((-1166 . -1158) 135378) ((-103 . -1109) 135356) ((-1184 . -21) T) ((-1183 . -21) T) ((-871 . -619) 135338) ((-1008 . -723) 135286) ((-225 . -654) 135253) ((-700 . -111) 135187) ((-50 . -732) T) ((-1183 . -25) T) ((-356 . -354) T) ((-1177 . -21) T) ((-1089 . -458) 135138) ((-1177 . -25) T) ((-718 . -520) 135085) ((-587 . -732) T) ((-524 . -732) T) ((-1135 . -21) T) ((-1135 . -25) T) ((-602 . -132) T) ((-298 . -652) 134820) ((-601 . -132) T) ((-364 . -458) T) ((-358 . -458) T) ((-350 . -458) T) ((-480 . -311) 134799) ((-1235 . -102) T) ((-317 . -290) 134734) ((-108 . -458) T) ((-79 . -447) T) ((-79 . -401) T) ((-483 . -102) T) ((-697 . -622) 134718) ((-1305 . -619) 134700) ((-1305 . -620) 134682) ((-1089 . -408) 134661) ((-1044 . -495) 134592) ((-570 . -801) T) ((-570 . -798) T) ((-1072 . -237) 134538) ((-364 . -408) 134489) ((-358 . -408) 134440) ((-350 . -408) 134391) ((-1292 . -1121) T) ((-1301 . -1060) 134375) ((-386 . -1060) 134359) ((-1301 . -646) 134329) ((-386 . -646) 134299) ((-700 . -622) 134234) ((-1292 . -23) T) ((-1279 . -102) T) ((-177 . -619) 134216) ((-1151 . -1067) T) ((-553 . -373) T) ((-676 . -750) 134200) ((-1188 . -146) 134179) ((-1188 . -148) 134158) ((-1155 . -1109) T) ((-1155 . -1080) 134127) ((-69 . -1227) T) ((-1033 . -1065) 134064) ((-356 . -652) 133994) ((-872 . -1067) T) ((-242 . -645) 133900) ((-700 . -1058) T) ((-359 . -1065) 133845) ((-61 . -1227) T) ((-1033 . -111) 133761) ((-908 . -619) 133672) ((-700 . -245) T) ((-700 . -235) NIL) ((-849 . -854) 133651) ((-705 . -801) T) ((-705 . -798) T) ((-1012 . -417) 133628) ((-359 . -111) 133557) ((-384 . -927) T) ((-413 . -854) 133536) ((-718 . -294) 133447) ((-225 . -732) T) ((-1269 . -499) 133413) ((-1262 . -499) 133379) ((-1241 . -499) 133345) ((-584 . -1109) T) ((-320 . -1011) 133324) ((-224 . -1109) 133302) ((-1234 . -850) T) ((-323 . -982) 133264) ((-105 . -102) T) ((-48 . -1065) 133229) ((-1301 . -102) T) ((-386 . -102) T) ((-48 . -111) 133185) ((-1013 . -645) 133167) ((-1263 . -619) 133149) ((-537 . -102) T) ((-506 . -102) T) ((-1142 . -1143) 133133) ((-153 . -1284) 133117) ((-247 . -1227) T) ((-1226 . -102) T) ((-1033 . -622) 133054) ((-1182 . -1231) 133033) ((-359 . -622) 132963) ((-1134 . -1231) 132942) ((-242 . -21) 132852) ((-242 . -25) 132703) ((-128 . -120) 132687) ((-122 . -120) 132671) ((-44 . -750) 132655) ((-1182 . -562) 132566) ((-1134 . -562) 132497) ((-1234 . -1109) T) ((-1044 . -290) 132472) ((-1176 . -1092) T) ((-1003 . -1092) T) ((-822 . -132) T) ((-118 . -801) NIL) ((-118 . -798) NIL) ((-360 . -311) T) ((-357 . -311) T) ((-349 . -311) T) ((-254 . -1121) 132382) ((-253 . -1121) 132292) ((-1033 . -1058) T) ((-1012 . -1067) T) ((-48 . -622) 132225) ((-348 . -654) 132170) ((-627 . -38) 132154) ((-1290 . -619) 132116) ((-1290 . -620) 132077) ((-1086 . -619) 132059) ((-1033 . -245) T) ((-359 . -1058) T) ((-821 . -1284) 132029) ((-254 . -23) T) ((-253 . -23) T) ((-996 . -619) 132011) ((-743 . -620) 131972) ((-743 . -619) 131954) ((-805 . -856) 131933) ((-1169 . -152) 131880) ((-1008 . -520) 131792) ((-359 . -235) T) ((-359 . -245) T) ((-394 . -622) 131773) ((-1013 . -25) T) ((-142 . -619) 131755) ((-142 . -620) 131714) ((-917 . -311) T) ((-1013 . -21) T) ((-980 . -25) T) ((-921 . -21) T) ((-921 . -25) T) ((-433 . -21) T) ((-433 . -25) T) ((-849 . -417) 131698) ((-48 . -1058) T) ((-1299 . -1291) 131682) ((-1297 . -1291) 131666) ((-1044 . -610) 131641) ((-320 . -620) 131502) ((-320 . -619) 131484) ((-317 . -620) NIL) ((-317 . -619) 131466) ((-48 . -245) T) ((-48 . -235) T) ((-660 . -290) 131427) ((-556 . -237) 131377) ((-140 . -619) 131344) ((-137 . -619) 131326) ((-115 . -619) 131308) ((-483 . -38) 131273) ((-1301 . -1298) 131252) ((-1292 . -132) T) ((-1300 . -1067) T) ((-1091 . -102) T) ((-88 . -1227) T) ((-506 . -313) NIL) ((-1009 . -107) 131236) ((-896 . -1109) T) ((-892 . -1109) T) ((-1277 . -657) 131220) ((-1277 . -378) 131204) ((-331 . -1227) T) ((-599 . -856) T) ((-1151 . -1109) T) ((-1151 . -1062) 131144) ((-103 . -520) 131077) ((-934 . -619) 131059) ((-348 . -732) T) ((-30 . -619) 131041) ((-872 . -1109) T) ((-849 . -1067) 131020) ((-40 . -654) 130965) ((-227 . -1231) T) ((-413 . -1067) T) ((-1168 . -152) 130947) ((-1008 . -294) 130898) ((-623 . -1109) T) ((-227 . -562) T) ((-323 . -1258) 130882) ((-323 . -1255) 130852) ((-707 . -652) 130824) ((-1199 . -1203) 130803) ((-1084 . -619) 130785) ((-1199 . -107) 130735) ((-653 . -152) 130719) ((-638 . -152) 130665) ((-117 . -652) 130637) ((-485 . -1203) 130616) ((-493 . -148) T) ((-493 . -146) NIL) ((-1129 . -620) 130531) ((-444 . -619) 130513) ((-219 . -148) T) ((-219 . -146) NIL) ((-1129 . -619) 130495) ((-130 . -102) T) ((-52 . -102) T) ((-1241 . -645) 130447) ((-485 . -107) 130397) ((-1002 . -23) T) ((-1301 . -38) 130367) ((-1182 . -1121) T) ((-1134 . -1121) T) ((-1071 . -1231) T) ((-315 . -102) T) ((-860 . -1121) T) ((-959 . -1231) 130346) ((-487 . -1231) 130325) ((-1071 . -562) T) ((-959 . -562) 130256) ((-1182 . -23) T) ((-1160 . -1092) T) ((-1134 . -23) T) ((-860 . -23) T) ((-487 . -562) 130187) ((-1151 . -723) 130119) ((-676 . -1060) 130103) ((-1155 . -520) 130036) ((-676 . -646) 130020) ((-1044 . -620) NIL) ((-1044 . -619) 130002) ((-96 . -1092) T) ((-872 . -723) 129972) ((-1221 . -47) 129941) ((-254 . -132) T) ((-253 . -132) T) ((-1113 . -1109) T) ((-1012 . -1109) T) ((-62 . -619) 129923) ((-1177 . -856) NIL) ((-1033 . -798) T) ((-1033 . -801) T) ((-1305 . -1065) 129910) ((-1305 . -111) 129895) ((-1269 . -25) T) ((-1269 . -21) T) ((-876 . -654) 129882) ((-1262 . -21) T) ((-1262 . -25) T) ((-1241 . -21) T) ((-1241 . -25) T) ((-1036 . -152) 129866) ((-878 . -826) 129845) ((-878 . -927) T) ((-718 . -290) 129772) ((-602 . -21) T) ((-344 . -652) 129731) ((-602 . -25) T) ((-601 . -21) T) ((-176 . -652) 129648) ((-40 . -732) T) ((-224 . -520) 129581) ((-601 . -25) T) ((-482 . -152) 129565) ((-469 . -152) 129549) ((-928 . -800) T) ((-928 . -732) T) ((-777 . -799) T) ((-777 . -800) T) ((-512 . -1109) T) ((-508 . -1109) T) ((-777 . -732) T) ((-227 . -368) T) ((-1299 . -1060) 129533) ((-1297 . -1060) 129517) ((-1299 . -646) 129487) ((-1166 . -1109) 129465) ((-877 . -1231) T) ((-1297 . -646) 129435) ((-660 . -619) 129417) ((-877 . -562) T) ((-700 . -373) NIL) ((-44 . -1060) 129401) ((-1305 . -622) 129383) ((-1300 . -1109) T) ((-676 . -102) T) ((-364 . -1284) 129367) ((-358 . -1284) 129351) ((-44 . -646) 129335) ((-350 . -1284) 129319) ((-554 . -102) T) ((-526 . -856) 129298) ((-1055 . -1109) T) ((-823 . -458) 129277) ((-153 . -1060) 129261) ((-1055 . -1080) 129190) ((-1036 . -985) 129159) ((-825 . -1121) T) ((-1012 . -723) 129104) ((-153 . -646) 129088) ((-392 . -1121) T) ((-482 . -985) 129057) ((-469 . -985) 129026) ((-110 . -152) 129008) ((-73 . -619) 128990) ((-900 . -619) 128972) ((-1089 . -730) 128951) ((-1305 . -1058) T) ((-822 . -645) 128899) ((-298 . -1067) 128841) ((-171 . -1231) 128746) ((-227 . -1121) T) ((-328 . -23) T) ((-1177 . -1001) 128698) ((-849 . -1109) T) ((-1263 . -1065) 128603) ((-1135 . -746) 128582) ((-1261 . -927) 128561) ((-1240 . -927) 128540) ((-876 . -732) T) ((-171 . -562) 128451) ((-586 . -654) 128438) ((-570 . -654) 128425) ((-413 . -1109) T) ((-266 . -1109) T) ((-215 . -619) 128407) ((-501 . -654) 128372) ((-227 . -23) T) ((-1240 . -826) 128325) ((-1299 . -102) T) ((-359 . -1296) 128302) ((-1297 . -102) T) ((-1263 . -111) 128194) ((-821 . -1060) 128091) ((-821 . -646) 128033) ((-145 . -619) 128015) ((-1002 . -132) T) ((-44 . -102) T) ((-242 . -856) 127966) ((-1250 . -1231) 127945) ((-103 . -495) 127929) ((-1300 . -723) 127899) ((-1096 . -47) 127860) ((-1071 . -1121) T) ((-959 . -1121) T) ((-128 . -34) T) ((-122 . -34) T) ((-788 . -47) 127837) ((-786 . -47) 127809) ((-1250 . -562) 127720) ((-359 . -373) T) ((-487 . -1121) T) ((-1182 . -132) T) ((-1134 . -132) T) ((-460 . -47) 127699) ((-877 . -368) T) ((-860 . -132) T) ((-153 . -102) T) ((-1071 . -23) T) ((-959 . -23) T) ((-577 . -562) T) ((-822 . -25) T) ((-822 . -21) T) ((-1151 . -520) 127632) ((-598 . -1092) T) ((-592 . -1047) 127616) ((-1263 . -622) 127490) ((-487 . -23) T) ((-356 . -1067) T) ((-1221 . -907) 127471) ((-676 . -313) 127409) ((-1122 . -1284) 127379) ((-705 . -654) 127344) ((-1012 . -174) T) ((-970 . -146) 127323) ((-641 . -1109) T) ((-613 . -1109) T) ((-970 . -148) 127302) ((-1013 . -856) T) ((-741 . -148) 127281) ((-741 . -146) 127260) ((-980 . -856) T) ((-839 . -652) 127177) ((-480 . -927) 127156) ((-323 . -1060) 126991) ((-320 . -1065) 126901) ((-317 . -1065) 126830) ((-1008 . -290) 126788) ((-413 . -723) 126740) ((-323 . -646) 126581) ((-707 . -854) T) ((-1263 . -1058) T) ((-320 . -111) 126477) ((-317 . -111) 126390) ((-971 . -102) T) ((-821 . -102) 126180) ((-718 . -620) NIL) ((-718 . -619) 126162) ((-664 . -1047) 126058) ((-1263 . -330) 126002) ((-1044 . -292) 125977) ((-586 . -732) T) ((-570 . -800) T) ((-171 . -368) 125928) ((-570 . -797) T) ((-570 . -732) T) ((-501 . -732) T) ((-1155 . -495) 125912) ((-1096 . -893) NIL) ((-877 . -1121) T) ((-118 . -916) NIL) ((-1299 . -1298) 125888) ((-1297 . -1298) 125867) ((-788 . -893) NIL) ((-786 . -893) 125726) ((-1292 . -25) T) ((-1292 . -21) T) ((-1224 . -102) 125704) ((-1115 . -401) T) ((-629 . -654) 125691) ((-460 . -893) NIL) ((-681 . -102) 125669) ((-1096 . -1047) 125496) ((-877 . -23) T) ((-788 . -1047) 125355) ((-786 . -1047) 125212) ((-118 . -654) 125157) ((-460 . -1047) 125033) ((-320 . -622) 124597) ((-317 . -622) 124480) ((-396 . -652) 124449) ((-655 . -1047) 124433) ((-633 . -102) T) ((-224 . -495) 124417) ((-1277 . -34) T) ((-627 . -652) 124376) ((-293 . -1060) 124363) ((-137 . -622) 124347) ((-293 . -646) 124334) ((-641 . -723) 124318) ((-613 . -723) 124302) ((-676 . -38) 124262) ((-323 . -102) T) ((-85 . -619) 124244) ((-50 . -1047) 124228) ((-1129 . -1065) 124215) ((-1096 . -382) 124199) ((-788 . -382) 124183) ((-705 . -732) T) ((-705 . -800) T) ((-705 . -797) T) ((-587 . -1047) 124170) ((-524 . -1047) 124147) ((-60 . -57) 124109) ((-328 . -132) T) ((-320 . -1058) 123999) ((-317 . -1058) T) ((-171 . -1121) T) ((-786 . -382) 123983) ((-45 . -152) 123933) ((-1013 . -1001) 123915) ((-460 . -382) 123899) ((-413 . -174) T) ((-320 . -245) 123878) ((-317 . -245) T) ((-317 . -235) NIL) ((-298 . -1109) 123660) ((-227 . -132) T) ((-1129 . -111) 123645) ((-171 . -23) T) ((-805 . -148) 123624) ((-805 . -146) 123603) ((-254 . -645) 123509) ((-253 . -645) 123415) ((-323 . -288) 123381) ((-1166 . -520) 123314) ((-483 . -652) 123264) ((-1142 . -1109) T) ((-227 . -1069) T) ((-821 . -313) 123202) ((-1096 . -907) 123137) ((-788 . -907) 123080) ((-786 . -907) 123064) ((-1299 . -38) 123034) ((-1297 . -38) 123004) ((-1250 . -1121) T) ((-861 . -1121) T) ((-460 . -907) 122981) ((-864 . -1109) T) ((-1250 . -23) T) ((-1129 . -622) 122953) ((-577 . -1121) T) ((-861 . -23) T) ((-629 . -732) T) ((-360 . -927) T) ((-357 . -927) T) ((-293 . -102) T) ((-349 . -927) T) ((-1071 . -132) T) ((-979 . -1092) T) ((-959 . -132) T) ((-118 . -800) NIL) ((-118 . -797) NIL) ((-118 . -732) T) ((-700 . -916) NIL) ((-1055 . -520) 122854) ((-487 . -132) T) ((-577 . -23) T) ((-681 . -313) 122792) ((-641 . -767) T) ((-613 . -767) T) ((-1241 . -856) NIL) ((-1089 . -1060) 122702) ((-1012 . -294) T) ((-700 . -654) 122652) ((-254 . -21) T) ((-356 . -1109) T) ((-254 . -25) T) ((-253 . -21) T) ((-253 . -25) T) ((-153 . -38) 122636) ((-2 . -102) T) ((-917 . -927) T) ((-1089 . -646) 122504) ((-488 . -1284) 122474) ((-1129 . -1058) T) ((-717 . -311) T) ((-364 . -1060) 122426) ((-358 . -1060) 122378) ((-350 . -1060) 122330) ((-364 . -646) 122282) ((-225 . -1047) 122259) ((-358 . -646) 122211) ((-108 . -1060) 122161) ((-350 . -646) 122113) ((-298 . -723) 122055) ((-707 . -1067) T) ((-493 . -458) T) ((-413 . -520) 121967) ((-108 . -646) 121917) ((-219 . -458) T) ((-1129 . -235) T) ((-299 . -152) 121867) ((-1008 . -620) 121828) ((-1008 . -619) 121810) ((-998 . -619) 121792) ((-117 . -1067) T) ((-660 . -1065) 121776) ((-227 . -499) T) ((-405 . -619) 121758) ((-405 . -620) 121735) ((-1063 . -1284) 121705) ((-660 . -111) 121684) ((-1151 . -495) 121668) ((-1301 . -652) 121627) ((-386 . -652) 121596) ((-821 . -38) 121566) ((-63 . -447) T) ((-63 . -401) T) ((-1169 . -102) T) ((-877 . -132) T) ((-490 . -102) 121544) ((-1305 . -373) T) ((-1089 . -102) T) ((-1070 . -102) T) ((-356 . -723) 121489) ((-737 . -148) 121468) ((-737 . -146) 121447) ((-660 . -622) 121365) ((-1033 . -654) 121302) ((-529 . -1109) 121280) ((-364 . -102) T) ((-358 . -102) T) ((-350 . -102) T) ((-108 . -102) T) ((-510 . -1109) T) ((-359 . -654) 121225) ((-1182 . -645) 121173) ((-1134 . -645) 121121) ((-390 . -515) 121100) ((-839 . -854) 121079) ((-384 . -1231) T) ((-700 . -732) T) ((-1241 . -1001) 121031) ((-344 . -1067) T) ((-112 . -1227) T) ((-176 . -1067) T) ((-103 . -619) 120963) ((-1184 . -146) 120942) ((-1184 . -148) 120921) ((-384 . -562) T) ((-1183 . -148) 120900) ((-1183 . -146) 120879) ((-1177 . -146) 120786) ((-413 . -294) T) ((-1177 . -148) 120693) ((-1135 . -148) 120672) ((-1135 . -146) 120651) ((-323 . -38) 120492) ((-171 . -132) T) ((-317 . -801) NIL) ((-317 . -798) NIL) ((-660 . -1058) T) ((-48 . -654) 120457) ((-1122 . -1060) 120354) ((-900 . -622) 120331) ((-1122 . -646) 120273) ((-1176 . -102) T) ((-1003 . -102) T) ((-1002 . -21) T) ((-128 . -1019) 120257) ((-122 . -1019) 120241) ((-1002 . -25) T) ((-908 . -120) 120225) ((-1168 . -102) T) ((-1250 . -132) T) ((-1182 . -25) T) ((-1182 . -21) T) ((-861 . -132) T) ((-1134 . -25) T) ((-1134 . -21) T) ((-860 . -25) T) ((-860 . -21) T) ((-788 . -311) 120204) ((-653 . -102) 120182) ((-638 . -102) T) ((-1169 . -313) 119977) ((-577 . -132) T) ((-627 . -854) 119956) ((-1166 . -495) 119940) ((-1159 . -152) 119890) ((-1155 . -619) 119852) ((-1155 . -620) 119813) ((-1033 . -797) T) ((-1033 . -800) T) ((-1033 . -732) T) ((-718 . -1065) 119636) ((-490 . -313) 119574) ((-459 . -423) 119544) ((-356 . -174) T) ((-293 . -38) 119531) ((-277 . -102) T) ((-276 . -102) T) ((-275 . -102) T) ((-274 . -102) T) ((-273 . -102) T) ((-272 . -102) T) ((-348 . -1047) 119508) ((-271 . -102) T) ((-214 . -102) T) ((-213 . -102) T) ((-211 . -102) T) ((-210 . -102) T) ((-209 . -102) T) ((-208 . -102) T) ((-205 . -102) T) ((-204 . -102) T) ((-203 . -102) T) ((-202 . -102) T) ((-201 . -102) T) ((-200 . -102) T) ((-199 . -102) T) ((-198 . -102) T) ((-197 . -102) T) ((-196 . -102) T) ((-195 . -102) T) ((-359 . -732) T) ((-718 . -111) 119317) ((-676 . -233) 119301) ((-587 . -311) T) ((-524 . -311) T) ((-298 . -520) 119250) ((-108 . -313) NIL) ((-72 . -401) T) ((-1122 . -102) 119040) ((-839 . -417) 119024) ((-1129 . -801) T) ((-1129 . -798) T) ((-707 . -1109) T) ((-584 . -619) 119006) ((-384 . -368) T) ((-171 . -499) 118984) ((-224 . -619) 118916) ((-135 . -1109) T) ((-117 . -1109) T) ((-973 . -1227) T) ((-48 . -732) T) ((-1055 . -495) 118881) ((-142 . -431) 118863) ((-142 . -373) T) ((-1036 . -102) T) ((-518 . -515) 118842) ((-718 . -622) 118598) ((-482 . -102) T) ((-469 . -102) T) ((-1043 . -1121) T) ((-1234 . -619) 118580) ((-1191 . -1047) 118516) ((-1184 . -35) 118482) ((-1184 . -95) 118448) ((-1184 . -1215) 118414) ((-1184 . -1212) 118380) ((-1168 . -313) NIL) ((-89 . -402) T) ((-89 . -401) T) ((-1089 . -1161) 118359) ((-1183 . -1212) 118325) ((-1183 . -1215) 118291) ((-1043 . -23) T) ((-1183 . -95) 118257) ((-577 . -499) T) ((-1183 . -35) 118223) ((-1177 . -1212) 118189) ((-1177 . -1215) 118155) ((-1177 . -95) 118121) ((-366 . -1121) T) ((-364 . -1161) 118100) ((-358 . -1161) 118079) ((-350 . -1161) 118058) ((-1177 . -35) 118024) ((-1135 . -35) 117990) ((-1135 . -95) 117956) ((-108 . -1161) T) ((-1135 . -1215) 117922) ((-839 . -1067) 117901) ((-653 . -313) 117839) ((-638 . -313) 117690) ((-1135 . -1212) 117656) ((-718 . -1058) T) ((-1071 . -645) 117638) ((-1089 . -38) 117506) ((-959 . -645) 117454) ((-1013 . -148) T) ((-1013 . -146) NIL) ((-384 . -1121) T) ((-328 . -25) T) ((-326 . -23) T) ((-950 . -856) 117433) ((-718 . -330) 117410) ((-487 . -645) 117358) ((-40 . -1047) 117246) ((-718 . -235) T) ((-707 . -723) 117233) ((-344 . -1109) T) ((-176 . -1109) T) ((-335 . -856) T) ((-424 . -458) 117183) ((-384 . -23) T) ((-364 . -38) 117148) ((-358 . -38) 117113) ((-350 . -38) 117078) ((-80 . -447) T) ((-80 . -401) T) ((-227 . -25) T) ((-227 . -21) T) ((-842 . -1121) T) ((-108 . -38) 117028) ((-833 . -1121) T) ((-780 . -1109) T) ((-117 . -723) 117015) ((-678 . -1047) 116999) ((-618 . -102) T) ((-842 . -23) T) ((-833 . -23) T) ((-1166 . -290) 116976) ((-1122 . -313) 116914) ((-488 . -1060) 116811) ((-1111 . -237) 116795) ((-64 . -402) T) ((-64 . -401) T) ((-1160 . -102) T) ((-110 . -102) T) ((-488 . -646) 116737) ((-40 . -382) 116714) ((-96 . -102) T) ((-659 . -858) 116698) ((-1144 . -1092) T) ((-1071 . -21) T) ((-1071 . -25) T) ((-1063 . -1060) 116682) ((-821 . -233) 116651) ((-959 . -25) T) ((-959 . -21) T) ((-1063 . -646) 116593) ((-627 . -1067) T) ((-1129 . -373) T) ((-1036 . -313) 116531) ((-676 . -652) 116490) ((-487 . -25) T) ((-487 . -21) T) ((-390 . -1060) 116474) ((-896 . -619) 116456) ((-892 . -619) 116438) ((-529 . -520) 116371) ((-254 . -856) 116322) ((-253 . -856) 116273) ((-390 . -646) 116243) ((-877 . -645) 116220) ((-482 . -313) 116158) ((-469 . -313) 116096) ((-356 . -294) T) ((-1166 . -1265) 116080) ((-1151 . -619) 116042) ((-1151 . -620) 116003) ((-1149 . -102) T) ((-1008 . -1065) 115899) ((-40 . -907) 115851) ((-1166 . -610) 115828) ((-1305 . -654) 115815) ((-872 . -496) 115792) ((-1072 . -152) 115738) ((-878 . -1231) T) ((-1008 . -111) 115620) ((-344 . -723) 115604) ((-872 . -619) 115566) ((-176 . -723) 115498) ((-413 . -290) 115456) ((-878 . -562) T) ((-108 . -406) 115438) ((-84 . -389) T) ((-84 . -401) T) ((-707 . -174) T) ((-623 . -619) 115420) ((-99 . -732) T) ((-488 . -102) 115210) ((-99 . -479) T) ((-117 . -174) T) ((-1299 . -652) 115169) ((-1297 . -652) 115128) ((-1122 . -38) 115098) ((-171 . -645) 115046) ((-1063 . -102) T) ((-1008 . -622) 114936) ((-877 . -25) T) ((-821 . -240) 114915) ((-877 . -21) T) ((-824 . -102) T) ((-44 . -652) 114858) ((-420 . -102) T) ((-390 . -102) T) ((-110 . -313) NIL) ((-229 . -102) 114836) ((-128 . -1227) T) ((-122 . -1227) T) ((-823 . -1060) 114787) ((-823 . -646) 114729) ((-1043 . -132) T) ((-676 . -372) 114713) ((-153 . -652) 114672) ((-1008 . -1058) T) ((-1250 . -645) 114620) ((-1113 . -619) 114602) ((-1012 . -619) 114584) ((-521 . -23) T) ((-516 . -23) T) ((-348 . -311) T) ((-514 . -23) T) ((-326 . -132) T) ((-3 . -1109) T) ((-1012 . -620) 114568) ((-1008 . -245) 114547) ((-1008 . -235) 114526) ((-1305 . -732) T) ((-1269 . -146) 114505) ((-839 . -1109) T) ((-1269 . -148) 114484) ((-1262 . -148) 114463) ((-1262 . -146) 114442) ((-1261 . -1231) 114421) ((-1241 . -146) 114328) ((-1241 . -148) 114235) ((-1240 . -1231) 114214) ((-384 . -132) T) ((-570 . -893) 114196) ((0 . -1109) T) ((-176 . -174) T) ((-171 . -21) T) ((-171 . -25) T) ((-49 . -1109) T) ((-1263 . -654) 114101) ((-1261 . -562) 114052) ((-720 . -1121) T) ((-1240 . -562) 114003) ((-570 . -1047) 113985) ((-601 . -148) 113964) ((-601 . -146) 113943) ((-501 . -1047) 113886) ((-1144 . -1146) T) ((-87 . -389) T) ((-87 . -401) T) ((-878 . -368) T) ((-842 . -132) T) ((-833 . -132) T) ((-971 . -652) 113830) ((-720 . -23) T) ((-512 . -619) 113796) ((-508 . -619) 113778) ((-821 . -652) 113528) ((-1301 . -1067) T) ((-384 . -1069) T) ((-1035 . -1109) 113506) ((-55 . -1047) 113488) ((-908 . -34) T) ((-488 . -313) 113426) ((-598 . -102) T) ((-1166 . -620) 113387) ((-1166 . -619) 113319) ((-1188 . -1060) 113202) ((-45 . -102) T) ((-823 . -102) T) ((-1188 . -646) 113099) ((-1250 . -25) T) ((-1250 . -21) T) ((-861 . -25) T) ((-44 . -372) 113083) ((-861 . -21) T) ((-737 . -458) 113034) ((-1300 . -619) 113016) ((-1289 . -1060) 112986) ((-1063 . -313) 112924) ((-677 . -1092) T) ((-612 . -1092) T) ((-396 . -1109) T) ((-577 . -25) T) ((-577 . -21) T) ((-182 . -1092) T) ((-162 . -1092) T) ((-157 . -1092) T) ((-155 . -1092) T) ((-1289 . -646) 112894) ((-627 . -1109) T) ((-705 . -893) 112876) ((-1277 . -1227) T) ((-229 . -313) 112814) ((-145 . -373) T) ((-1055 . -620) 112756) ((-1055 . -619) 112699) ((-317 . -916) NIL) ((-1235 . -850) T) ((-705 . -1047) 112644) ((-717 . -927) T) ((-480 . -1231) 112623) ((-1183 . -458) 112602) ((-1177 . -458) 112581) ((-334 . -102) T) ((-878 . -1121) T) ((-323 . -652) 112463) ((-320 . -654) 112284) ((-317 . -654) 112213) ((-480 . -562) 112164) ((-344 . -520) 112130) ((-556 . -152) 112080) ((-40 . -311) T) ((-849 . -619) 112062) ((-707 . -294) T) ((-878 . -23) T) ((-384 . -499) T) ((-1089 . -233) 112032) ((-518 . -102) T) ((-413 . -620) 111839) ((-413 . -619) 111821) ((-266 . -619) 111803) ((-117 . -294) T) ((-1263 . -732) T) ((-1261 . -368) 111782) ((-1240 . -368) 111761) ((-1290 . -34) T) ((-1235 . -1109) T) ((-118 . -1227) T) ((-108 . -233) 111743) ((-1188 . -102) T) ((-483 . -1109) T) ((-529 . -495) 111727) ((-743 . -34) T) ((-659 . -1060) 111711) ((-488 . -38) 111681) ((-659 . -646) 111651) ((-142 . -34) T) ((-118 . -891) 111628) ((-118 . -893) NIL) ((-629 . -1047) 111511) ((-650 . -856) 111490) ((-1289 . -102) T) ((-299 . -102) T) ((-718 . -373) 111469) ((-118 . -1047) 111446) ((-396 . -723) 111430) ((-627 . -723) 111414) ((-45 . -313) 111218) ((-822 . -146) 111197) ((-822 . -148) 111176) ((-293 . -652) 111148) ((-1300 . -387) 111127) ((-825 . -856) T) ((-1279 . -1109) T) ((-1169 . -231) 111074) ((-392 . -856) 111053) ((-1269 . -1215) 111019) ((-1269 . -1212) 110985) ((-1262 . -1212) 110951) ((-521 . -132) T) ((-1262 . -1215) 110917) ((-1241 . -1212) 110883) ((-1241 . -1215) 110849) ((-1269 . -35) 110815) ((-1269 . -95) 110781) ((-641 . -619) 110750) ((-613 . -619) 110719) ((-227 . -856) T) ((-1262 . -95) 110685) ((-1262 . -35) 110651) ((-1261 . -1121) T) ((-1129 . -654) 110638) ((-1241 . -95) 110604) ((-1240 . -1121) T) ((-599 . -152) 110586) ((-1089 . -354) 110565) ((-176 . -294) T) ((-118 . -382) 110542) ((-118 . -343) 110519) ((-1241 . -35) 110485) ((-876 . -311) T) ((-317 . -800) NIL) ((-317 . -797) NIL) ((-320 . -732) 110334) ((-317 . -732) T) ((-480 . -368) 110313) ((-364 . -354) 110292) ((-358 . -354) 110271) ((-350 . -354) 110250) ((-320 . -479) 110229) ((-1261 . -23) T) ((-1240 . -23) T) ((-724 . -1121) T) ((-720 . -132) T) ((-659 . -102) T) ((-483 . -723) 110194) ((-45 . -286) 110144) ((-105 . -1109) T) ((-68 . -619) 110126) ((-979 . -102) T) ((-870 . -102) T) ((-629 . -907) 110085) ((-1301 . -1109) T) ((-386 . -1109) T) ((-82 . -1227) T) ((-1226 . -1109) T) ((-1071 . -856) T) ((-118 . -907) NIL) ((-788 . -927) 110064) ((-719 . -856) T) ((-537 . -1109) T) ((-506 . -1109) T) ((-360 . -1231) T) ((-357 . -1231) T) ((-349 . -1231) T) ((-267 . -1231) 110043) ((-249 . -1231) 110022) ((-539 . -866) T) ((-1122 . -233) 109991) ((-1168 . -834) T) ((-1151 . -1065) 109975) ((-396 . -767) T) ((-700 . -1227) T) ((-697 . -1047) 109959) ((-360 . -562) T) ((-357 . -562) T) ((-349 . -562) T) ((-267 . -562) 109890) ((-249 . -562) 109821) ((-531 . -1092) T) ((-1151 . -111) 109800) ((-459 . -750) 109770) ((-872 . -1065) 109740) ((-823 . -38) 109682) ((-700 . -891) 109664) ((-700 . -893) 109646) ((-299 . -313) 109450) ((-917 . -1231) T) ((-1166 . -292) 109427) ((-1089 . -652) 109322) ((-676 . -417) 109306) ((-872 . -111) 109271) ((-1013 . -458) T) ((-700 . -1047) 109216) ((-917 . -562) T) ((-539 . -619) 109198) ((-587 . -927) T) ((-493 . -1060) 109148) ((-480 . -1121) T) ((-524 . -927) T) ((-921 . -458) T) ((-65 . -619) 109130) ((-219 . -1060) 109080) ((-493 . -646) 109030) ((-364 . -652) 108967) ((-358 . -652) 108904) ((-350 . -652) 108841) ((-638 . -231) 108787) ((-219 . -646) 108737) ((-108 . -652) 108687) ((-480 . -23) T) ((-1129 . -800) T) ((-878 . -132) T) ((-1129 . -797) T) ((-1292 . -1294) 108666) ((-1129 . -732) T) ((-660 . -654) 108640) ((-298 . -619) 108381) ((-1151 . -622) 108299) ((-1044 . -34) T) ((-821 . -854) 108278) ((-586 . -311) T) ((-570 . -311) T) ((-501 . -311) T) ((-1301 . -723) 108248) ((-700 . -382) 108230) ((-700 . -343) 108212) ((-483 . -174) T) ((-386 . -723) 108182) ((-872 . -622) 108117) ((-877 . -856) NIL) ((-570 . -1031) T) ((-501 . -1031) T) ((-1142 . -619) 108099) ((-1122 . -240) 108078) ((-216 . -102) T) ((-1159 . -102) T) ((-71 . -619) 108060) ((-1151 . -1058) T) ((-1188 . -38) 107957) ((-864 . -619) 107939) ((-570 . -551) T) ((-676 . -1067) T) ((-737 . -956) 107892) ((-1151 . -235) 107871) ((-1091 . -1109) T) ((-1043 . -25) T) ((-1043 . -21) T) ((-1012 . -1065) 107816) ((-912 . -102) T) ((-872 . -1058) T) ((-700 . -907) NIL) ((-360 . -333) 107800) ((-360 . -368) T) ((-357 . -333) 107784) ((-357 . -368) T) ((-349 . -333) 107768) ((-349 . -368) T) ((-493 . -102) T) ((-1289 . -38) 107738) ((-552 . -856) T) ((-529 . -693) 107688) ((-219 . -102) T) ((-1033 . -1047) 107568) ((-1012 . -111) 107497) ((-1184 . -982) 107466) ((-526 . -152) 107450) ((-1089 . -375) 107429) ((-356 . -619) 107411) ((-326 . -21) T) ((-359 . -1047) 107388) ((-326 . -25) T) ((-1183 . -982) 107350) ((-1177 . -982) 107319) ((-76 . -619) 107301) ((-1135 . -982) 107268) ((-705 . -311) T) ((-130 . -850) T) ((-917 . -368) T) ((-384 . -25) T) ((-384 . -21) T) ((-917 . -333) 107255) ((-86 . -619) 107237) ((-705 . -1031) T) ((-683 . -856) T) ((-1261 . -132) T) ((-1240 . -132) T) ((-908 . -1019) 107221) ((-842 . -21) T) ((-48 . -1047) 107164) ((-842 . -25) T) ((-833 . -25) T) ((-833 . -21) T) ((-1122 . -652) 106914) ((-1299 . -1067) T) ((-555 . -102) T) ((-1297 . -1067) T) ((-660 . -732) T) ((-1113 . -624) 106817) ((-1012 . -622) 106747) ((-1300 . -1065) 106731) ((-821 . -417) 106700) ((-103 . -120) 106684) ((-130 . -1109) T) ((-52 . -1109) T) ((-933 . -619) 106666) ((-877 . -1001) 106643) ((-829 . -102) T) ((-1300 . -111) 106622) ((-659 . -38) 106592) ((-577 . -856) T) ((-360 . -1121) T) ((-357 . -1121) T) ((-349 . -1121) T) ((-267 . -1121) T) ((-249 . -1121) T) ((-629 . -311) 106571) ((-1159 . -313) 106375) ((-670 . -23) T) ((-530 . -1092) T) ((-315 . -1109) T) ((-488 . -233) 106344) ((-153 . -1067) T) ((-360 . -23) T) ((-357 . -23) T) ((-349 . -23) T) ((-118 . -311) T) ((-267 . -23) T) ((-249 . -23) T) ((-1012 . -1058) T) ((-718 . -916) 106323) ((-1166 . -622) 106300) ((-1012 . -235) 106272) ((-1012 . -245) T) ((-118 . -1031) NIL) ((-917 . -1121) T) ((-1262 . -458) 106251) ((-1241 . -458) 106230) ((-529 . -619) 106162) ((-718 . -654) 106087) ((-413 . -1065) 106039) ((-510 . -619) 106021) ((-917 . -23) T) ((-493 . -313) NIL) ((-1300 . -622) 105977) ((-480 . -132) T) ((-219 . -313) NIL) ((-413 . -111) 105915) ((-821 . -1067) 105845) ((-743 . -1107) 105829) ((-1261 . -499) 105795) ((-1240 . -499) 105761) ((-554 . -850) T) ((-142 . -1107) 105743) ((-483 . -294) T) ((-1300 . -1058) T) ((-1232 . -102) T) ((-1072 . -102) T) ((-849 . -622) 105611) ((-506 . -520) NIL) ((-488 . -240) 105590) ((-413 . -622) 105488) ((-970 . -1060) 105371) ((-741 . -1060) 105341) ((-970 . -646) 105238) ((-1182 . -146) 105217) ((-741 . -646) 105187) ((-459 . -1060) 105157) ((-1182 . -148) 105136) ((-1134 . -148) 105115) ((-1134 . -146) 105094) ((-641 . -1065) 105078) ((-613 . -1065) 105062) ((-459 . -646) 105032) ((-1184 . -1268) 105016) ((-1184 . -1255) 104993) ((-676 . -1109) T) ((-676 . -1062) 104933) ((-1183 . -1260) 104894) ((-554 . -1109) T) ((-493 . -1161) T) ((-1183 . -1255) 104864) ((-1183 . -1258) 104848) ((-1177 . -1239) 104809) ((-219 . -1161) T) ((-348 . -927) T) ((-824 . -269) 104793) ((-641 . -111) 104772) ((-613 . -111) 104751) ((-1177 . -1255) 104728) ((-849 . -1058) 104707) ((-1177 . -1237) 104691) ((-521 . -25) T) ((-501 . -306) T) ((-517 . -23) T) ((-516 . -25) T) ((-514 . -25) T) ((-513 . -23) T) ((-424 . -1060) 104665) ((-413 . -1058) T) ((-323 . -1067) T) ((-700 . -311) T) ((-424 . -646) 104639) ((-108 . -854) T) ((-718 . -732) T) ((-413 . -245) T) ((-413 . -235) 104618) ((-493 . -38) 104568) ((-219 . -38) 104518) ((-480 . -499) 104484) ((-1234 . -373) T) ((-1168 . -1153) T) ((-1110 . -102) T) ((-707 . -619) 104466) ((-707 . -620) 104381) ((-720 . -21) T) ((-720 . -25) T) ((-1144 . -102) T) ((-488 . -652) 104131) ((-135 . -619) 104113) ((-117 . -619) 104095) ((-158 . -25) T) ((-1299 . -1109) T) ((-878 . -645) 104043) ((-1297 . -1109) T) ((-970 . -102) T) ((-741 . -102) T) ((-721 . -102) T) ((-459 . -102) T) ((-822 . -458) 103994) ((-44 . -1109) T) ((-1097 . -856) T) ((-1072 . -313) 103845) ((-670 . -132) T) ((-1063 . -652) 103814) ((-676 . -723) 103798) ((-293 . -1067) T) ((-360 . -132) T) ((-357 . -132) T) ((-349 . -132) T) ((-267 . -132) T) ((-249 . -132) T) ((-390 . -652) 103767) ((-424 . -102) T) ((-153 . -1109) T) ((-45 . -231) 103717) ((-805 . -1060) 103701) ((-965 . -856) 103680) ((-1008 . -654) 103618) ((-805 . -646) 103602) ((-242 . -1284) 103572) ((-1033 . -311) T) ((-298 . -1065) 103493) ((-917 . -132) T) ((-40 . -927) T) ((-493 . -406) 103475) ((-359 . -311) T) ((-219 . -406) 103457) ((-1089 . -417) 103441) ((-298 . -111) 103357) ((-1193 . -856) T) ((-1192 . -856) T) ((-878 . -25) T) ((-878 . -21) T) ((-344 . -619) 103339) ((-1263 . -47) 103283) ((-227 . -148) T) ((-176 . -619) 103265) ((-1122 . -854) 103244) ((-780 . -619) 103226) ((-129 . -856) T) ((-614 . -237) 103173) ((-481 . -237) 103123) ((-1299 . -723) 103093) ((-48 . -311) T) ((-1297 . -723) 103063) ((-65 . -622) 102992) ((-971 . -1109) T) ((-821 . -1109) 102782) ((-316 . -102) T) ((-908 . -1227) T) ((-48 . -1031) T) ((-1240 . -645) 102690) ((-695 . -102) 102668) ((-44 . -723) 102652) ((-556 . -102) T) ((-298 . -622) 102583) ((-67 . -388) T) ((-67 . -401) T) ((-668 . -23) T) ((-823 . -652) 102519) ((-676 . -767) T) ((-1224 . -1109) 102497) ((-356 . -1065) 102442) ((-681 . -1109) 102420) ((-1071 . -148) T) ((-959 . -148) 102399) ((-959 . -146) 102378) ((-805 . -102) T) ((-153 . -723) 102362) ((-487 . -148) 102341) ((-487 . -146) 102320) ((-356 . -111) 102249) ((-1089 . -1067) T) ((-326 . -856) 102228) ((-1269 . -982) 102197) ((-633 . -1109) T) ((-1262 . -982) 102159) ((-517 . -132) T) ((-513 . -132) T) ((-299 . -231) 102109) ((-364 . -1067) T) ((-358 . -1067) T) ((-350 . -1067) T) ((-298 . -1058) 102051) ((-1241 . -982) 102020) ((-384 . -856) T) ((-108 . -1067) T) ((-1008 . -732) T) ((-876 . -927) T) ((-849 . -801) 101999) ((-849 . -798) 101978) ((-424 . -313) 101917) ((-474 . -102) T) ((-601 . -982) 101886) ((-323 . -1109) T) ((-413 . -801) 101865) ((-413 . -798) 101844) ((-506 . -495) 101826) ((-1263 . -1047) 101792) ((-1261 . -21) T) ((-1261 . -25) T) ((-1240 . -21) T) ((-1240 . -25) T) ((-821 . -723) 101734) ((-356 . -622) 101664) ((-705 . -410) T) ((-1290 . -1227) T) ((-612 . -102) T) ((-1122 . -417) 101633) ((-1012 . -373) NIL) ((-677 . -102) T) ((-182 . -102) T) ((-162 . -102) T) ((-157 . -102) T) ((-155 . -102) T) ((-103 . -34) T) ((-1188 . -652) 101543) ((-743 . -1227) T) ((-737 . -1060) 101386) ((-44 . -767) T) ((-737 . -646) 101235) ((-599 . -102) T) ((-77 . -402) T) ((-77 . -401) T) ((-659 . -662) 101219) ((-142 . -1227) T) ((-877 . -148) T) ((-877 . -146) NIL) ((-1226 . -93) T) ((-356 . -1058) T) ((-70 . -388) T) ((-70 . -401) T) ((-1175 . -102) T) ((-676 . -520) 101152) ((-1289 . -652) 101097) ((-695 . -313) 101035) ((-970 . -38) 100932) ((-1190 . -619) 100914) ((-741 . -38) 100884) ((-556 . -313) 100688) ((-1184 . -1060) 100571) ((-320 . -1227) T) ((-356 . -235) T) ((-356 . -245) T) ((-317 . -1227) T) ((-293 . -1109) T) ((-1183 . -1060) 100406) ((-1177 . -1060) 100196) ((-1135 . -1060) 100079) ((-1184 . -646) 99976) ((-1183 . -646) 99817) ((-717 . -1231) T) ((-1177 . -646) 99613) ((-1166 . -657) 99597) ((-1135 . -646) 99494) ((-1221 . -562) 99473) ((-825 . -391) 99457) ((-717 . -562) T) ((-320 . -891) 99441) ((-320 . -893) 99366) ((-317 . -891) 99327) ((-317 . -893) NIL) ((-805 . -313) 99292) ((-323 . -723) 99133) ((-392 . -391) 99117) ((-328 . -327) 99094) ((-491 . -102) T) ((-480 . -25) T) ((-480 . -21) T) ((-424 . -38) 99068) ((-320 . -1047) 98731) ((-227 . -1212) T) ((-227 . -1215) T) ((-3 . -619) 98713) ((-317 . -1047) 98643) ((-2 . -1109) T) ((-2 . |RecordCategory|) T) ((-839 . -619) 98625) ((-1122 . -1067) 98555) ((-586 . -927) T) ((-570 . -826) T) ((-570 . -927) T) ((-501 . -927) T) ((-137 . -1047) 98539) ((-227 . -95) T) ((-171 . -148) 98518) ((-75 . -447) T) ((0 . -619) 98500) ((-75 . -401) T) ((-171 . -146) 98451) ((-227 . -35) T) ((-49 . -619) 98433) ((-483 . -1067) T) ((-493 . -233) 98415) ((-490 . -977) 98399) ((-488 . -854) 98378) ((-219 . -233) 98360) ((-81 . -447) T) ((-81 . -401) T) ((-1155 . -34) T) ((-821 . -174) 98339) ((-737 . -102) T) ((-659 . -652) 98298) ((-1035 . -619) 98265) ((-506 . -290) 98240) ((-320 . -382) 98209) ((-317 . -382) 98170) ((-317 . -343) 98131) ((-1094 . -619) 98113) ((-822 . -956) 98060) ((-668 . -132) T) ((-1250 . -146) 98039) ((-1250 . -148) 98018) ((-1184 . -102) T) ((-1183 . -102) T) ((-1177 . -102) T) ((-1169 . -1109) T) ((-1135 . -102) T) ((-224 . -34) T) ((-293 . -723) 98005) ((-1169 . -616) 97981) ((-599 . -313) NIL) ((-490 . -1109) 97959) ((-1159 . -231) 97909) ((-396 . -619) 97891) ((-516 . -856) T) ((-1129 . -1227) T) ((-1269 . -1268) 97875) ((-1269 . -1255) 97852) ((-1262 . -1260) 97813) ((-1262 . -1255) 97783) ((-1262 . -1258) 97767) ((-1241 . -1239) 97728) ((-1241 . -1255) 97705) ((-627 . -619) 97687) ((-1241 . -1237) 97671) ((-705 . -927) T) ((-1184 . -288) 97637) ((-1183 . -288) 97603) ((-1177 . -288) 97569) ((-1089 . -1109) T) ((-1070 . -1109) T) ((-48 . -306) T) ((-320 . -907) 97535) ((-317 . -907) NIL) ((-1070 . -1077) 97514) ((-1129 . -893) 97496) ((-805 . -38) 97480) ((-267 . -645) 97428) ((-249 . -645) 97376) ((-707 . -1065) 97363) ((-601 . -1255) 97340) ((-1135 . -288) 97306) ((-323 . -174) 97237) ((-364 . -1109) T) ((-358 . -1109) T) ((-350 . -1109) T) ((-506 . -19) 97219) ((-1129 . -1047) 97201) ((-1111 . -152) 97185) ((-108 . -1109) T) ((-117 . -1065) 97172) ((-717 . -368) T) ((-506 . -610) 97147) ((-707 . -111) 97132) ((-442 . -102) T) ((-882 . -1272) T) ((-252 . -102) T) ((-45 . -1158) 97082) ((-117 . -111) 97067) ((-641 . -726) T) ((-613 . -726) T) ((-1279 . -619) 97049) ((-1235 . -619) 97031) ((-1233 . -856) T) ((-821 . -520) 96964) ((-1044 . -1227) T) ((-242 . -1060) 96861) ((-1221 . -1121) T) ((-1221 . -23) T) ((-950 . -152) 96845) ((-1182 . -458) 96776) ((-1177 . -313) 96661) ((-242 . -646) 96603) ((-1176 . -1109) T) ((-1168 . -1109) T) ((-1151 . -654) 96577) ((-531 . -102) T) ((-526 . -102) 96527) ((-1135 . -313) 96514) ((-1134 . -458) 96465) ((-1096 . -1231) 96444) ((-788 . -1231) 96423) ((-786 . -1231) 96402) ((-62 . -1227) T) ((-483 . -619) 96354) ((-483 . -620) 96276) ((-1096 . -562) 96207) ((-1003 . -1109) T) ((-788 . -562) 96118) ((-786 . -562) 96049) ((-488 . -417) 96018) ((-629 . -927) 95997) ((-460 . -1231) 95976) ((-737 . -313) 95963) ((-707 . -622) 95935) ((-404 . -619) 95917) ((-681 . -520) 95850) ((-670 . -25) T) ((-670 . -21) T) ((-460 . -562) 95781) ((-360 . -25) T) ((-360 . -21) T) ((-118 . -927) T) ((-118 . -826) NIL) ((-357 . -25) T) ((-357 . -21) T) ((-349 . -25) T) ((-349 . -21) T) ((-267 . -25) T) ((-267 . -21) T) ((-249 . -25) T) ((-249 . -21) T) ((-83 . -389) T) ((-83 . -401) T) ((-135 . -622) 95763) ((-117 . -622) 95735) ((-1089 . -723) 95603) ((-1013 . -1060) 95553) ((-1013 . -646) 95503) ((-950 . -989) 95487) ((-921 . -646) 95439) ((-921 . -1060) 95391) ((-917 . -21) T) ((-917 . -25) T) ((-878 . -856) 95342) ((-872 . -654) 95302) ((-717 . -1121) T) ((-717 . -23) T) ((-293 . -174) T) ((-707 . -1058) T) ((-315 . -93) T) ((-707 . -235) T) ((-653 . -1109) 95280) ((-638 . -616) 95255) ((-638 . -1109) T) ((-587 . -1231) T) ((-587 . -562) T) ((-524 . -1231) T) ((-524 . -562) T) ((-493 . -652) 95205) ((-433 . -1060) 95189) ((-433 . -646) 95173) ((-364 . -723) 95125) ((-358 . -723) 95077) ((-344 . -1065) 95061) ((-350 . -723) 95013) ((-344 . -111) 94992) ((-176 . -1065) 94924) ((-219 . -652) 94874) ((-176 . -111) 94785) ((-108 . -723) 94735) ((-277 . -1109) T) ((-276 . -1109) T) ((-275 . -1109) T) ((-274 . -1109) T) ((-273 . -1109) T) ((-272 . -1109) T) ((-271 . -1109) T) ((-214 . -1109) T) ((-213 . -1109) T) ((-171 . -1215) 94713) ((-171 . -1212) 94691) ((-211 . -1109) T) ((-210 . -1109) T) ((-117 . -1058) T) ((-209 . -1109) T) ((-208 . -1109) T) ((-205 . -1109) T) ((-204 . -1109) T) ((-203 . -1109) T) ((-202 . -1109) T) ((-201 . -1109) T) ((-200 . -1109) T) ((-199 . -1109) T) ((-198 . -1109) T) ((-197 . -1109) T) ((-196 . -1109) T) ((-195 . -1109) T) ((-242 . -102) 94481) ((-171 . -35) 94459) ((-171 . -95) 94437) ((-660 . -1047) 94333) ((-488 . -1067) 94263) ((-1122 . -1109) 94053) ((-1151 . -34) T) ((-676 . -495) 94037) ((-73 . -1227) T) ((-105 . -619) 94019) ((-1301 . -619) 94001) ((-386 . -619) 93983) ((-344 . -622) 93935) ((-176 . -622) 93852) ((-1226 . -496) 93833) ((-737 . -38) 93682) ((-577 . -1215) T) ((-577 . -1212) T) ((-537 . -619) 93664) ((-526 . -313) 93602) ((-506 . -619) 93584) ((-506 . -620) 93566) ((-1226 . -619) 93532) ((-1177 . -1161) NIL) ((-1036 . -1080) 93501) ((-1036 . -1109) T) ((-1013 . -102) T) ((-980 . -102) T) ((-921 . -102) T) ((-900 . -1047) 93478) ((-1151 . -732) T) ((-1012 . -654) 93423) ((-482 . -1109) T) ((-469 . -1109) T) ((-592 . -23) T) ((-577 . -35) T) ((-577 . -95) T) ((-433 . -102) T) ((-1072 . -231) 93369) ((-1184 . -38) 93266) ((-872 . -732) T) ((-700 . -927) T) ((-517 . -25) T) ((-513 . -21) T) ((-513 . -25) T) ((-1183 . -38) 93107) ((-344 . -1058) T) ((-1177 . -38) 92903) ((-1089 . -174) T) ((-176 . -1058) T) ((-1135 . -38) 92800) ((-718 . -47) 92777) ((-364 . -174) T) ((-358 . -174) T) ((-525 . -57) 92751) ((-503 . -57) 92701) ((-356 . -1296) 92678) ((-227 . -458) T) ((-323 . -294) 92629) ((-350 . -174) T) ((-176 . -245) T) ((-1240 . -856) 92528) ((-108 . -174) T) ((-878 . -1001) 92512) ((-664 . -1121) T) ((-587 . -368) T) ((-587 . -333) 92499) ((-524 . -333) 92476) ((-524 . -368) T) ((-320 . -311) 92455) ((-317 . -311) T) ((-608 . -856) 92434) ((-1122 . -723) 92376) ((-526 . -286) 92360) ((-664 . -23) T) ((-424 . -233) 92344) ((-317 . -1031) NIL) ((-341 . -23) T) ((-103 . -1019) 92328) ((-45 . -36) 92307) ((-618 . -1109) T) ((-356 . -373) T) ((-530 . -102) T) ((-501 . -27) T) ((-242 . -313) 92245) ((-1096 . -1121) T) ((-1300 . -654) 92219) ((-788 . -1121) T) ((-786 . -1121) T) ((-460 . -1121) T) ((-1071 . -458) T) ((-1160 . -1109) T) ((-959 . -458) 92170) ((-1124 . -1092) T) ((-110 . -1109) T) ((-1096 . -23) T) ((-823 . -1067) T) ((-788 . -23) T) ((-786 . -23) T) ((-487 . -458) 92121) ((-1169 . -520) 91904) ((-386 . -387) 91883) ((-1188 . -417) 91867) ((-467 . -23) T) ((-460 . -23) T) ((-96 . -1109) T) ((-490 . -520) 91800) ((-1269 . -1060) 91683) ((-1269 . -646) 91580) ((-1262 . -646) 91421) ((-1262 . -1060) 91256) ((-293 . -294) T) ((-1241 . -1060) 91046) ((-1091 . -619) 91028) ((-1091 . -620) 91009) ((-413 . -916) 90988) ((-1241 . -646) 90784) ((-50 . -1121) T) ((-1221 . -132) T) ((-1033 . -927) T) ((-1012 . -732) T) ((-849 . -654) 90757) ((-718 . -893) NIL) ((-602 . -1060) 90717) ((-587 . -1121) T) ((-524 . -1121) T) ((-601 . -1060) 90600) ((-1177 . -406) 90552) ((-1013 . -313) NIL) ((-821 . -495) 90536) ((-602 . -646) 90509) ((-359 . -927) T) ((-601 . -646) 90406) ((-1166 . -34) T) ((-413 . -654) 90358) ((-50 . -23) T) ((-717 . -132) T) ((-718 . -1047) 90238) ((-587 . -23) T) ((-108 . -520) NIL) ((-524 . -23) T) ((-171 . -415) 90209) ((-1149 . -1109) T) ((-1292 . -1291) 90193) ((-707 . -801) T) ((-707 . -798) T) ((-1129 . -311) T) ((-384 . -148) T) ((-284 . -619) 90175) ((-283 . -619) 90157) ((-1240 . -1001) 90127) ((-48 . -927) T) ((-681 . -495) 90111) ((-254 . -1284) 90081) ((-253 . -1284) 90051) ((-1186 . -856) T) ((-1122 . -174) 90030) ((-1129 . -1031) T) ((-1055 . -34) T) ((-842 . -148) 90009) ((-842 . -146) 89988) ((-743 . -107) 89972) ((-618 . -133) T) ((-488 . -1109) 89762) ((-1188 . -1067) T) ((-877 . -458) T) ((-85 . -1227) T) ((-242 . -38) 89732) ((-142 . -107) 89714) ((-718 . -382) 89698) ((-839 . -622) 89566) ((-1300 . -732) T) ((-1289 . -1067) T) ((-1129 . -551) T) ((-585 . -102) T) ((-130 . -496) 89548) ((-1269 . -102) T) ((-396 . -1065) 89532) ((-1262 . -102) T) ((-1182 . -956) 89501) ((-130 . -619) 89468) ((-52 . -619) 89450) ((-1134 . -956) 89417) ((-659 . -417) 89401) ((-1241 . -102) T) ((-1168 . -520) NIL) ((-668 . -25) T) ((-627 . -1065) 89385) ((-668 . -21) T) ((-970 . -652) 89295) ((-741 . -652) 89240) ((-721 . -652) 89212) ((-396 . -111) 89191) ((-224 . -257) 89175) ((-1063 . -1062) 89115) ((-1063 . -1109) T) ((-1013 . -1161) T) ((-824 . -1109) T) ((-459 . -652) 89030) ((-348 . -1231) T) ((-641 . -654) 89014) ((-627 . -111) 88993) ((-613 . -654) 88977) ((-602 . -102) T) ((-315 . -496) 88958) ((-592 . -132) T) ((-601 . -102) T) ((-420 . -1109) T) ((-390 . -1109) T) ((-315 . -619) 88924) ((-229 . -1109) 88902) ((-653 . -520) 88835) ((-638 . -520) 88679) ((-839 . -1058) 88658) ((-650 . -152) 88642) ((-348 . -562) T) ((-718 . -907) 88585) ((-556 . -231) 88535) ((-1269 . -288) 88501) ((-1262 . -288) 88467) ((-1089 . -294) 88418) ((-493 . -854) T) ((-225 . -1121) T) ((-1241 . -288) 88384) ((-1221 . -499) 88350) ((-1013 . -38) 88300) ((-219 . -854) T) ((-424 . -652) 88259) ((-921 . -38) 88211) ((-849 . -800) 88190) ((-849 . -797) 88169) ((-849 . -732) 88148) ((-364 . -294) T) ((-358 . -294) T) ((-350 . -294) T) ((-171 . -458) 88079) ((-433 . -38) 88063) ((-108 . -294) T) ((-225 . -23) T) ((-413 . -800) 88042) ((-413 . -797) 88021) ((-413 . -732) T) ((-506 . -292) 87996) ((-483 . -1065) 87961) ((-664 . -132) T) ((-627 . -622) 87930) ((-1122 . -520) 87863) ((-341 . -132) T) ((-171 . -408) 87842) ((-488 . -723) 87784) ((-821 . -290) 87761) ((-483 . -111) 87717) ((-659 . -1067) T) ((-822 . -1060) 87560) ((-1288 . -1092) T) ((-1250 . -458) 87491) ((-822 . -646) 87340) ((-1287 . -1092) T) ((-1096 . -132) T) ((-1063 . -723) 87282) ((-788 . -132) T) ((-786 . -132) T) ((-577 . -458) T) ((-1036 . -520) 87215) ((-627 . -1058) T) ((-598 . -1109) T) ((-539 . -175) T) ((-467 . -132) T) ((-460 . -132) T) ((-45 . -1109) T) ((-390 . -723) 87185) ((-823 . -1109) T) ((-482 . -520) 87118) ((-469 . -520) 87051) ((-459 . -372) 87021) ((-45 . -616) 87000) ((-320 . -306) T) ((-483 . -622) 86950) ((-1241 . -313) 86835) ((-676 . -619) 86797) ((-59 . -856) 86776) ((-1013 . -406) 86758) ((-554 . -619) 86740) ((-805 . -652) 86699) ((-821 . -610) 86676) ((-522 . -856) 86655) ((-502 . -856) 86634) ((-40 . -1231) T) ((-1008 . -1047) 86530) ((-50 . -132) T) ((-587 . -132) T) ((-524 . -132) T) ((-298 . -654) 86390) ((-348 . -333) 86367) ((-348 . -368) T) ((-326 . -327) 86344) ((-323 . -290) 86329) ((-40 . -562) T) ((-384 . -1212) T) ((-384 . -1215) T) ((-1044 . -1203) 86304) ((-1199 . -237) 86254) ((-1177 . -233) 86206) ((-334 . -1109) T) ((-384 . -95) T) ((-384 . -35) T) ((-1044 . -107) 86152) ((-483 . -1058) T) ((-1301 . -1065) 86136) ((-485 . -237) 86086) ((-1169 . -495) 86020) ((-1292 . -1060) 86004) ((-386 . -1065) 85988) ((-1292 . -646) 85958) ((-483 . -245) T) ((-822 . -102) T) ((-720 . -148) 85937) ((-720 . -146) 85916) ((-490 . -495) 85900) ((-491 . -340) 85869) ((-1301 . -111) 85848) ((-518 . -1109) T) ((-488 . -174) 85827) ((-1008 . -382) 85811) ((-419 . -102) T) ((-386 . -111) 85790) ((-1008 . -343) 85774) ((-282 . -992) 85758) ((-281 . -992) 85742) ((-1299 . -619) 85724) ((-1297 . -619) 85706) ((-110 . -520) NIL) ((-1182 . -1253) 85690) ((-860 . -858) 85674) ((-1188 . -1109) T) ((-103 . -1227) T) ((-959 . -956) 85635) ((-823 . -723) 85577) ((-1241 . -1161) NIL) ((-487 . -956) 85522) ((-1071 . -144) T) ((-60 . -102) 85500) ((-44 . -619) 85482) ((-78 . -619) 85464) ((-356 . -654) 85409) ((-1289 . -1109) T) ((-517 . -856) T) ((-348 . -1121) T) ((-299 . -1109) T) ((-1008 . -907) 85368) ((-299 . -616) 85347) ((-1301 . -622) 85296) ((-1269 . -38) 85193) ((-1262 . -38) 85034) ((-1241 . -38) 84830) ((-493 . -1067) T) ((-386 . -622) 84814) ((-219 . -1067) T) ((-348 . -23) T) ((-153 . -619) 84796) ((-839 . -801) 84775) ((-839 . -798) 84754) ((-1226 . -622) 84735) ((-602 . -38) 84708) ((-601 . -38) 84605) ((-876 . -562) T) ((-225 . -132) T) ((-323 . -1011) 84571) ((-79 . -619) 84553) ((-718 . -311) 84532) ((-298 . -732) 84434) ((-830 . -102) T) ((-870 . -850) T) ((-298 . -479) 84413) ((-1292 . -102) T) ((-40 . -368) T) ((-878 . -148) 84392) ((-491 . -652) 84374) ((-878 . -146) 84353) ((-1168 . -495) 84335) ((-1301 . -1058) T) ((-488 . -520) 84268) ((-1155 . -1227) T) ((-971 . -619) 84250) ((-653 . -495) 84234) ((-638 . -495) 84165) ((-821 . -619) 83896) ((-48 . -27) T) ((-1188 . -723) 83793) ((-659 . -1109) T) ((-867 . -866) T) ((-442 . -369) 83767) ((-737 . -652) 83677) ((-1111 . -102) T) ((-979 . -1109) T) ((-870 . -1109) T) ((-822 . -313) 83664) ((-539 . -533) T) ((-539 . -582) T) ((-1297 . -387) 83636) ((-1063 . -520) 83569) ((-1169 . -290) 83545) ((-242 . -233) 83514) ((-254 . -1060) 83411) ((-253 . -1060) 83308) ((-1289 . -723) 83278) ((-1176 . -93) T) ((-1003 . -93) T) ((-823 . -174) 83257) ((-254 . -646) 83199) ((-253 . -646) 83141) ((-1224 . -496) 83118) ((-229 . -520) 83051) ((-627 . -801) 83030) ((-627 . -798) 83009) ((-1224 . -619) 82921) ((-224 . -1227) T) ((-681 . -619) 82853) ((-1184 . -652) 82763) ((-1166 . -1019) 82747) ((-950 . -102) 82697) ((-356 . -732) T) ((-867 . -619) 82679) ((-1183 . -652) 82561) ((-1177 . -652) 82398) ((-1135 . -652) 82308) ((-1241 . -406) 82260) ((-1122 . -495) 82244) ((-60 . -313) 82182) ((-335 . -102) T) ((-1221 . -21) T) ((-1221 . -25) T) ((-40 . -1121) T) ((-717 . -21) T) ((-633 . -619) 82164) ((-521 . -327) 82143) ((-717 . -25) T) ((-445 . -102) T) ((-108 . -290) NIL) ((-928 . -1121) T) ((-40 . -23) T) ((-777 . -1121) T) ((-570 . -1231) T) ((-501 . -1231) T) ((-323 . -619) 82125) ((-1013 . -233) 82107) ((-171 . -167) 82091) ((-586 . -562) T) ((-570 . -562) T) ((-501 . -562) T) ((-777 . -23) T) ((-1261 . -148) 82070) ((-1169 . -610) 82046) ((-1261 . -146) 82025) ((-1036 . -495) 82009) ((-1240 . -146) 81934) ((-1240 . -148) 81859) ((-1292 . -1298) 81838) ((-482 . -495) 81822) ((-469 . -495) 81806) ((-529 . -34) T) ((-659 . -723) 81776) ((-112 . -976) T) ((-668 . -856) 81755) ((-1188 . -174) 81706) ((-370 . -102) T) ((-242 . -240) 81685) ((-254 . -102) T) ((-253 . -102) T) ((-1250 . -956) 81654) ((-247 . -856) 81633) ((-822 . -38) 81482) ((-45 . -520) 81274) ((-1168 . -290) 81249) ((-216 . -1109) T) ((-1159 . -1109) T) ((-1159 . -616) 81228) ((-592 . -25) T) ((-592 . -21) T) ((-1111 . -313) 81166) ((-970 . -417) 81150) ((-705 . -1231) T) ((-638 . -290) 81125) ((-1096 . -645) 81073) ((-788 . -645) 81021) ((-786 . -645) 80969) ((-348 . -132) T) ((-293 . -619) 80951) ((-912 . -1109) T) ((-705 . -562) T) ((-130 . -622) 80933) ((-876 . -1121) T) ((-460 . -645) 80881) ((-912 . -910) 80865) ((-384 . -458) T) ((-493 . -1109) T) ((-950 . -313) 80803) ((-707 . -654) 80790) ((-555 . -850) T) ((-219 . -1109) T) ((-320 . -927) 80769) ((-317 . -927) T) ((-317 . -826) NIL) ((-396 . -726) T) ((-876 . -23) T) ((-117 . -654) 80756) ((-480 . -146) 80735) ((-424 . -417) 80719) ((-480 . -148) 80698) ((-110 . -495) 80680) ((-315 . -622) 80661) ((-2 . -619) 80643) ((-188 . -102) T) ((-1168 . -19) 80625) ((-1168 . -610) 80600) ((-664 . -21) T) ((-664 . -25) T) ((-599 . -1153) T) ((-1122 . -290) 80577) ((-341 . -25) T) ((-341 . -21) T) ((-242 . -652) 80327) ((-501 . -368) T) ((-1292 . -38) 80297) ((-1182 . -1060) 80120) ((-1151 . -1227) T) ((-1134 . -1060) 79963) ((-860 . -1060) 79947) ((-638 . -610) 79922) ((-1299 . -1065) 79906) ((-1297 . -1065) 79890) ((-1182 . -646) 79719) ((-1134 . -646) 79568) ((-860 . -646) 79538) ((-1261 . -1212) 79504) ((-1261 . -1215) 79470) ((-555 . -1109) T) ((-1096 . -25) T) ((-1096 . -21) T) ((-537 . -798) T) ((-537 . -801) T) ((-118 . -1231) T) ((-970 . -1067) T) ((-629 . -562) T) ((-788 . -25) T) ((-788 . -21) T) ((-786 . -21) T) ((-786 . -25) T) ((-741 . -1067) T) ((-721 . -1067) T) ((-676 . -1065) 79454) ((-523 . -1092) T) ((-467 . -25) T) ((-118 . -562) T) ((-467 . -21) T) ((-460 . -25) T) ((-460 . -21) T) ((-1261 . -95) 79420) ((-1160 . -93) T) ((-1151 . -1047) 79316) ((-823 . -294) 79295) ((-1244 . -102) 79273) ((-829 . -1109) T) ((-973 . -976) T) ((-676 . -111) 79252) ((-623 . -1227) T) ((-299 . -520) 79044) ((-1241 . -233) 78996) ((-1240 . -1212) 78962) ((-1240 . -1215) 78928) ((-254 . -313) 78866) ((-253 . -313) 78804) ((-1235 . -373) T) ((-1169 . -620) NIL) ((-1169 . -619) 78786) ((-1232 . -850) T) ((-1151 . -382) 78770) ((-1129 . -826) T) ((-96 . -93) T) ((-1129 . -927) T) ((-1122 . -610) 78747) ((-1089 . -620) 78731) ((-1013 . -652) 78681) ((-921 . -652) 78618) ((-821 . -292) 78595) ((-490 . -619) 78527) ((-614 . -152) 78474) ((-493 . -723) 78424) ((-424 . -1067) T) ((-488 . -495) 78408) ((-433 . -652) 78367) ((-331 . -856) 78346) ((-344 . -654) 78320) ((-50 . -21) T) ((-50 . -25) T) ((-219 . -723) 78270) ((-171 . -730) 78241) ((-176 . -654) 78173) ((-587 . -21) T) ((-587 . -25) T) ((-524 . -25) T) ((-524 . -21) T) ((-481 . -152) 78123) ((-1089 . -619) 78105) ((-1070 . -619) 78087) ((-1002 . -102) T) ((-868 . -102) T) ((-805 . -417) 78050) ((-40 . -132) T) ((-705 . -368) T) ((-707 . -732) T) ((-707 . -800) T) ((-707 . -797) T) ((-214 . -902) T) ((-586 . -1121) T) ((-570 . -1121) T) ((-501 . -1121) T) ((-364 . -619) 78032) ((-358 . -619) 78014) ((-350 . -619) 77996) ((-66 . -402) T) ((-66 . -401) T) ((-108 . -620) 77926) ((-108 . -619) 77868) ((-213 . -902) T) ((-965 . -152) 77852) ((-777 . -132) T) ((-676 . -622) 77770) ((-135 . -732) T) ((-117 . -732) T) ((-1261 . -35) 77736) ((-1063 . -495) 77720) ((-586 . -23) T) ((-570 . -23) T) ((-501 . -23) T) ((-1240 . -95) 77686) ((-1240 . -35) 77652) ((-1182 . -102) T) ((-1134 . -102) T) ((-860 . -102) T) ((-229 . -495) 77636) ((-1299 . -111) 77615) ((-1297 . -111) 77594) ((-44 . -1065) 77578) ((-1299 . -622) 77524) ((-1250 . -1253) 77508) ((-861 . -858) 77492) ((-1299 . -1058) T) ((-1188 . -294) 77471) ((-110 . -290) 77446) ((-1297 . -622) 77375) ((-129 . -152) 77357) ((-1151 . -907) 77316) ((-44 . -111) 77295) ((-1232 . -1109) T) ((-1191 . -1272) T) ((-1176 . -496) 77276) ((-1176 . -619) 77242) ((-676 . -1058) T) ((-1168 . -620) NIL) ((-1168 . -619) 77224) ((-1072 . -616) 77199) ((-1072 . -1109) T) ((-1003 . -496) 77180) ((-74 . -447) T) ((-74 . -401) T) ((-1003 . -619) 77146) ((-153 . -1065) 77130) ((-676 . -235) 77109) ((-577 . -560) 77093) ((-360 . -148) 77072) ((-360 . -146) 77023) ((-357 . -148) 77002) ((-357 . -146) 76953) ((-349 . -148) 76932) ((-349 . -146) 76883) ((-267 . -146) 76862) ((-267 . -148) 76841) ((-254 . -38) 76811) ((-249 . -148) 76790) ((-118 . -368) T) ((-249 . -146) 76769) ((-253 . -38) 76739) ((-153 . -111) 76718) ((-1012 . -1047) 76606) ((-1177 . -854) NIL) ((-700 . -1231) T) ((-805 . -1067) T) ((-705 . -1121) T) ((-1297 . -1058) T) ((-1166 . -1227) T) ((-1012 . -382) 76583) ((-917 . -146) T) ((-917 . -148) 76565) ((-876 . -132) T) ((-821 . -1065) 76462) ((-705 . -23) T) ((-700 . -562) T) ((-227 . -1060) 76427) ((-653 . -619) 76359) ((-653 . -620) 76320) ((-638 . -620) NIL) ((-638 . -619) 76302) ((-493 . -174) T) ((-227 . -646) 76267) ((-225 . -21) T) ((-219 . -174) T) ((-225 . -25) T) ((-480 . -1215) 76233) ((-480 . -1212) 76199) ((-277 . -619) 76181) ((-276 . -619) 76163) ((-275 . -619) 76145) ((-274 . -619) 76127) ((-273 . -619) 76109) ((-506 . -657) 76091) ((-272 . -619) 76073) ((-344 . -732) T) ((-271 . -619) 76055) ((-110 . -19) 76037) ((-176 . -732) T) ((-506 . -378) 76019) ((-214 . -619) 76001) ((-526 . -1158) 75985) ((-506 . -124) T) ((-110 . -610) 75960) ((-213 . -619) 75942) ((-480 . -35) 75908) ((-480 . -95) 75874) ((-211 . -619) 75856) ((-210 . -619) 75838) ((-209 . -619) 75820) ((-208 . -619) 75802) ((-205 . -619) 75784) ((-204 . -619) 75766) ((-203 . -619) 75748) ((-202 . -619) 75730) ((-201 . -619) 75712) ((-200 . -619) 75694) ((-199 . -619) 75676) ((-542 . -1112) 75628) ((-198 . -619) 75610) ((-197 . -619) 75592) ((-45 . -495) 75529) ((-196 . -619) 75511) ((-195 . -619) 75493) ((-153 . -622) 75462) ((-1124 . -102) T) ((-821 . -111) 75352) ((-650 . -102) 75302) ((-488 . -290) 75279) ((-1122 . -619) 75010) ((-1110 . -1109) T) ((-1055 . -1227) T) ((-1300 . -1047) 74994) ((-1071 . -1060) 74981) ((-1182 . -313) 74968) ((-959 . -1060) 74811) ((-1144 . -1109) T) ((-1134 . -313) 74798) ((-629 . -1121) T) ((-1071 . -646) 74785) ((-1105 . -1092) T) ((-959 . -646) 74634) ((-1099 . -1092) T) ((-487 . -1060) 74477) ((-1082 . -1092) T) ((-1075 . -1092) T) ((-1045 . -1092) T) ((-1028 . -1092) T) ((-118 . -1121) T) ((-487 . -646) 74326) ((-825 . -102) T) ((-632 . -1092) T) ((-629 . -23) T) ((-1159 . -520) 74118) ((-489 . -1092) T) ((-392 . -102) T) ((-328 . -102) T) ((-220 . -1092) T) ((-970 . -1109) T) ((-153 . -1058) T) ((-737 . -417) 74102) ((-118 . -23) T) ((-1012 . -907) 74054) ((-741 . -1109) T) ((-721 . -1109) T) ((-459 . -1109) T) ((-413 . -1227) T) ((-320 . -436) 74038) ((-598 . -93) T) ((-1269 . -652) 73948) ((-1036 . -620) 73909) ((-1033 . -1231) T) ((-227 . -102) T) ((-1036 . -619) 73871) ((-1262 . -652) 73753) ((-822 . -233) 73737) ((-821 . -622) 73467) ((-1241 . -652) 73304) ((-1033 . -562) T) ((-839 . -654) 73277) ((-359 . -1231) T) ((-482 . -619) 73239) ((-482 . -620) 73200) ((-469 . -620) 73161) ((-469 . -619) 73123) ((-602 . -652) 73082) ((-413 . -891) 73066) ((-323 . -1065) 72901) ((-413 . -893) 72826) ((-601 . -652) 72736) ((-849 . -1047) 72632) ((-493 . -520) NIL) ((-488 . -610) 72609) ((-359 . -562) T) ((-219 . -520) NIL) ((-878 . -458) T) ((-424 . -1109) T) ((-413 . -1047) 72473) ((-323 . -111) 72294) ((-700 . -368) T) ((-227 . -288) T) ((-1224 . -622) 72271) ((-48 . -1231) T) ((-821 . -1058) 72201) ((-1182 . -1161) 72179) ((-586 . -132) T) ((-570 . -132) T) ((-501 . -132) T) ((-1169 . -292) 72155) ((-48 . -562) T) ((-1071 . -102) T) ((-959 . -102) T) ((-877 . -1060) 72100) ((-320 . -27) 72079) ((-821 . -235) 72031) ((-251 . -841) 72013) ((-242 . -854) 71992) ((-189 . -841) 71974) ((-719 . -102) T) ((-299 . -495) 71911) ((-877 . -646) 71856) ((-487 . -102) T) ((-737 . -1067) T) ((-618 . -619) 71838) ((-618 . -620) 71699) ((-413 . -382) 71683) ((-413 . -343) 71667) ((-323 . -622) 71493) ((-1182 . -38) 71322) ((-1134 . -38) 71171) ((-860 . -38) 71141) ((-396 . -654) 71125) ((-650 . -313) 71063) ((-1160 . -496) 71044) ((-1160 . -619) 71010) ((-970 . -723) 70907) ((-741 . -723) 70877) ((-224 . -107) 70861) ((-45 . -290) 70786) ((-627 . -654) 70760) ((-316 . -1109) T) ((-293 . -1065) 70747) ((-110 . -619) 70729) ((-110 . -620) 70711) ((-459 . -723) 70681) ((-822 . -256) 70620) ((-695 . -1109) 70598) ((-556 . -1109) T) ((-1184 . -1067) T) ((-1183 . -1067) T) ((-96 . -496) 70579) ((-1177 . -1067) T) ((-293 . -111) 70564) ((-1135 . -1067) T) ((-556 . -616) 70543) ((-96 . -619) 70509) ((-1013 . -854) T) ((-229 . -693) 70467) ((-700 . -1121) T) ((-1221 . -746) 70443) ((-1033 . -368) T) ((-844 . -841) 70425) ((-839 . -800) 70404) ((-413 . -907) 70363) ((-323 . -1058) T) ((-348 . -25) T) ((-348 . -21) T) ((-171 . -1060) 70273) ((-68 . -1227) T) ((-839 . -797) 70252) ((-424 . -723) 70226) ((-805 . -1109) T) ((-718 . -927) 70205) ((-705 . -132) T) ((-171 . -646) 70033) ((-700 . -23) T) ((-493 . -294) T) ((-839 . -732) 70012) ((-323 . -235) 69964) ((-323 . -245) 69943) ((-219 . -294) T) ((-130 . -373) T) ((-1261 . -458) 69922) ((-1240 . -458) 69901) ((-359 . -333) 69878) ((-359 . -368) T) ((-1149 . -619) 69860) ((-45 . -1265) 69810) ((-877 . -102) T) ((-650 . -286) 69794) ((-705 . -1069) T) ((-1288 . -102) T) ((-1287 . -102) T) ((-483 . -654) 69759) ((-474 . -1109) T) ((-45 . -610) 69684) ((-1168 . -292) 69659) ((-293 . -622) 69631) ((-40 . -645) 69570) ((-1250 . -1060) 69393) ((-861 . -1060) 69377) ((-48 . -368) T) ((-1115 . -619) 69359) ((-1250 . -646) 69188) ((-861 . -646) 69158) ((-638 . -292) 69133) ((-822 . -652) 69043) ((-577 . -1060) 69030) ((-488 . -619) 68761) ((-242 . -417) 68730) ((-959 . -313) 68717) ((-577 . -646) 68704) ((-65 . -1227) T) ((-1072 . -520) 68548) ((-677 . -1109) T) ((-629 . -132) T) ((-487 . -313) 68535) ((-612 . -1109) T) ((-552 . -102) T) ((-118 . -132) T) ((-293 . -1058) T) ((-182 . -1109) T) ((-162 . -1109) T) ((-157 . -1109) T) ((-155 . -1109) T) ((-459 . -767) T) ((-31 . -1092) T) ((-970 . -174) 68486) ((-979 . -93) T) ((-1089 . -1065) 68396) ((-627 . -800) 68375) ((-599 . -1109) T) ((-627 . -797) 68354) ((-627 . -732) T) ((-299 . -290) 68333) ((-298 . -1227) T) ((-1063 . -619) 68295) ((-1063 . -620) 68256) ((-1033 . -1121) T) ((-171 . -102) T) ((-278 . -856) T) ((-1175 . -1109) T) ((-824 . -619) 68238) ((-1122 . -292) 68215) ((-1111 . -231) 68199) ((-1012 . -311) T) ((-805 . -723) 68183) ((-364 . -1065) 68135) ((-359 . -1121) T) ((-358 . -1065) 68087) ((-420 . -619) 68069) ((-390 . -619) 68051) ((-350 . -1065) 68003) ((-229 . -619) 67935) ((-1089 . -111) 67831) ((-1033 . -23) T) ((-108 . -1065) 67781) ((-905 . -102) T) ((-847 . -102) T) ((-814 . -102) T) ((-775 . -102) T) ((-683 . -102) T) ((-480 . -458) 67760) ((-424 . -174) T) ((-364 . -111) 67698) ((-358 . -111) 67636) ((-350 . -111) 67574) ((-254 . -233) 67543) ((-253 . -233) 67512) ((-359 . -23) T) ((-71 . -1227) T) ((-227 . -38) 67477) ((-108 . -111) 67411) ((-40 . -25) T) ((-40 . -21) T) ((-676 . -726) T) ((-171 . -288) 67389) ((-48 . -1121) T) ((-928 . -25) T) ((-777 . -25) T) ((-1301 . -654) 67363) ((-1159 . -495) 67300) ((-491 . -1109) T) ((-1292 . -652) 67259) ((-1250 . -102) T) ((-1071 . -1161) T) ((-861 . -102) T) ((-242 . -1067) 67189) ((-971 . -798) 67142) ((-971 . -801) 67095) ((-386 . -654) 67079) ((-48 . -23) T) ((-821 . -801) 67030) ((-821 . -798) 66981) ((-554 . -373) T) ((-299 . -610) 66960) ((-483 . -732) T) ((-577 . -102) T) ((-1089 . -622) 66778) ((-251 . -187) T) ((-189 . -187) T) ((-877 . -313) 66735) ((-659 . -290) 66714) ((-112 . -667) T) ((-364 . -622) 66651) ((-358 . -622) 66588) ((-350 . -622) 66525) ((-76 . -1227) T) ((-108 . -622) 66475) ((-112 . -113) T) ((-1071 . -38) 66462) ((-670 . -379) 66441) ((-959 . -38) 66290) ((-737 . -1109) T) ((-487 . -38) 66139) ((-86 . -1227) T) ((-598 . -496) 66120) ((-577 . -288) T) ((-1241 . -854) NIL) ((-598 . -619) 66086) ((-1184 . -1109) T) ((-1183 . -1109) T) ((-1089 . -1058) T) ((-356 . -1047) 66063) ((-823 . -496) 66047) ((-1013 . -1067) T) ((-45 . -619) 66029) ((-45 . -620) NIL) ((-921 . -1067) T) ((-823 . -619) 65998) ((-1177 . -1109) T) ((-1156 . -102) 65976) ((-1089 . -245) 65927) ((-433 . -1067) T) ((-364 . -1058) T) ((-370 . -369) 65904) ((-358 . -1058) T) ((-350 . -1058) T) ((-254 . -240) 65883) ((-253 . -240) 65862) ((-1089 . -235) 65787) ((-1135 . -1109) T) ((-298 . -907) 65746) ((-108 . -1058) T) ((-700 . -132) T) ((-424 . -520) 65588) ((-364 . -235) 65567) ((-364 . -245) T) ((-44 . -726) T) ((-358 . -235) 65546) ((-358 . -245) T) ((-350 . -235) 65525) ((-350 . -245) T) ((-1176 . -622) 65506) ((-171 . -313) 65471) ((-108 . -245) T) ((-108 . -235) T) ((-1003 . -622) 65452) ((-323 . -798) T) ((-876 . -21) T) ((-876 . -25) T) ((-413 . -311) T) ((-506 . -34) T) ((-110 . -292) 65427) ((-1122 . -1065) 65324) ((-877 . -1161) NIL) ((-334 . -619) 65306) ((-413 . -1031) 65284) ((-1122 . -111) 65174) ((-697 . -1272) T) ((-442 . -1109) T) ((-252 . -1109) T) ((-1301 . -732) T) ((-63 . -619) 65156) ((-877 . -38) 65101) ((-529 . -1227) T) ((-608 . -152) 65085) ((-518 . -619) 65067) ((-1250 . -313) 65054) ((-737 . -723) 64903) ((-537 . -799) T) ((-537 . -800) T) ((-570 . -645) 64885) ((-501 . -645) 64845) ((-360 . -458) T) ((-357 . -458) T) ((-349 . -458) T) ((-267 . -458) 64796) ((-531 . -1109) T) ((-526 . -1109) 64746) ((-249 . -458) 64697) ((-1159 . -290) 64676) ((-1188 . -619) 64658) ((-695 . -520) 64591) ((-970 . -294) 64570) ((-556 . -520) 64362) ((-254 . -652) 64182) ((-253 . -652) 63989) ((-1289 . -619) 63958) ((-1289 . -496) 63942) ((-1182 . -233) 63926) ((-1122 . -622) 63656) ((-171 . -1161) 63635) ((-1184 . -723) 63532) ((-1183 . -723) 63373) ((-973 . -113) T) ((-899 . -102) T) ((-1177 . -723) 63169) ((-1135 . -723) 63066) ((-1166 . -680) 63050) ((-360 . -408) 63001) ((-357 . -408) 62952) ((-349 . -408) 62903) ((-1033 . -132) T) ((-805 . -520) 62815) ((-299 . -620) NIL) ((-299 . -619) 62797) ((-917 . -458) T) ((-971 . -373) 62750) ((-821 . -373) 62729) ((-516 . -515) 62708) ((-514 . -515) 62687) ((-493 . -290) NIL) ((-488 . -292) 62664) ((-424 . -294) T) ((-359 . -132) T) ((-219 . -290) NIL) ((-700 . -499) NIL) ((-99 . -1121) T) ((-171 . -38) 62492) ((-1261 . -982) 62454) ((-1156 . -313) 62392) ((-1240 . -982) 62361) ((-917 . -408) T) ((-1122 . -1058) 62291) ((-1263 . -562) T) ((-1159 . -610) 62270) ((-112 . -856) T) ((-1072 . -495) 62201) ((-586 . -21) T) ((-586 . -25) T) ((-570 . -21) T) ((-570 . -25) T) ((-501 . -25) T) ((-501 . -21) T) ((-1250 . -1161) 62179) ((-1122 . -235) 62131) ((-48 . -132) T) ((-1208 . -102) T) ((-242 . -1109) 61921) ((-877 . -406) 61898) ((-1097 . -102) T) ((-1085 . -102) T) ((-614 . -102) T) ((-481 . -102) T) ((-1250 . -38) 61727) ((-861 . -38) 61697) ((-1043 . -1060) 61671) ((-737 . -174) 61582) ((-659 . -619) 61564) ((-651 . -1092) T) ((-1043 . -646) 61548) ((-577 . -38) 61535) ((-979 . -496) 61516) ((-979 . -619) 61482) ((-965 . -102) 61432) ((-870 . -619) 61414) ((-870 . -620) 61336) ((-599 . -520) NIL) ((-1269 . -1067) T) ((-1262 . -1067) T) ((-326 . -1060) 61318) ((-1241 . -1067) T) ((-1305 . -1121) T) ((-1221 . -148) 61297) ((-326 . -646) 61279) ((-1221 . -146) 61258) ((-1194 . -102) T) ((-1193 . -102) T) ((-1192 . -102) T) ((-1184 . -174) 61209) ((-602 . -1067) T) ((-601 . -1067) T) ((-1183 . -174) 61140) ((-1177 . -174) 61071) ((-384 . -1060) 61036) ((-1160 . -622) 61017) ((-1135 . -174) 60968) ((-1013 . -1109) T) ((-980 . -1109) T) ((-921 . -1109) T) ((-384 . -646) 60933) ((-805 . -803) 60917) ((-705 . -25) T) ((-705 . -21) T) ((-118 . -645) 60894) ((-707 . -893) 60876) ((-433 . -1109) T) ((-320 . -1231) 60855) ((-317 . -1231) T) ((-171 . -406) 60839) ((-842 . -1060) 60809) ((-480 . -982) 60771) ((-131 . -102) T) ((-129 . -102) T) ((-72 . -619) 60753) ((-833 . -1060) 60737) ((-108 . -801) T) ((-108 . -798) T) ((-707 . -1047) 60719) ((-320 . -562) 60698) ((-317 . -562) T) ((-842 . -646) 60668) ((-833 . -646) 60638) ((-1305 . -23) T) ((-135 . -1047) 60620) ((-96 . -622) 60601) ((-1002 . -652) 60583) ((-488 . -1065) 60480) ((-45 . -292) 60405) ((-242 . -723) 60347) ((-523 . -102) T) ((-488 . -111) 60237) ((-1101 . -102) 60207) ((-1043 . -102) T) ((-1182 . -652) 60117) ((-1134 . -652) 60027) ((-860 . -652) 59986) ((-650 . -834) 59965) ((-737 . -520) 59908) ((-1063 . -1065) 59892) ((-1144 . -93) T) ((-1072 . -290) 59867) ((-629 . -21) T) ((-629 . -25) T) ((-530 . -1109) T) ((-676 . -654) 59841) ((-366 . -102) T) ((-326 . -102) T) ((-390 . -1065) 59825) ((-1063 . -111) 59804) ((-822 . -417) 59788) ((-118 . -25) T) ((-89 . -619) 59770) ((-118 . -21) T) ((-614 . -313) 59565) ((-481 . -313) 59369) ((-1159 . -620) NIL) ((-390 . -111) 59348) ((-384 . -102) T) ((-216 . -619) 59330) ((-1159 . -619) 59312) ((-1177 . -520) 59081) ((-1013 . -723) 59031) ((-1135 . -520) 59001) ((-921 . -723) 58953) ((-488 . -622) 58683) ((-356 . -311) T) ((-1199 . -152) 58633) ((-965 . -313) 58571) ((-842 . -102) T) ((-433 . -723) 58555) ((-227 . -834) T) ((-833 . -102) T) ((-831 . -102) T) ((-485 . -152) 58505) ((-1261 . -1260) 58484) ((-1129 . -1231) T) ((-344 . -1047) 58451) ((-1261 . -1255) 58421) ((-1261 . -1258) 58405) ((-1240 . -1239) 58384) ((-80 . -619) 58366) ((-912 . -619) 58348) ((-1240 . -1255) 58325) ((-1129 . -562) T) ((-928 . -856) T) ((-777 . -856) T) ((-678 . -856) T) ((-493 . -620) 58255) ((-493 . -619) 58196) ((-384 . -288) T) ((-1240 . -1237) 58180) ((-1263 . -1121) T) ((-219 . -620) 58110) ((-219 . -619) 58051) ((-1299 . -654) 58025) ((-1072 . -610) 58000) ((-824 . -622) 57984) ((-59 . -152) 57968) ((-522 . -152) 57952) ((-502 . -152) 57936) ((-364 . -1296) 57920) ((-358 . -1296) 57904) ((-350 . -1296) 57888) ((-320 . -368) 57867) ((-317 . -368) T) ((-488 . -1058) 57797) ((-700 . -645) 57779) ((-1297 . -654) 57753) ((-129 . -313) NIL) ((-1263 . -23) T) ((-695 . -495) 57737) ((-64 . -619) 57719) ((-1122 . -801) 57670) ((-1122 . -798) 57621) ((-556 . -495) 57558) ((-676 . -34) T) ((-488 . -235) 57510) ((-299 . -292) 57489) ((-242 . -174) 57468) ((-822 . -1067) T) ((-44 . -654) 57426) ((-1089 . -373) 57377) ((-1096 . -146) 57356) ((-737 . -294) 57287) ((-526 . -520) 57220) ((-823 . -1065) 57171) ((-1096 . -148) 57150) ((-555 . -619) 57132) ((-364 . -373) 57111) ((-358 . -373) 57090) ((-350 . -373) 57069) ((-975 . -1227) T) ((-877 . -233) 57046) ((-823 . -111) 56988) ((-788 . -146) 56967) ((-788 . -148) 56946) ((-267 . -956) 56913) ((-254 . -854) 56892) ((-249 . -956) 56837) ((-253 . -854) 56816) ((-786 . -146) 56795) ((-786 . -148) 56774) ((-153 . -654) 56748) ((-585 . -1109) T) ((-460 . -148) 56727) ((-460 . -146) 56706) ((-676 . -732) T) ((-829 . -619) 56688) ((-1269 . -1109) T) ((-1262 . -1109) T) ((-1241 . -1109) T) ((-1221 . -1215) 56654) ((-1221 . -1212) 56620) ((-1184 . -294) 56599) ((-1183 . -294) 56550) ((-1177 . -294) 56501) ((-1135 . -294) 56480) ((-344 . -907) 56461) ((-1013 . -174) T) ((-921 . -174) T) ((-700 . -21) T) ((-700 . -25) T) ((-227 . -652) 56411) ((-602 . -1109) T) ((-601 . -1109) T) ((-480 . -1258) 56395) ((-480 . -1255) 56365) ((-424 . -290) 56293) ((-553 . -856) T) ((-320 . -1121) 56142) ((-317 . -1121) T) ((-1221 . -35) 56108) ((-1221 . -95) 56074) ((-84 . -619) 56056) ((-91 . -102) 56034) ((-1305 . -132) T) ((-720 . -1060) 56004) ((-598 . -622) 55985) ((-587 . -146) T) ((-587 . -148) 55967) ((-524 . -148) 55949) ((-524 . -146) T) ((-720 . -646) 55919) ((-320 . -23) 55771) ((-40 . -347) 55745) ((-317 . -23) T) ((-823 . -622) 55659) ((-1168 . -657) 55641) ((-1292 . -1067) T) ((-1168 . -378) 55623) ((-821 . -654) 55471) ((-1105 . -102) T) ((-1099 . -102) T) ((-1082 . -102) T) ((-171 . -233) 55455) ((-1075 . -102) T) ((-1045 . -102) T) ((-1028 . -102) T) ((-599 . -495) 55437) ((-632 . -102) T) ((-242 . -520) 55370) ((-489 . -102) T) ((-1299 . -732) T) ((-1297 . -732) T) ((-220 . -102) T) ((-1188 . -1065) 55253) ((-1071 . -652) 55225) ((-959 . -652) 55135) ((-1188 . -111) 55004) ((-882 . -1092) T) ((-487 . -652) 54914) ((-867 . -175) T) ((-823 . -1058) T) ((-687 . -1092) T) ((-682 . -1092) T) ((-521 . -102) T) ((-516 . -102) T) ((-48 . -645) 54874) ((-514 . -102) T) ((-484 . -1092) T) ((-1289 . -1065) 54844) ((-139 . -1092) T) ((-138 . -1092) T) ((-134 . -1092) T) ((-1043 . -38) 54828) ((-823 . -235) T) ((-823 . -245) 54807) ((-1289 . -111) 54772) ((-1269 . -723) 54669) ((-1262 . -723) 54510) ((-556 . -290) 54489) ((-1250 . -233) 54473) ((-1232 . -619) 54455) ((-612 . -93) T) ((-1072 . -620) NIL) ((-1072 . -619) 54437) ((-677 . -93) T) ((-182 . -93) T) ((-162 . -93) T) ((-157 . -93) T) ((-155 . -93) T) ((-1241 . -723) 54233) ((-1012 . -927) T) ((-153 . -732) T) ((-1188 . -622) 54086) ((-1122 . -373) 54065) ((-1033 . -25) T) ((-1013 . -520) NIL) ((-254 . -417) 54034) ((-253 . -417) 54003) ((-1033 . -21) T) ((-878 . -1060) 53955) ((-602 . -723) 53928) ((-601 . -723) 53825) ((-805 . -290) 53783) ((-127 . -102) 53761) ((-839 . -1047) 53657) ((-171 . -834) 53636) ((-323 . -654) 53533) ((-821 . -34) T) ((-720 . -102) T) ((-1129 . -1121) T) ((-1035 . -1227) T) ((-878 . -646) 53485) ((-384 . -38) 53450) ((-359 . -25) T) ((-359 . -21) T) ((-189 . -102) T) ((-163 . -102) T) ((-251 . -102) T) ((-158 . -102) T) ((-360 . -1284) 53434) ((-357 . -1284) 53418) ((-349 . -1284) 53402) ((-171 . -354) 53381) ((-570 . -856) T) ((-1129 . -23) T) ((-87 . -619) 53363) ((-707 . -311) T) ((-842 . -38) 53333) ((-833 . -38) 53303) ((-1289 . -622) 53245) ((-1263 . -132) T) ((-1159 . -292) 53224) ((-971 . -732) 53123) ((-971 . -799) 53076) ((-971 . -800) 53029) ((-821 . -797) 53008) ((-117 . -311) T) ((-91 . -313) 52946) ((-681 . -34) T) ((-556 . -610) 52925) ((-48 . -25) T) ((-48 . -21) T) ((-821 . -800) 52876) ((-821 . -799) 52855) ((-707 . -1031) T) ((-659 . -1065) 52839) ((-877 . -652) 52769) ((-821 . -732) 52679) ((-971 . -479) 52632) ((-488 . -801) 52583) ((-488 . -798) 52534) ((-917 . -1284) 52521) ((-1188 . -1058) T) ((-659 . -111) 52500) ((-1188 . -330) 52477) ((-1213 . -102) 52455) ((-1110 . -619) 52437) ((-707 . -551) T) ((-822 . -1109) T) ((-1289 . -1058) T) ((-1144 . -496) 52418) ((-1233 . -102) T) ((-419 . -1109) T) ((-1144 . -619) 52384) ((-254 . -1067) 52314) ((-253 . -1067) 52244) ((-844 . -102) T) ((-293 . -654) 52231) ((-599 . -290) 52206) ((-695 . -693) 52164) ((-970 . -619) 52146) ((-878 . -102) T) ((-741 . -619) 52128) ((-721 . -619) 52110) ((-1269 . -174) 52061) ((-1262 . -174) 51992) ((-1241 . -174) 51923) ((-705 . -856) T) ((-1013 . -294) T) ((-459 . -619) 51905) ((-633 . -732) T) ((-60 . -1109) 51883) ((-247 . -152) 51867) ((-921 . -294) T) ((-1033 . -1021) T) ((-633 . -479) T) ((-718 . -1231) 51846) ((-659 . -622) 51764) ((-171 . -652) 51659) ((-1277 . -856) 51638) ((-602 . -174) 51617) ((-601 . -174) 51568) ((-1261 . -646) 51409) ((-1261 . -1060) 51244) ((-1240 . -646) 51058) ((-1240 . -1060) 50866) ((-718 . -562) 50777) ((-413 . -927) T) ((-413 . -826) 50756) ((-323 . -800) T) ((-979 . -622) 50737) ((-323 . -732) T) ((-424 . -619) 50719) ((-424 . -620) 50626) ((-650 . -1158) 50610) ((-110 . -657) 50592) ((-176 . -311) T) ((-127 . -313) 50530) ((-110 . -378) 50512) ((-404 . -1227) T) ((-320 . -132) 50383) ((-317 . -132) T) ((-69 . -401) T) ((-110 . -124) T) ((-526 . -495) 50367) ((-660 . -1121) T) ((-599 . -19) 50349) ((-61 . -447) T) ((-61 . -401) T) ((-830 . -1109) T) ((-599 . -610) 50324) ((-483 . -1047) 50284) ((-659 . -1058) T) ((-660 . -23) T) ((-1292 . -1109) T) ((-31 . -102) T) ((-1250 . -652) 50194) ((-861 . -652) 50153) ((-822 . -723) 50002) ((-583 . -866) T) ((-577 . -652) 49974) ((-118 . -856) NIL) ((-1182 . -417) 49958) ((-1134 . -417) 49942) ((-860 . -417) 49926) ((-879 . -102) 49877) ((-1261 . -102) T) ((-1241 . -520) 49646) ((-1240 . -102) T) ((-1213 . -313) 49584) ((-1184 . -290) 49569) ((-1183 . -290) 49554) ((-531 . -93) T) ((-1177 . -290) 49402) ((-316 . -619) 49384) ((-1111 . -1109) T) ((-1089 . -654) 49294) ((-717 . -458) T) ((-695 . -619) 49226) ((-293 . -732) T) ((-108 . -916) NIL) ((-695 . -620) 49187) ((-607 . -619) 49169) ((-583 . -619) 49151) ((-556 . -620) NIL) ((-556 . -619) 49133) ((-535 . -619) 49115) ((-517 . -515) 49094) ((-493 . -1065) 49044) ((-480 . -1060) 48879) ((-513 . -515) 48858) ((-480 . -646) 48699) ((-219 . -1065) 48649) ((-364 . -654) 48601) ((-358 . -654) 48553) ((-227 . -854) T) ((-350 . -654) 48505) ((-608 . -102) 48455) ((-488 . -373) 48434) ((-108 . -654) 48384) ((-493 . -111) 48318) ((-242 . -495) 48302) ((-348 . -148) 48284) ((-348 . -146) T) ((-171 . -375) 48255) ((-950 . -1275) 48239) ((-219 . -111) 48173) ((-878 . -313) 48138) ((-950 . -1109) 48088) ((-805 . -620) 48049) ((-805 . -619) 48031) ((-724 . -102) T) ((-335 . -1109) T) ((-216 . -622) 48008) ((-1129 . -132) T) ((-720 . -38) 47978) ((-320 . -499) 47957) ((-506 . -1227) T) ((-1261 . -288) 47923) ((-1240 . -288) 47889) ((-331 . -152) 47873) ((-445 . -1109) T) ((-1072 . -292) 47848) ((-1292 . -723) 47818) ((-1169 . -34) T) ((-1301 . -1047) 47795) ((-474 . -619) 47777) ((-490 . -34) T) ((-386 . -1047) 47761) ((-1182 . -1067) T) ((-1134 . -1067) T) ((-860 . -1067) T) ((-1071 . -854) T) ((-493 . -622) 47711) ((-219 . -622) 47661) ((-822 . -174) 47572) ((-526 . -290) 47549) ((-1269 . -294) 47528) ((-1208 . -369) 47502) ((-1097 . -269) 47486) ((-677 . -496) 47467) ((-677 . -619) 47433) ((-612 . -496) 47414) ((-118 . -1001) 47391) ((-612 . -619) 47341) ((-480 . -102) T) ((-182 . -496) 47322) ((-182 . -619) 47288) ((-162 . -496) 47269) ((-157 . -496) 47250) ((-155 . -496) 47231) ((-162 . -619) 47197) ((-157 . -619) 47163) ((-370 . -1109) T) ((-254 . -1109) T) ((-253 . -1109) T) ((-155 . -619) 47129) ((-1262 . -294) 47080) ((-1241 . -294) 47031) ((-878 . -1161) 47009) ((-1184 . -1011) 46975) ((-614 . -369) 46915) ((-1183 . -1011) 46881) ((-614 . -231) 46828) ((-700 . -856) T) ((-599 . -619) 46810) ((-599 . -620) NIL) ((-481 . -231) 46760) ((-493 . -1058) T) ((-1177 . -1011) 46726) ((-88 . -446) T) ((-88 . -401) T) ((-219 . -1058) T) ((-1135 . -1011) 46692) ((-1089 . -732) T) ((-718 . -1121) T) ((-602 . -294) 46671) ((-601 . -294) 46650) ((-493 . -245) T) ((-493 . -235) T) ((-219 . -245) T) ((-219 . -235) T) ((-1175 . -619) 46632) ((-878 . -38) 46584) ((-364 . -732) T) ((-358 . -732) T) ((-350 . -732) T) ((-108 . -800) T) ((-108 . -797) T) ((-718 . -23) T) ((-108 . -732) T) ((-526 . -1265) 46568) ((-1305 . -25) T) ((-480 . -288) 46534) ((-1305 . -21) T) ((-1240 . -313) 46473) ((-1186 . -102) T) ((-40 . -146) 46445) ((-40 . -148) 46417) ((-526 . -610) 46394) ((-1122 . -654) 46242) ((-608 . -313) 46180) ((-45 . -657) 46130) ((-45 . -672) 46080) ((-45 . -378) 46030) ((-1168 . -34) T) ((-877 . -854) NIL) ((-660 . -132) T) ((-491 . -619) 46012) ((-242 . -290) 45989) ((-188 . -1109) T) ((-1096 . -458) 45940) ((-822 . -520) 45814) ((-670 . -1060) 45798) ((-653 . -34) T) ((-638 . -34) T) ((-788 . -458) 45729) ((-670 . -646) 45713) ((-360 . -1060) 45665) ((-357 . -1060) 45617) ((-349 . -1060) 45569) ((-267 . -1060) 45412) ((-249 . -1060) 45255) ((-786 . -458) 45206) ((-360 . -646) 45158) ((-357 . -646) 45110) ((-349 . -646) 45062) ((-267 . -646) 44911) ((-249 . -646) 44760) ((-460 . -458) 44711) ((-959 . -417) 44695) ((-737 . -619) 44677) ((-254 . -723) 44619) ((-253 . -723) 44561) ((-737 . -620) 44422) ((-487 . -417) 44406) ((-344 . -306) T) ((-530 . -93) T) ((-356 . -927) T) ((-1009 . -102) 44384) ((-917 . -1060) 44349) ((-1033 . -856) T) ((-60 . -520) 44282) ((-917 . -646) 44247) ((-1240 . -1161) 44199) ((-1013 . -290) NIL) ((-227 . -1067) T) ((-384 . -834) T) ((-1122 . -34) T) ((-587 . -458) T) ((-524 . -458) T) ((-1244 . -1102) 44183) ((-1244 . -1109) 44161) ((-242 . -610) 44138) ((-1244 . -1104) 44095) ((-1184 . -619) 44077) ((-1183 . -619) 44059) ((-1177 . -619) 44041) ((-1177 . -620) NIL) ((-1135 . -619) 44023) ((-878 . -406) 44007) ((-603 . -102) T) ((-591 . -102) T) ((-542 . -102) T) ((-1261 . -38) 43848) ((-1240 . -38) 43662) ((-876 . -148) T) ((-587 . -408) T) ((-524 . -408) T) ((-1273 . -102) T) ((-1263 . -21) T) ((-1263 . -25) T) ((-1122 . -797) 43641) ((-1122 . -800) 43592) ((-1122 . -799) 43571) ((-1002 . -1109) T) ((-1036 . -34) T) ((-868 . -1109) T) ((-1122 . -732) 43481) ((-670 . -102) T) ((-651 . -102) T) ((-556 . -292) 43460) ((-1199 . -102) T) ((-482 . -34) T) ((-469 . -34) T) ((-360 . -102) T) ((-357 . -102) T) ((-349 . -102) T) ((-267 . -102) T) ((-249 . -102) T) ((-483 . -311) T) ((-1071 . -1067) T) ((-959 . -1067) T) ((-320 . -645) 43366) ((-317 . -645) 43327) ((-1182 . -1109) T) ((-487 . -1067) T) ((-485 . -102) T) ((-442 . -619) 43309) ((-1134 . -1109) T) ((-252 . -619) 43291) ((-860 . -1109) T) ((-1150 . -102) T) ((-822 . -294) 43222) ((-970 . -1065) 43105) ((-483 . -1031) T) ((-741 . -1065) 43075) ((-1043 . -652) 43034) ((-459 . -1065) 43004) ((-1156 . -1130) 42988) ((-1111 . -520) 42921) ((-970 . -111) 42790) ((-917 . -102) T) ((-741 . -111) 42755) ((-531 . -496) 42736) ((-531 . -619) 42702) ((-59 . -102) 42652) ((-526 . -620) 42613) ((-526 . -619) 42525) ((-525 . -102) 42503) ((-522 . -102) 42453) ((-503 . -102) 42431) ((-502 . -102) 42381) ((-459 . -111) 42344) ((-254 . -174) 42323) ((-253 . -174) 42302) ((-326 . -652) 42284) ((-424 . -1065) 42258) ((-1221 . -982) 42220) ((-1008 . -1121) T) ((-384 . -652) 42170) ((-1144 . -622) 42151) ((-950 . -520) 42084) ((-493 . -801) T) ((-480 . -38) 41925) ((-424 . -111) 41892) ((-493 . -798) T) ((-1009 . -313) 41830) ((-219 . -801) T) ((-219 . -798) T) ((-1008 . -23) T) ((-718 . -132) T) ((-1240 . -406) 41800) ((-842 . -652) 41745) ((-833 . -652) 41704) ((-320 . -25) 41556) ((-171 . -417) 41540) ((-320 . -21) 41411) ((-317 . -25) T) ((-317 . -21) T) ((-870 . -373) T) ((-970 . -622) 41264) ((-110 . -34) T) ((-741 . -622) 41220) ((-721 . -622) 41202) ((-488 . -654) 41050) ((-877 . -1067) T) ((-599 . -292) 41025) ((-586 . -148) T) ((-570 . -148) T) ((-501 . -148) T) ((-1182 . -723) 40854) ((-1066 . -102) 40832) ((-1134 . -723) 40681) ((-1129 . -645) 40663) ((-860 . -723) 40633) ((-676 . -1227) T) ((-1 . -102) T) ((-424 . -622) 40541) ((-242 . -619) 40272) ((-1124 . -1109) T) ((-1250 . -417) 40256) ((-1199 . -313) 40060) ((-970 . -1058) T) ((-741 . -1058) T) ((-721 . -1058) T) ((-650 . -1109) 40010) ((-1063 . -654) 39994) ((-861 . -417) 39978) ((-517 . -102) T) ((-513 . -102) T) ((-267 . -313) 39965) ((-249 . -313) 39952) ((-970 . -330) 39931) ((-390 . -654) 39915) ((-676 . -1047) 39811) ((-485 . -313) 39615) ((-254 . -520) 39548) ((-253 . -520) 39481) ((-1150 . -313) 39407) ((-825 . -1109) T) ((-805 . -1065) 39391) ((-1269 . -290) 39376) ((-1262 . -290) 39361) ((-1241 . -290) 39209) ((-392 . -1109) T) ((-328 . -1109) T) ((-424 . -1058) T) ((-171 . -1067) T) ((-59 . -313) 39147) ((-805 . -111) 39126) ((-601 . -290) 39111) ((-525 . -313) 39049) ((-522 . -313) 38987) ((-503 . -313) 38925) ((-502 . -313) 38863) ((-424 . -235) 38842) ((-488 . -34) T) ((-1013 . -620) 38772) ((-227 . -1109) T) ((-1013 . -619) 38732) ((-980 . -619) 38692) ((-980 . -620) 38667) ((-921 . -619) 38649) ((-705 . -148) T) ((-707 . -927) T) ((-707 . -826) T) ((-433 . -619) 38631) ((-1129 . -21) T) ((-1129 . -25) T) ((-676 . -382) 38615) ((-117 . -927) T) ((-878 . -233) 38599) ((-78 . -1227) T) ((-127 . -126) 38583) ((-1063 . -34) T) ((-1299 . -1047) 38557) ((-1297 . -1047) 38514) ((-1250 . -1067) T) ((-861 . -1067) T) ((-488 . -797) 38493) ((-360 . -1161) 38472) ((-357 . -1161) 38451) ((-349 . -1161) 38430) ((-488 . -800) 38381) ((-488 . -799) 38360) ((-229 . -34) T) ((-488 . -732) 38270) ((-805 . -622) 38116) ((-668 . -1060) 38100) ((-60 . -495) 38084) ((-577 . -1067) T) ((-668 . -646) 38068) ((-1182 . -174) 37959) ((-1134 . -174) 37870) ((-1071 . -1109) T) ((-1096 . -956) 37815) ((-959 . -1109) T) ((-823 . -654) 37766) ((-788 . -956) 37735) ((-719 . -1109) T) ((-786 . -956) 37702) ((-522 . -286) 37686) ((-676 . -907) 37645) ((-487 . -1109) T) ((-460 . -956) 37612) ((-79 . -1227) T) ((-360 . -38) 37577) ((-357 . -38) 37542) ((-349 . -38) 37507) ((-267 . -38) 37356) ((-249 . -38) 37205) ((-917 . -1161) T) ((-530 . -496) 37186) ((-629 . -148) 37165) ((-629 . -146) 37144) ((-530 . -619) 37110) ((-118 . -148) T) ((-118 . -146) NIL) ((-420 . -732) T) ((-805 . -1058) T) ((-348 . -458) T) ((-1269 . -1011) 37076) ((-1262 . -1011) 37042) ((-1241 . -1011) 37008) ((-917 . -38) 36973) ((-227 . -723) 36938) ((-323 . -47) 36908) ((-40 . -415) 36880) ((-141 . -619) 36862) ((-1008 . -132) T) ((-821 . -1227) T) ((-176 . -927) T) ((-555 . -373) T) ((-612 . -622) 36843) ((-348 . -408) T) ((-720 . -652) 36788) ((-677 . -622) 36769) ((-182 . -622) 36750) ((-162 . -622) 36731) ((-157 . -622) 36712) ((-155 . -622) 36693) ((-526 . -292) 36670) ((-1240 . -233) 36640) ((-882 . -102) T) ((-821 . -1047) 36467) ((-45 . -34) T) ((-687 . -102) T) ((-682 . -102) T) ((-668 . -102) T) ((-660 . -21) T) ((-660 . -25) T) ((-1111 . -495) 36451) ((-681 . -1227) T) ((-484 . -102) T) ((-247 . -102) 36401) ((-552 . -850) T) ((-138 . -102) T) ((-134 . -102) T) ((-139 . -102) T) ((-877 . -1109) T) ((-1188 . -654) 36326) ((-1071 . -723) 36313) ((-737 . -1065) 36156) ((-1182 . -520) 36103) ((-959 . -723) 35952) ((-1134 . -520) 35904) ((-1288 . -1109) T) ((-1287 . -1109) T) ((-487 . -723) 35753) ((-67 . -619) 35735) ((-737 . -111) 35564) ((-950 . -495) 35548) ((-1289 . -654) 35508) ((-823 . -732) T) ((-1184 . -1065) 35391) ((-1183 . -1065) 35226) ((-1177 . -1065) 35016) ((-1135 . -1065) 34899) ((-1012 . -1231) T) ((-1103 . -102) 34877) ((-821 . -382) 34846) ((-585 . -619) 34828) ((-552 . -1109) T) ((-1012 . -562) T) ((-1184 . -111) 34697) ((-1183 . -111) 34518) ((-1177 . -111) 34287) ((-1135 . -111) 34156) ((-1114 . -1112) 34120) ((-384 . -854) T) ((-1269 . -619) 34102) ((-1262 . -619) 34084) ((-878 . -652) 34021) ((-1241 . -619) 34003) ((-1241 . -620) NIL) ((-242 . -292) 33980) ((-40 . -458) T) ((-227 . -174) T) ((-171 . -1109) T) ((-737 . -622) 33765) ((-700 . -148) T) ((-700 . -146) NIL) ((-602 . -619) 33747) ((-601 . -619) 33729) ((-905 . -1109) T) ((-847 . -1109) T) ((-814 . -1109) T) ((-775 . -1109) T) ((-664 . -858) 33713) ((-683 . -1109) T) ((-821 . -907) 33645) ((-1232 . -373) T) ((-40 . -408) NIL) ((-1184 . -622) 33527) ((-1129 . -667) T) ((-877 . -723) 33472) ((-254 . -495) 33456) ((-253 . -495) 33440) ((-1183 . -622) 33183) ((-1177 . -622) 32978) ((-718 . -645) 32926) ((-659 . -654) 32900) ((-1135 . -622) 32782) ((-299 . -34) T) ((-1129 . -113) T) ((-737 . -1058) T) ((-587 . -1284) 32769) ((-524 . -1284) 32746) ((-1250 . -1109) T) ((-1182 . -294) 32657) ((-1134 . -294) 32588) ((-1071 . -174) T) ((-861 . -1109) T) ((-959 . -174) 32499) ((-788 . -1253) 32483) ((-650 . -520) 32416) ((-77 . -619) 32398) ((-737 . -330) 32363) ((-1188 . -732) T) ((-577 . -1109) T) ((-487 . -174) 32274) ((-247 . -313) 32212) ((-1151 . -1121) T) ((-70 . -619) 32194) ((-1289 . -732) T) ((-1184 . -1058) T) ((-1183 . -1058) T) ((-331 . -102) 32144) ((-1177 . -1058) T) ((-1151 . -23) T) ((-1135 . -1058) T) ((-91 . -1130) 32128) ((-872 . -1121) T) ((-1184 . -235) 32087) ((-1183 . -245) 32066) ((-1183 . -235) 32018) ((-1177 . -235) 31905) ((-1177 . -245) 31884) ((-323 . -907) 31790) ((-872 . -23) T) ((-171 . -723) 31618) ((-413 . -1231) T) ((-1110 . -373) T) ((-1012 . -368) T) ((-876 . -458) T) ((-1033 . -148) T) ((-950 . -290) 31595) ((-317 . -856) NIL) ((-1261 . -652) 31477) ((-880 . -102) T) ((-1240 . -652) 31332) ((-718 . -25) T) ((-413 . -562) T) ((-718 . -21) T) ((-531 . -622) 31313) ((-359 . -148) 31295) ((-359 . -146) T) ((-1156 . -1109) 31273) ((-459 . -726) T) ((-75 . -619) 31255) ((-115 . -856) T) ((-247 . -286) 31239) ((-242 . -1065) 31136) ((-81 . -619) 31118) ((-741 . -373) 31071) ((-1186 . -834) T) ((-743 . -237) 31055) ((-1169 . -1227) T) ((-142 . -237) 31037) ((-242 . -111) 30927) ((-1250 . -723) 30756) ((-48 . -148) T) ((-877 . -174) T) ((-861 . -723) 30726) ((-490 . -1227) T) ((-959 . -520) 30673) ((-659 . -732) T) ((-577 . -723) 30660) ((-1043 . -1067) T) ((-487 . -520) 30603) ((-950 . -19) 30587) ((-950 . -610) 30564) ((-822 . -620) NIL) ((-822 . -619) 30546) ((-1221 . -1060) 30429) ((-1013 . -1065) 30379) ((-419 . -619) 30361) ((-254 . -290) 30338) ((-253 . -290) 30315) ((-493 . -916) NIL) ((-320 . -29) 30285) ((-108 . -1227) T) ((-1012 . -1121) T) ((-219 . -916) NIL) ((-1221 . -646) 30182) ((-921 . -1065) 30134) ((-1089 . -1047) 30030) ((-1013 . -111) 29964) ((-717 . -1060) 29929) ((-1012 . -23) T) ((-921 . -111) 29867) ((-743 . -701) 29851) ((-717 . -646) 29816) ((-267 . -233) 29800) ((-433 . -1065) 29784) ((-384 . -1067) T) ((-242 . -622) 29514) ((-700 . -1215) NIL) ((-493 . -654) 29464) ((-480 . -652) 29346) ((-108 . -891) 29328) ((-108 . -893) 29310) ((-700 . -1212) NIL) ((-219 . -654) 29260) ((-364 . -1047) 29244) ((-358 . -1047) 29228) ((-331 . -313) 29166) ((-350 . -1047) 29150) ((-227 . -294) T) ((-433 . -111) 29129) ((-60 . -619) 29061) ((-171 . -174) T) ((-1129 . -856) T) ((-108 . -1047) 29021) ((-899 . -1109) T) ((-842 . -1067) T) ((-833 . -1067) T) ((-700 . -35) NIL) ((-700 . -95) NIL) ((-317 . -1001) 28982) ((-185 . -102) T) ((-586 . -458) T) ((-570 . -458) T) ((-501 . -458) T) ((-413 . -368) T) ((-242 . -1058) 28912) ((-1159 . -34) T) ((-483 . -927) T) ((-1008 . -645) 28860) ((-254 . -610) 28837) ((-253 . -610) 28814) ((-1089 . -382) 28798) ((-877 . -520) 28706) ((-242 . -235) 28658) ((-1168 . -1227) T) ((-1013 . -622) 28608) ((-921 . -622) 28545) ((-830 . -619) 28527) ((-1300 . -1121) T) ((-1292 . -619) 28509) ((-1250 . -174) 28400) ((-433 . -622) 28369) ((-108 . -382) 28351) ((-108 . -343) 28333) ((-1071 . -294) T) ((-959 . -294) 28264) ((-805 . -373) 28243) ((-653 . -1227) T) ((-638 . -1227) T) ((-592 . -1060) 28218) ((-487 . -294) 28149) ((-577 . -174) T) ((-331 . -286) 28133) ((-1300 . -23) T) ((-1221 . -102) T) ((-1208 . -1109) T) ((-1097 . -1109) T) ((-1085 . -1109) T) ((-592 . -646) 28108) ((-83 . -619) 28090) ((-1193 . -850) T) ((-1192 . -850) T) ((-717 . -102) T) ((-360 . -354) 28069) ((-614 . -1109) T) ((-357 . -354) 28048) ((-349 . -354) 28027) ((-481 . -1109) T) ((-1199 . -231) 27977) ((-267 . -256) 27939) ((-1151 . -132) T) ((-614 . -616) 27915) ((-1089 . -907) 27848) ((-1013 . -1058) T) ((-921 . -1058) T) ((-481 . -616) 27827) ((-1177 . -798) NIL) ((-1177 . -801) NIL) ((-1111 . -620) 27788) ((-485 . -231) 27738) ((-1111 . -619) 27720) ((-1013 . -245) T) ((-1013 . -235) T) ((-433 . -1058) T) ((-965 . -1109) 27670) ((-921 . -245) T) ((-872 . -132) T) ((-705 . -458) T) ((-849 . -1121) 27649) ((-108 . -907) NIL) ((-1221 . -288) 27615) ((-878 . -854) 27594) ((-1122 . -1227) T) ((-912 . -732) T) ((-171 . -520) 27506) ((-1008 . -25) T) ((-912 . -479) T) ((-413 . -1121) T) ((-493 . -800) T) ((-493 . -797) T) ((-917 . -354) T) ((-493 . -732) T) ((-219 . -800) T) ((-219 . -797) T) ((-1008 . -21) T) ((-219 . -732) T) ((-849 . -23) 27458) ((-1194 . -1109) T) ((-664 . -1060) 27442) ((-1193 . -1109) T) ((-530 . -622) 27423) ((-1192 . -1109) T) ((-323 . -311) 27402) ((-1044 . -237) 27348) ((-664 . -646) 27318) ((-413 . -23) T) ((-950 . -620) 27279) ((-950 . -619) 27191) ((-650 . -495) 27175) ((-45 . -1019) 27125) ((-623 . -976) T) ((-497 . -102) T) ((-335 . -619) 27107) ((-1122 . -1047) 26934) ((-599 . -657) 26916) ((-131 . -1109) T) ((-129 . -1109) T) ((-599 . -378) 26898) ((-348 . -1284) 26875) ((-445 . -619) 26857) ((-1250 . -520) 26804) ((-1096 . -1060) 26647) ((-1036 . -1227) T) ((-877 . -294) T) ((-1182 . -290) 26574) ((-1096 . -646) 26423) ((-1009 . -1004) 26407) ((-788 . -1060) 26230) ((-786 . -1060) 26073) ((-788 . -646) 25902) ((-786 . -646) 25751) ((-482 . -1227) T) ((-469 . -1227) T) ((-592 . -102) T) ((-467 . -1060) 25722) ((-460 . -1060) 25565) ((-670 . -652) 25534) ((-629 . -458) 25513) ((-467 . -646) 25484) ((-460 . -646) 25333) ((-360 . -652) 25270) ((-357 . -652) 25207) ((-349 . -652) 25144) ((-267 . -652) 25054) ((-249 . -652) 24964) ((-1292 . -387) 24936) ((-523 . -1109) T) ((-118 . -458) T) ((-1207 . -102) T) ((-1101 . -1109) 24906) ((-1043 . -1109) T) ((-1124 . -93) T) ((-900 . -856) T) ((-1269 . -111) 24775) ((-356 . -1231) T) ((-1269 . -1065) 24658) ((-1122 . -382) 24627) ((-1262 . -1065) 24462) ((-1241 . -1065) 24252) ((-1262 . -111) 24073) ((-1241 . -111) 23842) ((-1221 . -313) 23829) ((-1012 . -132) T) ((-917 . -652) 23779) ((-370 . -619) 23761) ((-356 . -562) T) ((-293 . -311) T) ((-602 . -1065) 23721) ((-601 . -1065) 23604) ((-587 . -1060) 23569) ((-524 . -1060) 23514) ((-366 . -1109) T) ((-326 . -1109) T) ((-254 . -619) 23475) ((-253 . -619) 23436) ((-587 . -646) 23401) ((-524 . -646) 23346) ((-700 . -415) 23313) ((-641 . -23) T) ((-613 . -23) T) ((-664 . -102) T) ((-602 . -111) 23266) ((-601 . -111) 23135) ((-384 . -1109) T) ((-341 . -102) T) ((-171 . -294) 23046) ((-1240 . -854) 22999) ((-720 . -1067) T) ((-1156 . -520) 22932) ((-1200 . -841) 22916) ((-1122 . -907) 22848) ((-842 . -1109) T) ((-833 . -1109) T) ((-831 . -1109) T) ((-97 . -102) T) ((-145 . -856) T) ((-618 . -891) 22832) ((-110 . -1227) T) ((-1096 . -102) T) ((-1072 . -34) T) ((-788 . -102) T) ((-786 . -102) T) ((-1269 . -622) 22714) ((-1262 . -622) 22457) ((-467 . -102) T) ((-460 . -102) T) ((-1241 . -622) 22252) ((-242 . -801) 22203) ((-242 . -798) 22154) ((-655 . -102) T) ((-602 . -622) 22112) ((-601 . -622) 21994) ((-1250 . -294) 21905) ((-670 . -640) 21889) ((-188 . -619) 21871) ((-650 . -290) 21848) ((-1043 . -723) 21832) ((-577 . -294) T) ((-970 . -654) 21757) ((-1300 . -132) T) ((-741 . -654) 21717) ((-721 . -654) 21704) ((-278 . -102) T) ((-459 . -654) 21634) ((-50 . -102) T) ((-587 . -102) T) ((-524 . -102) T) ((-1269 . -1058) T) ((-1262 . -1058) T) ((-1241 . -1058) T) ((-513 . -652) 21616) ((-326 . -723) 21598) ((-1269 . -235) 21557) ((-1262 . -245) 21536) ((-1262 . -235) 21488) ((-1241 . -235) 21375) ((-1241 . -245) 21354) ((-1221 . -38) 21251) ((-602 . -1058) T) ((-601 . -1058) T) ((-1013 . -801) T) ((-1013 . -798) T) ((-980 . -801) T) ((-980 . -798) T) ((-878 . -1067) T) ((-109 . -619) 21233) ((-700 . -458) T) ((-384 . -723) 21198) ((-424 . -654) 21172) ((-876 . -875) 21156) ((-717 . -38) 21121) ((-601 . -235) 21080) ((-40 . -730) 21052) ((-356 . -333) 21029) ((-356 . -368) T) ((-1089 . -311) 20980) ((-298 . -1121) 20861) ((-1115 . -1227) T) ((-173 . -102) T) ((-1244 . -619) 20828) ((-849 . -132) 20780) ((-650 . -1265) 20764) ((-842 . -723) 20734) ((-833 . -723) 20704) ((-488 . -1227) T) ((-364 . -311) T) ((-358 . -311) T) ((-350 . -311) T) ((-650 . -610) 20681) ((-413 . -132) T) ((-526 . -672) 20665) ((-108 . -311) T) ((-298 . -23) 20548) ((-526 . -657) 20532) ((-700 . -408) NIL) ((-526 . -378) 20516) ((-295 . -619) 20498) ((-91 . -1109) 20476) ((-108 . -1031) T) ((-570 . -144) T) ((-1277 . -152) 20460) ((-488 . -1047) 20287) ((-1263 . -146) 20248) ((-1263 . -148) 20209) ((-1063 . -1227) T) ((-1002 . -619) 20191) ((-868 . -619) 20173) ((-822 . -1065) 20016) ((-1288 . -93) T) ((-1287 . -93) T) ((-1182 . -620) NIL) ((-1105 . -1109) T) ((-1099 . -1109) T) ((-1096 . -313) 20003) ((-1082 . -1109) T) ((-229 . -1227) T) ((-1075 . -1109) T) ((-1045 . -1109) T) ((-1028 . -1109) T) ((-788 . -313) 19990) ((-786 . -313) 19977) ((-1182 . -619) 19959) ((-822 . -111) 19788) ((-1134 . -619) 19770) ((-632 . -1109) T) ((-583 . -175) T) ((-535 . -175) T) ((-460 . -313) 19757) ((-489 . -1109) T) ((-1134 . -620) 19505) ((-1043 . -174) T) ((-950 . -292) 19482) ((-220 . -1109) T) ((-860 . -619) 19464) ((-614 . -520) 19247) ((-81 . -622) 19188) ((-824 . -1047) 19172) ((-481 . -520) 18964) ((-970 . -732) T) ((-741 . -732) T) ((-721 . -732) T) ((-356 . -1121) T) ((-1189 . -619) 18946) ((-225 . -102) T) ((-488 . -382) 18915) ((-521 . -1109) T) ((-516 . -1109) T) ((-514 . -1109) T) ((-805 . -654) 18889) ((-1033 . -458) T) ((-965 . -520) 18822) ((-356 . -23) T) ((-641 . -132) T) ((-613 . -132) T) ((-359 . -458) T) ((-242 . -373) 18801) ((-384 . -174) T) ((-1261 . -1067) T) ((-1240 . -1067) T) ((-227 . -1011) T) ((-822 . -622) 18538) ((-705 . -393) T) ((-424 . -732) T) ((-707 . -1231) T) ((-1151 . -645) 18486) ((-586 . -875) 18470) ((-1292 . -1065) 18454) ((-1169 . -1203) 18430) ((-707 . -562) T) ((-127 . -1109) 18408) ((-720 . -1109) T) ((-664 . -38) 18378) ((-488 . -907) 18310) ((-251 . -1109) T) ((-189 . -1109) T) ((-359 . -408) T) ((-320 . -148) 18289) ((-320 . -146) 18268) ((-129 . -520) NIL) ((-117 . -562) T) ((-317 . -148) 18224) ((-317 . -146) 18180) ((-48 . -458) T) ((-163 . -1109) T) ((-158 . -1109) T) ((-1169 . -107) 18127) ((-788 . -1161) 18105) ((-695 . -34) T) ((-1292 . -111) 18084) ((-556 . -34) T) ((-490 . -107) 18068) ((-254 . -292) 18045) ((-253 . -292) 18022) ((-877 . -290) 17973) ((-45 . -1227) T) ((-1233 . -850) T) ((-822 . -1058) T) ((-668 . -652) 17942) ((-1188 . -47) 17919) ((-822 . -330) 17881) ((-1096 . -38) 17730) ((-822 . -235) 17709) ((-788 . -38) 17538) ((-786 . -38) 17387) ((-1124 . -496) 17368) ((-460 . -38) 17217) ((-1124 . -619) 17183) ((-1127 . -102) T) ((-650 . -620) 17144) ((-650 . -619) 17056) ((-587 . -1161) T) ((-524 . -1161) T) ((-1156 . -495) 17040) ((-348 . -1060) 16985) ((-1213 . -1109) 16963) ((-1151 . -25) T) ((-1151 . -21) T) ((-348 . -646) 16908) ((-1292 . -622) 16857) ((-480 . -1067) T) ((-1233 . -1109) T) ((-1241 . -798) NIL) ((-1241 . -801) NIL) ((-1008 . -856) 16836) ((-844 . -1109) T) ((-825 . -619) 16818) ((-872 . -21) T) ((-872 . -25) T) ((-805 . -732) T) ((-176 . -1231) T) ((-587 . -38) 16783) ((-524 . -38) 16748) ((-392 . -619) 16730) ((-337 . -102) T) ((-328 . -619) 16712) ((-171 . -290) 16670) ((-63 . -1227) T) ((-112 . -102) T) ((-878 . -1109) T) ((-176 . -562) T) ((-720 . -723) 16640) ((-298 . -132) 16523) ((-227 . -619) 16505) ((-227 . -620) 16435) ((-1012 . -645) 16374) ((-1292 . -1058) T) ((-1129 . -148) T) ((-638 . -1203) 16349) ((-737 . -916) 16328) ((-599 . -34) T) ((-653 . -107) 16312) ((-638 . -107) 16258) ((-1250 . -290) 16185) ((-737 . -654) 16110) ((-299 . -1227) T) ((-1188 . -1047) 16006) ((-950 . -624) 15983) ((-583 . -582) T) ((-583 . -533) T) ((-535 . -533) T) ((-1177 . -916) NIL) ((-1071 . -620) 15898) ((-1071 . -619) 15880) ((-959 . -619) 15862) ((-719 . -496) 15812) ((-348 . -102) T) ((-254 . -1065) 15709) ((-253 . -1065) 15606) ((-400 . -102) T) ((-31 . -1109) T) ((-959 . -620) 15467) ((-719 . -619) 15402) ((-1290 . -1220) 15371) ((-487 . -619) 15353) ((-487 . -620) 15214) ((-267 . -417) 15198) ((-249 . -417) 15182) ((-254 . -111) 15072) ((-253 . -111) 14962) ((-1184 . -654) 14887) ((-1183 . -654) 14784) ((-1177 . -654) 14636) ((-1135 . -654) 14561) ((-356 . -132) T) ((-82 . -447) T) ((-82 . -401) T) ((-1012 . -25) T) ((-1012 . -21) T) ((-879 . -1109) 14512) ((-40 . -1060) 14457) ((-878 . -723) 14409) ((-40 . -646) 14354) ((-384 . -294) T) ((-171 . -1011) 14305) ((-700 . -393) T) ((-1008 . -1006) 14289) ((-707 . -1121) T) ((-700 . -167) 14271) ((-1261 . -1109) T) ((-1240 . -1109) T) ((-320 . -1212) 14250) ((-320 . -1215) 14229) ((-1174 . -102) T) ((-320 . -966) 14208) ((-135 . -1121) T) ((-117 . -1121) T) ((-608 . -1275) 14192) ((-707 . -23) T) ((-608 . -1109) 14142) ((-320 . -95) 14121) ((-91 . -520) 14054) ((-176 . -368) T) ((-254 . -622) 13784) ((-253 . -622) 13514) ((-320 . -35) 13493) ((-614 . -495) 13427) ((-135 . -23) T) ((-117 . -23) T) ((-973 . -102) T) ((-724 . -1109) T) ((-481 . -495) 13364) ((-413 . -645) 13312) ((-659 . -1047) 13208) ((-965 . -495) 13192) ((-360 . -1067) T) ((-357 . -1067) T) ((-349 . -1067) T) ((-267 . -1067) T) ((-249 . -1067) T) ((-877 . -620) NIL) ((-877 . -619) 13174) ((-1288 . -496) 13155) ((-1287 . -496) 13136) ((-1300 . -21) T) ((-1288 . -619) 13102) ((-1287 . -619) 13068) ((-577 . -1011) T) ((-737 . -732) T) ((-1300 . -25) T) ((-254 . -1058) 12998) ((-253 . -1058) 12928) ((-72 . -1227) T) ((-254 . -235) 12880) ((-253 . -235) 12832) ((-40 . -102) T) ((-917 . -1067) T) ((-1191 . -102) T) ((-129 . -495) 12814) ((-1184 . -732) T) ((-1183 . -732) T) ((-1177 . -732) T) ((-1177 . -797) NIL) ((-1177 . -800) NIL) ((-961 . -102) T) ((-928 . -102) T) ((-876 . -1060) 12801) ((-1135 . -732) T) ((-777 . -102) T) ((-678 . -102) T) ((-876 . -646) 12788) ((-552 . -619) 12770) ((-480 . -1109) T) ((-344 . -1121) T) ((-176 . -1121) T) ((-323 . -927) 12749) ((-1261 . -723) 12590) ((-878 . -174) T) ((-1240 . -723) 12404) ((-849 . -21) 12356) ((-849 . -25) 12308) ((-247 . -1158) 12292) ((-127 . -520) 12225) ((-413 . -25) T) ((-413 . -21) T) ((-344 . -23) T) ((-171 . -620) 11991) ((-171 . -619) 11973) ((-176 . -23) T) ((-650 . -292) 11950) ((-526 . -34) T) ((-905 . -619) 11932) ((-89 . -1227) T) ((-847 . -619) 11914) ((-814 . -619) 11896) ((-775 . -619) 11878) ((-683 . -619) 11860) ((-242 . -654) 11708) ((-623 . -113) T) ((-1186 . -1109) T) ((-1182 . -1065) 11531) ((-1159 . -1227) T) ((-1134 . -1065) 11374) ((-860 . -1065) 11358) ((-1244 . -624) 11342) ((-1182 . -111) 11151) ((-1134 . -111) 10980) ((-860 . -111) 10959) ((-1234 . -856) T) ((-1250 . -620) NIL) ((-1250 . -619) 10941) ((-348 . -1161) T) ((-861 . -619) 10923) ((-1085 . -290) 10902) ((-80 . -1227) T) ((-1013 . -916) NIL) ((-614 . -290) 10878) ((-1213 . -520) 10811) ((-493 . -1227) T) ((-577 . -619) 10793) ((-481 . -290) 10772) ((-1221 . -652) 10682) ((-523 . -93) T) ((-1096 . -233) 10666) ((-219 . -1227) T) ((-1013 . -654) 10616) ((-965 . -290) 10593) ((-293 . -927) T) ((-823 . -311) 10572) ((-876 . -102) T) ((-788 . -233) 10556) ((-921 . -654) 10508) ((-717 . -652) 10458) ((-700 . -730) 10425) ((-641 . -21) T) ((-641 . -25) T) ((-613 . -21) T) ((-553 . -102) T) ((-348 . -38) 10390) ((-493 . -891) 10372) ((-493 . -893) 10354) ((-480 . -723) 10195) ((-219 . -891) 10177) ((-64 . -1227) T) ((-219 . -893) 10159) ((-613 . -25) T) ((-433 . -654) 10133) ((-1182 . -622) 9902) ((-493 . -1047) 9862) ((-878 . -520) 9774) ((-1134 . -622) 9566) ((-860 . -622) 9484) ((-219 . -1047) 9444) ((-242 . -34) T) ((-1009 . -1109) 9422) ((-586 . -1060) 9409) ((-570 . -1060) 9396) ((-501 . -1060) 9361) ((-1261 . -174) 9292) ((-1240 . -174) 9223) ((-586 . -646) 9210) ((-570 . -646) 9197) ((-501 . -646) 9162) ((-718 . -146) 9141) ((-718 . -148) 9120) ((-707 . -132) T) ((-137 . -471) 9097) ((-1156 . -619) 9029) ((-664 . -662) 9013) ((-129 . -290) 8988) ((-117 . -132) T) ((-483 . -1231) T) ((-614 . -610) 8964) ((-481 . -610) 8943) ((-341 . -340) 8912) ((-603 . -1109) T) ((-591 . -1109) T) ((-542 . -1109) T) ((-483 . -562) T) ((-1182 . -1058) T) ((-1134 . -1058) T) ((-860 . -1058) T) ((-242 . -797) 8891) ((-242 . -800) 8842) ((-242 . -799) 8821) ((-1182 . -330) 8798) ((-242 . -732) 8708) ((-965 . -19) 8692) ((-493 . -382) 8674) ((-493 . -343) 8656) ((-1134 . -330) 8628) ((-359 . -1284) 8605) ((-219 . -382) 8587) ((-219 . -343) 8569) ((-965 . -610) 8546) ((-1182 . -235) T) ((-1273 . -1109) T) ((-670 . -1109) T) ((-651 . -1109) T) ((-1199 . -1109) T) ((-1096 . -256) 8483) ((-592 . -652) 8443) ((-360 . -1109) T) ((-357 . -1109) T) ((-349 . -1109) T) ((-267 . -1109) T) ((-249 . -1109) T) ((-84 . -1227) T) ((-128 . -102) 8421) ((-122 . -102) 8399) ((-1199 . -616) 8378) ((-1240 . -520) 8238) ((-1150 . -1109) T) ((-1124 . -622) 8219) ((-485 . -1109) T) ((-1089 . -927) 8170) ((-1013 . -800) T) ((-485 . -616) 8149) ((-254 . -801) 8100) ((-254 . -798) 8051) ((-253 . -801) 8002) ((-40 . -1161) NIL) ((-253 . -798) 7953) ((-1013 . -797) T) ((-129 . -19) 7935) ((-1013 . -732) T) ((-705 . -1060) 7900) ((-980 . -800) T) ((-921 . -732) T) ((-917 . -1109) T) ((-129 . -610) 7875) ((-705 . -646) 7840) ((-91 . -495) 7824) ((-493 . -907) NIL) ((-899 . -619) 7806) ((-227 . -1065) 7771) ((-878 . -294) T) ((-219 . -907) NIL) ((-839 . -1121) 7750) ((-59 . -1109) 7700) ((-525 . -1109) 7678) ((-522 . -1109) 7628) ((-503 . -1109) 7606) ((-502 . -1109) 7556) ((-586 . -102) T) ((-570 . -102) T) ((-501 . -102) T) ((-480 . -174) 7487) ((-364 . -927) T) ((-358 . -927) T) ((-350 . -927) T) ((-227 . -111) 7443) ((-839 . -23) 7395) ((-433 . -732) T) ((-108 . -927) T) ((-40 . -38) 7340) ((-108 . -826) T) ((-587 . -354) T) ((-524 . -354) T) ((-842 . -290) 7319) ((-320 . -458) 7298) ((-317 . -458) T) ((-664 . -652) 7257) ((-608 . -520) 7190) ((-344 . -132) T) ((-176 . -132) T) ((-298 . -25) 7054) ((-298 . -21) 6937) ((-45 . -1203) 6916) ((-66 . -619) 6898) ((-55 . -102) T) ((-341 . -652) 6880) ((-1278 . -102) T) ((-45 . -107) 6830) ((-825 . -622) 6814) ((-1277 . -102) 6764) ((-1269 . -654) 6689) ((-1262 . -654) 6586) ((-1241 . -654) 6438) ((-1241 . -916) NIL) ((-1111 . -431) 6422) ((-1111 . -373) 6401) ((-392 . -622) 6385) ((-328 . -622) 6369) ((-1208 . -619) 6351) ((-1200 . -102) T) ((-1072 . -1227) T) ((-1096 . -652) 6261) ((-1071 . -1065) 6248) ((-1071 . -111) 6233) ((-959 . -1065) 6076) ((-959 . -111) 5905) ((-788 . -652) 5815) ((-786 . -652) 5725) ((-629 . -1060) 5712) ((-670 . -723) 5696) ((-629 . -646) 5683) ((-487 . -1065) 5526) ((-483 . -368) T) ((-467 . -652) 5482) ((-460 . -652) 5392) ((-227 . -622) 5342) ((-360 . -723) 5294) ((-357 . -723) 5246) ((-118 . -1060) 5191) ((-349 . -723) 5143) ((-267 . -723) 4992) ((-249 . -723) 4841) ((-1105 . -93) T) ((-1099 . -93) T) ((-118 . -646) 4786) ((-1082 . -93) T) ((-950 . -657) 4770) ((-1075 . -93) T) ((-487 . -111) 4599) ((-1066 . -1109) 4577) ((-1045 . -93) T) ((-950 . -378) 4561) ((-250 . -102) T) ((-1028 . -93) T) ((-74 . -619) 4543) ((-970 . -47) 4522) ((-716 . -102) T) ((-705 . -102) T) ((-1 . -1109) T) ((-627 . -1121) T) ((-1097 . -619) 4504) ((-632 . -93) T) ((-1085 . -619) 4486) ((-917 . -723) 4451) ((-127 . -495) 4435) ((-489 . -93) T) ((-627 . -23) T) ((-396 . -23) T) ((-87 . -1227) T) ((-220 . -93) T) ((-614 . -619) 4417) ((-614 . -620) NIL) ((-481 . -620) NIL) ((-481 . -619) 4399) ((-356 . -25) T) ((-356 . -21) T) ((-50 . -652) 4358) ((-517 . -1109) T) ((-513 . -1109) T) ((-128 . -313) 4296) ((-122 . -313) 4234) ((-602 . -654) 4208) ((-601 . -654) 4133) ((-587 . -652) 4083) ((-227 . -1058) T) ((-524 . -652) 4013) ((-384 . -1011) T) ((-227 . -245) T) ((-227 . -235) T) ((-1071 . -622) 3985) ((-1071 . -624) 3966) ((-965 . -620) 3927) ((-965 . -619) 3839) ((-959 . -622) 3628) ((-876 . -38) 3615) ((-719 . -622) 3565) ((-1261 . -294) 3516) ((-1240 . -294) 3467) ((-487 . -622) 3252) ((-1129 . -458) T) ((-508 . -856) T) ((-320 . -1148) 3231) ((-1008 . -148) 3210) ((-1008 . -146) 3189) ((-501 . -313) 3176) ((-299 . -1203) 3155) ((-1194 . -619) 3137) ((-1193 . -619) 3119) ((-1192 . -619) 3101) ((-877 . -1065) 3046) ((-483 . -1121) T) ((-140 . -841) 3028) ((-115 . -841) 3009) ((-629 . -102) T) ((-1213 . -495) 2993) ((-254 . -373) 2972) ((-253 . -373) 2951) ((-1071 . -1058) T) ((-299 . -107) 2901) ((-131 . -619) 2883) ((-129 . -620) NIL) ((-129 . -619) 2827) ((-118 . -102) T) ((-959 . -1058) T) ((-877 . -111) 2756) ((-483 . -23) T) ((-487 . -1058) T) ((-1071 . -235) T) ((-959 . -330) 2725) ((-487 . -330) 2682) ((-360 . -174) T) ((-357 . -174) T) ((-349 . -174) T) ((-267 . -174) 2593) ((-249 . -174) 2504) ((-970 . -1047) 2400) ((-523 . -496) 2381) ((-741 . -1047) 2352) ((-523 . -619) 2318) ((-1114 . -102) T) ((-1101 . -619) 2277) ((-1043 . -619) 2259) ((-700 . -1060) 2209) ((-1290 . -152) 2193) ((-1288 . -622) 2174) ((-1287 . -622) 2155) ((-1282 . -619) 2137) ((-1269 . -732) T) ((-700 . -646) 2087) ((-1262 . -732) T) ((-1241 . -797) NIL) ((-1241 . -800) NIL) ((-171 . -1065) 1997) ((-917 . -174) T) ((-877 . -622) 1927) ((-1241 . -732) T) ((-1012 . -347) 1901) ((-225 . -652) 1853) ((-1009 . -520) 1786) ((-849 . -856) 1765) ((-570 . -1161) T) ((-480 . -294) 1716) ((-602 . -732) T) ((-366 . -619) 1698) ((-326 . -619) 1680) ((-424 . -1047) 1576) ((-601 . -732) T) ((-413 . -856) 1527) ((-171 . -111) 1423) ((-839 . -132) 1375) ((-743 . -152) 1359) ((-1277 . -313) 1297) ((-493 . -311) T) ((-384 . -619) 1264) ((-526 . -1019) 1248) ((-384 . -620) 1162) ((-219 . -311) T) ((-142 . -152) 1144) ((-720 . -290) 1123) ((-493 . -1031) T) ((-586 . -38) 1110) ((-570 . -38) 1097) ((-501 . -38) 1062) ((-219 . -1031) T) ((-877 . -1058) T) ((-842 . -619) 1044) ((-833 . -619) 1026) ((-831 . -619) 1008) ((-822 . -916) 987) ((-1301 . -1121) T) ((-1250 . -1065) 810) ((-861 . -1065) 794) ((-877 . -245) T) ((-877 . -235) NIL) ((-695 . -1227) T) ((-1301 . -23) T) ((-822 . -654) 719) ((-556 . -1227) T) ((-424 . -343) 703) ((-577 . -1065) 690) ((-1250 . -111) 499) ((-707 . -645) 481) ((-861 . -111) 460) ((-386 . -23) T) ((-171 . -622) 238) ((-1199 . -520) 30) ((-882 . -1109) T) ((-687 . -1109) T) ((-682 . -1109) T) ((-668 . -1109) T)) \ No newline at end of file
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index f1408d2a..7bf8a3b8 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3480528372)
-(4451 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3480551175)
+(4452 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -438,19 +438,19 @@
|SymmetricPolynomial| |TheSymbolTable| |SymbolTable| |Syntax|
|SystemInteger| |SystemNonNegativeInteger| |SystemPointer|
|SystemSolvePackage| |System| |TableauxBumpers| |Tableau| |Table|
- |TangentExpansions| |TableAggregate&| |TableAggregate|
- |TabulatedComputationPackage| |TemplateUtilities| |TexFormat1|
- |TexFormat| |TextFile| |ToolsForSign| |TopLevelThreeSpace|
- |TranscendentalFunctionCategory&| |TranscendentalFunctionCategory|
- |Tree| |TrigonometricFunctionCategory&|
- |TrigonometricFunctionCategory| |TrigonometricManipulations|
- |TriangularMatrixOperations| |TranscendentalManipulations|
- |TriangularSetCategory&| |TriangularSetCategory| |TaylorSeries|
- |TubePlot| |TubePlotTools| |Tuple| |TwoFactorize| |TypeAst| |Type|
- |UserDefinedPartialOrdering| |UserDefinedVariableOrdering|
- |UniqueFactorizationDomain&| |UniqueFactorizationDomain| |UInt16|
- |UInt32| |UInt64| |UInt8| |UnivariateLaurentSeriesFunctions2|
- |UnivariateLaurentSeriesCategory|
+ |TermAlgebraOperator| |TangentExpansions| |TableAggregate&|
+ |TableAggregate| |TabulatedComputationPackage| |TemplateUtilities|
+ |TexFormat1| |TexFormat| |TextFile| |ToolsForSign|
+ |TopLevelThreeSpace| |TranscendentalFunctionCategory&|
+ |TranscendentalFunctionCategory| |Tree|
+ |TrigonometricFunctionCategory&| |TrigonometricFunctionCategory|
+ |TrigonometricManipulations| |TriangularMatrixOperations|
+ |TranscendentalManipulations| |TriangularSetCategory&|
+ |TriangularSetCategory| |TaylorSeries| |TubePlot| |TubePlotTools|
+ |Tuple| |TwoFactorize| |TypeAst| |Type| |UserDefinedPartialOrdering|
+ |UserDefinedVariableOrdering| |UniqueFactorizationDomain&|
+ |UniqueFactorizationDomain| |UInt16| |UInt32| |UInt64| |UInt8|
+ |UnivariateLaurentSeriesFunctions2| |UnivariateLaurentSeriesCategory|
|UnivariateLaurentSeriesConstructorCategory&|
|UnivariateLaurentSeriesConstructorCategory|
|UnivariateLaurentSeriesConstructor| |UnivariateLaurentSeries|
@@ -484,660 +484,663 @@
|XPolynomial| |XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |f04qaf| |d01anf| |f02ajf| |spherical| |subNode?|
- |pi| |listConjugateBases| |logGamma| |upperBound| |doublyTransitive?|
- |viewZoomDefault| |OMsetEncoding| |hconcat| |even?| |quasiRegular|
- |infinity| |pseudoQuotient| |complementaryBasis| |f01qdf| |innerint|
- |initiallyReduced?| |iicot| |variationOfParameters| |collect|
- |trailingCoefficient| |pointData| |cond| |interReduce| |squareMatrix|
- RF2UTS |getMultiplicationMatrix| |indicialEquations| |ratPoly|
- |moduloP| |cAsec| |sechIfCan| |splitSquarefree| |generate| |log10|
- |computeInt| |cTanh| |partialFraction| |map| |limitedint| |infinite?|
- |index?| |numerators| |rightMult| |prinpolINFO| |d02gbf| |bitand|
- |kernel| |previous| |just| |makeEq| |incrementKthElement| |linears|
- |generalInfiniteProduct| |irForm| |isQuotient| |integralCoordinates|
- |d01ajf| |incrementBy| |isOpen?| |rdregime| |outerProduct| |bitior|
- |draw| |exprToGenUPS| |iicoth| |setvalue!| |elseBranch| |mapExpon|
- |rightZero| |ode| |permanent| |typeList| |decompose| |expand|
- |selectOptimizationRoutines| |graeffe| |retractable?| |qPot|
- |ratDsolve| |basisOfCenter| |currentEnv| |leftMinimalPolynomial|
- |leftUnits| |binomial| |repSq| |filterWhile| |ratpart|
- |leftTraceMatrix| |internalIntegrate0| |minimumExponent| |listLoops|
- |oneDimensionalArray| |clip| |front| |lazyPseudoRemainder| |tanhIfCan|
- |filterUntil| |symbol| |parseString| |cExp| |trim| |OMgetEndError|
- |convert| |rCoord| |denominator| |polynomialZeros| |pascalTriangle|
- |f07adf| |leftLcm| |abs| |select| |expression| |makeObject| |morphism|
- |rowEchLocal| |e02aef| |simpsono| |iCompose|
- |constantCoefficientRicDE| |leftRemainder| |height| |monomials|
- |tanIfCan| |conjug| |internalSubQuasiComponent?| |setOrder| |integer|
- |coef| |topFortranOutputStack| |clearDenominator| |generalPosition|
- |choosemon| |pop!| |OMsupportsCD?| |LagrangeInterpolation|
- |eyeDistance| |countRealRootsMultiple| |sincos| |reify| |lazy?|
- |reducedForm| |f2st| |zeroMatrix| |node?|
- |rightCharacteristicPolynomial| |conjunction| |powerAssociative?|
- |module| |isOp| |complexEigenvalues| |boundOfCauchy| |e02akf|
- |stosePrepareSubResAlgo| |subscript| ** |bounds| |permutations|
- |e02bdf| |realEigenvalues| |messagePrint| |normalizedAssociate|
- |findCycle| |endSubProgram| |OMReadError?| |adjoint|
- |inputOutputBinaryFile| |numberOfFractionalTerms| |stoseInvertible?|
- |jordanAdmissible?| |nextColeman| |normalElement| |lflimitedint|
- |e02ddf| |Is| |phiCoord| |external?| |monicModulo| |realElementary|
- |separateFactors| |makeRecord| |nthFractionalTerm| |factorPolynomial|
- |lo| |noKaratsuba| |fortranLiteralLine| |tanintegrate| |makeUnit|
- |genericRightMinimalPolynomial| |An| |numberOfIrreduciblePoly|
- |s21bdf| |dmpToHdmp| |xCoord| |ricDsolve| |incr| |acsch| |credPol|
- |label| |prime| |pdct| |gethi| |palgint| |initial| |UP2ifCan|
- |recolor| |nthExpon| |d01akf| |algebraicVariables| |positive?|
- |zeroDimPrimary?| |Lazard| |uncouplingMatrices| |plus!| |readByte!|
- |yellow| |tubePlot| |laplacian| |mathieu22| |lfinfieldint|
- |positiveRemainder| |stoseInvertibleSetreg| |rightRecip| |triangular?|
- |unary?| |harmonic| |sequences| |OMputAtp| |writeLine!| |cartesian|
- |c06ekf| |outputGeneral| |crest| |screenResolution3D| Y |cyclicCopy|
- |mergeFactors| |monomial?| |genericLeftNorm| |prime?| |failed?|
- |printCode| |maxColIndex| |unitsColorDefault| |aromberg| |extend|
- |outputForm| |bumprow| |goodPoint| |compBound| |chvar|
- |OMencodingSGML| |nodeOf?| |is?| |unrankImproperPartitions0| |df2mf|
- |basisOfMiddleNucleus| |contains?| |e04dgf| |numFunEvals| |tail|
- |regime| |upperCase| |removeZeroes| |RemainderList| |inconsistent?|
- |constructor| |s17acf| |rules| |ffactor| |pmintegrate| |bothWays|
- |completeSmith| |c05adf| |capacity| |getZechTable| |idealiserMatrix|
- |expPot| |select!| |sncndn| |complement| |nothing| |meshPar1Var|
- |isTimes| |list?| |option| |imagk| |removeRedundantFactorsInPols|
- |degree| |s13aaf| |pointSizeDefault| |showSummary|
- |numberOfOperations| |normalizeAtInfinity| |minColIndex|
- |LyndonWordsList| |writeBytes!| |basisOfLeftNucloid| |c06gbf|
- |brillhartTrials| |medialSet| FG2F |forLoop| |oblateSpheroidal|
- |iiacsch| |sortConstraints| |normalizeIfCan| |constantToUnaryFunction|
- |toseLastSubResultant| |factorGroebnerBasis| |perfectNthRoot|
- |restorePrecision| |showAttributes| |LowTriBddDenomInv|
- |constantOperator| |setProperties| |d02bhf| |imagI| |sdf2lst|
- |unknown| |coHeight| |getRef| |semiResultantReduitEuclidean|
- |taylorRep| |macroExpand| |minimalPolynomial| |showIntensityFunctions|
- |rightScalarTimes!| |cycles| |updateStatus!| |rightTrim| |mapCoef|
- |nullity| |minPoly| |ran| |pointPlot| |schwerpunkt| |iiasech|
- |chiSquare| |cotIfCan| |leftTrim| |solve| |setStatus!| |digit|
- |exponents| |completeEchelonBasis| |solveLinearPolynomialEquation|
- |genericRightNorm| |zeroDimPrime?| |addmod| |cAcoth| |normalForm|
- |PollardSmallFactor| |possiblyNewVariety?| |gradient| |omError|
- |rotatex| |say| |every?| |characteristicSerie| |f01rcf| F |Aleph|
- |rightFactorIfCan| |makeFloatFunction| |distance| |factors|
- |OMmakeConn| |associates?| |setMinPoints| |dflist| |rarrow| |dark|
- |SturmHabicht| |flexible?| |curry| |eof?| |acotIfCan| |cAcsc|
- |semiDegreeSubResultantEuclidean| |screenResolution| |removeCosSq|
- |initiallyReduce| |multisect| |bottom!| |in?| |nonLinearPart|
- |eigenvector| |startTable!| |remove| |function| |multivariate|
- |edf2efi| |gcdcofactprim| |thetaCoord| |adaptive| |viewDefaults|
- |fortranCarriageReturn| |fortran| |unravel| |f02bbf|
- |genericLeftTraceForm| |coefficient| |variables| |result| |inf|
- |iiacsc| |fixPredicate| |functorData| |mainCoefficients| |zeroOf|
- |stoseIntegralLastSubResultant| |nary?| |linearAssociatedLog| |open|
- |last| |e04ycf| |eval| |reset| |unitNormalize| |unit|
- |internalZeroSetSplit| |generalizedInverse| |constantRight| |assoc|
- |principal?| |null| |mapmult| |compose| |extractIndex| |enumerate|
- |OMputEndAttr| |comparison| |strongGenerators| |OMputInteger|
- |removeSuperfluousCases| |iicosh| |setFieldInfo| |rightDivide|
- |pattern| |limitedIntegrate| |not| |leftExtendedGcd| |write|
- |superscript| |lazyPrem| |structuralConstants| |OMUnknownSymbol?|
- |quatern| |chebyshevU| |bandedHessian| |hostByteOrder| |and| |replace|
- |calcRanges| |save| |palglimint0| |eigenvalues| |hasTopPredicate?|
- |rightFactorCandidate| |modifyPointData| |operations| |leftMult|
- |pointColor| |cPower| |or| |deepestInitial| |finiteBound| |taylor|
- |radicalOfLeftTraceForm| |subset?| |writeByte!| |bat1| |aQuartic|
- |d01bbf| |measure| |xor| |squareFree| |laurent| |intensity|
- |fixedDivisor| |polygamma| |isobaric?| |lastSubResultantElseSplit|
- |mergeDifference| |f01mcf| |message| |rectangularMatrix| |besselY|
- |case| |insertBottom!| |puiseux| |setErrorBound| |copyInto!|
- |coordinates| |reduceByQuasiMonic| |d02bbf| |sub| |OMencodingXML|
- |Zero| |symmetric?| |power!| |iicsch| |evaluate| |cyclicSubmodule|
- |hi| |positiveSolve| |minPoints3D| |unknownEndian| |rightUnit| |One|
- |outputArgs| |inv| |partialDenominators| |optional?| |integral?|
- |clearTheFTable| |critB| |torsion?| |solveid| |viewpoint| |ground?|
- |lazyResidueClass| |bitTruth| |square?| |att2Result| |secIfCan|
- |randnum| |newTypeLists| |ground| |unparse| |mainVariable?| |lcm|
- |s20acf| |knownInfBasis| |internal?| |clipBoolean|
- |genericRightDiscriminant| |extension| |makeSin| |plotPolar|
- |simplifyExp| |leadingMonomial| |selectsecond| |critpOrder|
- |primextendedint| |before?| |stoseSquareFreePart| |rationalPoint?|
- |append| |moreAlgebraic?| |leadingCoefficient| |hue| |close!| |gderiv|
- |npcoef| |nonQsign| |sizePascalTriangle| |showTheFTable| |ptFunc|
- |primitiveMonomials| |gcd| |subNodeOf?| |elt| |output|
- |symmetricTensors| |pastel| |mathieu11| |simpleBounds?| |delete!|
- |swapColumns!| |LazardQuotient| |factorSquareFreePolynomial| |hcrf|
- |quadraticNorm| |halfExtendedSubResultantGcd2| |false| |reductum|
- |supRittWu?| |collectQuasiMonic| |arity| |middle| |presub| |bat|
- |deleteProperty!| |bfKeys| |extract!| |curveColor| |axesColorDefault|
- |decimal| |latex| |inrootof| |roughEqualIdeals?| |expressIdealMember|
- |exponent| |polyred| |OMgetSymbol| |ParCond| |irreducible?|
- |relativeApprox| |normalizedDivide| |closeComponent| |graphState|
- |sylvesterSequence| |getGraph| |charthRoot| |pushup|
- |perfectNthPower?| |modifyPoint| |functionIsFracPolynomial?|
- |createNormalPoly| |rootPower| |mapMatrixIfCan| |s13acf| |alphabetic?|
- |aLinear| |laguerreL| |prem| |firstSubsetGray| |dihedralGroup|
- |numberOfVariables| |constantKernel| |twoFactor| |linSolve|
- |fortranCompilerName| |showTheIFTable| |resultant| |goto| |categories|
- |infieldIntegrate| |dimensionOfIrreducibleRepresentation| |hexDigit?|
- |solid| |iExquo| |viewWriteAvailable| |elRow1!| |s17aff|
- |semiSubResultantGcdEuclidean1| |clipWithRanges| |fill!| |minimize|
- |resetBadValues| |generic| |typeLists| |topPredicate| |create|
- |factorials| |antiCommutator| |monomialIntegrate| |c06gsf| |tab|
- |bsolve| |fractionPart| |difference| |s17dhf| |nextPrime|
- |mightHaveRoots| |primitivePart!| |perspective| |checkRur|
- |cyclePartition| |particularSolution| |setEmpty!| |stFunc2|
- |cyclotomicDecomposition| |nextsubResultant2| |cLog| |c06fqf|
- |plusInfinity| |minset| |internalSubPolSet?| |getIdentifier|
- |algebraicCoefficients?| |irreducibleFactors| |conical| |extendedint|
- |generalizedEigenvector| |diagonalMatrix| |minusInfinity|
- |rationalApproximation| |environment| |df2st| |LazardQuotient2|
- |d02ejf| |e02zaf| |OMUnknownCD?| |usingTable?| |curryLeft| |iiacos|
- |combineFeatureCompatibility| |trapezoidal| |belong?| |dmp2rfi|
- |allRootsOf| |cyclic| |realSolve| |separant| |expextendedint|
- |lexTriangular| |univariatePolynomial| |key| |c05nbf| |divideIfCan!|
- |child?| |genericPosition| |refine| |matrixConcat3D| |delay| |mapUp!|
- |listexp| |nextSubsetGray| |mappingAst| |factorSquareFreeByRecursion|
- |brillhartIrreducible?| |gcdcofact| |viewport2D| |noLinearFactor?|
- |dominantTerm| |filename| |euler| |realEigenvectors| |accuracyIF|
- |constantLeft| |primitive?| |removeSuperfluousQuasiComponents|
- |partialNumerators| |type| |d02raf| |multiEuclidean| |quadratic|
- |minGbasis| |extendedEuclidean| |LiePolyIfCan| |palgint0| |supersub|
- |complexForm| |represents| |parse| |besselI| |cosh2sech|
- |tubePointsDefault| |leviCivitaSymbol| |companionBlocks| |cAcsch|
- |stoseLastSubResultant| |eigenMatrix| |transform|
- |extractSplittingLeaf| |qualifier| |next| |parametersOf| |divisor|
- |readIfCan!| |problemPoints| |getOrder| |lllip| |sinIfCan|
- |lfintegrate| |lowerCase!| |rewriteSetWithReduction| |graphImage|
- |f07fdf| |e04jaf| |string?| |f02awf| |e02def| |iisqrt3| |expintegrate|
- |one?| |useEisensteinCriterion| |imports| |checkPrecision| |rational?|
- |monicRightDivide| |nil?| |s21bbf| |e01sef| |voidMode| |makeMulti|
- |cothIfCan| |singularitiesOf| |algint| |OMgetEndApp| |fmecg| |e01saf|
- EQ |nativeModuleExtension| |getProperty| |saturate| |minrank|
- |resetVariableOrder| |basisOfCommutingElements| |separate| |cAtanh|
- |currentSubProgram| |sqfrFactor| |encodingDirectory| |copy!|
- |components| |lhs| |minPoints| |derivative| |hessian|
- |totalDifferential| |leastMonomial| |systemSizeIF| |sylvesterMatrix|
- |pToHdmp| |rhs| |monicRightFactorIfCan| |currentCategoryFrame|
- |primintfldpoly| |s14baf| |setAdaptive3D| |oddlambert|
- |nextPrimitivePoly| |totalLex| |simplifyPower| |polygon?|
- |cyclicParents| |lifting| |low| |f04mbf|
- |removeRoughlyRedundantFactorsInContents| |imagj| |ref|
- |lookupFunction| |contract| |partitions| |setnext!| |s17akf|
- |approximants| |cubic| |differentialVariables| |rule| |leastPower|
- |sumSquares| |stoseInvertibleSetsqfreg| |mainPrimitivePart|
- |subResultantGcdEuclidean| |polyRDE| |c06fpf| |OMputBVar| |setStatus|
- |duplicates?| |setScreenResolution| |index| |getGoodPrime|
- |kroneckerDelta| |iicsc| |createPrimitiveElement| |blue| |float?|
- |complexNormalize| |tab1| |leftRecip|
- |semiIndiceSubResultantEuclidean| |associative?| |exportedOperators|
- |coordinate| |OMgetBind| |expt| |conjugates|
- |numberOfImproperPartitions| |center| |leadingSupport| |OMgetFloat|
- |f04axf| |createMultiplicationMatrix| |fibonacci| |largest|
- |dimension| |collectUnder| |rotatey| |e04gcf| |aspFilename| |pair|
- |merge!| |leftDiscriminant| |updatD| |bernoulli|
- |eisensteinIrreducible?| |value| |localIntegralBasis| |inR?| |split|
- |outlineRender| |edf2fi| |someBasis| |fortranInteger| |powmod|
- |overbar| |real?| |componentUpperBound| |basisOfRightAnnihilator|
- |removeDuplicates!| |surface| |getCode| |Si| |monicCompleteDecompose|
- |product| |newReduc| |jacobi| |hasSolution?| |tube| |dn| |pdf2df|
- |resultantEuclidean| |high| |squareFreePart| |entry| |splitConstant|
- |argscript| |palgintegrate| |OMputEndError| |airyBi| |upperCase!|
- |terms| |addMatch| |laurentIfCan| |definingEquations| |eigenvectors|
- |leftExactQuotient| |loopPoints| |ReduceOrder| |outputSpacing|
- |userOrdered?| |youngGroup| |acothIfCan| |expenseOfEvaluationIF|
- |readUInt32!| |callForm?| |cot2tan| |taylorIfCan| |leftPower|
- |numericalIntegration| |safeFloor| |distFact| |bag| |OMgetEndBVar|
- |halfExtendedResultant2| |weierstrass| |e02bbf| |sn| |palgRDE|
- |reverse| |numberOfCycles| |firstUncouplingMatrix|
- |removeRedundantFactors| |interpolate| |pushdterm| |iisin| |minordet|
- |acosIfCan| |closed| |paren| |factor1| |outputAsTex| |dictionary|
- |euclideanSize| |changeVar| |call| |check| |monicDecomposeIfCan|
- |goodnessOfFit| |insert!| |setelt!| |coerceImages| |space| |leaves|
- |tree| |weighted| |inverseIntegralMatrixAtInfinity| |minus!| |llprop|
- |taylorQuoByVar| |inGroundField?| |returns| |writable?| |baseRDE|
- |postfix| |f04mcf| |maxPoints| |drawComplexVectorField| |inRadical?|
- |OMbindTCP| |critM| |cSec| |basisOfLeftAnnihilator| |mpsode|
- |exprHasLogarithmicWeights| |universe| |domainTemplate| |slash|
- |intersect| |lyndonIfCan| |OMputBind| |distdfact| |ldf2vmf|
- |groebnerFactorize| |OMgetEndObject| |init| |leftFactor| |cardinality|
- |ode2| |s15adf| |cross| |tableau| |meshPar2Var| |HermiteIntegrate|
- |numberOfComputedEntries| |mainForm| |tanQ| |selectfirst|
- |externalList| |finite?| |OMencodingBinary| |cosIfCan| |basis| |Ei|
- |denomRicDE| |irDef| |cTan| |multiEuclideanTree| |makeprod|
- |algintegrate| |generator| |s18dcf| |bitCoef| |setMaxPoints|
- |showAll?| |indices| |curve| |read!| |csc2sin|
- |internalLastSubResultant| |schema| |nextLatticePermutation| |has?|
- |trueEqual| |s17agf| |e04naf| |hitherPlane| |possiblyInfinite?|
- |returnTypeOf| |stFunc1| |idealiser| |extractTop!| |search|
- |univariatePolynomials| |numericIfCan| |geometric| |normInvertible?|
- |imagK| |lookup| |stack| |bezoutMatrix| |numberOfNormalPoly|
- |fixedPoint| |rem| |randomR| |roughBase?| |putProperty| |setPrologue!|
- |OMgetObject| |bringDown| |tryFunctionalDecomposition?| |pushucoef|
- |quo| |divide| |chiSquare1| |reduceLODE| |isAnd| |withPredicates|
- |condition| |increase| |functionIsContinuousAtEndPoints| |subMatrix|
- |e01bgf| |twist| |qfactor| |superHeight| |invertibleSet| |div|
- |rename!| |untab| |shrinkable| |elaborate| |elem?| |partialQuotients|
- |stiffnessAndStabilityFactor| |certainlySubVariety?| |exists?|
- |bivariatePolynomials| |exquo| |dim| |cycleLength| |invmod|
- |zeroSetSplit| |transcendenceDegree| |beauzamyBound| |changeBase|
- |tubeRadius| ~= |disjunction| |OMgetAtp| |d01gaf| |s21bcf|
- |linkToFortran| |leftDivide| |pushdown| |factorAndSplit|
- |removeIrreducibleRedundantFactors| |#| |matrix| |OMputVariable|
- |reorder| |dec| |discriminantEuclidean| |baseRDEsys| ~ |isList| |zoom|
- |jacobian| |closedCurve?| |normFactors| |concat| |measure2Result|
- |binaryTree| |legendreP| |edf2ef| |groebgen| |constDsolve|
- |hasPredicate?| |isImplies| |OMgetEndBind| |rootNormalize| |sample|
- |f01bsf| |getMeasure| |printInfo| |rightQuotient| |leftAlternative?|
- |powers| |clearCache| |redpps| |iidprod| |factorsOfCyclicGroupSize|
- |level| |leftOne| |rangeIsFinite| |trunc| |badNum|
- |identitySquareMatrix| |explimitedint| |triangulate| |roman| |imagJ|
- |iprint| |wronskianMatrix| |asechIfCan| |mkPrim| |groebner|
- |univariate?| |rquo| |substring?| |f04asf| |rootBound| |atoms| |char|
- |iFTable| |failed| |mathieu12| |composite| |nextNormalPoly| |closed?|
- |cylindrical| |genericLeftMinimalPolynomial| |sts2stst| |rootsOf|
- |primitiveElement| |stripCommentsAndBlanks| |iifact| |suffix?| |critT|
- |setLabelValue| |s17adf| |imaginary| |halfExtendedResultant1|
- |setCondition!| |constantOpIfCan| |splitDenominator|
- |inverseIntegralMatrix| |d03faf| |radicalRoots| |logical?|
- |scaleRoots| |compile| |setEpilogue!| |setrest!| |remove!| |prefix?|
- |status| |bracket| |LiePoly| |groebSolve| |mulmod|
- |rightRegularRepresentation| |e02bef| |xn| |axes| |degreePartition|
- |rdHack1| |addPoint| |prevPrime| |enqueue!| |countRealRoots|
- |nthFactor| |OMgetAttr| |c05pbf| |second| |FormatArabic| |f07aef|
- |rightExtendedGcd| |erf| |extractPoint| |float| |nthr|
- |startTableInvSet!| |s17dcf| |mirror| |doubleDisc| |third| |leftUnit|
- |back| |part?| |semiResultantEuclidean1| |po| |rootDirectory|
- |tubePoints| |mapGen| |nonSingularModel| |isAbsolutelyIrreducible?|
- |lowerPolynomial| |orbits| |f02fjf| |void| |numberOfComposites|
- |removeZero| |push!| LODO2FUN |iomode| |besselJ| |lowerBound|
- |cycleEntry| |dilog| |semicolonSeparate| |dfRange| |headAst|
- |backOldPos| |pack!| |infix?| |logpart| |basisOfNucleus|
- |intPatternMatch| |f02akf| |sin| |rightLcm| |setleaves!| |appendPoint|
- |tanNa| |mask| |algDsolve| |stFuncN| |qinterval| |hspace| |infLex?|
- |cos| |upDateBranches| |gensym| |mainValue| |bipolarCylindrical|
- |coth2tanh| |iiatanh| |c02agf| |nthRoot| |mainContent| |expr| |cCosh|
- |tan| |reopen!| |asecIfCan| |fortranDouble| |physicalLength| |OMread|
- |e02gaf| |ScanArabic| |norm| |cot| |rename| |integralMatrixAtInfinity|
- |innerSolve1| |squareFreePolynomial| |create3Space|
- |viewDeltaYDefault| |symmetricRemainder| |jokerMode| |solveInField|
- |iicos| |sec| GE |rischNormalize| |outputMeasure| |lfextendedint|
- |double| |outputAsScript| |extractClosed| |interval| |OMreadFile|
- |lazyPquo| |rur| |csc| |log| GT |linearlyDependent?| |identityMatrix|
- |cyclotomicFactorization| |diagonal| |graphs| |integral| |variable|
- |coercePreimagesImages| |magnitude| |ranges| |asin| LE |cAcosh|
- |OMputApp| |resetAttributeButtons| |f04maf| |row| |BumInSepFFE|
- |iterators| BY |romberg| |aCubic| |basicSet| |acos| LT |shiftRight|
- |algebraic?| |moduleSum| |gramschmidt| |flexibleArray|
- |OMunhandledSymbol| |associatedEquations| |triangularSystems|
- |finiteBasis| |atan| |e01bff| |s19abf| |iroot| |ef2edf| |e01sff|
- |setTex!| |flagFactor| |c06frf| |lazyPseudoDivide| |acot|
- |OMputEndBind| |stoseInvertible?sqfreg| |localUnquote| |printHeader|
- |s14aaf| |clipParametric| |cSinh| |OMgetBVar| |cCsc| |asec| |s18aef|
- |showScalarValues| |exp1| |nullary| |key?| |reverse!| |setchildren!|
- |iteratedInitials| |cycle| |acsc| |curveColorPalette|
- |useSingleFactorBound| |symmetricDifference| |nthRootIfCan| |declare!|
- |genericLeftDiscriminant| |lastSubResultantEuclidean| |byteBuffer|
- |regularRepresentation| |mvar| |sinh| |chebyshevT| |debug3D|
- |permutationRepresentation| |quotedOperators| |tan2trig| |decrease|
- |mainSquareFreePart| |unit?| |deref| |elliptic?| |cosh|
- |fortranCharacter| |cSin| |cCot| |psolve| |corrPoly| NOT
- |roughSubIdeal?| |internalAugment| |separateDegrees| |lazyVariations|
- |hasHi| |tanh| |trace2PowMod| |diff| |maxrow| |OMgetApp| OR
- |setProperty| |more?| |dioSolve| |characteristic| |fixedPointExquo|
- |coth| |reducedContinuedFraction| |clearTheIFTable| |removeSinhSq|
- |s20adf| AND |f02abf| |selectFiniteRoutines| |df2fi| |localAbs|
- |reciprocalPolynomial| |prinshINFO| |primintegrate| |d01aqf| |keys|
- |negative?| |d02gaf| |pointLists| |OMputFloat| |depth| |monicDivide|
- |extendedIntegrate| |inverseLaplace| |inverseColeman| |variable?|
- |LyndonWordsList1| |rationalPoints| |push| |primeFrobenius|
- |ParCondList| |swap| |symbolIfCan| |SturmHabichtSequence| |subspace|
- |debug| |mapSolve| |segment| |parents| |digits| |remainder|
- |interactiveEnv| |expandPower| |elements| |optAttributes| |minIndex| D
- |double?| |intChoose| |aQuadratic| |readUInt8!| |singularAtInfinity?|
- |exQuo| |janko2| |ideal| |showTheSymbolTable| |denominators| |gbasis|
- |dimensions| |simplifyLog| |summation| |lSpaceBasis| |limitPlus|
- |f01qef| |dot| |edf2df| |cAsech| |sparsityIF| |ODESolve|
- |useNagFunctions| |shuffle| |ldf2lst| |polarCoordinates| |iisec|
- |cycleElt| |padicFraction| |selectNonFiniteRoutines| |patternMatch|
- |f02axf| |ListOfTerms| |putProperties| |linearMatrix| |setAdaptive|
- |isMult| |adaptive?| |sh| |localReal?| |modularFactor|
- |rewriteSetByReducingWithParticularGenerators| |hasoln|
- |singleFactorBound| |parts| |limit| |extendedSubResultantGcd|
- |cycleSplit!| * |transpose| |noValueMode| |mkIntegral| |autoReduced?|
- |discreteLog| |computeCycleEntry| |option?| |fTable| |members|
- |concat!| |readUInt16!| |isConnected?| |decomposeFunc| |setfirst!|
- |properties| |c06fuf| |optimize| |infix| |commutativeEquality|
- |stoseInternalLastSubResultant| |enterInCache| |probablyZeroDim?|
- |computePowers| |seed| |cos2sec| |translate| |bivariateSLPEBR|
- |cyclicGroup| |stirling1| |figureUnits|
- |createLowComplexityNormalBasis| = |doubleComplex?| |primeFactor|
- |groebner?| |principalAncestors| |perfectSqrt| |printInfo!| |print|
- |bindings| |getVariableOrder| |cAtan| |c02aff| |supDimElseRittWu?|
- |nextItem| |definingPolynomial| |operation| |resolve| |f02aff|
- |invertible?| |genericRightTrace| |OMwrite| |rightTraceMatrix| <
- |rotate!| |nthCoef| |rk4| |setColumn!| |OMgetVariable| |laguerre|
- |readable?| |sinhcosh| |f04faf| > |packageCall|
- |reduceBasisAtInfinity| |midpoints| |internalDecompose|
- |nextIrreduciblePoly| |fracPart| |ipow| |getConstant| <= |reduced?|
- |balancedBinaryTree| |standardBasisOfCyclicSubmodule| |htrigs|
- |fglmIfCan| |fullDisplay| |stronglyReduced?| |rootKerSimp|
- |signAround| |countable?| >= |composites| |OMencodingUnknown|
- |var1Steps| |stopMusserTrials| |numericalOptimization|
- |mapUnivariateIfCan| |e02dcf| |primaryDecomp| |laurentRep|
- |algebraicSort| |hex| |dequeue!| |ode1| |rootRadius| |createZechTable|
- |e01sbf| |findConstructor| |viewPosDefault| |clearTheSymbolTable|
- |clipSurface| |traceMatrix| |generalSqFr| |expandLog| |interpret|
- |redPo| |clipPointsDefault| |rationalIfCan| |pair?| |cCoth| +
- |OMcloseConn| |setButtonValue| |nand| |multMonom| |true|
- |mainCharacterization| |rotate| |outputFloating| |exponential1|
- |integer?| - |cn| |coerceListOfPairs| |drawComplex|
- |SturmHabichtMultiple| |splitNodeOf!| |ellipticCylindrical| |mantissa|
- |cosSinInfo| |purelyTranscendental?| / |newSubProgram| |quadratic?|
- |integralLastSubResultant| |intcompBasis| |transcendent?| |quickSort|
- |listRepresentation| |log2| |radicalSimplify| |extractIfCan|
- |identification| |lyndon| |OMlistSymbols| |makingStats?|
- |numberOfHues| |category| |neglist| |rubiksGroup| |inHallBasis?| |nil|
- |connectTo| |drawCurves| |discriminant| |lazyPseudoQuotient|
- |atanhIfCan| |d03edf| |domain| |genericLeftTrace| |getExplanations|
- |binary| |multiple?| |pomopo!| |shiftLeft| |coefficients| |package|
- |normalDenom| |uniform01| |makeSketch| |prinb| |doubleFloatFormat|
- |readInt16!| |queue| |sinh2csch| |karatsubaOnce| |shift|
- |semiResultantEuclideannaif| |airyAi| |henselFact| |singular?|
- |f02agf| |approximate| |testModulus| |zerosOf| |quasiMonicPolynomials|
- |content| |tan2cot| |point?| |newLine| |fintegrate| |complex|
- |acschIfCan| |getOperator| |diophantineSystem| |varList| |realRoots|
- |zeroSquareMatrix| |matrixDimensions| |linearPart| |imagi| |tanSum|
- |createNormalElement| |bit?| |delta| |complete| |OMconnectTCP| |show|
- |purelyAlgebraic?| |gcdprim| |OMputEndApp| |diagonal?| |RittWuCompare|
- |property| |consnewpol| |pdf2ef| |noncommutativeJordanAlgebra?|
- |solveLinearPolynomialEquationByRecursion|
- |removeRedundantFactorsInContents| |totolex| |quartic|
- |rightRankPolynomial| |numberOfChildren| |leftFactorIfCan| |merge|
- |trapezoidalo| |listYoungTableaus| |trace| |evenlambert| |fortranReal|
- |lex| |integralAtInfinity?| |cSech| |complexLimit| |GospersMethod|
- |quote| |retract| |setValue!| |leader| |thenBranch| |vconcat|
- |setMaxPoints3D| |e01bef| |units| |normal?| |typeForm| |ramified?|
- |argument| |minPol| |completeHensel| |radicalSolve|
- |intermediateResultsIF| |triangSolve| |resultantReduit| |compound?|
- |times!| |reducedQPowers| |unaryFunction| |d01alf| |fractRagits|
- |graphCurves| |exprHasAlgebraicWeight| |OMconnOutDevice| |palgRDE0|
- |lagrange| |build| |formula| |fillPascalTriangle| |nextsousResultant2|
- |bivariate?| |absolutelyIrreducible?| |invertIfCan|
- |innerEigenvectors| |symmetricGroup| |minRowIndex| |shallowCopy|
- |lambda| |fractionFreeGauss!| |quasiAlgebraicSet| |cyclicEntries|
- |pmComplexintegrate| |hdmpToDmp| |fortranComplex| |ddFact| |badValues|
- |children| |complexRoots| |representationType| |complexExpand| |rk4qc|
- |selectPolynomials| |whitePoint| |code| |rational| |setlast!|
- |prefixRagits| |sign| |palginfieldint| |makeResult| |central?|
- |showAllElements| |lazyEvaluate| |cycleTail| |primlimintfrac| |nlde|
- |lieAdmissible?| |cyclic?| |rootOfIrreduciblePoly| |zCoord| |nrows|
- |determinant| |lprop| |univariatePolynomialsGcds| |order| |datalist|
- |mathieu23| |exactQuotient| |rightAlternative?| |s18adf|
- |selectSumOfSquaresRoutines| |cRationalPower| |rspace| |coshIfCan|
- |ncols| |orthonormalBasis| |quasiComponent| |convergents|
- |unitCanonical| |stirling2| |iisqrt2| |solveRetract| |plus| |root?|
- |multinomial| |points| |OMclose| |numFunEvals3D| |rightExactQuotient|
- |slex| |associator| |power| |initials| |nilFactor| |splitLinear| |qqq|
- |makeSUP| |move| |dom| |df2ef| |euclideanNormalForm| |roughBasicSet|
- |numerator| |insertionSort!| |lepol| |compactFraction| |legendre|
- |quoted?| |unrankImproperPartitions1| |sum| |integralDerivationMatrix|
- |jacobiIdentity?| |primlimitedint| |d01amf| |lieAlgebra?| |polynomial|
- |fullPartialFraction| |rst| |deepestTail| |cycleRagits| |preprocess|
- |point| |leftRegularRepresentation| |shade| |copies| |rightRemainder|
- |mapUnivariate| |times| |element?| |branchPointAtInfinity?|
- |integralBasis| |reflect| |swap!| |skewSFunction| |LyndonCoordinates|
- |curryRight| |OMgetType| |symbolTable| |f02wef| |pleskenSplit|
- |numberOfDivisors| |s18def| |invertibleElseSplit?| |headReduced?|
- |viewport3D| |paraboloidal| |sort!| |top| |octon| |patternMatchTimes|
- |integerIfCan| |linear?| |cAsinh| |lp| |freeOf?| |systemCommand|
- |fortranLogical| |makeViewport2D| |factorOfDegree| |pseudoRemainder|
- |c06ebf| |series| |binaryTournament| |alternating|
- |pushFortranOutputStack| |categoryMode| |curve?|
- |multiplyCoefficients| |title| |entry?| |comp| |zeroDimensional?|
- |indicialEquation| |contractSolve| |constant?| |linGenPos|
- |algebraicOf| |reindex| |subresultantSequence| |changeName|
- |infinityNorm| |popFortranOutputStack| |scanOneDimSubspaces|
- |sumOfDivisors| |node| |monom| |explicitlyEmpty?| |options|
- |repeatUntilLoop| |pol| |matrixGcd| |split!| |continue| |shellSort|
- |sqfree| |sort| |moebiusMu| |ridHack1| |red| |outputAsFortran|
- |varselect| |normal| |deepCopy| |highCommonTerms| UP2UTS
- |exactQuotient!| |toseSquareFreePart| |e| |dAndcExp|
- |subResultantChain| |wholePart| |tanh2trigh| |rootProduct| |prindINFO|
- |leadingIndex| |swapRows!| |commaSeparate| |min| |returnType!| |list|
- |quadraticForm| |extractProperty| |d01fcf| |truncate| |antisymmetric?|
- |common| |s17dgf| |string| |find| |subCase?| |nextPrimitiveNormalPoly|
- |wordInStrongGenerators| |car| |primes| |crushedSet| |pade| |empty?|
- |modTree| |quotient| |binarySearchTree|
- |purelyAlgebraicLeadingMonomial?| |computeCycleLength| |invmultisect|
- |random| |cdr| |stopTableGcd!| |headReduce| |iiacot| |showClipRegion|
- |sequence| |writeUInt8!| |LyndonBasis| |toseInvertibleSet| |OMreadStr|
- |indiceSubResultant| |setDifference| |s15aef| |viewDeltaXDefault|
- |makeFR| |lexico| |addPointLast| |cup| |sumOfSquares| |univcase|
- |squareTop| |sech2cosh| |setIntersection| |OMsend| |presuper|
- |OMputString| |revert| |divisorCascade| |plot| |isPower| UTS2UP
- |resetNew| |pseudoDivide| |setUnion| |moebius| |showTheRoutinesTable|
- |ip4Address| |errorKind| |mapdiv| |changeNameToObjf| |categoryFrame|
- |mainDefiningPolynomial| |innerSolve| |coerceS| |apply| |mainVariable|
- |zeroSetSplitIntoTriangularSystems| |showFortranOutputStack| |const|
- |leftNorm| |vspace| |plenaryPower| |branchIfCan| |symmetricSquare|
- |f01maf| |maxRowIndex| |head| |tracePowMod| |divideIfCan|
- |startTableGcd!| |zero| |complexZeros| |mainKernel|
- |lazyIrreducibleFactors| |insertRoot!| |OMopenString| |size|
- |prolateSpheroidal| |pr2dmp| |setImagSteps| |getStream| |getMatch|
- |numeric| |normalDeriv| |monic?| |explicitlyFinite?| |recip| |width|
- |atom?| |elaboration| |UnVectorise| |trivialIdeal?|
- |radicalEigenvalues| |transcendentalDecompose| |radical| |And|
- |mappingMode| |f01qcf| |s19aaf| |hostPlatform|
- |semiResultantEuclidean2| |equation| |applyRules| |precision| |odd?|
- |open?| |balancedFactorisation| |vector| |meshFun2Var| |Or|
- |OMconnInDevice| |exponential| |drawStyle| |diagonalProduct|
- |printStats!| |mat| |first| |genericRightTraceForm| |unexpand|
- |Vectorise| |differentiate| |myDegree| |Not| |gcdPolynomial|
- |palgLODE| |less?| |rootSplit| |weight| |rest| |Ci| |nodes|
- |setPosition| |nextNormalPrimitivePoly| |biRank| |putColorInfo|
- |totalDegree| |alternative?| |member?| |pow| |polyRicDE| |substitute|
- |currentScope| |viewWriteDefault| |binding| |satisfy?| |heapSort|
- |readLineIfCan!| |getButtonValue| |algSplitSimple|
- |removeConstantTerm| |setScreenResolution3D| |laplace| |hash|
- |removeDuplicates| |bfEntry| |monicLeftDivide| |exprex|
- |continuedFraction| |startStats!| |count| |OMsupportsSymbol?|
- |sturmSequence| |quasiRegular?| |frst| |rischDEsys| |nor| |shufflein|
- |cschIfCan| |mr| |isExpt| |setPoly| |arbitrary| |e02agf| |super|
- |setMinPoints3D| |selectIntegrationRoutines| |name| |optional|
- |buildSyntax| |OMgetInteger| |stoseInvertible?reg| |f04arf|
- |evaluateInverse| |writeInt8!| |setleft!| |fortranDoubleComplex|
- |irVar| |elColumn2!| |clikeUniv| |lift| |body| |complexNumericIfCan|
- |prologue| |PDESolve| |acscIfCan| |inc| |prepareDecompose|
- |integralBasisAtInfinity| |nthFlag| |elRow2!| |squareFreePrim|
- |iterationVar| |reduce| |bumptab| |doubleResultant| |atrapezoidal|
- |escape| |mapBivariate| |constantIfCan| |rombergo| |gcdPrimitive|
- |insertMatch| |wordInGenerators| |generators| |column|
- |factorSFBRlcUnit| |primitivePart| |setPredicates|
- |expandTrigProducts| |e02daf| |degreeSubResultant|
- |setAttributeButtonStep| |trigs2explogs| |rroot| |var1StepsDefault|
- |selectPDERoutines| |multiplyExponents| |contours| |integrate|
- |factorList| |quasiMonic?| |anticoord| |poisson| |write!| |unitVector|
- |makeGraphImage| |viewPhiDefault| |palgextint| |compdegd| |vark|
- |tubeRadiusDefault| |weakBiRank| |sayLength| |abelianGroup| |digamma|
- |primextintfrac| |isOr| |primPartElseUnitCanonical!| |tanAn| SEGMENT
- |stiffnessAndStabilityOfODEIF| |error| |top!| |cscIfCan|
- |makeVariable| |leftGcd| |port| |chainSubResultants| |relationsIdeal|
- |any| |linearAssociatedOrder| |expIfCan| |f01ref| |rk4a| |scopes|
- |assert| |tower| |size?| |shanksDiscLogAlgorithm| |subtractIfCan|
- |leadingCoefficientRicDE| |rootPoly| |diagonals| |subHeight|
- |karatsuba| |rightNorm| |HenselLift| |testDim| |multiset| |Hausdorff|
- |t| |setOfMinN| |linearAssociatedExp| |expint| |eulerPhi|
- |OMParseError?| |makeYoungTableau| |besselK| |sizeMultiplication|
- |var2StepsDefault| |specialTrigs| |vectorise| |loadNativeModule|
- |padicallyExpand| |midpoint| |cAsin| |lambert| |processTemplate|
- |tablePow| |iisinh| |c06gcf| |e02baf| |s19adf| |makeSeries|
- |patternVariable| |changeThreshhold| |mix| |ocf2ocdf|
- |clearFortranOutputStack| |B1solve| |resultantnaif| |fortranLiteral|
- |subresultantVector| |constant| |jordanAlgebra?| |generalTwoFactor|
- |commonDenominator| |binomThmExpt| |complexNumeric| |yCoordinates|
- |binaryFunction| |over| |f2df| |s13adf| |reverseLex| |sec2cos| |hclf|
- |complexEigenvectors| |optpair| |byte| |f04atf| |fi2df| |predicate|
- |hyperelliptic| |charpol| |cap| |divergence| |mathieu24| |graphStates|
- |safeCeiling| |movedPoints| |zeroDim?| |kernels| |round| |exprToXXP|
- |numberOfFactors| |e02adf| |characteristicPolynomial| |f01rdf|
- |denomLODE| |subscriptedVariables| |compiledFunction| |errorInfo|
- |operator| |hermite| |cons| |hexDigit| |conjugate| |parametric?|
- |cyclicEqual?| |divisors| |commutator| |froot| |increasePrecision|
- |nullary?| |number?| |droot| |coerceL| |step| |factorSquareFree|
- |BasicMethod| |integers| |f04adf| |opeval| |setTopPredicate| |s01eaf|
- |univariate| |monomialIntPoly| |enterPointData| |ord| |d02cjf|
- |addBadValue| |firstDenom| |removeSquaresIfCan| |comment| |qelt|
- |defineProperty| |leftRank| |setLength!| |quotientByP| |f07fef|
- |fortranLinkerArgs| |wrregime| |color| |updatF|
- |linearlyDependentOverZ?| |qsetelt| |exptMod| |OMreceive| |btwFact|
- |mainVariables| |s21baf| |firstNumer| |linear|
- |generalizedContinuumHypothesisAssumed?| |unitNormal| |powern| |scan|
- |coerce| |readInt32!| |xRange| |factor| |floor| |chineseRemainder|
- |Frobenius| |rewriteIdealWithRemainder| |empty| |int| |perfectSquare?|
- |changeMeasure| |listOfLists| |construct| |showRegion|
- |parabolicCylindrical| |isPlus| |yRange| |sqrt| |ceiling| |normal01|
- |source| |Nul| |range| |isAtom| |distribute|
- |createLowComplexityTable| |parameters| |zRange| |logIfCan| |real|
- |subResultantGcd| |listOfMonoms| |viewThetaDefault| |lastSubResultant|
- |UpTriBddDenomInv| |rowEch| |overset?| |symbol?| |dimensionsOf|
- |evenInfiniteProduct| |map!| |c06ecf| |iiacosh| |imag|
- |createThreeSpace| |karatsubaDivide| |SturmHabichtCoefficients|
- |generalLambert| |inspect| |approxNthRoot| |characteristicSet| |max|
- |length| |bigEndian| |qsetelt!| |directProduct| |toseInvertible?|
- |printTypes| |mindegTerm| |critMTonD1| |areEquivalent?|
- |numberOfMonomials| |f02bjf| |OMputSymbol| |resultantReduitEuclidean|
- |scripts| |extendIfCan| |setRealSteps| |bits| |component| |root|
- |bombieriNorm| |singRicDE| |roughUnitIdeal?| |routines|
- |solveLinearlyOverQ| |doubleRank| |brace| |target| |resize| |traverse|
- |ptree| |readInt8!| |subPolSet?| |qroot| |green| |fixedPoints|
- |lazyGintegrate| |conditionsForIdempotents| |cCsch| |destruct|
- |sinhIfCan| |nextSublist| |Beta| |removeRoughlyRedundantFactorsInPols|
- |findBinding| |generalizedContinuumHypothesisAssumed| |OMputError|
- |makeCos| |redPol| |getOperands| |iibinom| |permutationGroup|
- |wholeRagits| |definingInequation| |subSet| |complexElementary| |kind|
- |bezoutResultant| |connect| |OMlistCDs| |csch2sinh| |dihedral|
- |csubst| |critBonD| |f01brf| |degreeSubResultantEuclidean|
- |clearTable!| |op| |horizConcat| |dmpToP| |iiasec|
- |numberOfComponents| |prod| |startPolynomial| |KrullNumber|
- |lazyIntegrate| |generalizedEigenvectors| |leadingTerm| |style|
- |s18aff| |getBadValues| |hypergeometric0F1| |OMopenFile|
- |createRandomElement| |setRow!| |monomial| |leaf?| |ravel| |charClass|
- |safetyMargin| |rowEchelonLocal| |removeRoughlyRedundantFactorsInPol|
- |partition| |headRemainder| |iisech| |pile| |integralMatrix|
- |littleEndian| |getlo| |coerceP| |anfactor| |reshape| |normalise|
- |arguments| |iflist2Result| |sin?| |polyPart| |e01baf| |setelt|
- |s17dlf| |s17ajf| |OMputEndAtp| |maxrank| |s18acf| |deleteRoutine!|
- |createIrreduciblePoly| |asinhIfCan| |exprHasWeightCosWXorSinWX|
- |torsionIfCan| |overlap| |isNot| |associatedSystem| |univariateSolve|
- |epilogue| |normalized?| |euclideanGroebner| |physicalLength!|
- |inputBinaryFile| |copy| |extensionDegree| |radix| |c06gqf|
- |complexSolve| |initializeGroupForWordProblem| |integerBound|
- |setClosed| |union| |var2Steps| |frobenius| |virtualDegree|
- |prepareSubResAlgo| |getMultiplicationTable| |rightMinimalPolynomial|
- |unmakeSUP| |selectMultiDimensionalRoutines| |smith| |solve1| |rank|
- |e04fdf| |rowEchelon| |rightPower| |parent| |oddInfiniteProduct|
- |lowerCase?| |tryFunctionalDecomposition| |viewSizeDefault| |update|
- |scale| |mainExpression| |homogeneous?| |sup| |OMgetError| |lowerCase|
- |autoCoerce| |alternatingGroup| |yCoord| |createPrimitiveNormalPoly|
- |setsubMatrix!| |functionIsOscillatory| |socf2socdf| |directSum|
- |wordsForStrongGenerators| |fprindINFO| |antisymmetricTensors|
- |deepExpand| |f02aaf| |hMonic| |palglimint| |e01daf| |symbolTableOf|
- |powerSum| |d03eef| |validExponential| |stopTable!|
- |addMatchRestricted| |tValues| |leastAffineMultiple| |null?|
- |complexIntegrate| |lineColorDefault| |seriesSolve| |repeating?|
- |setprevious!| |lazyPremWithDefault| |colorDef| |makeViewport3D|
- |vedf2vef| |principalIdeal| |iiGamma| |getDatabase| |antiAssociative?|
- |position!| |identity| |e02ajf| |rightRank| |digit?| |critMonD1|
- |explogs2trigs| |getCurve| |lquo| |rischDE| |position| |palgLODE0|
- |resultantEuclideannaif| |s14abf| |FormatRoman|
- |unprotectedRemoveRedundantFactors| |leftRankPolynomial|
- |symmetricProduct| |isEquiv| |match?| |symFunc| |maxint| |lists|
- |symmetricPower| |birth| |signatureAst| |region| |palgextint0|
- |s19acf| |eq?| |lexGroebner| |integralRepresents| |d01gbf|
- |bezoutDiscriminant| |makeop| |nthExponent| |putGraph| |generic?|
- |stopTableInvSet!| |listBranches| |zero?| |tableForDiscreteLogarithm|
- |increment| |block| |hdmpToP| |basisOfCentroid| |bandedJacobian|
- |createPrimitivePoly| |declare| |oddintegers| |polCase|
- |rationalPower| |f02xef| |setVariableOrder| |polar| |extractBottom!|
- |rootSimp| |solid?| |normalize| |drawToScale| |squareFreeFactors|
- |polygon| |branchPoint?| |ScanFloatIgnoreSpacesIfCan| |reduction|
- |light| |factorsOfDegree| |OMserve| |leadingExponent| |conditionP|
- |rk4f| |mdeg| |radPoly| |factorial| |infieldint| |removeSinSq|
- |s17aef| |addiag| |equiv| |algebraicDecompose| |commutative?| |bytes|
- |iitanh| |tensorProduct| |printStatement| |heap| |arg1| |lfextlimint|
- |rationalFunction| |musserTrials| |hermiteH| |basisOfRightNucleus|
- |selectAndPolynomials| |mapDown!| |orbit| |arg2| |pushuconst|
- |ScanFloatIgnoreSpaces| |indicialEquationAtInfinity| |sech|
- |stoseInvertibleSet| |OMputObject| |semiDiscriminantEuclidean|
- |createGenericMatrix| |child| |raisePolynomial| |realZeros| |ratDenom|
- |e04ucf| |pushNewContour| |mkAnswer| |csch| |randomLC|
- |exteriorDifferential| |mainMonomial| |cAcot| |close|
- |explicitEntries?| |eulerE| |c06eaf| |asinh| |conditions| |mindeg|
- |OMgetEndAtp| |divideExponents| |internalIntegrate|
- |getSyntaxFormsFromFile| |cAcos| |lifting1| |setFormula!| |Gamma|
- |upperCase?| |wreath| |match| |infRittWu?| |acosh| |scalarMatrix|
- |toScale| |equality| |stop| |diag| |factorFraction| |d01asf| |display|
- |predicates| |bright| |iidsum| |setClipValue| |initTable!| F2FG
- |atanh| |e02ahf| |e04mbf| |ScanRoman| |fractRadix| |rootOf| |lighting|
- |iilog| |li| |solveLinear| |radicalEigenvectors| |e01bhf| |acoth|
- |asimpson| |dual| |completeEval| |pureLex| |numberOfPrimitivePoly|
- |assign| |mkcomm| |outputFixed| |maxPoints3D| |groebnerIdeal| |asech|
- |scalarTypeOf| |iiabs| |padecf| |implies| |relerror| |coleman|
- |e02bcf| |argumentList!| |insertTop!| |d02kef| |lllp|
- |decreasePrecision| |createMultiplicationTable| |host|
- |exponentialOrder| |reducedSystem| |elaborateFile| |coord| |multiple|
- |rewriteIdealWithQuasiMonicGenerators| |mesh?| |SFunction| |input|
- |cfirst| |approxSqrt| |primPartElseUnitCanonical| |cCos|
- |subQuasiComponent?| |operators| |applyQuote| |box| |blankSeparate|
- |augment| |fortranTypeOf| |scripted?| |library| |meatAxe|
- |showArrayValues| |stronglyReduce| |iiacoth| |readLine!|
- |colorFunction| |tanh2coth| |rewriteIdealWithHeadRemainder| |uniform|
- |maxdeg| |semiLastSubResultantEuclidean| |totalGroebner| |Lazard2|
- |maximumExponent| |internalInfRittWu?| |antiCommutative?|
- |interpretString| |bipolar| |ksec| |ignore?| |bernoulliB|
- |setLegalFortranSourceExtensions| |rightGcd|
- |createNormalPrimitivePoly| |exprToUPS| |zeroVector| |leadingIdeal|
- |s17def| |ruleset| |controlPanel| |completeHermite| |e02dff|
- |simplify| |dequeue| |pole?| |leftZero| |f02aef| |expintfldpoly|
- |subTriSet?| |irreducibleRepresentation| |OMgetString| |nullSpace|
- |set| |closedCurve| |sin2csc| GF2FG |f04jgf| |entries| |wholeRadix|
- |attributeData| |leftQuotient| |test| |alphanumeric| |id|
- |whatInfinity| |printingInfo?| |sorted?| |reducedDiscriminant|
- |setright!| |rightOne| |acoshIfCan| |suchThat| |inverse| |whileLoop|
- |f02adf| |mesh| |getPickedPoints| |leftCharacteristicPolynomial|
- |radicalEigenvector| |expenseOfEvaluation| |OMputEndObject|
- |OMputAttr| |pquo| |readBytes!| |recur| |character?| |complex?|
- |squareFreeLexTriangular| |table| |shallowExpand| |seriesToOutputForm|
- |arrayStack| |collectUpper| |submod| |duplicates| |subst|
- |solveLinearPolynomialEquationByFractions| |insert| |new|
- |idealSimplify| |halfExtendedSubResultantGcd1| |pointColorPalette|
- |rightDiscriminant| |toroidal| |obj| |alphabetic|
- |indiceSubResultantEuclidean| |iiperm| |leadingBasisTerm| |shiftRoots|
- |nextPartition| |unvectorise| |eq| |coth2trigh| |makeCrit| |prefix|
- |rotatez| |notelem| |cache| |weights| |rangePascalTriangle| |sPol|
- |iter| |bubbleSort!| |OMputEndBVar| |asinIfCan| |checkForZero| |iiexp|
- |iitan| |lintgcd| |monomRDE| |bitLength| |delete| |trigs| |signature|
- |modulus| |dualSignature| |d01apf| |pToDmp| |direction|
- |linearDependenceOverZ| |maxIndex| |endOfFile?| |vertConcat| |s17ahf|
- |kovacic| |genus| |deriv| |outputBinaryFile| |overlabel| |iiasinh|
- |sizeLess?| |nsqfree| |minimumDegree| |linearPolynomials|
- |changeWeightLevel| |monomRDEsys| |factorset| |cyclotomic| |reseed|
- |objects| |removeCoshSq| |iiatan| |normDeriv2| |rightUnits|
- |sturmVariationsOf| |basisOfRightNucloid| |directory| |adaptive3D?|
- |modularGcd| |base| |se2rfi| |script| |rightTrace| |computeBasis|
- |ramifiedAtInfinity?| |coefChoose| |associatorDependence| |tRange|
- |pointColorDefault| |any?| |selectOrPolynomials| |zag|
- |linearDependence| |atanIfCan| |OMgetEndAttr| |redmat|
- |basisOfLeftNucleus| |argumentListOf| |sumOfKthPowerDivisors|
- |retractIfCan| |irCtor| |elementary| |semiSubResultantGcdEuclidean2|
- |simpson| |mainMonomials| |irreducibleFactor| |flatten| |cot2trig|
- |exp| |lfunc| |alphanumeric?| |permutation| |makeTerm| |lyndon?|
- |leftScalarTimes!| |tex| |leftTrace| |quoByVar| |left| |numer|
- |derivationCoordinates| |parabolic| |addPoint2| |factorByRecursion|
- |iiasin| |getProperties| |kmax| |selectODEIVPRoutines| |/\\|
- |totalfract| |recoverAfterFail| |right| |outputList| |denom|
- |modularGcdPrimitive| |mapExponents| |infiniteProduct|
- |generateIrredPoly| |iipow| |elliptic| |useSingleFactorBound?|
- |useEisensteinCriterion?| |\\/| |replaceKthElement| |bumptab1|
- |setref| |subResultantsChain| |imagE| |extendedResultant| |repeating|
- |nil| |infinite| |arbitraryExponent| |approximate| |complex|
+ |Record| |Union| |stosePrepareSubResAlgo| |voidMode|
+ |orthonormalBasis| |fixedPoints| |permutationRepresentation| |pi|
+ |writeByte!| |arbitrary| |increase| |polynomialZeros| |subscript|
+ |makeMulti| |quasiComponent| |quotedOperators| |lazyGintegrate|
+ |infinity| |bat1| |functionIsContinuousAtEndPoints| |e02agf|
+ |pascalTriangle| |diag| |bounds| |convergents| |cothIfCan|
+ |conditionsForIdempotents| |tan2trig| |cond| |aQuartic| |subMatrix|
+ |setMinPoints3D| |f07adf| |factorFraction| |decrease| |permutations|
+ |singularitiesOf| |unitCanonical| |cCsch| |generate| |log10| |d01bbf|
+ |e01bgf| |selectIntegrationRoutines| |map| |d01asf| |leftLcm| |e02bdf|
+ |stirling2| |algint| |sinhIfCan| |mainSquareFreePart| |bitand|
+ |kernel| |previous| |measure| |twist| |buildSyntax| |predicates| |abs|
+ |iisqrt2| |isQuotient| |incrementBy| |realEigenvalues| |unit?|
+ |OMgetEndApp| |nextSublist| |outerProduct| |bitior| |draw|
+ |squareFree| |qfactor| |OMgetInteger| |morphism| |iidsum|
+ |messagePrint| |deref| |solveRetract| |fmecg| |Beta| |expand|
+ |intensity| |superHeight| |stoseInvertible?reg| |setClipValue|
+ |rowEchLocal| |elliptic?| |currentEnv| |normalizedAssociate| |e01saf|
+ |root?| |removeRoughlyRedundantFactorsInPols| |filterWhile|
+ |fixedDivisor| |f04arf| |invertibleSet| |e02aef| |initTable!|
+ |multinomial| |fortranCharacter| |findCycle| |findBinding|
+ |nativeModuleExtension| |filterUntil| |symbol| |internalIntegrate0|
+ |polygamma| |evaluateInverse| |rename!| |convert| F2FG |simpsono|
+ |generalizedContinuumHypothesisAssumed| |getProperty| |endSubProgram|
+ |cSin| |points| |select| |expression| |makeObject| |isobaric?|
+ |iCompose| |writeInt8!| |untab| |minimumExponent| |e02ahf| |saturate|
+ |height| |OMReadError?| |decompose| |cCot| |OMclose| |OMputError|
+ |integer| |coef| |setleft!| |lastSubResultantElseSplit| |shrinkable|
+ |e04mbf| |listLoops| |constantCoefficientRicDE| |adjoint|
+ |selectOptimizationRoutines| |minrank| |numFunEvals3D| |makeCos|
+ |psolve| |oneDimensionalArray| |mergeDifference| |elaborate|
+ |fortranDoubleComplex| |ScanRoman| |leftRemainder|
+ |inputOutputBinaryFile| |rightExactQuotient| |resetVariableOrder|
+ |redPol| |corrPoly| |irVar| |f01mcf| |elem?| ** |fractRadix|
+ |monomials| |numberOfFractionalTerms| |basisOfCommutingElements|
+ |slex| |roughSubIdeal?| |getOperands| |rectangularMatrix|
+ |partialQuotients| |elColumn2!| |rootOf| |tanIfCan| |stoseInvertible?|
+ |associator| |separate| |iibinom| |internalAugment| |besselY|
+ |stiffnessAndStabilityFactor| |clikeUniv| |lighting| |conjug|
+ |separateDegrees| |jordanAdmissible?| |cAtanh| |makeRecord| |power|
+ |permutationGroup| |lo| |insertBottom!| |complexNumericIfCan|
+ |certainlySubVariety?| |iilog| |internalSubQuasiComponent?|
+ |nextColeman| |lazyVariations| |currentSubProgram| |initials|
+ |wholeRagits| |incr| |acsch| |setErrorBound| |label| |exists?|
+ |prologue| |solveLinear| |setOrder| |initial| |normalElement|
+ |sqfrFactor| |nilFactor| |definingInequation| |hasHi| |copyInto!|
+ |PDESolve| |bivariatePolynomials| |topFortranOutputStack|
+ |radicalEigenvectors| |lflimitedint| |splitLinear| |encodingDirectory|
+ |trace2PowMod| |subSet| |coordinates| |acscIfCan| |cycleLength|
+ |e01bhf| |clearDenominator| |e02ddf| |copy!| |qqq| |diff|
+ |complexElementary| |generalPosition| |reduceByQuasiMonic| |invmod|
+ |prepareDecompose| |asimpson| Y |Is| |components| |makeSUP|
+ |bezoutResultant| |maxrow| |d02bbf| |integralBasisAtInfinity|
+ |zeroSetSplit| |choosemon| |dual| |phiCoord| |minPoints| |move|
+ |OMgetApp| |connect| |sub| |nthFlag| |transcendenceDegree|
+ |completeEval| |pop!| |external?| |derivative| |df2ef| |setProperty|
+ |OMlistCDs| |tail| |OMencodingXML| |beauzamyBound| |elRow2!| |pureLex|
+ |OMsupportsCD?| |constructor| |monicModulo| |rules|
+ |euclideanNormalForm| |hessian| |csch2sinh| |more?| |symmetric?|
+ |squareFreePrim| |changeBase| |numberOfPrimitivePoly|
+ |LagrangeInterpolation| |totalDifferential| |realElementary| |nothing|
+ |roughBasicSet| |dihedral| |dioSolve| |f04qaf| |option| |power!|
+ |tubeRadius| |iterationVar| |assign| |eyeDistance| |showSummary|
+ |separateFactors| |numerator| |leastMonomial| |characteristic|
+ |csubst| |d01anf| |iicsch| |disjunction| |bumptab| |mkcomm|
+ |nthFractionalTerm| |systemSizeIF| |insertionSort!| |critBonD|
+ |fixedPointExquo| |f02ajf| |evaluate| |doubleResultant| |OMgetAtp|
+ |outputFixed| |showAttributes| |factorPolynomial| |sylvesterMatrix|
+ |lepol| |reducedContinuedFraction| |f01brf| |spherical| |unknown|
+ |cyclicSubmodule| |d01gaf| |atrapezoidal| |maxPoints3D| |macroExpand|
+ |clearTheIFTable| |noKaratsuba| |compactFraction| |pToHdmp|
+ |degreeSubResultantEuclidean| |rightTrim| |subNode?| |positiveSolve|
+ |escape| |s21bcf| |groebnerIdeal| |fortranLiteralLine| |leftTrim|
+ |legendre| |monicRightFactorIfCan| |clearTable!| |removeSinhSq|
+ |listConjugateBases| |minPoints3D| |linkToFortran| |mapBivariate|
+ |scalarTypeOf| |tanintegrate| |quoted?| |currentCategoryFrame|
+ |horizConcat| |s20adf| |logGamma| |unknownEndian| |constantIfCan|
+ |leftDivide| |iiabs| |say| |primintfldpoly| |makeUnit| F
+ |unrankImproperPartitions1| |f02abf| |dmpToP| |upperBound| |rightUnit|
+ |rombergo| |pushdown| |padecf| |genericRightMinimalPolynomial|
+ |integralDerivationMatrix| |s14baf| |iiasec| |selectFiniteRoutines|
+ |doublyTransitive?| |outputArgs| |factorAndSplit| |gcdPrimitive|
+ |implies| |An| |jacobiIdentity?| |setAdaptive3D| |df2fi|
+ |numberOfComponents| |partialDenominators| |viewZoomDefault|
+ |relerror| |insertMatch| |removeIrreducibleRedundantFactors| |remove|
+ |function| |multivariate| |numberOfIrreduciblePoly| |primlimitedint|
+ |oddlambert| |localAbs| |prod| |fortran| |OMsetEncoding| |variables|
+ |optional?| |OMputVariable| |wordInGenerators| |coleman| |result|
+ |s21bdf| |nextPrimitivePoly| |d01amf| |reciprocalPolynomial|
+ |startPolynomial| |integral?| |hconcat| |open| |reorder| |generators|
+ |last| |e02bcf| |eval| |reset| |dmpToHdmp| |lieAlgebra?| |totalLex|
+ |prinshINFO| |KrullNumber| |assoc| |even?| |clearTheFTable| |null|
+ |discriminantEuclidean| |column| |argumentList!| |xCoord|
+ |simplifyPower| |fullPartialFraction| |primintegrate| |lazyIntegrate|
+ |critB| |quasiRegular| |pattern| |not| |factorSFBRlcUnit| |baseRDEsys|
+ |insertTop!| |write| |ricDsolve| |rst| |polygon?|
+ |generalizedEigenvectors| |d01aqf| |pseudoQuotient| |torsion?| |and|
+ |isList| |primitivePart| |d02kef| |save| |credPol| |deepestTail|
+ |cyclicParents| |leadingTerm| |negative?| |operations|
+ |complementaryBasis| |solveid| |or| |setPredicates| |zoom| |taylor|
+ |lllp| |lifting| |cycleRagits| |style| |d02gaf| |f01qdf| |jacobian|
+ |viewpoint| |xor| |expandTrigProducts| |decreasePrecision| |laurent|
+ |low| |preprocess| |pointLists| |s18aff| |innerint| |e02daf| |message|
+ |lazyResidueClass| |closedCurve?| |case| |createMultiplicationTable|
+ |puiseux| |leftRegularRepresentation| |f04mbf| |OMputFloat|
+ |getBadValues| |initiallyReduced?| |bitTruth| |normFactors|
+ |degreeSubResultant| |Zero| |host| |hypergeometric0F1|
+ |removeRoughlyRedundantFactorsInContents| |shade| |hi| |monicDivide|
+ |iicot| |setAttributeButtonStep| |measure2Result| |One|
+ |exponentialOrder| |inv| |copies| |imagj| |extendedIntegrate|
+ |OMopenFile| |initiallyReduce| |variationOfParameters| |binaryTree|
+ |trigs2explogs| |ground?| |reducedSystem| |rightRemainder| |ref|
+ |inverseLaplace| |createRandomElement| |multisect| |collect|
+ |elaborateFile| |legendreP| |rroot| |ground| |lcm| |lookupFunction|
+ |mapUnivariate| |setRow!| |inverseColeman| |bottom!|
+ |trailingCoefficient| |edf2ef| |var1StepsDefault| |coord|
+ |leadingMonomial| |variable?| |leaf?| |in?| |pointData| |groebgen|
+ |append| |selectPDERoutines| |leadingCoefficient|
+ |rewriteIdealWithQuasiMonicGenerators| |resultantReduit| |delay|
+ |charClass| |LyndonWordsList1| |nonLinearPart| |primitiveMonomials|
+ |interReduce| |gcd| |constDsolve| |multiplyExponents| |elt| |output|
+ |mesh?| |mapUp!| |compound?| |rationalPoints| |leftTraceMatrix|
+ |safetyMargin| |eigenvector| |squareMatrix| |SFunction|
+ |hasPredicate?| |contours| |false| |reductum| |times!| |listexp|
+ |push| |rowEchelonLocal| |startTable!| RF2UTS |cfirst|
+ |reducedQPowers| |nextSubsetGray| |primeFrobenius|
+ |removeRoughlyRedundantFactorsInPol| |edf2efi|
+ |getMultiplicationMatrix| |mappingMode| |tableau| |approxSqrt|
+ |mappingAst| |unaryFunction| |ParCondList| |partition| |gcdcofactprim|
+ |indicialEquations| |meshPar2Var| |f01qcf| |primPartElseUnitCanonical|
+ |d01alf| |factorSquareFreeByRecursion| |swap| |headRemainder|
+ |ratPoly| |thetaCoord| |HermiteIntegrate| |s19aaf| |cCos|
+ |brillhartIrreducible?| |fractRagits| |adaptive| |moduloP|
+ |numberOfComputedEntries| |hostPlatform| |subQuasiComponent?|
+ |gcdcofact| |graphCurves| |magnitude| |showRegion| |cAsec|
+ |viewDefaults| |semiResultantEuclidean2| |mainForm| |operators|
+ |categories| |exprHasAlgebraicWeight| |viewport2D|
+ |parabolicCylindrical| |ranges| |fortranCarriageReturn| |sechIfCan|
+ |applyRules| |tanQ| |blankSeparate| |noLinearFactor?|
+ |OMconnOutDevice| |cAcosh| |isPlus| |unravel| |splitSquarefree| |odd?|
+ |selectfirst| |palgRDE0| |dominantTerm| |OMputApp| |ceiling|
+ |computeInt| |f02bbf| |externalList| |open?| |infieldint| |euler|
+ |lagrange| |resetAttributeButtons| |normal01| |genericLeftTraceForm|
+ |cTanh| |balancedFactorisation| |finite?| |removeSinSq| |build|
+ |realEigenvectors| |Nul| |f04maf| |plusInfinity| |coefficient|
+ |partialFraction| |meshFun2Var| |OMencodingBinary| |s17aef|
+ |accuracyIF| |fillPascalTriangle| |range| |row| |minusInfinity| |inf|
+ |OMconnInDevice| |cosIfCan| |addiag| |constantLeft|
+ |nextsousResultant2| |isAtom| |BumInSepFFE| |irreducibleFactor|
+ |iiacsc| |basis| |exponential| |equiv| |primitive?| |bivariate?|
+ |distribute| |romberg| |cot2trig| |Ei| |fixPredicate| |key|
+ |drawStyle| |algebraicDecompose| |absolutelyIrreducible?|
+ |removeSuperfluousQuasiComponents| |createLowComplexityTable| |aCubic|
+ |lfunc| |functorData| |denomRicDE| |diagonalProduct| |commutative?|
+ |partialNumerators| |invertIfCan| |logIfCan| |basicSet|
+ |alphanumeric?| |filename| |mainCoefficients| |irDef| |printStats!|
+ |bytes| |innerEigenvectors| |d02raf| |subResultantGcd| |shiftRight|
+ |permutation| |type| |zeroOf| |mat| |cTan| |iitanh| |multiEuclidean|
+ |symmetricGroup| |listOfMonoms| |algebraic?| |makeTerm|
+ |multiEuclideanTree| |stoseIntegralLastSubResultant|
+ |genericRightTraceForm| |parse| |tensorProduct| |minRowIndex|
+ |quadratic| |moduleSum| |viewThetaDefault| |lyndon?| |nary?|
+ |makeprod| |unexpand| |next| |printStatement| |minGbasis|
+ |shallowCopy| |gramschmidt| |lastSubResultant| |leftScalarTimes!|
+ |linearAssociatedLog| |algintegrate| |Vectorise| |heap|
+ |extendedEuclidean| |fractionFreeGauss!| |flexibleArray|
+ |UpTriBddDenomInv| |leftTrace| |e04ycf| |myDegree| |s18dcf|
+ |lfextlimint| |index?| |rowEch| |quasiAlgebraicSet| |LiePolyIfCan|
+ |checkPrecision| |OMunhandledSymbol| |quoByVar| |unitNormalize|
+ |bitCoef| |gcdPolynomial| |rationalFunction| |associatedEquations|
+ |numerators| |palgint0| |cyclicEntries| |overset?| EQ
+ |derivationCoordinates| |unit| |palgLODE| |setMaxPoints|
+ |musserTrials| |pmComplexintegrate| |supersub| |symbol?|
+ |triangularSystems| |parabolic| |showAll?| |internalZeroSetSplit|
+ |lhs| |less?| |hermiteH| |hdmpToDmp| |complexForm| |finiteBasis|
+ |dimensionsOf| |addPoint2| |rootSplit| |generalizedInverse| |indices|
+ |rhs| |basisOfRightNucleus| |represents| |fortranComplex| |e01bff|
+ |evenInfiniteProduct| |factorByRecursion| |constantRight| |weight|
+ |curve| |selectAndPolynomials| |ddFact| |besselI| |c06ecf| |s19abf|
+ |iiasin| |principal?| |read!| |Ci| |mapDown!| |badValues| |cosh2sech|
+ |iroot| |iiacosh| |getProperties| |rule| |mapmult| |nodes| |csc2sin|
+ |orbit| |children| |tubePointsDefault| |ef2edf| |createThreeSpace|
+ |kmax| |setPosition| |compose| |index| |internalLastSubResultant|
+ |pushuconst| |leviCivitaSymbol| |complexRoots| |e01sff|
+ |karatsubaDivide| |selectODEIVPRoutines| |extractIndex|
+ |nextNormalPrimitivePoly| |schema| |ScanFloatIgnoreSpaces|
+ |representationType| |companionBlocks| |SturmHabichtCoefficients|
+ |setTex!| |totalfract| |enumerate| |center| |biRank|
+ |nextLatticePermutation| |indicialEquationAtInfinity| |complexExpand|
+ |cAcsch| |flagFactor| |generalLambert| |recoverAfterFail| |has?|
+ |OMputEndAttr| |putColorInfo| |pair| |stoseInvertibleSet| |inspect|
+ |rk4qc| |stoseLastSubResultant| |c06frf| |value| |modularGcdPrimitive|
+ |comparison| |trueEqual| |totalDegree| |OMputObject|
+ |selectPolynomials| |eigenMatrix| |approxNthRoot| |lazyPseudoDivide|
+ |mapExponents| |strongGenerators| |alternative?| |s17agf|
+ |semiDiscriminantEuclidean| |transform| |whitePoint| |OMputEndBind|
+ |characteristicSet| |infiniteProduct| |OMputInteger| |e04naf|
+ |member?| |createGenericMatrix| |rational| |extractSplittingLeaf|
+ |max| |stoseInvertible?sqfreg| |entry| |generateIrredPoly|
+ |removeSuperfluousCases| |pow| |hitherPlane| |child| |setlast!|
+ |qualifier| |localUnquote| |bigEndian| |iipow| |iicosh| |polyRicDE|
+ |possiblyInfinite?| |raisePolynomial| |prefixRagits| |parametersOf|
+ |toseInvertible?| |printHeader| |elliptic| |setFieldInfo|
+ |currentScope| |returnTypeOf| |realZeros| |divisor| |sign| |s14aaf|
+ |printTypes| |useSingleFactorBound?| |rightDivide| |stFunc1|
+ |viewWriteDefault| |ratDenom| |sn| |clipParametric| |palginfieldint|
+ |readIfCan!| |reverse| |mindegTerm| |useEisensteinCriterion?|
+ |limitedIntegrate| |binding| |idealiser| |e04ucf| |problemPoints|
+ |makeResult| |critMTonD1| |cSinh| |replaceKthElement| |extractTop!|
+ |leftExtendedGcd| |call| |satisfy?| |pushNewContour| |central?|
+ |getOrder| |OMgetBVar| |areEquivalent?| |bumptab1| |leaves| |tree|
+ |superscript| |heapSort| |univariatePolynomials| |mkAnswer| |lllip|
+ |showAllElements| |cCsc| |numberOfMonomials| |setref| |lazyPrem|
+ |numericIfCan| |readLineIfCan!| |randomLC| |lazyEvaluate| |sinIfCan|
+ |f02bjf| |s18aef| |subResultantsChain| |structuralConstants|
+ |getButtonValue| |geometric| |exteriorDifferential| |lfintegrate|
+ |cycleTail| |OMputSymbol| |showScalarValues| |imagE| |algSplitSimple|
+ |OMUnknownSymbol?| |normInvertible?| |init| |mainMonomial|
+ |primlimintfrac| |lowerCase!| |exp1| |resultantReduitEuclidean|
+ |extendedResultant| |quatern| |removeConstantTerm| |imagK| |cAcot|
+ |nlde| |rewriteSetWithReduction| |nullary| |extendIfCan| |repeating|
+ |chebyshevU| |lookup| |setScreenResolution3D| |explicitEntries?|
+ |lieAdmissible?| |graphImage| |setRealSteps| |key?| |bandedHessian|
+ |generator| |bezoutMatrix| |laplace| |eulerE| |f07fdf| |cyclic?|
+ |bits| |reverse!| |hostByteOrder| |bfEntry| |numberOfNormalPoly|
+ |c06eaf| |rootOfIrreduciblePoly| |e04jaf| |component| |setchildren!|
+ |replace| |fixedPoint| |monicLeftDivide| |mindeg| |search| |zCoord|
+ |string?| |root| |iteratedInitials| |exprex| |randomR| |OMgetEndAtp|
+ |stack| |bombieriNorm| |f02awf| |determinant| |rem| |cycle| |getRef|
+ |continuedFraction| |roughBase?| |divideExponents| |curveColorPalette|
+ |e02def| |lprop| |singRicDE| |quo| |semiResultantReduitEuclidean|
+ |putProperty| |startStats!| |internalIntegrate| |condition| |iisqrt3|
+ |univariatePolynomialsGcds| |useSingleFactorBound| |roughUnitIdeal?|
+ |taylorRep| |OMsupportsSymbol?| |setPrologue!|
+ |getSyntaxFormsFromFile| |div| |routines| |symmetricDifference|
+ |minimalPolynomial| |OMgetObject| |sturmSequence| |cAcos|
+ |monomialIntegrate| |tan2cot| |nthRootIfCan| |exquo|
+ |solveLinearlyOverQ| |dim| |showIntensityFunctions| |bringDown|
+ |quasiRegular?| |lifting1| |c06gsf| |point?| |doubleRank|
+ |genericLeftDiscriminant| ~= |rightScalarTimes!|
+ |tryFunctionalDecomposition?| |frst| |setFormula!| |newLine| |tab|
+ |lastSubResultantEuclidean| |resize| |#| |matrix| |cycles| |dec|
+ |Gamma| |bsolve| |fintegrate| |byteBuffer| ~ |traverse|
+ |firstUncouplingMatrix| |updateStatus!| |sech2cosh| |concat|
+ |upperCase?| |acschIfCan| |fractionPart| |regularRepresentation|
+ |readInt8!| |mapCoef| |OMsend| |removeRedundantFactors| |wreath|
+ |difference| |getOperator| |mvar| |subPolSet?| |printInfo| |nullity|
+ |presuper| |interpolate| |clearCache| |infRittWu?| |s17dhf|
+ |diophantineSystem| |level| |minPoly| |pushdterm| |OMputString|
+ |scalarMatrix| |realRoots| |nextPrime| |basisOfNucleus| |hermite|
+ |ran| |iisin| |revert| |toScale| |hexDigit| |zeroSquareMatrix|
+ |mightHaveRoots| |intPatternMatch| |substring?| |pointPlot|
+ |divisorCascade| |minordet| |equality| |char| |matrixDimensions|
+ |failed| |primitivePart!| |f02akf| |conjugate| |schwerpunkt| |plot|
+ |acosIfCan| |linearPart| |rightLcm| |perspective| |parametric?|
+ |suffix?| |iiasech| |closed| |isPower|
+ |unprotectedRemoveRedundantFactors| |checkRur| |imagi| |setleaves!|
+ |cyclicEqual?| |chiSquare| |paren| UTS2UP |leftRankPolynomial|
+ |appendPoint| |compile| |cyclePartition| |tanSum| |divisors| |prefix?|
+ |status| |cotIfCan| |factor1| |resetNew| |symmetricProduct|
+ |createNormalElement| |particularSolution| |commutator| |tanNa|
+ |solve| |outputAsTex| |pseudoDivide| |isEquiv| |bit?| |setEmpty!|
+ |algDsolve| |froot| |modulus| |second| |setStatus!| |dictionary|
+ |moebius| |erf| |symFunc| |float| |complete| |stFunc2|
+ |increasePrecision| |stFuncN| |dualSignature| |third| |digit|
+ |euclideanSize| |showTheRoutinesTable| |maxint|
+ |cyclotomicDecomposition| |OMconnectTCP| |nullary?| |qinterval|
+ |d01apf| |exponents| |ip4Address| |changeVar| |symmetricPower| |void|
+ |nextsubResultant2| |purelyAlgebraic?| |number?| |hspace| |pToDmp|
+ |completeEchelonBasis| |errorKind| |check| |dilog| |birth| |droot|
+ |gcdprim| |cLog| |infLex?| |infix?| |direction|
+ |solveLinearPolynomialEquation| |mapdiv| |monicDecomposeIfCan| |sin|
+ |signatureAst| |mask| |c06fqf| |OMputEndApp| |coerceL|
+ |upDateBranches| |linearDependenceOverZ| |genericRightNorm|
+ |changeNameToObjf| |goodnessOfFit| |cos| |region| |minset| |diagonal?|
+ |gensym| |factorSquareFree| |maxIndex| |categoryFrame| |zeroDimPrime?|
+ |insert!| |expr| |palgextint0| |tan| |RittWuCompare|
+ |internalSubPolSet?| |BasicMethod| |mainValue| |endOfFile?| |addmod|
+ |setelt!| |mainDefiningPolynomial| |s19acf| |cot| |getIdentifier|
+ |consnewpol| |bipolarCylindrical| |integers| |vertConcat| |cAcoth|
+ |innerSolve| |coerceImages| |eq?| |sec| GE |pdf2ef| |f04adf|
+ |algebraicCoefficients?| |double| |coth2tanh| |s17ahf| |space|
+ |normalForm| |coerceS| |lexGroebner| |csc| |log| GT
+ |noncommutativeJordanAlgebra?| |irreducibleFactors| |iiatanh| |opeval|
+ |kovacic| |PollardSmallFactor| |variable| |weighted| |mainVariable|
+ |integralRepresents| |asin| LE |conical|
+ |solveLinearPolynomialEquationByRecursion| |c02agf| |setTopPredicate|
+ |genus| |inverseIntegralMatrixAtInfinity| |possiblyNewVariety?|
+ |iterators| BY |zeroSetSplitIntoTriangularSystems| |d01gbf| |acos| LT
+ |extendedint| |removeRedundantFactorsInContents| |s01eaf| |nthRoot|
+ |deriv| |gradient| |showFortranOutputStack| |minus!|
+ |bezoutDiscriminant| |atan| |generalizedEigenvector| |totolex|
+ |monomialIntPoly| |mainContent| |outputBinaryFile| |omError| |const|
+ |llprop| |makeop| |acot| |diagonalMatrix| |quartic| |cCosh|
+ |enterPointData| |overlabel| |rotatex| |leftNorm| |taylorQuoByVar|
+ |nthExponent| |asec| |rationalApproximation| |rightRankPolynomial|
+ |ord| |reopen!| |iiasinh| |every?| |vspace| |inGroundField?|
+ |putGraph| |acsc| |environment| |d02cjf| |numberOfChildren|
+ |asecIfCan| |declare!| |sizeLess?| |characteristicSerie| |returns|
+ |plenaryPower| |generic?| |sinh| |rdregime| |df2st| |leftFactorIfCan|
+ |fortranDouble| |addBadValue| |nsqfree| |f01rcf| |writable?|
+ |branchIfCan| |stopTableInvSet!| |cosh| |exprToGenUPS|
+ |physicalLength| |LazardQuotient2| |merge| |firstDenom| NOT
+ |minimumDegree| |Aleph| |symmetricSquare| |baseRDE| |listBranches|
+ |tanh| |d02ejf| |OMread| |trapezoidalo| |removeSquaresIfCan| OR
+ |linearPolynomials| |rightFactorIfCan| |f01maf| |postfix| |zero?|
+ |coth| |e02gaf| |e02zaf| |listYoungTableaus| |defineProperty| AND
+ |changeWeightLevel| |makeFloatFunction| |f04mcf| |maxRowIndex|
+ |tableForDiscreteLogarithm| |leftRank| |OMUnknownCD?| |evenlambert|
+ |ScanArabic| |keys| |monomRDEsys| |distance| |maxPoints| |head|
+ |depth| |increment| |fortranReal| |usingTable?| |setLength!| |norm|
+ |factorset| |factors| |tracePowMod| |drawComplexVectorField| |block|
+ |curryLeft| |quotientByP| |lex| |debug| |rename| |segment| |parents|
+ |cyclotomic| |OMmakeConn| |inRadical?| |divideIfCan| |hdmpToP|
+ |iiacos| |integralAtInfinity?| D |integralMatrixAtInfinity| |f07fef|
+ |reseed| |associates?| |OMbindTCP| |startTableGcd!| |basisOfCentroid|
+ |combineFeatureCompatibility| |cSech| |innerSolve1|
+ |fortranLinkerArgs| |removeCoshSq| |setMinPoints| |complexZeros|
+ |critM| |bandedJacobian| |complexLimit| |trapezoidal|
+ |squareFreePolynomial| |wrregime| |iiatan| |dflist| |mainKernel|
+ |cSec| |createPrimitivePoly| |GospersMethod| |belong?| |color|
+ |create3Space| |normDeriv2| |rarrow| |basisOfLeftAnnihilator|
+ |lazyIrreducibleFactors| |oddintegers| |quote| |dmp2rfi| |updatF|
+ |viewDeltaYDefault| |rightUnits| |dark| |insertRoot!| |mpsode|
+ |polCase| |parts| |symmetricRemainder| |allRootsOf| |setValue!| *
+ |linearlyDependentOverZ?| |sturmVariationsOf| |SturmHabicht|
+ |exprHasLogarithmicWeights| |OMopenString| |rationalPower| |cyclic|
+ |thenBranch| |jokerMode| |exptMod| |basisOfRightNucloid| |flexible?|
+ |prolateSpheroidal| |universe| |f02xef| |properties| |optimize|
+ |vconcat| |realSolve| |solveInField| |OMreceive| |adaptive3D?| |curry|
+ |domainTemplate| |pr2dmp| |setVariableOrder| |translate| |separant|
+ |setMaxPoints3D| |iicos| |btwFact| |modularGcd| = |eof?|
+ |setImagSteps| |slash| |polar| |expextendedint| |e01bef| |print|
+ |rischNormalize| |mainVariables| |se2rfi| |acotIfCan| |getStream|
+ |intersect| |extractBottom!| |outputMeasure| |normal?| |resolve|
+ |lexTriangular| |operation| |s21baf| |rightTrace| < |cAcsc|
+ |lyndonIfCan| |getMatch| |rootSimp| |ramified?| |univariatePolynomial|
+ |lfextendedint| |firstNumer| |computeBasis| >
+ |semiDegreeSubResultantEuclidean| |normalDeriv| |OMputBind| |solid?|
+ |argument| |c05nbf| |generalizedContinuumHypothesisAssumed?|
+ |outputAsScript| |ramifiedAtInfinity?| <= |screenResolution|
+ |distdfact| |monic?| |normalize| |divideIfCan!| |minPol| |unitNormal|
+ |extractClosed| |coefChoose| >= |d01ajf| |removeCosSq| |ldf2vmf|
+ |explicitlyFinite?| |drawToScale| |completeHensel| |child?| |interval|
+ |powern| |associatorDependence| |isOpen?| |groebnerFactorize| |recip|
+ |squareFreeFactors| |genericPosition| |radicalSolve| |OMreadFile|
+ |scan| |tRange| |contains?| |OMgetEndObject| |atom?| |polygon|
+ |interpret| |intermediateResultsIF| |refine| |readInt32!| |lazyPquo| +
+ |pointColorDefault| |e04dgf| |elaboration| |leftFactor| |branchPoint?|
+ |true| |matrixConcat3D| |triangSolve| |floor| |rur| |any?| - |cn|
+ |numFunEvals| |cardinality| |UnVectorise| |ScanFloatIgnoreSpacesIfCan|
+ |chineseRemainder| |linearlyDependent?| |mantissa|
+ |selectOrPolynomials| / |regime| |trivialIdeal?| |ode2| |reduction|
+ |d02gbf| |inrootof| |coerceListOfPairs| |identityMatrix| |Frobenius|
+ |zag| |upperCase| |s15adf| |radicalEigenvalues| |light| |category|
+ |just| |drawComplex| |roughEqualIdeals?| |cyclotomicFactorization|
+ |nil| |rewriteIdealWithRemainder| |linearDependence| |removeZeroes|
+ |transcendentalDecompose| |cross| |factorsOfDegree| |domain|
+ |expressIdealMember| |SturmHabichtMultiple| |diagonal| |empty|
+ |atanIfCan| |RemainderList| |OMserve| |package| |exponent|
+ |splitNodeOf!| |perfectSquare?| |graphs| |OMgetEndAttr| |someBasis|
+ |inconsistent?| |elseBranch| |red| |shift| |leadingExponent|
+ |ellipticCylindrical| |polyred| |integral| |changeMeasure|
+ |approximate| |redmat| |fortranInteger| |s17acf| |varselect|
+ |mapExpon| |conditionP| |OMgetSymbol| |cosSinInfo| |complex|
+ |coercePreimagesImages| |listOfLists| |basisOfLeftNucleus| |varList|
+ |ffactor| |powmod| |deepCopy| |rk4f| |ParCond| |purelyTranscendental?|
+ |highCommonTerms| |argumentListOf| |pmintegrate| |delta| |overbar|
+ |show| |mdeg| |irreducible?| |newSubProgram| |setEpilogue!|
+ |vectorise| |property| |sumOfKthPowerDivisors| |bothWays| |real?|
+ UP2UTS |radPoly| |quadratic?| |relativeApprox| |padicallyExpand|
+ |setrest!| |irCtor| |completeSmith| |componentUpperBound|
+ |exactQuotient!| |trace| |factorial| |normalizedDivide|
+ |integralLastSubResultant| |midpoint| |remove!| |elementary|
+ |basisOfRightAnnihilator| |c05adf| |retract| |toseSquareFreePart|
+ |leader| |cAsin| |intcompBasis| |closeComponent| |bracket| |units|
+ |semiSubResultantGcdEuclidean2| |capacity| |typeForm| |dAndcExp|
+ |removeDuplicates!| |extendedSubResultantGcd| |scale| |graphState|
+ |transcendent?| |LiePoly| |lambert| |simpson| |getZechTable| |surface|
+ |subResultantChain| |cycleSplit!| |mainExpression| |quickSort|
+ |sylvesterSequence| |processTemplate| |groebSolve| |mainMonomials|
+ |getCode| |idealiserMatrix| |formula| |wholePart| |homogeneous?|
+ |transpose| |listRepresentation| |getGraph| |tablePow| |mulmod|
+ |expPot| |lambda| |Si| |tanh2trigh| |noValueMode| |sup| |log2|
+ |charthRoot| |iisinh| |rightRegularRepresentation|
+ |reducedDiscriminant| |select!| |rootProduct| |monicCompleteDecompose|
+ |mkIntegral| |OMgetError| |code| |pushup| |radicalSimplify| |c06gcf|
+ |e02bef| |setright!| |sncndn| |prindINFO| |product| |lowerCase|
+ |autoReduced?| |perfectNthPower?| |extractIfCan| |xn| |e02baf|
+ |rightOne| |complement| |newReduc| |leadingIndex| |nrows|
+ |discreteLog| |alternatingGroup| |datalist| |identification|
+ |modifyPoint| |s19adf| |axes| |acoshIfCan| |jacobi| |meshPar1Var|
+ |swapRows!| |ncols| |computeCycleEntry| |yCoord|
+ |functionIsFracPolynomial?| |lyndon| |degreePartition| |makeSeries|
+ |inverse| |plus| |isTimes| |hasSolution?| |commaSeparate| |option?|
+ |createPrimitiveNormalPoly| |createNormalPoly| |OMlistSymbols|
+ |patternVariable| |rdHack1| |whileLoop| |list?| |returnType!| |tube|
+ |fTable| |setsubMatrix!| |rootPower| |dom| |makingStats?|
+ |changeThreshhold| |addPoint| |f02adf| |functionIsOscillatory| |imagk|
+ |dn| |quadraticForm| |members| |sum| |numberOfHues| |mapMatrixIfCan|
+ |mix| |prevPrime| |mesh| |polynomial| |socf2socdf|
+ |removeRedundantFactorsInPols| |pdf2df| |extractProperty| |point|
+ |concat!| |neglist| |s13acf| |ocf2ocdf| |enqueue!| |getPickedPoints|
+ |times| |degree| |d01fcf| |resultantEuclidean| |readUInt16!|
+ |directSum| |alphabetic?| |clearFortranOutputStack| |rubiksGroup|
+ |countRealRoots| |symbolTable| |leftCharacteristicPolynomial|
+ |linears| |s13aaf| |high| |truncate| |isConnected?|
+ |wordsForStrongGenerators| |rightZero| |inHallBasis?| |top|
+ |rightMult| |aLinear| |nthFactor| |B1solve| |radicalEigenvector| |lp|
+ |fprindINFO| |systemCommand| |pointSizeDefault| |decomposeFunc|
+ |antisymmetric?| |squareFreePart| |series| |generalInfiniteProduct|
+ |pushFortranOutputStack| |prinpolINFO| |connectTo| |laguerreL|
+ |OMgetAttr| |resultantnaif| |title| |expenseOfEvaluation| |comp|
+ |numberOfOperations| |splitConstant| |s17dgf| |ode|
+ |antisymmetricTensors| |setfirst!| |popFortranOutputStack| |makeEq|
+ |prem| |drawCurves| |fortranLiteral| |c05pbf| |OMputEndObject| |node|
+ |monom| |normalizeAtInfinity| |options| |find| |argscript|
+ |deepExpand| |c06fuf| |continue| |firstSubsetGray| |sort|
+ |incrementKthElement| |FormatArabic| |discriminant| |outputAsFortran|
+ |subresultantVector| |OMputAttr| |normal| |minColIndex|
+ |palgintegrate| |subCase?| |f02aaf| |infix| |e| |lazyPseudoQuotient|
+ |dihedralGroup| |jordanAlgebra?| |f07aef| |pquo|
+ |nextPrimitiveNormalPoly| |LyndonWordsList| |hMonic| |OMputEndError|
+ |commutativeEquality| |min| |list| |atanhIfCan| |numberOfVariables|
+ |rightExtendedGcd| |generalTwoFactor| |readBytes!| |common|
+ |writeBytes!| |string| |wordInStrongGenerators| |airyBi| |palglimint|
+ |stoseInternalLastSubResultant| |car| |constantKernel| |d03edf|
+ |extractPoint| |commonDenominator| |recur| |basisOfLeftNucloid|
+ |primes| |upperCase!| |e01daf| |enterInCache| |random| |cdr|
+ |genericLeftTrace| |twoFactor| |binomThmExpt| |nthr| |character?|
+ |c06gbf| |crushedSet| |terms| |probablyZeroDim?| |symbolTableOf|
+ |setDifference| |linSolve| |getExplanations| |yCoordinates|
+ |startTableInvSet!| |complex?| |brillhartTrials| |pade| |addMatch|
+ |powerSum| |computePowers| |setIntersection| |binary|
+ |fortranCompilerName| |binaryFunction| |s17dcf|
+ |squareFreeLexTriangular| |medialSet| |empty?| |laurentIfCan| |d03eef|
+ |seed| |setUnion| |showTheIFTable| |multiple?| |over| |mirror|
+ |shallowExpand| FG2F |modTree| |definingEquations| |validExponential|
+ |cos2sec| |apply| |pomopo!| |resultant| |f2df| |doubleDisc|
+ |seriesToOutputForm| |forLoop| |eigenvectors| |quotient|
+ |bivariateSLPEBR| |stopTable!| |goto| |shiftLeft| |leftUnit| |s13adf|
+ |arrayStack| |zero| |oblateSpheroidal| |binarySearchTree|
+ |leftExactQuotient| |addMatchRestricted| |cyclicGroup| |size|
+ |infieldIntegrate| |coefficients| |reverseLex| |back| |collectUpper|
+ |numeric| |stirling1| |iiacsch| |purelyAlgebraicLeadingMonomial?|
+ |loopPoints| |width| |tValues| |dimensionOfIrreducibleRepresentation|
+ |normalDenom| |part?| |sec2cos| |submod| |radical| |And|
+ |computeCycleLength| |sortConstraints| |leastAffineMultiple|
+ |ReduceOrder| |figureUnits| |equation| |hexDigit?| |hclf| |precision|
+ |uniform01| |semiResultantEuclidean1| |vector| |duplicates| |Or|
+ |normalizeIfCan| |outputSpacing| |invmultisect|
+ |createLowComplexityNormalBasis| |null?| |makeSketch| |first| |solid|
+ |complexEigenvectors| |po| |differentiate|
+ |solveLinearPolynomialEquationByFractions| |Not|
+ |constantToUnaryFunction| |stopTableGcd!| |userOrdered?|
+ |doubleComplex?| |complexIntegrate| |rest| |prinb| |iExquo| |optpair|
+ |rootDirectory| |limitedint| |idealSimplify| |toseLastSubResultant|
+ |youngGroup| |headReduce| |primeFactor| |lineColorDefault|
+ |substitute| |doubleFloatFormat| |viewWriteAvailable| |tubePoints|
+ |f04atf| |infinite?| |halfExtendedSubResultantGcd1| |iiacot|
+ |factorGroebnerBasis| |seriesSolve| |acothIfCan| |groebner?| |hash|
+ |removeDuplicates| |readInt16!| |elRow1!| |fi2df| |mapGen|
+ |pointColorPalette| |principalAncestors| |perfectNthRoot|
+ |expenseOfEvaluationIF| |showClipRegion| |count| |repeating?|
+ |nonSingularModel| |s17aff| |queue| |hyperelliptic| |mr|
+ |rightDiscriminant| |setprevious!| |sequence| |restorePrecision|
+ |super| |readUInt32!| |perfectSqrt| |name| |optional|
+ |semiSubResultantGcdEuclidean1| |sinh2csch| |charpol|
+ |isAbsolutelyIrreducible?| |toroidal| |callForm?| |writeUInt8!|
+ |LowTriBddDenomInv| |lift| |body| |lazyPremWithDefault| |printInfo!|
+ |clipWithRanges| |karatsubaOnce| |cap| |lowerPolynomial| |alphabetic|
+ |inc| |constantOperator| |bindings| |permanent| |LyndonBasis|
+ |cot2tan| |reduce| |colorDef| |fill!| |semiResultantEuclideannaif|
+ |divergence| |orbits| |indiceSubResultantEuclidean| |setProperties|
+ |typeList| |toseInvertibleSet| |taylorIfCan| |getVariableOrder|
+ |makeViewport3D| |minimize| |airyAi| |f02fjf| |mathieu24| |iiperm|
+ |d02bhf| |leftPower| |OMreadStr| |vedf2vef| |cAtan| |resetBadValues|
+ |henselFact| |numberOfComposites| |graphStates| |leadingBasisTerm|
+ |imagI| |numericalIntegration| |indiceSubResultant| |c02aff|
+ |principalIdeal| |singular?| |generic| |safeCeiling| |removeZero|
+ |shiftRoots| |sdf2lst| |safeFloor| |s15aef| |iiGamma|
+ |supDimElseRittWu?| |f02agf| |typeLists| |movedPoints| |push!| SEGMENT
+ |error| |nextPartition| |distFact| |coHeight| |viewDeltaXDefault|
+ |port| |getDatabase| |nextItem| |ratpart| |any| |testModulus|
+ |topPredicate| |zeroDim?| LODO2FUN |assert| |unvectorise| |tower|
+ |bag| |makeFR| |antiAssociative?| |definingPolynomial| |zerosOf|
+ |create| |iomode| |round| |coth2trigh| |prime| |position!| |lexico|
+ |OMgetEndBVar| |f02aff| |t| |factorials| |quasiMonicPolynomials|
+ |exprToXXP| |besselJ| |makeCrit| |pdct| |halfExtendedResultant2|
+ |addPointLast| |identity| |invertible?| |antiCommutator|
+ |loadNativeModule| |content| |numberOfFactors| |lowerBound| |rotatez|
+ |gethi| |cup| |weierstrass| |genericRightTrace| |e02ajf| |e02adf|
+ |cycleEntry| |notelem| |palgint| |sumOfSquares| |e02bbf| |rightRank|
+ |OMwrite| |f04faf| |square?| |constant| |characteristicPolynomial|
+ |semicolonSeparate| |weights| |UP2ifCan| |complexNumeric| |irForm|
+ |palgRDE| |univcase| |rightTraceMatrix| |critMonD1| |att2Result|
+ |packageCall| |dfRange| |f01rdf| |rangePascalTriangle| |byte|
+ |recolor| |integralCoordinates| |predicate| |squareTop|
+ |numberOfCycles| |explogs2trigs| |rotate!| |reduceBasisAtInfinity|
+ |secIfCan| |headAst| |denomLODE| |sPol| |kernels| |nthExpon| |nthCoef|
+ |getCurve| |randnum| |midpoints| |subscriptedVariables| |backOldPos|
+ |element?| |bubbleSort!| |d01akf| |operator| |contract| |cons| |rk4|
+ |lquo| |internalDecompose| |newTypeLists| |pack!| |compiledFunction|
+ |OMputEndBVar| |algebraicVariables| |branchPointAtInfinity?|
+ |partitions| |setColumn!| |iicoth| |rischDE| |step|
+ |nextIrreduciblePoly| |unparse| |logpart| |errorInfo| |asinIfCan|
+ |univariate| |positive?| |setnext!| |integralBasis| |palgLODE0|
+ |OMgetVariable| |setvalue!| |fracPart| |mainVariable?| |comment|
+ |checkForZero| |qelt| |zeroDimPrimary?| |reflect| |s17akf| |laguerre|
+ |resultantEuclideannaif| |ipow| |s20acf| |isImplies| |integrate|
+ |qsetelt| |iiexp| |Lazard| |approximants| |swap!| |readable?| |s14abf|
+ |linear| |knownInfBasis| |getConstant| |factorList| |OMgetEndBind|
+ |coerce| |iitan| |xRange| |uncouplingMatrices| |factor|
+ |skewSFunction| |cubic| |FormatRoman| |sinhcosh| |int| |rootNormalize|
+ |internal?| |reduced?| |quasiMonic?| |construct|
+ |differentialVariables| |lintgcd| |yRange| |plus!| |sqrt|
+ |LyndonCoordinates| |source| |graeffe| |balancedBinaryTree|
+ |clipBoolean| |anticoord| |sample| |parameters| |zRange| |monomRDE|
+ |readByte!| |real| |leastPower| |curryRight| |iisech| |symbolIfCan|
+ |retractable?| |genericRightDiscriminant|
+ |standardBasisOfCyclicSubmodule| |f01bsf| |poisson| |map!| |bitLength|
+ |yellow| |imag| |sumSquares| |OMgetType| |pile| |SturmHabichtSequence|
+ |write!| |extension| |htrigs| |getMeasure| |length| |qsetelt!| |trigs|
+ |directProduct| |tubePlot| |f02wef| |stoseInvertibleSetsqfreg|
+ |integralMatrix| |subspace| |makeSin| |fglmIfCan| |rightQuotient|
+ |unitVector| |scripts| |laplacian| |pleskenSplit| |mainPrimitivePart|
+ |littleEndian| |mapSolve| |fullDisplay| |plotPolar| |leftAlternative?|
+ |makeGraphImage| |augment| |numberOfDivisors| |brace|
+ |subResultantGcdEuclidean| |mathieu22| |target| |ptree| |getlo|
+ |digits| |simplifyExp| |stronglyReduced?| |powers| |viewPhiDefault|
+ |fortranTypeOf| |lfinfieldint| |s18def| |destruct| |polyRDE|
+ |binomial| |coerceP| |remainder| |rootKerSimp| |selectsecond|
+ |palgextint| |redpps| |scripted?| |repSq| |positiveRemainder| |c06fpf|
+ |invertibleElseSplit?| |interactiveEnv| |anfactor| |kind| |critpOrder|
+ |signAround| |iidprod| |compdegd| |meatAxe| |stoseInvertibleSetreg|
+ |OMputBVar| |headReduced?| |normalise| |expandPower| |op| |countable?|
+ |primextendedint| |factorsOfCyclicGroupSize| |vark| |showArrayValues|
+ |rightRecip| |setStatus| |viewport3D| |iflist2Result| |elements|
+ |qPot| |before?| |composites| |leftOne| |tubeRadiusDefault|
+ |stronglyReduce| |ravel| |monomial| |triangular?| |paraboloidal|
+ |duplicates?| |optAttributes| |sin?| |ratDsolve| |OMencodingUnknown|
+ |stoseSquareFreePart| |weakBiRank| |rangeIsFinite| |iiacoth| |unary?|
+ |sort!| |polyPart| |setScreenResolution| |minIndex| |reshape|
+ |arguments| |sayLength| |var1Steps| |rationalPoint?| |setelt| |trunc|
+ |readLine!| |harmonic| |octon| |getGoodPrime| |double?| |e01baf|
+ |stopMusserTrials| |moreAlgebraic?| |badNum| |abelianGroup|
+ |colorFunction| |sequences| |kroneckerDelta| |patternMatchTimes|
+ |intChoose| |s17dlf| |identitySquareMatrix| |numericalOptimization|
+ |hue| |digamma| |copy| |tanh2coth| |OMputAtp| |iicsc| |integerIfCan|
+ |s17ajf| |aQuadratic| |union| |close!| |mapUnivariateIfCan|
+ |explimitedint| |primextintfrac| |rewriteIdealWithHeadRemainder|
+ |createPrimitiveElement| |writeLine!| |readUInt8!| |linear?| |rank|
+ |OMputEndAtp| |e02dcf| |gderiv| |triangulate| |isOr| |uniform|
+ |cartesian| |singularAtInfinity?| |cAsinh| |blue| |maxrank| |update|
+ |primaryDecomp| |npcoef| |roman| |primPartElseUnitCanonical!|
+ |autoCoerce| |maxdeg| |c06ekf| |freeOf?| |float?| |exQuo| |s18acf|
+ |nonQsign| |laurentRep| |imagJ| |tanAn|
+ |semiLastSubResultantEuclidean| |outputGeneral| |fortranLogical|
+ |complexNormalize| |janko2| |deleteRoutine!| |sizePascalTriangle|
+ |algebraicSort| |stiffnessAndStabilityOfODEIF| |iprint|
+ |totalGroebner| |crest| |tab1| |makeViewport2D|
+ |createIrreduciblePoly| |ideal| |hex| |showTheFTable| |top!|
+ |wronskianMatrix| |Lazard2| |screenResolution3D| |factorOfDegree|
+ |leftRecip| |asinhIfCan| |showTheSymbolTable| |ptFunc| |dequeue!|
+ |cscIfCan| |asechIfCan| |digit?| |maximumExponent| |denominators|
+ |cyclicCopy| |semiIndiceSubResultantEuclidean| |pseudoRemainder|
+ |exprHasWeightCosWXorSinWX| |position| |subNodeOf?| |ode1|
+ |makeVariable| |mkPrim| |internalInfRittWu?| |associative?|
+ |mergeFactors| |gbasis| |c06ebf| |match?| |lists| |torsionIfCan|
+ |rootRadius| |symmetricTensors| |groebner| |leftGcd|
+ |antiCommutative?| |monomial?| |binaryTournament| |exportedOperators|
+ |overlap| |dimensions| |createZechTable| |pastel| |chainSubResultants|
+ |univariate?| |interpretString| |genericLeftNorm| |alternating|
+ |coordinate| |isNot| |simplifyLog| |e01sbf| |mathieu11|
+ |relationsIdeal| |rquo| |bipolar| |associatedSystem| |prime?|
+ |categoryMode| |OMgetBind| |summation| |declare| |findConstructor|
+ |simpleBounds?| |linearAssociatedOrder| |f04asf| |ksec| |failed?|
+ |expt| |curve?| |lSpaceBasis| |univariateSolve| |delete!|
+ |viewPosDefault| |rootBound| |expIfCan| |ignore?| |printCode|
+ |conjugates| |multiplyCoefficients| |epilogue| |limitPlus|
+ |swapColumns!| |clearTheSymbolTable| |f01ref| |atoms| |bernoulliB|
+ |maxColIndex| |entry?| |numberOfImproperPartitions| |f01qef|
+ |normalized?| |arg1| |LazardQuotient| |clipSurface| |rk4a| |iFTable|
+ |setLegalFortranSourceExtensions| |unitsColorDefault| |leadingSupport|
+ |zeroDimensional?| |euclideanGroebner| |dot| |scopes| |traceMatrix|
+ |arg2| |factorSquareFreePolynomial| |sech| |mathieu12| |rightGcd|
+ |aromberg| |indicialEquation| |OMgetFloat| |edf2df| |physicalLength!|
+ |size?| |hcrf| |generalSqFr| |csch| |composite|
+ |createNormalPrimitivePoly| |f04axf| |extend| |contractSolve| |close|
+ |inputBinaryFile| |cAsech| |shanksDiscLogAlgorithm| |quadraticNorm|
+ |conditions| |expandLog| |nextNormalPoly| |asinh| |exprToUPS|
+ |outputForm| |createMultiplicationMatrix| |constant?| |sparsityIF|
+ |extensionDegree| |subtractIfCan| |redPo| |match|
+ |halfExtendedSubResultantGcd2| |acosh| |closed?| |zeroVector| |stop|
+ |fibonacci| |linGenPos| |bumprow| |ODESolve| |display| |radix|
+ |bright| |cylindrical| |clipPointsDefault| |supRittWu?| |atanh|
+ |leadingCoefficientRicDE| |leadingIdeal| |goodPoint| |algebraicOf|
+ |largest| |useNagFunctions| |c06gqf| |rootPoly| |li| |rationalIfCan|
+ |collectQuasiMonic| |genericLeftMinimalPolynomial| |acoth| |s17def|
+ |compBound| |reindex| |dimension| |complexSolve| |shuffle| |asech|
+ |arity| |pair?| |diagonals| |sts2stst| |controlPanel| |chvar|
+ |collectUnder| |subresultantSequence| |ldf2lst|
+ |initializeGroupForWordProblem| |cCoth| |middle| |rootsOf| |subHeight|
+ |completeHermite| |OMencodingSGML| |changeName| |rotatey|
+ |integerBound| |polarCoordinates| |multiple| |OMcloseConn| |presub|
+ |primitiveElement| |karatsuba| |e02dff| |infinityNorm| |nodeOf?|
+ |input| |e04gcf| |iisec| |setClosed| |setButtonValue| |rightNorm|
+ |box| |bat| |applyQuote| |stripCommentsAndBlanks| |simplify| |library|
+ |is?| |aspFilename| |scanOneDimSubspaces| |cycleElt| |var2Steps|
+ |deleteProperty!| |nand| |iifact| |HenselLift| |dequeue|
+ |unrankImproperPartitions0| |sumOfDivisors| |merge!| |frobenius|
+ |padicFraction| |bfKeys| |multMonom| |critT| |testDim| |pole?| |df2mf|
+ |leftDiscriminant| |explicitlyEmpty?| |virtualDegree|
+ |selectNonFiniteRoutines| |extract!| |setLabelValue|
+ |mainCharacterization| |multiset| |ruleset| |leftZero|
+ |basisOfMiddleNucleus| |repeatUntilLoop| |updatD| |patternMatch|
+ |prepareSubResAlgo| |curveColor| |rotate| |s17adf| |Hausdorff|
+ |f02aef| |pol| |bernoulli| |set| |getMultiplicationTable| |f02axf|
+ |outputFloating| |axesColorDefault| |imaginary| |setOfMinN|
+ |basisOfCenter| |expintfldpoly| |test| |countRealRootsMultiple|
+ |eisensteinIrreducible?| |matrixGcd| |id| |rightMinimalPolynomial|
+ |ListOfTerms| |decimal| |linearAssociatedExp| |exponential1|
+ |halfExtendedResultant1| |suchThat| |subTriSet?| |sincos| |split!|
+ |localIntegralBasis| |putProperties| |unmakeSUP| |latex| |integer?|
+ |expint| |setCondition!| |leftMinimalPolynomial|
+ |irreducibleRepresentation| |reify| |shellSort| |table| |inR?|
+ |linearMatrix| |selectMultiDimensionalRoutines| |constantOpIfCan|
+ |eulerPhi| |leftUnits| |OMgetString| |subst| |lazy?| |insert| |new|
+ |sqfree| |split| |setAdaptive| |smith| |calcRanges| |obj|
+ |OMParseError?| |splitDenominator| |nullSpace| |reducedForm| |isMult|
+ |moebiusMu| |outlineRender| |solve1| |eq| |palglimint0| |prefix|
+ |inverseIntegralMatrix| |cache| |makeYoungTableau| |closedCurve|
+ |f2st| |edf2fi| |iter| |ridHack1| |e04fdf| |adaptive?| |eigenvalues|
+ |d03faf| |besselK| |sin2csc| |zeroMatrix| |delete| |rowEchelon| |sh|
+ |signature| |hasTopPredicate?| |clip| |sizeMultiplication|
+ |radicalRoots| GF2FG |node?| |expintegrate| |order| |localReal?|
+ |rightPower| |rightFactorCandidate| |logical?| |front|
+ |var2StepsDefault| |f04jgf| |rightCharacteristicPolynomial| |one?|
+ |mathieu23| |modularFactor| |parent| |modifyPointData| |specialTrigs|
+ |scaleRoots| |lazyPseudoRemainder| |entries| |conjunction| |objects|
+ |useEisensteinCriterion| |exactQuotient|
+ |rewriteSetByReducingWithParticularGenerators| |oddInfiniteProduct|
+ |leftMult| |powerAssociative?| |tanhIfCan| |directory| |wholeRadix|
+ |base| |script| |rightAlternative?| |imports| |lowerCase?| |hasoln|
+ |pointColor| |pushucoef| |rischDEsys| |parseString| |attributeData|
+ |module| |s18adf| |rational?| |tryFunctionalDecomposition|
+ |singleFactorBound| |nor| |cPower| |divide| |retractIfCan| |cExp|
+ |leftQuotient| |isOp| |monicRightDivide| |selectSumOfSquaresRoutines|
+ |flatten| |limit| |viewSizeDefault| |exp| |deepestInitial| |shufflein|
+ |chiSquare1| |trim| |alphanumeric| |complexEigenvalues| |tex|
+ |cRationalPower| |nil?| |left| |numer| |finiteBound| |reduceLODE|
+ |cschIfCan| |OMgetEndError| |/\\| |whatInfinity| |s21bbf|
+ |boundOfCauchy| |chebyshevT| |rspace| |qroot| |right| |outputList|
+ |denom| |radicalOfLeftTraceForm| |isExpt| |isAnd| |rCoord|
+ |printingInfo?| |\\/| |e02akf| |e01sef| |coshIfCan| |debug3D| |green|
+ |subset?| |setPoly| |withPredicates| |denominator| |sorted?| |nil|
+ |infinite| |arbitraryExponent| |approximate| |complex|
|shallowMutable| |canonical| |noetherian| |central|
|partiallyOrderedSet| |arbitraryPrecision| |canonicalsClosed|
|noZeroDivisors| |rightUnitary| |leftUnitary| |additiveValuation|
diff --git a/src/share/algebra/interp.daase b/src/share/algebra/interp.daase
index ef2d1fc3..4c91cb0c 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,317 +1,317 @@
-(3228209 . 3480528397)
-((-4254 (((-112) (-1 (-112) |#2| |#2|) $) 87) (((-112) $) NIL)) (-3239 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-3895 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-1243 (-570)) |#2|) 44)) (-2697 (($ $) 81)) (-3529 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $) 49)) (-3998 (((-570) (-1 (-112) |#2|) $) 27) (((-570) |#2| $) NIL) (((-570) |#2| $ (-570)) 97)) (-2836 (((-650 |#2|) $) 13)) (-3068 (($ (-1 (-112) |#2| |#2|) $ $) 64) (($ $ $) NIL)) (-3776 (($ (-1 |#2| |#2|) $) 37)) (-1351 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 60)) (-4285 (($ |#2| $ (-570)) NIL) (($ $ $ (-570)) 67)) (-3321 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 29)) (-1671 (((-112) (-1 (-112) |#2|) $) 23)) (-1876 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL) (($ $ (-1243 (-570))) 66)) (-4320 (($ $ (-570)) 76) (($ $ (-1243 (-570))) 75)) (-3486 (((-777) (-1 (-112) |#2|) $) 34) (((-777) |#2| $) NIL)) (-1806 (($ $ $ (-570)) 69)) (-3915 (($ $) 68)) (-3748 (($ (-650 |#2|)) 73)) (-2439 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 88) (($ (-650 $)) 86)) (-3735 (((-868) $) 93)) (-4368 (((-112) (-1 (-112) |#2|) $) 22)) (-2872 (((-112) $ $) 96)) (-2894 (((-112) $ $) 100)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -3239 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2697 (|#1| |#1|)) (-15 -1806 (|#1| |#1| |#1| (-570))) (-15 -4254 ((-112) |#1|)) (-15 -3068 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4254 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3068 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3895 (|#2| |#1| (-1243 (-570)) |#2|)) (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1243 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -3321 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1876 (|#2| |#1| (-570))) (-15 -1876 (|#2| |#1| (-570) |#2|)) (-15 -3895 (|#2| |#1| (-570) |#2|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -2836 ((-650 |#2|) |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3915 (|#1| |#1|))) (-19 |#2|) (-1226)) (T -18))
+(3228641 . 3480551199)
+((-4429 (((-112) (-1 (-112) |#2| |#2|) $) 87) (((-112) $) NIL)) (-3885 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-3894 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-1244 (-570)) |#2|) 44)) (-2347 (($ $) 81)) (-3529 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $) 49)) (-3998 (((-570) (-1 (-112) |#2|) $) 27) (((-570) |#2| $) NIL) (((-570) |#2| $ (-570)) 97)) (-2835 (((-650 |#2|) $) 13)) (-2727 (($ (-1 (-112) |#2| |#2|) $ $) 64) (($ $ $) NIL)) (-3776 (($ (-1 |#2| |#2|) $) 37)) (-1352 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 60)) (-4286 (($ |#2| $ (-570)) NIL) (($ $ $ (-570)) 67)) (-3281 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 29)) (-2697 (((-112) (-1 (-112) |#2|) $) 23)) (-1877 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL) (($ $ (-1244 (-570))) 66)) (-4320 (($ $ (-570)) 76) (($ $ (-1244 (-570))) 75)) (-3490 (((-777) (-1 (-112) |#2|) $) 34) (((-777) |#2| $) NIL)) (-1523 (($ $ $ (-570)) 69)) (-3916 (($ $) 68)) (-3749 (($ (-650 |#2|)) 73)) (-2439 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 88) (($ (-650 $)) 86)) (-3735 (((-868) $) 93)) (-2964 (((-112) (-1 (-112) |#2|) $) 22)) (-2872 (((-112) $ $) 96)) (-2894 (((-112) $ $) 100)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3885 (|#1| |#1|)) (-15 -3885 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2347 (|#1| |#1|)) (-15 -1523 (|#1| |#1| |#1| (-570))) (-15 -4429 ((-112) |#1|)) (-15 -2727 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4429 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2727 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3894 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1244 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -3281 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1877 (|#2| |#1| (-570))) (-15 -1877 (|#2| |#1| (-570) |#2|)) (-15 -3894 (|#2| |#1| (-570) |#2|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -2835 ((-650 |#2|) |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3916 (|#1| |#1|))) (-19 |#2|) (-1227)) (T -18))
NIL
-(-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -3239 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2697 (|#1| |#1|)) (-15 -1806 (|#1| |#1| |#1| (-570))) (-15 -4254 ((-112) |#1|)) (-15 -3068 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4254 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3068 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3895 (|#2| |#1| (-1243 (-570)) |#2|)) (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1243 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -3321 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1876 (|#2| |#1| (-570))) (-15 -1876 (|#2| |#1| (-570) |#2|)) (-15 -3895 (|#2| |#1| (-570) |#2|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -2836 ((-650 |#2|) |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3915 (|#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4449))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2697 (($ $) 91 (|has| $ (-6 -4449)))) (-2258 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 88 (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1952 (($ $ |#1|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1243 (-570))) 64)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 92 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2913 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-19 |#1|) (-141) (-1226)) (T -19))
+(-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3885 (|#1| |#1|)) (-15 -3885 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2347 (|#1| |#1|)) (-15 -1523 (|#1| |#1| |#1| (-570))) (-15 -4429 ((-112) |#1|)) (-15 -2727 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4429 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2727 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3894 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1244 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -3281 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1877 (|#2| |#1| (-570))) (-15 -1877 (|#2| |#1| (-570) |#2|)) (-15 -3894 (|#2| |#1| (-570) |#2|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -2835 ((-650 |#2|) |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3916 (|#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-2347 (($ $) 91 (|has| $ (-6 -4450)))) (-2261 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 88 (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3531 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2914 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-19 |#1|) (-141) (-1227)) (T -19))
NIL
-(-13 (-378 |t#1|) (-10 -7 (-6 -4449)))
-(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1226) . T))
-((-3596 (((-3 $ "failed") $ $) 12)) (-2965 (($ $) NIL) (($ $ $) 9)) (* (($ (-928) $) NIL) (($ (-777) $) 16) (($ (-570) $) 26)))
-(((-20 |#1|) (-10 -8 (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3596 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-21)) (T -20))
+(-13 (-378 |t#1|) (-10 -7 (-6 -4450)))
+(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
+((-4119 (((-3 $ "failed") $ $) 12)) (-2965 (($ $) NIL) (($ $ $) 9)) (* (($ (-928) $) NIL) (($ (-777) $) 16) (($ (-570) $) 26)))
+(((-20 |#1|) (-10 -8 (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -4119 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3596 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
+(-10 -8 (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -4119 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
(((-21) (-141)) (T -21))
((-2965 (*1 *1 *1) (-4 *1 (-21))) (-2965 (*1 *1 *1 *1) (-4 *1 (-21))))
(-13 (-132) (-652 (-570)) (-10 -8 (-15 -2965 ($ $)) (-15 -2965 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-1109) . T))
-((-4028 (((-112) $) 10)) (-2450 (($) 15)) (* (($ (-928) $) 14) (($ (-777) $) 19)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -4028 ((-112) |#1|)) (-15 -2450 (|#1|)) (-15 * (|#1| (-928) |#1|))) (-23)) (T -22))
+((-2745 (((-112) $) 10)) (-3761 (($) 15)) (* (($ (-928) $) 14) (($ (-777) $) 19)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -2745 ((-112) |#1|)) (-15 -3761 (|#1|)) (-15 * (|#1| (-928) |#1|))) (-23)) (T -22))
NIL
-(-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -4028 ((-112) |#1|)) (-15 -2450 (|#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+(-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -2745 ((-112) |#1|)) (-15 -3761 (|#1|)) (-15 * (|#1| (-928) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-23) (-141)) (T -23))
-((-1812 (*1 *1) (-4 *1 (-23))) (-2450 (*1 *1) (-4 *1 (-23))) (-4028 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-777)))))
-(-13 (-25) (-10 -8 (-15 (-1812) ($) -3640) (-15 -2450 ($) -3640) (-15 -4028 ((-112) $)) (-15 * ($ (-777) $))))
+((-1814 (*1 *1) (-4 *1 (-23))) (-3761 (*1 *1) (-4 *1 (-23))) (-2745 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-777)))))
+(-13 (-25) (-10 -8 (-15 (-1814) ($) -3640) (-15 -3761 ($) -3640) (-15 -2745 ((-112) $)) (-15 * ($ (-777) $))))
(((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
((* (($ (-928) $) 10)))
(((-24 |#1|) (-10 -8 (-15 * (|#1| (-928) |#1|))) (-25)) (T -24))
NIL
(-10 -8 (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14)))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14)))
(((-25) (-141)) (T -25))
-((-2954 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-928)))))
-(-13 (-1109) (-10 -8 (-15 -2954 ($ $ $)) (-15 * ($ (-928) $))))
+((-2953 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-928)))))
+(-13 (-1109) (-10 -8 (-15 -2953 ($ $ $)) (-15 * ($ (-928) $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3028 (((-650 $) (-959 $)) 32) (((-650 $) (-1182 $)) 16) (((-650 $) (-1182 $) (-1186)) 20)) (-1723 (($ (-959 $)) 30) (($ (-1182 $)) 11) (($ (-1182 $) (-1186)) 60)) (-2492 (((-650 $) (-959 $)) 33) (((-650 $) (-1182 $)) 18) (((-650 $) (-1182 $) (-1186)) 19)) (-4143 (($ (-959 $)) 31) (($ (-1182 $)) 13) (($ (-1182 $) (-1186)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -3028 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3028 ((-650 |#1|) (-1182 |#1|))) (-15 -3028 ((-650 |#1|) (-959 |#1|))) (-15 -1723 (|#1| (-1182 |#1|) (-1186))) (-15 -1723 (|#1| (-1182 |#1|))) (-15 -1723 (|#1| (-959 |#1|))) (-15 -2492 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2492 ((-650 |#1|) (-1182 |#1|))) (-15 -2492 ((-650 |#1|) (-959 |#1|))) (-15 -4143 (|#1| (-1182 |#1|) (-1186))) (-15 -4143 (|#1| (-1182 |#1|))) (-15 -4143 (|#1| (-959 |#1|)))) (-27)) (T -26))
+((-3598 (((-650 $) (-959 $)) 32) (((-650 $) (-1182 $)) 16) (((-650 $) (-1182 $) (-1186)) 20)) (-2041 (($ (-959 $)) 30) (($ (-1182 $)) 11) (($ (-1182 $) (-1186)) 60)) (-4170 (((-650 $) (-959 $)) 33) (((-650 $) (-1182 $)) 18) (((-650 $) (-1182 $) (-1186)) 19)) (-1480 (($ (-959 $)) 31) (($ (-1182 $)) 13) (($ (-1182 $) (-1186)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -3598 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3598 ((-650 |#1|) (-1182 |#1|))) (-15 -3598 ((-650 |#1|) (-959 |#1|))) (-15 -2041 (|#1| (-1182 |#1|) (-1186))) (-15 -2041 (|#1| (-1182 |#1|))) (-15 -2041 (|#1| (-959 |#1|))) (-15 -4170 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -4170 ((-650 |#1|) (-1182 |#1|))) (-15 -4170 ((-650 |#1|) (-959 |#1|))) (-15 -1480 (|#1| (-1182 |#1|) (-1186))) (-15 -1480 (|#1| (-1182 |#1|))) (-15 -1480 (|#1| (-959 |#1|)))) (-27)) (T -26))
NIL
-(-10 -8 (-15 -3028 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3028 ((-650 |#1|) (-1182 |#1|))) (-15 -3028 ((-650 |#1|) (-959 |#1|))) (-15 -1723 (|#1| (-1182 |#1|) (-1186))) (-15 -1723 (|#1| (-1182 |#1|))) (-15 -1723 (|#1| (-959 |#1|))) (-15 -2492 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2492 ((-650 |#1|) (-1182 |#1|))) (-15 -2492 ((-650 |#1|) (-959 |#1|))) (-15 -4143 (|#1| (-1182 |#1|) (-1186))) (-15 -4143 (|#1| (-1182 |#1|))) (-15 -4143 (|#1| (-959 |#1|))))
-((-2416 (((-112) $ $) 7)) (-3028 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86)) (-1723 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-3753 (($ $) 100)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-2492 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92)) (-4143 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-1552 (((-112) $) 79)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 99)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 98)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+(-10 -8 (-15 -3598 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3598 ((-650 |#1|) (-1182 |#1|))) (-15 -3598 ((-650 |#1|) (-959 |#1|))) (-15 -2041 (|#1| (-1182 |#1|) (-1186))) (-15 -2041 (|#1| (-1182 |#1|))) (-15 -2041 (|#1| (-959 |#1|))) (-15 -4170 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -4170 ((-650 |#1|) (-1182 |#1|))) (-15 -4170 ((-650 |#1|) (-959 |#1|))) (-15 -1480 (|#1| (-1182 |#1|) (-1186))) (-15 -1480 (|#1| (-1182 |#1|))) (-15 -1480 (|#1| (-959 |#1|))))
+((-2417 (((-112) $ $) 7)) (-3598 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86)) (-2041 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-3754 (($ $) 100)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-4170 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92)) (-1480 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4037 (((-112) $) 79)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 99)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 98)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-27) (-141)) (T -27))
-((-4143 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-4143 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-4143 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-2492 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2492 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2492 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-1723 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-1723 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-1723 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-3028 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-3028 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-3028 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27)) (-5 *2 (-650 *1)))))
-(-13 (-368) (-1011) (-10 -8 (-15 -4143 ($ (-959 $))) (-15 -4143 ($ (-1182 $))) (-15 -4143 ($ (-1182 $) (-1186))) (-15 -2492 ((-650 $) (-959 $))) (-15 -2492 ((-650 $) (-1182 $))) (-15 -2492 ((-650 $) (-1182 $) (-1186))) (-15 -1723 ($ (-959 $))) (-15 -1723 ($ (-1182 $))) (-15 -1723 ($ (-1182 $) (-1186))) (-15 -3028 ((-650 $) (-959 $))) (-15 -3028 ((-650 $) (-1182 $))) (-15 -3028 ((-650 $) (-1182 $) (-1186)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1011) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-3028 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 55) (((-650 $) $) 22) (((-650 $) $ (-1186)) 46)) (-1723 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) 57) (($ $) 20) (($ $ (-1186)) 40)) (-2492 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 53) (((-650 $) $) 18) (((-650 $) $ (-1186)) 48)) (-4143 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) NIL) (($ $) 15) (($ $ (-1186)) 42)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -3028 ((-650 |#1|) |#1| (-1186))) (-15 -1723 (|#1| |#1| (-1186))) (-15 -3028 ((-650 |#1|) |#1|)) (-15 -1723 (|#1| |#1|)) (-15 -2492 ((-650 |#1|) |#1| (-1186))) (-15 -4143 (|#1| |#1| (-1186))) (-15 -2492 ((-650 |#1|) |#1|)) (-15 -4143 (|#1| |#1|)) (-15 -3028 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3028 ((-650 |#1|) (-1182 |#1|))) (-15 -3028 ((-650 |#1|) (-959 |#1|))) (-15 -1723 (|#1| (-1182 |#1|) (-1186))) (-15 -1723 (|#1| (-1182 |#1|))) (-15 -1723 (|#1| (-959 |#1|))) (-15 -2492 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2492 ((-650 |#1|) (-1182 |#1|))) (-15 -2492 ((-650 |#1|) (-959 |#1|))) (-15 -4143 (|#1| (-1182 |#1|) (-1186))) (-15 -4143 (|#1| (-1182 |#1|))) (-15 -4143 (|#1| (-959 |#1|)))) (-29 |#2|) (-562)) (T -28))
-NIL
-(-10 -8 (-15 -3028 ((-650 |#1|) |#1| (-1186))) (-15 -1723 (|#1| |#1| (-1186))) (-15 -3028 ((-650 |#1|) |#1|)) (-15 -1723 (|#1| |#1|)) (-15 -2492 ((-650 |#1|) |#1| (-1186))) (-15 -4143 (|#1| |#1| (-1186))) (-15 -2492 ((-650 |#1|) |#1|)) (-15 -4143 (|#1| |#1|)) (-15 -3028 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3028 ((-650 |#1|) (-1182 |#1|))) (-15 -3028 ((-650 |#1|) (-959 |#1|))) (-15 -1723 (|#1| (-1182 |#1|) (-1186))) (-15 -1723 (|#1| (-1182 |#1|))) (-15 -1723 (|#1| (-959 |#1|))) (-15 -2492 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2492 ((-650 |#1|) (-1182 |#1|))) (-15 -2492 ((-650 |#1|) (-959 |#1|))) (-15 -4143 (|#1| (-1182 |#1|) (-1186))) (-15 -4143 (|#1| (-1182 |#1|))) (-15 -4143 (|#1| (-959 |#1|))))
-((-2416 (((-112) $ $) 7)) (-3028 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86) (((-650 $) $) 134) (((-650 $) $ (-1186)) 132)) (-1723 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89) (($ $) 135) (($ $ (-1186)) 133)) (-4028 (((-112) $) 17)) (-1716 (((-650 (-1186)) $) 203)) (-3703 (((-413 (-1182 $)) $ (-618 $)) 235 (|has| |#1| (-562)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3593 (((-650 (-618 $)) $) 166)) (-3596 (((-3 $ "failed") $ $) 20)) (-4283 (($ $ (-650 (-618 $)) (-650 $)) 156) (($ $ (-650 (-298 $))) 155) (($ $ (-298 $)) 154)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-3753 (($ $) 100)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-2492 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92) (((-650 $) $) 138) (((-650 $) $ (-1186)) 136)) (-4143 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95) (($ $) 139) (($ $ (-1186)) 137)) (-4378 (((-3 (-959 |#1|) "failed") $) 253 (|has| |#1| (-1058))) (((-3 (-413 (-959 |#1|)) "failed") $) 237 (|has| |#1| (-562))) (((-3 |#1| "failed") $) 199) (((-3 (-570) "failed") $) 196 (|has| |#1| (-1047 (-570)))) (((-3 (-1186) "failed") $) 190) (((-3 (-618 $) "failed") $) 141) (((-3 (-413 (-570)) "failed") $) 130 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 (((-959 |#1|) $) 252 (|has| |#1| (-1058))) (((-413 (-959 |#1|)) $) 236 (|has| |#1| (-562))) ((|#1| $) 198) (((-570) $) 197 (|has| |#1| (-1047 (-570)))) (((-1186) $) 189) (((-618 $) $) 140) (((-413 (-570)) $) 131 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2372 (($ $ $) 61)) (-4177 (((-695 |#1|) (-695 $)) 243 (|has| |#1| (-1058))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 242 (|has| |#1| (-1058))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 129 (-2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (((-695 (-570)) (-695 $)) 128 (-2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-1552 (((-112) $) 79)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 195 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 194 (|has| |#1| (-893 (-570))))) (-2268 (($ (-650 $)) 160) (($ $) 159)) (-4190 (((-650 (-115)) $) 167)) (-3680 (((-115) (-115)) 168)) (-2081 (((-112) $) 35)) (-3431 (((-112) $) 188 (|has| $ (-1047 (-570))))) (-3195 (($ $) 220 (|has| |#1| (-1058)))) (-4398 (((-1134 |#1| (-618 $)) $) 219 (|has| |#1| (-1058)))) (-2598 (($ $ (-570)) 99)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1646 (((-1182 $) (-618 $)) 185 (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) 174)) (-3399 (((-3 (-618 $) "failed") $) 164)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3669 (((-650 (-618 $)) $) 165)) (-1360 (($ (-115) (-650 $)) 173) (($ (-115) $) 172)) (-1596 (((-3 (-650 $) "failed") $) 214 (|has| |#1| (-1121)))) (-3366 (((-3 (-2 (|:| |val| $) (|:| -1907 (-570))) "failed") $) 223 (|has| |#1| (-1058)))) (-3751 (((-3 (-650 $) "failed") $) 216 (|has| |#1| (-25)))) (-2828 (((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 $))) "failed") $) 217 (|has| |#1| (-25)))) (-3496 (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-1186)) 222 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-115)) 221 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $) 215 (|has| |#1| (-1121)))) (-1566 (((-112) $ (-1186)) 171) (((-112) $ (-115)) 170)) (-1825 (($ $) 78)) (-1434 (((-777) $) 163)) (-3479 (((-1129) $) 11)) (-1834 (((-112) $) 201)) (-1842 ((|#1| $) 202)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3247 (((-112) $ (-1186)) 176) (((-112) $ $) 175)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1322 (((-112) $) 187 (|has| $ (-1047 (-570))))) (-1730 (($ $ (-1186) (-777) (-1 $ $)) 227 (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ (-650 $))) 226 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 225 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 224 (|has| |#1| (-1058))) (($ $ (-650 (-115)) (-650 $) (-1186)) 213 (|has| |#1| (-620 (-542)))) (($ $ (-115) $ (-1186)) 212 (|has| |#1| (-620 (-542)))) (($ $) 211 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186))) 210 (|has| |#1| (-620 (-542)))) (($ $ (-1186)) 209 (|has| |#1| (-620 (-542)))) (($ $ (-115) (-1 $ $)) 184) (($ $ (-115) (-1 $ (-650 $))) 183) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 182) (($ $ (-650 (-115)) (-650 (-1 $ $))) 181) (($ $ (-1186) (-1 $ $)) 180) (($ $ (-1186) (-1 $ (-650 $))) 179) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 178) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 177) (($ $ (-650 $) (-650 $)) 148) (($ $ $ $) 147) (($ $ (-298 $)) 146) (($ $ (-650 (-298 $))) 145) (($ $ (-650 (-618 $)) (-650 $)) 144) (($ $ (-618 $) $) 143)) (-2272 (((-777) $) 64)) (-1876 (($ (-115) (-650 $)) 153) (($ (-115) $ $ $ $) 152) (($ (-115) $ $ $) 151) (($ (-115) $ $) 150) (($ (-115) $) 149)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-3760 (($ $ $) 162) (($ $) 161)) (-3447 (($ $ (-1186)) 251 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 250 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 249 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) 248 (|has| |#1| (-1058)))) (-1418 (($ $) 230 (|has| |#1| (-562)))) (-4412 (((-1134 |#1| (-618 $)) $) 229 (|has| |#1| (-562)))) (-2886 (($ $) 186 (|has| $ (-1058)))) (-1416 (((-542) $) 257 (|has| |#1| (-620 (-542)))) (($ (-424 $)) 228 (|has| |#1| (-562))) (((-899 (-384)) $) 193 (|has| |#1| (-620 (-899 (-384))))) (((-899 (-570)) $) 192 (|has| |#1| (-620 (-899 (-570)))))) (-3684 (($ $ $) 256 (|has| |#1| (-479)))) (-3688 (($ $ $) 255 (|has| |#1| (-479)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-959 |#1|)) 254 (|has| |#1| (-1058))) (($ (-413 (-959 |#1|))) 238 (|has| |#1| (-562))) (($ (-413 (-959 (-413 |#1|)))) 234 (|has| |#1| (-562))) (($ (-959 (-413 |#1|))) 233 (|has| |#1| (-562))) (($ (-413 |#1|)) 232 (|has| |#1| (-562))) (($ (-1134 |#1| (-618 $))) 218 (|has| |#1| (-1058))) (($ |#1|) 200) (($ (-1186)) 191) (($ (-618 $)) 142)) (-1918 (((-3 $ "failed") $) 241 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-4192 (($ (-650 $)) 158) (($ $) 157)) (-2004 (((-112) (-115)) 169)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-4191 (($ (-1186) (-650 $)) 208) (($ (-1186) $ $ $ $) 207) (($ (-1186) $ $ $) 206) (($ (-1186) $ $) 205) (($ (-1186) $) 204)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1186)) 247 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 246 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 245 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) 244 (|has| |#1| (-1058)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73) (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 231 (|has| |#1| (-562)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 98)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 240 (|has| |#1| (-174))) (($ |#1| $) 239 (|has| |#1| (-174)))))
+((-1480 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-1480 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-1480 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-4170 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-4170 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-4170 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2041 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-2041 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-2041 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-3598 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-3598 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-3598 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27)) (-5 *2 (-650 *1)))))
+(-13 (-368) (-1011) (-10 -8 (-15 -1480 ($ (-959 $))) (-15 -1480 ($ (-1182 $))) (-15 -1480 ($ (-1182 $) (-1186))) (-15 -4170 ((-650 $) (-959 $))) (-15 -4170 ((-650 $) (-1182 $))) (-15 -4170 ((-650 $) (-1182 $) (-1186))) (-15 -2041 ($ (-959 $))) (-15 -2041 ($ (-1182 $))) (-15 -2041 ($ (-1182 $) (-1186))) (-15 -3598 ((-650 $) (-959 $))) (-15 -3598 ((-650 $) (-1182 $))) (-15 -3598 ((-650 $) (-1182 $) (-1186)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1011) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-3598 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 55) (((-650 $) $) 22) (((-650 $) $ (-1186)) 46)) (-2041 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) 57) (($ $) 20) (($ $ (-1186)) 40)) (-4170 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 53) (((-650 $) $) 18) (((-650 $) $ (-1186)) 48)) (-1480 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) NIL) (($ $) 15) (($ $ (-1186)) 42)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -3598 ((-650 |#1|) |#1| (-1186))) (-15 -2041 (|#1| |#1| (-1186))) (-15 -3598 ((-650 |#1|) |#1|)) (-15 -2041 (|#1| |#1|)) (-15 -4170 ((-650 |#1|) |#1| (-1186))) (-15 -1480 (|#1| |#1| (-1186))) (-15 -4170 ((-650 |#1|) |#1|)) (-15 -1480 (|#1| |#1|)) (-15 -3598 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3598 ((-650 |#1|) (-1182 |#1|))) (-15 -3598 ((-650 |#1|) (-959 |#1|))) (-15 -2041 (|#1| (-1182 |#1|) (-1186))) (-15 -2041 (|#1| (-1182 |#1|))) (-15 -2041 (|#1| (-959 |#1|))) (-15 -4170 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -4170 ((-650 |#1|) (-1182 |#1|))) (-15 -4170 ((-650 |#1|) (-959 |#1|))) (-15 -1480 (|#1| (-1182 |#1|) (-1186))) (-15 -1480 (|#1| (-1182 |#1|))) (-15 -1480 (|#1| (-959 |#1|)))) (-29 |#2|) (-562)) (T -28))
+NIL
+(-10 -8 (-15 -3598 ((-650 |#1|) |#1| (-1186))) (-15 -2041 (|#1| |#1| (-1186))) (-15 -3598 ((-650 |#1|) |#1|)) (-15 -2041 (|#1| |#1|)) (-15 -4170 ((-650 |#1|) |#1| (-1186))) (-15 -1480 (|#1| |#1| (-1186))) (-15 -4170 ((-650 |#1|) |#1|)) (-15 -1480 (|#1| |#1|)) (-15 -3598 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -3598 ((-650 |#1|) (-1182 |#1|))) (-15 -3598 ((-650 |#1|) (-959 |#1|))) (-15 -2041 (|#1| (-1182 |#1|) (-1186))) (-15 -2041 (|#1| (-1182 |#1|))) (-15 -2041 (|#1| (-959 |#1|))) (-15 -4170 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -4170 ((-650 |#1|) (-1182 |#1|))) (-15 -4170 ((-650 |#1|) (-959 |#1|))) (-15 -1480 (|#1| (-1182 |#1|) (-1186))) (-15 -1480 (|#1| (-1182 |#1|))) (-15 -1480 (|#1| (-959 |#1|))))
+((-2417 (((-112) $ $) 7)) (-3598 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86) (((-650 $) $) 134) (((-650 $) $ (-1186)) 132)) (-2041 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89) (($ $) 135) (($ $ (-1186)) 133)) (-2745 (((-112) $) 17)) (-1713 (((-650 (-1186)) $) 203)) (-3702 (((-413 (-1182 $)) $ (-618 $)) 235 (|has| |#1| (-562)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-3593 (((-650 (-618 $)) $) 166)) (-4119 (((-3 $ "failed") $ $) 20)) (-4284 (($ $ (-650 (-618 $)) (-650 $)) 156) (($ $ (-650 (-298 $))) 155) (($ $ (-298 $)) 154)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-3754 (($ $) 100)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-4170 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92) (((-650 $) $) 138) (((-650 $) $ (-1186)) 136)) (-1480 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95) (($ $) 139) (($ $ (-1186)) 137)) (-4379 (((-3 (-959 |#1|) "failed") $) 253 (|has| |#1| (-1058))) (((-3 (-413 (-959 |#1|)) "failed") $) 237 (|has| |#1| (-562))) (((-3 |#1| "failed") $) 199) (((-3 (-570) "failed") $) 196 (|has| |#1| (-1047 (-570)))) (((-3 (-1186) "failed") $) 190) (((-3 (-618 $) "failed") $) 141) (((-3 (-413 (-570)) "failed") $) 130 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 (((-959 |#1|) $) 252 (|has| |#1| (-1058))) (((-413 (-959 |#1|)) $) 236 (|has| |#1| (-562))) ((|#1| $) 198) (((-570) $) 197 (|has| |#1| (-1047 (-570)))) (((-1186) $) 189) (((-618 $) $) 140) (((-413 (-570)) $) 131 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2372 (($ $ $) 61)) (-1836 (((-695 |#1|) (-695 $)) 243 (|has| |#1| (-1058))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 242 (|has| |#1| (-1058))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 129 (-2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (((-695 (-570)) (-695 $)) 128 (-2740 (-1765 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4037 (((-112) $) 79)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 195 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 194 (|has| |#1| (-893 (-570))))) (-2506 (($ (-650 $)) 160) (($ $) 159)) (-1941 (((-650 (-115)) $) 167)) (-3680 (((-115) (-115)) 168)) (-4340 (((-112) $) 35)) (-1958 (((-112) $) 188 (|has| $ (-1047 (-570))))) (-1607 (($ $) 220 (|has| |#1| (-1058)))) (-4399 (((-1134 |#1| (-618 $)) $) 219 (|has| |#1| (-1058)))) (-2665 (($ $ (-570)) 99)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-2462 (((-1182 $) (-618 $)) 185 (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) 174)) (-2814 (((-3 (-618 $) "failed") $) 164)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3669 (((-650 (-618 $)) $) 165)) (-1361 (($ (-115) (-650 $)) 173) (($ (-115) $) 172)) (-3176 (((-3 (-650 $) "failed") $) 214 (|has| |#1| (-1121)))) (-2499 (((-3 (-2 (|:| |val| $) (|:| -3011 (-570))) "failed") $) 223 (|has| |#1| (-1058)))) (-1955 (((-3 (-650 $) "failed") $) 216 (|has| |#1| (-25)))) (-4298 (((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 $))) "failed") $) 217 (|has| |#1| (-25)))) (-4415 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-1186)) 222 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-115)) 221 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $) 215 (|has| |#1| (-1121)))) (-4198 (((-112) $ (-1186)) 171) (((-112) $ (-115)) 170)) (-1826 (($ $) 78)) (-1435 (((-777) $) 163)) (-3479 (((-1129) $) 11)) (-1835 (((-112) $) 201)) (-1846 ((|#1| $) 202)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3953 (((-112) $ (-1186)) 176) (((-112) $ $) 175)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1739 (((-112) $) 187 (|has| $ (-1047 (-570))))) (-1731 (($ $ (-1186) (-777) (-1 $ $)) 227 (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ (-650 $))) 226 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 225 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 224 (|has| |#1| (-1058))) (($ $ (-650 (-115)) (-650 $) (-1186)) 213 (|has| |#1| (-620 (-542)))) (($ $ (-115) $ (-1186)) 212 (|has| |#1| (-620 (-542)))) (($ $) 211 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186))) 210 (|has| |#1| (-620 (-542)))) (($ $ (-1186)) 209 (|has| |#1| (-620 (-542)))) (($ $ (-115) (-1 $ $)) 184) (($ $ (-115) (-1 $ (-650 $))) 183) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 182) (($ $ (-650 (-115)) (-650 (-1 $ $))) 181) (($ $ (-1186) (-1 $ $)) 180) (($ $ (-1186) (-1 $ (-650 $))) 179) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 178) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 177) (($ $ (-650 $) (-650 $)) 148) (($ $ $ $) 147) (($ $ (-298 $)) 146) (($ $ (-650 (-298 $))) 145) (($ $ (-650 (-618 $)) (-650 $)) 144) (($ $ (-618 $) $) 143)) (-2547 (((-777) $) 64)) (-1877 (($ (-115) (-650 $)) 153) (($ (-115) $ $ $ $) 152) (($ (-115) $ $ $) 151) (($ (-115) $ $) 150) (($ (-115) $) 149)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-2008 (($ $ $) 162) (($ $) 161)) (-3447 (($ $ (-1186)) 251 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 250 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 249 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) 248 (|has| |#1| (-1058)))) (-4428 (($ $) 230 (|has| |#1| (-562)))) (-4413 (((-1134 |#1| (-618 $)) $) 229 (|has| |#1| (-562)))) (-3597 (($ $) 186 (|has| $ (-1058)))) (-1417 (((-542) $) 257 (|has| |#1| (-620 (-542)))) (($ (-424 $)) 228 (|has| |#1| (-562))) (((-899 (-384)) $) 193 (|has| |#1| (-620 (-899 (-384))))) (((-899 (-570)) $) 192 (|has| |#1| (-620 (-899 (-570)))))) (-2488 (($ $ $) 256 (|has| |#1| (-479)))) (-2522 (($ $ $) 255 (|has| |#1| (-479)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-959 |#1|)) 254 (|has| |#1| (-1058))) (($ (-413 (-959 |#1|))) 238 (|has| |#1| (-562))) (($ (-413 (-959 (-413 |#1|)))) 234 (|has| |#1| (-562))) (($ (-959 (-413 |#1|))) 233 (|has| |#1| (-562))) (($ (-413 |#1|)) 232 (|has| |#1| (-562))) (($ (-1134 |#1| (-618 $))) 218 (|has| |#1| (-1058))) (($ |#1|) 200) (($ (-1186)) 191) (($ (-618 $)) 142)) (-3127 (((-3 $ "failed") $) 241 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-4192 (($ (-650 $)) 158) (($ $) 157)) (-2818 (((-112) (-115)) 169)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-4194 (($ (-1186) (-650 $)) 208) (($ (-1186) $ $ $ $) 207) (($ (-1186) $ $ $) 206) (($ (-1186) $ $) 205) (($ (-1186) $) 204)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1186)) 247 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 246 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 245 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) 244 (|has| |#1| (-1058)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73) (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 231 (|has| |#1| (-562)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 98)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 240 (|has| |#1| (-174))) (($ |#1| $) 239 (|has| |#1| (-174)))))
(((-29 |#1|) (-141) (-562)) (T -29))
-((-4143 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-2492 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-4143 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-2492 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *4)))) (-1723 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-3028 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-1723 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-3028 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-436 |t#1|) (-10 -8 (-15 -4143 ($ $)) (-15 -2492 ((-650 $) $)) (-15 -4143 ($ $ (-1186))) (-15 -2492 ((-650 $) $ (-1186))) (-15 -1723 ($ $)) (-15 -3028 ((-650 $) $)) (-15 -1723 ($ $ (-1186))) (-15 -3028 ((-650 $) $ (-1186)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) . T) ((-27) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-174)) ((-111 $ $) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 #1=(-413 (-959 |#1|))) |has| |#1| (-562)) ((-622 (-570)) . T) ((-622 #2=(-618 $)) . T) ((-622 #3=(-959 |#1|)) |has| |#1| (-1058)) ((-622 #4=(-1186)) . T) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-245) . T) ((-294) . T) ((-311) . T) ((-313 $) . T) ((-306) . T) ((-368) . T) ((-382 |#1|) |has| |#1| (-1058)) ((-406 |#1|) . T) ((-417 |#1|) . T) ((-436 |#1|) . T) ((-458) . T) ((-479) |has| |#1| (-479)) ((-520 (-618 $) $) . T) ((-520 $ $) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) |has| |#1| (-174)) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) |has| |#1| (-174)) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) . T) ((-645 (-570)) -12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) ((-645 |#1|) |has| |#1| (-1058)) ((-723 #0#) . T) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) . T) ((-732) . T) ((-907 (-1186)) |has| |#1| (-1058)) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-927) . T) ((-1011) . T) ((-1047 (-413 (-570))) -2740 (|has| |#1| (-1047 (-413 (-570)))) (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) ((-1047 #1#) |has| |#1| (-562)) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #2#) . T) ((-1047 #3#) |has| |#1| (-1058)) ((-1047 #4#) . T) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) |has| |#1| (-174)) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) |has| |#1| (-174)) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1226) . T) ((-1230) . T))
-((-3752 (((-1103 (-227)) $) NIL)) (-3737 (((-1103 (-227)) $) NIL)) (-2018 (($ $ (-227)) 164)) (-3013 (($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570)))) 104)) (-4027 (((-650 (-650 (-950 (-227)))) $) 180)) (-3735 (((-868) $) 194)))
-(((-30) (-13 (-962) (-10 -8 (-15 -3013 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -2018 ($ $ (-227)))))) (T -30))
-((-3013 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186)) (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))) (-2018 (*1 *1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-30)))))
-(-13 (-962) (-10 -8 (-15 -3013 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -2018 ($ $ (-227)))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-1144) $) 11)) (-1859 (((-112) $ $) NIL)) (-4358 (((-1144) $) 9)) (-2872 (((-112) $ $) NIL)))
-(((-31) (-13 (-1092) (-10 -8 (-15 -4358 ((-1144) $)) (-15 -3517 ((-1144) $))))) (T -31))
-((-4358 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))))
-(-13 (-1092) (-10 -8 (-15 -4358 ((-1144) $)) (-15 -3517 ((-1144) $))))
-((-4143 ((|#2| (-1182 |#2|) (-1186)) 41)) (-3680 (((-115) (-115)) 55)) (-1646 (((-1182 |#2|) (-618 |#2|)) 149 (|has| |#1| (-1047 (-570))))) (-2674 ((|#2| |#1| (-570)) 137 (|has| |#1| (-1047 (-570))))) (-1904 ((|#2| (-1182 |#2|) |#2|) 29)) (-3693 (((-868) (-650 |#2|)) 86)) (-2886 ((|#2| |#2|) 144 (|has| |#1| (-1047 (-570))))) (-2004 (((-112) (-115)) 17)) (** ((|#2| |#2| (-413 (-570))) 103 (|has| |#1| (-1047 (-570))))))
-(((-32 |#1| |#2|) (-10 -7 (-15 -4143 (|#2| (-1182 |#2|) (-1186))) (-15 -3680 ((-115) (-115))) (-15 -2004 ((-112) (-115))) (-15 -1904 (|#2| (-1182 |#2|) |#2|)) (-15 -3693 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -1646 ((-1182 |#2|) (-618 |#2|))) (-15 -2886 (|#2| |#2|)) (-15 -2674 (|#2| |#1| (-570)))) |%noBranch|)) (-562) (-436 |#1|)) (T -32))
-((-2674 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *2 (-436 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1047 *4)) (-4 *3 (-562)))) (-2886 (*1 *2 *2) (-12 (-4 *3 (-1047 (-570))) (-4 *3 (-562)) (-5 *1 (-32 *3 *2)) (-4 *2 (-436 *3)))) (-1646 (*1 *2 *3) (-12 (-5 *3 (-618 *5)) (-4 *5 (-436 *4)) (-4 *4 (-1047 (-570))) (-4 *4 (-562)) (-5 *2 (-1182 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-1047 (-570))) (-4 *4 (-562)) (-5 *1 (-32 *4 *2)) (-4 *2 (-436 *4)))) (-3693 (*1 *2 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562)) (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))) (-1904 (*1 *2 *3 *2) (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-32 *4 *2)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-436 *4)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-32 *3 *4)) (-4 *4 (-436 *3)))) (-4143 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *2)) (-5 *4 (-1186)) (-4 *2 (-436 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-562)))))
-(-10 -7 (-15 -4143 (|#2| (-1182 |#2|) (-1186))) (-15 -3680 ((-115) (-115))) (-15 -2004 ((-112) (-115))) (-15 -1904 (|#2| (-1182 |#2|) |#2|)) (-15 -3693 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -1646 ((-1182 |#2|) (-618 |#2|))) (-15 -2886 (|#2| |#2|)) (-15 -2674 (|#2| |#1| (-570)))) |%noBranch|))
-((-3594 (((-112) $ (-777)) 20)) (-2450 (($) 10)) (-2742 (((-112) $ (-777)) 19)) (-3452 (((-112) $ (-777)) 17)) (-4017 (((-112) $ $) 8)) (-3329 (((-112) $) 15)))
-(((-33 |#1|) (-10 -8 (-15 -2450 (|#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777))) (-15 -3329 ((-112) |#1|)) (-15 -4017 ((-112) |#1| |#1|))) (-34)) (T -33))
-NIL
-(-10 -8 (-15 -2450 (|#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777))) (-15 -3329 ((-112) |#1|)) (-15 -4017 ((-112) |#1| |#1|)))
-((-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2742 (((-112) $ (-777)) 9)) (-3452 (((-112) $ (-777)) 10)) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-3915 (($ $) 13)) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-1480 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-4170 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-1480 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-4170 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *4)))) (-2041 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-3598 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-2041 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-3598 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-436 |t#1|) (-10 -8 (-15 -1480 ($ $)) (-15 -4170 ((-650 $) $)) (-15 -1480 ($ $ (-1186))) (-15 -4170 ((-650 $) $ (-1186))) (-15 -2041 ($ $)) (-15 -3598 ((-650 $) $)) (-15 -2041 ($ $ (-1186))) (-15 -3598 ((-650 $) $ (-1186)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) . T) ((-27) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-174)) ((-111 $ $) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 #1=(-413 (-959 |#1|))) |has| |#1| (-562)) ((-622 (-570)) . T) ((-622 #2=(-618 $)) . T) ((-622 #3=(-959 |#1|)) |has| |#1| (-1058)) ((-622 #4=(-1186)) . T) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-245) . T) ((-294) . T) ((-311) . T) ((-313 $) . T) ((-306) . T) ((-368) . T) ((-382 |#1|) |has| |#1| (-1058)) ((-406 |#1|) . T) ((-417 |#1|) . T) ((-436 |#1|) . T) ((-458) . T) ((-479) |has| |#1| (-479)) ((-520 (-618 $) $) . T) ((-520 $ $) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) |has| |#1| (-174)) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) |has| |#1| (-174)) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) . T) ((-645 (-570)) -12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) ((-645 |#1|) |has| |#1| (-1058)) ((-723 #0#) . T) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) . T) ((-732) . T) ((-907 (-1186)) |has| |#1| (-1058)) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-927) . T) ((-1011) . T) ((-1047 (-413 (-570))) -2740 (|has| |#1| (-1047 (-413 (-570)))) (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) ((-1047 #1#) |has| |#1| (-562)) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #2#) . T) ((-1047 #3#) |has| |#1| (-1058)) ((-1047 #4#) . T) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) |has| |#1| (-174)) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) |has| |#1| (-174)) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1227) . T) ((-1231) . T))
+((-3752 (((-1103 (-227)) $) NIL)) (-3737 (((-1103 (-227)) $) NIL)) (-2950 (($ $ (-227)) 164)) (-3442 (($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570)))) 104)) (-2734 (((-650 (-650 (-950 (-227)))) $) 180)) (-3735 (((-868) $) 194)))
+(((-30) (-13 (-962) (-10 -8 (-15 -3442 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -2950 ($ $ (-227)))))) (T -30))
+((-3442 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186)) (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))) (-2950 (*1 *1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-30)))))
+(-13 (-962) (-10 -8 (-15 -3442 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -2950 ($ $ (-227)))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-1144) $) 11)) (-3866 (((-112) $ $) NIL)) (-4360 (((-1144) $) 9)) (-2872 (((-112) $ $) NIL)))
+(((-31) (-13 (-1092) (-10 -8 (-15 -4360 ((-1144) $)) (-15 -3515 ((-1144) $))))) (T -31))
+((-4360 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))))
+(-13 (-1092) (-10 -8 (-15 -4360 ((-1144) $)) (-15 -3515 ((-1144) $))))
+((-1480 ((|#2| (-1182 |#2|) (-1186)) 41)) (-3680 (((-115) (-115)) 55)) (-2462 (((-1182 |#2|) (-618 |#2|)) 149 (|has| |#1| (-1047 (-570))))) (-2145 ((|#2| |#1| (-570)) 137 (|has| |#1| (-1047 (-570))))) (-2981 ((|#2| (-1182 |#2|) |#2|) 29)) (-2570 (((-868) (-650 |#2|)) 86)) (-3597 ((|#2| |#2|) 144 (|has| |#1| (-1047 (-570))))) (-2818 (((-112) (-115)) 17)) (** ((|#2| |#2| (-413 (-570))) 103 (|has| |#1| (-1047 (-570))))))
+(((-32 |#1| |#2|) (-10 -7 (-15 -1480 (|#2| (-1182 |#2|) (-1186))) (-15 -3680 ((-115) (-115))) (-15 -2818 ((-112) (-115))) (-15 -2981 (|#2| (-1182 |#2|) |#2|)) (-15 -2570 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -2462 ((-1182 |#2|) (-618 |#2|))) (-15 -3597 (|#2| |#2|)) (-15 -2145 (|#2| |#1| (-570)))) |%noBranch|)) (-562) (-436 |#1|)) (T -32))
+((-2145 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *2 (-436 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1047 *4)) (-4 *3 (-562)))) (-3597 (*1 *2 *2) (-12 (-4 *3 (-1047 (-570))) (-4 *3 (-562)) (-5 *1 (-32 *3 *2)) (-4 *2 (-436 *3)))) (-2462 (*1 *2 *3) (-12 (-5 *3 (-618 *5)) (-4 *5 (-436 *4)) (-4 *4 (-1047 (-570))) (-4 *4 (-562)) (-5 *2 (-1182 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-1047 (-570))) (-4 *4 (-562)) (-5 *1 (-32 *4 *2)) (-4 *2 (-436 *4)))) (-2570 (*1 *2 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562)) (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))) (-2981 (*1 *2 *3 *2) (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-32 *4 *2)))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-436 *4)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-32 *3 *4)) (-4 *4 (-436 *3)))) (-1480 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *2)) (-5 *4 (-1186)) (-4 *2 (-436 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-562)))))
+(-10 -7 (-15 -1480 (|#2| (-1182 |#2|) (-1186))) (-15 -3680 ((-115) (-115))) (-15 -2818 ((-112) (-115))) (-15 -2981 (|#2| (-1182 |#2|) |#2|)) (-15 -2570 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -2462 ((-1182 |#2|) (-618 |#2|))) (-15 -3597 (|#2| |#2|)) (-15 -2145 (|#2| |#1| (-570)))) |%noBranch|))
+((-4095 (((-112) $ (-777)) 20)) (-3761 (($) 10)) (-1586 (((-112) $ (-777)) 19)) (-2113 (((-112) $ (-777)) 17)) (-2621 (((-112) $ $) 8)) (-3366 (((-112) $) 15)))
+(((-33 |#1|) (-10 -8 (-15 -3761 (|#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777))) (-15 -3366 ((-112) |#1|)) (-15 -2621 ((-112) |#1| |#1|))) (-34)) (T -33))
+NIL
+(-10 -8 (-15 -3761 (|#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777))) (-15 -3366 ((-112) |#1|)) (-15 -2621 ((-112) |#1| |#1|)))
+((-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-1586 (((-112) $ (-777)) 9)) (-2113 (((-112) $ (-777)) 10)) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3916 (($ $) 13)) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-34) (-141)) (T -34))
-((-4017 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3915 (*1 *1 *1) (-4 *1 (-34))) (-3743 (*1 *1) (-4 *1 (-34))) (-3329 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3452 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-2742 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-3594 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-2450 (*1 *1) (-4 *1 (-34))) (-2426 (*1 *2 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-34)) (-5 *2 (-777)))))
-(-13 (-1226) (-10 -8 (-15 -4017 ((-112) $ $)) (-15 -3915 ($ $)) (-15 -3743 ($)) (-15 -3329 ((-112) $)) (-15 -3452 ((-112) $ (-777))) (-15 -2742 ((-112) $ (-777))) (-15 -3594 ((-112) $ (-777))) (-15 -2450 ($) -3640) (IF (|has| $ (-6 -4448)) (-15 -2426 ((-777) $)) |%noBranch|)))
-(((-1226) . T))
-((-4138 (($ $) 11)) (-4108 (($ $) 10)) (-4161 (($ $) 9)) (-1509 (($ $) 8)) (-4150 (($ $) 7)) (-4123 (($ $) 6)))
+((-2621 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3916 (*1 *1 *1) (-4 *1 (-34))) (-3006 (*1 *1) (-4 *1 (-34))) (-3366 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-2113 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-1586 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-4095 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-3761 (*1 *1) (-4 *1 (-34))) (-2426 (*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-34)) (-5 *2 (-777)))))
+(-13 (-1227) (-10 -8 (-15 -2621 ((-112) $ $)) (-15 -3916 ($ $)) (-15 -3006 ($)) (-15 -3366 ((-112) $)) (-15 -2113 ((-112) $ (-777))) (-15 -1586 ((-112) $ (-777))) (-15 -4095 ((-112) $ (-777))) (-15 -3761 ($) -3640) (IF (|has| $ (-6 -4449)) (-15 -2426 ((-777) $)) |%noBranch|)))
+(((-1227) . T))
+((-4137 (($ $) 11)) (-4112 (($ $) 10)) (-4157 (($ $) 9)) (-1510 (($ $) 8)) (-4150 (($ $) 7)) (-4123 (($ $) 6)))
(((-35) (-141)) (T -35))
-((-4138 (*1 *1 *1) (-4 *1 (-35))) (-4108 (*1 *1 *1) (-4 *1 (-35))) (-4161 (*1 *1 *1) (-4 *1 (-35))) (-1509 (*1 *1 *1) (-4 *1 (-35))) (-4150 (*1 *1 *1) (-4 *1 (-35))) (-4123 (*1 *1 *1) (-4 *1 (-35))))
-(-13 (-10 -8 (-15 -4123 ($ $)) (-15 -4150 ($ $)) (-15 -1509 ($ $)) (-15 -4161 ($ $)) (-15 -4108 ($ $)) (-15 -4138 ($ $))))
-((-2416 (((-112) $ $) 19 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2195 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 126)) (-2545 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 149)) (-1573 (($ $) 147)) (-4276 (($) 73) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 72)) (-3225 (((-1281) $ |#1| |#1|) 100 (|has| $ (-6 -4449))) (((-1281) $ (-570) (-570)) 179 (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) 160 (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 210) (((-112) $) 204 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3239 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 201 (|has| $ (-6 -4449))) (($ $) 200 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 211) (($ $) 205 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3594 (((-112) $ (-777)) 8)) (-1379 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 135 (|has| $ (-6 -4449)))) (-2512 (($ $ $) 156 (|has| $ (-6 -4449)))) (-3138 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 158 (|has| $ (-6 -4449)))) (-2854 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 154 (|has| $ (-6 -4449)))) (-3895 ((|#2| $ |#1| |#2|) 74) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 190 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-1243 (-570)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 161 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "last" (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 159 (|has| $ (-6 -4449))) (($ $ "rest" $) 157 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "first" (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 155 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "value" (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 134 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 133 (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 46 (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 217)) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 56 (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 176 (|has| $ (-6 -4448)))) (-2533 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 148)) (-2361 (((-3 |#2| "failed") |#1| $) 62)) (-2450 (($) 7 T CONST)) (-2697 (($ $) 202 (|has| $ (-6 -4449)))) (-2258 (($ $) 212)) (-3455 (($ $ (-777)) 143) (($ $) 141)) (-2208 (($ $) 215 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-3480 (($ $) 59 (-2740 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448))) (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 47 (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) 63) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 221) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 216 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 55 (|has| $ (-6 -4448))) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 178 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 175 (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 57 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 54 (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 53 (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 177 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 174 (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 173 (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 191 (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) 89) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) 189)) (-2356 (((-112) $) 193)) (-3998 (((-570) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 209) (((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 208 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) (((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) 207 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 31 (|has| $ (-6 -4448))) (((-650 |#2|) $) 80 (|has| $ (-6 -4448))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 115 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 124)) (-1457 (((-112) $ $) 132 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-4286 (($ (-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 170)) (-2742 (((-112) $ (-777)) 9)) (-2790 ((|#1| $) 97 (|has| |#1| (-856))) (((-570) $) 181 (|has| (-570) (-856)))) (-3310 (($ $ $) 199 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2190 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ $) 218) (($ $ $) 214 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3068 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ $) 213) (($ $ $) 206 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 30 (|has| $ (-6 -4448))) (((-650 |#2|) $) 81 (|has| $ (-6 -4448))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 116 (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 118 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448))))) (-4329 ((|#1| $) 96 (|has| |#1| (-856))) (((-570) $) 182 (|has| (-570) (-856)))) (-3787 (($ $ $) 198 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 35 (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4449))) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 111 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ $) 167) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 110)) (-3312 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 226)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 129)) (-3873 (((-112) $) 125)) (-1903 (((-1168) $) 22 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-1728 (($ $ (-777)) 146) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 144)) (-2760 (((-650 |#1|) $) 64)) (-2696 (((-112) |#1| $) 65)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 40)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 41) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) 220) (($ $ $ (-570)) 219)) (-4285 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) 163) (($ $ $ (-570)) 162)) (-2344 (((-650 |#1|) $) 94) (((-650 (-570)) $) 184)) (-1354 (((-112) |#1| $) 93) (((-112) (-570) $) 185)) (-3479 (((-1129) $) 21 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-3443 ((|#2| $) 98 (|has| |#1| (-856))) (($ $ (-777)) 140) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 138)) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 52) (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 172)) (-1952 (($ $ |#2|) 99 (|has| $ (-6 -4449))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 180 (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 42)) (-3412 (((-112) $) 192)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 33 (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 113 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) 27 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 26 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 25 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 24 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 87 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 85 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) 84 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 122 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 121 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 120 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) 119 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 183 (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4245 (((-650 |#2|) $) 92) (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 186)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 188) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) 187) (($ $ (-1243 (-570))) 166) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "last") 145) (($ $ "rest") 142) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "first") 139) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "value") 127)) (-1678 (((-570) $ $) 130)) (-2271 (($) 50) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 49)) (-1882 (($ $ (-570)) 223) (($ $ (-1243 (-570))) 222)) (-4320 (($ $ (-570)) 165) (($ $ (-1243 (-570))) 164)) (-3150 (((-112) $) 128)) (-3146 (($ $) 152)) (-2839 (($ $) 153 (|has| $ (-6 -4449)))) (-2409 (((-777) $) 151)) (-2567 (($ $) 150)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 32 (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 114 (|has| $ (-6 -4448)))) (-1806 (($ $ $ (-570)) 203 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542)))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 51) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 171)) (-2850 (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 225) (($ $ $) 224)) (-2439 (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 169) (($ (-650 $)) 168) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 137) (($ $ $) 136)) (-3735 (((-868) $) 18 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868)))))) (-3129 (((-650 $) $) 123)) (-2016 (((-112) $ $) 131 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-1859 (((-112) $ $) 23 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 43)) (-1737 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") |#1| $) 109)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 34 (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 112 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 196 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2904 (((-112) $ $) 195 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2872 (((-112) $ $) 20 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2913 (((-112) $ $) 197 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2894 (((-112) $ $) 194 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-4137 (*1 *1 *1) (-4 *1 (-35))) (-4112 (*1 *1 *1) (-4 *1 (-35))) (-4157 (*1 *1 *1) (-4 *1 (-35))) (-1510 (*1 *1 *1) (-4 *1 (-35))) (-4150 (*1 *1 *1) (-4 *1 (-35))) (-4123 (*1 *1 *1) (-4 *1 (-35))))
+(-13 (-10 -8 (-15 -4123 ($ $)) (-15 -4150 ($ $)) (-15 -1510 ($ $)) (-15 -4157 ($ $)) (-15 -4112 ($ $)) (-15 -4137 ($ $))))
+((-2417 (((-112) $ $) 19 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2196 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 126)) (-2545 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 149)) (-1574 (($ $) 147)) (-4276 (($) 73) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 72)) (-3727 (((-1282) $ |#1| |#1|) 100 (|has| $ (-6 -4450))) (((-1282) $ (-570) (-570)) 179 (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) 160 (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 210) (((-112) $) 204 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-3885 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 201 (|has| $ (-6 -4450))) (($ $) 200 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 211) (($ $) 205 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3708 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 135 (|has| $ (-6 -4450)))) (-3066 (($ $ $) 156 (|has| $ (-6 -4450)))) (-2230 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 158 (|has| $ (-6 -4450)))) (-3269 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 154 (|has| $ (-6 -4450)))) (-3894 ((|#2| $ |#1| |#2|) 74) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 190 (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-1244 (-570)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 161 (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "last" (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 159 (|has| $ (-6 -4450))) (($ $ "rest" $) 157 (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "first" (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 155 (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "value" (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 134 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 133 (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 46 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 217)) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 56 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 176 (|has| $ (-6 -4449)))) (-2533 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 148)) (-2360 (((-3 |#2| "failed") |#1| $) 62)) (-3761 (($) 7 T CONST)) (-2347 (($ $) 202 (|has| $ (-6 -4450)))) (-2261 (($ $) 212)) (-3455 (($ $ (-777)) 143) (($ $) 141)) (-3092 (($ $) 215 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-3480 (($ $) 59 (-2740 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449))) (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 47 (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 63) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 221) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 216 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 55 (|has| $ (-6 -4449))) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 178 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 175 (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 57 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 54 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 53 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 177 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 174 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 173 (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 191 (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) 89) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) 189)) (-2237 (((-112) $) 193)) (-3998 (((-570) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 209) (((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 208 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) (((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) 207 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 31 (|has| $ (-6 -4449))) (((-650 |#2|) $) 80 (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 115 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 124)) (-4329 (((-112) $ $) 132 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-4287 (($ (-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 170)) (-1586 (((-112) $ (-777)) 9)) (-3888 ((|#1| $) 97 (|has| |#1| (-856))) (((-570) $) 181 (|has| (-570) (-856)))) (-3311 (($ $ $) 199 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-4210 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ $) 218) (($ $ $) 214 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2727 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ $) 213) (($ $ $) 206 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 30 (|has| $ (-6 -4449))) (((-650 |#2|) $) 81 (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 116 (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 118 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-2596 ((|#1| $) 96 (|has| |#1| (-856))) (((-570) $) 182 (|has| (-570) (-856)))) (-2222 (($ $ $) 198 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 35 (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4450))) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 111 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ $) 167) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 110)) (-3312 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 226)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 129)) (-1859 (((-112) $) 125)) (-4268 (((-1168) $) 22 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-1729 (($ $ (-777)) 146) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 144)) (-2761 (((-650 |#1|) $) 64)) (-2338 (((-112) |#1| $) 65)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 40)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 41) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) 220) (($ $ $ (-570)) 219)) (-4286 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) 163) (($ $ $ (-570)) 162)) (-2122 (((-650 |#1|) $) 94) (((-650 (-570)) $) 184)) (-2083 (((-112) |#1| $) 93) (((-112) (-570) $) 185)) (-3479 (((-1129) $) 21 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3443 ((|#2| $) 98 (|has| |#1| (-856))) (($ $ (-777)) 140) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 138)) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 52) (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 172)) (-3531 (($ $ |#2|) 99 (|has| $ (-6 -4450))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 180 (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 42)) (-2928 (((-112) $) 192)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 33 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 113 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) 27 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 26 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 25 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 24 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 87 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 85 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) 84 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 122 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 121 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 120 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) 119 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 183 (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-4348 (((-650 |#2|) $) 92) (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 186)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 188) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) 187) (($ $ (-1244 (-570))) 166) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "last") 145) (($ $ "rest") 142) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "first") 139) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "value") 127)) (-2763 (((-570) $ $) 130)) (-2535 (($) 50) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 49)) (-4052 (($ $ (-570)) 223) (($ $ (-1244 (-570))) 222)) (-4320 (($ $ (-570)) 165) (($ $ (-1244 (-570))) 164)) (-2345 (((-112) $) 128)) (-2308 (($ $) 152)) (-3103 (($ $) 153 (|has| $ (-6 -4450)))) (-1535 (((-777) $) 151)) (-3631 (($ $) 150)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 32 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 114 (|has| $ (-6 -4449)))) (-1523 (($ $ $ (-570)) 203 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542)))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 51) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 171)) (-3214 (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 225) (($ $ $) 224)) (-2439 (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 169) (($ (-650 $)) 168) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 137) (($ $ $) 136)) (-3735 (((-868) $) 18 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868)))))) (-2153 (((-650 $) $) 123)) (-2931 (((-112) $ $) 131 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-3866 (((-112) $ $) 23 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 43)) (-1738 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") |#1| $) 109)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 34 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 112 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 196 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2904 (((-112) $ $) 195 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2872 (((-112) $ $) 20 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2914 (((-112) $ $) 197 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2894 (((-112) $ $) 194 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-36 |#1| |#2|) (-141) (-1109) (-1109)) (T -36))
-((-1737 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| -2013 *3) (|:| -2223 *4))))))
-(-13 (-1202 |t#1| |t#2|) (-672 (-2 (|:| -2013 |t#1|) (|:| -2223 |t#2|))) (-10 -8 (-15 -1737 ((-3 (-2 (|:| -2013 |t#1|) (|:| -2223 |t#2|)) "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((-102) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856))) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868)))) ((-152 #1=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((-620 (-542)) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-290 #2=(-570) #1#) . T) ((-290 |#1| |#2|) . T) ((-292 #2# #1#) . T) ((-292 |#1| |#2|) . T) ((-313 #1#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-286 #1#) . T) ((-378 #1#) . T) ((-495 #1#) . T) ((-495 |#2|) . T) ((-610 #2# #1#) . T) ((-610 |#1| |#2|) . T) ((-520 #1# #1#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-616 |#1| |#2|) . T) ((-657 #1#) . T) ((-672 #1#) . T) ((-856) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)) ((-1019 #1#) . T) ((-1109) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856))) ((-1158 #1#) . T) ((-1202 |#1| |#2|) . T) ((-1226) . T) ((-1264 #1#) . T))
+((-1738 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| -2013 *3) (|:| -2224 *4))))))
+(-13 (-1203 |t#1| |t#2|) (-672 (-2 (|:| -2013 |t#1|) (|:| -2224 |t#2|))) (-10 -8 (-15 -1738 ((-3 (-2 (|:| -2013 |t#1|) (|:| -2224 |t#2|)) "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((-102) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856))) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868)))) ((-152 #1=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((-620 (-542)) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-290 #2=(-570) #1#) . T) ((-290 |#1| |#2|) . T) ((-292 #2# #1#) . T) ((-292 |#1| |#2|) . T) ((-313 #1#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-286 #1#) . T) ((-378 #1#) . T) ((-495 #1#) . T) ((-495 |#2|) . T) ((-610 #2# #1#) . T) ((-610 |#1| |#2|) . T) ((-520 #1# #1#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-616 |#1| |#2|) . T) ((-657 #1#) . T) ((-672 #1#) . T) ((-856) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)) ((-1019 #1#) . T) ((-1109) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856))) ((-1158 #1#) . T) ((-1203 |#1| |#2|) . T) ((-1227) . T) ((-1265 #1#) . T))
((-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10)))
(((-37 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-38 |#2|) (-174)) (T -37))
NIL
(-10 -8 (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-38 |#1|) (-141) (-174)) (T -38))
NIL
(-13 (-1058) (-723 |t#1|) (-622 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-732) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2198 (((-424 |#1|) |#1|) 41)) (-3738 (((-424 |#1|) |#1|) 30) (((-424 |#1|) |#1| (-650 (-48))) 33)) (-1318 (((-112) |#1|) 59)))
-(((-39 |#1|) (-10 -7 (-15 -3738 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -2198 ((-424 |#1|) |#1|)) (-15 -1318 ((-112) |#1|))) (-1252 (-48))) (T -39))
-((-1318 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48))))) (-2198 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48))))) (-3738 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48))))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48))))))
-(-10 -7 (-15 -3738 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -2198 ((-424 |#1|) |#1|)) (-15 -1318 ((-112) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3646 (((-2 (|:| |num| (-1276 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-3171 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2720 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-2945 (((-695 (-413 |#2|)) (-1276 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3071 (((-413 |#2|) $) NIL)) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1790 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-4339 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3403 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-2796 (((-112)) NIL)) (-3024 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-3 (-413 |#2|) "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-2049 (($ (-1276 (-413 |#2|)) (-1276 $)) NIL) (($ (-1276 (-413 |#2|))) 61) (($ (-1276 |#2|) |#2|) 134)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2372 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2710 (((-695 (-413 |#2|)) $ (-1276 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-413 |#2|))) (|:| |vec| (-1276 (-413 |#2|)))) (-695 $) (-1276 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-2906 (((-1276 $) (-1276 $)) NIL)) (-3529 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-3413 (((-3 $ "failed") $) NIL)) (-2772 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-1861 (((-112) |#1| |#1|) NIL)) (-3934 (((-928)) NIL)) (-3336 (($) NIL (|has| (-413 |#2|) (-373)))) (-4363 (((-112)) NIL)) (-3090 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2381 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-3543 (($ $) NIL)) (-2493 (($) NIL (|has| (-413 |#2|) (-354)))) (-2036 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-2774 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-1552 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-3157 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-2081 (((-112) $) NIL)) (-3858 (((-777)) NIL)) (-1606 (((-1276 $) (-1276 $)) 109)) (-2610 (((-413 |#2|) $) NIL)) (-2554 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-2885 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-1638 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-2367 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3516 ((|#3| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-1903 (((-1168) $) NIL)) (-1847 (((-1281) (-777)) 87)) (-2285 (((-695 (-413 |#2|))) 56)) (-2505 (((-695 (-413 |#2|))) 49)) (-1825 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-4019 (($ (-1276 |#2|) |#2|) 135)) (-2613 (((-695 (-413 |#2|))) 50)) (-3883 (((-695 (-413 |#2|))) 48)) (-3203 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 133)) (-1369 (((-2 (|:| |num| (-1276 |#2|)) (|:| |den| |#2|)) $) 68)) (-3524 (((-1276 $)) 47)) (-3223 (((-1276 $)) 46)) (-3075 (((-112) $) NIL)) (-1828 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2314 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2159 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-3660 (((-3 |#2| "failed")) NIL)) (-3479 (((-1129) $) NIL)) (-4334 (((-777)) NIL)) (-2339 (($) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1874 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3738 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2407 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2272 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1876 ((|#1| $ |#1| |#1|) NIL)) (-4418 (((-3 |#2| "failed")) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2998 (((-413 |#2|) (-1276 $)) NIL) (((-413 |#2|)) 44)) (-2845 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3447 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) 129) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-4399 (((-695 (-413 |#2|)) (-1276 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-2886 ((|#3|) 55)) (-2163 (($) NIL (|has| (-413 |#2|) (-354)))) (-1807 (((-1276 (-413 |#2|)) $ (-1276 $)) NIL) (((-695 (-413 |#2|)) (-1276 $) (-1276 $)) NIL) (((-1276 (-413 |#2|)) $) 62) (((-695 (-413 |#2|)) (-1276 $)) 110)) (-1416 (((-1276 (-413 |#2|)) $) NIL) (($ (-1276 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-1326 (((-1276 $) (-1276 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1918 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-3674 ((|#3| $) NIL)) (-2744 (((-777)) NIL T CONST)) (-3222 (((-112)) 42)) (-4050 (((-112) |#1|) 54) (((-112) |#2|) 141)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL)) (-1681 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3475 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-3114 (((-112)) NIL)) (-1812 (($) 17 T CONST)) (-1823 (($) 27 T CONST)) (-2791 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| (-413 |#2|) (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 |#2|)) NIL) (($ (-413 |#2|) $) NIL) (($ (-413 (-570)) $) NIL (|has| (-413 |#2|) (-368))) (($ $ (-413 (-570))) NIL (|has| (-413 |#2|) (-368)))))
-(((-40 |#1| |#2| |#3| |#4|) (-13 (-347 |#1| |#2| |#3|) (-10 -7 (-15 -1847 ((-1281) (-777))))) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) |#3|) (T -40))
-((-1847 (*1 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-4 *5 (-1252 *4)) (-5 *2 (-1281)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1252 (-413 *5))) (-14 *7 *6))))
-(-13 (-347 |#1| |#2| |#3|) (-10 -7 (-15 -1847 ((-1281) (-777)))))
-((-3453 ((|#2| |#2|) 47)) (-4044 ((|#2| |#2|) 139 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-3305 ((|#2| |#2|) 100 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-1924 ((|#2| |#2|) 101 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-2921 ((|#2| (-115) |#2| (-777)) 135 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-1341 (((-1182 |#2|) |#2|) 44)) (-4095 ((|#2| |#2| (-650 (-618 |#2|))) 18) ((|#2| |#2| (-650 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-41 |#1| |#2|) (-10 -7 (-15 -3453 (|#2| |#2|)) (-15 -4095 (|#2| |#2|)) (-15 -4095 (|#2| |#2| |#2|)) (-15 -4095 (|#2| |#2| (-650 |#2|))) (-15 -4095 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -1341 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -1924 (|#2| |#2|)) (-15 -3305 (|#2| |#2|)) (-15 -4044 (|#2| |#2|)) (-15 -2921 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|)) (-562) (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 |#1| (-618 $)) $)) (-15 -4412 ((-1134 |#1| (-618 $)) $)) (-15 -3735 ($ (-1134 |#1| (-618 $))))))) (T -41))
-((-2921 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-115)) (-5 *4 (-777)) (-4 *5 (-13 (-458) (-1047 (-570)))) (-4 *5 (-562)) (-5 *1 (-41 *5 *2)) (-4 *2 (-436 *5)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *5 (-618 $)) $)) (-15 -4412 ((-1134 *5 (-618 $)) $)) (-15 -3735 ($ (-1134 *5 (-618 $))))))))) (-4044 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $)) (-15 -4412 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-3305 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $)) (-15 -4412 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-1924 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $)) (-15 -4412 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-1341 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-1182 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *4 (-618 $)) $)) (-15 -4412 ((-1134 *4 (-618 $)) $)) (-15 -3735 ($ (-1134 *4 (-618 $))))))))) (-4095 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-618 *2))) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *4 (-618 $)) $)) (-15 -4412 ((-1134 *4 (-618 $)) $)) (-15 -3735 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-4095 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *4 (-618 $)) $)) (-15 -4412 ((-1134 *4 (-618 $)) $)) (-15 -3735 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-4095 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $)) (-15 -4412 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-4095 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $)) (-15 -4412 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-3453 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $)) (-15 -4412 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
-(-10 -7 (-15 -3453 (|#2| |#2|)) (-15 -4095 (|#2| |#2|)) (-15 -4095 (|#2| |#2| |#2|)) (-15 -4095 (|#2| |#2| (-650 |#2|))) (-15 -4095 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -1341 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -1924 (|#2| |#2|)) (-15 -3305 (|#2| |#2|)) (-15 -4044 (|#2| |#2|)) (-15 -2921 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|))
-((-3738 (((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))) 23) (((-424 |#3|) |#3| (-650 (-48))) 19)))
-(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3738 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))))) (-856) (-799) (-956 (-48) |#2| |#1|)) (T -42))
-((-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *7 (-956 (-48) *6 *5)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-4 *5 (-856)) (-4 *6 (-799)) (-5 *2 (-424 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-956 (-48) *6 *5)))))
-(-10 -7 (-15 -3738 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3738 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48)))))
-((-3568 (((-777) |#2|) 72)) (-3991 (((-777) |#2|) 76)) (-1782 (((-650 |#2|)) 39)) (-3714 (((-777) |#2|) 75)) (-3812 (((-777) |#2|) 71)) (-3460 (((-777) |#2|) 74)) (-4354 (((-650 (-695 |#1|))) 67)) (-4079 (((-650 |#2|)) 62)) (-2207 (((-650 |#2|) |#2|) 50)) (-2576 (((-650 |#2|)) 64)) (-1569 (((-650 |#2|)) 63)) (-1610 (((-650 (-695 |#1|))) 55)) (-4375 (((-650 |#2|)) 61)) (-2301 (((-650 |#2|) |#2|) 49)) (-2104 (((-650 |#2|)) 57)) (-4033 (((-650 (-695 |#1|))) 68)) (-1393 (((-650 |#2|)) 66)) (-2331 (((-1276 |#2|) (-1276 |#2|)) 101 (|has| |#1| (-311)))))
-(((-43 |#1| |#2|) (-10 -7 (-15 -3714 ((-777) |#2|)) (-15 -3991 ((-777) |#2|)) (-15 -3812 ((-777) |#2|)) (-15 -3568 ((-777) |#2|)) (-15 -3460 ((-777) |#2|)) (-15 -2104 ((-650 |#2|))) (-15 -2301 ((-650 |#2|) |#2|)) (-15 -2207 ((-650 |#2|) |#2|)) (-15 -4375 ((-650 |#2|))) (-15 -4079 ((-650 |#2|))) (-15 -1569 ((-650 |#2|))) (-15 -2576 ((-650 |#2|))) (-15 -1393 ((-650 |#2|))) (-15 -1610 ((-650 (-695 |#1|)))) (-15 -4354 ((-650 (-695 |#1|)))) (-15 -4033 ((-650 (-695 |#1|)))) (-15 -1782 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -2331 ((-1276 |#2|) (-1276 |#2|))) |%noBranch|)) (-562) (-423 |#1|)) (T -43))
-((-2331 (*1 *2 *2) (-12 (-5 *2 (-1276 *4)) (-4 *4 (-423 *3)) (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-43 *3 *4)))) (-1782 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4033 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4354 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-1610 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-1393 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2576 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-1569 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4079 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4375 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2207 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2301 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2104 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3460 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3568 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3812 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3991 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3714 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))))
-(-10 -7 (-15 -3714 ((-777) |#2|)) (-15 -3991 ((-777) |#2|)) (-15 -3812 ((-777) |#2|)) (-15 -3568 ((-777) |#2|)) (-15 -3460 ((-777) |#2|)) (-15 -2104 ((-650 |#2|))) (-15 -2301 ((-650 |#2|) |#2|)) (-15 -2207 ((-650 |#2|) |#2|)) (-15 -4375 ((-650 |#2|))) (-15 -4079 ((-650 |#2|))) (-15 -1569 ((-650 |#2|))) (-15 -2576 ((-650 |#2|))) (-15 -1393 ((-650 |#2|))) (-15 -1610 ((-650 (-695 |#1|)))) (-15 -4354 ((-650 (-695 |#1|)))) (-15 -4033 ((-650 (-695 |#1|)))) (-15 -1782 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -2331 ((-1276 |#2|) (-1276 |#2|))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1733 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-1759 (((-1276 (-695 |#1|)) (-1276 $)) NIL) (((-1276 (-695 |#1|))) 24)) (-2201 (((-1276 $)) 55)) (-2450 (($) NIL T CONST)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-1822 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-2893 (((-695 |#1|) (-1276 $)) NIL) (((-695 |#1|)) NIL)) (-4361 ((|#1| $) NIL)) (-2520 (((-695 |#1|) $ (-1276 $)) NIL) (((-695 |#1|) $) NIL)) (-1535 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-3065 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-3937 (($ $ (-928)) NIL)) (-3602 ((|#1| $) NIL)) (-3929 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-4290 ((|#1| (-1276 $)) NIL) ((|#1|) NIL)) (-1458 (((-1182 |#1|) $) NIL)) (-3161 (((-112)) 101)) (-2049 (($ (-1276 |#1|) (-1276 $)) NIL) (($ (-1276 |#1|)) NIL)) (-3413 (((-3 $ "failed") $) 14 (|has| |#1| (-562)))) (-3934 (((-928)) 56)) (-1460 (((-112)) NIL)) (-3388 (($ $ (-928)) NIL)) (-3060 (((-112)) NIL)) (-3207 (((-112)) NIL)) (-3149 (((-112)) 103)) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-2546 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-1401 (((-695 |#1|) (-1276 $)) NIL) (((-695 |#1|)) NIL)) (-4395 ((|#1| $) NIL)) (-3215 (((-695 |#1|) $ (-1276 $)) NIL) (((-695 |#1|) $) NIL)) (-2168 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-4004 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-2247 (($ $ (-928)) NIL)) (-3386 ((|#1| $) NIL)) (-1395 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-2191 ((|#1| (-1276 $)) NIL) ((|#1|) NIL)) (-4265 (((-1182 |#1|) $) NIL)) (-2455 (((-112)) 100)) (-1903 (((-1168) $) NIL)) (-3641 (((-112)) 108)) (-1482 (((-112)) 107)) (-3204 (((-112)) 109)) (-3479 (((-1129) $) NIL)) (-1687 (((-112)) 102)) (-1876 ((|#1| $ (-570)) 58)) (-1807 (((-1276 |#1|) $ (-1276 $)) 52) (((-695 |#1|) (-1276 $) (-1276 $)) NIL) (((-1276 |#1|) $) 28) (((-695 |#1|) (-1276 $)) NIL)) (-1416 (((-1276 |#1|) $) NIL) (($ (-1276 |#1|)) NIL)) (-3824 (((-650 (-959 |#1|)) (-1276 $)) NIL) (((-650 (-959 |#1|))) NIL)) (-3688 (($ $ $) NIL)) (-4068 (((-112)) 97)) (-3735 (((-868) $) 74) (($ (-1276 |#1|)) 22)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) 54)) (-4365 (((-650 (-1276 |#1|))) NIL (|has| |#1| (-562)))) (-3183 (($ $ $ $) NIL)) (-2170 (((-112)) 93)) (-3381 (($ (-695 |#1|) $) 18)) (-1960 (($ $ $) NIL)) (-4213 (((-112)) 99)) (-3987 (((-112)) 94)) (-3463 (((-112)) 92)) (-1812 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 83) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1151 |#2| |#1|) $) 19)))
-(((-44 |#1| |#2| |#3| |#4|) (-13 (-423 |#1|) (-654 (-1151 |#2| |#1|)) (-10 -8 (-15 -3735 ($ (-1276 |#1|))))) (-368) (-928) (-650 (-1186)) (-1276 (-695 |#1|))) (T -44))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-368)) (-14 *6 (-1276 (-695 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))))))
-(-13 (-423 |#1|) (-654 (-1151 |#2| |#1|)) (-10 -8 (-15 -3735 ($ (-1276 |#1|)))))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2195 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2545 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1573 (($ $) NIL)) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449))) (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3239 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856))))) (-3288 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-1379 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449)))) (-2512 (($ $ $) 33 (|has| $ (-6 -4449)))) (-3138 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449)))) (-2854 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 35 (|has| $ (-6 -4449)))) (-3895 ((|#2| $ |#1| |#2|) 53) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-1243 (-570)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "last" (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449))) (($ $ "rest" $) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "first" (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "value" (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2533 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2361 (((-3 |#2| "failed") |#1| $) 43)) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3455 (($ $ (-777)) NIL) (($ $) 29)) (-2208 (($ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) 56) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) NIL)) (-2356 (((-112) $) NIL)) (-3998 (((-570) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) (((-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 20 (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 20 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-4286 (($ (-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 38 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2190 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3068 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 40 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-3312 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-2282 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-3873 (((-112) $) NIL)) (-1903 (((-1168) $) 49 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-1728 (($ $ (-777)) NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2760 (((-650 |#1|) $) 22)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-4285 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 |#1|) $) NIL) (((-650 (-570)) $) NIL)) (-1354 (((-112) |#1| $) NIL) (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856))) (($ $ (-777)) NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 27)) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-3412 (((-112) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4245 (((-650 |#2|) $) NIL) (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 19)) (-3329 (((-112) $) 18)) (-3743 (($) 14)) (-1876 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ (-570)) NIL) (($ $ (-1243 (-570))) NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "first") NIL) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $ "value") NIL)) (-1678 (((-570) $ $) NIL)) (-2271 (($) 13) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-1882 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3150 (((-112) $) NIL)) (-3146 (($ $) NIL)) (-2839 (($ $) NIL (|has| $ (-6 -4449)))) (-2409 (((-777) $) NIL)) (-2567 (($ $) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-2850 (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL) (($ $ $) NIL)) (-2439 (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL) (($ (-650 $)) NIL) (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 31) (($ $ $) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-1737 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") |#1| $) 51)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2913 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-856)))) (-2426 (((-777) $) 25 (|has| $ (-6 -4448)))))
+((-4289 (((-424 |#1|) |#1|) 41)) (-3739 (((-424 |#1|) |#1|) 30) (((-424 |#1|) |#1| (-650 (-48))) 33)) (-1688 (((-112) |#1|) 59)))
+(((-39 |#1|) (-10 -7 (-15 -3739 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -4289 ((-424 |#1|) |#1|)) (-15 -1688 ((-112) |#1|))) (-1253 (-48))) (T -39))
+((-1688 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-4289 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3739 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))))
+(-10 -7 (-15 -3739 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -4289 ((-424 |#1|) |#1|)) (-15 -1688 ((-112) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3351 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-1345 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1372 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-4084 (((-695 (-413 |#2|)) (-1277 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3071 (((-413 |#2|) $) NIL)) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1378 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2707 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3403 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-3941 (((-112)) NIL)) (-3562 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-3 (-413 |#2|) "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-2125 (($ (-1277 (-413 |#2|)) (-1277 $)) NIL) (($ (-1277 (-413 |#2|))) 61) (($ (-1277 |#2|) |#2|) 134)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2372 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2443 (((-695 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-3664 (((-1277 $) (-1277 $)) NIL)) (-3529 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-2937 (((-3 $ "failed") $) NIL)) (-1882 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-3893 (((-112) |#1| |#1|) NIL)) (-3933 (((-928)) NIL)) (-3336 (($) NIL (|has| (-413 |#2|) (-373)))) (-2913 (((-112)) NIL)) (-2899 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2382 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-1767 (($ $) NIL)) (-4181 (($) NIL (|has| (-413 |#2|) (-354)))) (-2006 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-1901 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-4037 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-4331 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-4340 (((-112) $) NIL)) (-1697 (((-777)) NIL)) (-3279 (((-1277 $) (-1277 $)) 109)) (-2771 (((-413 |#2|) $) NIL)) (-3492 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-3584 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2399 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-2332 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3514 ((|#3| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-4268 (((-1168) $) NIL)) (-3731 (((-1282) (-777)) 87)) (-2654 (((-695 (-413 |#2|))) 56)) (-4305 (((-695 (-413 |#2|))) 49)) (-1826 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2646 (($ (-1277 |#2|) |#2|) 135)) (-2792 (((-695 (-413 |#2|))) 50)) (-3795 (((-695 (-413 |#2|))) 48)) (-1684 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 133)) (-3658 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 68)) (-1555 (((-1277 $)) 47)) (-3705 (((-1277 $)) 46)) (-2790 (((-112) $) NIL)) (-1724 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2315 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2160 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-3495 (((-3 |#2| "failed")) NIL)) (-3479 (((-1129) $) NIL)) (-2653 (((-777)) NIL)) (-2340 (($) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1874 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3739 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2406 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2547 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1877 ((|#1| $ |#1| |#1|) NIL)) (-2243 (((-3 |#2| "failed")) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3290 (((-413 |#2|) (-1277 $)) NIL) (((-413 |#2|)) 44)) (-3156 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3447 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) 129) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2100 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-3597 ((|#3|) 55)) (-3929 (($) NIL (|has| (-413 |#2|) (-354)))) (-1533 (((-1277 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 |#2|)) $) 62) (((-695 (-413 |#2|)) (-1277 $)) 110)) (-1417 (((-1277 (-413 |#2|)) $) NIL) (($ (-1277 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-1776 (((-1277 $) (-1277 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3127 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-3641 ((|#3| $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3691 (((-112)) 42)) (-2958 (((-112) |#1|) 54) (((-112) |#2|) 141)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL)) (-2795 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2312 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2016 (((-112)) NIL)) (-1814 (($) 17 T CONST)) (-1824 (($) 27 T CONST)) (-2791 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| (-413 |#2|) (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 |#2|)) NIL) (($ (-413 |#2|) $) NIL) (($ (-413 (-570)) $) NIL (|has| (-413 |#2|) (-368))) (($ $ (-413 (-570))) NIL (|has| (-413 |#2|) (-368)))))
+(((-40 |#1| |#2| |#3| |#4|) (-13 (-347 |#1| |#2| |#3|) (-10 -7 (-15 -3731 ((-1282) (-777))))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) |#3|) (T -40))
+((-3731 (*1 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-4 *5 (-1253 *4)) (-5 *2 (-1282)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1253 (-413 *5))) (-14 *7 *6))))
+(-13 (-347 |#1| |#2| |#3|) (-10 -7 (-15 -3731 ((-1282) (-777)))))
+((-2120 ((|#2| |#2|) 47)) (-2898 ((|#2| |#2|) 139 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-3132 ((|#2| |#2|) 100 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-3191 ((|#2| |#2|) 101 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-3832 ((|#2| (-115) |#2| (-777)) 135 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-1921 (((-1182 |#2|) |#2|) 44)) (-2256 ((|#2| |#2| (-650 (-618 |#2|))) 18) ((|#2| |#2| (-650 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-41 |#1| |#2|) (-10 -7 (-15 -2120 (|#2| |#2|)) (-15 -2256 (|#2| |#2|)) (-15 -2256 (|#2| |#2| |#2|)) (-15 -2256 (|#2| |#2| (-650 |#2|))) (-15 -2256 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -1921 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -3191 (|#2| |#2|)) (-15 -3132 (|#2| |#2|)) (-15 -2898 (|#2| |#2|)) (-15 -3832 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|)) (-562) (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 |#1| (-618 $)) $)) (-15 -4413 ((-1134 |#1| (-618 $)) $)) (-15 -3735 ($ (-1134 |#1| (-618 $))))))) (T -41))
+((-3832 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-115)) (-5 *4 (-777)) (-4 *5 (-13 (-458) (-1047 (-570)))) (-4 *5 (-562)) (-5 *1 (-41 *5 *2)) (-4 *2 (-436 *5)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *5 (-618 $)) $)) (-15 -4413 ((-1134 *5 (-618 $)) $)) (-15 -3735 ($ (-1134 *5 (-618 $))))))))) (-2898 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $)) (-15 -4413 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-3132 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $)) (-15 -4413 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-3191 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $)) (-15 -4413 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-1921 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-1182 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *4 (-618 $)) $)) (-15 -4413 ((-1134 *4 (-618 $)) $)) (-15 -3735 ($ (-1134 *4 (-618 $))))))))) (-2256 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-618 *2))) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *4 (-618 $)) $)) (-15 -4413 ((-1134 *4 (-618 $)) $)) (-15 -3735 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-2256 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *4 (-618 $)) $)) (-15 -4413 ((-1134 *4 (-618 $)) $)) (-15 -3735 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-2256 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $)) (-15 -4413 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-2256 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $)) (-15 -4413 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))) (-2120 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $)) (-15 -4413 ((-1134 *3 (-618 $)) $)) (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
+(-10 -7 (-15 -2120 (|#2| |#2|)) (-15 -2256 (|#2| |#2|)) (-15 -2256 (|#2| |#2| |#2|)) (-15 -2256 (|#2| |#2| (-650 |#2|))) (-15 -2256 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -1921 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -3191 (|#2| |#2|)) (-15 -3132 (|#2| |#2|)) (-15 -2898 (|#2| |#2|)) (-15 -3832 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|))
+((-3739 (((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))) 23) (((-424 |#3|) |#3| (-650 (-48))) 19)))
+(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -3739 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3739 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))))) (-856) (-799) (-956 (-48) |#2| |#1|)) (T -42))
+((-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *7 (-956 (-48) *6 *5)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-4 *5 (-856)) (-4 *6 (-799)) (-5 *2 (-424 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-956 (-48) *6 *5)))))
+(-10 -7 (-15 -3739 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3739 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48)))))
+((-3881 (((-777) |#2|) 72)) (-3636 (((-777) |#2|) 76)) (-4414 (((-650 |#2|)) 39)) (-2757 (((-777) |#2|) 75)) (-2415 (((-777) |#2|) 71)) (-2179 (((-777) |#2|) 74)) (-2850 (((-650 (-695 |#1|))) 67)) (-2124 (((-650 |#2|)) 62)) (-3078 (((-650 |#2|) |#2|) 50)) (-2468 (((-650 |#2|)) 64)) (-4229 (((-650 |#2|)) 63)) (-3331 (((-650 (-695 |#1|))) 55)) (-3038 (((-650 |#2|)) 61)) (-2823 (((-650 |#2|) |#2|) 49)) (-1473 (((-650 |#2|)) 57)) (-2798 (((-650 (-695 |#1|))) 68)) (-4248 (((-650 |#2|)) 66)) (-2003 (((-1277 |#2|) (-1277 |#2|)) 101 (|has| |#1| (-311)))))
+(((-43 |#1| |#2|) (-10 -7 (-15 -2757 ((-777) |#2|)) (-15 -3636 ((-777) |#2|)) (-15 -2415 ((-777) |#2|)) (-15 -3881 ((-777) |#2|)) (-15 -2179 ((-777) |#2|)) (-15 -1473 ((-650 |#2|))) (-15 -2823 ((-650 |#2|) |#2|)) (-15 -3078 ((-650 |#2|) |#2|)) (-15 -3038 ((-650 |#2|))) (-15 -2124 ((-650 |#2|))) (-15 -4229 ((-650 |#2|))) (-15 -2468 ((-650 |#2|))) (-15 -4248 ((-650 |#2|))) (-15 -3331 ((-650 (-695 |#1|)))) (-15 -2850 ((-650 (-695 |#1|)))) (-15 -2798 ((-650 (-695 |#1|)))) (-15 -4414 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -2003 ((-1277 |#2|) (-1277 |#2|))) |%noBranch|)) (-562) (-423 |#1|)) (T -43))
+((-2003 (*1 *2 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-423 *3)) (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-43 *3 *4)))) (-4414 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2798 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2850 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3331 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4248 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2468 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4229 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2124 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3038 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3078 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2823 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-1473 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2179 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3881 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2415 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3636 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2757 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))))
+(-10 -7 (-15 -2757 ((-777) |#2|)) (-15 -3636 ((-777) |#2|)) (-15 -2415 ((-777) |#2|)) (-15 -3881 ((-777) |#2|)) (-15 -2179 ((-777) |#2|)) (-15 -1473 ((-650 |#2|))) (-15 -2823 ((-650 |#2|) |#2|)) (-15 -3078 ((-650 |#2|) |#2|)) (-15 -3038 ((-650 |#2|))) (-15 -2124 ((-650 |#2|))) (-15 -4229 ((-650 |#2|))) (-15 -2468 ((-650 |#2|))) (-15 -4248 ((-650 |#2|))) (-15 -3331 ((-650 (-695 |#1|)))) (-15 -2850 ((-650 (-695 |#1|)))) (-15 -2798 ((-650 (-695 |#1|)))) (-15 -4414 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -2003 ((-1277 |#2|) (-1277 |#2|))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2101 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2303 (((-1277 (-695 |#1|)) (-1277 $)) NIL) (((-1277 (-695 |#1|))) 24)) (-3016 (((-1277 $)) 55)) (-3761 (($) NIL T CONST)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-1679 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-3649 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-2893 ((|#1| $) NIL)) (-3129 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-3860 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-2693 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-4333 (($ $ (-928)) NIL)) (-4191 ((|#1| $) NIL)) (-4255 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-3497 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-4339 (((-1182 |#1|) $) NIL)) (-4362 (((-112)) 101)) (-2125 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) NIL)) (-2937 (((-3 $ "failed") $) 14 (|has| |#1| (-562)))) (-3933 (((-928)) 56)) (-4356 (((-112)) NIL)) (-2710 (($ $ (-928)) NIL)) (-2637 (((-112)) NIL)) (-1734 (((-112)) NIL)) (-2335 (((-112)) 103)) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-3394 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-1883 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-2078 ((|#1| $) NIL)) (-1806 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-3984 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-2508 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-3548 (($ $ (-928)) NIL)) (-2688 ((|#1| $) NIL)) (-4272 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-4219 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-3231 (((-1182 |#1|) $) NIL)) (-3809 (((-112)) 100)) (-4268 (((-1168) $) NIL)) (-3303 (((-112)) 108)) (-1493 (((-112)) 107)) (-1694 (((-112)) 109)) (-3479 (((-1129) $) NIL)) (-2851 (((-112)) 102)) (-1877 ((|#1| $ (-570)) 58)) (-1533 (((-1277 |#1|) $ (-1277 $)) 52) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) 28) (((-695 |#1|) (-1277 $)) NIL)) (-1417 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL)) (-1334 (((-650 (-959 |#1|)) (-1277 $)) NIL) (((-650 (-959 |#1|))) NIL)) (-2522 (($ $ $) NIL)) (-2024 (((-112)) 97)) (-3735 (((-868) $) 74) (($ (-1277 |#1|)) 22)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) 54)) (-2934 (((-650 (-1277 |#1|))) NIL (|has| |#1| (-562)))) (-1483 (($ $ $ $) NIL)) (-4004 (((-112)) 93)) (-3381 (($ (-695 |#1|) $) 18)) (-3619 (($ $ $) NIL)) (-4015 (((-112)) 99)) (-3596 (((-112)) 94)) (-2208 (((-112)) 92)) (-1814 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 83) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1151 |#2| |#1|) $) 19)))
+(((-44 |#1| |#2| |#3| |#4|) (-13 (-423 |#1|) (-654 (-1151 |#2| |#1|)) (-10 -8 (-15 -3735 ($ (-1277 |#1|))))) (-368) (-928) (-650 (-1186)) (-1277 (-695 |#1|))) (T -44))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-368)) (-14 *6 (-1277 (-695 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))))))
+(-13 (-423 |#1|) (-654 (-1151 |#2| |#1|)) (-10 -8 (-15 -3735 ($ (-1277 |#1|)))))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2196 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2545 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-1574 (($ $) NIL)) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450))) (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-3885 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856))))) (-3287 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3708 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450)))) (-3066 (($ $ $) 33 (|has| $ (-6 -4450)))) (-2230 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450)))) (-3269 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 35 (|has| $ (-6 -4450)))) (-3894 ((|#2| $ |#1| |#2|) 53) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-1244 (-570)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "last" (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450))) (($ $ "rest" $) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "first" (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "value" (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2533 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2360 (((-3 |#2| "failed") |#1| $) 43)) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3455 (($ $ (-777)) NIL) (($ $) 29)) (-3092 (($ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 56) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) NIL)) (-2237 (((-112) $) NIL)) (-3998 (((-570) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) (((-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 20 (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 20 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-4287 (($ (-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 38 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-4210 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2727 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 40 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3312 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-2283 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-1859 (((-112) $) NIL)) (-4268 (((-1168) $) 49 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-1729 (($ $ (-777)) NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2761 (((-650 |#1|) $) 22)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-4286 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 |#1|) $) NIL) (((-650 (-570)) $) NIL)) (-2083 (((-112) |#1| $) NIL) (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856))) (($ $ (-777)) NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 27)) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2928 (((-112) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-4348 (((-650 |#2|) $) NIL) (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 19)) (-3366 (((-112) $) 18)) (-3006 (($) 14)) (-1877 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "first") NIL) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $ "value") NIL)) (-2763 (((-570) $ $) NIL)) (-2535 (($) 13) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-4052 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-2345 (((-112) $) NIL)) (-2308 (($ $) NIL)) (-3103 (($ $) NIL (|has| $ (-6 -4450)))) (-1535 (((-777) $) NIL)) (-3631 (($ $) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3214 (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL) (($ $ $) NIL)) (-2439 (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL) (($ (-650 $)) NIL) (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 31) (($ $ $) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-1738 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") |#1| $) 51)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-856)))) (-2426 (((-777) $) 25 (|has| $ (-6 -4449)))))
(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1109) (-1109)) (T -45))
NIL
(-36 |#1| |#2|)
-((-1550 (((-112) $) 12)) (-1351 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-413 (-570)) $) 25) (($ $ (-413 (-570))) NIL)))
-(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -1550 ((-112) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-47 |#2| |#3|) (-1058) (-798)) (T -46))
+((-4016 (((-112) $) 12)) (-1352 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-413 (-570)) $) 25) (($ $ (-413 (-570))) NIL)))
+(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -4016 ((-112) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-47 |#2| |#3|) (-1058) (-798)) (T -46))
NIL
-(-10 -8 (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -1550 ((-112) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1550 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1601 ((|#2| $) 76)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1715 ((|#1| $ |#2|) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(-10 -8 (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -4016 ((-112) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4016 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3221 ((|#2| $) 76)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1983 ((|#1| $ |#2|) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
(((-47 |#1| |#2|) (-141) (-1058) (-798)) (T -47))
-((-1864 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-1855 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-1550 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-3872 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1890 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1715 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-368)))))
-(-13 (-1058) (-111 |t#1| |t#1|) (-10 -8 (-15 -1864 (|t#1| $)) (-15 -1855 ($ $)) (-15 -1601 (|t#2| $)) (-15 -1351 ($ (-1 |t#1| |t#1|) $)) (-15 -1550 ((-112) $)) (-15 -3872 ($ |t#1| |t#2|)) (-15 -1890 ($ $)) (-15 -1715 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-368)) (-15 -2975 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-6 (-174)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-562)) (-6 (-562)) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (-6 (-38 (-413 (-570)))) |%noBranch|)))
+((-1865 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-1857 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-4016 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-3872 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1891 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1983 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-368)))))
+(-13 (-1058) (-111 |t#1| |t#1|) (-10 -8 (-15 -1865 (|t#1| $)) (-15 -1857 ($ $)) (-15 -3221 (|t#2| $)) (-15 -1352 ($ (-1 |t#1| |t#1|) $)) (-15 -4016 ((-112) $)) (-15 -3872 ($ |t#1| |t#2|)) (-15 -1891 ($ $)) (-15 -1983 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-368)) (-15 -2975 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-6 (-174)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-562)) (-6 (-562)) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (-6 (-38 (-413 (-570)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-294) |has| |#1| (-562)) ((-562) |has| |#1| (-562)) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3028 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-1723 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4028 (((-112) $) 9)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3593 (((-650 (-618 $)) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4283 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3753 (($ $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-2492 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-4143 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4378 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2372 (($ $ $) NIL)) (-4177 (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-413 (-570)))) (|:| |vec| (-1276 (-413 (-570))))) (-695 $) (-1276 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3529 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2268 (($ $) NIL) (($ (-650 $)) NIL)) (-4190 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) NIL)) (-2081 (((-112) $) 11)) (-3431 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4398 (((-1134 (-570) (-618 $)) $) NIL)) (-2598 (($ $ (-570)) NIL)) (-2610 (((-1182 $) (-1182 $) (-618 $)) NIL) (((-1182 $) (-1182 $) (-650 (-618 $))) NIL) (($ $ (-618 $)) NIL) (($ $ (-650 (-618 $))) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1646 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) NIL)) (-3399 (((-3 (-618 $) "failed") $) NIL)) (-1845 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) NIL)) (-1360 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-1566 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1825 (($ $) NIL)) (-1434 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3247 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1322 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1730 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL)) (-2272 (((-777) $) NIL)) (-1876 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3760 (($ $) NIL) (($ $ $) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-4412 (((-1134 (-570) (-618 $)) $) NIL)) (-2886 (($ $) NIL (|has| $ (-1058)))) (-1416 (((-384) $) NIL) (((-227) $) NIL) (((-171 (-384)) $) NIL)) (-3735 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) NIL)) (-2744 (((-777)) NIL T CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-2004 (((-112) (-115)) NIL)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 6 T CONST)) (-1823 (($) 10 T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) 13)) (-2975 (($ $ $) NIL)) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-413 (-570))) NIL) (($ $ (-570)) NIL) (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ $ $) NIL) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
-(((-48) (-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4398 ((-1134 (-570) (-618 $)) $)) (-15 -4412 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2610 ((-1182 $) (-1182 $) (-618 $))) (-15 -2610 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2610 ($ $ (-618 $))) (-15 -2610 ($ $ (-650 (-618 $))))))) (T -48))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-4398 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-4412 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-3529 (*1 *1 *1) (-5 *1 (-48))) (-2610 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-618 (-48))) (-5 *1 (-48)))) (-2610 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-650 (-618 (-48)))) (-5 *1 (-48)))) (-2610 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-48))) (-5 *1 (-48)))) (-2610 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-48)))) (-5 *1 (-48)))))
-(-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4398 ((-1134 (-570) (-618 $)) $)) (-15 -4412 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2610 ((-1182 $) (-1182 $) (-618 $))) (-15 -2610 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2610 ($ $ (-618 $))) (-15 -2610 ($ $ (-650 (-618 $))))))
-((-2416 (((-112) $ $) NIL)) (-3762 (((-650 (-512)) $) 17)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 7)) (-3517 (((-1191) $) 18)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-49) (-13 (-1109) (-10 -8 (-15 -3762 ((-650 (-512)) $)) (-15 -3517 ((-1191) $))))) (T -49))
-((-3762 (*1 *2 *1) (-12 (-5 *2 (-650 (-512))) (-5 *1 (-49)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-49)))))
-(-13 (-1109) (-10 -8 (-15 -3762 ((-650 (-512)) $)) (-15 -3517 ((-1191) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 87)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1390 (((-112) $) 30)) (-4378 (((-3 |#1| "failed") $) 33)) (-3080 ((|#1| $) 34)) (-1890 (($ $) 40)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-1864 ((|#1| $) 31)) (-4296 (($ $) 76)) (-1903 (((-1168) $) NIL)) (-3946 (((-112) $) 43)) (-3479 (((-1129) $) NIL)) (-2339 (($ (-777)) 74)) (-4387 (($ (-650 (-570))) 75)) (-1601 (((-777) $) 44)) (-3735 (((-868) $) 93) (($ (-570)) 71) (($ |#1|) 69)) (-1715 ((|#1| $ $) 28)) (-2744 (((-777)) 73 T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 45 T CONST)) (-1823 (($) 17 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 66)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 67) (($ |#1| $) 60)))
-(((-50 |#1| |#2|) (-13 (-626 |#1|) (-1047 |#1|) (-10 -8 (-15 -1864 (|#1| $)) (-15 -4296 ($ $)) (-15 -1890 ($ $)) (-15 -1715 (|#1| $ $)) (-15 -2339 ($ (-777))) (-15 -4387 ($ (-650 (-570)))) (-15 -3946 ((-112) $)) (-15 -1390 ((-112) $)) (-15 -1601 ((-777) $)) (-15 -1351 ($ (-1 |#1| |#1|) $)))) (-1058) (-650 (-1186))) (T -50))
-((-1864 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-4296 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1890 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1715 (*1 *2 *1 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-2339 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-4387 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3946 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-1601 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-50 *3 *4)) (-14 *4 (-650 (-1186))))))
-(-13 (-626 |#1|) (-1047 |#1|) (-10 -8 (-15 -1864 (|#1| $)) (-15 -4296 ($ $)) (-15 -1890 ($ $)) (-15 -1715 (|#1| $ $)) (-15 -2339 ($ (-777))) (-15 -4387 ($ (-650 (-570)))) (-15 -3946 ((-112) $)) (-15 -1390 ((-112) $)) (-15 -1601 ((-777) $)) (-15 -1351 ($ (-1 |#1| |#1|) $))))
-((-1390 (((-112) (-52)) 18)) (-4378 (((-3 |#1| "failed") (-52)) 20)) (-3080 ((|#1| (-52)) 21)) (-3735 (((-52) |#1|) 14)))
-(((-51 |#1|) (-10 -7 (-15 -3735 ((-52) |#1|)) (-15 -4378 ((-3 |#1| "failed") (-52))) (-15 -1390 ((-112) (-52))) (-15 -3080 (|#1| (-52)))) (-1226)) (T -51))
-((-3080 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1226)))) (-1390 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1226)))) (-4378 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1226)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1226)))))
-(-10 -7 (-15 -3735 ((-52) |#1|)) (-15 -4378 ((-3 |#1| "failed") (-52))) (-15 -1390 ((-112) (-52))) (-15 -3080 (|#1| (-52))))
-((-2416 (((-112) $ $) NIL)) (-4292 (((-780) $) 8)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3191 (((-1113) $) 10)) (-3735 (((-868) $) 15)) (-1859 (((-112) $ $) NIL)) (-3586 (($ (-1113) (-780)) 16)) (-2872 (((-112) $ $) 12)))
-(((-52) (-13 (-1109) (-10 -8 (-15 -3586 ($ (-1113) (-780))) (-15 -3191 ((-1113) $)) (-15 -4292 ((-780) $))))) (T -52))
-((-3586 (*1 *1 *2 *3) (-12 (-5 *2 (-1113)) (-5 *3 (-780)) (-5 *1 (-52)))) (-3191 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))) (-4292 (*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
-(-13 (-1109) (-10 -8 (-15 -3586 ($ (-1113) (-780))) (-15 -3191 ((-1113) $)) (-15 -4292 ((-780) $))))
+((-2417 (((-112) $ $) NIL)) (-3598 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-2041 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-2745 (((-112) $) 9)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3593 (((-650 (-618 $)) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4284 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-3754 (($ $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-4170 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-1480 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4379 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2372 (($ $ $) NIL)) (-1836 (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-413 (-570)))) (|:| |vec| (-1277 (-413 (-570))))) (-695 $) (-1277 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3529 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-2506 (($ $) NIL) (($ (-650 $)) NIL)) (-1941 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) NIL)) (-4340 (((-112) $) 11)) (-1958 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4399 (((-1134 (-570) (-618 $)) $) NIL)) (-2665 (($ $ (-570)) NIL)) (-2771 (((-1182 $) (-1182 $) (-618 $)) NIL) (((-1182 $) (-1182 $) (-650 (-618 $))) NIL) (($ $ (-618 $)) NIL) (($ $ (-650 (-618 $))) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2462 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) NIL)) (-2814 (((-3 (-618 $) "failed") $) NIL)) (-1847 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) NIL)) (-1361 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-4198 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1826 (($ $) NIL)) (-1435 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3953 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1739 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1731 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL)) (-2547 (((-777) $) NIL)) (-1877 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-2008 (($ $) NIL) (($ $ $) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-4413 (((-1134 (-570) (-618 $)) $) NIL)) (-3597 (($ $) NIL (|has| $ (-1058)))) (-1417 (((-384) $) NIL) (((-227) $) NIL) (((-171 (-384)) $) NIL)) (-3735 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) NIL)) (-1609 (((-777)) NIL T CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-2818 (((-112) (-115)) NIL)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 6 T CONST)) (-1824 (($) 10 T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) 13)) (-2975 (($ $ $) NIL)) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-413 (-570))) NIL) (($ $ (-570)) NIL) (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ $ $) NIL) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
+(((-48) (-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2771 ((-1182 $) (-1182 $) (-618 $))) (-15 -2771 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2771 ($ $ (-618 $))) (-15 -2771 ($ $ (-650 (-618 $))))))) (T -48))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-4399 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-4413 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-3529 (*1 *1 *1) (-5 *1 (-48))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-618 (-48))) (-5 *1 (-48)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-650 (-618 (-48)))) (-5 *1 (-48)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-48))) (-5 *1 (-48)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-48)))) (-5 *1 (-48)))))
+(-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2771 ((-1182 $) (-1182 $) (-618 $))) (-15 -2771 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2771 ($ $ (-618 $))) (-15 -2771 ($ $ (-650 (-618 $))))))
+((-2417 (((-112) $ $) NIL)) (-3762 (((-650 (-512)) $) 17)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 7)) (-3515 (((-1191) $) 18)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-49) (-13 (-1109) (-10 -8 (-15 -3762 ((-650 (-512)) $)) (-15 -3515 ((-1191) $))))) (T -49))
+((-3762 (*1 *2 *1) (-12 (-5 *2 (-650 (-512))) (-5 *1 (-49)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-49)))))
+(-13 (-1109) (-10 -8 (-15 -3762 ((-650 (-512)) $)) (-15 -3515 ((-1191) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 87)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3771 (((-112) $) 30)) (-4379 (((-3 |#1| "failed") $) 33)) (-3080 ((|#1| $) 34)) (-1891 (($ $) 40)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1865 ((|#1| $) 31)) (-3556 (($ $) 76)) (-4268 (((-1168) $) NIL)) (-3114 (((-112) $) 43)) (-3479 (((-1129) $) NIL)) (-2340 (($ (-777)) 74)) (-4388 (($ (-650 (-570))) 75)) (-3221 (((-777) $) 44)) (-3735 (((-868) $) 93) (($ (-570)) 71) (($ |#1|) 69)) (-1983 ((|#1| $ $) 28)) (-1609 (((-777)) 73 T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 45 T CONST)) (-1824 (($) 17 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 66)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 67) (($ |#1| $) 60)))
+(((-50 |#1| |#2|) (-13 (-626 |#1|) (-1047 |#1|) (-10 -8 (-15 -1865 (|#1| $)) (-15 -3556 ($ $)) (-15 -1891 ($ $)) (-15 -1983 (|#1| $ $)) (-15 -2340 ($ (-777))) (-15 -4388 ($ (-650 (-570)))) (-15 -3114 ((-112) $)) (-15 -3771 ((-112) $)) (-15 -3221 ((-777) $)) (-15 -1352 ($ (-1 |#1| |#1|) $)))) (-1058) (-650 (-1186))) (T -50))
+((-1865 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-3556 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1891 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1983 (*1 *2 *1 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-2340 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-4388 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3114 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-50 *3 *4)) (-14 *4 (-650 (-1186))))))
+(-13 (-626 |#1|) (-1047 |#1|) (-10 -8 (-15 -1865 (|#1| $)) (-15 -3556 ($ $)) (-15 -1891 ($ $)) (-15 -1983 (|#1| $ $)) (-15 -2340 ($ (-777))) (-15 -4388 ($ (-650 (-570)))) (-15 -3114 ((-112) $)) (-15 -3771 ((-112) $)) (-15 -3221 ((-777) $)) (-15 -1352 ($ (-1 |#1| |#1|) $))))
+((-3771 (((-112) (-52)) 18)) (-4379 (((-3 |#1| "failed") (-52)) 20)) (-3080 ((|#1| (-52)) 21)) (-3735 (((-52) |#1|) 14)))
+(((-51 |#1|) (-10 -7 (-15 -3735 ((-52) |#1|)) (-15 -4379 ((-3 |#1| "failed") (-52))) (-15 -3771 ((-112) (-52))) (-15 -3080 (|#1| (-52)))) (-1227)) (T -51))
+((-3080 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227)))) (-3771 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1227)))) (-4379 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1227)))))
+(-10 -7 (-15 -3735 ((-52) |#1|)) (-15 -4379 ((-3 |#1| "failed") (-52))) (-15 -3771 ((-112) (-52))) (-15 -3080 (|#1| (-52))))
+((-2417 (((-112) $ $) NIL)) (-4293 (((-780) $) 8)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3192 (((-1113) $) 10)) (-3735 (((-868) $) 15)) (-3866 (((-112) $ $) NIL)) (-3586 (($ (-1113) (-780)) 16)) (-2872 (((-112) $ $) 12)))
+(((-52) (-13 (-1109) (-10 -8 (-15 -3586 ($ (-1113) (-780))) (-15 -3192 ((-1113) $)) (-15 -4293 ((-780) $))))) (T -52))
+((-3586 (*1 *1 *2 *3) (-12 (-5 *2 (-1113)) (-5 *3 (-780)) (-5 *1 (-52)))) (-3192 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))) (-4293 (*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
+(-13 (-1109) (-10 -8 (-15 -3586 ($ (-1113) (-780))) (-15 -3192 ((-1113) $)) (-15 -4293 ((-780) $))))
((-3381 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 19)))
(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3381 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1058) (-654 |#1|) (-858 |#1|)) (T -53))
((-3381 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-654 *5)) (-4 *5 (-1058)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-858 *5)))))
(-10 -7 (-15 -3381 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-2684 ((|#3| |#3| (-650 (-1186))) 46)) (-3429 ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928)) 32) ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|) 31)))
-(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -3429 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -3429 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -2684 (|#3| |#3| (-650 (-1186))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -54))
-((-2684 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))) (-3429 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-650 (-1085 *5 *6 *2))) (-5 *4 (-928)) (-4 *5 (-1109)) (-4 *6 (-13 (-1058) (-893 *5) (-620 (-899 *5)))) (-4 *2 (-13 (-436 *6) (-893 *5) (-620 (-899 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-3429 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-1085 *4 *5 *2))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-54 *4 *5 *2)))))
-(-10 -7 (-15 -3429 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -3429 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -2684 (|#3| |#3| (-650 (-1186)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 14)) (-4378 (((-3 (-777) "failed") $) 34)) (-3080 (((-777) $) NIL)) (-2081 (((-112) $) 16)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) 18)) (-3735 (((-868) $) 23) (($ (-777)) 29)) (-1859 (((-112) $ $) NIL)) (-3498 (($) 11 T CONST)) (-2872 (((-112) $ $) 20)))
-(((-55) (-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -3498 ($) -3640) (-15 -4028 ((-112) $)) (-15 -2081 ((-112) $))))) (T -55))
-((-3498 (*1 *1) (-5 *1 (-55))) (-4028 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))) (-2081 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))))
-(-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -3498 ($) -3640) (-15 -4028 ((-112) $)) (-15 -2081 ((-112) $))))
-((-3594 (((-112) $ (-777)) 27)) (-3871 (($ $ (-570) |#3|) 66)) (-2898 (($ $ (-570) |#4|) 70)) (-2653 ((|#3| $ (-570)) 79)) (-2836 (((-650 |#2|) $) 47)) (-2742 (((-112) $ (-777)) 31)) (-3464 (((-112) |#2| $) 74)) (-3776 (($ (-1 |#2| |#2|) $) 55)) (-1351 (($ (-1 |#2| |#2|) $) 54) (($ (-1 |#2| |#2| |#2|) $ $) 58) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 62)) (-3452 (((-112) $ (-777)) 29)) (-1952 (($ $ |#2|) 52)) (-1671 (((-112) (-1 (-112) |#2|) $) 21)) (-1876 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) 35)) (-3486 (((-777) (-1 (-112) |#2|) $) 41) (((-777) |#2| $) 76)) (-3915 (($ $) 51)) (-3541 ((|#4| $ (-570)) 82)) (-3735 (((-868) $) 88)) (-4368 (((-112) (-1 (-112) |#2|) $) 20)) (-2872 (((-112) $ $) 73)) (-2426 (((-777) $) 32)))
-(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2898 (|#1| |#1| (-570) |#4|)) (-15 -3871 (|#1| |#1| (-570) |#3|)) (-15 -2836 ((-650 |#2|) |#1|)) (-15 -3541 (|#4| |#1| (-570))) (-15 -2653 (|#3| |#1| (-570))) (-15 -1876 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) (-570))) (-15 -1952 (|#1| |#1| |#2|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3464 ((-112) |#2| |#1|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777))) (-15 -3915 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1226) (-378 |#2|) (-378 |#2|)) (T -56))
-NIL
-(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2898 (|#1| |#1| (-570) |#4|)) (-15 -3871 (|#1| |#1| (-570) |#3|)) (-15 -2836 ((-650 |#2|) |#1|)) (-15 -3541 (|#4| |#1| (-570))) (-15 -2653 (|#3| |#1| (-570))) (-15 -1876 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) (-570))) (-15 -1952 (|#1| |#1| |#2|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3464 ((-112) |#2| |#1|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777))) (-15 -3915 (|#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) (-570) |#1|) 45)) (-3871 (($ $ (-570) |#2|) 43)) (-2898 (($ $ (-570) |#3|) 42)) (-2450 (($) 7 T CONST)) (-2653 ((|#2| $ (-570)) 47)) (-3790 ((|#1| $ (-570) (-570) |#1|) 44)) (-3712 ((|#1| $ (-570) (-570)) 49)) (-2836 (((-650 |#1|) $) 31)) (-3153 (((-777) $) 52)) (-4286 (($ (-777) (-777) |#1|) 58)) (-3167 (((-777) $) 51)) (-2742 (((-112) $ (-777)) 9)) (-3118 (((-570) $) 56)) (-1607 (((-570) $) 54)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3392 (((-570) $) 55)) (-1555 (((-570) $) 53)) (-3776 (($ (-1 |#1| |#1|) $) 35)) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) 57)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3541 ((|#3| $ (-570)) 46)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-57 |#1| |#2| |#3|) (-141) (-1226) (-378 |t#1|) (-378 |t#1|)) (T -57))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-4286 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-777)) (-4 *3 (-1226)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1952 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1226)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3118 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3392 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-1607 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-1555 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3153 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-3167 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-1876 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-1226)))) (-3712 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-1226)))) (-1876 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1226)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)))) (-2653 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1226)) (-4 *5 (-378 *4)) (-4 *2 (-378 *4)))) (-3541 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1226)) (-4 *5 (-378 *4)) (-4 *2 (-378 *4)))) (-2836 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-650 *3)))) (-3895 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1226)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)))) (-3790 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1226)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)))) (-3871 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1226)) (-4 *3 (-378 *4)) (-4 *5 (-378 *4)))) (-2898 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1226)) (-4 *5 (-378 *4)) (-4 *3 (-378 *4)))) (-3776 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1351 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1351 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
-(-13 (-495 |t#1|) (-10 -8 (-6 -4449) (-6 -4448) (-15 -4286 ($ (-777) (-777) |t#1|)) (-15 -1952 ($ $ |t#1|)) (-15 -3118 ((-570) $)) (-15 -3392 ((-570) $)) (-15 -1607 ((-570) $)) (-15 -1555 ((-570) $)) (-15 -3153 ((-777) $)) (-15 -3167 ((-777) $)) (-15 -1876 (|t#1| $ (-570) (-570))) (-15 -3712 (|t#1| $ (-570) (-570))) (-15 -1876 (|t#1| $ (-570) (-570) |t#1|)) (-15 -2653 (|t#2| $ (-570))) (-15 -3541 (|t#3| $ (-570))) (-15 -2836 ((-650 |t#1|) $)) (-15 -3895 (|t#1| $ (-570) (-570) |t#1|)) (-15 -3790 (|t#1| $ (-570) (-570) |t#1|)) (-15 -3871 ($ $ (-570) |t#2|)) (-15 -2898 ($ $ (-570) |t#3|)) (-15 -1351 ($ (-1 |t#1| |t#1|) $)) (-15 -3776 ($ (-1 |t#1| |t#1|) $)) (-15 -1351 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1351 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-3734 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-1351 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
-(((-58 |#1| |#2|) (-10 -7 (-15 -3734 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1351 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1226) (-1226)) (T -58))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1226)) (-4 *2 (-1226)) (-5 *1 (-58 *5 *2)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1226)) (-4 *5 (-1226)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
-(-10 -7 (-15 -3734 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1351 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-1405 (($ (-650 |#1|)) 11) (($ (-777) |#1|) 14)) (-4286 (($ (-777) |#1|) 13)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 10)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -1405 ($ (-650 |#1|))) (-15 -1405 ($ (-777) |#1|)))) (-1226)) (T -59))
-((-1405 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-59 *3)))) (-1405 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-59 *3)) (-4 *3 (-1226)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -1405 ($ (-650 |#1|))) (-15 -1405 ($ (-777) |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3871 (($ $ (-570) (-59 |#1|)) NIL)) (-2898 (($ $ (-570) (-59 |#1|)) NIL)) (-2450 (($) NIL T CONST)) (-2653 (((-59 |#1|) $ (-570)) NIL)) (-3790 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3712 ((|#1| $ (-570) (-570)) NIL)) (-2836 (((-650 |#1|) $) NIL)) (-3153 (((-777) $) NIL)) (-4286 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-3118 (((-570) $) NIL)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3392 (((-570) $) NIL)) (-1555 (((-570) $) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3541 (((-59 |#1|) $ (-570)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4449))) (-1226)) (T -60))
-NIL
-(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4449)))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 74) (((-3 $ "failed") (-1276 (-320 (-570)))) 63) (((-3 $ "failed") (-1276 (-959 (-384)))) 94) (((-3 $ "failed") (-1276 (-959 (-570)))) 84) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 52) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 39)) (-3080 (($ (-1276 (-320 (-384)))) 70) (($ (-1276 (-320 (-570)))) 59) (($ (-1276 (-959 (-384)))) 90) (($ (-1276 (-959 (-570)))) 80) (($ (-1276 (-413 (-959 (-384))))) 48) (($ (-1276 (-413 (-959 (-570))))) 32)) (-3292 (((-1281) $) 124)) (-3735 (((-868) $) 118) (($ (-650 (-334))) 103) (($ (-334)) 97) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 101) (($ (-1276 (-344 (-3748 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3748) (-705)))) 31)))
-(((-61 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3748) (-705))))))) (-1186)) (T -61))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3748) (-705)))) (-5 *1 (-61 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3748) (-705)))))))
-((-3292 (((-1281) $) 54) (((-1281)) 55)) (-3735 (((-868) $) 51)))
-(((-62 |#1|) (-13 (-401) (-10 -7 (-15 -3292 ((-1281))))) (-1186)) (T -62))
-((-3292 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-62 *3)) (-14 *3 (-1186)))))
-(-13 (-401) (-10 -7 (-15 -3292 ((-1281)))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 153) (((-3 $ "failed") (-1276 (-320 (-570)))) 143) (((-3 $ "failed") (-1276 (-959 (-384)))) 173) (((-3 $ "failed") (-1276 (-959 (-570)))) 163) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 132) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 120)) (-3080 (($ (-1276 (-320 (-384)))) 149) (($ (-1276 (-320 (-570)))) 139) (($ (-1276 (-959 (-384)))) 169) (($ (-1276 (-959 (-570)))) 159) (($ (-1276 (-413 (-959 (-384))))) 128) (($ (-1276 (-413 (-959 (-570))))) 113)) (-3292 (((-1281) $) 106)) (-3735 (((-868) $) 100) (($ (-650 (-334))) 30) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 33) (($ (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705)))) 98)))
-(((-63 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705))))))) (-1186)) (T -63))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705)))) (-5 *1 (-63 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705)))))))
-((-4378 (((-3 $ "failed") (-320 (-384))) 41) (((-3 $ "failed") (-320 (-570))) 46) (((-3 $ "failed") (-959 (-384))) 50) (((-3 $ "failed") (-959 (-570))) 54) (((-3 $ "failed") (-413 (-959 (-384)))) 36) (((-3 $ "failed") (-413 (-959 (-570)))) 29)) (-3080 (($ (-320 (-384))) 39) (($ (-320 (-570))) 44) (($ (-959 (-384))) 48) (($ (-959 (-570))) 52) (($ (-413 (-959 (-384)))) 34) (($ (-413 (-959 (-570)))) 26)) (-3292 (((-1281) $) 76)) (-3735 (((-868) $) 69) (($ (-650 (-334))) 61) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 64) (($ (-344 (-3748 (QUOTE X)) (-3748) (-705))) 25)))
-(((-64 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748 (QUOTE X)) (-3748) (-705)))))) (-1186)) (T -64))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3748 (QUOTE X)) (-3748) (-705))) (-5 *1 (-64 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748 (QUOTE X)) (-3748) (-705))))))
-((-4378 (((-3 $ "failed") (-695 (-320 (-384)))) 114) (((-3 $ "failed") (-695 (-320 (-570)))) 102) (((-3 $ "failed") (-695 (-959 (-384)))) 136) (((-3 $ "failed") (-695 (-959 (-570)))) 125) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 90) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 76)) (-3080 (($ (-695 (-320 (-384)))) 110) (($ (-695 (-320 (-570)))) 98) (($ (-695 (-959 (-384)))) 132) (($ (-695 (-959 (-570)))) 121) (($ (-695 (-413 (-959 (-384))))) 86) (($ (-695 (-413 (-959 (-570))))) 69)) (-3292 (((-1281) $) 144)) (-3735 (((-868) $) 138) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 32) (($ (-695 (-344 (-3748) (-3748 (QUOTE X) (QUOTE HESS)) (-705)))) 59)))
-(((-65 |#1|) (-13 (-389) (-622 (-695 (-344 (-3748) (-3748 (QUOTE X) (QUOTE HESS)) (-705))))) (-1186)) (T -65))
-NIL
-(-13 (-389) (-622 (-695 (-344 (-3748) (-3748 (QUOTE X) (QUOTE HESS)) (-705)))))
-((-4378 (((-3 $ "failed") (-320 (-384))) 60) (((-3 $ "failed") (-320 (-570))) 65) (((-3 $ "failed") (-959 (-384))) 69) (((-3 $ "failed") (-959 (-570))) 73) (((-3 $ "failed") (-413 (-959 (-384)))) 55) (((-3 $ "failed") (-413 (-959 (-570)))) 48)) (-3080 (($ (-320 (-384))) 58) (($ (-320 (-570))) 63) (($ (-959 (-384))) 67) (($ (-959 (-570))) 71) (($ (-413 (-959 (-384)))) 53) (($ (-413 (-959 (-570)))) 45)) (-3292 (((-1281) $) 82)) (-3735 (((-868) $) 76) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 32) (($ (-344 (-3748) (-3748 (QUOTE XC)) (-705))) 40)))
-(((-66 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748) (-3748 (QUOTE XC)) (-705)))))) (-1186)) (T -66))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3748) (-3748 (QUOTE XC)) (-705))) (-5 *1 (-66 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748) (-3748 (QUOTE XC)) (-705))))))
-((-3292 (((-1281) $) 68)) (-3735 (((-868) $) 62) (($ (-695 (-705))) 54) (($ (-650 (-334))) 53) (($ (-334)) 60) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 58)))
+((-2232 ((|#3| |#3| (-650 (-1186))) 46)) (-1949 ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928)) 32) ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|) 31)))
+(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -1949 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -1949 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -2232 (|#3| |#3| (-650 (-1186))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -54))
+((-2232 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))) (-1949 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-650 (-1085 *5 *6 *2))) (-5 *4 (-928)) (-4 *5 (-1109)) (-4 *6 (-13 (-1058) (-893 *5) (-620 (-899 *5)))) (-4 *2 (-13 (-436 *6) (-893 *5) (-620 (-899 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-1949 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-1085 *4 *5 *2))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-54 *4 *5 *2)))))
+(-10 -7 (-15 -1949 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -1949 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -2232 (|#3| |#3| (-650 (-1186)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 14)) (-4379 (((-3 (-777) "failed") $) 34)) (-3080 (((-777) $) NIL)) (-4340 (((-112) $) 16)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) 18)) (-3735 (((-868) $) 23) (($ (-777)) 29)) (-3866 (((-112) $ $) NIL)) (-1317 (($) 11 T CONST)) (-2872 (((-112) $ $) 20)))
+(((-55) (-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -1317 ($) -3640) (-15 -2745 ((-112) $)) (-15 -4340 ((-112) $))))) (T -55))
+((-1317 (*1 *1) (-5 *1 (-55))) (-2745 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))) (-4340 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))))
+(-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -1317 ($) -3640) (-15 -2745 ((-112) $)) (-15 -4340 ((-112) $))))
+((-4095 (((-112) $ (-777)) 27)) (-1850 (($ $ (-570) |#3|) 66)) (-3693 (($ $ (-570) |#4|) 70)) (-1991 ((|#3| $ (-570)) 79)) (-2835 (((-650 |#2|) $) 47)) (-1586 (((-112) $ (-777)) 31)) (-2218 (((-112) |#2| $) 74)) (-3776 (($ (-1 |#2| |#2|) $) 55)) (-1352 (($ (-1 |#2| |#2|) $) 54) (($ (-1 |#2| |#2| |#2|) $ $) 58) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 62)) (-2113 (((-112) $ (-777)) 29)) (-3531 (($ $ |#2|) 52)) (-2697 (((-112) (-1 (-112) |#2|) $) 21)) (-1877 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) 35)) (-3490 (((-777) (-1 (-112) |#2|) $) 41) (((-777) |#2| $) 76)) (-3916 (($ $) 51)) (-1743 ((|#4| $ (-570)) 82)) (-3735 (((-868) $) 88)) (-2964 (((-112) (-1 (-112) |#2|) $) 20)) (-2872 (((-112) $ $) 73)) (-2426 (((-777) $) 32)))
+(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3693 (|#1| |#1| (-570) |#4|)) (-15 -1850 (|#1| |#1| (-570) |#3|)) (-15 -2835 ((-650 |#2|) |#1|)) (-15 -1743 (|#4| |#1| (-570))) (-15 -1991 (|#3| |#1| (-570))) (-15 -1877 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) (-570))) (-15 -3531 (|#1| |#1| |#2|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2218 ((-112) |#2| |#1|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777))) (-15 -3916 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1227) (-378 |#2|) (-378 |#2|)) (T -56))
+NIL
+(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3693 (|#1| |#1| (-570) |#4|)) (-15 -1850 (|#1| |#1| (-570) |#3|)) (-15 -2835 ((-650 |#2|) |#1|)) (-15 -1743 (|#4| |#1| (-570))) (-15 -1991 (|#3| |#1| (-570))) (-15 -1877 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) (-570))) (-15 -3531 (|#1| |#1| |#2|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2218 ((-112) |#2| |#1|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777))) (-15 -3916 (|#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) (-570) |#1|) 45)) (-1850 (($ $ (-570) |#2|) 43)) (-3693 (($ $ (-570) |#3|) 42)) (-3761 (($) 7 T CONST)) (-1991 ((|#2| $ (-570)) 47)) (-3789 ((|#1| $ (-570) (-570) |#1|) 44)) (-3713 ((|#1| $ (-570) (-570)) 49)) (-2835 (((-650 |#1|) $) 31)) (-3155 (((-777) $) 52)) (-4287 (($ (-777) (-777) |#1|) 58)) (-3167 (((-777) $) 51)) (-1586 (((-112) $ (-777)) 9)) (-2055 (((-570) $) 56)) (-3295 (((-570) $) 54)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2755 (((-570) $) 55)) (-4067 (((-570) $) 53)) (-3776 (($ (-1 |#1| |#1|) $) 35)) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) 57)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1743 ((|#3| $ (-570)) 46)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-57 |#1| |#2| |#3|) (-141) (-1227) (-378 |t#1|) (-378 |t#1|)) (T -57))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-4287 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-777)) (-4 *3 (-1227)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3531 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1227)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2055 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-2755 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3295 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-4067 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3155 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-3167 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-1877 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-1227)))) (-3713 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-1227)))) (-1877 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1227)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)))) (-1991 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1227)) (-4 *5 (-378 *4)) (-4 *2 (-378 *4)))) (-1743 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1227)) (-4 *5 (-378 *4)) (-4 *2 (-378 *4)))) (-2835 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-650 *3)))) (-3894 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1227)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)))) (-3789 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1227)) (-4 *4 (-378 *2)) (-4 *5 (-378 *2)))) (-1850 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1227)) (-4 *3 (-378 *4)) (-4 *5 (-378 *4)))) (-3693 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1227)) (-4 *5 (-378 *4)) (-4 *3 (-378 *4)))) (-3776 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1352 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1352 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
+(-13 (-495 |t#1|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -4287 ($ (-777) (-777) |t#1|)) (-15 -3531 ($ $ |t#1|)) (-15 -2055 ((-570) $)) (-15 -2755 ((-570) $)) (-15 -3295 ((-570) $)) (-15 -4067 ((-570) $)) (-15 -3155 ((-777) $)) (-15 -3167 ((-777) $)) (-15 -1877 (|t#1| $ (-570) (-570))) (-15 -3713 (|t#1| $ (-570) (-570))) (-15 -1877 (|t#1| $ (-570) (-570) |t#1|)) (-15 -1991 (|t#2| $ (-570))) (-15 -1743 (|t#3| $ (-570))) (-15 -2835 ((-650 |t#1|) $)) (-15 -3894 (|t#1| $ (-570) (-570) |t#1|)) (-15 -3789 (|t#1| $ (-570) (-570) |t#1|)) (-15 -1850 ($ $ (-570) |t#2|)) (-15 -3693 ($ $ (-570) |t#3|)) (-15 -1352 ($ (-1 |t#1| |t#1|) $)) (-15 -3776 ($ (-1 |t#1| |t#1|) $)) (-15 -1352 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1352 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2942 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-1352 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
+(((-58 |#1| |#2|) (-10 -7 (-15 -2942 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1352 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1227) (-1227)) (T -58))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1227)) (-4 *2 (-1227)) (-5 *1 (-58 *5 *2)))) (-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1227)) (-4 *5 (-1227)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
+(-10 -7 (-15 -2942 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1352 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1455 (($ (-650 |#1|)) 11) (($ (-777) |#1|) 14)) (-4287 (($ (-777) |#1|) 13)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 10)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -1455 ($ (-650 |#1|))) (-15 -1455 ($ (-777) |#1|)))) (-1227)) (T -59))
+((-1455 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-59 *3)))) (-1455 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-59 *3)) (-4 *3 (-1227)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -1455 ($ (-650 |#1|))) (-15 -1455 ($ (-777) |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) (-570) |#1|) NIL)) (-1850 (($ $ (-570) (-59 |#1|)) NIL)) (-3693 (($ $ (-570) (-59 |#1|)) NIL)) (-3761 (($) NIL T CONST)) (-1991 (((-59 |#1|) $ (-570)) NIL)) (-3789 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3713 ((|#1| $ (-570) (-570)) NIL)) (-2835 (((-650 |#1|) $) NIL)) (-3155 (((-777) $) NIL)) (-4287 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2055 (((-570) $) NIL)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2755 (((-570) $) NIL)) (-4067 (((-570) $) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-1743 (((-59 |#1|) $ (-570)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4450))) (-1227)) (T -60))
+NIL
+(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4450)))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 74) (((-3 $ "failed") (-1277 (-320 (-570)))) 63) (((-3 $ "failed") (-1277 (-959 (-384)))) 94) (((-3 $ "failed") (-1277 (-959 (-570)))) 84) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 52) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 39)) (-3080 (($ (-1277 (-320 (-384)))) 70) (($ (-1277 (-320 (-570)))) 59) (($ (-1277 (-959 (-384)))) 90) (($ (-1277 (-959 (-570)))) 80) (($ (-1277 (-413 (-959 (-384))))) 48) (($ (-1277 (-413 (-959 (-570))))) 32)) (-3291 (((-1282) $) 124)) (-3735 (((-868) $) 118) (($ (-650 (-334))) 103) (($ (-334)) 97) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 101) (($ (-1277 (-344 (-3749 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3749) (-705)))) 31)))
+(((-61 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3749) (-705))))))) (-1186)) (T -61))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3749) (-705)))) (-5 *1 (-61 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3749) (-705)))))))
+((-3291 (((-1282) $) 54) (((-1282)) 55)) (-3735 (((-868) $) 51)))
+(((-62 |#1|) (-13 (-401) (-10 -7 (-15 -3291 ((-1282))))) (-1186)) (T -62))
+((-3291 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-62 *3)) (-14 *3 (-1186)))))
+(-13 (-401) (-10 -7 (-15 -3291 ((-1282)))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 153) (((-3 $ "failed") (-1277 (-320 (-570)))) 143) (((-3 $ "failed") (-1277 (-959 (-384)))) 173) (((-3 $ "failed") (-1277 (-959 (-570)))) 163) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 132) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 120)) (-3080 (($ (-1277 (-320 (-384)))) 149) (($ (-1277 (-320 (-570)))) 139) (($ (-1277 (-959 (-384)))) 169) (($ (-1277 (-959 (-570)))) 159) (($ (-1277 (-413 (-959 (-384))))) 128) (($ (-1277 (-413 (-959 (-570))))) 113)) (-3291 (((-1282) $) 106)) (-3735 (((-868) $) 100) (($ (-650 (-334))) 30) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 33) (($ (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705)))) 98)))
+(((-63 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705))))))) (-1186)) (T -63))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705)))) (-5 *1 (-63 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705)))))))
+((-4379 (((-3 $ "failed") (-320 (-384))) 41) (((-3 $ "failed") (-320 (-570))) 46) (((-3 $ "failed") (-959 (-384))) 50) (((-3 $ "failed") (-959 (-570))) 54) (((-3 $ "failed") (-413 (-959 (-384)))) 36) (((-3 $ "failed") (-413 (-959 (-570)))) 29)) (-3080 (($ (-320 (-384))) 39) (($ (-320 (-570))) 44) (($ (-959 (-384))) 48) (($ (-959 (-570))) 52) (($ (-413 (-959 (-384)))) 34) (($ (-413 (-959 (-570)))) 26)) (-3291 (((-1282) $) 76)) (-3735 (((-868) $) 69) (($ (-650 (-334))) 61) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 64) (($ (-344 (-3749 (QUOTE X)) (-3749) (-705))) 25)))
+(((-64 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749 (QUOTE X)) (-3749) (-705)))))) (-1186)) (T -64))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3749 (QUOTE X)) (-3749) (-705))) (-5 *1 (-64 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749 (QUOTE X)) (-3749) (-705))))))
+((-4379 (((-3 $ "failed") (-695 (-320 (-384)))) 114) (((-3 $ "failed") (-695 (-320 (-570)))) 102) (((-3 $ "failed") (-695 (-959 (-384)))) 136) (((-3 $ "failed") (-695 (-959 (-570)))) 125) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 90) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 76)) (-3080 (($ (-695 (-320 (-384)))) 110) (($ (-695 (-320 (-570)))) 98) (($ (-695 (-959 (-384)))) 132) (($ (-695 (-959 (-570)))) 121) (($ (-695 (-413 (-959 (-384))))) 86) (($ (-695 (-413 (-959 (-570))))) 69)) (-3291 (((-1282) $) 144)) (-3735 (((-868) $) 138) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 32) (($ (-695 (-344 (-3749) (-3749 (QUOTE X) (QUOTE HESS)) (-705)))) 59)))
+(((-65 |#1|) (-13 (-389) (-622 (-695 (-344 (-3749) (-3749 (QUOTE X) (QUOTE HESS)) (-705))))) (-1186)) (T -65))
+NIL
+(-13 (-389) (-622 (-695 (-344 (-3749) (-3749 (QUOTE X) (QUOTE HESS)) (-705)))))
+((-4379 (((-3 $ "failed") (-320 (-384))) 60) (((-3 $ "failed") (-320 (-570))) 65) (((-3 $ "failed") (-959 (-384))) 69) (((-3 $ "failed") (-959 (-570))) 73) (((-3 $ "failed") (-413 (-959 (-384)))) 55) (((-3 $ "failed") (-413 (-959 (-570)))) 48)) (-3080 (($ (-320 (-384))) 58) (($ (-320 (-570))) 63) (($ (-959 (-384))) 67) (($ (-959 (-570))) 71) (($ (-413 (-959 (-384)))) 53) (($ (-413 (-959 (-570)))) 45)) (-3291 (((-1282) $) 82)) (-3735 (((-868) $) 76) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 32) (($ (-344 (-3749) (-3749 (QUOTE XC)) (-705))) 40)))
+(((-66 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749) (-3749 (QUOTE XC)) (-705)))))) (-1186)) (T -66))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3749) (-3749 (QUOTE XC)) (-705))) (-5 *1 (-66 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749) (-3749 (QUOTE XC)) (-705))))))
+((-3291 (((-1282) $) 68)) (-3735 (((-868) $) 62) (($ (-695 (-705))) 54) (($ (-650 (-334))) 53) (($ (-334)) 60) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 58)))
(((-67 |#1|) (-388) (-1186)) (T -67))
NIL
(-388)
-((-3292 (((-1281) $) 69)) (-3735 (((-868) $) 63) (($ (-695 (-705))) 55) (($ (-650 (-334))) 54) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 60)))
+((-3291 (((-1282) $) 69)) (-3735 (((-868) $) 63) (($ (-695 (-705))) 55) (($ (-650 (-334))) 54) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 60)))
(((-68 |#1|) (-388) (-1186)) (T -68))
NIL
(-388)
-((-3292 (((-1281) $) NIL) (((-1281)) 33)) (-3735 (((-868) $) NIL)))
-(((-69 |#1|) (-13 (-401) (-10 -7 (-15 -3292 ((-1281))))) (-1186)) (T -69))
-((-3292 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-69 *3)) (-14 *3 (-1186)))))
-(-13 (-401) (-10 -7 (-15 -3292 ((-1281)))))
-((-3292 (((-1281) $) 75)) (-3735 (((-868) $) 69) (($ (-695 (-705))) 61) (($ (-650 (-334))) 63) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 60)))
+((-3291 (((-1282) $) NIL) (((-1282)) 33)) (-3735 (((-868) $) NIL)))
+(((-69 |#1|) (-13 (-401) (-10 -7 (-15 -3291 ((-1282))))) (-1186)) (T -69))
+((-3291 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-69 *3)) (-14 *3 (-1186)))))
+(-13 (-401) (-10 -7 (-15 -3291 ((-1282)))))
+((-3291 (((-1282) $) 75)) (-3735 (((-868) $) 69) (($ (-695 (-705))) 61) (($ (-650 (-334))) 63) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 60)))
(((-70 |#1|) (-388) (-1186)) (T -70))
NIL
(-388)
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 111) (((-3 $ "failed") (-1276 (-320 (-570)))) 100) (((-3 $ "failed") (-1276 (-959 (-384)))) 131) (((-3 $ "failed") (-1276 (-959 (-570)))) 121) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 89) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 76)) (-3080 (($ (-1276 (-320 (-384)))) 107) (($ (-1276 (-320 (-570)))) 96) (($ (-1276 (-959 (-384)))) 127) (($ (-1276 (-959 (-570)))) 117) (($ (-1276 (-413 (-959 (-384))))) 85) (($ (-1276 (-413 (-959 (-570))))) 69)) (-3292 (((-1281) $) 144)) (-3735 (((-868) $) 138) (($ (-650 (-334))) 133) (($ (-334)) 136) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 61) (($ (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))) 62)))
-(((-71 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705))))))) (-1186)) (T -71))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))) (-5 *1 (-71 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))))))
-((-3292 (((-1281) $) 33) (((-1281)) 32)) (-3735 (((-868) $) 36)))
-(((-72 |#1|) (-13 (-401) (-10 -7 (-15 -3292 ((-1281))))) (-1186)) (T -72))
-((-3292 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-72 *3)) (-14 *3 (-1186)))))
-(-13 (-401) (-10 -7 (-15 -3292 ((-1281)))))
-((-3292 (((-1281) $) 65)) (-3735 (((-868) $) 59) (($ (-695 (-705))) 51) (($ (-650 (-334))) 53) (($ (-334)) 56) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 50)))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 111) (((-3 $ "failed") (-1277 (-320 (-570)))) 100) (((-3 $ "failed") (-1277 (-959 (-384)))) 131) (((-3 $ "failed") (-1277 (-959 (-570)))) 121) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 89) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 76)) (-3080 (($ (-1277 (-320 (-384)))) 107) (($ (-1277 (-320 (-570)))) 96) (($ (-1277 (-959 (-384)))) 127) (($ (-1277 (-959 (-570)))) 117) (($ (-1277 (-413 (-959 (-384))))) 85) (($ (-1277 (-413 (-959 (-570))))) 69)) (-3291 (((-1282) $) 144)) (-3735 (((-868) $) 138) (($ (-650 (-334))) 133) (($ (-334)) 136) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 61) (($ (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))) 62)))
+(((-71 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705))))))) (-1186)) (T -71))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))) (-5 *1 (-71 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))))))
+((-3291 (((-1282) $) 33) (((-1282)) 32)) (-3735 (((-868) $) 36)))
+(((-72 |#1|) (-13 (-401) (-10 -7 (-15 -3291 ((-1282))))) (-1186)) (T -72))
+((-3291 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-72 *3)) (-14 *3 (-1186)))))
+(-13 (-401) (-10 -7 (-15 -3291 ((-1282)))))
+((-3291 (((-1282) $) 65)) (-3735 (((-868) $) 59) (($ (-695 (-705))) 51) (($ (-650 (-334))) 53) (($ (-334)) 56) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 50)))
(((-73 |#1|) (-388) (-1186)) (T -73))
NIL
(-388)
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 130) (((-3 $ "failed") (-1276 (-320 (-570)))) 120) (((-3 $ "failed") (-1276 (-959 (-384)))) 150) (((-3 $ "failed") (-1276 (-959 (-570)))) 140) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 110) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 98)) (-3080 (($ (-1276 (-320 (-384)))) 126) (($ (-1276 (-320 (-570)))) 116) (($ (-1276 (-959 (-384)))) 146) (($ (-1276 (-959 (-570)))) 136) (($ (-1276 (-413 (-959 (-384))))) 106) (($ (-1276 (-413 (-959 (-570))))) 91)) (-3292 (((-1281) $) 83)) (-3735 (((-868) $) 28) (($ (-650 (-334))) 73) (($ (-334)) 69) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 76) (($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))) 70)))
-(((-74 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705))))))) (-1186)) (T -74))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))) (-5 *1 (-74 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 135) (((-3 $ "failed") (-1276 (-320 (-570)))) 124) (((-3 $ "failed") (-1276 (-959 (-384)))) 155) (((-3 $ "failed") (-1276 (-959 (-570)))) 145) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 113) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 100)) (-3080 (($ (-1276 (-320 (-384)))) 131) (($ (-1276 (-320 (-570)))) 120) (($ (-1276 (-959 (-384)))) 151) (($ (-1276 (-959 (-570)))) 141) (($ (-1276 (-413 (-959 (-384))))) 109) (($ (-1276 (-413 (-959 (-570))))) 93)) (-3292 (((-1281) $) 85)) (-3735 (((-868) $) 77) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) NIL) (($ (-1276 (-344 (-3748 (QUOTE X) (QUOTE EPS)) (-3748 (QUOTE -1547)) (-705)))) 72)))
-(((-75 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X) (QUOTE EPS)) (-3748 (QUOTE -1547)) (-705))))))) (-1186) (-1186) (-1186)) (T -75))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE X) (QUOTE EPS)) (-3748 (QUOTE -1547)) (-705)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186)) (-14 *5 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X) (QUOTE EPS)) (-3748 (QUOTE -1547)) (-705)))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 141) (((-3 $ "failed") (-1276 (-320 (-570)))) 130) (((-3 $ "failed") (-1276 (-959 (-384)))) 161) (((-3 $ "failed") (-1276 (-959 (-570)))) 151) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 119) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 106)) (-3080 (($ (-1276 (-320 (-384)))) 137) (($ (-1276 (-320 (-570)))) 126) (($ (-1276 (-959 (-384)))) 157) (($ (-1276 (-959 (-570)))) 147) (($ (-1276 (-413 (-959 (-384))))) 115) (($ (-1276 (-413 (-959 (-570))))) 99)) (-3292 (((-1281) $) 91)) (-3735 (((-868) $) 83) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) NIL) (($ (-1276 (-344 (-3748 (QUOTE EPS)) (-3748 (QUOTE YA) (QUOTE YB)) (-705)))) 78)))
-(((-76 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE EPS)) (-3748 (QUOTE YA) (QUOTE YB)) (-705))))))) (-1186) (-1186) (-1186)) (T -76))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE EPS)) (-3748 (QUOTE YA) (QUOTE YB)) (-705)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186)) (-14 *5 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE EPS)) (-3748 (QUOTE YA) (QUOTE YB)) (-705)))))))
-((-4378 (((-3 $ "failed") (-320 (-384))) 83) (((-3 $ "failed") (-320 (-570))) 88) (((-3 $ "failed") (-959 (-384))) 92) (((-3 $ "failed") (-959 (-570))) 96) (((-3 $ "failed") (-413 (-959 (-384)))) 78) (((-3 $ "failed") (-413 (-959 (-570)))) 71)) (-3080 (($ (-320 (-384))) 81) (($ (-320 (-570))) 86) (($ (-959 (-384))) 90) (($ (-959 (-570))) 94) (($ (-413 (-959 (-384)))) 76) (($ (-413 (-959 (-570)))) 68)) (-3292 (((-1281) $) 63)) (-3735 (((-868) $) 51) (($ (-650 (-334))) 47) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 55) (($ (-344 (-3748) (-3748 (QUOTE X)) (-705))) 48)))
-(((-77 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748) (-3748 (QUOTE X)) (-705)))))) (-1186)) (T -77))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3748) (-3748 (QUOTE X)) (-705))) (-5 *1 (-77 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748) (-3748 (QUOTE X)) (-705))))))
-((-4378 (((-3 $ "failed") (-320 (-384))) 47) (((-3 $ "failed") (-320 (-570))) 52) (((-3 $ "failed") (-959 (-384))) 56) (((-3 $ "failed") (-959 (-570))) 60) (((-3 $ "failed") (-413 (-959 (-384)))) 42) (((-3 $ "failed") (-413 (-959 (-570)))) 35)) (-3080 (($ (-320 (-384))) 45) (($ (-320 (-570))) 50) (($ (-959 (-384))) 54) (($ (-959 (-570))) 58) (($ (-413 (-959 (-384)))) 40) (($ (-413 (-959 (-570)))) 32)) (-3292 (((-1281) $) 81)) (-3735 (((-868) $) 75) (($ (-650 (-334))) 67) (($ (-334)) 72) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 70) (($ (-344 (-3748) (-3748 (QUOTE X)) (-705))) 31)))
-(((-78 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748) (-3748 (QUOTE X)) (-705)))))) (-1186)) (T -78))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3748) (-3748 (QUOTE X)) (-705))) (-5 *1 (-78 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748) (-3748 (QUOTE X)) (-705))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 90) (((-3 $ "failed") (-1276 (-320 (-570)))) 79) (((-3 $ "failed") (-1276 (-959 (-384)))) 110) (((-3 $ "failed") (-1276 (-959 (-570)))) 100) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 68) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 55)) (-3080 (($ (-1276 (-320 (-384)))) 86) (($ (-1276 (-320 (-570)))) 75) (($ (-1276 (-959 (-384)))) 106) (($ (-1276 (-959 (-570)))) 96) (($ (-1276 (-413 (-959 (-384))))) 64) (($ (-1276 (-413 (-959 (-570))))) 48)) (-3292 (((-1281) $) 126)) (-3735 (((-868) $) 120) (($ (-650 (-334))) 113) (($ (-334)) 38) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 116) (($ (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705)))) 39)))
-(((-79 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705))))))) (-1186)) (T -79))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705)))) (-5 *1 (-79 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE XC)) (-705)))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 154) (((-3 $ "failed") (-1276 (-320 (-570)))) 144) (((-3 $ "failed") (-1276 (-959 (-384)))) 174) (((-3 $ "failed") (-1276 (-959 (-570)))) 164) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 134) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 122)) (-3080 (($ (-1276 (-320 (-384)))) 150) (($ (-1276 (-320 (-570)))) 140) (($ (-1276 (-959 (-384)))) 170) (($ (-1276 (-959 (-570)))) 160) (($ (-1276 (-413 (-959 (-384))))) 130) (($ (-1276 (-413 (-959 (-570))))) 115)) (-3292 (((-1281) $) 108)) (-3735 (((-868) $) 102) (($ (-650 (-334))) 93) (($ (-334)) 100) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 98) (($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))) 94)))
-(((-80 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705))))))) (-1186)) (T -80))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))) (-5 *1 (-80 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 79) (((-3 $ "failed") (-1276 (-320 (-570)))) 68) (((-3 $ "failed") (-1276 (-959 (-384)))) 99) (((-3 $ "failed") (-1276 (-959 (-570)))) 89) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 57) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 44)) (-3080 (($ (-1276 (-320 (-384)))) 75) (($ (-1276 (-320 (-570)))) 64) (($ (-1276 (-959 (-384)))) 95) (($ (-1276 (-959 (-570)))) 85) (($ (-1276 (-413 (-959 (-384))))) 53) (($ (-1276 (-413 (-959 (-570))))) 37)) (-3292 (((-1281) $) 125)) (-3735 (((-868) $) 119) (($ (-650 (-334))) 110) (($ (-334)) 116) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 114) (($ (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))) 36)))
-(((-81 |#1|) (-13 (-447) (-622 (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705))))) (-1186)) (T -81))
-NIL
-(-13 (-447) (-622 (-1276 (-344 (-3748) (-3748 (QUOTE X)) (-705)))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 98) (((-3 $ "failed") (-1276 (-320 (-570)))) 87) (((-3 $ "failed") (-1276 (-959 (-384)))) 118) (((-3 $ "failed") (-1276 (-959 (-570)))) 108) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 76) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 63)) (-3080 (($ (-1276 (-320 (-384)))) 94) (($ (-1276 (-320 (-570)))) 83) (($ (-1276 (-959 (-384)))) 114) (($ (-1276 (-959 (-570)))) 104) (($ (-1276 (-413 (-959 (-384))))) 72) (($ (-1276 (-413 (-959 (-570))))) 56)) (-3292 (((-1281) $) 48)) (-3735 (((-868) $) 42) (($ (-650 (-334))) 32) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 38) (($ (-1276 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705)))) 33)))
-(((-82 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705))))))) (-1186)) (T -82))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705)))) (-5 *1 (-82 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705)))))))
-((-4378 (((-3 $ "failed") (-695 (-320 (-384)))) 118) (((-3 $ "failed") (-695 (-320 (-570)))) 107) (((-3 $ "failed") (-695 (-959 (-384)))) 140) (((-3 $ "failed") (-695 (-959 (-570)))) 129) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 96) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 83)) (-3080 (($ (-695 (-320 (-384)))) 114) (($ (-695 (-320 (-570)))) 103) (($ (-695 (-959 (-384)))) 136) (($ (-695 (-959 (-570)))) 125) (($ (-695 (-413 (-959 (-384))))) 92) (($ (-695 (-413 (-959 (-570))))) 76)) (-3292 (((-1281) $) 66)) (-3735 (((-868) $) 53) (($ (-650 (-334))) 60) (($ (-334)) 49) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 58) (($ (-695 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705)))) 50)))
-(((-83 |#1|) (-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705))))))) (-1186)) (T -83))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705)))) (-5 *1 (-83 *3)) (-14 *3 (-1186)))))
-(-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3748 (QUOTE X) (QUOTE -1547)) (-3748) (-705)))))))
-((-4378 (((-3 $ "failed") (-695 (-320 (-384)))) 113) (((-3 $ "failed") (-695 (-320 (-570)))) 101) (((-3 $ "failed") (-695 (-959 (-384)))) 135) (((-3 $ "failed") (-695 (-959 (-570)))) 124) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 89) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 75)) (-3080 (($ (-695 (-320 (-384)))) 109) (($ (-695 (-320 (-570)))) 97) (($ (-695 (-959 (-384)))) 131) (($ (-695 (-959 (-570)))) 120) (($ (-695 (-413 (-959 (-384))))) 85) (($ (-695 (-413 (-959 (-570))))) 68)) (-3292 (((-1281) $) 60)) (-3735 (((-868) $) 54) (($ (-650 (-334))) 48) (($ (-334)) 51) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 45) (($ (-695 (-344 (-3748 (QUOTE X)) (-3748) (-705)))) 46)))
-(((-84 |#1|) (-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3748 (QUOTE X)) (-3748) (-705))))))) (-1186)) (T -84))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3748 (QUOTE X)) (-3748) (-705)))) (-5 *1 (-84 *3)) (-14 *3 (-1186)))))
-(-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3748 (QUOTE X)) (-3748) (-705)))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 105) (((-3 $ "failed") (-1276 (-320 (-570)))) 94) (((-3 $ "failed") (-1276 (-959 (-384)))) 125) (((-3 $ "failed") (-1276 (-959 (-570)))) 115) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 83) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 70)) (-3080 (($ (-1276 (-320 (-384)))) 101) (($ (-1276 (-320 (-570)))) 90) (($ (-1276 (-959 (-384)))) 121) (($ (-1276 (-959 (-570)))) 111) (($ (-1276 (-413 (-959 (-384))))) 79) (($ (-1276 (-413 (-959 (-570))))) 63)) (-3292 (((-1281) $) 47)) (-3735 (((-868) $) 41) (($ (-650 (-334))) 50) (($ (-334)) 37) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 53) (($ (-1276 (-344 (-3748 (QUOTE X)) (-3748) (-705)))) 38)))
-(((-85 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X)) (-3748) (-705))))))) (-1186)) (T -85))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE X)) (-3748) (-705)))) (-5 *1 (-85 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X)) (-3748) (-705)))))))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 80) (((-3 $ "failed") (-1276 (-320 (-570)))) 69) (((-3 $ "failed") (-1276 (-959 (-384)))) 100) (((-3 $ "failed") (-1276 (-959 (-570)))) 90) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 58) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 45)) (-3080 (($ (-1276 (-320 (-384)))) 76) (($ (-1276 (-320 (-570)))) 65) (($ (-1276 (-959 (-384)))) 96) (($ (-1276 (-959 (-570)))) 86) (($ (-1276 (-413 (-959 (-384))))) 54) (($ (-1276 (-413 (-959 (-570))))) 38)) (-3292 (((-1281) $) 126)) (-3735 (((-868) $) 120) (($ (-650 (-334))) 111) (($ (-334)) 117) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 115) (($ (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))) 37)))
-(((-86 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705))))))) (-1186)) (T -86))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))) (-5 *1 (-86 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3735 ($ (-1276 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))))))
-((-4378 (((-3 $ "failed") (-695 (-320 (-384)))) 117) (((-3 $ "failed") (-695 (-320 (-570)))) 105) (((-3 $ "failed") (-695 (-959 (-384)))) 139) (((-3 $ "failed") (-695 (-959 (-570)))) 128) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 93) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 79)) (-3080 (($ (-695 (-320 (-384)))) 113) (($ (-695 (-320 (-570)))) 101) (($ (-695 (-959 (-384)))) 135) (($ (-695 (-959 (-570)))) 124) (($ (-695 (-413 (-959 (-384))))) 89) (($ (-695 (-413 (-959 (-570))))) 72)) (-3292 (((-1281) $) 63)) (-3735 (((-868) $) 57) (($ (-650 (-334))) 47) (($ (-334)) 54) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 52) (($ (-695 (-344 (-3748 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3748) (-705)))) 48)))
-(((-87 |#1|) (-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3748 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3748) (-705))))))) (-1186)) (T -87))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3748 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3748) (-705)))) (-5 *1 (-87 *3)) (-14 *3 (-1186)))))
-(-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3748 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3748) (-705)))))))
-((-3292 (((-1281) $) 45)) (-3735 (((-868) $) 39) (($ (-1276 (-705))) 100) (($ (-650 (-334))) 31) (($ (-334)) 36) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 34)))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 130) (((-3 $ "failed") (-1277 (-320 (-570)))) 120) (((-3 $ "failed") (-1277 (-959 (-384)))) 150) (((-3 $ "failed") (-1277 (-959 (-570)))) 140) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 110) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 98)) (-3080 (($ (-1277 (-320 (-384)))) 126) (($ (-1277 (-320 (-570)))) 116) (($ (-1277 (-959 (-384)))) 146) (($ (-1277 (-959 (-570)))) 136) (($ (-1277 (-413 (-959 (-384))))) 106) (($ (-1277 (-413 (-959 (-570))))) 91)) (-3291 (((-1282) $) 83)) (-3735 (((-868) $) 28) (($ (-650 (-334))) 73) (($ (-334)) 69) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 76) (($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))) 70)))
+(((-74 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705))))))) (-1186)) (T -74))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))) (-5 *1 (-74 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 135) (((-3 $ "failed") (-1277 (-320 (-570)))) 124) (((-3 $ "failed") (-1277 (-959 (-384)))) 155) (((-3 $ "failed") (-1277 (-959 (-570)))) 145) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 113) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 100)) (-3080 (($ (-1277 (-320 (-384)))) 131) (($ (-1277 (-320 (-570)))) 120) (($ (-1277 (-959 (-384)))) 151) (($ (-1277 (-959 (-570)))) 141) (($ (-1277 (-413 (-959 (-384))))) 109) (($ (-1277 (-413 (-959 (-570))))) 93)) (-3291 (((-1282) $) 85)) (-3735 (((-868) $) 77) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) NIL) (($ (-1277 (-344 (-3749 (QUOTE X) (QUOTE EPS)) (-3749 (QUOTE -1548)) (-705)))) 72)))
+(((-75 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X) (QUOTE EPS)) (-3749 (QUOTE -1548)) (-705))))))) (-1186) (-1186) (-1186)) (T -75))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE X) (QUOTE EPS)) (-3749 (QUOTE -1548)) (-705)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186)) (-14 *5 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X) (QUOTE EPS)) (-3749 (QUOTE -1548)) (-705)))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 141) (((-3 $ "failed") (-1277 (-320 (-570)))) 130) (((-3 $ "failed") (-1277 (-959 (-384)))) 161) (((-3 $ "failed") (-1277 (-959 (-570)))) 151) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 119) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 106)) (-3080 (($ (-1277 (-320 (-384)))) 137) (($ (-1277 (-320 (-570)))) 126) (($ (-1277 (-959 (-384)))) 157) (($ (-1277 (-959 (-570)))) 147) (($ (-1277 (-413 (-959 (-384))))) 115) (($ (-1277 (-413 (-959 (-570))))) 99)) (-3291 (((-1282) $) 91)) (-3735 (((-868) $) 83) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) NIL) (($ (-1277 (-344 (-3749 (QUOTE EPS)) (-3749 (QUOTE YA) (QUOTE YB)) (-705)))) 78)))
+(((-76 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE EPS)) (-3749 (QUOTE YA) (QUOTE YB)) (-705))))))) (-1186) (-1186) (-1186)) (T -76))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE EPS)) (-3749 (QUOTE YA) (QUOTE YB)) (-705)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186)) (-14 *5 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE EPS)) (-3749 (QUOTE YA) (QUOTE YB)) (-705)))))))
+((-4379 (((-3 $ "failed") (-320 (-384))) 83) (((-3 $ "failed") (-320 (-570))) 88) (((-3 $ "failed") (-959 (-384))) 92) (((-3 $ "failed") (-959 (-570))) 96) (((-3 $ "failed") (-413 (-959 (-384)))) 78) (((-3 $ "failed") (-413 (-959 (-570)))) 71)) (-3080 (($ (-320 (-384))) 81) (($ (-320 (-570))) 86) (($ (-959 (-384))) 90) (($ (-959 (-570))) 94) (($ (-413 (-959 (-384)))) 76) (($ (-413 (-959 (-570)))) 68)) (-3291 (((-1282) $) 63)) (-3735 (((-868) $) 51) (($ (-650 (-334))) 47) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 55) (($ (-344 (-3749) (-3749 (QUOTE X)) (-705))) 48)))
+(((-77 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749) (-3749 (QUOTE X)) (-705)))))) (-1186)) (T -77))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3749) (-3749 (QUOTE X)) (-705))) (-5 *1 (-77 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749) (-3749 (QUOTE X)) (-705))))))
+((-4379 (((-3 $ "failed") (-320 (-384))) 47) (((-3 $ "failed") (-320 (-570))) 52) (((-3 $ "failed") (-959 (-384))) 56) (((-3 $ "failed") (-959 (-570))) 60) (((-3 $ "failed") (-413 (-959 (-384)))) 42) (((-3 $ "failed") (-413 (-959 (-570)))) 35)) (-3080 (($ (-320 (-384))) 45) (($ (-320 (-570))) 50) (($ (-959 (-384))) 54) (($ (-959 (-570))) 58) (($ (-413 (-959 (-384)))) 40) (($ (-413 (-959 (-570)))) 32)) (-3291 (((-1282) $) 81)) (-3735 (((-868) $) 75) (($ (-650 (-334))) 67) (($ (-334)) 72) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 70) (($ (-344 (-3749) (-3749 (QUOTE X)) (-705))) 31)))
+(((-78 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749) (-3749 (QUOTE X)) (-705)))))) (-1186)) (T -78))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3749) (-3749 (QUOTE X)) (-705))) (-5 *1 (-78 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749) (-3749 (QUOTE X)) (-705))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 90) (((-3 $ "failed") (-1277 (-320 (-570)))) 79) (((-3 $ "failed") (-1277 (-959 (-384)))) 110) (((-3 $ "failed") (-1277 (-959 (-570)))) 100) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 68) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 55)) (-3080 (($ (-1277 (-320 (-384)))) 86) (($ (-1277 (-320 (-570)))) 75) (($ (-1277 (-959 (-384)))) 106) (($ (-1277 (-959 (-570)))) 96) (($ (-1277 (-413 (-959 (-384))))) 64) (($ (-1277 (-413 (-959 (-570))))) 48)) (-3291 (((-1282) $) 126)) (-3735 (((-868) $) 120) (($ (-650 (-334))) 113) (($ (-334)) 38) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 116) (($ (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705)))) 39)))
+(((-79 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705))))))) (-1186)) (T -79))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705)))) (-5 *1 (-79 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE XC)) (-705)))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 154) (((-3 $ "failed") (-1277 (-320 (-570)))) 144) (((-3 $ "failed") (-1277 (-959 (-384)))) 174) (((-3 $ "failed") (-1277 (-959 (-570)))) 164) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 134) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 122)) (-3080 (($ (-1277 (-320 (-384)))) 150) (($ (-1277 (-320 (-570)))) 140) (($ (-1277 (-959 (-384)))) 170) (($ (-1277 (-959 (-570)))) 160) (($ (-1277 (-413 (-959 (-384))))) 130) (($ (-1277 (-413 (-959 (-570))))) 115)) (-3291 (((-1282) $) 108)) (-3735 (((-868) $) 102) (($ (-650 (-334))) 93) (($ (-334)) 100) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 98) (($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))) 94)))
+(((-80 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705))))))) (-1186)) (T -80))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))) (-5 *1 (-80 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 79) (((-3 $ "failed") (-1277 (-320 (-570)))) 68) (((-3 $ "failed") (-1277 (-959 (-384)))) 99) (((-3 $ "failed") (-1277 (-959 (-570)))) 89) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 57) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 44)) (-3080 (($ (-1277 (-320 (-384)))) 75) (($ (-1277 (-320 (-570)))) 64) (($ (-1277 (-959 (-384)))) 95) (($ (-1277 (-959 (-570)))) 85) (($ (-1277 (-413 (-959 (-384))))) 53) (($ (-1277 (-413 (-959 (-570))))) 37)) (-3291 (((-1282) $) 125)) (-3735 (((-868) $) 119) (($ (-650 (-334))) 110) (($ (-334)) 116) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 114) (($ (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))) 36)))
+(((-81 |#1|) (-13 (-447) (-622 (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705))))) (-1186)) (T -81))
+NIL
+(-13 (-447) (-622 (-1277 (-344 (-3749) (-3749 (QUOTE X)) (-705)))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 98) (((-3 $ "failed") (-1277 (-320 (-570)))) 87) (((-3 $ "failed") (-1277 (-959 (-384)))) 118) (((-3 $ "failed") (-1277 (-959 (-570)))) 108) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 76) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 63)) (-3080 (($ (-1277 (-320 (-384)))) 94) (($ (-1277 (-320 (-570)))) 83) (($ (-1277 (-959 (-384)))) 114) (($ (-1277 (-959 (-570)))) 104) (($ (-1277 (-413 (-959 (-384))))) 72) (($ (-1277 (-413 (-959 (-570))))) 56)) (-3291 (((-1282) $) 48)) (-3735 (((-868) $) 42) (($ (-650 (-334))) 32) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 38) (($ (-1277 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705)))) 33)))
+(((-82 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705))))))) (-1186)) (T -82))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705)))) (-5 *1 (-82 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705)))))))
+((-4379 (((-3 $ "failed") (-695 (-320 (-384)))) 118) (((-3 $ "failed") (-695 (-320 (-570)))) 107) (((-3 $ "failed") (-695 (-959 (-384)))) 140) (((-3 $ "failed") (-695 (-959 (-570)))) 129) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 96) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 83)) (-3080 (($ (-695 (-320 (-384)))) 114) (($ (-695 (-320 (-570)))) 103) (($ (-695 (-959 (-384)))) 136) (($ (-695 (-959 (-570)))) 125) (($ (-695 (-413 (-959 (-384))))) 92) (($ (-695 (-413 (-959 (-570))))) 76)) (-3291 (((-1282) $) 66)) (-3735 (((-868) $) 53) (($ (-650 (-334))) 60) (($ (-334)) 49) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 58) (($ (-695 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705)))) 50)))
+(((-83 |#1|) (-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705))))))) (-1186)) (T -83))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705)))) (-5 *1 (-83 *3)) (-14 *3 (-1186)))))
+(-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3749 (QUOTE X) (QUOTE -1548)) (-3749) (-705)))))))
+((-4379 (((-3 $ "failed") (-695 (-320 (-384)))) 113) (((-3 $ "failed") (-695 (-320 (-570)))) 101) (((-3 $ "failed") (-695 (-959 (-384)))) 135) (((-3 $ "failed") (-695 (-959 (-570)))) 124) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 89) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 75)) (-3080 (($ (-695 (-320 (-384)))) 109) (($ (-695 (-320 (-570)))) 97) (($ (-695 (-959 (-384)))) 131) (($ (-695 (-959 (-570)))) 120) (($ (-695 (-413 (-959 (-384))))) 85) (($ (-695 (-413 (-959 (-570))))) 68)) (-3291 (((-1282) $) 60)) (-3735 (((-868) $) 54) (($ (-650 (-334))) 48) (($ (-334)) 51) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 45) (($ (-695 (-344 (-3749 (QUOTE X)) (-3749) (-705)))) 46)))
+(((-84 |#1|) (-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3749 (QUOTE X)) (-3749) (-705))))))) (-1186)) (T -84))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3749 (QUOTE X)) (-3749) (-705)))) (-5 *1 (-84 *3)) (-14 *3 (-1186)))))
+(-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3749 (QUOTE X)) (-3749) (-705)))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 105) (((-3 $ "failed") (-1277 (-320 (-570)))) 94) (((-3 $ "failed") (-1277 (-959 (-384)))) 125) (((-3 $ "failed") (-1277 (-959 (-570)))) 115) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 83) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 70)) (-3080 (($ (-1277 (-320 (-384)))) 101) (($ (-1277 (-320 (-570)))) 90) (($ (-1277 (-959 (-384)))) 121) (($ (-1277 (-959 (-570)))) 111) (($ (-1277 (-413 (-959 (-384))))) 79) (($ (-1277 (-413 (-959 (-570))))) 63)) (-3291 (((-1282) $) 47)) (-3735 (((-868) $) 41) (($ (-650 (-334))) 50) (($ (-334)) 37) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 53) (($ (-1277 (-344 (-3749 (QUOTE X)) (-3749) (-705)))) 38)))
+(((-85 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X)) (-3749) (-705))))))) (-1186)) (T -85))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE X)) (-3749) (-705)))) (-5 *1 (-85 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X)) (-3749) (-705)))))))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 80) (((-3 $ "failed") (-1277 (-320 (-570)))) 69) (((-3 $ "failed") (-1277 (-959 (-384)))) 100) (((-3 $ "failed") (-1277 (-959 (-570)))) 90) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 58) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 45)) (-3080 (($ (-1277 (-320 (-384)))) 76) (($ (-1277 (-320 (-570)))) 65) (($ (-1277 (-959 (-384)))) 96) (($ (-1277 (-959 (-570)))) 86) (($ (-1277 (-413 (-959 (-384))))) 54) (($ (-1277 (-413 (-959 (-570))))) 38)) (-3291 (((-1282) $) 126)) (-3735 (((-868) $) 120) (($ (-650 (-334))) 111) (($ (-334)) 117) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 115) (($ (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))) 37)))
+(((-86 |#1|) (-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705))))))) (-1186)) (T -86))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))) (-5 *1 (-86 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3735 ($ (-1277 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))))))
+((-4379 (((-3 $ "failed") (-695 (-320 (-384)))) 117) (((-3 $ "failed") (-695 (-320 (-570)))) 105) (((-3 $ "failed") (-695 (-959 (-384)))) 139) (((-3 $ "failed") (-695 (-959 (-570)))) 128) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 93) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 79)) (-3080 (($ (-695 (-320 (-384)))) 113) (($ (-695 (-320 (-570)))) 101) (($ (-695 (-959 (-384)))) 135) (($ (-695 (-959 (-570)))) 124) (($ (-695 (-413 (-959 (-384))))) 89) (($ (-695 (-413 (-959 (-570))))) 72)) (-3291 (((-1282) $) 63)) (-3735 (((-868) $) 57) (($ (-650 (-334))) 47) (($ (-334)) 54) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 52) (($ (-695 (-344 (-3749 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3749) (-705)))) 48)))
+(((-87 |#1|) (-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3749 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3749) (-705))))))) (-1186)) (T -87))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3749 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3749) (-705)))) (-5 *1 (-87 *3)) (-14 *3 (-1186)))))
+(-13 (-389) (-10 -8 (-15 -3735 ($ (-695 (-344 (-3749 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3749) (-705)))))))
+((-3291 (((-1282) $) 45)) (-3735 (((-868) $) 39) (($ (-1277 (-705))) 100) (($ (-650 (-334))) 31) (($ (-334)) 36) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 34)))
(((-88 |#1|) (-446) (-1186)) (T -88))
NIL
(-446)
-((-4378 (((-3 $ "failed") (-320 (-384))) 48) (((-3 $ "failed") (-320 (-570))) 53) (((-3 $ "failed") (-959 (-384))) 57) (((-3 $ "failed") (-959 (-570))) 61) (((-3 $ "failed") (-413 (-959 (-384)))) 43) (((-3 $ "failed") (-413 (-959 (-570)))) 36)) (-3080 (($ (-320 (-384))) 46) (($ (-320 (-570))) 51) (($ (-959 (-384))) 55) (($ (-959 (-570))) 59) (($ (-413 (-959 (-384)))) 41) (($ (-413 (-959 (-570)))) 33)) (-3292 (((-1281) $) 91)) (-3735 (((-868) $) 85) (($ (-650 (-334))) 79) (($ (-334)) 82) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 77) (($ (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705))) 32)))
-(((-89 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705)))))) (-1186)) (T -89))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705))) (-5 *1 (-89 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3748 (QUOTE X)) (-3748 (QUOTE -1547)) (-705))))))
-((-1525 (((-1276 (-695 |#1|)) (-695 |#1|)) 64)) (-3908 (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 (-650 (-928))))) |#2| (-928)) 54)) (-2668 (((-2 (|:| |minor| (-650 (-928))) (|:| -4300 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928)) 75 (|has| |#1| (-368)))))
-(((-90 |#1| |#2|) (-10 -7 (-15 -3908 ((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 (-650 (-928))))) |#2| (-928))) (-15 -1525 ((-1276 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -2668 ((-2 (|:| |minor| (-650 (-928))) (|:| -4300 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|)) (-562) (-662 |#1|)) (T -90))
-((-2668 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |minor| (-650 (-928))) (|:| -4300 *3) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))) (-1525 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-1276 (-695 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-695 *4)) (-4 *5 (-662 *4)))) (-3908 (*1 *2 *3 *4) (-12 (-4 *5 (-562)) (-5 *2 (-2 (|:| -3442 (-695 *5)) (|:| |vec| (-1276 (-650 (-928)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
-(-10 -7 (-15 -3908 ((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 (-650 (-928))))) |#2| (-928))) (-15 -1525 ((-1276 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -2668 ((-2 (|:| |minor| (-650 (-928))) (|:| -4300 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3240 ((|#1| $) 42)) (-3594 (((-112) $ (-777)) NIL)) (-2450 (($) NIL T CONST)) (-2562 ((|#1| |#1| $) 37)) (-1446 ((|#1| $) 35)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3784 ((|#1| $) NIL)) (-2278 (($ |#1| $) 38)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1899 ((|#1| $) 36)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 18)) (-3743 (($) 46)) (-2765 (((-777) $) 33)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 17)) (-3735 (((-868) $) 32 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) NIL)) (-4279 (($ (-650 |#1|)) 44)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 15 (|has| |#1| (-1109)))) (-2426 (((-777) $) 12 (|has| $ (-6 -4448)))))
-(((-91 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -4279 ($ (-650 |#1|))))) (-1109)) (T -91))
-((-4279 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
-(-13 (-1130 |#1|) (-10 -8 (-15 -4279 ($ (-650 |#1|)))))
+((-4379 (((-3 $ "failed") (-320 (-384))) 48) (((-3 $ "failed") (-320 (-570))) 53) (((-3 $ "failed") (-959 (-384))) 57) (((-3 $ "failed") (-959 (-570))) 61) (((-3 $ "failed") (-413 (-959 (-384)))) 43) (((-3 $ "failed") (-413 (-959 (-570)))) 36)) (-3080 (($ (-320 (-384))) 46) (($ (-320 (-570))) 51) (($ (-959 (-384))) 55) (($ (-959 (-570))) 59) (($ (-413 (-959 (-384)))) 41) (($ (-413 (-959 (-570)))) 33)) (-3291 (((-1282) $) 91)) (-3735 (((-868) $) 85) (($ (-650 (-334))) 79) (($ (-334)) 82) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 77) (($ (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705))) 32)))
+(((-89 |#1|) (-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705)))))) (-1186)) (T -89))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705))) (-5 *1 (-89 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3735 ($ (-344 (-3749 (QUOTE X)) (-3749 (QUOTE -1548)) (-705))))))
+((-3738 (((-1277 (-695 |#1|)) (-695 |#1|)) 64)) (-4036 (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928)) 54)) (-2094 (((-2 (|:| |minor| (-650 (-928))) (|:| -4302 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928)) 75 (|has| |#1| (-368)))))
+(((-90 |#1| |#2|) (-10 -7 (-15 -4036 ((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928))) (-15 -3738 ((-1277 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -2094 ((-2 (|:| |minor| (-650 (-928))) (|:| -4302 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|)) (-562) (-662 |#1|)) (T -90))
+((-2094 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |minor| (-650 (-928))) (|:| -4302 *3) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-695 *4)) (-4 *5 (-662 *4)))) (-4036 (*1 *2 *3 *4) (-12 (-4 *5 (-562)) (-5 *2 (-2 (|:| -2042 (-695 *5)) (|:| |vec| (-1277 (-650 (-928)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
+(-10 -7 (-15 -4036 ((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928))) (-15 -3738 ((-1277 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -2094 ((-2 (|:| |minor| (-650 (-928))) (|:| -4302 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3240 ((|#1| $) 42)) (-4095 (((-112) $ (-777)) NIL)) (-3761 (($) NIL T CONST)) (-3575 ((|#1| |#1| $) 37)) (-1568 ((|#1| $) 35)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2192 ((|#1| $) NIL)) (-2599 (($ |#1| $) 38)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-4223 ((|#1| $) 36)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 18)) (-3006 (($) 46)) (-2766 (((-777) $) 33)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 17)) (-3735 (((-868) $) 32 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) NIL)) (-3396 (($ (-650 |#1|)) 44)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 15 (|has| |#1| (-1109)))) (-2426 (((-777) $) 12 (|has| $ (-6 -4449)))))
+(((-91 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -3396 ($ (-650 |#1|))))) (-1109)) (T -91))
+((-3396 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
+(-13 (-1130 |#1|) (-10 -8 (-15 -3396 ($ (-650 |#1|)))))
((-3735 (((-868) $) 13) (($ (-1191)) 9) (((-1191) $) 8)))
(((-92 |#1|) (-10 -8 (-15 -3735 ((-1191) |#1|)) (-15 -3735 (|#1| (-1191))) (-15 -3735 ((-868) |#1|))) (-93)) (T -92))
NIL
(-10 -8 (-15 -3735 ((-1191) |#1|)) (-15 -3735 (|#1| (-1191))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-93) (-141)) (T -93))
NIL
(-13 (-1109) (-496 (-1191)))
@@ -324,572 +324,572 @@ NIL
(((-95) (-141)) (T -95))
((-2671 (*1 *1 *1) (-4 *1 (-95))) (-2647 (*1 *1 *1) (-4 *1 (-95))) (-2691 (*1 *1 *1) (-4 *1 (-95))) (-2701 (*1 *1 *1) (-4 *1 (-95))) (-2681 (*1 *1 *1) (-4 *1 (-95))) (-2660 (*1 *1 *1) (-4 *1 (-95))))
(-13 (-10 -8 (-15 -2660 ($ $)) (-15 -2681 ($ $)) (-15 -2701 ($ $)) (-15 -2691 ($ $)) (-15 -2647 ($ $)) (-15 -2671 ($ $))))
-((-2416 (((-112) $ $) NIL)) (-3503 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-96) (-13 (-1092) (-10 -8 (-15 -3503 ((-1144) $))))) (T -96))
-((-3503 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-96)))))
-(-13 (-1092) (-10 -8 (-15 -3503 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-2956 (((-384) (-1168) (-384)) 46) (((-384) (-1168) (-1168) (-384)) 44)) (-3548 (((-384) (-384)) 35)) (-2651 (((-1281)) 37)) (-1903 (((-1168) $) NIL)) (-2388 (((-384) (-1168) (-1168)) 50) (((-384) (-1168)) 52)) (-3479 (((-1129) $) NIL)) (-3474 (((-384) (-1168) (-1168)) 51)) (-2718 (((-384) (-1168) (-1168)) 53) (((-384) (-1168)) 54)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-97) (-13 (-1109) (-10 -7 (-15 -2388 ((-384) (-1168) (-1168))) (-15 -2388 ((-384) (-1168))) (-15 -2718 ((-384) (-1168) (-1168))) (-15 -2718 ((-384) (-1168))) (-15 -3474 ((-384) (-1168) (-1168))) (-15 -2651 ((-1281))) (-15 -3548 ((-384) (-384))) (-15 -2956 ((-384) (-1168) (-384))) (-15 -2956 ((-384) (-1168) (-1168) (-384))) (-6 -4448)))) (T -97))
-((-2388 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2388 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2718 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2718 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3474 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2651 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-97)))) (-3548 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))) (-2956 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))) (-2956 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))))
-(-13 (-1109) (-10 -7 (-15 -2388 ((-384) (-1168) (-1168))) (-15 -2388 ((-384) (-1168))) (-15 -2718 ((-384) (-1168) (-1168))) (-15 -2718 ((-384) (-1168))) (-15 -3474 ((-384) (-1168) (-1168))) (-15 -2651 ((-1281))) (-15 -3548 ((-384) (-384))) (-15 -2956 ((-384) (-1168) (-384))) (-15 -2956 ((-384) (-1168) (-1168) (-384))) (-6 -4448)))
+((-2417 (((-112) $ $) NIL)) (-3504 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-96) (-13 (-1092) (-10 -8 (-15 -3504 ((-1144) $))))) (T -96))
+((-3504 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-96)))))
+(-13 (-1092) (-10 -8 (-15 -3504 ((-1144) $))))
+((-2417 (((-112) $ $) NIL)) (-4190 (((-384) (-1168) (-384)) 46) (((-384) (-1168) (-1168) (-384)) 44)) (-1822 (((-384) (-384)) 35)) (-1971 (((-1282)) 37)) (-4268 (((-1168) $) NIL)) (-1318 (((-384) (-1168) (-1168)) 50) (((-384) (-1168)) 52)) (-3479 (((-1129) $) NIL)) (-2304 (((-384) (-1168) (-1168)) 51)) (-1342 (((-384) (-1168) (-1168)) 53) (((-384) (-1168)) 54)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-97) (-13 (-1109) (-10 -7 (-15 -1318 ((-384) (-1168) (-1168))) (-15 -1318 ((-384) (-1168))) (-15 -1342 ((-384) (-1168) (-1168))) (-15 -1342 ((-384) (-1168))) (-15 -2304 ((-384) (-1168) (-1168))) (-15 -1971 ((-1282))) (-15 -1822 ((-384) (-384))) (-15 -4190 ((-384) (-1168) (-384))) (-15 -4190 ((-384) (-1168) (-1168) (-384))) (-6 -4449)))) (T -97))
+((-1318 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-1318 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-1342 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-1342 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2304 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-1971 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-97)))) (-1822 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))) (-4190 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))) (-4190 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))))
+(-13 (-1109) (-10 -7 (-15 -1318 ((-384) (-1168) (-1168))) (-15 -1318 ((-384) (-1168))) (-15 -1342 ((-384) (-1168) (-1168))) (-15 -1342 ((-384) (-1168))) (-15 -2304 ((-384) (-1168) (-1168))) (-15 -1971 ((-1282))) (-15 -1822 ((-384) (-384))) (-15 -4190 ((-384) (-1168) (-384))) (-15 -4190 ((-384) (-1168) (-1168) (-384))) (-6 -4449)))
NIL
(((-98) (-141)) (T -98))
NIL
-(-13 (-10 -7 (-6 -4448) (-6 (-4450 "*")) (-6 -4449) (-6 -4445) (-6 -4443) (-6 -4442) (-6 -4441) (-6 -4446) (-6 -4440) (-6 -4439) (-6 -4438) (-6 -4437) (-6 -4436) (-6 -4444) (-6 -4447) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4435)))
-((-2416 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-1427 (($ (-1 |#1| |#1|)) 27) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 26) (($ (-1 |#1| |#1| (-570))) 24)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 16)) (-3479 (((-1129) $) NIL)) (-1876 ((|#1| $ |#1|) 13)) (-3684 (($ $ $) NIL)) (-3688 (($ $ $) NIL)) (-3735 (((-868) $) 22)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 8 T CONST)) (-2872 (((-112) $ $) 10)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) 34) (($ $ (-777)) NIL) (($ $ (-570)) 18)) (* (($ $ $) 35)))
-(((-99 |#1|) (-13 (-479) (-290 |#1| |#1|) (-10 -8 (-15 -1427 ($ (-1 |#1| |#1|))) (-15 -1427 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1427 ($ (-1 |#1| |#1| (-570)))))) (-1058)) (T -99))
-((-1427 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-1427 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-1427 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-99 *3)))))
-(-13 (-479) (-290 |#1| |#1|) (-10 -8 (-15 -1427 ($ (-1 |#1| |#1|))) (-15 -1427 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1427 ($ (-1 |#1| |#1| (-570))))))
-((-3433 (((-424 |#2|) |#2| (-650 |#2|)) 10) (((-424 |#2|) |#2| |#2|) 11)))
-(((-100 |#1| |#2|) (-10 -7 (-15 -3433 ((-424 |#2|) |#2| |#2|)) (-15 -3433 ((-424 |#2|) |#2| (-650 |#2|)))) (-13 (-458) (-148)) (-1252 |#1|)) (T -100))
-((-3433 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-13 (-458) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-100 *5 *3)))) (-3433 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-458) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3433 ((-424 |#2|) |#2| |#2|)) (-15 -3433 ((-424 |#2|) |#2| (-650 |#2|))))
-((-2416 (((-112) $ $) 10)))
-(((-101 |#1|) (-10 -8 (-15 -2416 ((-112) |#1| |#1|))) (-102)) (T -101))
-NIL
-(-10 -8 (-15 -2416 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-2872 (((-112) $ $) 6)))
+(-13 (-10 -7 (-6 -4449) (-6 (-4451 "*")) (-6 -4450) (-6 -4446) (-6 -4444) (-6 -4443) (-6 -4442) (-6 -4447) (-6 -4441) (-6 -4440) (-6 -4439) (-6 -4438) (-6 -4437) (-6 -4445) (-6 -4448) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4436)))
+((-2417 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-1381 (($ (-1 |#1| |#1|)) 27) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 26) (($ (-1 |#1| |#1| (-570))) 24)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 16)) (-3479 (((-1129) $) NIL)) (-1877 ((|#1| $ |#1|) 13)) (-2488 (($ $ $) NIL)) (-2522 (($ $ $) NIL)) (-3735 (((-868) $) 22)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 8 T CONST)) (-2872 (((-112) $ $) 10)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) 34) (($ $ (-777)) NIL) (($ $ (-570)) 18)) (* (($ $ $) 35)))
+(((-99 |#1|) (-13 (-479) (-290 |#1| |#1|) (-10 -8 (-15 -1381 ($ (-1 |#1| |#1|))) (-15 -1381 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1381 ($ (-1 |#1| |#1| (-570)))))) (-1058)) (T -99))
+((-1381 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-1381 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-1381 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-99 *3)))))
+(-13 (-479) (-290 |#1| |#1|) (-10 -8 (-15 -1381 ($ (-1 |#1| |#1|))) (-15 -1381 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1381 ($ (-1 |#1| |#1| (-570))))))
+((-1975 (((-424 |#2|) |#2| (-650 |#2|)) 10) (((-424 |#2|) |#2| |#2|) 11)))
+(((-100 |#1| |#2|) (-10 -7 (-15 -1975 ((-424 |#2|) |#2| |#2|)) (-15 -1975 ((-424 |#2|) |#2| (-650 |#2|)))) (-13 (-458) (-148)) (-1253 |#1|)) (T -100))
+((-1975 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-13 (-458) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-100 *5 *3)))) (-1975 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-458) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -1975 ((-424 |#2|) |#2| |#2|)) (-15 -1975 ((-424 |#2|) |#2| (-650 |#2|))))
+((-2417 (((-112) $ $) 10)))
+(((-101 |#1|) (-10 -8 (-15 -2417 ((-112) |#1| |#1|))) (-102)) (T -101))
+NIL
+(-10 -8 (-15 -2417 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2872 (((-112) $ $) 6)))
(((-102) (-141)) (T -102))
-((-2416 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-2872 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
-(-13 (-10 -8 (-15 -2872 ((-112) $ $)) (-15 -2416 ((-112) $ $))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) 24 (|has| $ (-6 -4449)))) (-4256 (($ $ $) NIL (|has| $ (-6 -4449)))) (-3511 (($ $ $) NIL (|has| $ (-6 -4449)))) (-2581 (($ $ (-650 |#1|)) 34)) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "left" $) NIL (|has| $ (-6 -4449))) (($ $ "right" $) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4410 (($ $) 12)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 36)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2021 ((|#1| $ (-1 |#1| |#1| |#1|)) 44) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 49)) (-4081 (($ $ |#1| (-1 |#1| |#1| |#1|)) 50) (($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)) 53)) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-4397 (($ $) 11)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) 13)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 9)) (-3743 (($) 35)) (-1876 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1678 (((-570) $ $) NIL)) (-3150 (((-112) $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2915 (($ (-777) |#1|) 37)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-103 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -2915 ($ (-777) |#1|)) (-15 -2581 ($ $ (-650 |#1|))) (-15 -2021 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2021 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|))))) (-1109)) (T -103))
-((-2915 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))) (-2581 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-2021 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))) (-2021 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-4081 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))) (-4081 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-650 *2) *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))))
-(-13 (-126 |#1|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -2915 ($ (-777) |#1|)) (-15 -2581 ($ $ (-650 |#1|))) (-15 -2021 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2021 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)))))
-((-2119 ((|#3| |#2| |#2|) 36)) (-3844 ((|#1| |#2| |#2|) 53 (|has| |#1| (-6 (-4450 "*"))))) (-2369 ((|#3| |#2| |#2|) 38)) (-4021 ((|#1| |#2|) 58 (|has| |#1| (-6 (-4450 "*"))))))
-(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2119 (|#3| |#2| |#2|)) (-15 -2369 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4450 "*"))) (PROGN (-15 -3844 (|#1| |#2| |#2|)) (-15 -4021 (|#1| |#2|))) |%noBranch|)) (-1058) (-1252 |#1|) (-693 |#1| |#4| |#5|) (-378 |#1|) (-378 |#1|)) (T -104))
-((-4021 (*1 *2 *3) (-12 (|has| *2 (-6 (-4450 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2)) (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1252 *2)) (-4 *4 (-693 *2 *5 *6)))) (-3844 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4450 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2)) (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1252 *2)) (-4 *4 (-693 *2 *5 *6)))) (-2369 (*1 *2 *3 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1252 *4)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)))) (-2119 (*1 *2 *3 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1252 *4)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)))))
-(-10 -7 (-15 -2119 (|#3| |#2| |#2|)) (-15 -2369 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4450 "*"))) (PROGN (-15 -3844 (|#1| |#2| |#2|)) (-15 -4021 (|#1| |#2|))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1898 (((-650 (-1186))) 37)) (-3481 (((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186)) 39)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-105) (-13 (-1109) (-10 -7 (-15 -1898 ((-650 (-1186)))) (-15 -3481 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4448)))) (T -105))
-((-1898 (*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))) (-3481 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227))))) (-5 *1 (-105)))))
-(-13 (-1109) (-10 -7 (-15 -1898 ((-650 (-1186)))) (-15 -3481 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4448)))
-((-2251 (($ (-650 |#2|)) 11)))
-(((-106 |#1| |#2|) (-10 -8 (-15 -2251 (|#1| (-650 |#2|)))) (-107 |#2|) (-1226)) (T -106))
-NIL
-(-10 -8 (-15 -2251 (|#1| (-650 |#2|))))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-107 |#1|) (-141) (-1226)) (T -107))
-((-2251 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-4 *1 (-107 *3)))) (-1899 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1226)))) (-2278 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1226)))) (-3784 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1226)))))
-(-13 (-495 |t#1|) (-10 -8 (-6 -4449) (-15 -2251 ($ (-650 |t#1|))) (-15 -1899 (|t#1| $)) (-15 -2278 ($ |t#1| $)) (-15 -3784 (|t#1| $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-570) $) NIL (|has| (-570) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-570) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| (-570) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-570) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2761 (((-112) $) NIL (|has| (-570) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-570) (-856)))) (-1351 (($ (-1 (-570) (-570)) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-570) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-3739 (((-570) $) NIL (|has| (-570) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-570) $) NIL)) (-1416 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 2) $) 10)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 (((-570) $) NIL (|has| (-570) (-551)))) (-3005 (($ (-413 (-570))) 9)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| (-570) (-826)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2975 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL)))
-(((-108) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 2)) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -3005 ($ (-413 (-570))))))) (T -108))
-((-1965 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))) (-3005 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 2)) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -3005 ($ (-413 (-570))))))
-((-2855 (((-650 (-972)) $) 13)) (-3503 (((-512) $) 9)) (-3735 (((-868) $) 20)) (-3470 (($ (-512) (-650 (-972))) 15)))
-(((-109) (-13 (-619 (-868)) (-10 -8 (-15 -3503 ((-512) $)) (-15 -2855 ((-650 (-972)) $)) (-15 -3470 ($ (-512) (-650 (-972))))))) (T -109))
-((-3503 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-109)))) (-2855 (*1 *2 *1) (-12 (-5 *2 (-650 (-972))) (-5 *1 (-109)))) (-3470 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3503 ((-512) $)) (-15 -2855 ((-650 (-972)) $)) (-15 -3470 ($ (-512) (-650 (-972))))))
-((-2416 (((-112) $ $) NIL)) (-2433 (($ $) NIL)) (-1789 (($ $ $) NIL)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3239 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-3288 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3895 (((-112) $ (-1243 (-570)) (-112)) NIL (|has| $ (-6 -4449))) (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-1702 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-3529 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-3790 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4449)))) (-3712 (((-112) $ (-570)) NIL)) (-3998 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-2836 (((-650 (-112)) $) NIL (|has| $ (-6 -4448)))) (-1778 (($ $ $) NIL)) (-1754 (($ $) NIL)) (-3492 (($ $ $) NIL)) (-4286 (($ (-777) (-112)) 10)) (-2957 (($ $ $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL)) (-3068 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2849 (((-650 (-112)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL)) (-3776 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-4285 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-112) $) NIL (|has| (-570) (-856)))) (-3321 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1952 (($ $ (-112)) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-112)) (-650 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-298 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-650 (-298 (-112)))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-4245 (((-650 (-112)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 (($ $ (-1243 (-570))) NIL) (((-112) $ (-570)) NIL) (((-112) $ (-570) (-112)) NIL)) (-4320 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-3486 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3748 (($ (-650 (-112))) NIL)) (-2439 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3735 (((-868) $) NIL)) (-3804 (($ (-777) (-112)) 11)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-1765 (($ $ $) NIL)) (-4421 (($ $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-4407 (($ $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-110) (-13 (-124) (-10 -8 (-15 -3804 ($ (-777) (-112)))))) (T -110))
-((-3804 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110)))))
-(-13 (-124) (-10 -8 (-15 -3804 ($ (-777) (-112)))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#2|) 31)))
+((-2417 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-2872 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
+(-13 (-10 -8 (-15 -2872 ((-112) $ $)) (-15 -2417 ((-112) $ $))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) 24 (|has| $ (-6 -4450)))) (-3141 (($ $ $) NIL (|has| $ (-6 -4450)))) (-1443 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2503 (($ $ (-650 |#1|)) 34)) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4411 (($ $) 12)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 36)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1880 ((|#1| $ (-1 |#1| |#1| |#1|)) 44) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 49)) (-2142 (($ $ |#1| (-1 |#1| |#1| |#1|)) 50) (($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)) 53)) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4398 (($ $) 11)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) 13)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 9)) (-3006 (($) 35)) (-1877 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2763 (((-570) $ $) NIL)) (-2345 (((-112) $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3758 (($ (-777) |#1|) 37)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-103 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -3758 ($ (-777) |#1|)) (-15 -2503 ($ $ (-650 |#1|))) (-15 -1880 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1880 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2142 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2142 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|))))) (-1109)) (T -103))
+((-3758 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))) (-2503 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-1880 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))) (-1880 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-2142 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))) (-2142 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-650 *2) *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))))
+(-13 (-126 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -3758 ($ (-777) |#1|)) (-15 -2503 ($ $ (-650 |#1|))) (-15 -1880 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1880 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2142 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2142 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)))))
+((-1628 ((|#3| |#2| |#2|) 36)) (-1552 ((|#1| |#2| |#2|) 53 (|has| |#1| (-6 (-4451 "*"))))) (-2341 ((|#3| |#2| |#2|) 38)) (-2670 ((|#1| |#2|) 58 (|has| |#1| (-6 (-4451 "*"))))))
+(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1628 (|#3| |#2| |#2|)) (-15 -2341 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4451 "*"))) (PROGN (-15 -1552 (|#1| |#2| |#2|)) (-15 -2670 (|#1| |#2|))) |%noBranch|)) (-1058) (-1253 |#1|) (-693 |#1| |#4| |#5|) (-378 |#1|) (-378 |#1|)) (T -104))
+((-2670 (*1 *2 *3) (-12 (|has| *2 (-6 (-4451 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2)) (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1253 *2)) (-4 *4 (-693 *2 *5 *6)))) (-1552 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4451 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2)) (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1253 *2)) (-4 *4 (-693 *2 *5 *6)))) (-2341 (*1 *2 *3 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1253 *4)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)))) (-1628 (*1 *2 *3 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1253 *4)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)))))
+(-10 -7 (-15 -1628 (|#3| |#2| |#2|)) (-15 -2341 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4451 "*"))) (PROGN (-15 -1552 (|#1| |#2| |#2|)) (-15 -2670 (|#1| |#2|))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-4213 (((-650 (-1186))) 37)) (-2349 (((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186)) 39)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-105) (-13 (-1109) (-10 -7 (-15 -4213 ((-650 (-1186)))) (-15 -2349 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4449)))) (T -105))
+((-4213 (*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))) (-2349 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227))))) (-5 *1 (-105)))))
+(-13 (-1109) (-10 -7 (-15 -4213 ((-650 (-1186)))) (-15 -2349 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4449)))
+((-3594 (($ (-650 |#2|)) 11)))
+(((-106 |#1| |#2|) (-10 -8 (-15 -3594 (|#1| (-650 |#2|)))) (-107 |#2|) (-1227)) (T -106))
+NIL
+(-10 -8 (-15 -3594 (|#1| (-650 |#2|))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-107 |#1|) (-141) (-1227)) (T -107))
+((-3594 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-107 *3)))) (-4223 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))) (-2599 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))) (-2192 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
+(-13 (-495 |t#1|) (-10 -8 (-6 -4450) (-15 -3594 ($ (-650 |t#1|))) (-15 -4223 (|t#1| $)) (-15 -2599 ($ |t#1| $)) (-15 -2192 (|t#1| $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-570) $) NIL (|has| (-570) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-570) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| (-570) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-570) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1774 (((-112) $) NIL (|has| (-570) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-570) (-856)))) (-1352 (($ (-1 (-570) (-570)) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-570) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-2962 (((-570) $) NIL (|has| (-570) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-570) $) NIL)) (-1417 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 2) $) 10)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 (((-570) $) NIL (|has| (-570) (-551)))) (-3360 (($ (-413 (-570))) 9)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| (-570) (-826)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2975 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL)))
+(((-108) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 2)) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -3360 ($ (-413 (-570))))))) (T -108))
+((-2442 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))) (-3360 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 2)) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -3360 ($ (-413 (-570))))))
+((-2855 (((-650 (-972)) $) 13)) (-3504 (((-512) $) 9)) (-3735 (((-868) $) 20)) (-2265 (($ (-512) (-650 (-972))) 15)))
+(((-109) (-13 (-619 (-868)) (-10 -8 (-15 -3504 ((-512) $)) (-15 -2855 ((-650 (-972)) $)) (-15 -2265 ($ (-512) (-650 (-972))))))) (T -109))
+((-3504 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-109)))) (-2855 (*1 *2 *1) (-12 (-5 *2 (-650 (-972))) (-5 *1 (-109)))) (-2265 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3504 ((-512) $)) (-15 -2855 ((-650 (-972)) $)) (-15 -2265 ($ (-512) (-650 (-972))))))
+((-2417 (((-112) $ $) NIL)) (-2434 (($ $) NIL)) (-1790 (($ $ $) NIL)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3885 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-3287 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3894 (((-112) $ (-1244 (-570)) (-112)) NIL (|has| $ (-6 -4450))) (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-1703 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3529 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3789 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4450)))) (-3713 (((-112) $ (-570)) NIL)) (-3998 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-2835 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-1778 (($ $ $) NIL)) (-1753 (($ $) NIL)) (-4376 (($ $ $) NIL)) (-4287 (($ (-777) (-112)) 10)) (-4204 (($ $ $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL)) (-2727 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3201 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL)) (-3776 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-4286 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-112) $) NIL (|has| (-570) (-856)))) (-3281 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-3531 (($ $ (-112)) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-112)) (-650 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-298 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-650 (-298 (-112)))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-4348 (((-650 (-112)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 (($ $ (-1244 (-570))) NIL) (((-112) $ (-570)) NIL) (((-112) $ (-570) (-112)) NIL)) (-4320 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3490 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3749 (($ (-650 (-112))) NIL)) (-2439 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3735 (((-868) $) NIL)) (-2346 (($ (-777) (-112)) 11)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1765 (($ $ $) NIL)) (-4419 (($ $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-4404 (($ $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-110) (-13 (-124) (-10 -8 (-15 -2346 ($ (-777) (-112)))))) (T -110))
+((-2346 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110)))))
+(-13 (-124) (-10 -8 (-15 -2346 ($ (-777) (-112)))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#2|) 31)))
(((-111 |#1| |#2|) (-141) (-1058) (-1058)) (T -111))
NIL
-(-13 (-654 |t#1|) (-1065 |t#2|) (-10 -7 (-6 -4443) (-6 -4442)))
+(-13 (-654 |t#1|) (-1065 |t#2|) (-10 -7 (-6 -4444) (-6 -4443)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-2433 (($ $) 10)) (-1789 (($ $ $) 15)) (-2959 (($) 7 T CONST)) (-4249 (($ $) 6)) (-3403 (((-777)) 24)) (-3336 (($) 32)) (-1778 (($ $ $) 13)) (-1754 (($ $) 9)) (-3492 (($ $ $) 16)) (-2957 (($ $ $) 17)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) 30)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) 28)) (-4165 (($ $ $) 20)) (-3479 (((-1129) $) NIL)) (-1889 (($) 8 T CONST)) (-4066 (($ $ $) 21)) (-1416 (((-542) $) 34)) (-3735 (((-868) $) 36)) (-1859 (((-112) $ $) NIL)) (-1765 (($ $ $) 11)) (-4421 (($ $ $) 14)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 19)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 22)) (-4407 (($ $ $) 12)))
-(((-112) (-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1789 ($ $ $)) (-15 -2957 ($ $ $)) (-15 -3492 ($ $ $)) (-15 -4249 ($ $))))) (T -112))
-((-1789 (*1 *1 *1 *1) (-5 *1 (-112))) (-2957 (*1 *1 *1 *1) (-5 *1 (-112))) (-3492 (*1 *1 *1 *1) (-5 *1 (-112))) (-4249 (*1 *1 *1) (-5 *1 (-112))))
-(-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1789 ($ $ $)) (-15 -2957 ($ $ $)) (-15 -3492 ($ $ $)) (-15 -4249 ($ $))))
-((-1778 (($ $ $) 6)) (-1754 (($ $) 8)) (-1765 (($ $ $) 7)))
+((-2417 (((-112) $ $) NIL)) (-2434 (($ $) 10)) (-1790 (($ $ $) 15)) (-2959 (($) 7 T CONST)) (-4250 (($ $) 6)) (-3403 (((-777)) 24)) (-3336 (($) 32)) (-1778 (($ $ $) 13)) (-1753 (($ $) 9)) (-4376 (($ $ $) 16)) (-4204 (($ $ $) 17)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) 30)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) 28)) (-1692 (($ $ $) 20)) (-3479 (((-1129) $) NIL)) (-1890 (($) 8 T CONST)) (-2005 (($ $ $) 21)) (-1417 (((-542) $) 34)) (-3735 (((-868) $) 36)) (-3866 (((-112) $ $) NIL)) (-1765 (($ $ $) 11)) (-4419 (($ $ $) 14)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 19)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 22)) (-4404 (($ $ $) 12)))
+(((-112) (-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1790 ($ $ $)) (-15 -4204 ($ $ $)) (-15 -4376 ($ $ $)) (-15 -4250 ($ $))))) (T -112))
+((-1790 (*1 *1 *1 *1) (-5 *1 (-112))) (-4204 (*1 *1 *1 *1) (-5 *1 (-112))) (-4376 (*1 *1 *1 *1) (-5 *1 (-112))) (-4250 (*1 *1 *1) (-5 *1 (-112))))
+(-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1790 ($ $ $)) (-15 -4204 ($ $ $)) (-15 -4376 ($ $ $)) (-15 -4250 ($ $))))
+((-1778 (($ $ $) 6)) (-1753 (($ $) 8)) (-1765 (($ $ $) 7)))
(((-113) (-141)) (T -113))
-((-1754 (*1 *1 *1) (-4 *1 (-113))) (-1765 (*1 *1 *1 *1) (-4 *1 (-113))) (-1778 (*1 *1 *1 *1) (-4 *1 (-113))))
-(-13 (-1226) (-10 -8 (-15 -1754 ($ $)) (-15 -1765 ($ $ $)) (-15 -1778 ($ $ $))))
-(((-1226) . T))
-((-1816 (((-3 (-1 |#1| (-650 |#1|)) "failed") (-115)) 23) (((-115) (-115) (-1 |#1| |#1|)) 13) (((-115) (-115) (-1 |#1| (-650 |#1|))) 11) (((-3 |#1| "failed") (-115) (-650 |#1|)) 25)) (-2114 (((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115)) 29) (((-115) (-115) (-1 |#1| |#1|)) 33) (((-115) (-115) (-650 (-1 |#1| (-650 |#1|)))) 30)) (-1627 (((-115) |#1|) 63)) (-2503 (((-3 |#1| "failed") (-115)) 58)))
-(((-114 |#1|) (-10 -7 (-15 -1816 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -1816 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -1816 ((-115) (-115) (-1 |#1| |#1|))) (-15 -1816 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -2114 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -2114 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2114 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -1627 ((-115) |#1|)) (-15 -2503 ((-3 |#1| "failed") (-115)))) (-1109)) (T -114))
-((-2503 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))) (-1627 (*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))) (-2114 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-1 *4 (-650 *4)))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-2114 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2114 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-1 *4 (-650 *4)))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1816 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-1 *4 (-650 *4))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-1816 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1816 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 (-650 *4))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1816 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-650 *2)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
-(-10 -7 (-15 -1816 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -1816 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -1816 ((-115) (-115) (-1 |#1| |#1|))) (-15 -1816 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -2114 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -2114 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2114 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -1627 ((-115) |#1|)) (-15 -2503 ((-3 |#1| "failed") (-115))))
-((-2416 (((-112) $ $) NIL)) (-3454 (((-777) $) 91) (($ $ (-777)) 37)) (-1537 (((-112) $) 41)) (-2741 (($ $ (-1168) (-780)) 58) (($ $ (-512) (-780)) 33)) (-1628 (($ $ (-45 (-1168) (-780))) 16)) (-3057 (((-3 (-780) "failed") $ (-1168)) 27) (((-697 (-780)) $ (-512)) 32)) (-2855 (((-45 (-1168) (-780)) $) 15)) (-3680 (($ (-1186)) 20) (($ (-1186) (-777)) 23) (($ (-1186) (-55)) 24)) (-3691 (((-112) $) 39)) (-1725 (((-112) $) 43)) (-3503 (((-1186) $) 8)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-1566 (((-112) $ (-1186)) 11)) (-4184 (($ $ (-1 (-542) (-650 (-542)))) 64) (((-3 (-1 (-542) (-650 (-542))) "failed") $) 71)) (-3479 (((-1129) $) NIL)) (-2351 (((-112) $ (-512)) 36)) (-4126 (($ $ (-1 (-112) $ $)) 45)) (-4131 (((-3 (-1 (-868) (-650 (-868))) "failed") $) 69) (($ $ (-1 (-868) (-650 (-868)))) 51) (($ $ (-1 (-868) (-868))) 53)) (-1897 (($ $ (-1168)) 55) (($ $ (-512)) 56)) (-3915 (($ $) 77)) (-1745 (($ $ (-1 (-112) $ $)) 46)) (-3735 (((-868) $) 60)) (-1859 (((-112) $ $) NIL)) (-3592 (($ $ (-512)) 34)) (-1893 (((-55) $) 72)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 89)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 103)))
-(((-115) (-13 (-856) (-841 (-1186)) (-10 -8 (-15 -2855 ((-45 (-1168) (-780)) $)) (-15 -3915 ($ $)) (-15 -3680 ($ (-1186))) (-15 -3680 ($ (-1186) (-777))) (-15 -3680 ($ (-1186) (-55))) (-15 -3691 ((-112) $)) (-15 -1537 ((-112) $)) (-15 -1725 ((-112) $)) (-15 -3454 ((-777) $)) (-15 -3454 ($ $ (-777))) (-15 -4126 ($ $ (-1 (-112) $ $))) (-15 -1745 ($ $ (-1 (-112) $ $))) (-15 -4131 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4131 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4131 ($ $ (-1 (-868) (-868)))) (-15 -4184 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4184 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -2351 ((-112) $ (-512))) (-15 -3592 ($ $ (-512))) (-15 -1897 ($ $ (-1168))) (-15 -1897 ($ $ (-512))) (-15 -3057 ((-3 (-780) "failed") $ (-1168))) (-15 -3057 ((-697 (-780)) $ (-512))) (-15 -2741 ($ $ (-1168) (-780))) (-15 -2741 ($ $ (-512) (-780))) (-15 -1628 ($ $ (-45 (-1168) (-780))))))) (T -115))
-((-2855 (*1 *2 *1) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))) (-3915 (*1 *1 *1) (-5 *1 (-115))) (-3680 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-115)))) (-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *1 (-115)))) (-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-55)) (-5 *1 (-115)))) (-3691 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-1537 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-1725 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-3454 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-3454 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-4126 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-1745 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-4131 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4131 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4131 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-868))) (-5 *1 (-115)))) (-4184 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-4184 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-2351 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))) (-3592 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-1897 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))) (-1897 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-3057 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-780)) (-5 *1 (-115)))) (-3057 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-780))) (-5 *1 (-115)))) (-2741 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-780)) (-5 *1 (-115)))) (-2741 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-780)) (-5 *1 (-115)))) (-1628 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
-(-13 (-856) (-841 (-1186)) (-10 -8 (-15 -2855 ((-45 (-1168) (-780)) $)) (-15 -3915 ($ $)) (-15 -3680 ($ (-1186))) (-15 -3680 ($ (-1186) (-777))) (-15 -3680 ($ (-1186) (-55))) (-15 -3691 ((-112) $)) (-15 -1537 ((-112) $)) (-15 -1725 ((-112) $)) (-15 -3454 ((-777) $)) (-15 -3454 ($ $ (-777))) (-15 -4126 ($ $ (-1 (-112) $ $))) (-15 -1745 ($ $ (-1 (-112) $ $))) (-15 -4131 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4131 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4131 ($ $ (-1 (-868) (-868)))) (-15 -4184 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4184 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -2351 ((-112) $ (-512))) (-15 -3592 ($ $ (-512))) (-15 -1897 ($ $ (-1168))) (-15 -1897 ($ $ (-512))) (-15 -3057 ((-3 (-780) "failed") $ (-1168))) (-15 -3057 ((-697 (-780)) $ (-512))) (-15 -2741 ($ $ (-1168) (-780))) (-15 -2741 ($ $ (-512) (-780))) (-15 -1628 ($ $ (-45 (-1168) (-780))))))
-((-3921 (((-570) |#2|) 41)))
-(((-116 |#1| |#2|) (-10 -7 (-15 -3921 ((-570) |#2|))) (-13 (-368) (-1047 (-413 (-570)))) (-1252 |#1|)) (T -116))
-((-3921 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-1047 (-413 *2)))) (-5 *2 (-570)) (-5 *1 (-116 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3921 ((-570) |#2|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $ (-570)) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3806 (($ (-1182 (-570)) (-570)) NIL)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3716 (($ $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-3157 (((-777) $) NIL)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4323 (((-570)) NIL)) (-1342 (((-570) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1558 (($ $ (-570)) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2784 (((-1166 (-570)) $) NIL)) (-3049 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-570) $ (-570)) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+((-1753 (*1 *1 *1) (-4 *1 (-113))) (-1765 (*1 *1 *1 *1) (-4 *1 (-113))) (-1778 (*1 *1 *1 *1) (-4 *1 (-113))))
+(-13 (-1227) (-10 -8 (-15 -1753 ($ $)) (-15 -1765 ($ $ $)) (-15 -1778 ($ $ $))))
+(((-1227) . T))
+((-1622 (((-3 (-1 |#1| (-650 |#1|)) "failed") (-115)) 23) (((-115) (-115) (-1 |#1| |#1|)) 13) (((-115) (-115) (-1 |#1| (-650 |#1|))) 11) (((-3 |#1| "failed") (-115) (-650 |#1|)) 25)) (-1570 (((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115)) 29) (((-115) (-115) (-1 |#1| |#1|)) 33) (((-115) (-115) (-650 (-1 |#1| (-650 |#1|)))) 30)) (-3524 (((-115) |#1|) 63)) (-4280 (((-3 |#1| "failed") (-115)) 58)))
+(((-114 |#1|) (-10 -7 (-15 -1622 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -1622 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -1622 ((-115) (-115) (-1 |#1| |#1|))) (-15 -1622 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -1570 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1570 ((-115) (-115) (-1 |#1| |#1|))) (-15 -1570 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -3524 ((-115) |#1|)) (-15 -4280 ((-3 |#1| "failed") (-115)))) (-1109)) (T -114))
+((-4280 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))) (-3524 (*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))) (-1570 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-1 *4 (-650 *4)))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-1570 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1570 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-1 *4 (-650 *4)))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1622 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-1 *4 (-650 *4))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-1622 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1622 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 (-650 *4))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-1622 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-650 *2)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
+(-10 -7 (-15 -1622 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -1622 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -1622 ((-115) (-115) (-1 |#1| |#1|))) (-15 -1622 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -1570 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1570 ((-115) (-115) (-1 |#1| |#1|))) (-15 -1570 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -3524 ((-115) |#1|)) (-15 -4280 ((-3 |#1| "failed") (-115))))
+((-2417 (((-112) $ $) NIL)) (-2131 (((-777) $) 91) (($ $ (-777)) 37)) (-3884 (((-112) $) 41)) (-1572 (($ $ (-1168) (-780)) 58) (($ $ (-512) (-780)) 33)) (-3536 (($ $ (-45 (-1168) (-780))) 16)) (-3057 (((-3 (-780) "failed") $ (-1168)) 27) (((-697 (-780)) $ (-512)) 32)) (-2855 (((-45 (-1168) (-780)) $) 15)) (-3680 (($ (-1186)) 20) (($ (-1186) (-777)) 23) (($ (-1186) (-55)) 24)) (-2552 (((-112) $) 39)) (-2060 (((-112) $) 43)) (-3504 (((-1186) $) 8)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-4198 (((-112) $ (-1186)) 11)) (-4186 (($ $ (-1 (-542) (-650 (-542)))) 64) (((-3 (-1 (-542) (-650 (-542))) "failed") $) 71)) (-3479 (((-1129) $) NIL)) (-2187 (((-112) $ (-512)) 36)) (-2482 (($ $ (-1 (-112) $ $)) 45)) (-4131 (((-3 (-1 (-868) (-650 (-868))) "failed") $) 69) (($ $ (-1 (-868) (-650 (-868)))) 51) (($ $ (-1 (-868) (-868))) 53)) (-4203 (($ $ (-1168)) 55) (($ $ (-512)) 56)) (-3916 (($ $) 77)) (-2198 (($ $ (-1 (-112) $ $)) 46)) (-3735 (((-868) $) 60)) (-3866 (((-112) $ $) NIL)) (-3591 (($ $ (-512)) 34)) (-4158 (((-55) $) 72)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 89)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 103)))
+(((-115) (-13 (-856) (-841 (-1186)) (-10 -8 (-15 -2855 ((-45 (-1168) (-780)) $)) (-15 -3916 ($ $)) (-15 -3680 ($ (-1186))) (-15 -3680 ($ (-1186) (-777))) (-15 -3680 ($ (-1186) (-55))) (-15 -2552 ((-112) $)) (-15 -3884 ((-112) $)) (-15 -2060 ((-112) $)) (-15 -2131 ((-777) $)) (-15 -2131 ($ $ (-777))) (-15 -2482 ($ $ (-1 (-112) $ $))) (-15 -2198 ($ $ (-1 (-112) $ $))) (-15 -4131 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4131 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4131 ($ $ (-1 (-868) (-868)))) (-15 -4186 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4186 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -2187 ((-112) $ (-512))) (-15 -3591 ($ $ (-512))) (-15 -4203 ($ $ (-1168))) (-15 -4203 ($ $ (-512))) (-15 -3057 ((-3 (-780) "failed") $ (-1168))) (-15 -3057 ((-697 (-780)) $ (-512))) (-15 -1572 ($ $ (-1168) (-780))) (-15 -1572 ($ $ (-512) (-780))) (-15 -3536 ($ $ (-45 (-1168) (-780))))))) (T -115))
+((-2855 (*1 *2 *1) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))) (-3916 (*1 *1 *1) (-5 *1 (-115))) (-3680 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-115)))) (-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *1 (-115)))) (-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-55)) (-5 *1 (-115)))) (-2552 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-3884 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-2060 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-2131 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-2131 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-2482 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-2198 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-4131 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4131 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4131 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-868))) (-5 *1 (-115)))) (-4186 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-4186 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-2187 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))) (-3591 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-3057 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-780)) (-5 *1 (-115)))) (-3057 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-780))) (-5 *1 (-115)))) (-1572 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-780)) (-5 *1 (-115)))) (-1572 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-780)) (-5 *1 (-115)))) (-3536 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
+(-13 (-856) (-841 (-1186)) (-10 -8 (-15 -2855 ((-45 (-1168) (-780)) $)) (-15 -3916 ($ $)) (-15 -3680 ($ (-1186))) (-15 -3680 ($ (-1186) (-777))) (-15 -3680 ($ (-1186) (-55))) (-15 -2552 ((-112) $)) (-15 -3884 ((-112) $)) (-15 -2060 ((-112) $)) (-15 -2131 ((-777) $)) (-15 -2131 ($ $ (-777))) (-15 -2482 ($ $ (-1 (-112) $ $))) (-15 -2198 ($ $ (-1 (-112) $ $))) (-15 -4131 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4131 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4131 ($ $ (-1 (-868) (-868)))) (-15 -4186 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4186 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -2187 ((-112) $ (-512))) (-15 -3591 ($ $ (-512))) (-15 -4203 ($ $ (-1168))) (-15 -4203 ($ $ (-512))) (-15 -3057 ((-3 (-780) "failed") $ (-1168))) (-15 -3057 ((-697 (-780)) $ (-512))) (-15 -1572 ($ $ (-1168) (-780))) (-15 -1572 ($ $ (-512) (-780))) (-15 -3536 ($ $ (-45 (-1168) (-780))))))
+((-4176 (((-570) |#2|) 41)))
+(((-116 |#1| |#2|) (-10 -7 (-15 -4176 ((-570) |#2|))) (-13 (-368) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -116))
+((-4176 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-1047 (-413 *2)))) (-5 *2 (-570)) (-5 *1 (-116 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -4176 ((-570) |#2|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $ (-570)) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2363 (($ (-1182 (-570)) (-570)) NIL)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2778 (($ $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4331 (((-777) $) NIL)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2532 (((-570)) NIL)) (-1929 (((-570) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-4102 (($ $ (-570)) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3819 (((-1166 (-570)) $) NIL)) (-2540 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-570) $ (-570)) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
(((-117 |#1|) (-875 |#1|) (-570)) (T -117))
NIL
(-875 |#1|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-117 |#1|) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-117 |#1|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-117 |#1|) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-117 |#1|) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-117 |#1|) (-1047 (-570))))) (-3080 (((-117 |#1|) $) NIL) (((-1186) $) NIL (|has| (-117 |#1|) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-117 |#1|) (-1047 (-570)))) (((-570) $) NIL (|has| (-117 |#1|) (-1047 (-570))))) (-1576 (($ $) NIL) (($ (-570) $) NIL)) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-117 |#1|))) (|:| |vec| (-1276 (-117 |#1|)))) (-695 $) (-1276 $)) NIL) (((-695 (-117 |#1|)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-117 |#1|) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-117 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-117 |#1|) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-117 |#1|) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| (-117 |#1|) (-1161)))) (-2761 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-3787 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-1351 (($ (-1 (-117 |#1|) (-117 |#1|)) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-117 |#1|) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-117 |#1|) (-311)))) (-3739 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-117 |#1|)) (-650 (-117 |#1|))) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-117 |#1|) (-117 |#1|)) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-298 (-117 |#1|))) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-650 (-298 (-117 |#1|)))) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-650 (-1186)) (-650 (-117 |#1|))) NIL (|has| (-117 |#1|) (-520 (-1186) (-117 |#1|)))) (($ $ (-1186) (-117 |#1|)) NIL (|has| (-117 |#1|) (-520 (-1186) (-117 |#1|))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-117 |#1|)) NIL (|has| (-117 |#1|) (-290 (-117 |#1|) (-117 |#1|))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-117 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-117 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1 (-117 |#1|) (-117 |#1|)) (-777)) NIL) (($ $ (-1 (-117 |#1|) (-117 |#1|))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-117 |#1|) $) NIL)) (-1416 (((-899 (-570)) $) NIL (|has| (-117 |#1|) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-117 |#1|) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-117 |#1|) (-620 (-542)))) (((-384) $) NIL (|has| (-117 |#1|) (-1031))) (((-227) $) NIL (|has| (-117 |#1|) (-1031)))) (-3484 (((-176 (-413 (-570))) $) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-117 |#1|)) NIL) (($ (-1186)) NIL (|has| (-117 |#1|) (-1047 (-1186))))) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))) (|has| (-117 |#1|) (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ (-570)) NIL)) (-1423 (($ $) NIL (|has| (-117 |#1|) (-826)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-117 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-117 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1 (-117 |#1|) (-117 |#1|)) (-777)) NIL) (($ $ (-1 (-117 |#1|) (-117 |#1|))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2975 (($ $ $) NIL) (($ (-117 |#1|) (-117 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-117 |#1|) $) NIL) (($ $ (-117 |#1|)) NIL)))
-(((-118 |#1|) (-13 (-1001 (-117 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -3484 ((-176 (-413 (-570))) $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $)))) (-570)) (T -118))
-((-3026 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-118 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-3484 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-118 *3)) (-14 *3 (-570)))) (-1576 (*1 *1 *1) (-12 (-5 *1 (-118 *2)) (-14 *2 (-570)))) (-1576 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-118 *3)) (-14 *3 *2))))
-(-13 (-1001 (-117 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -3484 ((-176 (-413 (-570))) $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $))))
-((-3895 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 61) (($ $ "right" $) 63)) (-3457 (((-650 $) $) 31)) (-1457 (((-112) $ $) 36)) (-3464 (((-112) |#2| $) 40)) (-2282 (((-650 |#2|) $) 25)) (-3873 (((-112) $) 18)) (-1876 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-3150 (((-112) $) 57)) (-3735 (((-868) $) 47)) (-3129 (((-650 $) $) 32)) (-2872 (((-112) $ $) 38)) (-2426 (((-777) $) 50)))
-(((-119 |#1| |#2|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -3895 (|#1| |#1| "right" |#1|)) (-15 -3895 (|#1| |#1| "left" |#1|)) (-15 -1876 (|#1| |#1| "right")) (-15 -1876 (|#1| |#1| "left")) (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -1457 ((-112) |#1| |#1|)) (-15 -2282 ((-650 |#2|) |#1|)) (-15 -3150 ((-112) |#1|)) (-15 -1876 (|#2| |#1| "value")) (-15 -3873 ((-112) |#1|)) (-15 -3457 ((-650 |#1|) |#1|)) (-15 -3129 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3464 ((-112) |#2| |#1|)) (-15 -2426 ((-777) |#1|))) (-120 |#2|) (-1226)) (T -119))
-NIL
-(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -3895 (|#1| |#1| "right" |#1|)) (-15 -3895 (|#1| |#1| "left" |#1|)) (-15 -1876 (|#1| |#1| "right")) (-15 -1876 (|#1| |#1| "left")) (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -1457 ((-112) |#1| |#1|)) (-15 -2282 ((-650 |#2|) |#1|)) (-15 -3150 ((-112) |#1|)) (-15 -1876 (|#2| |#1| "value")) (-15 -3873 ((-112) |#1|)) (-15 -3457 ((-650 |#1|) |#1|)) (-15 -3129 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3464 ((-112) |#2| |#1|)) (-15 -2426 ((-777) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-4256 (($ $ $) 53 (|has| $ (-6 -4449)))) (-3511 (($ $ $) 55 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449))) (($ $ "left" $) 56 (|has| $ (-6 -4449))) (($ $ "right" $) 54 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-2450 (($) 7 T CONST)) (-4410 (($ $) 58)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-4397 (($ $) 60)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-1678 (((-570) $ $) 45)) (-3150 (((-112) $) 47)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-120 |#1|) (-141) (-1226)) (T -120))
-((-4397 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1226)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-120 *3)) (-4 *3 (-1226)))) (-4410 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1226)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-120 *3)) (-4 *3 (-1226)))) (-3895 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4449)) (-4 *1 (-120 *3)) (-4 *3 (-1226)))) (-3511 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-120 *2)) (-4 *2 (-1226)))) (-3895 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4449)) (-4 *1 (-120 *3)) (-4 *3 (-1226)))) (-4256 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-120 *2)) (-4 *2 (-1226)))))
-(-13 (-1019 |t#1|) (-10 -8 (-15 -4397 ($ $)) (-15 -1876 ($ $ "left")) (-15 -4410 ($ $)) (-15 -1876 ($ $ "right")) (IF (|has| $ (-6 -4449)) (PROGN (-15 -3895 ($ $ "left" $)) (-15 -3511 ($ $ $)) (-15 -3895 ($ $ "right" $)) (-15 -4256 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2029 (((-112) |#1|) 29)) (-1612 (((-777) (-777)) 28) (((-777)) 27)) (-2026 (((-112) |#1| (-112)) 30) (((-112) |#1|) 31)))
-(((-121 |#1|) (-10 -7 (-15 -2026 ((-112) |#1|)) (-15 -2026 ((-112) |#1| (-112))) (-15 -1612 ((-777))) (-15 -1612 ((-777) (-777))) (-15 -2029 ((-112) |#1|))) (-1252 (-570))) (T -121))
-((-2029 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))) (-1612 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))) (-1612 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))) (-2026 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))) (-2026 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))))
-(-10 -7 (-15 -2026 ((-112) |#1|)) (-15 -2026 ((-112) |#1| (-112))) (-15 -1612 ((-777))) (-15 -1612 ((-777) (-777))) (-15 -2029 ((-112) |#1|)))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) 18)) (-2198 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 26)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-4256 (($ $ $) 21 (|has| $ (-6 -4449)))) (-3511 (($ $ $) 23 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "left" $) NIL (|has| $ (-6 -4449))) (($ $ "right" $) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4410 (($ $) 20)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 27)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-4397 (($ $) 22)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3401 (($ |#1| $) 28)) (-2278 (($ |#1| $) 15)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 17)) (-3743 (($) 11)) (-1876 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1678 (((-570) $ $) NIL)) (-3150 (((-112) $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3332 (($ (-650 |#1|)) 16)) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-122 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4449) (-6 -4448) (-15 -3332 ($ (-650 |#1|))) (-15 -2278 ($ |#1| $)) (-15 -3401 ($ |#1| $)) (-15 -2198 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-856)) (T -122))
-((-3332 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))) (-2278 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-3401 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-2198 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-122 *3)) (|:| |greater| (-122 *3)))) (-5 *1 (-122 *3)) (-4 *3 (-856)))))
-(-13 (-126 |#1|) (-10 -8 (-6 -4449) (-6 -4448) (-15 -3332 ($ (-650 |#1|))) (-15 -2278 ($ |#1| $)) (-15 -3401 ($ |#1| $)) (-15 -2198 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-2433 (($ $) 13)) (-1754 (($ $) 11)) (-3492 (($ $ $) 23)) (-2957 (($ $ $) 21)) (-4421 (($ $ $) 19)) (-4407 (($ $ $) 17)))
-(((-123 |#1|) (-10 -8 (-15 -3492 (|#1| |#1| |#1|)) (-15 -2957 (|#1| |#1| |#1|)) (-15 -2433 (|#1| |#1|)) (-15 -4407 (|#1| |#1| |#1|)) (-15 -4421 (|#1| |#1| |#1|)) (-15 -1754 (|#1| |#1|))) (-124)) (T -123))
-NIL
-(-10 -8 (-15 -3492 (|#1| |#1| |#1|)) (-15 -2957 (|#1| |#1| |#1|)) (-15 -2433 (|#1| |#1|)) (-15 -4407 (|#1| |#1| |#1|)) (-15 -4421 (|#1| |#1| |#1|)) (-15 -1754 (|#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-2433 (($ $) 102)) (-1789 (($ $ $) 27)) (-3225 (((-1281) $ (-570) (-570)) 65 (|has| $ (-6 -4449)))) (-4254 (((-112) $) 97 (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) 91)) (-3239 (($ $) 101 (-12 (|has| (-112) (-856)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-112) (-112)) $) 100 (|has| $ (-6 -4449)))) (-3288 (($ $) 96 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) 90)) (-3594 (((-112) $ (-777)) 36)) (-3895 (((-112) $ (-1243 (-570)) (-112)) 87 (|has| $ (-6 -4449))) (((-112) $ (-570) (-112)) 53 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-112)) $) 70 (|has| $ (-6 -4448)))) (-2450 (($) 37 T CONST)) (-2697 (($ $) 99 (|has| $ (-6 -4449)))) (-2258 (($ $) 89)) (-3480 (($ $) 67 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4448))) (($ (-112) $) 68 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4448))))) (-3529 (((-112) (-1 (-112) (-112) (-112)) $) 73 (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 72 (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 69 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4448))))) (-3790 (((-112) $ (-570) (-112)) 52 (|has| $ (-6 -4449)))) (-3712 (((-112) $ (-570)) 54)) (-3998 (((-570) (-112) $ (-570)) 94 (|has| (-112) (-1109))) (((-570) (-112) $) 93 (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) 92)) (-2836 (((-650 (-112)) $) 44 (|has| $ (-6 -4448)))) (-1778 (($ $ $) 107)) (-1754 (($ $) 105)) (-3492 (($ $ $) 28)) (-4286 (($ (-777) (-112)) 76)) (-2957 (($ $ $) 29)) (-2742 (((-112) $ (-777)) 35)) (-2790 (((-570) $) 62 (|has| (-570) (-856)))) (-3310 (($ $ $) 14)) (-3068 (($ $ $) 95 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) 88)) (-2849 (((-650 (-112)) $) 45 (|has| $ (-6 -4448)))) (-3464 (((-112) (-112) $) 47 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 61 (|has| (-570) (-856)))) (-3787 (($ $ $) 15)) (-3776 (($ (-1 (-112) (-112)) $) 40 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-112) (-112) (-112)) $ $) 81) (($ (-1 (-112) (-112)) $) 39)) (-3452 (((-112) $ (-777)) 34)) (-1903 (((-1168) $) 10)) (-4285 (($ $ $ (-570)) 86) (($ (-112) $ (-570)) 85)) (-2344 (((-650 (-570)) $) 59)) (-1354 (((-112) (-570) $) 58)) (-3479 (((-1129) $) 11)) (-3443 (((-112) $) 63 (|has| (-570) (-856)))) (-3321 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 74)) (-1952 (($ $ (-112)) 64 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-112)) (-650 (-112))) 51 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-112) (-112)) 50 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-298 (-112))) 49 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-650 (-298 (-112)))) 48 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))))) (-4017 (((-112) $ $) 30)) (-3262 (((-112) (-112) $) 60 (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-4245 (((-650 (-112)) $) 57)) (-3329 (((-112) $) 33)) (-3743 (($) 32)) (-1876 (($ $ (-1243 (-570))) 82) (((-112) $ (-570)) 56) (((-112) $ (-570) (-112)) 55)) (-4320 (($ $ (-1243 (-570))) 84) (($ $ (-570)) 83)) (-3486 (((-777) (-112) $) 46 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4448)))) (-1806 (($ $ $ (-570)) 98 (|has| $ (-6 -4449)))) (-3915 (($ $) 31)) (-1416 (((-542) $) 66 (|has| (-112) (-620 (-542))))) (-3748 (($ (-650 (-112))) 75)) (-2439 (($ (-650 $)) 80) (($ $ $) 79) (($ (-112) $) 78) (($ $ (-112)) 77)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-4368 (((-112) (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4448)))) (-1765 (($ $ $) 106)) (-4421 (($ $ $) 104)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-4407 (($ $ $) 103)) (-2426 (((-777) $) 38 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-117 |#1|) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-117 |#1|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-117 |#1|) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-117 |#1|) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-117 |#1|) (-1047 (-570))))) (-3080 (((-117 |#1|) $) NIL) (((-1186) $) NIL (|has| (-117 |#1|) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-117 |#1|) (-1047 (-570)))) (((-570) $) NIL (|has| (-117 |#1|) (-1047 (-570))))) (-2998 (($ $) NIL) (($ (-570) $) NIL)) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-117 |#1|))) (|:| |vec| (-1277 (-117 |#1|)))) (-695 $) (-1277 $)) NIL) (((-695 (-117 |#1|)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-117 |#1|) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-117 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-117 |#1|) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-117 |#1|) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| (-117 |#1|) (-1161)))) (-1774 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-2222 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-1352 (($ (-1 (-117 |#1|) (-117 |#1|)) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-117 |#1|) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-117 |#1|) (-311)))) (-2962 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-117 |#1|)) (-650 (-117 |#1|))) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-117 |#1|) (-117 |#1|)) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-298 (-117 |#1|))) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-650 (-298 (-117 |#1|)))) NIL (|has| (-117 |#1|) (-313 (-117 |#1|)))) (($ $ (-650 (-1186)) (-650 (-117 |#1|))) NIL (|has| (-117 |#1|) (-520 (-1186) (-117 |#1|)))) (($ $ (-1186) (-117 |#1|)) NIL (|has| (-117 |#1|) (-520 (-1186) (-117 |#1|))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-117 |#1|)) NIL (|has| (-117 |#1|) (-290 (-117 |#1|) (-117 |#1|))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-117 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-117 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1 (-117 |#1|) (-117 |#1|)) (-777)) NIL) (($ $ (-1 (-117 |#1|) (-117 |#1|))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-117 |#1|) $) NIL)) (-1417 (((-899 (-570)) $) NIL (|has| (-117 |#1|) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-117 |#1|) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-117 |#1|) (-620 (-542)))) (((-384) $) NIL (|has| (-117 |#1|) (-1031))) (((-227) $) NIL (|has| (-117 |#1|) (-1031)))) (-2375 (((-176 (-413 (-570))) $) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-117 |#1|)) NIL) (($ (-1186)) NIL (|has| (-117 |#1|) (-1047 (-1186))))) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))) (|has| (-117 |#1|) (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ (-570)) NIL)) (-1367 (($ $) NIL (|has| (-117 |#1|) (-826)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-117 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-117 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-117 |#1|) (-907 (-1186)))) (($ $ (-1 (-117 |#1|) (-117 |#1|)) (-777)) NIL) (($ $ (-1 (-117 |#1|) (-117 |#1|))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-2975 (($ $ $) NIL) (($ (-117 |#1|) (-117 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-117 |#1|) $) NIL) (($ $ (-117 |#1|)) NIL)))
+(((-118 |#1|) (-13 (-1001 (-117 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -2375 ((-176 (-413 (-570))) $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $)))) (-570)) (T -118))
+((-3026 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-118 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-2375 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-118 *3)) (-14 *3 (-570)))) (-2998 (*1 *1 *1) (-12 (-5 *1 (-118 *2)) (-14 *2 (-570)))) (-2998 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-118 *3)) (-14 *3 *2))))
+(-13 (-1001 (-117 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -2375 ((-176 (-413 (-570))) $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $))))
+((-3894 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 61) (($ $ "right" $) 63)) (-2150 (((-650 $) $) 31)) (-4329 (((-112) $ $) 36)) (-2218 (((-112) |#2| $) 40)) (-2283 (((-650 |#2|) $) 25)) (-1859 (((-112) $) 18)) (-1877 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2345 (((-112) $) 57)) (-3735 (((-868) $) 47)) (-2153 (((-650 $) $) 32)) (-2872 (((-112) $ $) 38)) (-2426 (((-777) $) 50)))
+(((-119 |#1| |#2|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -3894 (|#1| |#1| "right" |#1|)) (-15 -3894 (|#1| |#1| "left" |#1|)) (-15 -1877 (|#1| |#1| "right")) (-15 -1877 (|#1| |#1| "left")) (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -4329 ((-112) |#1| |#1|)) (-15 -2283 ((-650 |#2|) |#1|)) (-15 -2345 ((-112) |#1|)) (-15 -1877 (|#2| |#1| "value")) (-15 -1859 ((-112) |#1|)) (-15 -2150 ((-650 |#1|) |#1|)) (-15 -2153 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2218 ((-112) |#2| |#1|)) (-15 -2426 ((-777) |#1|))) (-120 |#2|) (-1227)) (T -119))
+NIL
+(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -3894 (|#1| |#1| "right" |#1|)) (-15 -3894 (|#1| |#1| "left" |#1|)) (-15 -1877 (|#1| |#1| "right")) (-15 -1877 (|#1| |#1| "left")) (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -4329 ((-112) |#1| |#1|)) (-15 -2283 ((-650 |#2|) |#1|)) (-15 -2345 ((-112) |#1|)) (-15 -1877 (|#2| |#1| "value")) (-15 -1859 ((-112) |#1|)) (-15 -2150 ((-650 |#1|) |#1|)) (-15 -2153 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2218 ((-112) |#2| |#1|)) (-15 -2426 ((-777) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3141 (($ $ $) 53 (|has| $ (-6 -4450)))) (-1443 (($ $ $) 55 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) (($ $ "left" $) 56 (|has| $ (-6 -4450))) (($ $ "right" $) 54 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-3761 (($) 7 T CONST)) (-4411 (($ $) 58)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4398 (($ $) 60)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-2763 (((-570) $ $) 45)) (-2345 (((-112) $) 47)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-120 |#1|) (-141) (-1227)) (T -120))
+((-4398 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-4411 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-3894 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-1443 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-3894 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-3141 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
+(-13 (-1019 |t#1|) (-10 -8 (-15 -4398 ($ $)) (-15 -1877 ($ $ "left")) (-15 -4411 ($ $)) (-15 -1877 ($ $ "right")) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3894 ($ $ "left" $)) (-15 -1443 ($ $ $)) (-15 -3894 ($ $ "right" $)) (-15 -3141 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-1952 (((-112) |#1|) 29)) (-3354 (((-777) (-777)) 28) (((-777)) 27)) (-1926 (((-112) |#1| (-112)) 30) (((-112) |#1|) 31)))
+(((-121 |#1|) (-10 -7 (-15 -1926 ((-112) |#1|)) (-15 -1926 ((-112) |#1| (-112))) (-15 -3354 ((-777))) (-15 -3354 ((-777) (-777))) (-15 -1952 ((-112) |#1|))) (-1253 (-570))) (T -121))
+((-1952 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-3354 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-3354 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-1926 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-1926 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
+(-10 -7 (-15 -1926 ((-112) |#1|)) (-15 -1926 ((-112) |#1| (-112))) (-15 -3354 ((-777))) (-15 -3354 ((-777) (-777))) (-15 -1952 ((-112) |#1|)))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) 18)) (-4289 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 26)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3141 (($ $ $) 21 (|has| $ (-6 -4450)))) (-1443 (($ $ $) 23 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4411 (($ $) 20)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 27)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4398 (($ $) 22)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2832 (($ |#1| $) 28)) (-2599 (($ |#1| $) 15)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 17)) (-3006 (($) 11)) (-1877 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2763 (((-570) $ $) NIL)) (-2345 (((-112) $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3399 (($ (-650 |#1|)) 16)) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-122 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -3399 ($ (-650 |#1|))) (-15 -2599 ($ |#1| $)) (-15 -2832 ($ |#1| $)) (-15 -4289 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-856)) (T -122))
+((-3399 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))) (-2599 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-2832 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-4289 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-122 *3)) (|:| |greater| (-122 *3)))) (-5 *1 (-122 *3)) (-4 *3 (-856)))))
+(-13 (-126 |#1|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -3399 ($ (-650 |#1|))) (-15 -2599 ($ |#1| $)) (-15 -2832 ($ |#1| $)) (-15 -4289 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-2434 (($ $) 13)) (-1753 (($ $) 11)) (-4376 (($ $ $) 23)) (-4204 (($ $ $) 21)) (-4419 (($ $ $) 19)) (-4404 (($ $ $) 17)))
+(((-123 |#1|) (-10 -8 (-15 -4376 (|#1| |#1| |#1|)) (-15 -4204 (|#1| |#1| |#1|)) (-15 -2434 (|#1| |#1|)) (-15 -4404 (|#1| |#1| |#1|)) (-15 -4419 (|#1| |#1| |#1|)) (-15 -1753 (|#1| |#1|))) (-124)) (T -123))
+NIL
+(-10 -8 (-15 -4376 (|#1| |#1| |#1|)) (-15 -4204 (|#1| |#1| |#1|)) (-15 -2434 (|#1| |#1|)) (-15 -4404 (|#1| |#1| |#1|)) (-15 -4419 (|#1| |#1| |#1|)) (-15 -1753 (|#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2434 (($ $) 102)) (-1790 (($ $ $) 27)) (-3727 (((-1282) $ (-570) (-570)) 65 (|has| $ (-6 -4450)))) (-4429 (((-112) $) 97 (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) 91)) (-3885 (($ $) 101 (-12 (|has| (-112) (-856)) (|has| $ (-6 -4450)))) (($ (-1 (-112) (-112) (-112)) $) 100 (|has| $ (-6 -4450)))) (-3287 (($ $) 96 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) 90)) (-4095 (((-112) $ (-777)) 36)) (-3894 (((-112) $ (-1244 (-570)) (-112)) 87 (|has| $ (-6 -4450))) (((-112) $ (-570) (-112)) 53 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-112)) $) 70 (|has| $ (-6 -4449)))) (-3761 (($) 37 T CONST)) (-2347 (($ $) 99 (|has| $ (-6 -4450)))) (-2261 (($ $) 89)) (-3480 (($ $) 67 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4449))) (($ (-112) $) 68 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-3529 (((-112) (-1 (-112) (-112) (-112)) $) 73 (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 72 (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 69 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-3789 (((-112) $ (-570) (-112)) 52 (|has| $ (-6 -4450)))) (-3713 (((-112) $ (-570)) 54)) (-3998 (((-570) (-112) $ (-570)) 94 (|has| (-112) (-1109))) (((-570) (-112) $) 93 (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) 92)) (-2835 (((-650 (-112)) $) 44 (|has| $ (-6 -4449)))) (-1778 (($ $ $) 107)) (-1753 (($ $) 105)) (-4376 (($ $ $) 28)) (-4287 (($ (-777) (-112)) 76)) (-4204 (($ $ $) 29)) (-1586 (((-112) $ (-777)) 35)) (-3888 (((-570) $) 62 (|has| (-570) (-856)))) (-3311 (($ $ $) 14)) (-2727 (($ $ $) 95 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) 88)) (-3201 (((-650 (-112)) $) 45 (|has| $ (-6 -4449)))) (-2218 (((-112) (-112) $) 47 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 61 (|has| (-570) (-856)))) (-2222 (($ $ $) 15)) (-3776 (($ (-1 (-112) (-112)) $) 40 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-112) (-112) (-112)) $ $) 81) (($ (-1 (-112) (-112)) $) 39)) (-2113 (((-112) $ (-777)) 34)) (-4268 (((-1168) $) 10)) (-4286 (($ $ $ (-570)) 86) (($ (-112) $ (-570)) 85)) (-2122 (((-650 (-570)) $) 59)) (-2083 (((-112) (-570) $) 58)) (-3479 (((-1129) $) 11)) (-3443 (((-112) $) 63 (|has| (-570) (-856)))) (-3281 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 74)) (-3531 (($ $ (-112)) 64 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-112)) (-650 (-112))) 51 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-112) (-112)) 50 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-298 (-112))) 49 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-650 (-298 (-112)))) 48 (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))))) (-2621 (((-112) $ $) 30)) (-4068 (((-112) (-112) $) 60 (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-4348 (((-650 (-112)) $) 57)) (-3366 (((-112) $) 33)) (-3006 (($) 32)) (-1877 (($ $ (-1244 (-570))) 82) (((-112) $ (-570)) 56) (((-112) $ (-570) (-112)) 55)) (-4320 (($ $ (-1244 (-570))) 84) (($ $ (-570)) 83)) (-3490 (((-777) (-112) $) 46 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4449)))) (-1523 (($ $ $ (-570)) 98 (|has| $ (-6 -4450)))) (-3916 (($ $) 31)) (-1417 (((-542) $) 66 (|has| (-112) (-620 (-542))))) (-3749 (($ (-650 (-112))) 75)) (-2439 (($ (-650 $)) 80) (($ $ $) 79) (($ (-112) $) 78) (($ $ (-112)) 77)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2964 (((-112) (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4449)))) (-1765 (($ $ $) 106)) (-4419 (($ $ $) 104)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-4404 (($ $ $) 103)) (-2426 (((-777) $) 38 (|has| $ (-6 -4449)))))
(((-124) (-141)) (T -124))
-((-2957 (*1 *1 *1 *1) (-4 *1 (-124))) (-3492 (*1 *1 *1 *1) (-4 *1 (-124))) (-1789 (*1 *1 *1 *1) (-4 *1 (-124))))
-(-13 (-856) (-113) (-667) (-19 (-112)) (-10 -8 (-15 -2957 ($ $ $)) (-15 -3492 ($ $ $)) (-15 -1789 ($ $ $))))
-(((-34) . T) ((-102) . T) ((-113) . T) ((-619 (-868)) . T) ((-152 #0=(-112)) . T) ((-620 (-542)) |has| (-112) (-620 (-542))) ((-290 #1=(-570) #0#) . T) ((-292 #1# #0#) . T) ((-313 #0#) -12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))) ((-378 #0#) . T) ((-495 #0#) . T) ((-610 #1# #0#) . T) ((-520 #0# #0#) -12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))) ((-657 #0#) . T) ((-667) . T) ((-19 #0#) . T) ((-856) . T) ((-1109) . T) ((-1226) . T))
-((-3776 (($ (-1 |#2| |#2|) $) 22)) (-3915 (($ $) 16)) (-2426 (((-777) $) 25)))
-(((-125 |#1| |#2|) (-10 -8 (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3915 (|#1| |#1|))) (-126 |#2|) (-1109)) (T -125))
-NIL
-(-10 -8 (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3915 (|#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-4256 (($ $ $) 53 (|has| $ (-6 -4449)))) (-3511 (($ $ $) 55 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449))) (($ $ "left" $) 56 (|has| $ (-6 -4449))) (($ $ "right" $) 54 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-2450 (($) 7 T CONST)) (-4410 (($ $) 58)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 61)) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-4397 (($ $) 60)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-1678 (((-570) $ $) 45)) (-3150 (((-112) $) 47)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-4204 (*1 *1 *1 *1) (-4 *1 (-124))) (-4376 (*1 *1 *1 *1) (-4 *1 (-124))) (-1790 (*1 *1 *1 *1) (-4 *1 (-124))))
+(-13 (-856) (-113) (-667) (-19 (-112)) (-10 -8 (-15 -4204 ($ $ $)) (-15 -4376 ($ $ $)) (-15 -1790 ($ $ $))))
+(((-34) . T) ((-102) . T) ((-113) . T) ((-619 (-868)) . T) ((-152 #0=(-112)) . T) ((-620 (-542)) |has| (-112) (-620 (-542))) ((-290 #1=(-570) #0#) . T) ((-292 #1# #0#) . T) ((-313 #0#) -12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))) ((-378 #0#) . T) ((-495 #0#) . T) ((-610 #1# #0#) . T) ((-520 #0# #0#) -12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))) ((-657 #0#) . T) ((-667) . T) ((-19 #0#) . T) ((-856) . T) ((-1109) . T) ((-1227) . T))
+((-3776 (($ (-1 |#2| |#2|) $) 22)) (-3916 (($ $) 16)) (-2426 (((-777) $) 25)))
+(((-125 |#1| |#2|) (-10 -8 (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3916 (|#1| |#1|))) (-126 |#2|) (-1109)) (T -125))
+NIL
+(-10 -8 (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3916 (|#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3141 (($ $ $) 53 (|has| $ (-6 -4450)))) (-1443 (($ $ $) 55 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) (($ $ "left" $) 56 (|has| $ (-6 -4450))) (($ $ "right" $) 54 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-3761 (($) 7 T CONST)) (-4411 (($ $) 58)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 61)) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4398 (($ $) 60)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-2763 (((-570) $ $) 45)) (-2345 (((-112) $) 47)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-126 |#1|) (-141) (-1109)) (T -126))
((-3277 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-126 *2)) (-4 *2 (-1109)))))
-(-13 (-120 |t#1|) (-10 -8 (-6 -4449) (-6 -4448) (-15 -3277 ($ $ |t#1| $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-120 |#1|) . T) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) 18)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) 22 (|has| $ (-6 -4449)))) (-4256 (($ $ $) 23 (|has| $ (-6 -4449)))) (-3511 (($ $ $) 21 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "left" $) NIL (|has| $ (-6 -4449))) (($ $ "right" $) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4410 (($ $) 24)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-4397 (($ $) NIL)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2278 (($ |#1| $) 15)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 17)) (-3743 (($) 11)) (-1876 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1678 (((-570) $ $) NIL)) (-3150 (((-112) $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 20)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3255 (($ (-650 |#1|)) 16)) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-127 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4449) (-15 -3255 ($ (-650 |#1|))) (-15 -2278 ($ |#1| $)))) (-856)) (T -127))
-((-3255 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))) (-2278 (*1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-856)))))
-(-13 (-126 |#1|) (-10 -8 (-6 -4449) (-15 -3255 ($ (-650 |#1|))) (-15 -2278 ($ |#1| $))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) 30)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) 32 (|has| $ (-6 -4449)))) (-4256 (($ $ $) 36 (|has| $ (-6 -4449)))) (-3511 (($ $ $) 34 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "left" $) NIL (|has| $ (-6 -4449))) (($ $ "right" $) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4410 (($ $) 23)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 16)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-4397 (($ $) 22)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) 25)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 20)) (-3743 (($) 11)) (-1876 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1678 (((-570) $ $) NIL)) (-3150 (((-112) $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2441 (($ |#1|) 18) (($ $ |#1| $) 17)) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 10 (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-128 |#1|) (-13 (-126 |#1|) (-10 -8 (-15 -2441 ($ |#1|)) (-15 -2441 ($ $ |#1| $)))) (-1109)) (T -128))
-((-2441 (*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))) (-2441 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
-(-13 (-126 |#1|) (-10 -8 (-15 -2441 ($ |#1|)) (-15 -2441 ($ $ |#1| $))))
-((-2416 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) (-130) (-130)) $) NIL) (((-112) $) NIL (|has| (-130) (-856)))) (-3239 (($ (-1 (-112) (-130) (-130)) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-856))))) (-3288 (($ (-1 (-112) (-130) (-130)) $) NIL) (($ $) NIL (|has| (-130) (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 (((-130) $ (-570) (-130)) 26 (|has| $ (-6 -4449))) (((-130) $ (-1243 (-570)) (-130)) NIL (|has| $ (-6 -4449)))) (-3715 (((-777) $ (-777)) 34)) (-1424 (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-130) (-1109))))) (-1702 (($ (-130) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-130) (-1109)))) (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-130) (-1 (-130) (-130) (-130)) $ (-130) (-130)) NIL (-12 (|has| $ (-6 -4448)) (|has| (-130) (-1109)))) (((-130) (-1 (-130) (-130) (-130)) $ (-130)) NIL (|has| $ (-6 -4448))) (((-130) (-1 (-130) (-130) (-130)) $) NIL (|has| $ (-6 -4448)))) (-3790 (((-130) $ (-570) (-130)) 25 (|has| $ (-6 -4449)))) (-3712 (((-130) $ (-570)) 20)) (-3998 (((-570) (-1 (-112) (-130)) $) NIL) (((-570) (-130) $) NIL (|has| (-130) (-1109))) (((-570) (-130) $ (-570)) NIL (|has| (-130) (-1109)))) (-2836 (((-650 (-130)) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) (-130)) 14)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 27 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| (-130) (-856)))) (-3068 (($ (-1 (-112) (-130) (-130)) $ $) NIL) (($ $ $) NIL (|has| (-130) (-856)))) (-2849 (((-650 (-130)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-130) (-1109))))) (-4329 (((-570) $) 30 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-130) (-856)))) (-3776 (($ (-1 (-130) (-130)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-130) (-130)) $) NIL) (($ (-1 (-130) (-130) (-130)) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| (-130) (-1109)))) (-4285 (($ (-130) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| (-130) (-1109)))) (-3443 (((-130) $) NIL (|has| (-570) (-856)))) (-3321 (((-3 (-130) "failed") (-1 (-112) (-130)) $) NIL)) (-1952 (($ $ (-130)) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-130)))) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109)))) (($ $ (-298 (-130))) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109)))) (($ $ (-130) (-130)) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109)))) (($ $ (-650 (-130)) (-650 (-130))) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-130) (-1109))))) (-4245 (((-650 (-130)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 12)) (-1876 (((-130) $ (-570) (-130)) NIL) (((-130) $ (-570)) 23) (($ $ (-1243 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4448))) (((-777) (-130) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-130) (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-130) (-620 (-542))))) (-3748 (($ (-650 (-130))) 47)) (-2439 (($ $ (-130)) NIL) (($ (-130) $) NIL) (($ $ $) 48) (($ (-650 $)) NIL)) (-3735 (((-965 (-130)) $) 35) (((-1168) $) 44) (((-868) $) NIL (|has| (-130) (-619 (-868))))) (-1587 (((-777) $) 18)) (-2709 (($ (-777)) 8)) (-1859 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-4368 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2872 (((-112) $ $) 32 (|has| (-130) (-1109)))) (-2913 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2426 (((-777) $) 15 (|has| $ (-6 -4448)))))
-(((-129) (-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -2709 ($ (-777))) (-15 -1587 ((-777) $)) (-15 -3715 ((-777) $ (-777))) (-6 -4448)))) (T -129))
-((-2709 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-3715 (*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -2709 ($ (-777))) (-15 -1587 ((-777) $)) (-15 -3715 ((-777) $ (-777))) (-6 -4448)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) 26)) (-2450 (($) NIL T CONST)) (-3336 (($) 35)) (-3310 (($ $ $) NIL) (($) 24 T CONST)) (-3787 (($ $ $) NIL) (($) 25 T CONST)) (-2367 (((-928) $) 33)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) 31)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-145)) 15) (((-145) $) 17)) (-3656 (($ (-777)) 8)) (-1375 (($ $ $) 37)) (-1359 (($ $ $) 36)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) 22)) (-2904 (((-112) $ $) 20)) (-2872 (((-112) $ $) 18)) (-2913 (((-112) $ $) 21)) (-2894 (((-112) $ $) 19)))
-(((-130) (-13 (-850) (-496 (-145)) (-10 -8 (-15 -3656 ($ (-777))) (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))) (T -130))
-((-3656 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))) (-1359 (*1 *1 *1 *1) (-5 *1 (-130))) (-1375 (*1 *1 *1 *1) (-5 *1 (-130))) (-2450 (*1 *1) (-5 *1 (-130))))
-(-13 (-850) (-496 (-145)) (-10 -8 (-15 -3656 ($ (-777))) (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))
+(-13 (-120 |t#1|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -3277 ($ $ |t#1| $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-120 |#1|) . T) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) 18)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) 22 (|has| $ (-6 -4450)))) (-3141 (($ $ $) 23 (|has| $ (-6 -4450)))) (-1443 (($ $ $) 21 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4411 (($ $) 24)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4398 (($ $) NIL)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2599 (($ |#1| $) 15)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 17)) (-3006 (($) 11)) (-1877 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2763 (((-570) $ $) NIL)) (-2345 (((-112) $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 20)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4017 (($ (-650 |#1|)) 16)) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-127 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4450) (-15 -4017 ($ (-650 |#1|))) (-15 -2599 ($ |#1| $)))) (-856)) (T -127))
+((-4017 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))) (-2599 (*1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-856)))))
+(-13 (-126 |#1|) (-10 -8 (-6 -4450) (-15 -4017 ($ (-650 |#1|))) (-15 -2599 ($ |#1| $))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) 30)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) 32 (|has| $ (-6 -4450)))) (-3141 (($ $ $) 36 (|has| $ (-6 -4450)))) (-1443 (($ $ $) 34 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4411 (($ $) 23)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3277 (($ $ |#1| $) 16)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4398 (($ $) 22)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) 25)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 20)) (-3006 (($) 11)) (-1877 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2763 (((-570) $ $) NIL)) (-2345 (((-112) $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1833 (($ |#1|) 18) (($ $ |#1| $) 17)) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 10 (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-128 |#1|) (-13 (-126 |#1|) (-10 -8 (-15 -1833 ($ |#1|)) (-15 -1833 ($ $ |#1| $)))) (-1109)) (T -128))
+((-1833 (*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))) (-1833 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
+(-13 (-126 |#1|) (-10 -8 (-15 -1833 ($ |#1|)) (-15 -1833 ($ $ |#1| $))))
+((-2417 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) (-130) (-130)) $) NIL) (((-112) $) NIL (|has| (-130) (-856)))) (-3885 (($ (-1 (-112) (-130) (-130)) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-130) (-856))))) (-3287 (($ (-1 (-112) (-130) (-130)) $) NIL) (($ $) NIL (|has| (-130) (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 (((-130) $ (-570) (-130)) 26 (|has| $ (-6 -4450))) (((-130) $ (-1244 (-570)) (-130)) NIL (|has| $ (-6 -4450)))) (-2770 (((-777) $ (-777)) 34)) (-1425 (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-1703 (($ (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109)))) (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-130) (-1 (-130) (-130) (-130)) $ (-130) (-130)) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109)))) (((-130) (-1 (-130) (-130) (-130)) $ (-130)) NIL (|has| $ (-6 -4449))) (((-130) (-1 (-130) (-130) (-130)) $) NIL (|has| $ (-6 -4449)))) (-3789 (((-130) $ (-570) (-130)) 25 (|has| $ (-6 -4450)))) (-3713 (((-130) $ (-570)) 20)) (-3998 (((-570) (-1 (-112) (-130)) $) NIL) (((-570) (-130) $) NIL (|has| (-130) (-1109))) (((-570) (-130) $ (-570)) NIL (|has| (-130) (-1109)))) (-2835 (((-650 (-130)) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) (-130)) 14)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 27 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| (-130) (-856)))) (-2727 (($ (-1 (-112) (-130) (-130)) $ $) NIL) (($ $ $) NIL (|has| (-130) (-856)))) (-3201 (((-650 (-130)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-2596 (((-570) $) 30 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-130) (-856)))) (-3776 (($ (-1 (-130) (-130)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-130) (-130)) $) NIL) (($ (-1 (-130) (-130) (-130)) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| (-130) (-1109)))) (-4286 (($ (-130) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| (-130) (-1109)))) (-3443 (((-130) $) NIL (|has| (-570) (-856)))) (-3281 (((-3 (-130) "failed") (-1 (-112) (-130)) $) NIL)) (-3531 (($ $ (-130)) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-130)))) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109)))) (($ $ (-298 (-130))) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109)))) (($ $ (-130) (-130)) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109)))) (($ $ (-650 (-130)) (-650 (-130))) NIL (-12 (|has| (-130) (-313 (-130))) (|has| (-130) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-4348 (((-650 (-130)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 12)) (-1877 (((-130) $ (-570) (-130)) NIL) (((-130) $ (-570)) 23) (($ $ (-1244 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449))) (((-777) (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-130) (-620 (-542))))) (-3749 (($ (-650 (-130))) 47)) (-2439 (($ $ (-130)) NIL) (($ (-130) $) NIL) (($ $ $) 48) (($ (-650 $)) NIL)) (-3735 (((-965 (-130)) $) 35) (((-1168) $) 44) (((-868) $) NIL (|has| (-130) (-619 (-868))))) (-3089 (((-777) $) 18)) (-2433 (($ (-777)) 8)) (-3866 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-2964 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2872 (((-112) $ $) 32 (|has| (-130) (-1109)))) (-2914 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2426 (((-777) $) 15 (|has| $ (-6 -4449)))))
+(((-129) (-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -2433 ($ (-777))) (-15 -3089 ((-777) $)) (-15 -2770 ((-777) $ (-777))) (-6 -4449)))) (T -129))
+((-2433 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-3089 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-2770 (*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -2433 ($ (-777))) (-15 -3089 ((-777) $)) (-15 -2770 ((-777) $ (-777))) (-6 -4449)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) 26)) (-3761 (($) NIL T CONST)) (-3336 (($) 35)) (-3311 (($ $ $) NIL) (($) 24 T CONST)) (-2222 (($ $ $) NIL) (($) 25 T CONST)) (-2332 (((-928) $) 33)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) 31)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-145)) 15) (((-145) $) 17)) (-3656 (($ (-777)) 8)) (-1376 (($ $ $) 37)) (-1360 (($ $ $) 36)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) 22)) (-2904 (((-112) $ $) 20)) (-2872 (((-112) $ $) 18)) (-2914 (((-112) $ $) 21)) (-2894 (((-112) $ $) 19)))
+(((-130) (-13 (-850) (-496 (-145)) (-10 -8 (-15 -3656 ($ (-777))) (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))) (T -130))
+((-3656 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))) (-1360 (*1 *1 *1 *1) (-5 *1 (-130))) (-1376 (*1 *1 *1 *1) (-5 *1 (-130))) (-3761 (*1 *1) (-5 *1 (-130))))
+(-13 (-850) (-496 (-145)) (-10 -8 (-15 -3656 ($ (-777))) (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))
((|NonNegativeInteger|) (< |#1| 256))
-((-2416 (((-112) $ $) NIL)) (-1821 (($) 6 T CONST)) (-3884 (($) 7 T CONST)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 14)) (-3789 (($) 8 T CONST)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 10)))
-(((-131) (-13 (-1109) (-10 -8 (-15 -3884 ($) -3640) (-15 -3789 ($) -3640) (-15 -1821 ($) -3640)))) (T -131))
-((-3884 (*1 *1) (-5 *1 (-131))) (-3789 (*1 *1) (-5 *1 (-131))) (-1821 (*1 *1) (-5 *1 (-131))))
-(-13 (-1109) (-10 -8 (-15 -3884 ($) -3640) (-15 -3789 ($) -3640) (-15 -1821 ($) -3640)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+((-2417 (((-112) $ $) NIL)) (-1667 (($) 6 T CONST)) (-3805 (($) 7 T CONST)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 14)) (-2233 (($) 8 T CONST)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 10)))
+(((-131) (-13 (-1109) (-10 -8 (-15 -3805 ($) -3640) (-15 -2233 ($) -3640) (-15 -1667 ($) -3640)))) (T -131))
+((-3805 (*1 *1) (-5 *1 (-131))) (-2233 (*1 *1) (-5 *1 (-131))) (-1667 (*1 *1) (-5 *1 (-131))))
+(-13 (-1109) (-10 -8 (-15 -3805 ($) -3640) (-15 -2233 ($) -3640) (-15 -1667 ($) -3640)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-132) (-141)) (T -132))
-((-3596 (*1 *1 *1 *1) (|partial| -4 *1 (-132))))
-(-13 (-23) (-10 -8 (-15 -3596 ((-3 $ "failed") $ $))))
+((-4119 (*1 *1 *1 *1) (|partial| -4 *1 (-132))))
+(-13 (-23) (-10 -8 (-15 -4119 ((-3 $ "failed") $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-3458 (((-1281) $ (-777)) 14)) (-3998 (((-777) $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) 7)) (-2158 (((-1282) $ (-777)) 14)) (-3998 (((-777) $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-133) (-141)) (T -133))
-((-3998 (*1 *2 *1) (-12 (-4 *1 (-133)) (-5 *2 (-777)))) (-3458 (*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1281)))))
-(-13 (-1109) (-10 -8 (-15 -3998 ((-777) $)) (-15 -3458 ((-1281) $ (-777)))))
+((-3998 (*1 *2 *1) (-12 (-4 *1 (-133)) (-5 *2 (-777)))) (-2158 (*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1282)))))
+(-13 (-1109) (-10 -8 (-15 -3998 ((-777) $)) (-15 -2158 ((-1282) $ (-777)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-650 (-1144)) $) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-134) (-13 (-1092) (-10 -8 (-15 -3517 ((-650 (-1144)) $))))) (T -134))
-((-3517 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-134)))))
-(-13 (-1092) (-10 -8 (-15 -3517 ((-650 (-1144)) $))))
-((-2416 (((-112) $ $) 49)) (-4028 (((-112) $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-777) "failed") $) 58)) (-3080 (((-777) $) 56)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) 37)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3731 (((-112)) 59)) (-3832 (((-112) (-112)) 61)) (-2328 (((-112) $) 30)) (-2923 (((-112) $) 55)) (-3735 (((-868) $) 28) (($ (-777)) 20)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 18 T CONST)) (-1823 (($) 19 T CONST)) (-1675 (($ (-777)) 21)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) 40)) (-2872 (((-112) $ $) 32)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 35)) (-2965 (((-3 $ "failed") $ $) 42)) (-2954 (($ $ $) 38)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL) (($ $ $) 54)) (* (($ (-777) $) 48) (($ (-928) $) NIL) (($ $ $) 45)))
-(((-135) (-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4450 "*")) (-15 -2965 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1675 ($ (-777))) (-15 -2328 ((-112) $)) (-15 -2923 ((-112) $)) (-15 -3731 ((-112))) (-15 -3832 ((-112) (-112)))))) (T -135))
-((-2965 (*1 *1 *1 *1) (|partial| -5 *1 (-135))) (** (*1 *1 *1 *1) (-5 *1 (-135))) (-1675 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-2923 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-3731 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-3832 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
-(-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4450 "*")) (-15 -2965 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1675 ($ (-777))) (-15 -2328 ((-112) $)) (-15 -2923 ((-112) $)) (-15 -3731 ((-112))) (-15 -3832 ((-112) (-112)))))
-((-3888 (((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|)) 14)) (-1351 (((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)) 18)))
-(((-136 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3888 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1351 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)))) (-570) (-777) (-174) (-174)) (T -136))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-137 *5 *6 *7)) (-14 *5 (-570)) (-14 *6 (-777)) (-4 *7 (-174)) (-4 *8 (-174)) (-5 *2 (-137 *5 *6 *8)) (-5 *1 (-136 *5 *6 *7 *8)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-137 *5 *6 *7)) (-14 *5 (-570)) (-14 *6 (-777)) (-4 *7 (-174)) (-4 *8 (-174)) (-5 *2 (-137 *5 *6 *8)) (-5 *1 (-136 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3888 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1351 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|))))
-((-2416 (((-112) $ $) NIL)) (-1712 (($ (-650 |#3|)) 64)) (-2841 (($ $) 126) (($ $ (-570) (-570)) 125)) (-2450 (($) 20)) (-4378 (((-3 |#3| "failed") $) 86)) (-3080 ((|#3| $) NIL)) (-3270 (($ $ (-650 (-570))) 127)) (-3874 (((-650 |#3|) $) 59)) (-3934 (((-777) $) 69)) (-2213 (($ $ $) 120)) (-2054 (($) 68)) (-1903 (((-1168) $) NIL)) (-2161 (($) 19)) (-3479 (((-1129) $) NIL)) (-1876 ((|#3| $) 71) ((|#3| $ (-570)) 72) ((|#3| $ (-570) (-570)) 73) ((|#3| $ (-570) (-570) (-570)) 74) ((|#3| $ (-570) (-570) (-570) (-570)) 75) ((|#3| $ (-650 (-570))) 76)) (-1601 (((-777) $) 70)) (-2140 (($ $ (-570) $ (-570)) 121) (($ $ (-570) (-570)) 123)) (-3735 (((-868) $) 94) (($ |#3|) 95) (($ (-242 |#2| |#3|)) 102) (($ (-1151 |#2| |#3|)) 105) (($ (-650 |#3|)) 77) (($ (-650 $)) 83)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 96 T CONST)) (-1823 (($) 97 T CONST)) (-2872 (((-112) $ $) 107)) (-2965 (($ $) 113) (($ $ $) 111)) (-2954 (($ $ $) 109)) (* (($ |#3| $) 118) (($ $ |#3|) 119) (($ $ (-570)) 116) (($ (-570) $) 115) (($ $ $) 122)))
-(((-137 |#1| |#2| |#3|) (-13 (-471 |#3| (-777)) (-476 (-570) (-777)) (-10 -8 (-15 -3735 ($ (-242 |#2| |#3|))) (-15 -3735 ($ (-1151 |#2| |#3|))) (-15 -3735 ($ (-650 |#3|))) (-15 -3735 ($ (-650 $))) (-15 -3934 ((-777) $)) (-15 -1876 (|#3| $)) (-15 -1876 (|#3| $ (-570))) (-15 -1876 (|#3| $ (-570) (-570))) (-15 -1876 (|#3| $ (-570) (-570) (-570))) (-15 -1876 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1876 (|#3| $ (-650 (-570)))) (-15 -2213 ($ $ $)) (-15 * ($ $ $)) (-15 -2140 ($ $ (-570) $ (-570))) (-15 -2140 ($ $ (-570) (-570))) (-15 -2841 ($ $)) (-15 -2841 ($ $ (-570) (-570))) (-15 -3270 ($ $ (-650 (-570)))) (-15 -2161 ($)) (-15 -2054 ($)) (-15 -3874 ((-650 |#3|) $)) (-15 -1712 ($ (-650 |#3|))) (-15 -2450 ($)))) (-570) (-777) (-174)) (T -137))
-((-2213 (*1 *1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-242 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1151 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-137 *3 *4 *5))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 *2) (-4 *5 (-174)))) (-1876 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-137 *3 *4 *2)) (-14 *3 (-570)) (-14 *4 (-777)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1876 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1876 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1876 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-570))) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 (-570)) (-14 *5 (-777)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-2140 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-2140 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-2841 (*1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-2841 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-3270 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2161 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-2054 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3874 (*1 *2 *1) (-12 (-5 *2 (-650 *5)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-1712 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-2450 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))))
-(-13 (-471 |#3| (-777)) (-476 (-570) (-777)) (-10 -8 (-15 -3735 ($ (-242 |#2| |#3|))) (-15 -3735 ($ (-1151 |#2| |#3|))) (-15 -3735 ($ (-650 |#3|))) (-15 -3735 ($ (-650 $))) (-15 -3934 ((-777) $)) (-15 -1876 (|#3| $)) (-15 -1876 (|#3| $ (-570))) (-15 -1876 (|#3| $ (-570) (-570))) (-15 -1876 (|#3| $ (-570) (-570) (-570))) (-15 -1876 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1876 (|#3| $ (-650 (-570)))) (-15 -2213 ($ $ $)) (-15 * ($ $ $)) (-15 -2140 ($ $ (-570) $ (-570))) (-15 -2140 ($ $ (-570) (-570))) (-15 -2841 ($ $)) (-15 -2841 ($ $ (-570) (-570))) (-15 -3270 ($ $ (-650 (-570)))) (-15 -2161 ($)) (-15 -2054 ($)) (-15 -3874 ((-650 |#3|) $)) (-15 -1712 ($ (-650 |#3|))) (-15 -2450 ($))))
-((-2416 (((-112) $ $) NIL)) (-2121 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-138) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))) (T -138))
-((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))))
-(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3843 (((-188) $) 10)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-650 (-1144)) $) 13)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-139) (-13 (-1092) (-10 -8 (-15 -3843 ((-188) $)) (-15 -3517 ((-650 (-1144)) $))))) (T -139))
-((-3843 (*1 *2 *1) (-12 (-5 *2 (-188)) (-5 *1 (-139)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-139)))))
-(-13 (-1092) (-10 -8 (-15 -3843 ((-188) $)) (-15 -3517 ((-650 (-1144)) $))))
-((-2416 (((-112) $ $) NIL)) (-1774 (((-650 (-871)) $) NIL)) (-3503 (((-512) $) NIL)) (-1903 (((-1168) $) NIL)) (-3843 (((-188) $) NIL)) (-1566 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-4324 (((-650 (-112)) $) NIL)) (-3735 (((-868) $) NIL) (((-189) $) 6)) (-1859 (((-112) $ $) NIL)) (-1893 (((-55) $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-650 (-1144)) $) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-134) (-13 (-1092) (-10 -8 (-15 -3515 ((-650 (-1144)) $))))) (T -134))
+((-3515 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-134)))))
+(-13 (-1092) (-10 -8 (-15 -3515 ((-650 (-1144)) $))))
+((-2417 (((-112) $ $) 49)) (-2745 (((-112) $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-777) "failed") $) 58)) (-3080 (((-777) $) 56)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) 37)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2911 (((-112)) 59)) (-1420 (((-112) (-112)) 61)) (-1976 (((-112) $) 30)) (-3855 (((-112) $) 55)) (-3735 (((-868) $) 28) (($ (-777)) 20)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 18 T CONST)) (-1824 (($) 19 T CONST)) (-2731 (($ (-777)) 21)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) 40)) (-2872 (((-112) $ $) 32)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 35)) (-2965 (((-3 $ "failed") $ $) 42)) (-2953 (($ $ $) 38)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL) (($ $ $) 54)) (* (($ (-777) $) 48) (($ (-928) $) NIL) (($ $ $) 45)))
+(((-135) (-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4451 "*")) (-15 -2965 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -2731 ($ (-777))) (-15 -1976 ((-112) $)) (-15 -3855 ((-112) $)) (-15 -2911 ((-112))) (-15 -1420 ((-112) (-112)))))) (T -135))
+((-2965 (*1 *1 *1 *1) (|partial| -5 *1 (-135))) (** (*1 *1 *1 *1) (-5 *1 (-135))) (-2731 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))) (-1976 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-3855 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-2911 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-1420 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+(-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4451 "*")) (-15 -2965 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -2731 ($ (-777))) (-15 -1976 ((-112) $)) (-15 -3855 ((-112) $)) (-15 -2911 ((-112))) (-15 -1420 ((-112) (-112)))))
+((-3889 (((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|)) 14)) (-1352 (((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)) 18)))
+(((-136 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3889 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1352 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)))) (-570) (-777) (-174) (-174)) (T -136))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-137 *5 *6 *7)) (-14 *5 (-570)) (-14 *6 (-777)) (-4 *7 (-174)) (-4 *8 (-174)) (-5 *2 (-137 *5 *6 *8)) (-5 *1 (-136 *5 *6 *7 *8)))) (-3889 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-137 *5 *6 *7)) (-14 *5 (-570)) (-14 *6 (-777)) (-4 *7 (-174)) (-4 *8 (-174)) (-5 *2 (-137 *5 *6 *8)) (-5 *1 (-136 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3889 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1352 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|))))
+((-2417 (((-112) $ $) NIL)) (-1956 (($ (-650 |#3|)) 64)) (-3115 (($ $) 126) (($ $ (-570) (-570)) 125)) (-3761 (($) 20)) (-4379 (((-3 |#3| "failed") $) 86)) (-3080 ((|#3| $) NIL)) (-4153 (($ $ (-650 (-570))) 127)) (-3871 (((-650 |#3|) $) 59)) (-3933 (((-777) $) 69)) (-3144 (($ $ $) 120)) (-2163 (($) 68)) (-4268 (((-1168) $) NIL)) (-3908 (($) 19)) (-3479 (((-1129) $) NIL)) (-1877 ((|#3| $) 71) ((|#3| $ (-570)) 72) ((|#3| $ (-570) (-570)) 73) ((|#3| $ (-570) (-570) (-570)) 74) ((|#3| $ (-570) (-570) (-570) (-570)) 75) ((|#3| $ (-650 (-570))) 76)) (-3221 (((-777) $) 70)) (-3681 (($ $ (-570) $ (-570)) 121) (($ $ (-570) (-570)) 123)) (-3735 (((-868) $) 94) (($ |#3|) 95) (($ (-242 |#2| |#3|)) 102) (($ (-1151 |#2| |#3|)) 105) (($ (-650 |#3|)) 77) (($ (-650 $)) 83)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 96 T CONST)) (-1824 (($) 97 T CONST)) (-2872 (((-112) $ $) 107)) (-2965 (($ $) 113) (($ $ $) 111)) (-2953 (($ $ $) 109)) (* (($ |#3| $) 118) (($ $ |#3|) 119) (($ $ (-570)) 116) (($ (-570) $) 115) (($ $ $) 122)))
+(((-137 |#1| |#2| |#3|) (-13 (-471 |#3| (-777)) (-476 (-570) (-777)) (-10 -8 (-15 -3735 ($ (-242 |#2| |#3|))) (-15 -3735 ($ (-1151 |#2| |#3|))) (-15 -3735 ($ (-650 |#3|))) (-15 -3735 ($ (-650 $))) (-15 -3933 ((-777) $)) (-15 -1877 (|#3| $)) (-15 -1877 (|#3| $ (-570))) (-15 -1877 (|#3| $ (-570) (-570))) (-15 -1877 (|#3| $ (-570) (-570) (-570))) (-15 -1877 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1877 (|#3| $ (-650 (-570)))) (-15 -3144 ($ $ $)) (-15 * ($ $ $)) (-15 -3681 ($ $ (-570) $ (-570))) (-15 -3681 ($ $ (-570) (-570))) (-15 -3115 ($ $)) (-15 -3115 ($ $ (-570) (-570))) (-15 -4153 ($ $ (-650 (-570)))) (-15 -3908 ($)) (-15 -2163 ($)) (-15 -3871 ((-650 |#3|) $)) (-15 -1956 ($ (-650 |#3|))) (-15 -3761 ($)))) (-570) (-777) (-174)) (T -137))
+((-3144 (*1 *1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-242 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1151 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-137 *3 *4 *5))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-3933 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 *2) (-4 *5 (-174)))) (-1877 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-137 *3 *4 *2)) (-14 *3 (-570)) (-14 *4 (-777)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1877 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1877 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1877 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-570))) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 (-570)) (-14 *5 (-777)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3681 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-3681 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-3115 (*1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3115 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-4153 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-3908 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-2163 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-650 *5)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-1956 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-3761 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))))
+(-13 (-471 |#3| (-777)) (-476 (-570) (-777)) (-10 -8 (-15 -3735 ($ (-242 |#2| |#3|))) (-15 -3735 ($ (-1151 |#2| |#3|))) (-15 -3735 ($ (-650 |#3|))) (-15 -3735 ($ (-650 $))) (-15 -3933 ((-777) $)) (-15 -1877 (|#3| $)) (-15 -1877 (|#3| $ (-570))) (-15 -1877 (|#3| $ (-570) (-570))) (-15 -1877 (|#3| $ (-570) (-570) (-570))) (-15 -1877 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1877 (|#3| $ (-650 (-570)))) (-15 -3144 ($ $ $)) (-15 * ($ $ $)) (-15 -3681 ($ $ (-570) $ (-570))) (-15 -3681 ($ $ (-570) (-570))) (-15 -3115 ($ $)) (-15 -3115 ($ $ (-570) (-570))) (-15 -4153 ($ $ (-650 (-570)))) (-15 -3908 ($)) (-15 -2163 ($)) (-15 -3871 ((-650 |#3|) $)) (-15 -1956 ($ (-650 |#3|))) (-15 -3761 ($))))
+((-2417 (((-112) $ $) NIL)) (-2123 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-138) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))) (T -138))
+((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))))
+(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3843 (((-188) $) 10)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-650 (-1144)) $) 13)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-139) (-13 (-1092) (-10 -8 (-15 -3843 ((-188) $)) (-15 -3515 ((-650 (-1144)) $))))) (T -139))
+((-3843 (*1 *2 *1) (-12 (-5 *2 (-188)) (-5 *1 (-139)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-139)))))
+(-13 (-1092) (-10 -8 (-15 -3843 ((-188) $)) (-15 -3515 ((-650 (-1144)) $))))
+((-2417 (((-112) $ $) NIL)) (-1775 (((-650 (-871)) $) NIL)) (-3504 (((-512) $) NIL)) (-4268 (((-1168) $) NIL)) (-3843 (((-188) $) NIL)) (-4198 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-2544 (((-650 (-112)) $) NIL)) (-3735 (((-868) $) NIL) (((-189) $) 6)) (-3866 (((-112) $ $) NIL)) (-4158 (((-55) $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-140) (-13 (-187) (-619 (-189)))) (T -140))
NIL
(-13 (-187) (-619 (-189)))
-((-2876 (((-650 (-185 (-140))) $) 13)) (-2783 (((-650 (-185 (-140))) $) 14)) (-2171 (((-650 (-844)) $) 10)) (-1579 (((-140) $) 7)) (-3735 (((-868) $) 16)))
-(((-141) (-13 (-619 (-868)) (-10 -8 (-15 -1579 ((-140) $)) (-15 -2171 ((-650 (-844)) $)) (-15 -2876 ((-650 (-185 (-140))) $)) (-15 -2783 ((-650 (-185 (-140))) $))))) (T -141))
-((-1579 (*1 *2 *1) (-12 (-5 *2 (-140)) (-5 *1 (-141)))) (-2171 (*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))) (-2876 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))) (-2783 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -1579 ((-140) $)) (-15 -2171 ((-650 (-844)) $)) (-15 -2876 ((-650 (-185 (-140))) $)) (-15 -2783 ((-650 (-185 (-140))) $))))
-((-2416 (((-112) $ $) NIL)) (-1575 (($) 17 T CONST)) (-2304 (($) NIL (|has| (-145) (-373)))) (-3923 (($ $ $) 19) (($ $ (-145)) NIL) (($ (-145) $) NIL)) (-2704 (($ $ $) NIL)) (-1783 (((-112) $ $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| (-145) (-373)))) (-4240 (($) NIL) (($ (-650 (-145))) NIL)) (-1591 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-2513 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448))) (($ (-145) $) 61 (|has| $ (-6 -4448)))) (-1702 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448))) (($ (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4448))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4448))) (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-3336 (($) NIL (|has| (-145) (-373)))) (-2836 (((-650 (-145)) $) 70 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-3310 (((-145) $) NIL (|has| (-145) (-856)))) (-2849 (((-650 (-145)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-145) $) 27 (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-3787 (((-145) $) NIL (|has| (-145) (-856)))) (-3776 (($ (-1 (-145) (-145)) $) 69 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-145) (-145)) $) 65)) (-3949 (($) 18 T CONST)) (-2367 (((-928) $) NIL (|has| (-145) (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-2307 (($ $ $) 30)) (-3784 (((-145) $) 62)) (-2278 (($ (-145) $) 60)) (-2159 (($ (-928)) NIL (|has| (-145) (-373)))) (-3683 (($) 16 T CONST)) (-3479 (((-1129) $) NIL)) (-3321 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-1899 (((-145) $) 63)) (-1671 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-145)) (-650 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-298 (-145)))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 58)) (-1656 (($) 15 T CONST)) (-1966 (($ $ $) 32) (($ $ (-145)) NIL)) (-2271 (($ (-650 (-145))) NIL) (($) NIL)) (-3486 (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109)))) (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-1168) $) 37) (((-542) $) NIL (|has| (-145) (-620 (-542)))) (((-650 (-145)) $) 35)) (-3748 (($ (-650 (-145))) NIL)) (-1593 (($ $) 33 (|has| (-145) (-373)))) (-3735 (((-868) $) 55)) (-3875 (($ (-1168)) 14) (($ (-650 (-145))) 52)) (-2316 (((-777) $) NIL)) (-3813 (($) 59) (($ (-650 (-145))) NIL)) (-1859 (((-112) $ $) NIL)) (-2251 (($ (-650 (-145))) NIL)) (-4368 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-4250 (($) 21 T CONST)) (-4293 (($) 20 T CONST)) (-2872 (((-112) $ $) 24)) (-2426 (((-777) $) 57 (|has| $ (-6 -4448)))))
-(((-142) (-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -3875 ($ (-1168))) (-15 -3875 ($ (-650 (-145)))) (-15 -1656 ($) -3640) (-15 -3683 ($) -3640) (-15 -1575 ($) -3640) (-15 -3949 ($) -3640) (-15 -4293 ($) -3640) (-15 -4250 ($) -3640)))) (T -142))
-((-3875 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))) (-3875 (*1 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142)))) (-1656 (*1 *1) (-5 *1 (-142))) (-3683 (*1 *1) (-5 *1 (-142))) (-1575 (*1 *1) (-5 *1 (-142))) (-3949 (*1 *1) (-5 *1 (-142))) (-4293 (*1 *1) (-5 *1 (-142))) (-4250 (*1 *1) (-5 *1 (-142))))
-(-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -3875 ($ (-1168))) (-15 -3875 ($ (-650 (-145)))) (-15 -1656 ($) -3640) (-15 -3683 ($) -3640) (-15 -1575 ($) -3640) (-15 -3949 ($) -3640) (-15 -4293 ($) -3640) (-15 -4250 ($) -3640)))
-((-2504 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-3643 ((|#1| |#3|) 9)) (-1443 ((|#3| |#3|) 15)))
-(((-143 |#1| |#2| |#3|) (-10 -7 (-15 -3643 (|#1| |#3|)) (-15 -1443 (|#3| |#3|)) (-15 -2504 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-378 |#2|)) (T -143))
-((-2504 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-143 *4 *5 *3)) (-4 *3 (-378 *5)))) (-1443 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2)) (-4 *2 (-378 *4)))) (-3643 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3)) (-4 *3 (-378 *4)))))
-(-10 -7 (-15 -3643 (|#1| |#3|)) (-15 -1443 (|#3| |#3|)) (-15 -2504 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-4390 (($ $ $) 8)) (-4061 (($ $) 7)) (-1397 (($ $ $) 6)))
+((-3486 (((-650 (-185 (-140))) $) 13)) (-2783 (((-650 (-185 (-140))) $) 14)) (-4018 (((-650 (-844)) $) 10)) (-1580 (((-140) $) 7)) (-3735 (((-868) $) 16)))
+(((-141) (-13 (-619 (-868)) (-10 -8 (-15 -1580 ((-140) $)) (-15 -4018 ((-650 (-844)) $)) (-15 -3486 ((-650 (-185 (-140))) $)) (-15 -2783 ((-650 (-185 (-140))) $))))) (T -141))
+((-1580 (*1 *2 *1) (-12 (-5 *2 (-140)) (-5 *1 (-141)))) (-4018 (*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))) (-3486 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))) (-2783 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -1580 ((-140) $)) (-15 -4018 ((-650 (-844)) $)) (-15 -3486 ((-650 (-185 (-140))) $)) (-15 -2783 ((-650 (-185 (-140))) $))))
+((-2417 (((-112) $ $) NIL)) (-2986 (($) 17 T CONST)) (-2853 (($) NIL (|has| (-145) (-373)))) (-3923 (($ $ $) 19) (($ $ (-145)) NIL) (($ (-145) $) NIL)) (-2398 (($ $ $) NIL)) (-4425 (((-112) $ $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| (-145) (-373)))) (-4241 (($) NIL) (($ (-650 (-145))) NIL)) (-3131 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3076 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (($ (-145) $) 61 (|has| $ (-6 -4449)))) (-1703 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (($ (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4449))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4449))) (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3336 (($) NIL (|has| (-145) (-373)))) (-2835 (((-650 (-145)) $) 70 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3311 (((-145) $) NIL (|has| (-145) (-856)))) (-3201 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-145) $) 27 (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-2222 (((-145) $) NIL (|has| (-145) (-856)))) (-3776 (($ (-1 (-145) (-145)) $) 69 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-145) (-145)) $) 65)) (-3145 (($) 18 T CONST)) (-2332 (((-928) $) NIL (|has| (-145) (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-2885 (($ $ $) 30)) (-2192 (((-145) $) 62)) (-2599 (($ (-145) $) 60)) (-2160 (($ (-928)) NIL (|has| (-145) (-373)))) (-2474 (($) 16 T CONST)) (-3479 (((-1129) $) NIL)) (-3281 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-4223 (((-145) $) 63)) (-2697 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-145)) (-650 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-298 (-145)))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 58)) (-2546 (($) 15 T CONST)) (-2449 (($ $ $) 32) (($ $ (-145)) NIL)) (-2535 (($ (-650 (-145))) NIL) (($) NIL)) (-3490 (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-1168) $) 37) (((-542) $) NIL (|has| (-145) (-620 (-542)))) (((-650 (-145)) $) 35)) (-3749 (($ (-650 (-145))) NIL)) (-3152 (($ $) 33 (|has| (-145) (-373)))) (-3735 (((-868) $) 55)) (-1869 (($ (-1168)) 14) (($ (-650 (-145))) 52)) (-2968 (((-777) $) NIL)) (-3813 (($) 59) (($ (-650 (-145))) NIL)) (-3866 (((-112) $ $) NIL)) (-3594 (($ (-650 (-145))) NIL)) (-2964 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-4393 (($) 21 T CONST)) (-3522 (($) 20 T CONST)) (-2872 (((-112) $ $) 24)) (-2426 (((-777) $) 57 (|has| $ (-6 -4449)))))
+(((-142) (-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -1869 ($ (-1168))) (-15 -1869 ($ (-650 (-145)))) (-15 -2546 ($) -3640) (-15 -2474 ($) -3640) (-15 -2986 ($) -3640) (-15 -3145 ($) -3640) (-15 -3522 ($) -3640) (-15 -4393 ($) -3640)))) (T -142))
+((-1869 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))) (-1869 (*1 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142)))) (-2546 (*1 *1) (-5 *1 (-142))) (-2474 (*1 *1) (-5 *1 (-142))) (-2986 (*1 *1) (-5 *1 (-142))) (-3145 (*1 *1) (-5 *1 (-142))) (-3522 (*1 *1) (-5 *1 (-142))) (-4393 (*1 *1) (-5 *1 (-142))))
+(-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -1869 ($ (-1168))) (-15 -1869 ($ (-650 (-145)))) (-15 -2546 ($) -3640) (-15 -2474 ($) -3640) (-15 -2986 ($) -3640) (-15 -3145 ($) -3640) (-15 -3522 ($) -3640) (-15 -4393 ($) -3640)))
+((-4295 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-3329 ((|#1| |#3|) 9)) (-1537 ((|#3| |#3|) 15)))
+(((-143 |#1| |#2| |#3|) (-10 -7 (-15 -3329 (|#1| |#3|)) (-15 -1537 (|#3| |#3|)) (-15 -4295 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-378 |#2|)) (T -143))
+((-4295 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-143 *4 *5 *3)) (-4 *3 (-378 *5)))) (-1537 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2)) (-4 *2 (-378 *4)))) (-3329 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3)) (-4 *3 (-378 *4)))))
+(-10 -7 (-15 -3329 (|#1| |#3|)) (-15 -1537 (|#3| |#3|)) (-15 -4295 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-2039 (($ $ $) 8)) (-3072 (($ $) 7)) (-3829 (($ $ $) 6)))
(((-144) (-141)) (T -144))
-((-4390 (*1 *1 *1 *1) (-4 *1 (-144))) (-4061 (*1 *1 *1) (-4 *1 (-144))) (-1397 (*1 *1 *1 *1) (-4 *1 (-144))))
-(-13 (-10 -8 (-15 -1397 ($ $ $)) (-15 -4061 ($ $)) (-15 -4390 ($ $ $))))
-((-2416 (((-112) $ $) NIL)) (-4119 (((-112) $) 39)) (-1575 (($ $) 55)) (-2281 (($) 26 T CONST)) (-3403 (((-777)) 13)) (-3336 (($) 25)) (-3079 (($) 27 T CONST)) (-3706 (((-777) $) 21)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-3940 (((-112) $) 41)) (-3949 (($ $) 56)) (-2367 (((-928) $) 23)) (-1903 (((-1168) $) 49)) (-2159 (($ (-928)) 20)) (-1944 (((-112) $) 37)) (-3479 (((-1129) $) NIL)) (-3533 (($) 28 T CONST)) (-3992 (((-112) $) 35)) (-3735 (((-868) $) 30)) (-2482 (($ (-777)) 19) (($ (-1168)) 54)) (-1859 (((-112) $ $) NIL)) (-4389 (((-112) $) 45)) (-1927 (((-112) $) 43)) (-2924 (((-112) $ $) 11)) (-2904 (((-112) $ $) 9)) (-2872 (((-112) $ $) 7)) (-2913 (((-112) $ $) 10)) (-2894 (((-112) $ $) 8)))
-(((-145) (-13 (-850) (-10 -8 (-15 -3706 ((-777) $)) (-15 -2482 ($ (-777))) (-15 -2482 ($ (-1168))) (-15 -2281 ($) -3640) (-15 -3079 ($) -3640) (-15 -3533 ($) -3640) (-15 -1575 ($ $)) (-15 -3949 ($ $)) (-15 -3992 ((-112) $)) (-15 -1944 ((-112) $)) (-15 -1927 ((-112) $)) (-15 -4119 ((-112) $)) (-15 -3940 ((-112) $)) (-15 -4389 ((-112) $))))) (T -145))
-((-3706 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2482 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2482 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-145)))) (-2281 (*1 *1) (-5 *1 (-145))) (-3079 (*1 *1) (-5 *1 (-145))) (-3533 (*1 *1) (-5 *1 (-145))) (-1575 (*1 *1 *1) (-5 *1 (-145))) (-3949 (*1 *1 *1) (-5 *1 (-145))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-1944 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-1927 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-4119 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-3940 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-4389 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(-13 (-850) (-10 -8 (-15 -3706 ((-777) $)) (-15 -2482 ($ (-777))) (-15 -2482 ($ (-1168))) (-15 -2281 ($) -3640) (-15 -3079 ($) -3640) (-15 -3533 ($) -3640) (-15 -1575 ($ $)) (-15 -3949 ($ $)) (-15 -3992 ((-112) $)) (-15 -1944 ((-112) $)) (-15 -1927 ((-112) $)) (-15 -4119 ((-112) $)) (-15 -3940 ((-112) $)) (-15 -4389 ((-112) $))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1918 (((-3 $ "failed") $) 39)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2039 (*1 *1 *1 *1) (-4 *1 (-144))) (-3072 (*1 *1 *1) (-4 *1 (-144))) (-3829 (*1 *1 *1 *1) (-4 *1 (-144))))
+(-13 (-10 -8 (-15 -3829 ($ $ $)) (-15 -3072 ($ $)) (-15 -2039 ($ $ $))))
+((-2417 (((-112) $ $) NIL)) (-2440 (((-112) $) 39)) (-2986 (($ $) 55)) (-2630 (($) 26 T CONST)) (-3403 (((-777)) 13)) (-3336 (($) 25)) (-2826 (($) 27 T CONST)) (-2694 (((-777) $) 21)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-4364 (((-112) $) 41)) (-3145 (($ $) 56)) (-2332 (((-928) $) 23)) (-4268 (((-1168) $) 49)) (-2160 (($ (-928)) 20)) (-3429 (((-112) $) 37)) (-3479 (((-1129) $) NIL)) (-1647 (($) 28 T CONST)) (-3991 (((-112) $) 35)) (-3735 (((-868) $) 30)) (-2483 (($ (-777)) 19) (($ (-1168)) 54)) (-3866 (((-112) $ $) NIL)) (-2029 (((-112) $) 45)) (-3226 (((-112) $) 43)) (-2924 (((-112) $ $) 11)) (-2904 (((-112) $ $) 9)) (-2872 (((-112) $ $) 7)) (-2914 (((-112) $ $) 10)) (-2894 (((-112) $ $) 8)))
+(((-145) (-13 (-850) (-10 -8 (-15 -2694 ((-777) $)) (-15 -2483 ($ (-777))) (-15 -2483 ($ (-1168))) (-15 -2630 ($) -3640) (-15 -2826 ($) -3640) (-15 -1647 ($) -3640) (-15 -2986 ($ $)) (-15 -3145 ($ $)) (-15 -3991 ((-112) $)) (-15 -3429 ((-112) $)) (-15 -3226 ((-112) $)) (-15 -2440 ((-112) $)) (-15 -4364 ((-112) $)) (-15 -2029 ((-112) $))))) (T -145))
+((-2694 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2483 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2483 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-145)))) (-2630 (*1 *1) (-5 *1 (-145))) (-2826 (*1 *1) (-5 *1 (-145))) (-1647 (*1 *1) (-5 *1 (-145))) (-2986 (*1 *1 *1) (-5 *1 (-145))) (-3145 (*1 *1 *1) (-5 *1 (-145))) (-3991 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-3429 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-3226 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-2440 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-4364 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-2029 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(-13 (-850) (-10 -8 (-15 -2694 ((-777) $)) (-15 -2483 ($ (-777))) (-15 -2483 ($ (-1168))) (-15 -2630 ($) -3640) (-15 -2826 ($) -3640) (-15 -1647 ($) -3640) (-15 -2986 ($ $)) (-15 -3145 ($ $)) (-15 -3991 ((-112) $)) (-15 -3429 ((-112) $)) (-15 -3226 ((-112) $)) (-15 -2440 ((-112) $)) (-15 -4364 ((-112) $)) (-15 -2029 ((-112) $))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-3127 (((-3 $ "failed") $) 39)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-146) (-141)) (T -146))
-((-1918 (*1 *1 *1) (|partial| -4 *1 (-146))))
-(-13 (-1058) (-10 -8 (-15 -1918 ((-3 $ "failed") $))))
+((-3127 (*1 *1 *1) (|partial| -4 *1 (-146))))
+(-13 (-1058) (-10 -8 (-15 -3127 ((-3 $ "failed") $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3674 ((|#1| (-695 |#1|) |#1|) 23)))
-(((-147 |#1|) (-10 -7 (-15 -3674 (|#1| (-695 |#1|) |#1|))) (-174)) (T -147))
-((-3674 (*1 *2 *3 *2) (-12 (-5 *3 (-695 *2)) (-4 *2 (-174)) (-5 *1 (-147 *2)))))
-(-10 -7 (-15 -3674 (|#1| (-695 |#1|) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3641 ((|#1| (-695 |#1|) |#1|) 23)))
+(((-147 |#1|) (-10 -7 (-15 -3641 (|#1| (-695 |#1|) |#1|))) (-174)) (T -147))
+((-3641 (*1 *2 *3 *2) (-12 (-5 *3 (-695 *2)) (-4 *2 (-174)) (-5 *1 (-147 *2)))))
+(-10 -7 (-15 -3641 (|#1| (-695 |#1|) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-148) (-141)) (T -148))
NIL
(-13 (-1058))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3598 (((-2 (|:| -1907 (-777)) (|:| -1441 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777)) 76)) (-4060 (((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|) 56)) (-2843 (((-2 (|:| -1441 (-413 |#2|)) (|:| |poly| |#3|)) |#3|) 41)) (-1561 ((|#1| |#3| |#3|) 44)) (-1730 ((|#3| |#3| (-413 |#2|) (-413 |#2|)) 20)) (-1563 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|) 53)))
-(((-149 |#1| |#2| |#3|) (-10 -7 (-15 -2843 ((-2 (|:| -1441 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -4060 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -3598 ((-2 (|:| -1907 (-777)) (|:| -1441 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -1561 (|#1| |#3| |#3|)) (-15 -1730 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -1563 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|))) (-1230) (-1252 |#1|) (-1252 (-413 |#2|))) (T -149))
-((-1563 (*1 *2 *3 *3) (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-413 *5)) (|:| |c2| (-413 *5)) (|:| |deg| (-777)))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1252 (-413 *5))))) (-1730 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-413 *5)) (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-5 *1 (-149 *4 *5 *2)) (-4 *2 (-1252 *3)))) (-1561 (*1 *2 *3 *3) (-12 (-4 *4 (-1252 *2)) (-4 *2 (-1230)) (-5 *1 (-149 *2 *4 *3)) (-4 *3 (-1252 (-413 *4))))) (-3598 (*1 *2 *3 *4) (-12 (-5 *3 (-413 *6)) (-4 *5 (-1230)) (-4 *6 (-1252 *5)) (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *3) (|:| |radicand| *6))) (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1252 *3)))) (-4060 (*1 *2 *3) (|partial| -12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| |radicand| (-413 *5)) (|:| |deg| (-777)))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1252 (-413 *5))))) (-2843 (*1 *2 *3) (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| -1441 (-413 *5)) (|:| |poly| *3))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1252 (-413 *5))))))
-(-10 -7 (-15 -2843 ((-2 (|:| -1441 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -4060 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -3598 ((-2 (|:| -1907 (-777)) (|:| -1441 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -1561 (|#1| |#3| |#3|)) (-15 -1730 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -1563 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|)))
-((-1659 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 35)))
-(((-150 |#1| |#2|) (-10 -7 (-15 -1659 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)))) (-551) (-167 |#1|)) (T -150))
-((-1659 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5)) (-4 *5 (-167 *4)) (-4 *4 (-551)) (-5 *1 (-150 *4 *5)))))
-(-10 -7 (-15 -1659 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))))
-((-1424 (($ (-1 (-112) |#2|) $) 35)) (-3480 (($ $) 42)) (-1702 (($ (-1 (-112) |#2|) $) 33) (($ |#2| $) 38)) (-3529 ((|#2| (-1 |#2| |#2| |#2|) $) 28) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 30) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40)) (-3321 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 25)) (-1671 (((-112) (-1 (-112) |#2|) $) 22)) (-3486 (((-777) (-1 (-112) |#2|) $) 18) (((-777) |#2| $) NIL)) (-4368 (((-112) (-1 (-112) |#2|) $) 21)) (-2426 (((-777) $) 12)))
-(((-151 |#1| |#2|) (-10 -8 (-15 -3480 (|#1| |#1|)) (-15 -1702 (|#1| |#2| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1424 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1702 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3321 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|))) (-152 |#2|) (-1226)) (T -151))
-NIL
-(-10 -8 (-15 -3480 (|#1| |#1|)) (-15 -1702 (|#1| |#2| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1424 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1702 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3321 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-1424 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-3480 (($ $) 42 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448))) (($ |#1| $) 43 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 48 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 47 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 44 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 49)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 41 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 50)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-152 |#1|) (-141) (-1226)) (T -152))
-((-3748 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-4 *1 (-152 *3)))) (-3321 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2)) (-4 *2 (-1226)))) (-3529 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226)))) (-3529 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226)))) (-1702 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *3)) (-4 *3 (-1226)))) (-1424 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *3)) (-4 *3 (-1226)))) (-3529 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226)))) (-1702 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226)) (-4 *2 (-1109)))) (-3480 (*1 *1 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226)) (-4 *2 (-1109)))))
-(-13 (-495 |t#1|) (-10 -8 (-15 -3748 ($ (-650 |t#1|))) (-15 -3321 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4448)) (PROGN (-15 -3529 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -3529 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1702 ($ (-1 (-112) |t#1|) $)) (-15 -1424 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3529 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1702 ($ |t#1| $)) (-15 -3480 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) 113)) (-2081 (((-112) $) NIL)) (-3872 (($ |#2| (-650 (-928))) 73)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3300 (($ (-928)) 60)) (-2184 (((-135)) 26)) (-3735 (((-868) $) 88) (($ (-570)) 56) (($ |#2|) 57)) (-1715 ((|#2| $ (-650 (-928))) 76)) (-2744 (((-777)) 23 T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 51 T CONST)) (-1823 (($) 54 T CONST)) (-2872 (((-112) $ $) 37)) (-2975 (($ $ |#2|) NIL)) (-2965 (($ $) 46) (($ $ $) 44)) (-2954 (($ $ $) 42)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 48) (($ $ $) 66) (($ |#2| $) 50) (($ $ |#2|) NIL)))
-(((-153 |#1| |#2| |#3|) (-13 (-1058) (-38 |#2|) (-1283 |#2|) (-10 -8 (-15 -3300 ($ (-928))) (-15 -3872 ($ |#2| (-650 (-928)))) (-15 -1715 (|#2| $ (-650 (-928)))) (-15 -3413 ((-3 $ "failed") $)))) (-928) (-368) (-1002 |#1| |#2|)) (T -153))
-((-3413 (*1 *1 *1) (|partial| -12 (-5 *1 (-153 *2 *3 *4)) (-14 *2 (-928)) (-4 *3 (-368)) (-14 *4 (-1002 *2 *3)))) (-3300 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-153 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-368)) (-14 *5 (-1002 *3 *4)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *1 (-153 *4 *2 *5)) (-14 *4 (-928)) (-4 *2 (-368)) (-14 *5 (-1002 *4 *2)))) (-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-928))) (-4 *2 (-368)) (-5 *1 (-153 *4 *2 *5)) (-14 *4 (-928)) (-14 *5 (-1002 *4 *2)))))
-(-13 (-1058) (-38 |#2|) (-1283 |#2|) (-10 -8 (-15 -3300 ($ (-928))) (-15 -3872 ($ |#2| (-650 (-928)))) (-15 -1715 (|#2| $ (-650 (-928)))) (-15 -3413 ((-3 $ "failed") $))))
-((-1951 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227)) 62)) (-2687 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 99) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 100)) (-1406 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227))))) 103) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227)))) 102) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 94) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 95)))
-(((-154) (-10 -7 (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -2687 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -2687 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -1951 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))) (T -154))
-((-1406 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 (-227))))))) (-1406 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)) (-5 *3 (-650 (-950 (-227)))))) (-1951 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-227)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 *4)))) (|:| |xValues| (-1103 *4)) (|:| |yValues| (-1103 *4)))) (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 *4)))))) (-2687 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570))) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-2687 (*1 *2 *3) (-12 (-5 *3 (-934)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-1406 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570))) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-1406 (*1 *2 *3) (-12 (-5 *3 (-934)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))))
-(-10 -7 (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -2687 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -2687 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -1951 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -1406 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-2655 (((-650 (-1144)) $) 20)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-1144) $) 9)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-155) (-13 (-1092) (-10 -8 (-15 -2655 ((-650 (-1144)) $)) (-15 -3517 ((-1144) $))))) (T -155))
-((-2655 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-155)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-155)))))
-(-13 (-1092) (-10 -8 (-15 -2655 ((-650 (-1144)) $)) (-15 -3517 ((-1144) $))))
-((-3398 (((-650 (-171 |#2|)) |#1| |#2|) 50)))
-(((-156 |#1| |#2|) (-10 -7 (-15 -3398 ((-650 (-171 |#2|)) |#1| |#2|))) (-1252 (-171 (-570))) (-13 (-368) (-854))) (T -156))
-((-3398 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-171 *4))) (-5 *1 (-156 *3 *4)) (-4 *3 (-1252 (-171 (-570)))) (-4 *4 (-13 (-368) (-854))))))
-(-10 -7 (-15 -3398 ((-650 (-171 |#2|)) |#1| |#2|)))
-((-2416 (((-112) $ $) NIL)) (-2121 (((-1225) $) 12)) (-2112 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-157) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1225) $))))) (T -157))
-((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-157)))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-157)))))
-(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1225) $))))
-((-2416 (((-112) $ $) NIL)) (-1528 (($) 41)) (-3291 (($) 40)) (-2990 (((-928)) 46)) (-1903 (((-1168) $) NIL)) (-1865 (((-570) $) 44)) (-3479 (((-1129) $) NIL)) (-3821 (($) 42)) (-3720 (($ (-570)) 47)) (-3735 (((-868) $) 53)) (-2164 (($) 43)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 38)) (-2954 (($ $ $) 35)) (* (($ (-928) $) 45) (($ (-227) $) 11)))
-(((-158) (-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -2954 ($ $ $)) (-15 -3291 ($)) (-15 -1528 ($)) (-15 -3821 ($)) (-15 -2164 ($)) (-15 -1865 ((-570) $)) (-15 -2990 ((-928))) (-15 -3720 ($ (-570)))))) (T -158))
-((-2954 (*1 *1 *1 *1) (-5 *1 (-158))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-158)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-158)))) (-3291 (*1 *1) (-5 *1 (-158))) (-1528 (*1 *1) (-5 *1 (-158))) (-3821 (*1 *1) (-5 *1 (-158))) (-2164 (*1 *1) (-5 *1 (-158))) (-1865 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-158)))) (-2990 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))) (-3720 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-158)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -2954 ($ $ $)) (-15 -3291 ($)) (-15 -1528 ($)) (-15 -3821 ($)) (-15 -2164 ($)) (-15 -1865 ((-570) $)) (-15 -2990 ((-928))) (-15 -3720 ($ (-570)))))
-((-2805 ((|#2| |#2| (-1101 |#2|)) 98) ((|#2| |#2| (-1186)) 75)) (-2213 ((|#2| |#2| (-1101 |#2|)) 97) ((|#2| |#2| (-1186)) 74)) (-4390 ((|#2| |#2| |#2|) 25)) (-3680 (((-115) (-115)) 111)) (-2911 ((|#2| (-650 |#2|)) 130)) (-4417 ((|#2| (-650 |#2|)) 152)) (-4295 ((|#2| (-650 |#2|)) 138)) (-2495 ((|#2| |#2|) 136)) (-4134 ((|#2| (-650 |#2|)) 124)) (-2459 ((|#2| (-650 |#2|)) 125)) (-3837 ((|#2| (-650 |#2|)) 150)) (-1959 ((|#2| |#2| (-1186)) 63) ((|#2| |#2|) 62)) (-4061 ((|#2| |#2|) 21)) (-1397 ((|#2| |#2| |#2|) 24)) (-2004 (((-112) (-115)) 55)) (** ((|#2| |#2| |#2|) 46)))
-(((-159 |#1| |#2|) (-10 -7 (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -1397 (|#2| |#2| |#2|)) (-15 -4390 (|#2| |#2| |#2|)) (-15 -4061 (|#2| |#2|)) (-15 -1959 (|#2| |#2|)) (-15 -1959 (|#2| |#2| (-1186))) (-15 -2805 (|#2| |#2| (-1186))) (-15 -2805 (|#2| |#2| (-1101 |#2|))) (-15 -2213 (|#2| |#2| (-1186))) (-15 -2213 (|#2| |#2| (-1101 |#2|))) (-15 -2495 (|#2| |#2|)) (-15 -3837 (|#2| (-650 |#2|))) (-15 -4295 (|#2| (-650 |#2|))) (-15 -4417 (|#2| (-650 |#2|))) (-15 -4134 (|#2| (-650 |#2|))) (-15 -2459 (|#2| (-650 |#2|))) (-15 -2911 (|#2| (-650 |#2|)))) (-562) (-436 |#1|)) (T -159))
-((-2911 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-2459 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-4134 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-4417 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-4295 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3837 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-2495 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-2213 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-2213 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-2805 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-2805 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-1959 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-1959 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-4061 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-4390 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-1397 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-159 *3 *4)) (-4 *4 (-436 *3)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-159 *4 *5)) (-4 *5 (-436 *4)))))
-(-10 -7 (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -1397 (|#2| |#2| |#2|)) (-15 -4390 (|#2| |#2| |#2|)) (-15 -4061 (|#2| |#2|)) (-15 -1959 (|#2| |#2|)) (-15 -1959 (|#2| |#2| (-1186))) (-15 -2805 (|#2| |#2| (-1186))) (-15 -2805 (|#2| |#2| (-1101 |#2|))) (-15 -2213 (|#2| |#2| (-1186))) (-15 -2213 (|#2| |#2| (-1101 |#2|))) (-15 -2495 (|#2| |#2|)) (-15 -3837 (|#2| (-650 |#2|))) (-15 -4295 (|#2| (-650 |#2|))) (-15 -4417 (|#2| (-650 |#2|))) (-15 -4134 (|#2| (-650 |#2|))) (-15 -2459 (|#2| (-650 |#2|))) (-15 -2911 (|#2| (-650 |#2|))))
-((-3172 ((|#1| |#1| |#1|) 67)) (-2869 ((|#1| |#1| |#1|) 64)) (-4390 ((|#1| |#1| |#1|) 58)) (-3879 ((|#1| |#1|) 45)) (-3177 ((|#1| |#1| (-650 |#1|)) 55)) (-4061 ((|#1| |#1|) 48)) (-1397 ((|#1| |#1| |#1|) 51)))
-(((-160 |#1|) (-10 -7 (-15 -1397 (|#1| |#1| |#1|)) (-15 -4061 (|#1| |#1|)) (-15 -3177 (|#1| |#1| (-650 |#1|))) (-15 -3879 (|#1| |#1|)) (-15 -4390 (|#1| |#1| |#1|)) (-15 -2869 (|#1| |#1| |#1|)) (-15 -3172 (|#1| |#1| |#1|))) (-551)) (T -160))
-((-3172 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2869 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-4390 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-3879 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-3177 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))) (-4061 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-1397 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
-(-10 -7 (-15 -1397 (|#1| |#1| |#1|)) (-15 -4061 (|#1| |#1|)) (-15 -3177 (|#1| |#1| (-650 |#1|))) (-15 -3879 (|#1| |#1|)) (-15 -4390 (|#1| |#1| |#1|)) (-15 -2869 (|#1| |#1| |#1|)) (-15 -3172 (|#1| |#1| |#1|)))
-((-2805 (($ $ (-1186)) 12) (($ $ (-1101 $)) 11)) (-2213 (($ $ (-1186)) 10) (($ $ (-1101 $)) 9)) (-4390 (($ $ $) 8)) (-1959 (($ $) 14) (($ $ (-1186)) 13)) (-4061 (($ $) 7)) (-1397 (($ $ $) 6)))
+((-4145 (((-2 (|:| -3011 (-777)) (|:| -1442 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777)) 76)) (-3062 (((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|) 56)) (-3134 (((-2 (|:| -1442 (-413 |#2|)) (|:| |poly| |#3|)) |#3|) 41)) (-4140 ((|#1| |#3| |#3|) 44)) (-1731 ((|#3| |#3| (-413 |#2|) (-413 |#2|)) 20)) (-4163 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|) 53)))
+(((-149 |#1| |#2| |#3|) (-10 -7 (-15 -3134 ((-2 (|:| -1442 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -3062 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -4145 ((-2 (|:| -3011 (-777)) (|:| -1442 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -4140 (|#1| |#3| |#3|)) (-15 -1731 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -4163 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|))) (-1231) (-1253 |#1|) (-1253 (-413 |#2|))) (T -149))
+((-4163 (*1 *2 *3 *3) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-413 *5)) (|:| |c2| (-413 *5)) (|:| |deg| (-777)))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))) (-1731 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-413 *5)) (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-5 *1 (-149 *4 *5 *2)) (-4 *2 (-1253 *3)))) (-4140 (*1 *2 *3 *3) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1231)) (-5 *1 (-149 *2 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-4145 (*1 *2 *3 *4) (-12 (-5 *3 (-413 *6)) (-4 *5 (-1231)) (-4 *6 (-1253 *5)) (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *3) (|:| |radicand| *6))) (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1253 *3)))) (-3062 (*1 *2 *3) (|partial| -12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| |radicand| (-413 *5)) (|:| |deg| (-777)))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))) (-3134 (*1 *2 *3) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -1442 (-413 *5)) (|:| |poly| *3))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
+(-10 -7 (-15 -3134 ((-2 (|:| -1442 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -3062 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -4145 ((-2 (|:| -3011 (-777)) (|:| -1442 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -4140 (|#1| |#3| |#3|)) (-15 -1731 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -4163 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|)))
+((-2576 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 35)))
+(((-150 |#1| |#2|) (-10 -7 (-15 -2576 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)))) (-551) (-167 |#1|)) (T -150))
+((-2576 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5)) (-4 *5 (-167 *4)) (-4 *4 (-551)) (-5 *1 (-150 *4 *5)))))
+(-10 -7 (-15 -2576 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))))
+((-1425 (($ (-1 (-112) |#2|) $) 35)) (-3480 (($ $) 42)) (-1703 (($ (-1 (-112) |#2|) $) 33) (($ |#2| $) 38)) (-3529 ((|#2| (-1 |#2| |#2| |#2|) $) 28) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 30) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40)) (-3281 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 25)) (-2697 (((-112) (-1 (-112) |#2|) $) 22)) (-3490 (((-777) (-1 (-112) |#2|) $) 18) (((-777) |#2| $) NIL)) (-2964 (((-112) (-1 (-112) |#2|) $) 21)) (-2426 (((-777) $) 12)))
+(((-151 |#1| |#2|) (-10 -8 (-15 -3480 (|#1| |#1|)) (-15 -1703 (|#1| |#2| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1425 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1703 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3281 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|))) (-152 |#2|) (-1227)) (T -151))
+NIL
+(-10 -8 (-15 -3480 (|#1| |#1|)) (-15 -1703 (|#1| |#2| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1425 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1703 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3281 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-1425 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3480 (($ $) 42 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449))) (($ |#1| $) 43 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 48 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 47 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 44 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 49)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 41 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 50)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-152 |#1|) (-141) (-1227)) (T -152))
+((-3749 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-152 *3)))) (-3281 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-3529 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-3529 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-1703 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3)) (-4 *3 (-1227)))) (-1425 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3)) (-4 *3 (-1227)))) (-3529 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-1703 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-3480 (*1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))))
+(-13 (-495 |t#1|) (-10 -8 (-15 -3749 ($ (-650 |t#1|))) (-15 -3281 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4449)) (PROGN (-15 -3529 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -3529 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1703 ($ (-1 (-112) |t#1|) $)) (-15 -1425 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3529 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1703 ($ |t#1| $)) (-15 -3480 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) 113)) (-4340 (((-112) $) NIL)) (-3872 (($ |#2| (-650 (-928))) 73)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3300 (($ (-928)) 60)) (-4154 (((-135)) 26)) (-3735 (((-868) $) 88) (($ (-570)) 56) (($ |#2|) 57)) (-1983 ((|#2| $ (-650 (-928))) 76)) (-1609 (((-777)) 23 T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 51 T CONST)) (-1824 (($) 54 T CONST)) (-2872 (((-112) $ $) 37)) (-2975 (($ $ |#2|) NIL)) (-2965 (($ $) 46) (($ $ $) 44)) (-2953 (($ $ $) 42)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 48) (($ $ $) 66) (($ |#2| $) 50) (($ $ |#2|) NIL)))
+(((-153 |#1| |#2| |#3|) (-13 (-1058) (-38 |#2|) (-1284 |#2|) (-10 -8 (-15 -3300 ($ (-928))) (-15 -3872 ($ |#2| (-650 (-928)))) (-15 -1983 (|#2| $ (-650 (-928)))) (-15 -2937 ((-3 $ "failed") $)))) (-928) (-368) (-1002 |#1| |#2|)) (T -153))
+((-2937 (*1 *1 *1) (|partial| -12 (-5 *1 (-153 *2 *3 *4)) (-14 *2 (-928)) (-4 *3 (-368)) (-14 *4 (-1002 *2 *3)))) (-3300 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-153 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-368)) (-14 *5 (-1002 *3 *4)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *1 (-153 *4 *2 *5)) (-14 *4 (-928)) (-4 *2 (-368)) (-14 *5 (-1002 *4 *2)))) (-1983 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-928))) (-4 *2 (-368)) (-5 *1 (-153 *4 *2 *5)) (-14 *4 (-928)) (-14 *5 (-1002 *4 *2)))))
+(-13 (-1058) (-38 |#2|) (-1284 |#2|) (-10 -8 (-15 -3300 ($ (-928))) (-15 -3872 ($ |#2| (-650 (-928)))) (-15 -1983 (|#2| $ (-650 (-928)))) (-15 -2937 ((-3 $ "failed") $))))
+((-3518 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227)) 62)) (-2258 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 99) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 100)) (-4325 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227))))) 103) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227)))) 102) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 94) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 95)))
+(((-154) (-10 -7 (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -2258 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -2258 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -3518 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))) (T -154))
+((-4325 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 (-227))))))) (-4325 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)) (-5 *3 (-650 (-950 (-227)))))) (-3518 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-227)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 *4)))) (|:| |xValues| (-1103 *4)) (|:| |yValues| (-1103 *4)))) (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 *4)))))) (-2258 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570))) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-2258 (*1 *2 *3) (-12 (-5 *3 (-934)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-4325 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570))) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-4325 (*1 *2 *3) (-12 (-5 *3 (-934)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))))
+(-10 -7 (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -2258 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -2258 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -3518 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -4325 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-2656 (((-650 (-1144)) $) 20)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-1144) $) 9)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-155) (-13 (-1092) (-10 -8 (-15 -2656 ((-650 (-1144)) $)) (-15 -3515 ((-1144) $))))) (T -155))
+((-2656 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-155)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-155)))))
+(-13 (-1092) (-10 -8 (-15 -2656 ((-650 (-1144)) $)) (-15 -3515 ((-1144) $))))
+((-2805 (((-650 (-171 |#2|)) |#1| |#2|) 50)))
+(((-156 |#1| |#2|) (-10 -7 (-15 -2805 ((-650 (-171 |#2|)) |#1| |#2|))) (-1253 (-171 (-570))) (-13 (-368) (-854))) (T -156))
+((-2805 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-171 *4))) (-5 *1 (-156 *3 *4)) (-4 *3 (-1253 (-171 (-570)))) (-4 *4 (-13 (-368) (-854))))))
+(-10 -7 (-15 -2805 ((-650 (-171 |#2|)) |#1| |#2|)))
+((-2417 (((-112) $ $) NIL)) (-2123 (((-1226) $) 12)) (-2112 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-157) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1226) $))))) (T -157))
+((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-157)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-157)))))
+(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1226) $))))
+((-2417 (((-112) $ $) NIL)) (-3778 (($) 41)) (-3019 (($) 40)) (-3203 (((-928)) 46)) (-4268 (((-1168) $) NIL)) (-3914 (((-570) $) 44)) (-3479 (((-1129) $) NIL)) (-4424 (($) 42)) (-2819 (($ (-570)) 47)) (-3735 (((-868) $) 53)) (-3943 (($) 43)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 38)) (-2953 (($ $ $) 35)) (* (($ (-928) $) 45) (($ (-227) $) 11)))
+(((-158) (-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -2953 ($ $ $)) (-15 -3019 ($)) (-15 -3778 ($)) (-15 -4424 ($)) (-15 -3943 ($)) (-15 -3914 ((-570) $)) (-15 -3203 ((-928))) (-15 -2819 ($ (-570)))))) (T -158))
+((-2953 (*1 *1 *1 *1) (-5 *1 (-158))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-158)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-158)))) (-3019 (*1 *1) (-5 *1 (-158))) (-3778 (*1 *1) (-5 *1 (-158))) (-4424 (*1 *1) (-5 *1 (-158))) (-3943 (*1 *1) (-5 *1 (-158))) (-3914 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-158)))) (-3203 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))) (-2819 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-158)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -2953 ($ $ $)) (-15 -3019 ($)) (-15 -3778 ($)) (-15 -4424 ($)) (-15 -3943 ($)) (-15 -3914 ((-570) $)) (-15 -3203 ((-928))) (-15 -2819 ($ (-570)))))
+((-4040 ((|#2| |#2| (-1101 |#2|)) 98) ((|#2| |#2| (-1186)) 75)) (-3144 ((|#2| |#2| (-1101 |#2|)) 97) ((|#2| |#2| (-1186)) 74)) (-2039 ((|#2| |#2| |#2|) 25)) (-3680 (((-115) (-115)) 111)) (-3719 ((|#2| (-650 |#2|)) 130)) (-2234 ((|#2| (-650 |#2|)) 152)) (-3546 ((|#2| (-650 |#2|)) 138)) (-4205 ((|#2| |#2|) 136)) (-1382 ((|#2| (-650 |#2|)) 124)) (-3846 ((|#2| (-650 |#2|)) 125)) (-1485 ((|#2| (-650 |#2|)) 150)) (-3609 ((|#2| |#2| (-1186)) 63) ((|#2| |#2|) 62)) (-3072 ((|#2| |#2|) 21)) (-3829 ((|#2| |#2| |#2|) 24)) (-2818 (((-112) (-115)) 55)) (** ((|#2| |#2| |#2|) 46)))
+(((-159 |#1| |#2|) (-10 -7 (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -3829 (|#2| |#2| |#2|)) (-15 -2039 (|#2| |#2| |#2|)) (-15 -3072 (|#2| |#2|)) (-15 -3609 (|#2| |#2|)) (-15 -3609 (|#2| |#2| (-1186))) (-15 -4040 (|#2| |#2| (-1186))) (-15 -4040 (|#2| |#2| (-1101 |#2|))) (-15 -3144 (|#2| |#2| (-1186))) (-15 -3144 (|#2| |#2| (-1101 |#2|))) (-15 -4205 (|#2| |#2|)) (-15 -1485 (|#2| (-650 |#2|))) (-15 -3546 (|#2| (-650 |#2|))) (-15 -2234 (|#2| (-650 |#2|))) (-15 -1382 (|#2| (-650 |#2|))) (-15 -3846 (|#2| (-650 |#2|))) (-15 -3719 (|#2| (-650 |#2|)))) (-562) (-436 |#1|)) (T -159))
+((-3719 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3846 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-1382 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-2234 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3546 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-1485 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-4205 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3144 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-3144 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-4040 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-4040 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-3609 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-3609 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3072 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-2039 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3829 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-159 *3 *4)) (-4 *4 (-436 *3)))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-159 *4 *5)) (-4 *5 (-436 *4)))))
+(-10 -7 (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -3829 (|#2| |#2| |#2|)) (-15 -2039 (|#2| |#2| |#2|)) (-15 -3072 (|#2| |#2|)) (-15 -3609 (|#2| |#2|)) (-15 -3609 (|#2| |#2| (-1186))) (-15 -4040 (|#2| |#2| (-1186))) (-15 -4040 (|#2| |#2| (-1101 |#2|))) (-15 -3144 (|#2| |#2| (-1186))) (-15 -3144 (|#2| |#2| (-1101 |#2|))) (-15 -4205 (|#2| |#2|)) (-15 -1485 (|#2| (-650 |#2|))) (-15 -3546 (|#2| (-650 |#2|))) (-15 -2234 (|#2| (-650 |#2|))) (-15 -1382 (|#2| (-650 |#2|))) (-15 -3846 (|#2| (-650 |#2|))) (-15 -3719 (|#2| (-650 |#2|))))
+((-1356 ((|#1| |#1| |#1|) 67)) (-3410 ((|#1| |#1| |#1|) 64)) (-2039 ((|#1| |#1| |#1|) 58)) (-1911 ((|#1| |#1|) 45)) (-1406 ((|#1| |#1| (-650 |#1|)) 55)) (-3072 ((|#1| |#1|) 48)) (-3829 ((|#1| |#1| |#1|) 51)))
+(((-160 |#1|) (-10 -7 (-15 -3829 (|#1| |#1| |#1|)) (-15 -3072 (|#1| |#1|)) (-15 -1406 (|#1| |#1| (-650 |#1|))) (-15 -1911 (|#1| |#1|)) (-15 -2039 (|#1| |#1| |#1|)) (-15 -3410 (|#1| |#1| |#1|)) (-15 -1356 (|#1| |#1| |#1|))) (-551)) (T -160))
+((-1356 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-3410 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2039 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-1911 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-1406 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))) (-3072 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-3829 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+(-10 -7 (-15 -3829 (|#1| |#1| |#1|)) (-15 -3072 (|#1| |#1|)) (-15 -1406 (|#1| |#1| (-650 |#1|))) (-15 -1911 (|#1| |#1|)) (-15 -2039 (|#1| |#1| |#1|)) (-15 -3410 (|#1| |#1| |#1|)) (-15 -1356 (|#1| |#1| |#1|)))
+((-4040 (($ $ (-1186)) 12) (($ $ (-1101 $)) 11)) (-3144 (($ $ (-1186)) 10) (($ $ (-1101 $)) 9)) (-2039 (($ $ $) 8)) (-3609 (($ $) 14) (($ $ (-1186)) 13)) (-3072 (($ $) 7)) (-3829 (($ $ $) 6)))
(((-161) (-141)) (T -161))
-((-1959 (*1 *1 *1) (-4 *1 (-161))) (-1959 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-2805 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-2805 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))) (-2213 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-2213 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))))
-(-13 (-144) (-10 -8 (-15 -1959 ($ $)) (-15 -1959 ($ $ (-1186))) (-15 -2805 ($ $ (-1186))) (-15 -2805 ($ $ (-1101 $))) (-15 -2213 ($ $ (-1186))) (-15 -2213 ($ $ (-1101 $)))))
+((-3609 (*1 *1 *1) (-4 *1 (-161))) (-3609 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-4040 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-4040 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))) (-3144 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-3144 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))))
+(-13 (-144) (-10 -8 (-15 -3609 ($ $)) (-15 -3609 ($ $ (-1186))) (-15 -4040 ($ $ (-1186))) (-15 -4040 ($ $ (-1101 $))) (-15 -3144 ($ $ (-1186))) (-15 -3144 ($ $ (-1101 $)))))
(((-144) . T))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-650 (-1144)) $) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-162) (-13 (-1092) (-10 -8 (-15 -3517 ((-650 (-1144)) $))))) (T -162))
-((-3517 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-162)))))
-(-13 (-1092) (-10 -8 (-15 -3517 ((-650 (-1144)) $))))
-((-2416 (((-112) $ $) NIL)) (-4157 (($ (-570)) 14) (($ $ $) 15)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 18)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
-(((-163) (-13 (-1109) (-10 -8 (-15 -4157 ($ (-570))) (-15 -4157 ($ $ $))))) (T -163))
-((-4157 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))) (-4157 (*1 *1 *1 *1) (-5 *1 (-163))))
-(-13 (-1109) (-10 -8 (-15 -4157 ($ (-570))) (-15 -4157 ($ $ $))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-650 (-1144)) $) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-162) (-13 (-1092) (-10 -8 (-15 -3515 ((-650 (-1144)) $))))) (T -162))
+((-3515 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-162)))))
+(-13 (-1092) (-10 -8 (-15 -3515 ((-650 (-1144)) $))))
+((-2417 (((-112) $ $) NIL)) (-1615 (($ (-570)) 14) (($ $ $) 15)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 18)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
+(((-163) (-13 (-1109) (-10 -8 (-15 -1615 ($ (-570))) (-15 -1615 ($ $ $))))) (T -163))
+((-1615 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))) (-1615 (*1 *1 *1 *1) (-5 *1 (-163))))
+(-13 (-1109) (-10 -8 (-15 -1615 ($ (-570))) (-15 -1615 ($ $ $))))
((-3680 (((-115) (-1186)) 102)))
(((-164) (-10 -7 (-15 -3680 ((-115) (-1186))))) (T -164))
((-3680 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-115)) (-5 *1 (-164)))))
(-10 -7 (-15 -3680 ((-115) (-1186))))
-((-2776 ((|#3| |#3|) 19)))
-(((-165 |#1| |#2| |#3|) (-10 -7 (-15 -2776 (|#3| |#3|))) (-1058) (-1252 |#1|) (-1252 |#2|)) (T -165))
-((-2776 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-4 *4 (-1252 *3)) (-5 *1 (-165 *3 *4 *2)) (-4 *2 (-1252 *4)))))
-(-10 -7 (-15 -2776 (|#3| |#3|)))
-((-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 223)) (-3071 ((|#2| $) 102)) (-2735 (($ $) 256)) (-2602 (($ $) 250)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 47)) (-2712 (($ $) 254)) (-2579 (($ $) 248)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 146)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 144)) (-2372 (($ $ $) 229)) (-4177 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) 160) (((-695 |#2|) (-695 $)) 154)) (-3529 (($ (-1182 |#2|)) 125) (((-3 $ "failed") (-413 (-1182 |#2|))) NIL)) (-3413 (((-3 $ "failed") $) 214)) (-2951 (((-3 (-413 (-570)) "failed") $) 204)) (-2085 (((-112) $) 199)) (-3137 (((-413 (-570)) $) 202)) (-3934 (((-928)) 96)) (-2381 (($ $ $) 231)) (-2817 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 269)) (-1314 (($) 245)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 193) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 198)) (-2610 ((|#2| $) 100)) (-1638 (((-1182 |#2|) $) 127)) (-1351 (($ (-1 |#2| |#2|) $) 108)) (-2635 (($ $) 247)) (-3516 (((-1182 |#2|) $) 126)) (-1825 (($ $) 207)) (-2500 (($) 103)) (-1885 (((-424 (-1182 $)) (-1182 $)) 95)) (-1495 (((-424 (-1182 $)) (-1182 $)) 64)) (-2407 (((-3 $ "failed") $ |#2|) 209) (((-3 $ "failed") $ $) 212)) (-4387 (($ $) 246)) (-2272 (((-777) $) 226)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 236)) (-2998 ((|#2| (-1276 $)) NIL) ((|#2|) 98)) (-3447 (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 119) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-2886 (((-1182 |#2|)) 120)) (-2723 (($ $) 255)) (-2590 (($ $) 249)) (-1807 (((-1276 |#2|) $ (-1276 $)) 136) (((-695 |#2|) (-1276 $) (-1276 $)) NIL) (((-1276 |#2|) $) 116) (((-695 |#2|) (-1276 $)) NIL)) (-1416 (((-1276 |#2|) $) NIL) (($ (-1276 |#2|)) NIL) (((-1182 |#2|) $) NIL) (($ (-1182 |#2|)) NIL) (((-899 (-570)) $) 184) (((-899 (-384)) $) 188) (((-171 (-384)) $) 172) (((-171 (-227)) $) 167) (((-542) $) 180)) (-3684 (($ $) 104)) (-3735 (((-868) $) 143) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-413 (-570))) NIL) (($ $) NIL)) (-3674 (((-1182 |#2|) $) 32)) (-2744 (((-777)) 106)) (-1859 (((-112) $ $) 13)) (-4138 (($ $) 259)) (-2671 (($ $) 253)) (-4108 (($ $) 257)) (-2647 (($ $) 251)) (-3091 ((|#2| $) 242)) (-4123 (($ $) 258)) (-2660 (($ $) 252)) (-1423 (($ $) 162)) (-2872 (((-112) $ $) 110)) (-2965 (($ $) 112) (($ $ $) NIL)) (-2954 (($ $ $) 111)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-413 (-570))) 276) (($ $ $) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 118) (($ $ $) 147) (($ $ |#2|) NIL) (($ |#2| $) 114) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL)))
-(((-166 |#1| |#2|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3735 (|#1| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3732 ((-2 (|:| -1733 |#1|) (|:| -4435 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2272 ((-777) |#1|)) (-15 -2382 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2381 (|#1| |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1416 ((-542) |#1|)) (-15 -1416 ((-171 (-227)) |#1|)) (-15 -1416 ((-171 (-384)) |#1|)) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1314 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -1495 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1885 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -2817 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -3091 (|#2| |#1|)) (-15 -1423 (|#1| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3684 (|#1| |#1|)) (-15 -2500 (|#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3529 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3516 ((-1182 |#2|) |#1|)) (-15 -1416 (|#1| (-1182 |#2|))) (-15 -3529 (|#1| (-1182 |#2|))) (-15 -2886 ((-1182 |#2|))) (-15 -4177 ((-695 |#2|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -1416 ((-1182 |#2|) |#1|)) (-15 -2998 (|#2|)) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -1638 ((-1182 |#2|) |#1|)) (-15 -3674 ((-1182 |#2|) |#1|)) (-15 -2998 (|#2| (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2610 (|#2| |#1|)) (-15 -3071 (|#2| |#1|)) (-15 -3934 ((-928))) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -1859 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-167 |#2|) (-174)) (T -166))
-((-2744 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-3934 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-928)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-2998 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-166 *3 *2)) (-4 *3 (-167 *2)))) (-2886 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 *4)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))))
-(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3735 (|#1| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3732 ((-2 (|:| -1733 |#1|) (|:| -4435 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2272 ((-777) |#1|)) (-15 -2382 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2381 (|#1| |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1416 ((-542) |#1|)) (-15 -1416 ((-171 (-227)) |#1|)) (-15 -1416 ((-171 (-384)) |#1|)) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1314 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -1495 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1885 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -2817 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -3091 (|#2| |#1|)) (-15 -1423 (|#1| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3684 (|#1| |#1|)) (-15 -2500 (|#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3529 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3516 ((-1182 |#2|) |#1|)) (-15 -1416 (|#1| (-1182 |#2|))) (-15 -3529 (|#1| (-1182 |#2|))) (-15 -2886 ((-1182 |#2|))) (-15 -4177 ((-695 |#2|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -1416 ((-1182 |#2|) |#1|)) (-15 -2998 (|#2|)) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -1638 ((-1182 |#2|) |#1|)) (-15 -3674 ((-1182 |#2|) |#1|)) (-15 -2998 (|#2| (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2610 (|#2| |#1|)) (-15 -3071 (|#2| |#1|)) (-15 -3934 ((-928))) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -1859 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 102 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3171 (($ $) 103 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-2720 (((-112) $) 105 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-2945 (((-695 |#1|) (-1276 $)) 53) (((-695 |#1|)) 68)) (-3071 ((|#1| $) 59)) (-2735 (($ $) 229 (|has| |#1| (-1211)))) (-2602 (($ $) 212 (|has| |#1| (-1211)))) (-4029 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2615 (((-424 (-1182 $)) (-1182 $)) 243 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-2222 (($ $) 122 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1790 (((-424 $) $) 123 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3753 (($ $) 242 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1211))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 246 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-4339 (((-112) $ $) 113 (|has| |#1| (-311)))) (-3403 (((-777)) 96 (|has| |#1| (-373)))) (-2712 (($ $) 228 (|has| |#1| (-1211)))) (-2579 (($ $) 213 (|has| |#1| (-1211)))) (-4087 (($ $) 227 (|has| |#1| (-1211)))) (-2622 (($ $) 214 (|has| |#1| (-1211)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3080 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-2049 (($ (-1276 |#1|) (-1276 $)) 55) (($ (-1276 |#1|)) 71)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2372 (($ $ $) 117 (|has| |#1| (-311)))) (-2710 (((-695 |#1|) $ (-1276 $)) 60) (((-695 |#1|) $) 66)) (-4177 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3529 (($ (-1182 |#1|)) 166) (((-3 $ "failed") (-413 (-1182 |#1|))) 163 (|has| |#1| (-368)))) (-3413 (((-3 $ "failed") $) 37)) (-3765 ((|#1| $) 254)) (-2951 (((-3 (-413 (-570)) "failed") $) 247 (|has| |#1| (-551)))) (-2085 (((-112) $) 249 (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) 248 (|has| |#1| (-551)))) (-3934 (((-928)) 61)) (-3336 (($) 99 (|has| |#1| (-373)))) (-2381 (($ $ $) 116 (|has| |#1| (-311)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 111 (|has| |#1| (-311)))) (-2493 (($) 157 (|has| |#1| (-354)))) (-2036 (((-112) $) 158 (|has| |#1| (-354)))) (-2774 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-1552 (((-112) $) 124 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-2817 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 250 (-12 (|has| |#1| (-1069)) (|has| |#1| (-1211))))) (-1314 (($) 239 (|has| |#1| (-1211)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 262 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 261 (|has| |#1| (-893 (-384))))) (-3157 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 241 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1211))))) (-2610 ((|#1| $) 58)) (-2885 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-311)))) (-1638 (((-1182 |#1|) $) 51 (|has| |#1| (-368)))) (-1351 (($ (-1 |#1| |#1|) $) 263)) (-2367 (((-928) $) 98 (|has| |#1| (-373)))) (-2635 (($ $) 236 (|has| |#1| (-1211)))) (-3516 (((-1182 |#1|) $) 164)) (-1845 (($ (-650 $)) 109 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 108 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1903 (((-1168) $) 10)) (-1825 (($ $) 125 (|has| |#1| (-368)))) (-2314 (($) 151 (|has| |#1| (-354)) CONST)) (-2159 (($ (-928)) 97 (|has| |#1| (-373)))) (-2500 (($) 258)) (-3779 ((|#1| $) 255)) (-3479 (((-1129) $) 11)) (-2339 (($) 168)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 110 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1874 (($ (-650 $)) 107 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 106 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 154 (|has| |#1| (-354)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 245 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-1495 (((-424 (-1182 $)) (-1182 $)) 244 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3738 (((-424 $) $) 121 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 118 (|has| |#1| (-311)))) (-2407 (((-3 $ "failed") $ |#1|) 253 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 101 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-311)))) (-4387 (($ $) 237 (|has| |#1| (-1211)))) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) 269 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 268 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 267 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 266 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 265 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 264 (|has| |#1| (-520 (-1186) |#1|)))) (-2272 (((-777) $) 114 (|has| |#1| (-311)))) (-1876 (($ $ |#1|) 270 (|has| |#1| (-290 |#1| |#1|)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 115 (|has| |#1| (-311)))) (-2998 ((|#1| (-1276 $)) 54) ((|#1|) 67)) (-2845 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3447 (($ $ (-1 |#1| |#1|) (-777)) 131) (($ $ (-1 |#1| |#1|)) 130) (($ $ (-650 (-1186)) (-650 (-777))) 138 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 139 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 140 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 141 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 143 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 145 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-4399 (((-695 |#1|) (-1276 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-2886 (((-1182 |#1|)) 167)) (-4099 (($ $) 226 (|has| |#1| (-1211)))) (-2634 (($ $) 215 (|has| |#1| (-1211)))) (-2163 (($) 156 (|has| |#1| (-354)))) (-2746 (($ $) 225 (|has| |#1| (-1211)))) (-2611 (($ $) 216 (|has| |#1| (-1211)))) (-2723 (($ $) 224 (|has| |#1| (-1211)))) (-2590 (($ $) 217 (|has| |#1| (-1211)))) (-1807 (((-1276 |#1|) $ (-1276 $)) 57) (((-695 |#1|) (-1276 $) (-1276 $)) 56) (((-1276 |#1|) $) 73) (((-695 |#1|) (-1276 $)) 72)) (-1416 (((-1276 |#1|) $) 70) (($ (-1276 |#1|)) 69) (((-1182 |#1|) $) 179) (($ (-1182 |#1|)) 165) (((-899 (-570)) $) 260 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 259 (|has| |#1| (-620 (-899 (-384))))) (((-171 (-384)) $) 211 (|has| |#1| (-1031))) (((-171 (-227)) $) 210 (|has| |#1| (-1031))) (((-542) $) 209 (|has| |#1| (-620 (-542))))) (-3684 (($ $) 257)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 153 (-2740 (-1765 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-354))))) (-3035 (($ |#1| |#1|) 256)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 95 (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) 100 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1918 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (-2740 (-1765 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-146))))) (-3674 (((-1182 |#1|) $) 52)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-2331 (((-1276 $)) 74)) (-4138 (($ $) 235 (|has| |#1| (-1211)))) (-2671 (($ $) 223 (|has| |#1| (-1211)))) (-1681 (((-112) $ $) 104 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4108 (($ $) 234 (|has| |#1| (-1211)))) (-2647 (($ $) 222 (|has| |#1| (-1211)))) (-4161 (($ $) 233 (|has| |#1| (-1211)))) (-2691 (($ $) 221 (|has| |#1| (-1211)))) (-3091 ((|#1| $) 251 (|has| |#1| (-1211)))) (-1509 (($ $) 232 (|has| |#1| (-1211)))) (-2701 (($ $) 220 (|has| |#1| (-1211)))) (-4150 (($ $) 231 (|has| |#1| (-1211)))) (-2681 (($ $) 219 (|has| |#1| (-1211)))) (-4123 (($ $) 230 (|has| |#1| (-1211)))) (-2660 (($ $) 218 (|has| |#1| (-1211)))) (-1423 (($ $) 252 (|has| |#1| (-1069)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1 |#1| |#1|) (-777)) 133) (($ $ (-1 |#1| |#1|)) 132) (($ $ (-650 (-1186)) (-650 (-777))) 134 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 135 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 136 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 137 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 142 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 144 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 129 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-413 (-570))) 240 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1211)))) (($ $ $) 238 (|has| |#1| (-1211))) (($ $ (-570)) 126 (|has| |#1| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-413 (-570)) $) 128 (|has| |#1| (-368))) (($ $ (-413 (-570))) 127 (|has| |#1| (-368)))))
+((-1919 ((|#3| |#3|) 19)))
+(((-165 |#1| |#2| |#3|) (-10 -7 (-15 -1919 (|#3| |#3|))) (-1058) (-1253 |#1|) (-1253 |#2|)) (T -165))
+((-1919 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-4 *4 (-1253 *3)) (-5 *1 (-165 *3 *4 *2)) (-4 *2 (-1253 *4)))))
+(-10 -7 (-15 -1919 (|#3| |#3|)))
+((-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 223)) (-3071 ((|#2| $) 102)) (-2735 (($ $) 256)) (-2602 (($ $) 250)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 47)) (-2712 (($ $) 254)) (-2579 (($ $) 248)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 146)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 144)) (-2372 (($ $ $) 229)) (-1836 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 160) (((-695 |#2|) (-695 $)) 154)) (-3529 (($ (-1182 |#2|)) 125) (((-3 $ "failed") (-413 (-1182 |#2|))) NIL)) (-2937 (((-3 $ "failed") $) 214)) (-4147 (((-3 (-413 (-570)) "failed") $) 204)) (-4373 (((-112) $) 199)) (-2220 (((-413 (-570)) $) 202)) (-3933 (((-928)) 96)) (-2382 (($ $ $) 231)) (-4177 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 269)) (-1315 (($) 245)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 193) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 198)) (-2771 ((|#2| $) 100)) (-2399 (((-1182 |#2|) $) 127)) (-1352 (($ (-1 |#2| |#2|) $) 108)) (-2635 (($ $) 247)) (-3514 (((-1182 |#2|) $) 126)) (-1826 (($ $) 207)) (-4246 (($) 103)) (-4086 (((-424 (-1182 $)) (-1182 $)) 95)) (-1627 (((-424 (-1182 $)) (-1182 $)) 64)) (-2406 (((-3 $ "failed") $ |#2|) 209) (((-3 $ "failed") $ $) 212)) (-4388 (($ $) 246)) (-2547 (((-777) $) 226)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 236)) (-3290 ((|#2| (-1277 $)) NIL) ((|#2|) 98)) (-3447 (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 119) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-3597 (((-1182 |#2|)) 120)) (-2723 (($ $) 255)) (-2590 (($ $) 249)) (-1533 (((-1277 |#2|) $ (-1277 $)) 136) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 116) (((-695 |#2|) (-1277 $)) NIL)) (-1417 (((-1277 |#2|) $) NIL) (($ (-1277 |#2|)) NIL) (((-1182 |#2|) $) NIL) (($ (-1182 |#2|)) NIL) (((-899 (-570)) $) 184) (((-899 (-384)) $) 188) (((-171 (-384)) $) 172) (((-171 (-227)) $) 167) (((-542) $) 180)) (-2488 (($ $) 104)) (-3735 (((-868) $) 143) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-413 (-570))) NIL) (($ $) NIL)) (-3641 (((-1182 |#2|) $) 32)) (-1609 (((-777)) 106)) (-3866 (((-112) $ $) 13)) (-4137 (($ $) 259)) (-2671 (($ $) 253)) (-4112 (($ $) 257)) (-2647 (($ $) 251)) (-2909 ((|#2| $) 242)) (-4123 (($ $) 258)) (-2660 (($ $) 252)) (-1367 (($ $) 162)) (-2872 (((-112) $ $) 110)) (-2965 (($ $) 112) (($ $ $) NIL)) (-2953 (($ $ $) 111)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-413 (-570))) 276) (($ $ $) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 118) (($ $ $) 147) (($ $ |#2|) NIL) (($ |#2| $) 114) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL)))
+(((-166 |#1| |#2|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3735 (|#1| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2921 ((-2 (|:| -2101 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2547 ((-777) |#1|)) (-15 -4378 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2382 (|#1| |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1417 ((-542) |#1|)) (-15 -1417 ((-171 (-227)) |#1|)) (-15 -1417 ((-171 (-384)) |#1|)) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4112 (|#1| |#1|)) (-15 -4137 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4388 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1315 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -1627 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -4086 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -4177 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2909 (|#2| |#1|)) (-15 -1367 (|#1| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2488 (|#1| |#1|)) (-15 -4246 (|#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3529 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3514 ((-1182 |#2|) |#1|)) (-15 -1417 (|#1| (-1182 |#2|))) (-15 -3529 (|#1| (-1182 |#2|))) (-15 -3597 ((-1182 |#2|))) (-15 -1836 ((-695 |#2|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -1417 ((-1182 |#2|) |#1|)) (-15 -3290 (|#2|)) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -2399 ((-1182 |#2|) |#1|)) (-15 -3641 ((-1182 |#2|) |#1|)) (-15 -3290 (|#2| (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2771 (|#2| |#1|)) (-15 -3071 (|#2| |#1|)) (-15 -3933 ((-928))) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-167 |#2|) (-174)) (T -166))
+((-1609 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-3933 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-928)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-3290 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-166 *3 *2)) (-4 *3 (-167 *2)))) (-3597 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 *4)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))))
+(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3735 (|#1| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2921 ((-2 (|:| -2101 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2547 ((-777) |#1|)) (-15 -4378 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2382 (|#1| |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1417 ((-542) |#1|)) (-15 -1417 ((-171 (-227)) |#1|)) (-15 -1417 ((-171 (-384)) |#1|)) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4112 (|#1| |#1|)) (-15 -4137 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4388 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1315 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -1627 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -4086 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -4177 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2909 (|#2| |#1|)) (-15 -1367 (|#1| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2488 (|#1| |#1|)) (-15 -4246 (|#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3529 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3514 ((-1182 |#2|) |#1|)) (-15 -1417 (|#1| (-1182 |#2|))) (-15 -3529 (|#1| (-1182 |#2|))) (-15 -3597 ((-1182 |#2|))) (-15 -1836 ((-695 |#2|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -1417 ((-1182 |#2|) |#1|)) (-15 -3290 (|#2|)) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -2399 ((-1182 |#2|) |#1|)) (-15 -3641 ((-1182 |#2|) |#1|)) (-15 -3290 (|#2| (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2771 (|#2| |#1|)) (-15 -3071 (|#2| |#1|)) (-15 -3933 ((-928))) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 102 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1345 (($ $) 103 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1372 (((-112) $) 105 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4084 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3071 ((|#1| $) 59)) (-2735 (($ $) 229 (|has| |#1| (-1212)))) (-2602 (($ $) 212 (|has| |#1| (-1212)))) (-2756 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-4119 (((-3 $ "failed") $ $) 20)) (-2810 (((-424 (-1182 $)) (-1182 $)) 243 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3252 (($ $) 122 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1378 (((-424 $) $) 123 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3754 (($ $) 242 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 246 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-2707 (((-112) $ $) 113 (|has| |#1| (-311)))) (-3403 (((-777)) 96 (|has| |#1| (-373)))) (-2712 (($ $) 228 (|has| |#1| (-1212)))) (-2579 (($ $) 213 (|has| |#1| (-1212)))) (-4087 (($ $) 227 (|has| |#1| (-1212)))) (-2622 (($ $) 214 (|has| |#1| (-1212)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3080 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-2125 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2372 (($ $ $) 117 (|has| |#1| (-311)))) (-2443 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-1836 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3529 (($ (-1182 |#1|)) 166) (((-3 $ "failed") (-413 (-1182 |#1|))) 163 (|has| |#1| (-368)))) (-2937 (((-3 $ "failed") $) 37)) (-3766 ((|#1| $) 254)) (-4147 (((-3 (-413 (-570)) "failed") $) 247 (|has| |#1| (-551)))) (-4373 (((-112) $) 249 (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) 248 (|has| |#1| (-551)))) (-3933 (((-928)) 61)) (-3336 (($) 99 (|has| |#1| (-373)))) (-2382 (($ $ $) 116 (|has| |#1| (-311)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 111 (|has| |#1| (-311)))) (-4181 (($) 157 (|has| |#1| (-354)))) (-2006 (((-112) $) 158 (|has| |#1| (-354)))) (-1901 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-4037 (((-112) $) 124 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-4177 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 250 (-12 (|has| |#1| (-1069)) (|has| |#1| (-1212))))) (-1315 (($) 239 (|has| |#1| (-1212)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 262 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 261 (|has| |#1| (-893 (-384))))) (-4331 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 241 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2771 ((|#1| $) 58)) (-3584 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-311)))) (-2399 (((-1182 |#1|) $) 51 (|has| |#1| (-368)))) (-1352 (($ (-1 |#1| |#1|) $) 263)) (-2332 (((-928) $) 98 (|has| |#1| (-373)))) (-2635 (($ $) 236 (|has| |#1| (-1212)))) (-3514 (((-1182 |#1|) $) 164)) (-1847 (($ (-650 $)) 109 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 108 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4268 (((-1168) $) 10)) (-1826 (($ $) 125 (|has| |#1| (-368)))) (-2315 (($) 151 (|has| |#1| (-354)) CONST)) (-2160 (($ (-928)) 97 (|has| |#1| (-373)))) (-4246 (($) 258)) (-3779 ((|#1| $) 255)) (-3479 (((-1129) $) 11)) (-2340 (($) 168)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 110 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1874 (($ (-650 $)) 107 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 106 (-2740 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 154 (|has| |#1| (-354)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 245 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-1627 (((-424 (-1182 $)) (-1182 $)) 244 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3739 (((-424 $) $) 121 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 118 (|has| |#1| (-311)))) (-2406 (((-3 $ "failed") $ |#1|) 253 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 101 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-311)))) (-4388 (($ $) 237 (|has| |#1| (-1212)))) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) 269 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 268 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 267 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 266 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 265 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 264 (|has| |#1| (-520 (-1186) |#1|)))) (-2547 (((-777) $) 114 (|has| |#1| (-311)))) (-1877 (($ $ |#1|) 270 (|has| |#1| (-290 |#1| |#1|)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 115 (|has| |#1| (-311)))) (-3290 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-3156 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3447 (($ $ (-1 |#1| |#1|) (-777)) 131) (($ $ (-1 |#1| |#1|)) 130) (($ $ (-650 (-1186)) (-650 (-777))) 138 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 139 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 140 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 141 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 143 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 145 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-2100 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-3597 (((-1182 |#1|)) 167)) (-4098 (($ $) 226 (|has| |#1| (-1212)))) (-2634 (($ $) 215 (|has| |#1| (-1212)))) (-3929 (($) 156 (|has| |#1| (-354)))) (-2746 (($ $) 225 (|has| |#1| (-1212)))) (-2612 (($ $) 216 (|has| |#1| (-1212)))) (-2723 (($ $) 224 (|has| |#1| (-1212)))) (-2590 (($ $) 217 (|has| |#1| (-1212)))) (-1533 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1417 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69) (((-1182 |#1|) $) 179) (($ (-1182 |#1|)) 165) (((-899 (-570)) $) 260 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 259 (|has| |#1| (-620 (-899 (-384))))) (((-171 (-384)) $) 211 (|has| |#1| (-1031))) (((-171 (-227)) $) 210 (|has| |#1| (-1031))) (((-542) $) 209 (|has| |#1| (-620 (-542))))) (-2488 (($ $) 257)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 153 (-2740 (-1765 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-354))))) (-3035 (($ |#1| |#1|) 256)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 95 (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) 100 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3127 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (-2740 (-1765 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-146))))) (-3641 (((-1182 |#1|) $) 52)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2003 (((-1277 $)) 74)) (-4137 (($ $) 235 (|has| |#1| (-1212)))) (-2671 (($ $) 223 (|has| |#1| (-1212)))) (-2795 (((-112) $ $) 104 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4112 (($ $) 234 (|has| |#1| (-1212)))) (-2647 (($ $) 222 (|has| |#1| (-1212)))) (-4157 (($ $) 233 (|has| |#1| (-1212)))) (-2691 (($ $) 221 (|has| |#1| (-1212)))) (-2909 ((|#1| $) 251 (|has| |#1| (-1212)))) (-1510 (($ $) 232 (|has| |#1| (-1212)))) (-2701 (($ $) 220 (|has| |#1| (-1212)))) (-4150 (($ $) 231 (|has| |#1| (-1212)))) (-2681 (($ $) 219 (|has| |#1| (-1212)))) (-4123 (($ $) 230 (|has| |#1| (-1212)))) (-2660 (($ $) 218 (|has| |#1| (-1212)))) (-1367 (($ $) 252 (|has| |#1| (-1069)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1 |#1| |#1|) (-777)) 133) (($ $ (-1 |#1| |#1|)) 132) (($ $ (-650 (-1186)) (-650 (-777))) 134 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 135 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 136 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 137 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 142 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 144 (-2740 (-1765 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1765 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 129 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-413 (-570))) 240 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212)))) (($ $ $) 238 (|has| |#1| (-1212))) (($ $ (-570)) 126 (|has| |#1| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-413 (-570)) $) 128 (|has| |#1| (-368))) (($ $ (-413 (-570))) 127 (|has| |#1| (-368)))))
(((-167 |#1|) (-141) (-174)) (T -167))
-((-2610 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2500 (*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3684 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3035 (*1 *1 *2 *2) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3779 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3765 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2407 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-1423 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-3091 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1211)))) (-2817 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1211)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-2085 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-3137 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2951 (*1 *2 *1) (|partial| -12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))))
-(-13 (-730 |t#1| (-1182 |t#1|)) (-417 |t#1|) (-233 |t#1|) (-343 |t#1|) (-406 |t#1|) (-891 |t#1|) (-382 |t#1|) (-174) (-10 -8 (-6 -3035) (-15 -2500 ($)) (-15 -3684 ($ $)) (-15 -3035 ($ |t#1| |t#1|)) (-15 -3779 (|t#1| $)) (-15 -3765 (|t#1| $)) (-15 -2610 (|t#1| $)) (IF (|has| |t#1| (-562)) (PROGN (-6 (-562)) (-15 -2407 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-311)) (-6 (-311)) |%noBranch|) (IF (|has| |t#1| (-6 -4447)) (-6 -4447) |%noBranch|) (IF (|has| |t#1| (-6 -4444)) (-6 -4444) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1031)) (PROGN (-6 (-620 (-171 (-227)))) (-6 (-620 (-171 (-384))))) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -1423 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1211)) (PROGN (-6 (-1211)) (-15 -3091 (|t#1| $)) (IF (|has| |t#1| (-1011)) (-6 (-1011)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -2817 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-916)) (IF (|has| |t#1| (-311)) (-6 (-916)) |%noBranch|) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-35) |has| |#1| (-1211)) ((-95) |has| |#1| (-1211)) ((-102) . T) ((-111 #0# #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-619 (-868)) . T) ((-174) . T) ((-620 (-171 (-227))) |has| |#1| (-1031)) ((-620 (-171 (-384))) |has| |#1| (-1031)) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-620 #1=(-1182 |#1|)) . T) ((-233 |#1|) . T) ((-235) -2740 (|has| |#1| (-354)) (|has| |#1| (-235))) ((-245) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-288) |has| |#1| (-1211)) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-311) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-368) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2740 (|has| |#1| (-373)) (|has| |#1| (-354))) ((-354) |has| |#1| (-354)) ((-375 |#1| #1#) . T) ((-415 |#1| #1#) . T) ((-343 |#1|) . T) ((-382 |#1|) . T) ((-406 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-499) |has| |#1| (-1211)) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-652 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-730 |#1| #1#) . T) ((-732) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-916) -12 (|has| |#1| (-311)) (|has| |#1| (-916))) ((-927) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-1011) -12 (|has| |#1| (-1011)) (|has| |#1| (-1211))) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-354)) ((-1211) |has| |#1| (-1211)) ((-1214) |has| |#1| (-1211)) ((-1226) . T) ((-1230) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))
-((-3738 (((-424 |#2|) |#2|) 69)))
-(((-168 |#1| |#2|) (-10 -7 (-15 -3738 ((-424 |#2|) |#2|))) (-311) (-1252 (-171 |#1|))) (T -168))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-168 *4 *3)) (-4 *3 (-1252 (-171 *4))))))
-(-10 -7 (-15 -3738 ((-424 |#2|) |#2|)))
-((-1637 (((-1144) (-1144) (-295)) 8)) (-4178 (((-650 (-697 (-284))) (-1168)) 81)) (-2400 (((-697 (-284)) (-1144)) 76)))
-(((-169) (-13 (-1226) (-10 -7 (-15 -1637 ((-1144) (-1144) (-295))) (-15 -2400 ((-697 (-284)) (-1144))) (-15 -4178 ((-650 (-697 (-284))) (-1168)))))) (T -169))
-((-1637 (*1 *2 *2 *3) (-12 (-5 *2 (-1144)) (-5 *3 (-295)) (-5 *1 (-169)))) (-2400 (*1 *2 *3) (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))) (-4178 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
-(-13 (-1226) (-10 -7 (-15 -1637 ((-1144) (-1144) (-295))) (-15 -2400 ((-697 (-284)) (-1144))) (-15 -4178 ((-650 (-697 (-284))) (-1168)))))
-((-1351 (((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)) 14)))
-(((-170 |#1| |#2|) (-10 -7 (-15 -1351 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)))) (-174) (-174)) (T -170))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-171 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-5 *2 (-171 *6)) (-5 *1 (-170 *5 *6)))))
-(-10 -7 (-15 -1351 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 34)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3171 (($ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-2720 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-2945 (((-695 |#1|) (-1276 $)) NIL) (((-695 |#1|)) NIL)) (-3071 ((|#1| $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-1211)))) (-2602 (($ $) NIL (|has| |#1| (-1211)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-2222 (($ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1790 (((-424 $) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3753 (($ $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1211))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-311)))) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2712 (($ $) NIL (|has| |#1| (-1211)))) (-2579 (($ $) NIL (|has| |#1| (-1211)))) (-4087 (($ $) NIL (|has| |#1| (-1211)))) (-2622 (($ $) NIL (|has| |#1| (-1211)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2049 (($ (-1276 |#1|) (-1276 $)) NIL) (($ (-1276 |#1|)) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2372 (($ $ $) NIL (|has| |#1| (-311)))) (-2710 (((-695 |#1|) $ (-1276 $)) NIL) (((-695 |#1|) $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3529 (($ (-1182 |#1|)) NIL) (((-3 $ "failed") (-413 (-1182 |#1|))) NIL (|has| |#1| (-368)))) (-3413 (((-3 $ "failed") $) NIL)) (-3765 ((|#1| $) 13)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-2085 (((-112) $) NIL (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3934 (((-928)) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2381 (($ $ $) NIL (|has| |#1| (-311)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-311)))) (-2493 (($) NIL (|has| |#1| (-354)))) (-2036 (((-112) $) NIL (|has| |#1| (-354)))) (-2774 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-1552 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-2817 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1069)) (|has| |#1| (-1211))))) (-1314 (($) NIL (|has| |#1| (-1211)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-3157 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-2081 (((-112) $) 36)) (-2598 (($ $ (-570)) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1211))))) (-2610 ((|#1| $) 47)) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-1638 (((-1182 |#1|) $) NIL (|has| |#1| (-368)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-2635 (($ $) NIL (|has| |#1| (-1211)))) (-3516 (((-1182 |#1|) $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-2314 (($) NIL (|has| |#1| (-354)) CONST)) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-2500 (($) NIL)) (-3779 ((|#1| $) 15)) (-3479 (((-1129) $) NIL)) (-2339 (($) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-311)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| |#1| (-354)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3738 (((-424 $) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-311)))) (-2407 (((-3 $ "failed") $ |#1|) 45 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 48 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-4387 (($ $) NIL (|has| |#1| (-1211)))) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-2272 (((-777) $) NIL (|has| |#1| (-311)))) (-1876 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-311)))) (-2998 ((|#1| (-1276 $)) NIL) ((|#1|) NIL)) (-2845 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3447 (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-4399 (((-695 |#1|) (-1276 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2886 (((-1182 |#1|)) NIL)) (-4099 (($ $) NIL (|has| |#1| (-1211)))) (-2634 (($ $) NIL (|has| |#1| (-1211)))) (-2163 (($) NIL (|has| |#1| (-354)))) (-2746 (($ $) NIL (|has| |#1| (-1211)))) (-2611 (($ $) NIL (|has| |#1| (-1211)))) (-2723 (($ $) NIL (|has| |#1| (-1211)))) (-2590 (($ $) NIL (|has| |#1| (-1211)))) (-1807 (((-1276 |#1|) $ (-1276 $)) NIL) (((-695 |#1|) (-1276 $) (-1276 $)) NIL) (((-1276 |#1|) $) NIL) (((-695 |#1|) (-1276 $)) NIL)) (-1416 (((-1276 |#1|) $) NIL) (($ (-1276 |#1|)) NIL) (((-1182 |#1|) $) NIL) (($ (-1182 |#1|)) NIL) (((-899 (-570)) $) NIL (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#1| (-620 (-899 (-384))))) (((-171 (-384)) $) NIL (|has| |#1| (-1031))) (((-171 (-227)) $) NIL (|has| |#1| (-1031))) (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3684 (($ $) 46)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-354))))) (-3035 (($ |#1| |#1|) 38)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 37) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-1918 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3674 (((-1182 |#1|) $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL)) (-4138 (($ $) NIL (|has| |#1| (-1211)))) (-2671 (($ $) NIL (|has| |#1| (-1211)))) (-1681 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-4108 (($ $) NIL (|has| |#1| (-1211)))) (-2647 (($ $) NIL (|has| |#1| (-1211)))) (-4161 (($ $) NIL (|has| |#1| (-1211)))) (-2691 (($ $) NIL (|has| |#1| (-1211)))) (-3091 ((|#1| $) NIL (|has| |#1| (-1211)))) (-1509 (($ $) NIL (|has| |#1| (-1211)))) (-2701 (($ $) NIL (|has| |#1| (-1211)))) (-4150 (($ $) NIL (|has| |#1| (-1211)))) (-2681 (($ $) NIL (|has| |#1| (-1211)))) (-4123 (($ $) NIL (|has| |#1| (-1211)))) (-2660 (($ $) NIL (|has| |#1| (-1211)))) (-1423 (($ $) NIL (|has| |#1| (-1069)))) (-1812 (($) 28 T CONST)) (-1823 (($) 30 T CONST)) (-2892 (((-1168) $) 23 (|has| |#1| (-834))) (((-1168) $ (-112)) 25 (|has| |#1| (-834))) (((-1281) (-828) $) 26 (|has| |#1| (-834))) (((-1281) (-828) $ (-112)) 27 (|has| |#1| (-834)))) (-2791 (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 40)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-413 (-570))) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1211)))) (($ $ $) NIL (|has| |#1| (-1211))) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 43) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-368))) (($ $ (-413 (-570))) NIL (|has| |#1| (-368)))))
+((-2771 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-4246 (*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2488 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3035 (*1 *1 *2 *2) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3779 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3766 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2406 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-1367 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-2909 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1212)))) (-4177 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1212)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-4373 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-2220 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-4147 (*1 *2 *1) (|partial| -12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))))
+(-13 (-730 |t#1| (-1182 |t#1|)) (-417 |t#1|) (-233 |t#1|) (-343 |t#1|) (-406 |t#1|) (-891 |t#1|) (-382 |t#1|) (-174) (-10 -8 (-6 -3035) (-15 -4246 ($)) (-15 -2488 ($ $)) (-15 -3035 ($ |t#1| |t#1|)) (-15 -3779 (|t#1| $)) (-15 -3766 (|t#1| $)) (-15 -2771 (|t#1| $)) (IF (|has| |t#1| (-562)) (PROGN (-6 (-562)) (-15 -2406 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-311)) (-6 (-311)) |%noBranch|) (IF (|has| |t#1| (-6 -4448)) (-6 -4448) |%noBranch|) (IF (|has| |t#1| (-6 -4445)) (-6 -4445) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1031)) (PROGN (-6 (-620 (-171 (-227)))) (-6 (-620 (-171 (-384))))) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -1367 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1212)) (PROGN (-6 (-1212)) (-15 -2909 (|t#1| $)) (IF (|has| |t#1| (-1011)) (-6 (-1011)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -4177 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-916)) (IF (|has| |t#1| (-311)) (-6 (-916)) |%noBranch|) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-35) |has| |#1| (-1212)) ((-95) |has| |#1| (-1212)) ((-102) . T) ((-111 #0# #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-619 (-868)) . T) ((-174) . T) ((-620 (-171 (-227))) |has| |#1| (-1031)) ((-620 (-171 (-384))) |has| |#1| (-1031)) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-620 #1=(-1182 |#1|)) . T) ((-233 |#1|) . T) ((-235) -2740 (|has| |#1| (-354)) (|has| |#1| (-235))) ((-245) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-288) |has| |#1| (-1212)) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-311) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-368) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2740 (|has| |#1| (-373)) (|has| |#1| (-354))) ((-354) |has| |#1| (-354)) ((-375 |#1| #1#) . T) ((-415 |#1| #1#) . T) ((-343 |#1|) . T) ((-382 |#1|) . T) ((-406 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-499) |has| |#1| (-1212)) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-652 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-730 |#1| #1#) . T) ((-732) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-916) -12 (|has| |#1| (-311)) (|has| |#1| (-916))) ((-927) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-1011) -12 (|has| |#1| (-1011)) (|has| |#1| (-1212))) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-354)) ((-1212) |has| |#1| (-1212)) ((-1215) |has| |#1| (-1212)) ((-1227) . T) ((-1231) -2740 (|has| |#1| (-354)) (|has| |#1| (-368)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))
+((-3739 (((-424 |#2|) |#2|) 69)))
+(((-168 |#1| |#2|) (-10 -7 (-15 -3739 ((-424 |#2|) |#2|))) (-311) (-1253 (-171 |#1|))) (T -168))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-168 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(-10 -7 (-15 -3739 ((-424 |#2|) |#2|)))
+((-1638 (((-1144) (-1144) (-295)) 8)) (-1843 (((-650 (-697 (-284))) (-1168)) 81)) (-1457 (((-697 (-284)) (-1144)) 76)))
+(((-169) (-13 (-1227) (-10 -7 (-15 -1638 ((-1144) (-1144) (-295))) (-15 -1457 ((-697 (-284)) (-1144))) (-15 -1843 ((-650 (-697 (-284))) (-1168)))))) (T -169))
+((-1638 (*1 *2 *2 *3) (-12 (-5 *2 (-1144)) (-5 *3 (-295)) (-5 *1 (-169)))) (-1457 (*1 *2 *3) (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))) (-1843 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
+(-13 (-1227) (-10 -7 (-15 -1638 ((-1144) (-1144) (-295))) (-15 -1457 ((-697 (-284)) (-1144))) (-15 -1843 ((-650 (-697 (-284))) (-1168)))))
+((-1352 (((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)) 14)))
+(((-170 |#1| |#2|) (-10 -7 (-15 -1352 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)))) (-174) (-174)) (T -170))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-171 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-5 *2 (-171 *6)) (-5 *1 (-170 *5 *6)))))
+(-10 -7 (-15 -1352 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 34)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-1345 (($ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-1372 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-4084 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-3071 ((|#1| $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-1212)))) (-2602 (($ $) NIL (|has| |#1| (-1212)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3252 (($ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1378 (((-424 $) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3754 (($ $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-311)))) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2712 (($ $) NIL (|has| |#1| (-1212)))) (-2579 (($ $) NIL (|has| |#1| (-1212)))) (-4087 (($ $) NIL (|has| |#1| (-1212)))) (-2622 (($ $) NIL (|has| |#1| (-1212)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2125 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2372 (($ $ $) NIL (|has| |#1| (-311)))) (-2443 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3529 (($ (-1182 |#1|)) NIL) (((-3 $ "failed") (-413 (-1182 |#1|))) NIL (|has| |#1| (-368)))) (-2937 (((-3 $ "failed") $) NIL)) (-3766 ((|#1| $) 13)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-4373 (((-112) $) NIL (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3933 (((-928)) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2382 (($ $ $) NIL (|has| |#1| (-311)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-311)))) (-4181 (($) NIL (|has| |#1| (-354)))) (-2006 (((-112) $) NIL (|has| |#1| (-354)))) (-1901 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-4037 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-4177 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1069)) (|has| |#1| (-1212))))) (-1315 (($) NIL (|has| |#1| (-1212)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-4331 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-4340 (((-112) $) 36)) (-2665 (($ $ (-570)) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2771 ((|#1| $) 47)) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-2399 (((-1182 |#1|) $) NIL (|has| |#1| (-368)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-2635 (($ $) NIL (|has| |#1| (-1212)))) (-3514 (((-1182 |#1|) $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-2315 (($) NIL (|has| |#1| (-354)) CONST)) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-4246 (($) NIL)) (-3779 ((|#1| $) 15)) (-3479 (((-1129) $) NIL)) (-2340 (($) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-311)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| |#1| (-354)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3739 (((-424 $) $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-311)))) (-2406 (((-3 $ "failed") $ |#1|) 45 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 48 (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-4388 (($ $) NIL (|has| |#1| (-1212)))) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-2547 (((-777) $) NIL (|has| |#1| (-311)))) (-1877 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-311)))) (-3290 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-3156 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3447 (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-2100 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-3597 (((-1182 |#1|)) NIL)) (-4098 (($ $) NIL (|has| |#1| (-1212)))) (-2634 (($ $) NIL (|has| |#1| (-1212)))) (-3929 (($) NIL (|has| |#1| (-354)))) (-2746 (($ $) NIL (|has| |#1| (-1212)))) (-2612 (($ $) NIL (|has| |#1| (-1212)))) (-2723 (($ $) NIL (|has| |#1| (-1212)))) (-2590 (($ $) NIL (|has| |#1| (-1212)))) (-1533 (((-1277 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-1417 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL) (((-1182 |#1|) $) NIL) (($ (-1182 |#1|)) NIL) (((-899 (-570)) $) NIL (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#1| (-620 (-899 (-384))))) (((-171 (-384)) $) NIL (|has| |#1| (-1031))) (((-171 (-227)) $) NIL (|has| |#1| (-1031))) (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-2488 (($ $) 46)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-354))))) (-3035 (($ |#1| |#1|) 38)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 37) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3127 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3641 (((-1182 |#1|) $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL)) (-4137 (($ $) NIL (|has| |#1| (-1212)))) (-2671 (($ $) NIL (|has| |#1| (-1212)))) (-2795 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-4112 (($ $) NIL (|has| |#1| (-1212)))) (-2647 (($ $) NIL (|has| |#1| (-1212)))) (-4157 (($ $) NIL (|has| |#1| (-1212)))) (-2691 (($ $) NIL (|has| |#1| (-1212)))) (-2909 ((|#1| $) NIL (|has| |#1| (-1212)))) (-1510 (($ $) NIL (|has| |#1| (-1212)))) (-2701 (($ $) NIL (|has| |#1| (-1212)))) (-4150 (($ $) NIL (|has| |#1| (-1212)))) (-2681 (($ $) NIL (|has| |#1| (-1212)))) (-4123 (($ $) NIL (|has| |#1| (-1212)))) (-2660 (($ $) NIL (|has| |#1| (-1212)))) (-1367 (($ $) NIL (|has| |#1| (-1069)))) (-1814 (($) 28 T CONST)) (-1824 (($) 30 T CONST)) (-3637 (((-1168) $) 23 (|has| |#1| (-834))) (((-1168) $ (-112)) 25 (|has| |#1| (-834))) (((-1282) (-828) $) 26 (|has| |#1| (-834))) (((-1282) (-828) $ (-112)) 27 (|has| |#1| (-834)))) (-2791 (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 40)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-413 (-570))) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212)))) (($ $ $) NIL (|has| |#1| (-1212))) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 43) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-368))) (($ $ (-413 (-570))) NIL (|has| |#1| (-368)))))
(((-171 |#1|) (-13 (-167 |#1|) (-10 -7 (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|))) (-174)) (T -171))
NIL
(-13 (-167 |#1|) (-10 -7 (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|)))
-((-1416 (((-899 |#1|) |#3|) 22)))
-(((-172 |#1| |#2| |#3|) (-10 -7 (-15 -1416 ((-899 |#1|) |#3|))) (-1109) (-13 (-620 (-899 |#1|)) (-174)) (-167 |#2|)) (T -172))
-((-1416 (*1 *2 *3) (-12 (-4 *5 (-13 (-620 *2) (-174))) (-5 *2 (-899 *4)) (-5 *1 (-172 *4 *5 *3)) (-4 *4 (-1109)) (-4 *3 (-167 *5)))))
-(-10 -7 (-15 -1416 ((-899 |#1|) |#3|)))
-((-2416 (((-112) $ $) NIL)) (-4045 (((-112) $) 9)) (-1945 (((-112) $ (-112)) 11)) (-4286 (($) 13)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3915 (($ $) 14)) (-3735 (((-868) $) 18)) (-2488 (((-112) $) 8)) (-4104 (((-112) $ (-112)) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-173) (-13 (-1109) (-10 -8 (-15 -4286 ($)) (-15 -2488 ((-112) $)) (-15 -4045 ((-112) $)) (-15 -4104 ((-112) $ (-112))) (-15 -1945 ((-112) $ (-112))) (-15 -3915 ($ $))))) (T -173))
-((-4286 (*1 *1) (-5 *1 (-173))) (-2488 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-4045 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-4104 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-1945 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-3915 (*1 *1 *1) (-5 *1 (-173))))
-(-13 (-1109) (-10 -8 (-15 -4286 ($)) (-15 -2488 ((-112) $)) (-15 -4045 ((-112) $)) (-15 -4104 ((-112) $ (-112))) (-15 -1945 ((-112) $ (-112))) (-15 -3915 ($ $))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-1417 (((-899 |#1|) |#3|) 22)))
+(((-172 |#1| |#2| |#3|) (-10 -7 (-15 -1417 ((-899 |#1|) |#3|))) (-1109) (-13 (-620 (-899 |#1|)) (-174)) (-167 |#2|)) (T -172))
+((-1417 (*1 *2 *3) (-12 (-4 *5 (-13 (-620 *2) (-174))) (-5 *2 (-899 *4)) (-5 *1 (-172 *4 *5 *3)) (-4 *4 (-1109)) (-4 *3 (-167 *5)))))
+(-10 -7 (-15 -1417 ((-899 |#1|) |#3|)))
+((-2417 (((-112) $ $) NIL)) (-2908 (((-112) $) 9)) (-3444 (((-112) $ (-112)) 11)) (-4287 (($) 13)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3916 (($ $) 14)) (-3735 (((-868) $) 18)) (-4124 (((-112) $) 8)) (-4104 (((-112) $ (-112)) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-173) (-13 (-1109) (-10 -8 (-15 -4287 ($)) (-15 -4124 ((-112) $)) (-15 -2908 ((-112) $)) (-15 -4104 ((-112) $ (-112))) (-15 -3444 ((-112) $ (-112))) (-15 -3916 ($ $))))) (T -173))
+((-4287 (*1 *1) (-5 *1 (-173))) (-4124 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-2908 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-4104 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-3444 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-3916 (*1 *1 *1) (-5 *1 (-173))))
+(-13 (-1109) (-10 -8 (-15 -4287 ($)) (-15 -4124 ((-112) $)) (-15 -2908 ((-112) $)) (-15 -4104 ((-112) $ (-112))) (-15 -3444 ((-112) $ (-112))) (-15 -3916 ($ $))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-174) (-141)) (T -174))
NIL
-(-13 (-1058) (-111 $ $) (-10 -7 (-6 (-4450 "*"))))
+(-13 (-1058) (-111 $ $) (-10 -7 (-6 (-4451 "*"))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1866 (($ $) 6)))
+((-3924 (($ $) 6)))
(((-175) (-141)) (T -175))
-((-1866 (*1 *1 *1) (-4 *1 (-175))))
-(-13 (-10 -8 (-15 -1866 ($ $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 ((|#1| $) 81)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-1454 (($ $) 21)) (-2747 (($ |#1| (-1166 |#1|)) 50)) (-3413 (((-3 $ "failed") $) 123)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2402 (((-1166 |#1|) $) 88)) (-2038 (((-1166 |#1|) $) 85)) (-1826 (((-1166 |#1|) $) 86)) (-2081 (((-112) $) NIL)) (-1355 (((-1166 |#1|) $) 94)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1845 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-1558 (($ $ (-570)) 97)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2801 (((-1166 |#1|) $) 95)) (-3170 (((-1166 (-413 |#1|)) $) 14)) (-3484 (($ (-413 |#1|)) 17) (($ |#1| (-1166 |#1|) (-1166 |#1|)) 40)) (-3049 (($ $) 99)) (-3735 (((-868) $) 140) (($ (-570)) 53) (($ |#1|) 54) (($ (-413 |#1|)) 38) (($ (-413 (-570))) NIL) (($ $) NIL)) (-2744 (((-777)) 69 T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-2144 (((-1166 (-413 |#1|)) $) 20)) (-1812 (($) 27 T CONST)) (-1823 (($) 30 T CONST)) (-2872 (((-112) $ $) 37)) (-2975 (($ $ $) 121)) (-2965 (($ $) 112) (($ $ $) 109)) (-2954 (($ $ $) 107)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 119) (($ $ $) 114) (($ $ |#1|) NIL) (($ |#1| $) 116) (($ (-413 |#1|) $) 117) (($ $ (-413 |#1|)) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL)))
-(((-176 |#1|) (-13 (-38 |#1|) (-38 (-413 |#1|)) (-368) (-10 -8 (-15 -3484 ($ (-413 |#1|))) (-15 -3484 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -2747 ($ |#1| (-1166 |#1|))) (-15 -2038 ((-1166 |#1|) $)) (-15 -1826 ((-1166 |#1|) $)) (-15 -2402 ((-1166 |#1|) $)) (-15 -3303 (|#1| $)) (-15 -1454 ($ $)) (-15 -2144 ((-1166 (-413 |#1|)) $)) (-15 -3170 ((-1166 (-413 |#1|)) $)) (-15 -1355 ((-1166 |#1|) $)) (-15 -2801 ((-1166 |#1|) $)) (-15 -1558 ($ $ (-570))) (-15 -3049 ($ $)))) (-311)) (T -176))
-((-3484 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-311)) (-5 *1 (-176 *3)))) (-3484 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-2747 (*1 *1 *2 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-2038 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1826 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2402 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3303 (*1 *2 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-1454 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-2144 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3170 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2801 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1558 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3049 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
-(-13 (-38 |#1|) (-38 (-413 |#1|)) (-368) (-10 -8 (-15 -3484 ($ (-413 |#1|))) (-15 -3484 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -2747 ($ |#1| (-1166 |#1|))) (-15 -2038 ((-1166 |#1|) $)) (-15 -1826 ((-1166 |#1|) $)) (-15 -2402 ((-1166 |#1|) $)) (-15 -3303 (|#1| $)) (-15 -1454 ($ $)) (-15 -2144 ((-1166 (-413 |#1|)) $)) (-15 -3170 ((-1166 (-413 |#1|)) $)) (-15 -1355 ((-1166 |#1|) $)) (-15 -2801 ((-1166 |#1|) $)) (-15 -1558 ($ $ (-570))) (-15 -3049 ($ $))))
-((-2773 (($ (-109) $) 15)) (-3831 (((-697 (-109)) (-512) $) 14)) (-3735 (((-868) $) 18)) (-2880 (((-650 (-109)) $) 8)))
-(((-177) (-13 (-619 (-868)) (-10 -8 (-15 -2880 ((-650 (-109)) $)) (-15 -2773 ($ (-109) $)) (-15 -3831 ((-697 (-109)) (-512) $))))) (T -177))
-((-2880 (*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))) (-2773 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))) (-3831 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-177)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2880 ((-650 (-109)) $)) (-15 -2773 ($ (-109) $)) (-15 -3831 ((-697 (-109)) (-512) $))))
-((-4291 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 38)) (-1312 (((-950 |#1|) (-950 |#1|)) 22)) (-3404 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 34)) (-4042 (((-950 |#1|) (-950 |#1|)) 20)) (-3238 (((-950 |#1|) (-950 |#1|)) 28)) (-3750 (((-950 |#1|) (-950 |#1|)) 27)) (-4400 (((-950 |#1|) (-950 |#1|)) 26)) (-1616 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 35)) (-2971 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 33)) (-4418 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 32)) (-2489 (((-950 |#1|) (-950 |#1|)) 21)) (-1987 (((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|) 41)) (-1542 (((-950 |#1|) (-950 |#1|)) 8)) (-2594 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 37)) (-4215 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 36)))
-(((-178 |#1|) (-10 -7 (-15 -1542 ((-950 |#1|) (-950 |#1|))) (-15 -4042 ((-950 |#1|) (-950 |#1|))) (-15 -2489 ((-950 |#1|) (-950 |#1|))) (-15 -1312 ((-950 |#1|) (-950 |#1|))) (-15 -4400 ((-950 |#1|) (-950 |#1|))) (-15 -3750 ((-950 |#1|) (-950 |#1|))) (-15 -3238 ((-950 |#1|) (-950 |#1|))) (-15 -4418 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2971 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3404 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1616 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4215 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2594 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4291 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1987 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|))) (-13 (-368) (-1211) (-1011))) (T -178))
-((-1987 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-4291 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-2594 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-4215 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-1616 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-3404 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-2971 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-4418 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))))) (-3238 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))) (-3750 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))) (-4400 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))) (-1312 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))) (-2489 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))) (-4042 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))) (-1542 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011))) (-5 *1 (-178 *3)))))
-(-10 -7 (-15 -1542 ((-950 |#1|) (-950 |#1|))) (-15 -4042 ((-950 |#1|) (-950 |#1|))) (-15 -2489 ((-950 |#1|) (-950 |#1|))) (-15 -1312 ((-950 |#1|) (-950 |#1|))) (-15 -4400 ((-950 |#1|) (-950 |#1|))) (-15 -3750 ((-950 |#1|) (-950 |#1|))) (-15 -3238 ((-950 |#1|) (-950 |#1|))) (-15 -4418 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2971 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3404 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1616 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4215 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2594 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4291 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1987 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|)))
-((-3674 ((|#2| |#3|) 28)))
-(((-179 |#1| |#2| |#3|) (-10 -7 (-15 -3674 (|#2| |#3|))) (-174) (-1252 |#1|) (-730 |#1| |#2|)) (T -179))
-((-3674 (*1 *2 *3) (-12 (-4 *4 (-174)) (-4 *2 (-1252 *4)) (-5 *1 (-179 *4 *2 *3)) (-4 *3 (-730 *4 *2)))))
-(-10 -7 (-15 -3674 (|#2| |#3|)))
-((-2822 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 44 (|has| (-959 |#2|) (-893 |#1|)))))
-(((-180 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-959 |#2|) (-893 |#1|)) (-15 -2822 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|)) (-1109) (-13 (-893 |#1|) (-174)) (-167 |#2|)) (T -180))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *3 (-167 *6)) (-4 (-959 *6) (-893 *5)) (-4 *6 (-13 (-893 *5) (-174))) (-5 *1 (-180 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-959 |#2|) (-893 |#1|)) (-15 -2822 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|))
-((-2336 (((-650 |#1|) (-650 |#1|) |#1|) 41)) (-3330 (((-650 |#1|) |#1| (-650 |#1|)) 20)) (-3740 (((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|)) 36) ((|#1| (-650 |#1|) (-650 |#1|)) 32)))
-(((-181 |#1|) (-10 -7 (-15 -3330 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -3740 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -3740 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -2336 ((-650 |#1|) (-650 |#1|) |#1|))) (-311)) (T -181))
-((-2336 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))) (-3740 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-650 *4))) (-5 *2 (-650 *4)) (-4 *4 (-311)) (-5 *1 (-181 *4)))) (-3740 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-181 *2)) (-4 *2 (-311)))) (-3330 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
-(-10 -7 (-15 -3330 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -3740 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -3740 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -2336 ((-650 |#1|) (-650 |#1|) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-3814 (((-1225) $) 13)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1425 (((-1144) $) 10)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-182) (-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -3814 ((-1225) $))))) (T -182))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-182)))) (-3814 (*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-182)))))
-(-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -3814 ((-1225) $))))
-((-3860 (((-2 (|:| |start| |#2|) (|:| -1679 (-424 |#2|))) |#2|) 66)) (-1805 ((|#1| |#1|) 58)) (-1649 (((-171 |#1|) |#2|) 93)) (-2938 ((|#1| |#2|) 141) ((|#1| |#2| |#1|) 90)) (-2756 ((|#2| |#2|) 91)) (-3232 (((-424 |#2|) |#2| |#1|) 121) (((-424 |#2|) |#2| |#1| (-112)) 88)) (-2610 ((|#1| |#2|) 120)) (-1389 ((|#2| |#2|) 135)) (-3738 (((-424 |#2|) |#2|) 158) (((-424 |#2|) |#2| |#1|) 33) (((-424 |#2|) |#2| |#1| (-112)) 157)) (-3364 (((-650 (-2 (|:| -1679 (-650 |#2|)) (|:| -3578 |#1|))) |#2| |#2|) 156) (((-650 (-2 (|:| -1679 (-650 |#2|)) (|:| -3578 |#1|))) |#2| |#2| (-112)) 81)) (-3398 (((-650 (-171 |#1|)) |#2| |#1|) 42) (((-650 (-171 |#1|)) |#2|) 43)))
-(((-183 |#1| |#2|) (-10 -7 (-15 -3398 ((-650 (-171 |#1|)) |#2|)) (-15 -3398 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -3364 ((-650 (-2 (|:| -1679 (-650 |#2|)) (|:| -3578 |#1|))) |#2| |#2| (-112))) (-15 -3364 ((-650 (-2 (|:| -1679 (-650 |#2|)) (|:| -3578 |#1|))) |#2| |#2|)) (-15 -3738 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3738 ((-424 |#2|) |#2| |#1|)) (-15 -3738 ((-424 |#2|) |#2|)) (-15 -1389 (|#2| |#2|)) (-15 -2610 (|#1| |#2|)) (-15 -3232 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3232 ((-424 |#2|) |#2| |#1|)) (-15 -2756 (|#2| |#2|)) (-15 -2938 (|#1| |#2| |#1|)) (-15 -2938 (|#1| |#2|)) (-15 -1649 ((-171 |#1|) |#2|)) (-15 -1805 (|#1| |#1|)) (-15 -3860 ((-2 (|:| |start| |#2|) (|:| -1679 (-424 |#2|))) |#2|))) (-13 (-368) (-854)) (-1252 (-171 |#1|))) (T -183))
-((-3860 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-2 (|:| |start| *3) (|:| -1679 (-424 *3)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-1805 (*1 *2 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1252 (-171 *2))))) (-1649 (*1 *2 *3) (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3)) (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1252 *2)))) (-2938 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1252 (-171 *2))))) (-2938 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1252 (-171 *2))))) (-2756 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1252 (-171 *3))))) (-3232 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-3232 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-2610 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1252 (-171 *2))))) (-1389 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1252 (-171 *3))))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-3738 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-3738 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-3364 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -1679 (-650 *3)) (|:| -3578 *4)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-3364 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -1679 (-650 *3)) (|:| -3578 *5)))) (-5 *1 (-183 *5 *3)) (-4 *3 (-1252 (-171 *5))))) (-3398 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))) (-3398 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))))
-(-10 -7 (-15 -3398 ((-650 (-171 |#1|)) |#2|)) (-15 -3398 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -3364 ((-650 (-2 (|:| -1679 (-650 |#2|)) (|:| -3578 |#1|))) |#2| |#2| (-112))) (-15 -3364 ((-650 (-2 (|:| -1679 (-650 |#2|)) (|:| -3578 |#1|))) |#2| |#2|)) (-15 -3738 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3738 ((-424 |#2|) |#2| |#1|)) (-15 -3738 ((-424 |#2|) |#2|)) (-15 -1389 (|#2| |#2|)) (-15 -2610 (|#1| |#2|)) (-15 -3232 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3232 ((-424 |#2|) |#2| |#1|)) (-15 -2756 (|#2| |#2|)) (-15 -2938 (|#1| |#2| |#1|)) (-15 -2938 (|#1| |#2|)) (-15 -1649 ((-171 |#1|) |#2|)) (-15 -1805 (|#1| |#1|)) (-15 -3860 ((-2 (|:| |start| |#2|) (|:| -1679 (-424 |#2|))) |#2|)))
-((-2819 (((-3 |#2| "failed") |#2|) 20)) (-3334 (((-777) |#2|) 23)) (-2846 ((|#2| |#2| |#2|) 25)))
-(((-184 |#1| |#2|) (-10 -7 (-15 -2819 ((-3 |#2| "failed") |#2|)) (-15 -3334 ((-777) |#2|)) (-15 -2846 (|#2| |#2| |#2|))) (-1226) (-680 |#1|)) (T -184))
-((-2846 (*1 *2 *2 *2) (-12 (-4 *3 (-1226)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))) (-3334 (*1 *2 *3) (-12 (-4 *4 (-1226)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3)) (-4 *3 (-680 *4)))) (-2819 (*1 *2 *2) (|partial| -12 (-4 *3 (-1226)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
-(-10 -7 (-15 -2819 ((-3 |#2| "failed") |#2|)) (-15 -3334 ((-777) |#2|)) (-15 -2846 (|#2| |#2| |#2|)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1579 ((|#1| $) 7)) (-3735 (((-868) $) 14)) (-1859 (((-112) $ $) NIL)) (-3890 (((-650 (-1191)) $) 10)) (-2872 (((-112) $ $) 12)))
-(((-185 |#1|) (-13 (-1109) (-10 -8 (-15 -1579 (|#1| $)) (-15 -3890 ((-650 (-1191)) $)))) (-187)) (T -185))
-((-1579 (*1 *2 *1) (-12 (-5 *1 (-185 *2)) (-4 *2 (-187)))) (-3890 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
-(-13 (-1109) (-10 -8 (-15 -1579 (|#1| $)) (-15 -3890 ((-650 (-1191)) $))))
-((-1774 (((-650 (-871)) $) 16)) (-3843 (((-188) $) 8)) (-4324 (((-650 (-112)) $) 13)) (-1893 (((-55) $) 10)))
-(((-186 |#1|) (-10 -8 (-15 -1774 ((-650 (-871)) |#1|)) (-15 -4324 ((-650 (-112)) |#1|)) (-15 -3843 ((-188) |#1|)) (-15 -1893 ((-55) |#1|))) (-187)) (T -186))
-NIL
-(-10 -8 (-15 -1774 ((-650 (-871)) |#1|)) (-15 -4324 ((-650 (-112)) |#1|)) (-15 -3843 ((-188) |#1|)) (-15 -1893 ((-55) |#1|)))
-((-2416 (((-112) $ $) 7)) (-1774 (((-650 (-871)) $) 19)) (-3503 (((-512) $) 16)) (-1903 (((-1168) $) 10)) (-3843 (((-188) $) 21)) (-1566 (((-112) $ (-512)) 14)) (-3479 (((-1129) $) 11)) (-4324 (((-650 (-112)) $) 20)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1893 (((-55) $) 15)) (-2872 (((-112) $ $) 6)))
+((-3924 (*1 *1 *1) (-4 *1 (-175))))
+(-13 (-10 -8 (-15 -3924 ($ $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 ((|#1| $) 81)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-4297 (($ $) 21)) (-1630 (($ |#1| (-1166 |#1|)) 50)) (-2937 (((-3 $ "failed") $) 123)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-1478 (((-1166 |#1|) $) 88)) (-2025 (((-1166 |#1|) $) 85)) (-1698 (((-1166 |#1|) $) 86)) (-4340 (((-112) $) NIL)) (-2095 (((-1166 |#1|) $) 94)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1847 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-4102 (($ $ (-570)) 97)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3993 (((-1166 |#1|) $) 95)) (-1332 (((-1166 (-413 |#1|)) $) 14)) (-2375 (($ (-413 |#1|)) 17) (($ |#1| (-1166 |#1|) (-1166 |#1|)) 40)) (-2540 (($ $) 99)) (-3735 (((-868) $) 140) (($ (-570)) 53) (($ |#1|) 54) (($ (-413 |#1|)) 38) (($ (-413 (-570))) NIL) (($ $) NIL)) (-1609 (((-777)) 69 T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3726 (((-1166 (-413 |#1|)) $) 20)) (-1814 (($) 27 T CONST)) (-1824 (($) 30 T CONST)) (-2872 (((-112) $ $) 37)) (-2975 (($ $ $) 121)) (-2965 (($ $) 112) (($ $ $) 109)) (-2953 (($ $ $) 107)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 119) (($ $ $) 114) (($ $ |#1|) NIL) (($ |#1| $) 116) (($ (-413 |#1|) $) 117) (($ $ (-413 |#1|)) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL)))
+(((-176 |#1|) (-13 (-38 |#1|) (-38 (-413 |#1|)) (-368) (-10 -8 (-15 -2375 ($ (-413 |#1|))) (-15 -2375 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -1630 ($ |#1| (-1166 |#1|))) (-15 -2025 ((-1166 |#1|) $)) (-15 -1698 ((-1166 |#1|) $)) (-15 -1478 ((-1166 |#1|) $)) (-15 -3113 (|#1| $)) (-15 -4297 ($ $)) (-15 -3726 ((-1166 (-413 |#1|)) $)) (-15 -1332 ((-1166 (-413 |#1|)) $)) (-15 -2095 ((-1166 |#1|) $)) (-15 -3993 ((-1166 |#1|) $)) (-15 -4102 ($ $ (-570))) (-15 -2540 ($ $)))) (-311)) (T -176))
+((-2375 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-311)) (-5 *1 (-176 *3)))) (-2375 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-1630 (*1 *1 *2 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-2025 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1698 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1478 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3113 (*1 *2 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-4297 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-3726 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1332 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2095 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-4102 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2540 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
+(-13 (-38 |#1|) (-38 (-413 |#1|)) (-368) (-10 -8 (-15 -2375 ($ (-413 |#1|))) (-15 -2375 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -1630 ($ |#1| (-1166 |#1|))) (-15 -2025 ((-1166 |#1|) $)) (-15 -1698 ((-1166 |#1|) $)) (-15 -1478 ((-1166 |#1|) $)) (-15 -3113 (|#1| $)) (-15 -4297 ($ $)) (-15 -3726 ((-1166 (-413 |#1|)) $)) (-15 -1332 ((-1166 (-413 |#1|)) $)) (-15 -2095 ((-1166 |#1|) $)) (-15 -3993 ((-1166 |#1|) $)) (-15 -4102 ($ $ (-570))) (-15 -2540 ($ $))))
+((-1894 (($ (-109) $) 15)) (-1409 (((-697 (-109)) (-512) $) 14)) (-3735 (((-868) $) 18)) (-3525 (((-650 (-109)) $) 8)))
+(((-177) (-13 (-619 (-868)) (-10 -8 (-15 -3525 ((-650 (-109)) $)) (-15 -1894 ($ (-109) $)) (-15 -1409 ((-697 (-109)) (-512) $))))) (T -177))
+((-3525 (*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))) (-1894 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))) (-1409 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-177)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3525 ((-650 (-109)) $)) (-15 -1894 ($ (-109) $)) (-15 -1409 ((-697 (-109)) (-512) $))))
+((-3510 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 38)) (-1632 (((-950 |#1|) (-950 |#1|)) 22)) (-2852 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 34)) (-2876 (((-950 |#1|) (-950 |#1|)) 20)) (-3874 (((-950 |#1|) (-950 |#1|)) 28)) (-1945 (((-950 |#1|) (-950 |#1|)) 27)) (-2109 (((-950 |#1|) (-950 |#1|)) 26)) (-3398 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 35)) (-3022 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 33)) (-2243 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 32)) (-4134 (((-950 |#1|) (-950 |#1|)) 21)) (-2649 (((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|) 41)) (-3940 (((-950 |#1|) (-950 |#1|)) 8)) (-2615 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 37)) (-4035 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 36)))
+(((-178 |#1|) (-10 -7 (-15 -3940 ((-950 |#1|) (-950 |#1|))) (-15 -2876 ((-950 |#1|) (-950 |#1|))) (-15 -4134 ((-950 |#1|) (-950 |#1|))) (-15 -1632 ((-950 |#1|) (-950 |#1|))) (-15 -2109 ((-950 |#1|) (-950 |#1|))) (-15 -1945 ((-950 |#1|) (-950 |#1|))) (-15 -3874 ((-950 |#1|) (-950 |#1|))) (-15 -2243 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3022 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2852 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3398 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4035 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2615 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3510 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2649 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|))) (-13 (-368) (-1212) (-1011))) (T -178))
+((-2649 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3510 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2615 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-4035 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3398 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2852 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3022 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2243 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3874 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-1945 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2109 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-1632 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-4134 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-3940 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))))
+(-10 -7 (-15 -3940 ((-950 |#1|) (-950 |#1|))) (-15 -2876 ((-950 |#1|) (-950 |#1|))) (-15 -4134 ((-950 |#1|) (-950 |#1|))) (-15 -1632 ((-950 |#1|) (-950 |#1|))) (-15 -2109 ((-950 |#1|) (-950 |#1|))) (-15 -1945 ((-950 |#1|) (-950 |#1|))) (-15 -3874 ((-950 |#1|) (-950 |#1|))) (-15 -2243 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3022 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2852 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3398 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4035 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2615 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3510 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2649 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|)))
+((-3641 ((|#2| |#3|) 28)))
+(((-179 |#1| |#2| |#3|) (-10 -7 (-15 -3641 (|#2| |#3|))) (-174) (-1253 |#1|) (-730 |#1| |#2|)) (T -179))
+((-3641 (*1 *2 *3) (-12 (-4 *4 (-174)) (-4 *2 (-1253 *4)) (-5 *1 (-179 *4 *2 *3)) (-4 *3 (-730 *4 *2)))))
+(-10 -7 (-15 -3641 (|#2| |#3|)))
+((-4232 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 44 (|has| (-959 |#2|) (-893 |#1|)))))
+(((-180 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-959 |#2|) (-893 |#1|)) (-15 -4232 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|)) (-1109) (-13 (-893 |#1|) (-174)) (-167 |#2|)) (T -180))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *3 (-167 *6)) (-4 (-959 *6) (-893 *5)) (-4 *6 (-13 (-893 *5) (-174))) (-5 *1 (-180 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-959 |#2|) (-893 |#1|)) (-15 -4232 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|))
+((-2050 (((-650 |#1|) (-650 |#1|) |#1|) 41)) (-3377 (((-650 |#1|) |#1| (-650 |#1|)) 20)) (-2971 (((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|)) 36) ((|#1| (-650 |#1|) (-650 |#1|)) 32)))
+(((-181 |#1|) (-10 -7 (-15 -3377 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -2971 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -2971 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -2050 ((-650 |#1|) (-650 |#1|) |#1|))) (-311)) (T -181))
+((-2050 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))) (-2971 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-650 *4))) (-5 *2 (-650 *4)) (-4 *4 (-311)) (-5 *1 (-181 *4)))) (-2971 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-181 *2)) (-4 *2 (-311)))) (-3377 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
+(-10 -7 (-15 -3377 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -2971 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -2971 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -2050 ((-650 |#1|) (-650 |#1|) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-3816 (((-1226) $) 13)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1426 (((-1144) $) 10)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-182) (-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -3816 ((-1226) $))))) (T -182))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-182)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-182)))))
+(-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -3816 ((-1226) $))))
+((-1723 (((-2 (|:| |start| |#2|) (|:| -2773 (-424 |#2|))) |#2|) 66)) (-1511 ((|#1| |#1|) 58)) (-2489 (((-171 |#1|) |#2|) 93)) (-4011 ((|#1| |#2|) 141) ((|#1| |#2| |#1|) 90)) (-1722 ((|#2| |#2|) 91)) (-3803 (((-424 |#2|) |#2| |#1|) 121) (((-424 |#2|) |#2| |#1| (-112)) 88)) (-2771 ((|#1| |#2|) 120)) (-3757 ((|#2| |#2|) 135)) (-3739 (((-424 |#2|) |#2|) 158) (((-424 |#2|) |#2| |#1|) 33) (((-424 |#2|) |#2| |#1| (-112)) 157)) (-2480 (((-650 (-2 (|:| -2773 (-650 |#2|)) (|:| -3577 |#1|))) |#2| |#2|) 156) (((-650 (-2 (|:| -2773 (-650 |#2|)) (|:| -3577 |#1|))) |#2| |#2| (-112)) 81)) (-2805 (((-650 (-171 |#1|)) |#2| |#1|) 42) (((-650 (-171 |#1|)) |#2|) 43)))
+(((-183 |#1| |#2|) (-10 -7 (-15 -2805 ((-650 (-171 |#1|)) |#2|)) (-15 -2805 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -2480 ((-650 (-2 (|:| -2773 (-650 |#2|)) (|:| -3577 |#1|))) |#2| |#2| (-112))) (-15 -2480 ((-650 (-2 (|:| -2773 (-650 |#2|)) (|:| -3577 |#1|))) |#2| |#2|)) (-15 -3739 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3739 ((-424 |#2|) |#2| |#1|)) (-15 -3739 ((-424 |#2|) |#2|)) (-15 -3757 (|#2| |#2|)) (-15 -2771 (|#1| |#2|)) (-15 -3803 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3803 ((-424 |#2|) |#2| |#1|)) (-15 -1722 (|#2| |#2|)) (-15 -4011 (|#1| |#2| |#1|)) (-15 -4011 (|#1| |#2|)) (-15 -2489 ((-171 |#1|) |#2|)) (-15 -1511 (|#1| |#1|)) (-15 -1723 ((-2 (|:| |start| |#2|) (|:| -2773 (-424 |#2|))) |#2|))) (-13 (-368) (-854)) (-1253 (-171 |#1|))) (T -183))
+((-1723 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-2 (|:| |start| *3) (|:| -2773 (-424 *3)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-1511 (*1 *2 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-2489 (*1 *2 *3) (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3)) (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1253 *2)))) (-4011 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-4011 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1253 (-171 *3))))) (-3803 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3803 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2771 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-3757 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1253 (-171 *3))))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3739 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3739 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2480 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -2773 (-650 *3)) (|:| -3577 *4)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2480 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -2773 (-650 *3)) (|:| -3577 *5)))) (-5 *1 (-183 *5 *3)) (-4 *3 (-1253 (-171 *5))))) (-2805 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2805 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(-10 -7 (-15 -2805 ((-650 (-171 |#1|)) |#2|)) (-15 -2805 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -2480 ((-650 (-2 (|:| -2773 (-650 |#2|)) (|:| -3577 |#1|))) |#2| |#2| (-112))) (-15 -2480 ((-650 (-2 (|:| -2773 (-650 |#2|)) (|:| -3577 |#1|))) |#2| |#2|)) (-15 -3739 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3739 ((-424 |#2|) |#2| |#1|)) (-15 -3739 ((-424 |#2|) |#2|)) (-15 -3757 (|#2| |#2|)) (-15 -2771 (|#1| |#2|)) (-15 -3803 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3803 ((-424 |#2|) |#2| |#1|)) (-15 -1722 (|#2| |#2|)) (-15 -4011 (|#1| |#2| |#1|)) (-15 -4011 (|#1| |#2|)) (-15 -2489 ((-171 |#1|) |#2|)) (-15 -1511 (|#1| |#1|)) (-15 -1723 ((-2 (|:| |start| |#2|) (|:| -2773 (-424 |#2|))) |#2|)))
+((-4201 (((-3 |#2| "failed") |#2|) 20)) (-3423 (((-777) |#2|) 23)) (-3168 ((|#2| |#2| |#2|) 25)))
+(((-184 |#1| |#2|) (-10 -7 (-15 -4201 ((-3 |#2| "failed") |#2|)) (-15 -3423 ((-777) |#2|)) (-15 -3168 (|#2| |#2| |#2|))) (-1227) (-680 |#1|)) (T -184))
+((-3168 (*1 *2 *2 *2) (-12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))) (-3423 (*1 *2 *3) (-12 (-4 *4 (-1227)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3)) (-4 *3 (-680 *4)))) (-4201 (*1 *2 *2) (|partial| -12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
+(-10 -7 (-15 -4201 ((-3 |#2| "failed") |#2|)) (-15 -3423 ((-777) |#2|)) (-15 -3168 (|#2| |#2| |#2|)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1580 ((|#1| $) 7)) (-3735 (((-868) $) 14)) (-3866 (((-112) $ $) NIL)) (-3890 (((-650 (-1191)) $) 10)) (-2872 (((-112) $ $) 12)))
+(((-185 |#1|) (-13 (-1109) (-10 -8 (-15 -1580 (|#1| $)) (-15 -3890 ((-650 (-1191)) $)))) (-187)) (T -185))
+((-1580 (*1 *2 *1) (-12 (-5 *1 (-185 *2)) (-4 *2 (-187)))) (-3890 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
+(-13 (-1109) (-10 -8 (-15 -1580 (|#1| $)) (-15 -3890 ((-650 (-1191)) $))))
+((-1775 (((-650 (-871)) $) 16)) (-3843 (((-188) $) 8)) (-2544 (((-650 (-112)) $) 13)) (-4158 (((-55) $) 10)))
+(((-186 |#1|) (-10 -8 (-15 -1775 ((-650 (-871)) |#1|)) (-15 -2544 ((-650 (-112)) |#1|)) (-15 -3843 ((-188) |#1|)) (-15 -4158 ((-55) |#1|))) (-187)) (T -186))
+NIL
+(-10 -8 (-15 -1775 ((-650 (-871)) |#1|)) (-15 -2544 ((-650 (-112)) |#1|)) (-15 -3843 ((-188) |#1|)) (-15 -4158 ((-55) |#1|)))
+((-2417 (((-112) $ $) 7)) (-1775 (((-650 (-871)) $) 19)) (-3504 (((-512) $) 16)) (-4268 (((-1168) $) 10)) (-3843 (((-188) $) 21)) (-4198 (((-112) $ (-512)) 14)) (-3479 (((-1129) $) 11)) (-2544 (((-650 (-112)) $) 20)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-4158 (((-55) $) 15)) (-2872 (((-112) $ $) 6)))
(((-187) (-141)) (T -187))
-((-3843 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))) (-4324 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))) (-1774 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
-(-13 (-841 (-512)) (-10 -8 (-15 -3843 ((-188) $)) (-15 -4324 ((-650 (-112)) $)) (-15 -1774 ((-650 (-871)) $))))
+((-3843 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))) (-2544 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
+(-13 (-841 (-512)) (-10 -8 (-15 -3843 ((-188) $)) (-15 -2544 ((-650 (-112)) $)) (-15 -1775 ((-650 (-871)) $))))
(((-102) . T) ((-619 (-868)) . T) ((-841 (-512)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-8 (($) 7 T CONST)) (-3735 (((-868) $) 12)) (-9 (($) 6 T CONST)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 10)))
+((-2417 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-8 (($) 7 T CONST)) (-3735 (((-868) $) 12)) (-9 (($) 6 T CONST)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 10)))
(((-188) (-13 (-1109) (-10 -8 (-15 -9 ($) -3640) (-15 -8 ($) -3640) (-15 -7 ($) -3640)))) (T -188))
((-9 (*1 *1) (-5 *1 (-188))) (-8 (*1 *1) (-5 *1 (-188))) (-7 (*1 *1) (-5 *1 (-188))))
(-13 (-1109) (-10 -8 (-15 -9 ($) -3640) (-15 -8 ($) -3640) (-15 -7 ($) -3640)))
-((-2416 (((-112) $ $) NIL)) (-1774 (((-650 (-871)) $) NIL)) (-3503 (((-512) $) 8)) (-1903 (((-1168) $) NIL)) (-3843 (((-188) $) 10)) (-1566 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-2941 (((-697 $) (-512)) 17)) (-4324 (((-650 (-112)) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1893 (((-55) $) 12)) (-2872 (((-112) $ $) NIL)))
-(((-189) (-13 (-187) (-10 -8 (-15 -2941 ((-697 $) (-512)))))) (T -189))
-((-2941 (*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
-(-13 (-187) (-10 -8 (-15 -2941 ((-697 $) (-512)))))
-((-4321 ((|#2| |#2|) 28)) (-2205 (((-112) |#2|) 19)) (-3765 (((-320 |#1|) |#2|) 12)) (-3779 (((-320 |#1|) |#2|) 14)) (-2166 ((|#2| |#2| (-1186)) 69) ((|#2| |#2|) 70)) (-2048 (((-171 (-320 |#1|)) |#2|) 10)) (-3842 ((|#2| |#2| (-1186)) 66) ((|#2| |#2|) 60)))
-(((-190 |#1| |#2|) (-10 -7 (-15 -2166 (|#2| |#2|)) (-15 -2166 (|#2| |#2| (-1186))) (-15 -3842 (|#2| |#2|)) (-15 -3842 (|#2| |#2| (-1186))) (-15 -3765 ((-320 |#1|) |#2|)) (-15 -3779 ((-320 |#1|) |#2|)) (-15 -2205 ((-112) |#2|)) (-15 -4321 (|#2| |#2|)) (-15 -2048 ((-171 (-320 |#1|)) |#2|))) (-13 (-562) (-1047 (-570))) (-13 (-27) (-1211) (-436 (-171 |#1|)))) (T -190))
-((-2048 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-171 (-320 *4))) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4)))))) (-4321 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *3)))))) (-2205 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112)) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4)))))) (-3779 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4)) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4)))))) (-3765 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4)) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4)))))) (-3842 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *4)))))) (-3842 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *3)))))) (-2166 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *4)))))) (-2166 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *3)))))))
-(-10 -7 (-15 -2166 (|#2| |#2|)) (-15 -2166 (|#2| |#2| (-1186))) (-15 -3842 (|#2| |#2|)) (-15 -3842 (|#2| |#2| (-1186))) (-15 -3765 ((-320 |#1|) |#2|)) (-15 -3779 ((-320 |#1|) |#2|)) (-15 -2205 ((-112) |#2|)) (-15 -4321 (|#2| |#2|)) (-15 -2048 ((-171 (-320 |#1|)) |#2|)))
-((-3886 (((-1276 (-695 (-959 |#1|))) (-1276 (-695 |#1|))) 26)) (-3735 (((-1276 (-695 (-413 (-959 |#1|)))) (-1276 (-695 |#1|))) 37)))
-(((-191 |#1|) (-10 -7 (-15 -3886 ((-1276 (-695 (-959 |#1|))) (-1276 (-695 |#1|)))) (-15 -3735 ((-1276 (-695 (-413 (-959 |#1|)))) (-1276 (-695 |#1|))))) (-174)) (T -191))
-((-3735 (*1 *2 *3) (-12 (-5 *3 (-1276 (-695 *4))) (-4 *4 (-174)) (-5 *2 (-1276 (-695 (-413 (-959 *4))))) (-5 *1 (-191 *4)))) (-3886 (*1 *2 *3) (-12 (-5 *3 (-1276 (-695 *4))) (-4 *4 (-174)) (-5 *2 (-1276 (-695 (-959 *4)))) (-5 *1 (-191 *4)))))
-(-10 -7 (-15 -3886 ((-1276 (-695 (-959 |#1|))) (-1276 (-695 |#1|)))) (-15 -3735 ((-1276 (-695 (-413 (-959 |#1|)))) (-1276 (-695 |#1|)))))
-((-4120 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 88)) (-3226 (((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570))) 99)) (-3967 (((-1188 (-413 (-570))) (-570)) 55)) (-2641 (((-1188 (-413 (-570))) (-570)) 74)) (-1730 (((-413 (-570)) (-1188 (-413 (-570)))) 84)) (-4380 (((-1188 (-413 (-570))) (-570)) 37)) (-3848 (((-1188 (-413 (-570))) (-570)) 67)) (-2007 (((-1188 (-413 (-570))) (-570)) 61)) (-3354 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 82)) (-3049 (((-1188 (-413 (-570))) (-570)) 29)) (-3662 (((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 86)) (-3256 (((-1188 (-413 (-570))) (-570)) 35)) (-4183 (((-1188 (-413 (-570))) (-650 (-570))) 95)))
-(((-192) (-10 -7 (-15 -3049 ((-1188 (-413 (-570))) (-570))) (-15 -3967 ((-1188 (-413 (-570))) (-570))) (-15 -4380 ((-1188 (-413 (-570))) (-570))) (-15 -3256 ((-1188 (-413 (-570))) (-570))) (-15 -2007 ((-1188 (-413 (-570))) (-570))) (-15 -3848 ((-1188 (-413 (-570))) (-570))) (-15 -2641 ((-1188 (-413 (-570))) (-570))) (-15 -3662 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -3354 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1730 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -4120 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -4183 ((-1188 (-413 (-570))) (-650 (-570)))) (-15 -3226 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))) (T -192))
-((-3226 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-4183 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-4120 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1730 (*1 *2 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-3354 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-3662 (*1 *2 *3 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-2641 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-3848 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-2007 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-3256 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-4380 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-3967 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-3049 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
-(-10 -7 (-15 -3049 ((-1188 (-413 (-570))) (-570))) (-15 -3967 ((-1188 (-413 (-570))) (-570))) (-15 -4380 ((-1188 (-413 (-570))) (-570))) (-15 -3256 ((-1188 (-413 (-570))) (-570))) (-15 -2007 ((-1188 (-413 (-570))) (-570))) (-15 -3848 ((-1188 (-413 (-570))) (-570))) (-15 -2641 ((-1188 (-413 (-570))) (-570))) (-15 -3662 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -3354 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1730 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -4120 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -4183 ((-1188 (-413 (-570))) (-650 (-570)))) (-15 -3226 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))
-((-2639 (((-424 (-1182 (-570))) (-570)) 38)) (-1977 (((-650 (-1182 (-570))) (-570)) 33)) (-4346 (((-1182 (-570)) (-570)) 28)))
-(((-193) (-10 -7 (-15 -1977 ((-650 (-1182 (-570))) (-570))) (-15 -4346 ((-1182 (-570)) (-570))) (-15 -2639 ((-424 (-1182 (-570))) (-570))))) (T -193))
-((-2639 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))) (-4346 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-193)) (-5 *3 (-570)))) (-1977 (*1 *2 *3) (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
-(-10 -7 (-15 -1977 ((-650 (-1182 (-570))) (-570))) (-15 -4346 ((-1182 (-570)) (-570))) (-15 -2639 ((-424 (-1182 (-570))) (-570))))
-((-2093 (((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 132)) (-1631 (((-650 (-1168)) (-1166 (-227))) NIL)) (-2463 (((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 108)) (-2066 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) NIL)) (-2816 (((-650 (-1168)) (-650 (-227))) NIL)) (-3885 (((-227) (-1103 (-849 (-227)))) 31)) (-1514 (((-227) (-1103 (-849 (-227)))) 32)) (-3955 (((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 126)) (-2389 (((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 68)) (-1994 (((-1168) (-227)) NIL)) (-3309 (((-1168) (-650 (-1168))) 27)) (-3272 (((-1044) (-1186) (-1186) (-1044)) 13)))
-(((-194) (-10 -7 (-15 -2463 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2389 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3885 ((-227) (-1103 (-849 (-227))))) (-15 -1514 ((-227) (-1103 (-849 (-227))))) (-15 -3955 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2066 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2093 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1994 ((-1168) (-227))) (-15 -2816 ((-650 (-1168)) (-650 (-227)))) (-15 -1631 ((-650 (-1168)) (-1166 (-227)))) (-15 -3309 ((-1168) (-650 (-1168)))) (-15 -3272 ((-1044) (-1186) (-1186) (-1044))))) (T -194))
-((-3272 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))) (-3309 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-194)))) (-1631 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-2816 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-194)))) (-2093 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-194)))) (-2066 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186)) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-194)))) (-3955 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-194)))) (-1514 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-3885 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-2389 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (-5 *1 (-194)))) (-2463 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))) (-5 *1 (-194)))))
-(-10 -7 (-15 -2463 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2389 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3885 ((-227) (-1103 (-849 (-227))))) (-15 -1514 ((-227) (-1103 (-849 (-227))))) (-15 -3955 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2066 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2093 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1994 ((-1168) (-227))) (-15 -2816 ((-650 (-1168)) (-650 (-227)))) (-15 -1631 ((-650 (-1168)) (-1166 (-227)))) (-15 -3309 ((-1168) (-650 (-1168)))) (-15 -3272 ((-1044) (-1186) (-1186) (-1044))))
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 61) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 33) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-1775 (((-650 (-871)) $) NIL)) (-3504 (((-512) $) 8)) (-4268 (((-1168) $) NIL)) (-3843 (((-188) $) 10)) (-4198 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-4042 (((-697 $) (-512)) 17)) (-2544 (((-650 (-112)) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-4158 (((-55) $) 12)) (-2872 (((-112) $ $) NIL)))
+(((-189) (-13 (-187) (-10 -8 (-15 -4042 ((-697 $) (-512)))))) (T -189))
+((-4042 (*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
+(-13 (-187) (-10 -8 (-15 -4042 ((-697 $) (-512)))))
+((-3790 ((|#2| |#2|) 28)) (-3060 (((-112) |#2|) 19)) (-3766 (((-320 |#1|) |#2|) 12)) (-3779 (((-320 |#1|) |#2|) 14)) (-3964 ((|#2| |#2| (-1186)) 69) ((|#2| |#2|) 70)) (-2116 (((-171 (-320 |#1|)) |#2|) 10)) (-1542 ((|#2| |#2| (-1186)) 66) ((|#2| |#2|) 60)))
+(((-190 |#1| |#2|) (-10 -7 (-15 -3964 (|#2| |#2|)) (-15 -3964 (|#2| |#2| (-1186))) (-15 -1542 (|#2| |#2|)) (-15 -1542 (|#2| |#2| (-1186))) (-15 -3766 ((-320 |#1|) |#2|)) (-15 -3779 ((-320 |#1|) |#2|)) (-15 -3060 ((-112) |#2|)) (-15 -3790 (|#2| |#2|)) (-15 -2116 ((-171 (-320 |#1|)) |#2|))) (-13 (-562) (-1047 (-570))) (-13 (-27) (-1212) (-436 (-171 |#1|)))) (T -190))
+((-2116 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-171 (-320 *4))) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4)))))) (-3790 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))) (-3060 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112)) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4)))))) (-3779 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4)) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4)))))) (-3766 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4)) (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4)))))) (-1542 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *4)))))) (-1542 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))) (-3964 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *4)))))) (-3964 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))))
+(-10 -7 (-15 -3964 (|#2| |#2|)) (-15 -3964 (|#2| |#2| (-1186))) (-15 -1542 (|#2| |#2|)) (-15 -1542 (|#2| |#2| (-1186))) (-15 -3766 ((-320 |#1|) |#2|)) (-15 -3779 ((-320 |#1|) |#2|)) (-15 -3060 ((-112) |#2|)) (-15 -3790 (|#2| |#2|)) (-15 -2116 ((-171 (-320 |#1|)) |#2|)))
+((-3830 (((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|))) 26)) (-3735 (((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|))) 37)))
+(((-191 |#1|) (-10 -7 (-15 -3830 ((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|)))) (-15 -3735 ((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|))))) (-174)) (T -191))
+((-3735 (*1 *2 *3) (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174)) (-5 *2 (-1277 (-695 (-413 (-959 *4))))) (-5 *1 (-191 *4)))) (-3830 (*1 *2 *3) (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174)) (-5 *2 (-1277 (-695 (-959 *4)))) (-5 *1 (-191 *4)))))
+(-10 -7 (-15 -3830 ((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|)))) (-15 -3735 ((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|)))))
+((-2448 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 91)) (-3740 (((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570))) 102)) (-3357 (((-1188 (-413 (-570))) (-570)) 55)) (-3014 (((-1188 (-413 (-570))) (-570)) 77)) (-1731 (((-413 (-570)) (-1188 (-413 (-570)))) 87)) (-3077 (((-1188 (-413 (-570))) (-570)) 37)) (-1596 (((-1188 (-413 (-570))) (-570)) 67)) (-2846 (((-1188 (-413 (-570))) (-570)) 61)) (-3626 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 85)) (-2540 (((-1188 (-413 (-570))) (-570)) 29)) (-3520 (((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 89)) (-4027 (((-1188 (-413 (-570))) (-570)) 35)) (-1887 (((-1188 (-413 (-570))) (-650 (-570))) 98)))
+(((-192) (-10 -7 (-15 -2540 ((-1188 (-413 (-570))) (-570))) (-15 -3357 ((-1188 (-413 (-570))) (-570))) (-15 -3077 ((-1188 (-413 (-570))) (-570))) (-15 -4027 ((-1188 (-413 (-570))) (-570))) (-15 -2846 ((-1188 (-413 (-570))) (-570))) (-15 -1596 ((-1188 (-413 (-570))) (-570))) (-15 -3014 ((-1188 (-413 (-570))) (-570))) (-15 -3520 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -3626 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1731 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -2448 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1887 ((-1188 (-413 (-570))) (-650 (-570)))) (-15 -3740 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))) (T -192))
+((-3740 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1887 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2448 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1731 (*1 *2 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-3626 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-3520 (*1 *2 *3 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-3014 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-1596 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-2846 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-4027 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-3077 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-3357 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))) (-2540 (*1 *2 *3) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
+(-10 -7 (-15 -2540 ((-1188 (-413 (-570))) (-570))) (-15 -3357 ((-1188 (-413 (-570))) (-570))) (-15 -3077 ((-1188 (-413 (-570))) (-570))) (-15 -4027 ((-1188 (-413 (-570))) (-570))) (-15 -2846 ((-1188 (-413 (-570))) (-570))) (-15 -1596 ((-1188 (-413 (-570))) (-570))) (-15 -3014 ((-1188 (-413 (-570))) (-570))) (-15 -3520 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -3626 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1731 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -2448 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1887 ((-1188 (-413 (-570))) (-650 (-570)))) (-15 -3740 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))
+((-2994 (((-424 (-1182 (-570))) (-570)) 38)) (-2550 (((-650 (-1182 (-570))) (-570)) 33)) (-2784 (((-1182 (-570)) (-570)) 28)))
+(((-193) (-10 -7 (-15 -2550 ((-650 (-1182 (-570))) (-570))) (-15 -2784 ((-1182 (-570)) (-570))) (-15 -2994 ((-424 (-1182 (-570))) (-570))))) (T -193))
+((-2994 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))) (-2784 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-193)) (-5 *3 (-570)))) (-2550 (*1 *2 *3) (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
+(-10 -7 (-15 -2550 ((-650 (-1182 (-570))) (-570))) (-15 -2784 ((-1182 (-570)) (-570))) (-15 -2994 ((-424 (-1182 (-570))) (-570))))
+((-1344 (((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 132)) (-3567 (((-650 (-1168)) (-1166 (-227))) NIL)) (-3882 (((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 108)) (-2268 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) NIL)) (-4166 (((-650 (-1168)) (-650 (-227))) NIL)) (-3818 (((-227) (-1103 (-849 (-227)))) 31)) (-3625 (((-227) (-1103 (-849 (-227)))) 32)) (-3197 (((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 126)) (-1327 (((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 68)) (-2714 (((-1168) (-227)) NIL)) (-3178 (((-1168) (-650 (-1168))) 27)) (-4174 (((-1044) (-1186) (-1186) (-1044)) 13)))
+(((-194) (-10 -7 (-15 -3882 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1327 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3818 ((-227) (-1103 (-849 (-227))))) (-15 -3625 ((-227) (-1103 (-849 (-227))))) (-15 -3197 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2268 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -1344 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2714 ((-1168) (-227))) (-15 -4166 ((-650 (-1168)) (-650 (-227)))) (-15 -3567 ((-650 (-1168)) (-1166 (-227)))) (-15 -3178 ((-1168) (-650 (-1168)))) (-15 -4174 ((-1044) (-1186) (-1186) (-1044))))) (T -194))
+((-4174 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))) (-3178 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-194)))) (-3567 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-4166 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-2714 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-194)))) (-1344 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-194)))) (-2268 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186)) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-194)))) (-3197 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-194)))) (-3625 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-3818 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-1327 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (-5 *1 (-194)))) (-3882 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))) (-5 *1 (-194)))))
+(-10 -7 (-15 -3882 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1327 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3818 ((-227) (-1103 (-849 (-227))))) (-15 -3625 ((-227) (-1103 (-849 (-227))))) (-15 -3197 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2268 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -1344 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2714 ((-1168) (-227))) (-15 -4166 ((-650 (-1168)) (-650 (-227)))) (-15 -3567 ((-650 (-1168)) (-1166 (-227)))) (-15 -3178 ((-1168) (-650 (-1168)))) (-15 -4174 ((-1044) (-1186) (-1186) (-1044))))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 61) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 33) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-195) (-793)) (T -195))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 66) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 44) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 66) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 44) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-196) (-793)) (T -196))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 81) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 46) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 81) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 46) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-197) (-793)) (T -197))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 63) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 36) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 63) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 36) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-198) (-793)) (T -198))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 75) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 40) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 75) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 40) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-199) (-793)) (T -199))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-200) (-793)) (T -200))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 51) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 51) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-201) (-793)) (T -201))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 77) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 42) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 77) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 42) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-202) (-793)) (T -202))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 78)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 38)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 78)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 38)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-203) (-793)) (T -203))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 79)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 44)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 79)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 44)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-204) (-793)) (T -204))
NIL
(-793)
-((-2416 (((-112) $ $) NIL)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 105) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 86) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 105) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 86) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-205) (-793)) (T -205))
NIL
(-793)
-((-3904 (((-3 (-2 (|:| -3854 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 110)) (-2303 (((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 60)) (-3105 (((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 91)))
-(((-206) (-10 -7 (-15 -3904 ((-3 (-2 (|:| -3854 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3105 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2303 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -206))
-((-2303 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-570)) (-5 *1 (-206)))) (-3105 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-206)))) (-3904 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3854 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
-(-10 -7 (-15 -3904 ((-3 (-2 (|:| -3854 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3105 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2303 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-2118 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49)) (-3577 (((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 160)) (-2403 (((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227)))) 112)) (-2812 (((-384) (-695 (-320 (-227)))) 140)) (-2436 (((-695 (-320 (-227))) (-1276 (-320 (-227))) (-650 (-1186))) 136)) (-3095 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 37)) (-2242 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 53)) (-1730 (((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1276 (-320 (-227)))) 125)) (-2002 (((-384) (-384) (-650 (-384))) 133) (((-384) (-384) (-384)) 128)) (-2034 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 45)))
-(((-207) (-10 -7 (-15 -2002 ((-384) (-384) (-384))) (-15 -2002 ((-384) (-384) (-650 (-384)))) (-15 -2812 ((-384) (-695 (-320 (-227))))) (-15 -2436 ((-695 (-320 (-227))) (-1276 (-320 (-227))) (-650 (-1186)))) (-15 -1730 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1276 (-320 (-227))))) (-15 -2403 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -3577 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2118 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2242 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2034 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3095 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -207))
-((-3095 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2034 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2242 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2118 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-3577 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384)))) (-5 *1 (-207)))) (-2403 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384)))) (-5 *1 (-207)))) (-1730 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-695 (-320 (-227)))) (-5 *3 (-650 (-1186))) (-5 *4 (-1276 (-320 (-227)))) (-5 *1 (-207)))) (-2436 (*1 *2 *3 *4) (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *4 (-650 (-1186))) (-5 *2 (-695 (-320 (-227)))) (-5 *1 (-207)))) (-2812 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2002 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2002 (*1 *2 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207)))))
-(-10 -7 (-15 -2002 ((-384) (-384) (-384))) (-15 -2002 ((-384) (-384) (-650 (-384)))) (-15 -2812 ((-384) (-695 (-320 (-227))))) (-15 -2436 ((-695 (-320 (-227))) (-1276 (-320 (-227))) (-650 (-1186)))) (-15 -1730 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1276 (-320 (-227))))) (-15 -2403 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -3577 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2118 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2242 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2034 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3095 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-2416 (((-112) $ $) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 43)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2813 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 75)) (-2872 (((-112) $ $) NIL)))
+((-3997 (((-3 (-2 (|:| -3854 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 110)) (-2843 (((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 60)) (-1943 (((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 91)))
+(((-206) (-10 -7 (-15 -3997 ((-3 (-2 (|:| -3854 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1943 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2843 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -206))
+((-2843 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-570)) (-5 *1 (-206)))) (-1943 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-206)))) (-3997 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3854 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
+(-10 -7 (-15 -3997 ((-3 (-2 (|:| -3854 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1943 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2843 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-1617 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49)) (-3969 (((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 160)) (-1488 (((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227)))) 112)) (-4117 (((-384) (-695 (-320 (-227)))) 140)) (-1788 (((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186))) 136)) (-2949 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 37)) (-3488 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 53)) (-1731 (((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227)))) 125)) (-2799 (((-384) (-384) (-650 (-384))) 133) (((-384) (-384) (-384)) 128)) (-1988 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 45)))
+(((-207) (-10 -7 (-15 -2799 ((-384) (-384) (-384))) (-15 -2799 ((-384) (-384) (-650 (-384)))) (-15 -4117 ((-384) (-695 (-320 (-227))))) (-15 -1788 ((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186)))) (-15 -1731 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227))))) (-15 -1488 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -3969 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1617 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3488 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1988 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2949 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -207))
+((-2949 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-1988 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-3488 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-1617 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-3969 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384)))) (-5 *1 (-207)))) (-1488 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384)))) (-5 *1 (-207)))) (-1731 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-695 (-320 (-227)))) (-5 *3 (-650 (-1186))) (-5 *4 (-1277 (-320 (-227)))) (-5 *1 (-207)))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *4 (-650 (-1186))) (-5 *2 (-695 (-320 (-227)))) (-5 *1 (-207)))) (-4117 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2799 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2799 (*1 *2 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207)))))
+(-10 -7 (-15 -2799 ((-384) (-384) (-384))) (-15 -2799 ((-384) (-384) (-650 (-384)))) (-15 -4117 ((-384) (-695 (-320 (-227))))) (-15 -1788 ((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186)))) (-15 -1731 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227))))) (-15 -1488 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -3969 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1617 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3488 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1988 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2949 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-2417 (((-112) $ $) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 43)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-4130 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 75)) (-2872 (((-112) $ $) NIL)))
(((-208) (-806)) (T -208))
NIL
(-806)
-((-2416 (((-112) $ $) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 43)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2813 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 73)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 43)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-4130 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 73)) (-2872 (((-112) $ $) NIL)))
(((-209) (-806)) (T -209))
NIL
(-806)
-((-2416 (((-112) $ $) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 40)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2813 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 76)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 40)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-4130 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 76)) (-2872 (((-112) $ $) NIL)))
(((-210) (-806)) (T -210))
NIL
(-806)
-((-2416 (((-112) $ $) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 48)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2813 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 88)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 48)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-4130 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 88)) (-2872 (((-112) $ $) NIL)))
(((-211) (-806)) (T -211))
NIL
(-806)
-((-3039 (((-650 (-1186)) (-1186) (-777)) 26)) (-3677 (((-320 (-227)) (-320 (-227))) 35)) (-2722 (((-112) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 87)) (-3143 (((-112) (-227) (-227) (-650 (-320 (-227)))) 47)))
-(((-212) (-10 -7 (-15 -3039 ((-650 (-1186)) (-1186) (-777))) (-15 -3677 ((-320 (-227)) (-320 (-227)))) (-15 -3143 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -2722 ((-112) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))))) (T -212))
-((-2722 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *2 (-112)) (-5 *1 (-212)))) (-3143 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-212)))) (-3677 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))) (-3039 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-212)) (-5 *3 (-1186)))))
-(-10 -7 (-15 -3039 ((-650 (-1186)) (-1186) (-777))) (-15 -3677 ((-320 (-227)) (-320 (-227)))) (-15 -3143 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -2722 ((-112) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))))
-((-2416 (((-112) $ $) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 28)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-3520 (((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 70)) (-2872 (((-112) $ $) NIL)))
+((-3039 (((-650 (-1186)) (-1186) (-777)) 26)) (-3675 (((-320 (-227)) (-320 (-227))) 35)) (-1394 (((-112) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 87)) (-2278 (((-112) (-227) (-227) (-650 (-320 (-227)))) 47)))
+(((-212) (-10 -7 (-15 -3039 ((-650 (-1186)) (-1186) (-777))) (-15 -3675 ((-320 (-227)) (-320 (-227)))) (-15 -2278 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -1394 ((-112) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))))) (T -212))
+((-1394 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *2 (-112)) (-5 *1 (-212)))) (-2278 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-212)))) (-3675 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))) (-3039 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-212)) (-5 *3 (-1186)))))
+(-10 -7 (-15 -3039 ((-650 (-1186)) (-1186) (-777))) (-15 -3675 ((-320 (-227)) (-320 (-227)))) (-15 -2278 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -1394 ((-112) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))))
+((-2417 (((-112) $ $) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 28)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1524 (((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 70)) (-2872 (((-112) $ $) NIL)))
(((-213) (-902)) (T -213))
NIL
(-902)
-((-2416 (((-112) $ $) NIL)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 24)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-3520 (((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 24)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1524 (((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) NIL)) (-2872 (((-112) $ $) NIL)))
(((-214) (-902)) (T -214))
NIL
(-902)
-((-2416 (((-112) $ $) NIL)) (-3723 ((|#2| $ (-777) |#2|) 11)) (-3712 ((|#2| $ (-777)) 10)) (-4286 (($) 8)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 26)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 13)))
-(((-215 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -4286 ($)) (-15 -3712 (|#2| $ (-777))) (-15 -3723 (|#2| $ (-777) |#2|)))) (-928) (-1109)) (T -215))
-((-4286 (*1 *1) (-12 (-5 *1 (-215 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1109)))) (-3712 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *2 (-1109)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928)))) (-3723 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928)) (-4 *2 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -4286 ($)) (-15 -3712 (|#2| $ (-777))) (-15 -3723 (|#2| $ (-777) |#2|))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2919 (((-1281) $) 37) (((-1281) $ (-928) (-928)) 44)) (-1876 (($ $ (-998)) 19) (((-247 (-1168)) $ (-1186)) 15)) (-4131 (((-1281) $) 35)) (-3735 (((-868) $) 32) (($ (-650 |#1|)) 8)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $ $) 27)) (-2954 (($ $ $) 22)))
-(((-216 |#1|) (-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1876 ($ $ (-998))) (-15 -1876 ((-247 (-1168)) $ (-1186))) (-15 -2954 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $)) (-15 -2919 ((-1281) $ (-928) (-928))))) (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $))))) (T -216))
-((-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-998)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $))))))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-247 (-1168))) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ *3)) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $))))))) (-2954 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $))))))) (-2965 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $))))))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 (*2 $)) (-15 -2919 (*2 $))))))) (-2919 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 (*2 $)) (-15 -2919 (*2 $))))))) (-2919 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1281)) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 (*2 $)) (-15 -2919 (*2 $))))))))
-(-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1876 ($ $ (-998))) (-15 -1876 ((-247 (-1168)) $ (-1186))) (-15 -2954 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $)) (-15 -2919 ((-1281) $ (-928) (-928)))))
-((-3531 ((|#2| |#4| (-1 |#2| |#2|)) 49)))
-(((-217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3531 (|#2| |#4| (-1 |#2| |#2|)))) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -217))
-((-3531 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-368)) (-4 *6 (-1252 (-413 *2))) (-4 *2 (-1252 *5)) (-5 *1 (-217 *5 *2 *6 *3)) (-4 *3 (-347 *5 *2 *6)))))
-(-10 -7 (-15 -3531 (|#2| |#4| (-1 |#2| |#2|))))
-((-3394 ((|#2| |#2| (-777) |#2|) 58)) (-2736 ((|#2| |#2| (-777) |#2|) 54)) (-1492 (((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -3859 |#2|)))) 82)) (-2732 (((-650 (-2 (|:| |deg| (-777)) (|:| -3859 |#2|))) |#2|) 76)) (-1911 (((-112) |#2|) 74)) (-3696 (((-424 |#2|) |#2|) 94)) (-3738 (((-424 |#2|) |#2|) 93)) (-3724 ((|#2| |#2| (-777) |#2|) 52)) (-2310 (((-2 (|:| |cont| |#1|) (|:| -1679 (-650 (-2 (|:| |irr| |#2|) (|:| -3465 (-570)))))) |#2| (-112)) 88)))
-(((-218 |#1| |#2|) (-10 -7 (-15 -3738 ((-424 |#2|) |#2|)) (-15 -3696 ((-424 |#2|) |#2|)) (-15 -2310 ((-2 (|:| |cont| |#1|) (|:| -1679 (-650 (-2 (|:| |irr| |#2|) (|:| -3465 (-570)))))) |#2| (-112))) (-15 -2732 ((-650 (-2 (|:| |deg| (-777)) (|:| -3859 |#2|))) |#2|)) (-15 -1492 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -3859 |#2|))))) (-15 -3724 (|#2| |#2| (-777) |#2|)) (-15 -2736 (|#2| |#2| (-777) |#2|)) (-15 -3394 (|#2| |#2| (-777) |#2|)) (-15 -1911 ((-112) |#2|))) (-354) (-1252 |#1|)) (T -218))
-((-1911 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1252 *4)))) (-3394 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1252 *4)))) (-2736 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1252 *4)))) (-3724 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1252 *4)))) (-1492 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -3859 *5)))) (-4 *5 (-1252 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5)) (-5 *1 (-218 *4 *5)))) (-2732 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -3859 *3)))) (-5 *1 (-218 *4 *3)) (-4 *3 (-1252 *4)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-354)) (-5 *2 (-2 (|:| |cont| *5) (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570))))))) (-5 *1 (-218 *5 *3)) (-4 *3 (-1252 *5)))) (-3696 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1252 *4)))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3738 ((-424 |#2|) |#2|)) (-15 -3696 ((-424 |#2|) |#2|)) (-15 -2310 ((-2 (|:| |cont| |#1|) (|:| -1679 (-650 (-2 (|:| |irr| |#2|) (|:| -3465 (-570)))))) |#2| (-112))) (-15 -2732 ((-650 (-2 (|:| |deg| (-777)) (|:| -3859 |#2|))) |#2|)) (-15 -1492 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -3859 |#2|))))) (-15 -3724 (|#2| |#2| (-777) |#2|)) (-15 -2736 (|#2| |#2| (-777) |#2|)) (-15 -3394 (|#2| |#2| (-777) |#2|)) (-15 -1911 ((-112) |#2|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-570) $) NIL (|has| (-570) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-570) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| (-570) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-570) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2761 (((-112) $) NIL (|has| (-570) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-570) (-856)))) (-1351 (($ (-1 (-570) (-570)) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-570) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-3739 (((-570) $) NIL (|has| (-570) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-570) $) NIL)) (-1902 (($ (-413 (-570))) 9)) (-1416 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 10) $) 10)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 (((-570) $) NIL (|has| (-570) (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| (-570) (-826)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2975 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL)))
-(((-219) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 10)) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -1902 ($ (-413 (-570))))))) (T -219))
-((-1965 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))) (-1902 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 10)) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -1902 ($ (-413 (-570))))))
-((-2416 (((-112) $ $) NIL)) (-4322 (((-1127) $) 13)) (-1903 (((-1168) $) NIL)) (-3393 (((-489) $) 10)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 23) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-1144) $) 15)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-220) (-13 (-1092) (-10 -8 (-15 -3393 ((-489) $)) (-15 -4322 ((-1127) $)) (-15 -3517 ((-1144) $))))) (T -220))
-((-3393 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-220)))) (-4322 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-220)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-220)))))
-(-13 (-1092) (-10 -8 (-15 -3393 ((-489) $)) (-15 -4322 ((-1127) $)) (-15 -3517 ((-1144) $))))
-((-3555 (((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168)) 29) (((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|))) 25)) (-1328 (((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112)) 17)))
-(((-221 |#1| |#2|) (-10 -7 (-15 -3555 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -3555 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -1328 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-966) (-29 |#1|))) (T -221))
-((-1328 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1186)) (-5 *6 (-112)) (-4 *7 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-4 *3 (-13 (-1211) (-966) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-221 *7 *3)) (-5 *5 (-849 *3)))) (-3555 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1101 (-849 *3))) (-5 *5 (-1168)) (-4 *3 (-13 (-1211) (-966) (-29 *6))) (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-221 *6 *3)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-849 *3))) (-4 *3 (-13 (-1211) (-966) (-29 *5))) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-221 *5 *3)))))
-(-10 -7 (-15 -3555 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -3555 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -1328 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112))))
-((-3555 (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168)) 49) (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|))))) 46) (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168)) 50) (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|)))) 22)))
-(((-222 |#1|) (-10 -7 (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (T -222))
-((-3555 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1101 (-849 (-413 (-959 *6))))) (-5 *5 (-1168)) (-5 *3 (-413 (-959 *6))) (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *6)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-849 (-413 (-959 *5))))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *5)))) (-3555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1101 (-849 (-320 *6)))) (-5 *5 (-1168)) (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *6)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1101 (-849 (-320 *5)))) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *5)))))
-(-10 -7 (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -3555 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168))))
-((-3529 (((-2 (|:| -3282 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|)) 26)) (-1387 (((-650 (-320 |#2|)) (-320 |#2|) (-928)) 54)))
-(((-223 |#1| |#2|) (-10 -7 (-15 -3529 ((-2 (|:| -3282 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1387 ((-650 (-320 |#2|)) (-320 |#2|) (-928)))) (-1058) (-562)) (T -223))
-((-1387 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *6 (-562)) (-5 *2 (-650 (-320 *6))) (-5 *1 (-223 *5 *6)) (-5 *3 (-320 *6)) (-4 *5 (-1058)))) (-3529 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-2 (|:| -3282 (-1182 *4)) (|:| |deg| (-928)))) (-5 *1 (-223 *4 *5)) (-5 *3 (-1182 *4)) (-4 *5 (-562)))))
-(-10 -7 (-15 -3529 ((-2 (|:| -3282 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1387 ((-650 (-320 |#2|)) (-320 |#2|) (-928))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3579 ((|#1| $) NIL)) (-3240 ((|#1| $) 30)) (-3594 (((-112) $ (-777)) NIL)) (-2450 (($) NIL T CONST)) (-2895 (($ $) NIL)) (-2697 (($ $) 39)) (-2562 ((|#1| |#1| $) NIL)) (-1446 ((|#1| $) NIL)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-3788 (((-777) $) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3784 ((|#1| $) NIL)) (-4170 ((|#1| |#1| $) 35)) (-1803 ((|#1| |#1| $) 37)) (-2278 (($ |#1| $) NIL)) (-1434 (((-777) $) 33)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1407 ((|#1| $) NIL)) (-2360 ((|#1| $) 31)) (-4043 ((|#1| $) 29)) (-1899 ((|#1| $) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-2528 ((|#1| |#1| $) NIL)) (-3329 (((-112) $) 9)) (-3743 (($) NIL)) (-2936 ((|#1| $) NIL)) (-4231 (($) NIL) (($ (-650 |#1|)) 16)) (-2765 (((-777) $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1697 ((|#1| $) 13)) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) NIL)) (-2547 ((|#1| $) NIL)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-224 |#1|) (-13 (-257 |#1|) (-10 -8 (-15 -4231 ($ (-650 |#1|))))) (-1109)) (T -224))
-((-4231 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-224 *3)))))
-(-13 (-257 |#1|) (-10 -8 (-15 -4231 ($ (-650 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-2116 (($ (-320 |#1|)) 27)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1390 (((-112) $) NIL)) (-4378 (((-3 (-320 |#1|) "failed") $) NIL)) (-3080 (((-320 |#1|) $) NIL)) (-1890 (($ $) 35)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-1351 (($ (-1 (-320 |#1|) (-320 |#1|)) $) NIL)) (-1864 (((-320 |#1|) $) NIL)) (-4296 (($ $) 34)) (-1903 (((-1168) $) NIL)) (-3946 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2339 (($ (-777)) NIL)) (-4101 (($ $) 36)) (-1601 (((-570) $) NIL)) (-3735 (((-868) $) 68) (($ (-570)) NIL) (($ (-320 |#1|)) NIL)) (-1715 (((-320 |#1|) $ $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 29 T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) 32)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 23)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 28) (($ (-320 |#1|) $) 22)))
-(((-225 |#1| |#2|) (-13 (-626 (-320 |#1|)) (-1047 (-320 |#1|)) (-10 -8 (-15 -1864 ((-320 |#1|) $)) (-15 -4296 ($ $)) (-15 -1890 ($ $)) (-15 -1715 ((-320 |#1|) $ $)) (-15 -2339 ($ (-777))) (-15 -3946 ((-112) $)) (-15 -1390 ((-112) $)) (-15 -1601 ((-570) $)) (-15 -1351 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -2116 ($ (-320 |#1|))) (-15 -4101 ($ $)))) (-13 (-1058) (-856)) (-650 (-1186))) (T -225))
-((-1864 (*1 *2 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-4296 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1890 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1715 (*1 *2 *1 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2339 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3946 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-1601 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-320 *3) (-320 *3))) (-4 *3 (-13 (-1058) (-856))) (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))) (-2116 (*1 *1 *2) (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856))) (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))) (-4101 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))))
-(-13 (-626 (-320 |#1|)) (-1047 (-320 |#1|)) (-10 -8 (-15 -1864 ((-320 |#1|) $)) (-15 -4296 ($ $)) (-15 -1890 ($ $)) (-15 -1715 ((-320 |#1|) $ $)) (-15 -2339 ($ (-777))) (-15 -3946 ((-112) $)) (-15 -1390 ((-112) $)) (-15 -1601 ((-570) $)) (-15 -1351 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -2116 ($ (-320 |#1|))) (-15 -4101 ($ $))))
-((-4217 (((-112) (-1168)) 26)) (-1348 (((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112)) 35)) (-4314 (((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112)) 84) (((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112)) 85)))
-(((-226 |#1| |#2|) (-10 -7 (-15 -4217 ((-112) (-1168))) (-15 -1348 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -4314 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -4314 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-29 |#1|))) (T -226))
-((-4314 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1182 *6)) (-5 *4 (-849 *6)) (-4 *6 (-13 (-1211) (-29 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-226 *5 *6)))) (-4314 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-959 *6)) (-5 *4 (-1186)) (-5 *5 (-849 *7)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *7 (-13 (-1211) (-29 *6))) (-5 *1 (-226 *6 *7)))) (-1348 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-849 *4)) (-5 *3 (-618 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1211) (-29 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-226 *6 *4)))) (-4217 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112)) (-5 *1 (-226 *4 *5)) (-4 *5 (-13 (-1211) (-29 *4))))))
-(-10 -7 (-15 -4217 ((-112) (-1168))) (-15 -1348 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -4314 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -4314 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 99)) (-3303 (((-570) $) 35)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3316 (($ $) NIL)) (-2735 (($ $) 88)) (-2602 (($ $) 76)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3753 (($ $) 67)) (-4339 (((-112) $ $) NIL)) (-2712 (($ $) 86)) (-2579 (($ $) 74)) (-3140 (((-570) $) 129)) (-4087 (($ $) 91)) (-2622 (($ $) 78)) (-2450 (($) NIL T CONST)) (-3670 (($ $) NIL)) (-4378 (((-3 (-570) "failed") $) 128) (((-3 (-413 (-570)) "failed") $) 125)) (-3080 (((-570) $) 126) (((-413 (-570)) $) 123)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) 104)) (-1992 (((-413 (-570)) $ (-777)) 118) (((-413 (-570)) $ (-777) (-777)) 117)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-3430 (((-928)) 29) (((-928) (-928)) NIL (|has| $ (-6 -4439)))) (-1522 (((-112) $) NIL)) (-1314 (($) 46)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3157 (((-570) $) 42)) (-2081 (((-112) $) 100)) (-2598 (($ $ (-570)) NIL)) (-2610 (($ $) NIL)) (-2761 (((-112) $) 98)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) 64) (($) 38 (-12 (-1754 (|has| $ (-6 -4431))) (-1754 (|has| $ (-6 -4439)))))) (-3787 (($ $ $) 63) (($) 37 (-12 (-1754 (|has| $ (-6 -4431))) (-1754 (|has| $ (-6 -4439)))))) (-2972 (((-570) $) 27)) (-2983 (($ $) 33)) (-1347 (($ $) 68)) (-2635 (($ $) 73)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-3690 (((-928) (-570)) NIL (|has| $ (-6 -4439)))) (-3479 (((-1129) $) 102)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL)) (-3739 (($ $) NIL)) (-2539 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) 111)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1907 (((-570) $) 28)) (-2694 (($) 45)) (-4387 (($ $) 72)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2784 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4439)))) (-3447 (($ $ (-777)) NIL) (($ $) 105)) (-4173 (((-928) (-570)) NIL (|has| $ (-6 -4439)))) (-4099 (($ $) 89)) (-2634 (($ $) 79)) (-2746 (($ $) 90)) (-2611 (($ $) 77)) (-2723 (($ $) 87)) (-2590 (($ $) 75)) (-1416 (((-384) $) 114) (((-227) $) 14) (((-899 (-384)) $) NIL) (((-542) $) 52)) (-3735 (((-868) $) 49) (($ (-570)) 71) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 71) (($ (-413 (-570))) NIL)) (-2744 (((-777)) NIL T CONST)) (-3754 (($ $) NIL)) (-3804 (((-928)) 36) (((-928) (-928)) NIL (|has| $ (-6 -4439)))) (-1859 (((-112) $ $) NIL)) (-4358 (((-928)) 25)) (-4138 (($ $) 94)) (-2671 (($ $) 82) (($ $ $) 121)) (-1681 (((-112) $ $) NIL)) (-4108 (($ $) 92)) (-2647 (($ $) 80)) (-4161 (($ $) 97)) (-2691 (($ $) 85)) (-1509 (($ $) 95)) (-2701 (($ $) 83)) (-4150 (($ $) 96)) (-2681 (($ $) 84)) (-4123 (($ $) 93)) (-2660 (($ $) 81)) (-1423 (($ $) 120)) (-1812 (($) 23 T CONST)) (-1823 (($) 43 T CONST)) (-2892 (((-1168) $) 18) (((-1168) $ (-112)) 20) (((-1281) (-828) $) 21) (((-1281) (-828) $ (-112)) 22)) (-4118 (($ $) 108)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-3829 (($ $ $) 110)) (-2924 (((-112) $ $) 57)) (-2904 (((-112) $ $) 54)) (-2872 (((-112) $ $) 65)) (-2913 (((-112) $ $) 56)) (-2894 (((-112) $ $) 53)) (-2975 (($ $ $) 44) (($ $ (-570)) 66)) (-2965 (($ $) 58) (($ $ $) 60)) (-2954 (($ $ $) 59)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 69) (($ $ (-413 (-570))) 153) (($ $ $) 70)) (* (($ (-928) $) 34) (($ (-777) $) NIL) (($ (-570) $) 62) (($ $ $) 61) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-227) (-13 (-410) (-235) (-834) (-1211) (-620 (-542)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2694 ($)) (-15 -2983 ($ $)) (-15 -1347 ($ $)) (-15 -2671 ($ $ $)) (-15 -4118 ($ $)) (-15 -3829 ($ $ $)) (-15 -1992 ((-413 (-570)) $ (-777))) (-15 -1992 ((-413 (-570)) $ (-777) (-777)))))) (T -227))
-((** (*1 *1 *1 *1) (-5 *1 (-227))) (-2975 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-227)))) (-2694 (*1 *1) (-5 *1 (-227))) (-2983 (*1 *1 *1) (-5 *1 (-227))) (-1347 (*1 *1 *1) (-5 *1 (-227))) (-2671 (*1 *1 *1 *1) (-5 *1 (-227))) (-4118 (*1 *1 *1) (-5 *1 (-227))) (-3829 (*1 *1 *1 *1) (-5 *1 (-227))) (-1992 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227)))) (-1992 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227)))))
-(-13 (-410) (-235) (-834) (-1211) (-620 (-542)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2694 ($)) (-15 -2983 ($ $)) (-15 -1347 ($ $)) (-15 -2671 ($ $ $)) (-15 -4118 ($ $)) (-15 -3829 ($ $ $)) (-15 -1992 ((-413 (-570)) $ (-777))) (-15 -1992 ((-413 (-570)) $ (-777) (-777)))))
-((-1794 (((-171 (-227)) (-777) (-171 (-227))) 11) (((-227) (-777) (-227)) 12)) (-1316 (((-171 (-227)) (-171 (-227))) 13) (((-227) (-227)) 14)) (-3868 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 19) (((-227) (-227) (-227)) 22)) (-3571 (((-171 (-227)) (-171 (-227))) 27) (((-227) (-227)) 26)) (-1801 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 57) (((-227) (-227) (-227)) 49)) (-3614 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 62) (((-227) (-227) (-227)) 60)) (-2565 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 15) (((-227) (-227) (-227)) 16)) (-2051 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 17) (((-227) (-227) (-227)) 18)) (-2228 (((-171 (-227)) (-171 (-227))) 74) (((-227) (-227)) 73)) (-3022 (((-227) (-227)) 68) (((-171 (-227)) (-171 (-227))) 72)) (-4118 (((-171 (-227)) (-171 (-227))) 8) (((-227) (-227)) 9)) (-3829 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 35) (((-227) (-227) (-227)) 31)))
-(((-228) (-10 -7 (-15 -4118 ((-227) (-227))) (-15 -4118 ((-171 (-227)) (-171 (-227)))) (-15 -3829 ((-227) (-227) (-227))) (-15 -3829 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1316 ((-227) (-227))) (-15 -1316 ((-171 (-227)) (-171 (-227)))) (-15 -3571 ((-227) (-227))) (-15 -3571 ((-171 (-227)) (-171 (-227)))) (-15 -1794 ((-227) (-777) (-227))) (-15 -1794 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -2565 ((-227) (-227) (-227))) (-15 -2565 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1801 ((-227) (-227) (-227))) (-15 -1801 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2051 ((-227) (-227) (-227))) (-15 -2051 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3614 ((-227) (-227) (-227))) (-15 -3614 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3022 ((-171 (-227)) (-171 (-227)))) (-15 -3022 ((-227) (-227))) (-15 -2228 ((-227) (-227))) (-15 -2228 ((-171 (-227)) (-171 (-227)))) (-15 -3868 ((-227) (-227) (-227))) (-15 -3868 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))) (T -228))
-((-3868 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3868 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2228 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2228 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3022 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3022 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3614 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3614 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2051 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2051 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1801 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1801 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2565 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2565 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1794 (*1 *2 *3 *2) (-12 (-5 *2 (-171 (-227))) (-5 *3 (-777)) (-5 *1 (-228)))) (-1794 (*1 *2 *3 *2) (-12 (-5 *2 (-227)) (-5 *3 (-777)) (-5 *1 (-228)))) (-3571 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3571 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1316 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1316 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3829 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3829 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-4118 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-4118 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))))
-(-10 -7 (-15 -4118 ((-227) (-227))) (-15 -4118 ((-171 (-227)) (-171 (-227)))) (-15 -3829 ((-227) (-227) (-227))) (-15 -3829 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1316 ((-227) (-227))) (-15 -1316 ((-171 (-227)) (-171 (-227)))) (-15 -3571 ((-227) (-227))) (-15 -3571 ((-171 (-227)) (-171 (-227)))) (-15 -1794 ((-227) (-777) (-227))) (-15 -1794 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -2565 ((-227) (-227) (-227))) (-15 -2565 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1801 ((-227) (-227) (-227))) (-15 -1801 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2051 ((-227) (-227) (-227))) (-15 -2051 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3614 ((-227) (-227) (-227))) (-15 -3614 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3022 ((-171 (-227)) (-171 (-227)))) (-15 -3022 ((-227) (-227))) (-15 -2228 ((-227) (-227))) (-15 -2228 ((-171 (-227)) (-171 (-227)))) (-15 -3868 ((-227) (-227) (-227))) (-15 -3868 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) NIL)) (-4331 (($ $ $) NIL)) (-2841 (($ (-1276 |#1|)) NIL) (($ $) NIL)) (-2866 (($ |#1| |#1| |#1|) 33)) (-1813 (((-112) $) NIL)) (-3308 (($ $ (-570) (-570)) NIL)) (-1883 (($ $ (-570) (-570)) NIL)) (-2390 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-3357 (($ $) NIL)) (-1837 (((-112) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3954 (($ $ (-570) (-570) $) NIL)) (-3895 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-3871 (($ $ (-570) (-1276 |#1|)) NIL)) (-2898 (($ $ (-570) (-1276 |#1|)) NIL)) (-3944 (($ |#1| |#1| |#1|) 32)) (-4124 (($ (-777) |#1|) NIL)) (-2450 (($) NIL T CONST)) (-3936 (($ $) NIL (|has| |#1| (-311)))) (-2653 (((-1276 |#1|) $ (-570)) NIL)) (-4304 (($ |#1|) 31)) (-2186 (($ |#1|) 30)) (-1669 (($ |#1|) 29)) (-3934 (((-777) $) NIL (|has| |#1| (-562)))) (-3790 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3712 ((|#1| $ (-570) (-570)) NIL)) (-2836 (((-650 |#1|) $) NIL)) (-1645 (((-777) $) NIL (|has| |#1| (-562)))) (-4239 (((-650 (-1276 |#1|)) $) NIL (|has| |#1| (-562)))) (-3153 (((-777) $) NIL)) (-4286 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2265 ((|#1| $) NIL (|has| |#1| (-6 (-4450 "*"))))) (-3118 (((-570) $) NIL)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3392 (((-570) $) NIL)) (-1555 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#1|))) 11)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3747 (((-650 (-650 |#1|)) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4260 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3989 (($) 12)) (-3855 (($ $ $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-1990 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-3055 (((-112) $) NIL)) (-3154 ((|#1| $) NIL (|has| |#1| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3541 (((-1276 |#1|) $ (-570)) NIL)) (-3735 (($ (-1276 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3317 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-570) $) NIL) (((-1276 |#1|) $ (-1276 |#1|)) 15) (((-1276 |#1|) (-1276 |#1|) $) NIL) (((-950 |#1|) $ (-950 |#1|)) 21)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-229 |#1|) (-13 (-693 |#1| (-1276 |#1|) (-1276 |#1|)) (-10 -8 (-15 * ((-950 |#1|) $ (-950 |#1|))) (-15 -3989 ($)) (-15 -1669 ($ |#1|)) (-15 -2186 ($ |#1|)) (-15 -4304 ($ |#1|)) (-15 -3944 ($ |#1| |#1| |#1|)) (-15 -2866 ($ |#1| |#1| |#1|)))) (-13 (-368) (-1211))) (T -229))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211))) (-5 *1 (-229 *3)))) (-3989 (*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))) (-1669 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))) (-2186 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))) (-4304 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))) (-3944 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))) (-2866 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))))
-(-13 (-693 |#1| (-1276 |#1|) (-1276 |#1|)) (-10 -8 (-15 * ((-950 |#1|) $ (-950 |#1|))) (-15 -3989 ($)) (-15 -1669 ($ |#1|)) (-15 -2186 ($ |#1|)) (-15 -4304 ($ |#1|)) (-15 -3944 ($ |#1| |#1| |#1|)) (-15 -2866 ($ |#1| |#1| |#1|))))
-((-1591 (($ (-1 (-112) |#2|) $) 16)) (-2513 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 27)) (-2271 (($) NIL) (($ (-650 |#2|)) 11)) (-2872 (((-112) $ $) 25)))
-(((-230 |#1| |#2|) (-10 -8 (-15 -1591 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2513 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2513 (|#1| |#2| |#1|)) (-15 -2271 (|#1| (-650 |#2|))) (-15 -2271 (|#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-231 |#2|) (-1109)) (T -230))
-NIL
-(-10 -8 (-15 -1591 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2513 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2513 (|#1| |#2| |#1|)) (-15 -2271 (|#1| (-650 |#2|))) (-15 -2271 (|#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-1591 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-2271 (($) 50) (($ (-650 |#1|)) 49)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-3723 ((|#2| $ (-777) |#2|) 11)) (-3713 ((|#2| $ (-777)) 10)) (-4287 (($) 8)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 26)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 13)))
+(((-215 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -4287 ($)) (-15 -3713 (|#2| $ (-777))) (-15 -3723 (|#2| $ (-777) |#2|)))) (-928) (-1109)) (T -215))
+((-4287 (*1 *1) (-12 (-5 *1 (-215 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1109)))) (-3713 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *2 (-1109)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928)))) (-3723 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928)) (-4 *2 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -4287 ($)) (-15 -3713 (|#2| $ (-777))) (-15 -3723 (|#2| $ (-777) |#2|))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3807 (((-1282) $) 37) (((-1282) $ (-928) (-928)) 44)) (-1877 (($ $ (-998)) 19) (((-247 (-1168)) $ (-1186)) 15)) (-4131 (((-1282) $) 35)) (-3735 (((-868) $) 32) (($ (-650 |#1|)) 8)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $ $) 27)) (-2953 (($ $ $) 22)))
+(((-216 |#1|) (-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1877 ($ $ (-998))) (-15 -1877 ((-247 (-1168)) $ (-1186))) (-15 -2953 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $)) (-15 -3807 ((-1282) $ (-928) (-928))))) (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $))))) (T -216))
+((-1877 (*1 *1 *1 *2) (-12 (-5 *2 (-998)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $))))))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-247 (-1168))) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ *3)) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $))))))) (-2953 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $))))))) (-2965 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $))))))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 (*2 $)) (-15 -3807 (*2 $))))))) (-3807 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 (*2 $)) (-15 -3807 (*2 $))))))) (-3807 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 (*2 $)) (-15 -3807 (*2 $))))))))
+(-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1877 ($ $ (-998))) (-15 -1877 ((-247 (-1168)) $ (-1186))) (-15 -2953 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $)) (-15 -3807 ((-1282) $ (-928) (-928)))))
+((-1623 ((|#2| |#4| (-1 |#2| |#2|)) 49)))
+(((-217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1623 (|#2| |#4| (-1 |#2| |#2|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -217))
+((-1623 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-368)) (-4 *6 (-1253 (-413 *2))) (-4 *2 (-1253 *5)) (-5 *1 (-217 *5 *2 *6 *3)) (-4 *3 (-347 *5 *2 *6)))))
+(-10 -7 (-15 -1623 (|#2| |#4| (-1 |#2| |#2|))))
+((-2774 ((|#2| |#2| (-777) |#2|) 58)) (-1531 ((|#2| |#2| (-777) |#2|) 54)) (-1606 (((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -1710 |#2|)))) 82)) (-1492 (((-650 (-2 (|:| |deg| (-777)) (|:| -1710 |#2|))) |#2|) 76)) (-3053 (((-112) |#2|) 74)) (-2595 (((-424 |#2|) |#2|) 94)) (-3739 (((-424 |#2|) |#2|) 93)) (-2849 ((|#2| |#2| (-777) |#2|) 52)) (-2916 (((-2 (|:| |cont| |#1|) (|:| -2773 (-650 (-2 (|:| |irr| |#2|) (|:| -2227 (-570)))))) |#2| (-112)) 88)))
+(((-218 |#1| |#2|) (-10 -7 (-15 -3739 ((-424 |#2|) |#2|)) (-15 -2595 ((-424 |#2|) |#2|)) (-15 -2916 ((-2 (|:| |cont| |#1|) (|:| -2773 (-650 (-2 (|:| |irr| |#2|) (|:| -2227 (-570)))))) |#2| (-112))) (-15 -1492 ((-650 (-2 (|:| |deg| (-777)) (|:| -1710 |#2|))) |#2|)) (-15 -1606 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -1710 |#2|))))) (-15 -2849 (|#2| |#2| (-777) |#2|)) (-15 -1531 (|#2| |#2| (-777) |#2|)) (-15 -2774 (|#2| |#2| (-777) |#2|)) (-15 -3053 ((-112) |#2|))) (-354) (-1253 |#1|)) (T -218))
+((-3053 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-2774 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-1531 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-2849 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -1710 *5)))) (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5)) (-5 *1 (-218 *4 *5)))) (-1492 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -1710 *3)))) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-2916 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-354)) (-5 *2 (-2 (|:| |cont| *5) (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570))))))) (-5 *1 (-218 *5 *3)) (-4 *3 (-1253 *5)))) (-2595 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -3739 ((-424 |#2|) |#2|)) (-15 -2595 ((-424 |#2|) |#2|)) (-15 -2916 ((-2 (|:| |cont| |#1|) (|:| -2773 (-650 (-2 (|:| |irr| |#2|) (|:| -2227 (-570)))))) |#2| (-112))) (-15 -1492 ((-650 (-2 (|:| |deg| (-777)) (|:| -1710 |#2|))) |#2|)) (-15 -1606 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -1710 |#2|))))) (-15 -2849 (|#2| |#2| (-777) |#2|)) (-15 -1531 (|#2| |#2| (-777) |#2|)) (-15 -2774 (|#2| |#2| (-777) |#2|)) (-15 -3053 ((-112) |#2|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-570) $) NIL (|has| (-570) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-570) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| (-570) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-570) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1774 (((-112) $) NIL (|has| (-570) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-570) (-856)))) (-1352 (($ (-1 (-570) (-570)) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-570) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-2962 (((-570) $) NIL (|has| (-570) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-570) $) NIL)) (-4257 (($ (-413 (-570))) 9)) (-1417 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 10) $) 10)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 (((-570) $) NIL (|has| (-570) (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| (-570) (-826)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2975 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL)))
+(((-219) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 10)) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -4257 ($ (-413 (-570))))))) (T -219))
+((-2442 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))) (-4257 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 10)) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -4257 ($ (-413 (-570))))))
+((-2417 (((-112) $ $) NIL)) (-4323 (((-1127) $) 13)) (-4268 (((-1168) $) NIL)) (-2765 (((-489) $) 10)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 23) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-1144) $) 15)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-220) (-13 (-1092) (-10 -8 (-15 -2765 ((-489) $)) (-15 -4323 ((-1127) $)) (-15 -3515 ((-1144) $))))) (T -220))
+((-2765 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-220)))) (-4323 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-220)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-220)))))
+(-13 (-1092) (-10 -8 (-15 -2765 ((-489) $)) (-15 -4323 ((-1127) $)) (-15 -3515 ((-1144) $))))
+((-3722 (((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168)) 29) (((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|))) 25)) (-1798 (((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112)) 17)))
+(((-221 |#1| |#2|) (-10 -7 (-15 -3722 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -3722 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -1798 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -221))
+((-1798 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1186)) (-5 *6 (-112)) (-4 *7 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-4 *3 (-13 (-1212) (-966) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-221 *7 *3)) (-5 *5 (-849 *3)))) (-3722 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1101 (-849 *3))) (-5 *5 (-1168)) (-4 *3 (-13 (-1212) (-966) (-29 *6))) (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-221 *6 *3)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-849 *3))) (-4 *3 (-13 (-1212) (-966) (-29 *5))) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-221 *5 *3)))))
+(-10 -7 (-15 -3722 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -3722 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -1798 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112))))
+((-3722 (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168)) 49) (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|))))) 46) (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168)) 50) (((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|)))) 22)))
+(((-222 |#1|) (-10 -7 (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (T -222))
+((-3722 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1101 (-849 (-413 (-959 *6))))) (-5 *5 (-1168)) (-5 *3 (-413 (-959 *6))) (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *6)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-849 (-413 (-959 *5))))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *5)))) (-3722 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1101 (-849 (-320 *6)))) (-5 *5 (-1168)) (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *6)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1101 (-849 (-320 *5)))) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-222 *5)))))
+(-10 -7 (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -3722 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168))))
+((-3529 (((-2 (|:| -4239 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|)) 26)) (-1388 (((-650 (-320 |#2|)) (-320 |#2|) (-928)) 54)))
+(((-223 |#1| |#2|) (-10 -7 (-15 -3529 ((-2 (|:| -4239 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1388 ((-650 (-320 |#2|)) (-320 |#2|) (-928)))) (-1058) (-562)) (T -223))
+((-1388 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *6 (-562)) (-5 *2 (-650 (-320 *6))) (-5 *1 (-223 *5 *6)) (-5 *3 (-320 *6)) (-4 *5 (-1058)))) (-3529 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-2 (|:| -4239 (-1182 *4)) (|:| |deg| (-928)))) (-5 *1 (-223 *4 *5)) (-5 *3 (-1182 *4)) (-4 *5 (-562)))))
+(-10 -7 (-15 -3529 ((-2 (|:| -4239 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1388 ((-650 (-320 |#2|)) (-320 |#2|) (-928))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3979 ((|#1| $) NIL)) (-3240 ((|#1| $) 30)) (-4095 (((-112) $ (-777)) NIL)) (-3761 (($) NIL T CONST)) (-3663 (($ $) NIL)) (-2347 (($ $) 39)) (-3575 ((|#1| |#1| $) NIL)) (-1568 ((|#1| $) NIL)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-3788 (((-777) $) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2192 ((|#1| $) NIL)) (-1756 ((|#1| |#1| $) 35)) (-1499 ((|#1| |#1| $) 37)) (-2599 (($ |#1| $) NIL)) (-1435 (((-777) $) 33)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-4336 ((|#1| $) NIL)) (-2273 ((|#1| $) 31)) (-2886 ((|#1| $) 29)) (-4223 ((|#1| $) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3218 ((|#1| |#1| $) NIL)) (-3366 (((-112) $) 9)) (-3006 (($) NIL)) (-3988 ((|#1| $) NIL)) (-4207 (($) NIL) (($ (-650 |#1|)) 16)) (-2766 (((-777) $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1852 ((|#1| $) 13)) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) NIL)) (-3407 ((|#1| $) NIL)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-224 |#1|) (-13 (-257 |#1|) (-10 -8 (-15 -4207 ($ (-650 |#1|))))) (-1109)) (T -224))
+((-4207 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-224 *3)))))
+(-13 (-257 |#1|) (-10 -8 (-15 -4207 ($ (-650 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1592 (($ (-320 |#1|)) 27)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3771 (((-112) $) NIL)) (-4379 (((-3 (-320 |#1|) "failed") $) NIL)) (-3080 (((-320 |#1|) $) NIL)) (-1891 (($ $) 35)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-1352 (($ (-1 (-320 |#1|) (-320 |#1|)) $) NIL)) (-1865 (((-320 |#1|) $) NIL)) (-3556 (($ $) 34)) (-4268 (((-1168) $) NIL)) (-3114 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2340 (($ (-777)) NIL)) (-2306 (($ $) 36)) (-3221 (((-570) $) NIL)) (-3735 (((-868) $) 68) (($ (-570)) NIL) (($ (-320 |#1|)) NIL)) (-1983 (((-320 |#1|) $ $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 29 T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) 32)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 23)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 28) (($ (-320 |#1|) $) 22)))
+(((-225 |#1| |#2|) (-13 (-626 (-320 |#1|)) (-1047 (-320 |#1|)) (-10 -8 (-15 -1865 ((-320 |#1|) $)) (-15 -3556 ($ $)) (-15 -1891 ($ $)) (-15 -1983 ((-320 |#1|) $ $)) (-15 -2340 ($ (-777))) (-15 -3114 ((-112) $)) (-15 -3771 ((-112) $)) (-15 -3221 ((-570) $)) (-15 -1352 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -1592 ($ (-320 |#1|))) (-15 -2306 ($ $)))) (-13 (-1058) (-856)) (-650 (-1186))) (T -225))
+((-1865 (*1 *2 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3556 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1891 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1983 (*1 *2 *1 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2340 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3114 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-320 *3) (-320 *3))) (-4 *3 (-13 (-1058) (-856))) (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))) (-1592 (*1 *1 *2) (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856))) (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))) (-2306 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))))
+(-13 (-626 (-320 |#1|)) (-1047 (-320 |#1|)) (-10 -8 (-15 -1865 ((-320 |#1|) $)) (-15 -3556 ($ $)) (-15 -1891 ($ $)) (-15 -1983 ((-320 |#1|) $ $)) (-15 -2340 ($ (-777))) (-15 -3114 ((-112) $)) (-15 -3771 ((-112) $)) (-15 -3221 ((-570) $)) (-15 -1352 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -1592 ($ (-320 |#1|))) (-15 -2306 ($ $))))
+((-4056 (((-112) (-1168)) 26)) (-1964 (((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112)) 35)) (-3712 (((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112)) 84) (((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112)) 85)))
+(((-226 |#1| |#2|) (-10 -7 (-15 -4056 ((-112) (-1168))) (-15 -1964 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -3712 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -3712 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-29 |#1|))) (T -226))
+((-3712 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1182 *6)) (-5 *4 (-849 *6)) (-4 *6 (-13 (-1212) (-29 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-226 *5 *6)))) (-3712 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-959 *6)) (-5 *4 (-1186)) (-5 *5 (-849 *7)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *7 (-13 (-1212) (-29 *6))) (-5 *1 (-226 *6 *7)))) (-1964 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-849 *4)) (-5 *3 (-618 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1212) (-29 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-226 *6 *4)))) (-4056 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112)) (-5 *1 (-226 *4 *5)) (-4 *5 (-13 (-1212) (-29 *4))))))
+(-10 -7 (-15 -4056 ((-112) (-1168))) (-15 -1964 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -3712 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -3712 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 99)) (-3113 (((-570) $) 35)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3235 (($ $) NIL)) (-2735 (($ $) 88)) (-2602 (($ $) 76)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-3754 (($ $) 67)) (-2707 (((-112) $ $) NIL)) (-2712 (($ $) 86)) (-2579 (($ $) 74)) (-2249 (((-570) $) 129)) (-4087 (($ $) 91)) (-2622 (($ $) 78)) (-3761 (($) NIL T CONST)) (-3601 (($ $) NIL)) (-4379 (((-3 (-570) "failed") $) 128) (((-3 (-413 (-570)) "failed") $) 125)) (-3080 (((-570) $) 126) (((-413 (-570)) $) 123)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) 104)) (-2692 (((-413 (-570)) $ (-777)) 118) (((-413 (-570)) $ (-777) (-777)) 117)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3431 (((-928)) 29) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-3703 (((-112) $) NIL)) (-1315 (($) 46)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-4331 (((-570) $) 42)) (-4340 (((-112) $) 100)) (-2665 (($ $ (-570)) NIL)) (-2771 (($ $) NIL)) (-1774 (((-112) $) 98)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) 64) (($) 38 (-12 (-1753 (|has| $ (-6 -4432))) (-1753 (|has| $ (-6 -4440)))))) (-2222 (($ $ $) 63) (($) 37 (-12 (-1753 (|has| $ (-6 -4432))) (-1753 (|has| $ (-6 -4440)))))) (-2973 (((-570) $) 27)) (-3126 (($ $) 33)) (-1348 (($ $) 68)) (-2635 (($ $) 73)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2542 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-3479 (((-1129) $) 102)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL)) (-2962 (($ $) NIL)) (-2539 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) 111)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3011 (((-570) $) 28)) (-2319 (($) 45)) (-4388 (($ $) 72)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3819 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-3447 (($ $ (-777)) NIL) (($ $) 105)) (-1792 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-4098 (($ $) 89)) (-2634 (($ $) 79)) (-2746 (($ $) 90)) (-2612 (($ $) 77)) (-2723 (($ $) 87)) (-2590 (($ $) 75)) (-1417 (((-384) $) 114) (((-227) $) 14) (((-899 (-384)) $) NIL) (((-542) $) 52)) (-3735 (((-868) $) 49) (($ (-570)) 71) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 71) (($ (-413 (-570))) NIL)) (-1609 (((-777)) NIL T CONST)) (-1963 (($ $) NIL)) (-2346 (((-928)) 36) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-3866 (((-112) $ $) NIL)) (-4360 (((-928)) 25)) (-4137 (($ $) 94)) (-2671 (($ $) 82) (($ $ $) 121)) (-2795 (((-112) $ $) NIL)) (-4112 (($ $) 92)) (-2647 (($ $) 80)) (-4157 (($ $) 97)) (-2691 (($ $) 85)) (-1510 (($ $) 95)) (-2701 (($ $) 83)) (-4150 (($ $) 96)) (-2681 (($ $) 84)) (-4123 (($ $) 93)) (-2660 (($ $) 81)) (-1367 (($ $) 120)) (-1814 (($) 23 T CONST)) (-1824 (($) 43 T CONST)) (-3637 (((-1168) $) 18) (((-1168) $ (-112)) 20) (((-1282) (-828) $) 21) (((-1282) (-828) $ (-112)) 22)) (-2430 (($ $) 108)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-1387 (($ $ $) 110)) (-2924 (((-112) $ $) 57)) (-2904 (((-112) $ $) 54)) (-2872 (((-112) $ $) 65)) (-2914 (((-112) $ $) 56)) (-2894 (((-112) $ $) 53)) (-2975 (($ $ $) 44) (($ $ (-570)) 66)) (-2965 (($ $) 58) (($ $ $) 60)) (-2953 (($ $ $) 59)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 69) (($ $ (-413 (-570))) 153) (($ $ $) 70)) (* (($ (-928) $) 34) (($ (-777) $) NIL) (($ (-570) $) 62) (($ $ $) 61) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-227) (-13 (-410) (-235) (-834) (-1212) (-620 (-542)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2319 ($)) (-15 -3126 ($ $)) (-15 -1348 ($ $)) (-15 -2671 ($ $ $)) (-15 -2430 ($ $)) (-15 -1387 ($ $ $)) (-15 -2692 ((-413 (-570)) $ (-777))) (-15 -2692 ((-413 (-570)) $ (-777) (-777)))))) (T -227))
+((** (*1 *1 *1 *1) (-5 *1 (-227))) (-2975 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-227)))) (-2319 (*1 *1) (-5 *1 (-227))) (-3126 (*1 *1 *1) (-5 *1 (-227))) (-1348 (*1 *1 *1) (-5 *1 (-227))) (-2671 (*1 *1 *1 *1) (-5 *1 (-227))) (-2430 (*1 *1 *1) (-5 *1 (-227))) (-1387 (*1 *1 *1 *1) (-5 *1 (-227))) (-2692 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227)))) (-2692 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227)))))
+(-13 (-410) (-235) (-834) (-1212) (-620 (-542)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2319 ($)) (-15 -3126 ($ $)) (-15 -1348 ($ $)) (-15 -2671 ($ $ $)) (-15 -2430 ($ $)) (-15 -1387 ($ $ $)) (-15 -2692 ((-413 (-570)) $ (-777))) (-15 -2692 ((-413 (-570)) $ (-777) (-777)))))
+((-1414 (((-171 (-227)) (-777) (-171 (-227))) 11) (((-227) (-777) (-227)) 12)) (-1666 (((-171 (-227)) (-171 (-227))) 13) (((-227) (-227)) 14)) (-1816 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 19) (((-227) (-227) (-227)) 22)) (-3915 (((-171 (-227)) (-171 (-227))) 27) (((-227) (-227)) 26)) (-1487 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 57) (((-227) (-227) (-227)) 49)) (-4317 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 62) (((-227) (-227) (-227)) 60)) (-3612 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 15) (((-227) (-227) (-227)) 16)) (-2135 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 17) (((-227) (-227) (-227)) 18)) (-3322 (((-171 (-227)) (-171 (-227))) 74) (((-227) (-227)) 73)) (-3543 (((-227) (-227)) 68) (((-171 (-227)) (-171 (-227))) 72)) (-2430 (((-171 (-227)) (-171 (-227))) 8) (((-227) (-227)) 9)) (-1387 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 35) (((-227) (-227) (-227)) 31)))
+(((-228) (-10 -7 (-15 -2430 ((-227) (-227))) (-15 -2430 ((-171 (-227)) (-171 (-227)))) (-15 -1387 ((-227) (-227) (-227))) (-15 -1387 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1666 ((-227) (-227))) (-15 -1666 ((-171 (-227)) (-171 (-227)))) (-15 -3915 ((-227) (-227))) (-15 -3915 ((-171 (-227)) (-171 (-227)))) (-15 -1414 ((-227) (-777) (-227))) (-15 -1414 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -3612 ((-227) (-227) (-227))) (-15 -3612 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1487 ((-227) (-227) (-227))) (-15 -1487 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2135 ((-227) (-227) (-227))) (-15 -2135 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -4317 ((-227) (-227) (-227))) (-15 -4317 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3543 ((-171 (-227)) (-171 (-227)))) (-15 -3543 ((-227) (-227))) (-15 -3322 ((-227) (-227))) (-15 -3322 ((-171 (-227)) (-171 (-227)))) (-15 -1816 ((-227) (-227) (-227))) (-15 -1816 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))) (T -228))
+((-1816 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1816 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3322 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3322 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3543 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3543 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-4317 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-4317 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2135 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2135 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1487 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1487 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3612 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3612 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1414 (*1 *2 *3 *2) (-12 (-5 *2 (-171 (-227))) (-5 *3 (-777)) (-5 *1 (-228)))) (-1414 (*1 *2 *3 *2) (-12 (-5 *2 (-227)) (-5 *3 (-777)) (-5 *1 (-228)))) (-3915 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3915 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1666 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1666 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1387 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1387 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2430 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2430 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))))
+(-10 -7 (-15 -2430 ((-227) (-227))) (-15 -2430 ((-171 (-227)) (-171 (-227)))) (-15 -1387 ((-227) (-227) (-227))) (-15 -1387 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1666 ((-227) (-227))) (-15 -1666 ((-171 (-227)) (-171 (-227)))) (-15 -3915 ((-227) (-227))) (-15 -3915 ((-171 (-227)) (-171 (-227)))) (-15 -1414 ((-227) (-777) (-227))) (-15 -1414 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -3612 ((-227) (-227) (-227))) (-15 -3612 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1487 ((-227) (-227) (-227))) (-15 -1487 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2135 ((-227) (-227) (-227))) (-15 -2135 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -4317 ((-227) (-227) (-227))) (-15 -4317 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3543 ((-171 (-227)) (-171 (-227)))) (-15 -3543 ((-227) (-227))) (-15 -3322 ((-227) (-227))) (-15 -3322 ((-171 (-227)) (-171 (-227)))) (-15 -1816 ((-227) (-227) (-227))) (-15 -1816 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) NIL)) (-2617 (($ $ $) NIL)) (-3115 (($ (-1277 |#1|)) NIL) (($ $) NIL)) (-2866 (($ |#1| |#1| |#1|) 33)) (-1587 (((-112) $) NIL)) (-3166 (($ $ (-570) (-570)) NIL)) (-4062 (($ $ (-570) (-570)) NIL)) (-1338 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-3660 (($ $) NIL)) (-3639 (((-112) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3190 (($ $ (-570) (-570) $) NIL)) (-3894 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-1850 (($ $ (-570) (-1277 |#1|)) NIL)) (-3693 (($ $ (-570) (-1277 |#1|)) NIL)) (-3094 (($ |#1| |#1| |#1|) 32)) (-2465 (($ (-777) |#1|) NIL)) (-3761 (($) NIL T CONST)) (-4321 (($ $) NIL (|has| |#1| (-311)))) (-1991 (((-1277 |#1|) $ (-570)) NIL)) (-3624 (($ |#1|) 31)) (-4175 (($ |#1|) 30)) (-2687 (($ |#1|) 29)) (-3933 (((-777) $) NIL (|has| |#1| (-562)))) (-3789 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3713 ((|#1| $ (-570) (-570)) NIL)) (-2835 (((-650 |#1|) $) NIL)) (-2454 (((-777) $) NIL (|has| |#1| (-562)))) (-4296 (((-650 (-1277 |#1|)) $) NIL (|has| |#1| (-562)))) (-3155 (((-777) $) NIL)) (-4287 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2481 ((|#1| $) NIL (|has| |#1| (-6 (-4451 "*"))))) (-2055 (((-570) $) NIL)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2755 (((-570) $) NIL)) (-4067 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#1|))) 11)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3037 (((-650 (-650 |#1|)) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3174 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3617 (($) 12)) (-1664 (($ $ $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2682 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-2593 (((-112) $) NIL)) (-2371 ((|#1| $) NIL (|has| |#1| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-1743 (((-1277 |#1|) $ (-570)) NIL)) (-3735 (($ (-1277 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3251 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-570) $) NIL) (((-1277 |#1|) $ (-1277 |#1|)) 15) (((-1277 |#1|) (-1277 |#1|) $) NIL) (((-950 |#1|) $ (-950 |#1|)) 21)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-229 |#1|) (-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 * ((-950 |#1|) $ (-950 |#1|))) (-15 -3617 ($)) (-15 -2687 ($ |#1|)) (-15 -4175 ($ |#1|)) (-15 -3624 ($ |#1|)) (-15 -3094 ($ |#1| |#1| |#1|)) (-15 -2866 ($ |#1| |#1| |#1|)))) (-13 (-368) (-1212))) (T -229))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212))) (-5 *1 (-229 *3)))) (-3617 (*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-2687 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-4175 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-3624 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-3094 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-2866 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 * ((-950 |#1|) $ (-950 |#1|))) (-15 -3617 ($)) (-15 -2687 ($ |#1|)) (-15 -4175 ($ |#1|)) (-15 -3624 ($ |#1|)) (-15 -3094 ($ |#1| |#1| |#1|)) (-15 -2866 ($ |#1| |#1| |#1|))))
+((-3131 (($ (-1 (-112) |#2|) $) 16)) (-3076 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 27)) (-2535 (($) NIL) (($ (-650 |#2|)) 11)) (-2872 (((-112) $ $) 25)))
+(((-230 |#1| |#2|) (-10 -8 (-15 -3131 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3076 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3076 (|#1| |#2| |#1|)) (-15 -2535 (|#1| (-650 |#2|))) (-15 -2535 (|#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-231 |#2|) (-1109)) (T -230))
+NIL
+(-10 -8 (-15 -3131 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3076 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3076 (|#1| |#2| |#1|)) (-15 -2535 (|#1| (-650 |#2|))) (-15 -2535 (|#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3131 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-2535 (($) 50) (($ (-650 |#1|)) 49)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-231 |#1|) (-141) (-1109)) (T -231))
NIL
(-13 (-237 |t#1|))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
((-3447 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) 14) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 22) (($ $ (-777)) NIL) (($ $) 19)) (-2791 (($ $ (-1 |#2| |#2|)) 15) (($ $ (-1 |#2| |#2|) (-777)) 17) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)))
(((-232 |#1| |#2|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -2791 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -2791 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2791 (|#1| |#1| (-1186))) (-15 -2791 (|#1| |#1| (-650 (-1186)))) (-15 -2791 (|#1| |#1| (-1186) (-777))) (-15 -2791 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2791 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2791 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|)))) (-233 |#2|) (-1058)) (T -232))
NIL
(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -2791 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -2791 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2791 (|#1| |#1| (-1186))) (-15 -2791 (|#1| |#1| (-650 (-1186)))) (-15 -2791 (|#1| |#1| (-1186) (-777))) (-15 -2791 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2791 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2791 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $ (-1 |#1| |#1|)) 56) (($ $ (-1 |#1| |#1|) (-777)) 55) (($ $ (-650 (-1186)) (-650 (-777))) 48 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 47 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 46 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 45 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 43 (|has| |#1| (-235))) (($ $) 41 (|has| |#1| (-235)))) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1 |#1| |#1|)) 54) (($ $ (-1 |#1| |#1|) (-777)) 53) (($ $ (-650 (-1186)) (-650 (-777))) 52 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 51 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 50 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 49 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 44 (|has| |#1| (-235))) (($ $) 42 (|has| |#1| (-235)))) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $ (-1 |#1| |#1|)) 56) (($ $ (-1 |#1| |#1|) (-777)) 55) (($ $ (-650 (-1186)) (-650 (-777))) 48 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 47 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 46 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 45 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 43 (|has| |#1| (-235))) (($ $) 41 (|has| |#1| (-235)))) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1 |#1| |#1|)) 54) (($ $ (-1 |#1| |#1|) (-777)) 53) (($ $ (-650 (-1186)) (-650 (-777))) 52 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 51 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 50 (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 49 (|has| |#1| (-907 (-1186)))) (($ $ (-777)) 44 (|has| |#1| (-235))) (($ $) 42 (|has| |#1| (-235)))) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-233 |#1|) (-141) (-1058)) (T -233))
((-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-233 *3)) (-4 *3 (-1058)))) (-3447 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4)) (-4 *4 (-1058)))) (-2791 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-233 *3)) (-4 *3 (-1058)))) (-2791 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4)) (-4 *4 (-1058)))))
(-13 (-1058) (-10 -8 (-15 -3447 ($ $ (-1 |t#1| |t#1|))) (-15 -3447 ($ $ (-1 |t#1| |t#1|) (-777))) (-15 -2791 ($ $ (-1 |t#1| |t#1|))) (-15 -2791 ($ $ (-1 |t#1| |t#1|) (-777))) (IF (|has| |t#1| (-235)) (-6 (-235)) |%noBranch|) (IF (|has| |t#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|)))
@@ -898,1526 +898,1526 @@ NIL
(((-234 |#1|) (-10 -8 (-15 -2791 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-777))) (-15 -2791 (|#1| |#1|)) (-15 -3447 (|#1| |#1|))) (-235)) (T -234))
NIL
(-10 -8 (-15 -2791 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-777))) (-15 -2791 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $) 42) (($ $ (-777)) 40)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $) 41) (($ $ (-777)) 39)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $) 42) (($ $ (-777)) 40)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $) 41) (($ $ (-777)) 39)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-235) (-141)) (T -235))
((-3447 (*1 *1 *1) (-4 *1 (-235))) (-2791 (*1 *1 *1) (-4 *1 (-235))) (-3447 (*1 *1 *1 *2) (-12 (-4 *1 (-235)) (-5 *2 (-777)))) (-2791 (*1 *1 *1 *2) (-12 (-4 *1 (-235)) (-5 *2 (-777)))))
(-13 (-1058) (-10 -8 (-15 -3447 ($ $)) (-15 -2791 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -2791 ($ $ (-777)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2271 (($) 12) (($ (-650 |#2|)) NIL)) (-3915 (($ $) 14)) (-3748 (($ (-650 |#2|)) 10)) (-3735 (((-868) $) 21)))
-(((-236 |#1| |#2|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2271 (|#1| (-650 |#2|))) (-15 -2271 (|#1|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -3915 (|#1| |#1|))) (-237 |#2|) (-1109)) (T -236))
+((-2535 (($) 12) (($ (-650 |#2|)) NIL)) (-3916 (($ $) 14)) (-3749 (($ (-650 |#2|)) 10)) (-3735 (((-868) $) 21)))
+(((-236 |#1| |#2|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2535 (|#1| (-650 |#2|))) (-15 -2535 (|#1|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -3916 (|#1| |#1|))) (-237 |#2|) (-1109)) (T -236))
NIL
-(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2271 (|#1| (-650 |#2|))) (-15 -2271 (|#1|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -3915 (|#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-1591 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-2271 (($) 50) (($ (-650 |#1|)) 49)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2535 (|#1| (-650 |#2|))) (-15 -2535 (|#1|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -3916 (|#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3131 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-2535 (($) 50) (($ (-650 |#1|)) 49)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-237 |#1|) (-141) (-1109)) (T -237))
-((-2271 (*1 *1) (-12 (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-2271 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-237 *3)))) (-2513 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-2513 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))) (-1591 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))))
-(-13 (-107 |t#1|) (-152 |t#1|) (-10 -8 (-15 -2271 ($)) (-15 -2271 ($ (-650 |t#1|))) (IF (|has| $ (-6 -4448)) (PROGN (-15 -2513 ($ |t#1| $)) (-15 -2513 ($ (-1 (-112) |t#1|) $)) (-15 -1591 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2743 (((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1276 (-777))) "failed")) (|:| |hom| (-650 (-1276 (-777))))) (-298 (-959 (-570)))) 42)))
-(((-238) (-10 -7 (-15 -2743 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1276 (-777))) "failed")) (|:| |hom| (-650 (-1276 (-777))))) (-298 (-959 (-570))))))) (T -238))
-((-2743 (*1 *2 *3) (-12 (-5 *3 (-298 (-959 (-570)))) (-5 *2 (-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1276 (-777))) "failed")) (|:| |hom| (-650 (-1276 (-777)))))) (-5 *1 (-238)))))
-(-10 -7 (-15 -2743 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1276 (-777))) "failed")) (|:| |hom| (-650 (-1276 (-777))))) (-298 (-959 (-570))))))
-((-3403 (((-777)) 56)) (-4177 (((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 $) (-1276 $)) 53) (((-695 |#3|) (-695 $)) 44) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2184 (((-135)) 62)) (-3447 (($ $ (-1 |#3| |#3|) (-777)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-3735 (((-1276 |#3|) $) NIL) (($ |#3|) NIL) (((-868) $) NIL) (($ (-570)) 12) (($ (-413 (-570))) NIL)) (-2744 (((-777)) 15)) (-2975 (($ $ |#3|) 59)))
-(((-239 |#1| |#2| |#3|) (-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)) (-15 -2744 ((-777))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -4177 ((-695 |#3|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 |#1|) (-1276 |#1|))) (-15 -3403 ((-777))) (-15 -2975 (|#1| |#1| |#3|)) (-15 -2184 ((-135))) (-15 -3735 ((-1276 |#3|) |#1|))) (-240 |#2| |#3|) (-777) (-1226)) (T -239))
-((-2184 (*1 *2) (-12 (-14 *4 (-777)) (-4 *5 (-1226)) (-5 *2 (-135)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-3403 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1226)) (-5 *2 (-777)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-2744 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1226)) (-5 *2 (-777)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))))
-(-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)) (-15 -2744 ((-777))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -4177 ((-695 |#3|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 |#1|) (-1276 |#1|))) (-15 -3403 ((-777))) (-15 -2975 (|#1| |#1| |#3|)) (-15 -2184 ((-135))) (-15 -3735 ((-1276 |#3|) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-4028 (((-112) $) 73 (|has| |#2| (-132)))) (-3561 (($ (-928)) 126 (|has| |#2| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-3947 (($ $ $) 122 (|has| |#2| (-799)))) (-3596 (((-3 $ "failed") $ $) 75 (|has| |#2| (-132)))) (-3594 (((-112) $ (-777)) 8)) (-3403 (((-777)) 108 (|has| |#2| (-373)))) (-3140 (((-570) $) 120 (|has| |#2| (-854)))) (-3895 ((|#2| $ (-570) |#2|) 53 (|has| $ (-6 -4449)))) (-2450 (($) 7 T CONST)) (-4378 (((-3 (-570) "failed") $) 68 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) 65 (-1765 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) 62 (|has| |#2| (-1109)))) (-3080 (((-570) $) 67 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) 64 (-1765 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 63 (|has| |#2| (-1109)))) (-4177 (((-695 (-570)) (-695 $)) 107 (-1765 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 106 (-1765 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) 105 (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) 104 (|has| |#2| (-1058)))) (-3413 (((-3 $ "failed") $) 80 (|has| |#2| (-732)))) (-3336 (($) 111 (|has| |#2| (-373)))) (-3790 ((|#2| $ (-570) |#2|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#2| $ (-570)) 52)) (-1522 (((-112) $) 118 (|has| |#2| (-854)))) (-2836 (((-650 |#2|) $) 31 (|has| $ (-6 -4448)))) (-2081 (((-112) $) 82 (|has| |#2| (-732)))) (-2761 (((-112) $) 119 (|has| |#2| (-854)))) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 117 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2849 (((-650 |#2|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 116 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3776 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2|) $) 36)) (-2367 (((-928) $) 110 (|has| |#2| (-373)))) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#2| (-1109)))) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-2159 (($ (-928)) 109 (|has| |#2| (-373)))) (-3479 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3443 ((|#2| $) 43 (|has| (-570) (-856)))) (-1952 (($ $ |#2|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) 27 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 26 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 24 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#2| $ (-570) |#2|) 51) ((|#2| $ (-570)) 50)) (-2809 ((|#2| $ $) 125 (|has| |#2| (-1058)))) (-3791 (($ (-1276 |#2|)) 127)) (-2184 (((-135)) 124 (|has| |#2| (-368)))) (-3447 (($ $) 99 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 97 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 95 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 94 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 93 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 92 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 85 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 84 (|has| |#2| (-1058)))) (-3486 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4448))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-1276 |#2|) $) 128) (($ (-570)) 69 (-2740 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) 66 (-1765 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) 61 (|has| |#2| (-1109))) (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-2744 (((-777)) 103 (|has| |#2| (-1058)) CONST)) (-1859 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-4368 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4448)))) (-1423 (($ $) 121 (|has| |#2| (-854)))) (-1812 (($) 72 (|has| |#2| (-132)) CONST)) (-1823 (($) 83 (|has| |#2| (-732)) CONST)) (-2791 (($ $) 98 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 96 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 91 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 90 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 89 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 88 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 87 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 86 (|has| |#2| (-1058)))) (-2924 (((-112) $ $) 114 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2904 (((-112) $ $) 113 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2872 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-2913 (((-112) $ $) 115 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2894 (((-112) $ $) 112 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2975 (($ $ |#2|) 123 (|has| |#2| (-368)))) (-2965 (($ $ $) 102 (|has| |#2| (-1058))) (($ $) 101 (|has| |#2| (-1058)))) (-2954 (($ $ $) 70 (|has| |#2| (-25)))) (** (($ $ (-777)) 81 (|has| |#2| (-732))) (($ $ (-928)) 78 (|has| |#2| (-732)))) (* (($ (-570) $) 100 (|has| |#2| (-1058))) (($ $ $) 79 (|has| |#2| (-732))) (($ $ |#2|) 77 (|has| |#2| (-732))) (($ |#2| $) 76 (|has| |#2| (-732))) (($ (-777) $) 74 (|has| |#2| (-132))) (($ (-928) $) 71 (|has| |#2| (-25)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-240 |#1| |#2|) (-141) (-777) (-1226)) (T -240))
-((-3791 (*1 *1 *2) (-12 (-5 *2 (-1276 *4)) (-4 *4 (-1226)) (-4 *1 (-240 *3 *4)))) (-3561 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-240 *3 *4)) (-4 *4 (-1058)) (-4 *4 (-1226)))) (-2809 (*1 *2 *1 *1) (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1226)) (-4 *2 (-1058)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1226)) (-4 *2 (-732)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1226)) (-4 *2 (-732)))))
-(-13 (-610 (-570) |t#2|) (-619 (-1276 |t#2|)) (-10 -8 (-6 -4448) (-15 -3791 ($ (-1276 |t#2|))) (IF (|has| |t#2| (-1109)) (-6 (-417 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1058)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-233 |t#2|)) (-6 (-382 |t#2|)) (-15 -3561 ($ (-928))) (-15 -2809 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-132)) (-6 (-132)) |%noBranch|) (IF (|has| |t#2| (-732)) (PROGN (-6 (-732)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#2| (-174)) (PROGN (-6 (-38 |t#2|)) (-6 (-174))) |%noBranch|) (IF (|has| |t#2| (-6 -4445)) (-6 -4445) |%noBranch|) (IF (|has| |t#2| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |t#2| (-799)) (-6 (-799)) |%noBranch|) (IF (|has| |t#2| (-368)) (-6 (-1283 |t#2|)) |%noBranch|)))
-(((-21) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-23) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132))) ((-25) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-174)) ((-102) -2740 (|has| |#2| (-1109)) (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-732)) (|has| |#2| (-373)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-111 $ $) |has| |#2| (-174)) ((-132) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132))) ((-622 #0=(-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))) ((-622 (-570)) -2740 (|has| |#2| (-1058)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-622 |#2|) -2740 (|has| |#2| (-1109)) (|has| |#2| (-174))) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-732)) (|has| |#2| (-373)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-619 (-868))) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-619 (-1276 |#2|)) . T) ((-174) |has| |#2| (-174)) ((-233 |#2|) |has| |#2| (-1058)) ((-235) -12 (|has| |#2| (-235)) (|has| |#2| (-1058))) ((-290 #1=(-570) |#2|) . T) ((-292 #1# |#2|) . T) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-373) |has| |#2| (-373)) ((-382 |#2|) |has| |#2| (-1058)) ((-417 |#2|) |has| |#2| (-1109)) ((-495 |#2|) . T) ((-610 #1# |#2|) . T) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-652 (-570)) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 $) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-654 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-654 $) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-646 |#2|) -2740 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-645 (-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))) ((-645 |#2|) |has| |#2| (-1058)) ((-723 |#2|) -2740 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-732) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-797) |has| |#2| (-854)) ((-798) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-799) |has| |#2| (-799)) ((-800) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-801) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-854) |has| |#2| (-854)) ((-856) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-907 (-1186)) -12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058))) ((-1047 #0#) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))) ((-1047 (-570)) -12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) ((-1047 |#2|) |has| |#2| (-1109)) ((-1060 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1060 $) |has| |#2| (-174)) ((-1065 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1065 $) |has| |#2| (-174)) ((-1058) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1067) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1121) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-1109) -2740 (|has| |#2| (-1109)) (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-732)) (|has| |#2| (-373)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-1226) . T) ((-1283 |#2|) |has| |#2| (-368)))
-((-3734 (((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 21)) (-3529 ((|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 23)) (-1351 (((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)) 18)))
-(((-241 |#1| |#2| |#3|) (-10 -7 (-15 -3734 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3529 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1351 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)))) (-777) (-1226) (-1226)) (T -241))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-242 *5 *6)) (-14 *5 (-777)) (-4 *6 (-1226)) (-4 *7 (-1226)) (-5 *2 (-242 *5 *7)) (-5 *1 (-241 *5 *6 *7)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-242 *5 *6)) (-14 *5 (-777)) (-4 *6 (-1226)) (-4 *2 (-1226)) (-5 *1 (-241 *5 *6 *2)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-242 *6 *7)) (-14 *6 (-777)) (-4 *7 (-1226)) (-4 *5 (-1226)) (-5 *2 (-242 *6 *5)) (-5 *1 (-241 *6 *7 *5)))))
-(-10 -7 (-15 -3734 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3529 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1351 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|))))
-((-2416 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4028 (((-112) $) NIL (|has| |#2| (-132)))) (-3561 (($ (-928)) 65 (|has| |#2| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3947 (($ $ $) 70 (|has| |#2| (-799)))) (-3596 (((-3 $ "failed") $ $) 57 (|has| |#2| (-132)))) (-3594 (((-112) $ (-777)) 17)) (-3403 (((-777)) NIL (|has| |#2| (-373)))) (-3140 (((-570) $) NIL (|has| |#2| (-854)))) (-3895 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) 34 (|has| |#2| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 32 (|has| |#2| (-1109)))) (-4177 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-3413 (((-3 $ "failed") $) 61 (|has| |#2| (-732)))) (-3336 (($) NIL (|has| |#2| (-373)))) (-3790 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ (-570)) 59)) (-1522 (((-112) $) NIL (|has| |#2| (-854)))) (-2836 (((-650 |#2|) $) 15 (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL (|has| |#2| (-732)))) (-2761 (((-112) $) NIL (|has| |#2| (-854)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 20 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2849 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 (((-570) $) 58 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2|) $) 47)) (-2367 (((-928) $) NIL (|has| |#2| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-2159 (($ (-928)) NIL (|has| |#2| (-373)))) (-3479 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3443 ((|#2| $) NIL (|has| (-570) (-856)))) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) 21)) (-2809 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3791 (($ (-1276 |#2|)) 18)) (-2184 (((-135)) NIL (|has| |#2| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-3486 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1276 |#2|) $) 10) (($ (-570)) NIL (-2740 (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) 13 (|has| |#2| (-1109))) (((-868) $) NIL (|has| |#2| (-619 (-868))))) (-2744 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-1859 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4368 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1423 (($ $) NIL (|has| |#2| (-854)))) (-1812 (($) 40 (|has| |#2| (-132)) CONST)) (-1823 (($) 44 (|has| |#2| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2872 (((-112) $ $) 31 (|has| |#2| (-1109)))) (-2913 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2894 (((-112) $ $) 68 (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-2954 (($ $ $) 38 (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) 50 (|has| |#2| (-732))) (($ $ |#2|) 48 (|has| |#2| (-732))) (($ |#2| $) 49 (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-242 |#1| |#2|) (-240 |#1| |#2|) (-777) (-1226)) (T -242))
+((-2535 (*1 *1) (-12 (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-2535 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-237 *3)))) (-3076 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-3076 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))) (-3131 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))))
+(-13 (-107 |t#1|) (-152 |t#1|) (-10 -8 (-15 -2535 ($)) (-15 -2535 ($ (-650 |t#1|))) (IF (|has| $ (-6 -4449)) (PROGN (-15 -3076 ($ |t#1| $)) (-15 -3076 ($ (-1 (-112) |t#1|) $)) (-15 -3131 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-1597 (((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570)))) 42)))
+(((-238) (-10 -7 (-15 -1597 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570))))))) (T -238))
+((-1597 (*1 *2 *3) (-12 (-5 *3 (-298 (-959 (-570)))) (-5 *2 (-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777)))))) (-5 *1 (-238)))))
+(-10 -7 (-15 -1597 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570))))))
+((-3403 (((-777)) 56)) (-1836 (((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) 53) (((-695 |#3|) (-695 $)) 44) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-4154 (((-135)) 62)) (-3447 (($ $ (-1 |#3| |#3|) (-777)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-3735 (((-1277 |#3|) $) NIL) (($ |#3|) NIL) (((-868) $) NIL) (($ (-570)) 12) (($ (-413 (-570))) NIL)) (-1609 (((-777)) 15)) (-2975 (($ $ |#3|) 59)))
+(((-239 |#1| |#2| |#3|) (-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)) (-15 -1609 ((-777))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -1836 ((-695 |#3|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -3403 ((-777))) (-15 -2975 (|#1| |#1| |#3|)) (-15 -4154 ((-135))) (-15 -3735 ((-1277 |#3|) |#1|))) (-240 |#2| |#3|) (-777) (-1227)) (T -239))
+((-4154 (*1 *2) (-12 (-14 *4 (-777)) (-4 *5 (-1227)) (-5 *2 (-135)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-3403 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-1609 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))))
+(-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)) (-15 -1609 ((-777))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -1836 ((-695 |#3|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -3403 ((-777))) (-15 -2975 (|#1| |#1| |#3|)) (-15 -4154 ((-135))) (-15 -3735 ((-1277 |#3|) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-2745 (((-112) $) 73 (|has| |#2| (-132)))) (-3800 (($ (-928)) 126 (|has| |#2| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-3125 (($ $ $) 122 (|has| |#2| (-799)))) (-4119 (((-3 $ "failed") $ $) 75 (|has| |#2| (-132)))) (-4095 (((-112) $ (-777)) 8)) (-3403 (((-777)) 108 (|has| |#2| (-373)))) (-2249 (((-570) $) 120 (|has| |#2| (-854)))) (-3894 ((|#2| $ (-570) |#2|) 53 (|has| $ (-6 -4450)))) (-3761 (($) 7 T CONST)) (-4379 (((-3 (-570) "failed") $) 68 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) 65 (-1765 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) 62 (|has| |#2| (-1109)))) (-3080 (((-570) $) 67 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) 64 (-1765 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 63 (|has| |#2| (-1109)))) (-1836 (((-695 (-570)) (-695 $)) 107 (-1765 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 106 (-1765 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 105 (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) 104 (|has| |#2| (-1058)))) (-2937 (((-3 $ "failed") $) 80 (|has| |#2| (-732)))) (-3336 (($) 111 (|has| |#2| (-373)))) (-3789 ((|#2| $ (-570) |#2|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#2| $ (-570)) 52)) (-3703 (((-112) $) 118 (|has| |#2| (-854)))) (-2835 (((-650 |#2|) $) 31 (|has| $ (-6 -4449)))) (-4340 (((-112) $) 82 (|has| |#2| (-732)))) (-1774 (((-112) $) 119 (|has| |#2| (-854)))) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 117 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3201 (((-650 |#2|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 116 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3776 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2|) $) 36)) (-2332 (((-928) $) 110 (|has| |#2| (-373)))) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#2| (-1109)))) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-2160 (($ (-928)) 109 (|has| |#2| (-373)))) (-3479 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3443 ((|#2| $) 43 (|has| (-570) (-856)))) (-3531 (($ $ |#2|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) 27 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 26 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 24 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#2| $ (-570) |#2|) 51) ((|#2| $ (-570)) 50)) (-4082 ((|#2| $ $) 125 (|has| |#2| (-1058)))) (-3791 (($ (-1277 |#2|)) 127)) (-4154 (((-135)) 124 (|has| |#2| (-368)))) (-3447 (($ $) 99 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 97 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 95 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 94 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 93 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 92 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 85 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 84 (|has| |#2| (-1058)))) (-3490 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4449))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-1277 |#2|) $) 128) (($ (-570)) 69 (-2740 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) 66 (-1765 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) 61 (|has| |#2| (-1109))) (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-1609 (((-777)) 103 (|has| |#2| (-1058)) CONST)) (-3866 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-2964 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4449)))) (-1367 (($ $) 121 (|has| |#2| (-854)))) (-1814 (($) 72 (|has| |#2| (-132)) CONST)) (-1824 (($) 83 (|has| |#2| (-732)) CONST)) (-2791 (($ $) 98 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 96 (-1765 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 91 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 90 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 89 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 88 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 87 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 86 (|has| |#2| (-1058)))) (-2924 (((-112) $ $) 114 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2904 (((-112) $ $) 113 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2872 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-2914 (((-112) $ $) 115 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2894 (((-112) $ $) 112 (-2740 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2975 (($ $ |#2|) 123 (|has| |#2| (-368)))) (-2965 (($ $ $) 102 (|has| |#2| (-1058))) (($ $) 101 (|has| |#2| (-1058)))) (-2953 (($ $ $) 70 (|has| |#2| (-25)))) (** (($ $ (-777)) 81 (|has| |#2| (-732))) (($ $ (-928)) 78 (|has| |#2| (-732)))) (* (($ (-570) $) 100 (|has| |#2| (-1058))) (($ $ $) 79 (|has| |#2| (-732))) (($ $ |#2|) 77 (|has| |#2| (-732))) (($ |#2| $) 76 (|has| |#2| (-732))) (($ (-777) $) 74 (|has| |#2| (-132))) (($ (-928) $) 71 (|has| |#2| (-25)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-240 |#1| |#2|) (-141) (-777) (-1227)) (T -240))
+((-3791 (*1 *1 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1227)) (-4 *1 (-240 *3 *4)))) (-3800 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-240 *3 *4)) (-4 *4 (-1058)) (-4 *4 (-1227)))) (-4082 (*1 *2 *1 *1) (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1227)) (-4 *2 (-732)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1227)) (-4 *2 (-732)))))
+(-13 (-610 (-570) |t#2|) (-619 (-1277 |t#2|)) (-10 -8 (-6 -4449) (-15 -3791 ($ (-1277 |t#2|))) (IF (|has| |t#2| (-1109)) (-6 (-417 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1058)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-233 |t#2|)) (-6 (-382 |t#2|)) (-15 -3800 ($ (-928))) (-15 -4082 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-132)) (-6 (-132)) |%noBranch|) (IF (|has| |t#2| (-732)) (PROGN (-6 (-732)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#2| (-174)) (PROGN (-6 (-38 |t#2|)) (-6 (-174))) |%noBranch|) (IF (|has| |t#2| (-6 -4446)) (-6 -4446) |%noBranch|) (IF (|has| |t#2| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |t#2| (-799)) (-6 (-799)) |%noBranch|) (IF (|has| |t#2| (-368)) (-6 (-1284 |t#2|)) |%noBranch|)))
+(((-21) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-23) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132))) ((-25) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-174)) ((-102) -2740 (|has| |#2| (-1109)) (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-732)) (|has| |#2| (-373)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-111 $ $) |has| |#2| (-174)) ((-132) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132))) ((-622 #0=(-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))) ((-622 (-570)) -2740 (|has| |#2| (-1058)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-622 |#2|) -2740 (|has| |#2| (-1109)) (|has| |#2| (-174))) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-732)) (|has| |#2| (-373)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-619 (-868))) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-619 (-1277 |#2|)) . T) ((-174) |has| |#2| (-174)) ((-233 |#2|) |has| |#2| (-1058)) ((-235) -12 (|has| |#2| (-235)) (|has| |#2| (-1058))) ((-290 #1=(-570) |#2|) . T) ((-292 #1# |#2|) . T) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-373) |has| |#2| (-373)) ((-382 |#2|) |has| |#2| (-1058)) ((-417 |#2|) |has| |#2| (-1109)) ((-495 |#2|) . T) ((-610 #1# |#2|) . T) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-652 (-570)) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 $) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-654 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-654 $) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-646 |#2|) -2740 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-645 (-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))) ((-645 |#2|) |has| |#2| (-1058)) ((-723 |#2|) -2740 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-732) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-797) |has| |#2| (-854)) ((-798) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-799) |has| |#2| (-799)) ((-800) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-801) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-854) |has| |#2| (-854)) ((-856) -2740 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-907 (-1186)) -12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058))) ((-1047 #0#) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))) ((-1047 (-570)) -12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) ((-1047 |#2|) |has| |#2| (-1109)) ((-1060 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1060 $) |has| |#2| (-174)) ((-1065 |#2|) -2740 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1065 $) |has| |#2| (-174)) ((-1058) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1067) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1121) -2740 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-1109) -2740 (|has| |#2| (-1109)) (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-732)) (|has| |#2| (-373)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132)) (|has| |#2| (-25))) ((-1227) . T) ((-1284 |#2|) |has| |#2| (-368)))
+((-2942 (((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 21)) (-3529 ((|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 23)) (-1352 (((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)) 18)))
+(((-241 |#1| |#2| |#3|) (-10 -7 (-15 -2942 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3529 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1352 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)))) (-777) (-1227) (-1227)) (T -241))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-242 *5 *6)) (-14 *5 (-777)) (-4 *6 (-1227)) (-4 *7 (-1227)) (-5 *2 (-242 *5 *7)) (-5 *1 (-241 *5 *6 *7)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-242 *5 *6)) (-14 *5 (-777)) (-4 *6 (-1227)) (-4 *2 (-1227)) (-5 *1 (-241 *5 *6 *2)))) (-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-242 *6 *7)) (-14 *6 (-777)) (-4 *7 (-1227)) (-4 *5 (-1227)) (-5 *2 (-242 *6 *5)) (-5 *1 (-241 *6 *7 *5)))))
+(-10 -7 (-15 -2942 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3529 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1352 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|))))
+((-2417 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2745 (((-112) $) NIL (|has| |#2| (-132)))) (-3800 (($ (-928)) 65 (|has| |#2| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3125 (($ $ $) 70 (|has| |#2| (-799)))) (-4119 (((-3 $ "failed") $ $) 57 (|has| |#2| (-132)))) (-4095 (((-112) $ (-777)) 17)) (-3403 (((-777)) NIL (|has| |#2| (-373)))) (-2249 (((-570) $) NIL (|has| |#2| (-854)))) (-3894 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) 34 (|has| |#2| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 32 (|has| |#2| (-1109)))) (-1836 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-2937 (((-3 $ "failed") $) 61 (|has| |#2| (-732)))) (-3336 (($) NIL (|has| |#2| (-373)))) (-3789 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ (-570)) 59)) (-3703 (((-112) $) NIL (|has| |#2| (-854)))) (-2835 (((-650 |#2|) $) 15 (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL (|has| |#2| (-732)))) (-1774 (((-112) $) NIL (|has| |#2| (-854)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 20 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3201 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 (((-570) $) 58 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2|) $) 47)) (-2332 (((-928) $) NIL (|has| |#2| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-2160 (($ (-928)) NIL (|has| |#2| (-373)))) (-3479 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3443 ((|#2| $) NIL (|has| (-570) (-856)))) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) 21)) (-4082 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3791 (($ (-1277 |#2|)) 18)) (-4154 (((-135)) NIL (|has| |#2| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-3490 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1277 |#2|) $) 10) (($ (-570)) NIL (-2740 (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) 13 (|has| |#2| (-1109))) (((-868) $) NIL (|has| |#2| (-619 (-868))))) (-1609 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-3866 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2964 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1367 (($ $) NIL (|has| |#2| (-854)))) (-1814 (($) 40 (|has| |#2| (-132)) CONST)) (-1824 (($) 44 (|has| |#2| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2872 (((-112) $ $) 31 (|has| |#2| (-1109)))) (-2914 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2894 (((-112) $ $) 68 (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-2953 (($ $ $) 38 (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) 50 (|has| |#2| (-732))) (($ $ |#2|) 48 (|has| |#2| (-732))) (($ |#2| $) 49 (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-242 |#1| |#2|) (-240 |#1| |#2|) (-777) (-1227)) (T -242))
NIL
(-240 |#1| |#2|)
-((-3569 (((-570) (-650 (-1168))) 36) (((-570) (-1168)) 29)) (-1670 (((-1281) (-650 (-1168))) 40) (((-1281) (-1168)) 39)) (-3033 (((-1168)) 16)) (-3217 (((-1168) (-570) (-1168)) 23)) (-2177 (((-650 (-1168)) (-650 (-1168)) (-570) (-1168)) 37) (((-1168) (-1168) (-570) (-1168)) 35)) (-4133 (((-650 (-1168)) (-650 (-1168))) 15) (((-650 (-1168)) (-1168)) 11)))
-(((-243) (-10 -7 (-15 -4133 ((-650 (-1168)) (-1168))) (-15 -4133 ((-650 (-1168)) (-650 (-1168)))) (-15 -3033 ((-1168))) (-15 -3217 ((-1168) (-570) (-1168))) (-15 -2177 ((-1168) (-1168) (-570) (-1168))) (-15 -2177 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1670 ((-1281) (-1168))) (-15 -1670 ((-1281) (-650 (-1168)))) (-15 -3569 ((-570) (-1168))) (-15 -3569 ((-570) (-650 (-1168)))))) (T -243))
-((-3569 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))) (-3569 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243)))) (-1670 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1281)) (-5 *1 (-243)))) (-1670 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-243)))) (-2177 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-650 (-1168))) (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *1 (-243)))) (-2177 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-3217 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-3033 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))) (-4133 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)))) (-4133 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)) (-5 *3 (-1168)))))
-(-10 -7 (-15 -4133 ((-650 (-1168)) (-1168))) (-15 -4133 ((-650 (-1168)) (-650 (-1168)))) (-15 -3033 ((-1168))) (-15 -3217 ((-1168) (-570) (-1168))) (-15 -2177 ((-1168) (-1168) (-570) (-1168))) (-15 -2177 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1670 ((-1281) (-1168))) (-15 -1670 ((-1281) (-650 (-1168)))) (-15 -3569 ((-570) (-1168))) (-15 -3569 ((-570) (-650 (-1168)))))
+((-3891 (((-570) (-650 (-1168))) 36) (((-570) (-1168)) 29)) (-1671 (((-1282) (-650 (-1168))) 40) (((-1282) (-1168)) 39)) (-2422 (((-1168)) 16)) (-1827 (((-1168) (-570) (-1168)) 23)) (-2178 (((-650 (-1168)) (-650 (-1168)) (-570) (-1168)) 37) (((-1168) (-1168) (-570) (-1168)) 35)) (-4133 (((-650 (-1168)) (-650 (-1168))) 15) (((-650 (-1168)) (-1168)) 11)))
+(((-243) (-10 -7 (-15 -4133 ((-650 (-1168)) (-1168))) (-15 -4133 ((-650 (-1168)) (-650 (-1168)))) (-15 -2422 ((-1168))) (-15 -1827 ((-1168) (-570) (-1168))) (-15 -2178 ((-1168) (-1168) (-570) (-1168))) (-15 -2178 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1671 ((-1282) (-1168))) (-15 -1671 ((-1282) (-650 (-1168)))) (-15 -3891 ((-570) (-1168))) (-15 -3891 ((-570) (-650 (-1168)))))) (T -243))
+((-3891 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))) (-3891 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243)))) (-1671 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1282)) (-5 *1 (-243)))) (-1671 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-243)))) (-2178 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-650 (-1168))) (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *1 (-243)))) (-2178 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-1827 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-2422 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))) (-4133 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)))) (-4133 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)) (-5 *3 (-1168)))))
+(-10 -7 (-15 -4133 ((-650 (-1168)) (-1168))) (-15 -4133 ((-650 (-1168)) (-650 (-1168)))) (-15 -2422 ((-1168))) (-15 -1827 ((-1168) (-570) (-1168))) (-15 -2178 ((-1168) (-1168) (-570) (-1168))) (-15 -2178 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1671 ((-1282) (-1168))) (-15 -1671 ((-1282) (-650 (-1168)))) (-15 -3891 ((-570) (-1168))) (-15 -3891 ((-570) (-650 (-1168)))))
((** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 20)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ (-413 (-570)) $) 27) (($ $ (-413 (-570))) NIL)))
(((-244 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-245)) (T -244))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 47)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 51)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 48)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ (-413 (-570)) $) 50) (($ $ (-413 (-570))) 49)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 47)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 51)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 48)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ (-413 (-570)) $) 50) (($ $ (-413 (-570))) 49)))
(((-245) (-141)) (T -245))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-245)) (-5 *2 (-570)))) (-1825 (*1 *1 *1) (-4 *1 (-245))))
-(-13 (-294) (-38 (-413 (-570))) (-10 -8 (-15 ** ($ $ (-570))) (-15 -1825 ($ $))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-245)) (-5 *2 (-570)))) (-1826 (*1 *1 *1) (-4 *1 (-245))))
+(-13 (-294) (-38 (-413 (-570))) (-10 -8 (-15 ** ($ $ (-570))) (-15 -1826 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-294) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-723 #0#) . T) ((-732) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-1573 (($ $) 58)) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-3979 (($ $ $) 54 (|has| $ (-6 -4449)))) (-2142 (($ $ $) 53 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-2450 (($) 7 T CONST)) (-1361 (($ $) 57)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2062 (($ $) 56)) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1728 ((|#1| $) 60)) (-3393 (($ $) 59)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48)) (-1678 (((-570) $ $) 45)) (-3150 (((-112) $) 47)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-2850 (($ $ $) 55 (|has| $ (-6 -4449)))) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-246 |#1|) (-141) (-1226)) (T -246))
-((-1728 (*1 *2 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-3393 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-1573 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-1361 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-2062 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-2850 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-3979 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-246 *2)) (-4 *2 (-1226)))) (-2142 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-246 *2)) (-4 *2 (-1226)))))
-(-13 (-1019 |t#1|) (-10 -8 (-15 -1728 (|t#1| $)) (-15 -3393 ($ $)) (-15 -1573 ($ $)) (-15 -1361 ($ $)) (-15 -2062 ($ $)) (IF (|has| $ (-6 -4449)) (PROGN (-15 -2850 ($ $ $)) (-15 -3979 ($ $ $)) (-15 -2142 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1573 (($ $) NIL)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3239 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3288 (($ $) 10 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2512 (($ $ $) NIL (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "rest" $) NIL (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) |#1|) $) NIL)) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2533 ((|#1| $) NIL)) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3455 (($ $) NIL) (($ $ (-777)) NIL)) (-2208 (($ $) NIL (|has| |#1| (-1109)))) (-3480 (($ $) 7 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1702 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-2356 (((-112) $) NIL)) (-3998 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-2190 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3068 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3312 (($ |#1|) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1728 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2278 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4285 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-3412 (((-112) $) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1243 (-570))) NIL) ((|#1| $ (-570)) NIL) ((|#1| $ (-570) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-777) $ "count") 16)) (-1678 (((-570) $ $) NIL)) (-1882 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-3158 (($ (-650 |#1|)) 22)) (-3150 (((-112) $) NIL)) (-3146 (($ $) NIL)) (-2839 (($ $) NIL (|has| $ (-6 -4449)))) (-2409 (((-777) $) NIL)) (-2567 (($ $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) NIL)) (-2850 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2439 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3735 (($ (-650 |#1|)) 17) (((-650 |#1|) $) 18) (((-868) $) 21 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 14 (|has| $ (-6 -4448)))))
-(((-247 |#1|) (-13 (-672 |#1|) (-496 (-650 |#1|)) (-10 -8 (-15 -3158 ($ (-650 |#1|))) (-15 -1876 ($ $ "unique")) (-15 -1876 ($ $ "sort")) (-15 -1876 ((-777) $ "count")))) (-856)) (T -247))
-((-3158 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-247 *3)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-777)) (-5 *1 (-247 *4)) (-4 *4 (-856)))))
-(-13 (-672 |#1|) (-496 (-650 |#1|)) (-10 -8 (-15 -3158 ($ (-650 |#1|))) (-15 -1876 ($ $ "unique")) (-15 -1876 ($ $ "sort")) (-15 -1876 ((-777) $ "count"))))
-((-3595 (((-3 (-777) "failed") |#1| |#1| (-777)) 43)))
-(((-248 |#1|) (-10 -7 (-15 -3595 ((-3 (-777) "failed") |#1| |#1| (-777)))) (-13 (-732) (-373) (-10 -7 (-15 ** (|#1| |#1| (-570)))))) (T -248))
-((-3595 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-777)) (-4 *3 (-13 (-732) (-373) (-10 -7 (-15 ** (*3 *3 (-570)))))) (-5 *1 (-248 *3)))))
-(-10 -7 (-15 -3595 ((-3 (-777) "failed") |#1| |#1| (-777))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-870 |#1|)) $) NIL)) (-3703 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3171 (($ $) NIL (|has| |#2| (-562)))) (-2720 (((-112) $) NIL (|has| |#2| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2222 (($ $) NIL (|has| |#2| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#2| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-1939 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-2429 (($ $ (-650 (-570))) NIL)) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#2| (-916)))) (-3007 (($ $ |#2| (-242 (-2426 |#1|) (-777)) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#2| (-242 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-870 |#1|)) NIL)) (-4341 (((-242 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-4414 (($ (-1 (-242 (-2426 |#1|) (-777)) (-242 (-2426 |#1|) (-777))) $) NIL)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3382 (((-3 (-870 |#1|) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#2| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -1907 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#2| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) NIL) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) NIL) (($ $ (-870 |#1|) $) NIL) (($ $ (-650 (-870 |#1|)) (-650 $)) NIL)) (-2998 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1601 (((-242 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3030 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-242 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-249 |#1| |#2|) (-13 (-956 |#2| (-242 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2429 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -249))
-((-2429 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-249 *3 *4)) (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
-(-13 (-956 |#2| (-242 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2429 ($ $ (-650 (-570))))))
-((-2416 (((-112) $ $) NIL)) (-1604 (((-1281) $) 17)) (-1452 (((-185 (-251)) $) 11)) (-3224 (($ (-185 (-251))) 12)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1579 (((-251) $) 7)) (-3735 (((-868) $) 9)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 15)))
-(((-250) (-13 (-1109) (-10 -8 (-15 -1579 ((-251) $)) (-15 -1452 ((-185 (-251)) $)) (-15 -3224 ($ (-185 (-251)))) (-15 -1604 ((-1281) $))))) (T -250))
-((-1579 (*1 *2 *1) (-12 (-5 *2 (-251)) (-5 *1 (-250)))) (-1452 (*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-3224 (*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-1604 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-250)))))
-(-13 (-1109) (-10 -8 (-15 -1579 ((-251) $)) (-15 -1452 ((-185 (-251)) $)) (-15 -3224 ($ (-185 (-251)))) (-15 -1604 ((-1281) $))))
-((-2416 (((-112) $ $) NIL)) (-1774 (((-650 (-871)) $) NIL)) (-3503 (((-512) $) NIL)) (-1903 (((-1168) $) NIL)) (-3843 (((-188) $) NIL)) (-1566 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-1721 (((-337) $) 7)) (-4324 (((-650 (-112)) $) NIL)) (-3735 (((-868) $) NIL) (((-189) $) 8)) (-1859 (((-112) $ $) NIL)) (-1893 (((-55) $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-251) (-13 (-187) (-619 (-189)) (-10 -8 (-15 -1721 ((-337) $))))) (T -251))
-((-1721 (*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
-(-13 (-187) (-619 (-189)) (-10 -8 (-15 -1721 ((-337) $))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1876 (((-1191) $ (-777)) 13)) (-3735 (((-868) $) 20)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 16)) (-2426 (((-777) $) 9)))
-(((-252) (-13 (-1109) (-10 -8 (-15 -2426 ((-777) $)) (-15 -1876 ((-1191) $ (-777)))))) (T -252))
-((-2426 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-252)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1191)) (-5 *1 (-252)))))
-(-13 (-1109) (-10 -8 (-15 -2426 ((-777) $)) (-15 -1876 ((-1191) $ (-777)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3561 (($ (-928)) NIL (|has| |#4| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3947 (($ $ $) NIL (|has| |#4| (-799)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#4| (-373)))) (-3140 (((-570) $) NIL (|has| |#4| (-854)))) (-3895 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1109))) (((-3 (-570) "failed") $) NIL (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-3080 ((|#4| $) NIL (|has| |#4| (-1109))) (((-570) $) NIL (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-4177 (((-2 (|:| -3442 (-695 |#4|)) (|:| |vec| (-1276 |#4|))) (-695 $) (-1276 $)) NIL (|has| |#4| (-1058))) (((-695 |#4|) (-695 $)) NIL (|has| |#4| (-1058))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))))) (-3413 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (-3336 (($) NIL (|has| |#4| (-373)))) (-3790 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#4| $ (-570)) NIL)) (-1522 (((-112) $) NIL (|has| |#4| (-854)))) (-2836 (((-650 |#4|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (-2761 (((-112) $) NIL (|has| |#4| (-854)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2849 (((-650 |#4|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3776 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#4| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-2159 (($ (-928)) NIL (|has| |#4| (-373)))) (-3479 (((-1129) $) NIL)) (-3443 ((|#4| $) NIL (|has| (-570) (-856)))) (-1952 (($ $ |#4|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-4245 (((-650 |#4|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#4| $ (-570) |#4|) NIL) ((|#4| $ (-570)) 16)) (-2809 ((|#4| $ $) NIL (|has| |#4| (-1058)))) (-3791 (($ (-1276 |#4|)) NIL)) (-2184 (((-135)) NIL (|has| |#4| (-368)))) (-3447 (($ $ (-1 |#4| |#4|) (-777)) NIL (|has| |#4| (-1058))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058)))) (($ $) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))))) (-3486 (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448))) (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1276 |#4|) $) NIL) (((-868) $) NIL) (($ |#4|) NIL (|has| |#4| (-1109))) (($ (-570)) NIL (-2740 (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-2744 (((-777)) NIL (|has| |#4| (-1058)) CONST)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1423 (($ $) NIL (|has| |#4| (-854)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) CONST)) (-2791 (($ $ (-1 |#4| |#4|) (-777)) NIL (|has| |#4| (-1058))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058)))) (($ $) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2894 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2975 (($ $ |#4|) NIL (|has| |#4| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058))))) (($ $ (-928)) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (* (($ |#2| $) 18) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ |#3| $) 22) (($ $ |#4|) NIL (|has| |#4| (-732))) (($ |#4| $) NIL (|has| |#4| (-732))) (($ $ $) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-1574 (($ $) 58)) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3498 (($ $ $) 54 (|has| $ (-6 -4450)))) (-3704 (($ $ $) 53 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-3761 (($) 7 T CONST)) (-1362 (($ $) 57)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2063 (($ $) 56)) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1729 ((|#1| $) 60)) (-2765 (($ $) 59)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48)) (-2763 (((-570) $ $) 45)) (-2345 (((-112) $) 47)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3214 (($ $ $) 55 (|has| $ (-6 -4450)))) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-246 |#1|) (-141) (-1227)) (T -246))
+((-1729 (*1 *2 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-2765 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1574 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1362 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-2063 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-3214 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-3498 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-3704 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(-13 (-1019 |t#1|) (-10 -8 (-15 -1729 (|t#1| $)) (-15 -2765 ($ $)) (-15 -1574 ($ $)) (-15 -1362 ($ $)) (-15 -2063 ($ $)) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3214 ($ $ $)) (-15 -3498 ($ $ $)) (-15 -3704 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1574 (($ $) NIL)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3885 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-3287 (($ $) 10 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3066 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "rest" $) NIL (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) |#1|) $) NIL)) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2533 ((|#1| $) NIL)) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3455 (($ $) NIL) (($ $ (-777)) NIL)) (-3092 (($ $) NIL (|has| |#1| (-1109)))) (-3480 (($ $) 7 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1703 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-2237 (((-112) $) NIL)) (-3998 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-4210 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2727 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3312 (($ |#1|) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1729 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2599 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4286 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2928 (((-112) $) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) NIL) ((|#1| $ (-570) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-777) $ "count") 16)) (-2763 (((-570) $ $) NIL)) (-4052 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3158 (($ (-650 |#1|)) 22)) (-2345 (((-112) $) NIL)) (-2308 (($ $) NIL)) (-3103 (($ $) NIL (|has| $ (-6 -4450)))) (-1535 (((-777) $) NIL)) (-3631 (($ $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) NIL)) (-3214 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2439 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3735 (($ (-650 |#1|)) 17) (((-650 |#1|) $) 18) (((-868) $) 21 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 14 (|has| $ (-6 -4449)))))
+(((-247 |#1|) (-13 (-672 |#1|) (-496 (-650 |#1|)) (-10 -8 (-15 -3158 ($ (-650 |#1|))) (-15 -1877 ($ $ "unique")) (-15 -1877 ($ $ "sort")) (-15 -1877 ((-777) $ "count")))) (-856)) (T -247))
+((-3158 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-247 *3)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-777)) (-5 *1 (-247 *4)) (-4 *4 (-856)))))
+(-13 (-672 |#1|) (-496 (-650 |#1|)) (-10 -8 (-15 -3158 ($ (-650 |#1|))) (-15 -1877 ($ $ "unique")) (-15 -1877 ($ $ "sort")) (-15 -1877 ((-777) $ "count"))))
+((-4107 (((-3 (-777) "failed") |#1| |#1| (-777)) 43)))
+(((-248 |#1|) (-10 -7 (-15 -4107 ((-3 (-777) "failed") |#1| |#1| (-777)))) (-13 (-732) (-373) (-10 -7 (-15 ** (|#1| |#1| (-570)))))) (T -248))
+((-4107 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-777)) (-4 *3 (-13 (-732) (-373) (-10 -7 (-15 ** (*3 *3 (-570)))))) (-5 *1 (-248 *3)))))
+(-10 -7 (-15 -4107 ((-3 (-777) "failed") |#1| |#1| (-777))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-870 |#1|)) $) NIL)) (-3702 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-1345 (($ $) NIL (|has| |#2| (-562)))) (-1372 (((-112) $) NIL (|has| |#2| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3252 (($ $) NIL (|has| |#2| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3383 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1727 (($ $ (-650 (-570))) NIL)) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#2| (-916)))) (-3382 (($ $ |#2| (-242 (-2426 |#1|) (-777)) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#2| (-242 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-870 |#1|)) NIL)) (-2730 (((-242 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-2206 (($ (-1 (-242 (-2426 |#1|) (-777)) (-242 (-2426 |#1|) (-777))) $) NIL)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-2645 (((-3 (-870 |#1|) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#2| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3011 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#2| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) NIL) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) NIL) (($ $ (-870 |#1|) $) NIL) (($ $ (-650 (-870 |#1|)) (-650 $)) NIL)) (-3290 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3221 (((-242 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3621 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-242 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-249 |#1| |#2|) (-13 (-956 |#2| (-242 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -1727 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -249))
+((-1727 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-249 *3 *4)) (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
+(-13 (-956 |#2| (-242 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -1727 ($ $ (-650 (-570))))))
+((-2417 (((-112) $ $) NIL)) (-1605 (((-1282) $) 17)) (-4274 (((-185 (-251)) $) 11)) (-3715 (($ (-185 (-251))) 12)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1580 (((-251) $) 7)) (-3735 (((-868) $) 9)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 15)))
+(((-250) (-13 (-1109) (-10 -8 (-15 -1580 ((-251) $)) (-15 -4274 ((-185 (-251)) $)) (-15 -3715 ($ (-185 (-251)))) (-15 -1605 ((-1282) $))))) (T -250))
+((-1580 (*1 *2 *1) (-12 (-5 *2 (-251)) (-5 *1 (-250)))) (-4274 (*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-3715 (*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-1605 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-250)))))
+(-13 (-1109) (-10 -8 (-15 -1580 ((-251) $)) (-15 -4274 ((-185 (-251)) $)) (-15 -3715 ($ (-185 (-251)))) (-15 -1605 ((-1282) $))))
+((-2417 (((-112) $ $) NIL)) (-1775 (((-650 (-871)) $) NIL)) (-3504 (((-512) $) NIL)) (-4268 (((-1168) $) NIL)) (-3843 (((-188) $) NIL)) (-4198 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-2021 (((-337) $) 7)) (-2544 (((-650 (-112)) $) NIL)) (-3735 (((-868) $) NIL) (((-189) $) 8)) (-3866 (((-112) $ $) NIL)) (-4158 (((-55) $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-251) (-13 (-187) (-619 (-189)) (-10 -8 (-15 -2021 ((-337) $))))) (T -251))
+((-2021 (*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
+(-13 (-187) (-619 (-189)) (-10 -8 (-15 -2021 ((-337) $))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1877 (((-1191) $ (-777)) 13)) (-3735 (((-868) $) 20)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 16)) (-2426 (((-777) $) 9)))
+(((-252) (-13 (-1109) (-10 -8 (-15 -2426 ((-777) $)) (-15 -1877 ((-1191) $ (-777)))))) (T -252))
+((-2426 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-252)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1191)) (-5 *1 (-252)))))
+(-13 (-1109) (-10 -8 (-15 -2426 ((-777) $)) (-15 -1877 ((-1191) $ (-777)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3800 (($ (-928)) NIL (|has| |#4| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3125 (($ $ $) NIL (|has| |#4| (-799)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#4| (-373)))) (-2249 (((-570) $) NIL (|has| |#4| (-854)))) (-3894 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1109))) (((-3 (-570) "failed") $) NIL (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-3080 ((|#4| $) NIL (|has| |#4| (-1109))) (((-570) $) NIL (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-1836 (((-2 (|:| -2042 (-695 |#4|)) (|:| |vec| (-1277 |#4|))) (-695 $) (-1277 $)) NIL (|has| |#4| (-1058))) (((-695 |#4|) (-695 $)) NIL (|has| |#4| (-1058))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))))) (-2937 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (-3336 (($) NIL (|has| |#4| (-373)))) (-3789 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#4| $ (-570)) NIL)) (-3703 (((-112) $) NIL (|has| |#4| (-854)))) (-2835 (((-650 |#4|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (-1774 (((-112) $) NIL (|has| |#4| (-854)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3201 (((-650 |#4|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3776 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#4| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-2160 (($ (-928)) NIL (|has| |#4| (-373)))) (-3479 (((-1129) $) NIL)) (-3443 ((|#4| $) NIL (|has| (-570) (-856)))) (-3531 (($ $ |#4|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-4348 (((-650 |#4|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#4| $ (-570) |#4|) NIL) ((|#4| $ (-570)) 16)) (-4082 ((|#4| $ $) NIL (|has| |#4| (-1058)))) (-3791 (($ (-1277 |#4|)) NIL)) (-4154 (((-135)) NIL (|has| |#4| (-368)))) (-3447 (($ $ (-1 |#4| |#4|) (-777)) NIL (|has| |#4| (-1058))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058)))) (($ $) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))))) (-3490 (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1277 |#4|) $) NIL) (((-868) $) NIL) (($ |#4|) NIL (|has| |#4| (-1109))) (($ (-570)) NIL (-2740 (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-1609 (((-777)) NIL (|has| |#4| (-1058)) CONST)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1367 (($ $) NIL (|has| |#4| (-854)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) CONST)) (-2791 (($ $ (-1 |#4| |#4|) (-777)) NIL (|has| |#4| (-1058))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058)))) (($ $) NIL (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2894 (((-112) $ $) NIL (-2740 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2975 (($ $ |#4|) NIL (|has| |#4| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058))))) (($ $ (-928)) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (* (($ |#2| $) 18) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ |#3| $) 22) (($ $ |#4|) NIL (|has| |#4| (-732))) (($ |#4| $) NIL (|has| |#4| (-732))) (($ $ $) NIL (-2740 (-12 (|has| |#4| (-235)) (|has| |#4| (-1058))) (-12 (|has| |#4| (-645 (-570))) (|has| |#4| (-1058))) (|has| |#4| (-732)) (-12 (|has| |#4| (-907 (-1186))) (|has| |#4| (-1058)))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-253 |#1| |#2| |#3| |#4|) (-13 (-240 |#1| |#4|) (-654 |#2|) (-654 |#3|)) (-928) (-1058) (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-654 |#2|)) (T -253))
NIL
(-13 (-240 |#1| |#4|) (-654 |#2|) (-654 |#3|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3561 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3947 (($ $ $) NIL (|has| |#3| (-799)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#3| (-373)))) (-3140 (((-570) $) NIL (|has| |#3| (-854)))) (-3895 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1109))) (((-3 (-570) "failed") $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-3080 ((|#3| $) NIL (|has| |#3| (-1109))) (((-570) $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-4177 (((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 $) (-1276 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))))) (-3413 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (-3336 (($) NIL (|has| |#3| (-373)))) (-3790 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#3| $ (-570)) NIL)) (-1522 (((-112) $) NIL (|has| |#3| (-854)))) (-2836 (((-650 |#3|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (-2761 (((-112) $) NIL (|has| |#3| (-854)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2849 (((-650 |#3|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3776 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#3| |#3|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#3| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-2159 (($ (-928)) NIL (|has| |#3| (-373)))) (-3479 (((-1129) $) NIL)) (-3443 ((|#3| $) NIL (|has| (-570) (-856)))) (-1952 (($ $ |#3|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#3|))) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 |#3|) (-650 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-4245 (((-650 |#3|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) 15)) (-2809 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3791 (($ (-1276 |#3|)) NIL)) (-2184 (((-135)) NIL (|has| |#3| (-368)))) (-3447 (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))))) (-3486 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1276 |#3|) $) NIL) (((-868) $) NIL) (($ |#3|) NIL (|has| |#3| (-1109))) (($ (-570)) NIL (-2740 (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-2744 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-1423 (($ $) NIL (|has| |#3| (-854)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) CONST)) (-2791 (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2894 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2975 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058))))) (($ $ (-928)) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (* (($ |#2| $) 17) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-732))) (($ |#3| $) NIL (|has| |#3| (-732))) (($ $ $) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3800 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3125 (($ $ $) NIL (|has| |#3| (-799)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#3| (-373)))) (-2249 (((-570) $) NIL (|has| |#3| (-854)))) (-3894 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1109))) (((-3 (-570) "failed") $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-3080 ((|#3| $) NIL (|has| |#3| (-1109))) (((-570) $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-1836 (((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))))) (-2937 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (-3336 (($) NIL (|has| |#3| (-373)))) (-3789 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#3| $ (-570)) NIL)) (-3703 (((-112) $) NIL (|has| |#3| (-854)))) (-2835 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (-1774 (((-112) $) NIL (|has| |#3| (-854)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3201 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3776 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#3| |#3|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#3| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-2160 (($ (-928)) NIL (|has| |#3| (-373)))) (-3479 (((-1129) $) NIL)) (-3443 ((|#3| $) NIL (|has| (-570) (-856)))) (-3531 (($ $ |#3|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#3|))) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 |#3|) (-650 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-4348 (((-650 |#3|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) 15)) (-4082 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3791 (($ (-1277 |#3|)) NIL)) (-4154 (((-135)) NIL (|has| |#3| (-368)))) (-3447 (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))))) (-3490 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1277 |#3|) $) NIL) (((-868) $) NIL) (($ |#3|) NIL (|has| |#3| (-1109))) (($ (-570)) NIL (-2740 (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-1609 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1367 (($ $) NIL (|has| |#3| (-854)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) CONST)) (-2791 (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2894 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2975 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058))))) (($ $ (-928)) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (* (($ |#2| $) 17) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-732))) (($ |#3| $) NIL (|has| |#3| (-732))) (($ $ $) NIL (-2740 (-12 (|has| |#3| (-235)) (|has| |#3| (-1058))) (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058))) (|has| |#3| (-732)) (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-254 |#1| |#2| |#3|) (-13 (-240 |#1| |#3|) (-654 |#2|)) (-777) (-1058) (-654 |#2|)) (T -254))
NIL
(-13 (-240 |#1| |#3|) (-654 |#2|))
-((-4307 (((-650 (-777)) $) 56) (((-650 (-777)) $ |#3|) 59)) (-3454 (((-777) $) 58) (((-777) $ |#3|) 61)) (-2009 (($ $) 76)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 83)) (-3157 (((-777) $ |#3|) 43) (((-777) $) 38)) (-3581 (((-1 $ (-777)) |#3|) 15) (((-1 $ (-777)) $) 88)) (-3082 ((|#4| $) 69)) (-1795 (((-112) $) 67)) (-1516 (($ $) 75)) (-1730 (($ $ (-650 (-298 $))) 114) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-650 |#4|) (-650 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-650 |#4|) (-650 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-650 |#3|) (-650 $)) 106) (($ $ |#3| |#2|) NIL) (($ $ (-650 |#3|) (-650 |#2|)) 100)) (-3447 (($ $ |#4|) NIL) (($ $ (-650 |#4|)) NIL) (($ $ |#4| (-777)) NIL) (($ $ (-650 |#4|) (-650 (-777))) NIL) (($ $) NIL) (($ $ (-777)) NIL) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-2146 (((-650 |#3|) $) 86)) (-1601 ((|#5| $) NIL) (((-777) $ |#4|) NIL) (((-650 (-777)) $ (-650 |#4|)) NIL) (((-777) $ |#3|) 49)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 78) (($ (-413 (-570))) NIL) (($ $) NIL)))
-(((-255 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1730 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#3| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#3| |#1|)) (-15 -3581 ((-1 |#1| (-777)) |#1|)) (-15 -2009 (|#1| |#1|)) (-15 -1516 (|#1| |#1|)) (-15 -3082 (|#4| |#1|)) (-15 -1795 ((-112) |#1|)) (-15 -3454 ((-777) |#1| |#3|)) (-15 -4307 ((-650 (-777)) |#1| |#3|)) (-15 -3454 ((-777) |#1|)) (-15 -4307 ((-650 (-777)) |#1|)) (-15 -1601 ((-777) |#1| |#3|)) (-15 -3157 ((-777) |#1|)) (-15 -3157 ((-777) |#1| |#3|)) (-15 -2146 ((-650 |#3|) |#1|)) (-15 -3581 ((-1 |#1| (-777)) |#3|)) (-15 -3735 (|#1| |#3|)) (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -1601 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -1601 ((-777) |#1| |#4|)) (-15 -3735 (|#1| |#4|)) (-15 -4378 ((-3 |#4| "failed") |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#4| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#4| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1601 (|#5| |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3447 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3447 (|#1| |#1| |#4| (-777))) (-15 -3447 (|#1| |#1| (-650 |#4|))) (-15 -3447 (|#1| |#1| |#4|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-256 |#2| |#3| |#4| |#5|) (-1058) (-856) (-269 |#3|) (-799)) (T -255))
+((-3643 (((-650 (-777)) $) 56) (((-650 (-777)) $ |#3|) 59)) (-2131 (((-777) $) 58) (((-777) $ |#3|) 61)) (-2867 (($ $) 76)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 83)) (-4331 (((-777) $ |#3|) 43) (((-777) $) 38)) (-4001 (((-1 $ (-777)) |#3|) 15) (((-1 $ (-777)) $) 88)) (-3082 ((|#4| $) 69)) (-1428 (((-112) $) 67)) (-1517 (($ $) 75)) (-1731 (($ $ (-650 (-298 $))) 114) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-650 |#4|) (-650 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-650 |#4|) (-650 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-650 |#3|) (-650 $)) 106) (($ $ |#3| |#2|) NIL) (($ $ (-650 |#3|) (-650 |#2|)) 100)) (-3447 (($ $ |#4|) NIL) (($ $ (-650 |#4|)) NIL) (($ $ |#4| (-777)) NIL) (($ $ (-650 |#4|) (-650 (-777))) NIL) (($ $) NIL) (($ $ (-777)) NIL) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-3750 (((-650 |#3|) $) 86)) (-3221 ((|#5| $) NIL) (((-777) $ |#4|) NIL) (((-650 (-777)) $ (-650 |#4|)) NIL) (((-777) $ |#3|) 49)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 78) (($ (-413 (-570))) NIL) (($ $) NIL)))
+(((-255 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1731 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#3| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#3| |#1|)) (-15 -4001 ((-1 |#1| (-777)) |#1|)) (-15 -2867 (|#1| |#1|)) (-15 -1517 (|#1| |#1|)) (-15 -3082 (|#4| |#1|)) (-15 -1428 ((-112) |#1|)) (-15 -2131 ((-777) |#1| |#3|)) (-15 -3643 ((-650 (-777)) |#1| |#3|)) (-15 -2131 ((-777) |#1|)) (-15 -3643 ((-650 (-777)) |#1|)) (-15 -3221 ((-777) |#1| |#3|)) (-15 -4331 ((-777) |#1|)) (-15 -4331 ((-777) |#1| |#3|)) (-15 -3750 ((-650 |#3|) |#1|)) (-15 -4001 ((-1 |#1| (-777)) |#3|)) (-15 -3735 (|#1| |#3|)) (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -3221 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -3221 ((-777) |#1| |#4|)) (-15 -3735 (|#1| |#4|)) (-15 -4379 ((-3 |#4| "failed") |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#4| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#4| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3221 (|#5| |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3447 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3447 (|#1| |#1| |#4| (-777))) (-15 -3447 (|#1| |#1| (-650 |#4|))) (-15 -3447 (|#1| |#1| |#4|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-256 |#2| |#3| |#4| |#5|) (-1058) (-856) (-269 |#3|) (-799)) (T -255))
NIL
-(-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1730 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#3| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#3| |#1|)) (-15 -3581 ((-1 |#1| (-777)) |#1|)) (-15 -2009 (|#1| |#1|)) (-15 -1516 (|#1| |#1|)) (-15 -3082 (|#4| |#1|)) (-15 -1795 ((-112) |#1|)) (-15 -3454 ((-777) |#1| |#3|)) (-15 -4307 ((-650 (-777)) |#1| |#3|)) (-15 -3454 ((-777) |#1|)) (-15 -4307 ((-650 (-777)) |#1|)) (-15 -1601 ((-777) |#1| |#3|)) (-15 -3157 ((-777) |#1|)) (-15 -3157 ((-777) |#1| |#3|)) (-15 -2146 ((-650 |#3|) |#1|)) (-15 -3581 ((-1 |#1| (-777)) |#3|)) (-15 -3735 (|#1| |#3|)) (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -1601 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -1601 ((-777) |#1| |#4|)) (-15 -3735 (|#1| |#4|)) (-15 -4378 ((-3 |#4| "failed") |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#4| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#4| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1601 (|#5| |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3447 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3447 (|#1| |#1| |#4| (-777))) (-15 -3447 (|#1| |#1| (-650 |#4|))) (-15 -3447 (|#1| |#1| |#4|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-4307 (((-650 (-777)) $) 216) (((-650 (-777)) $ |#2|) 214)) (-3454 (((-777) $) 215) (((-777) $ |#2|) 213)) (-1716 (((-650 |#3|) $) 112)) (-3703 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3171 (($ $) 90 (|has| |#1| (-562)))) (-2720 (((-112) $) 92 (|has| |#1| (-562)))) (-3462 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-3596 (((-3 $ "failed") $ $) 20)) (-2615 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-2222 (($ $) 100 (|has| |#1| (-458)))) (-1790 (((-424 $) $) 99 (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-2009 (($ $) 209)) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) 138) (((-3 |#2| "failed") $) 223)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139) ((|#2| $) 224)) (-1939 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1890 (($ $) 156)) (-4177 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-3413 (((-3 $ "failed") $) 37)) (-3543 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1873 (((-650 $) $) 111)) (-1552 (((-112) $) 98 (|has| |#1| (-916)))) (-3007 (($ $ |#1| |#4| $) 174)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| |#3| (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| |#3| (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-3157 (((-777) $ |#2|) 219) (((-777) $) 218)) (-2081 (((-112) $) 35)) (-3797 (((-777) $) 171)) (-1704 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-1435 (((-650 $) $) 128)) (-1550 (((-112) $) 154)) (-3872 (($ |#1| |#4|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#3|) 122)) (-4341 ((|#4| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-4414 (($ (-1 |#4| |#4|) $) 173)) (-1351 (($ (-1 |#1| |#1|) $) 153)) (-3581 (((-1 $ (-777)) |#2|) 221) (((-1 $ (-777)) $) 208 (|has| |#1| (-235)))) (-3382 (((-3 |#3| "failed") $) 125)) (-1855 (($ $) 151)) (-1864 ((|#1| $) 150)) (-3082 ((|#3| $) 211)) (-1845 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1903 (((-1168) $) 10)) (-1795 (((-112) $) 212)) (-1596 (((-3 (-650 $) "failed") $) 116)) (-3751 (((-3 (-650 $) "failed") $) 117)) (-3496 (((-3 (-2 (|:| |var| |#3|) (|:| -1907 (-777))) "failed") $) 115)) (-1516 (($ $) 210)) (-3479 (((-1129) $) 11)) (-1834 (((-112) $) 168)) (-1842 ((|#1| $) 169)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3738 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140) (($ $ |#2| $) 207 (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 $)) 206 (|has| |#1| (-235))) (($ $ |#2| |#1|) 205 (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 |#1|)) 204 (|has| |#1| (-235)))) (-2998 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3447 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43) (($ $) 240 (|has| |#1| (-235))) (($ $ (-777)) 238 (|has| |#1| (-235))) (($ $ (-1186)) 236 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 235 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 234 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 233 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-2146 (((-650 |#2|) $) 220)) (-1601 ((|#4| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131) (((-777) $ |#2|) 217)) (-1416 (((-899 (-384)) $) 84 (-12 (|has| |#3| (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| |#3| (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| |#3| (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ |#2|) 222) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) 170)) (-1715 ((|#1| $ |#4|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-1918 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) 32 T CONST)) (-3644 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39) (($ $) 239 (|has| |#1| (-235))) (($ $ (-777)) 237 (|has| |#1| (-235))) (($ $ (-1186)) 232 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 231 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 230 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 229 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 228) (($ $ (-1 |#1| |#1|)) 227)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+(-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -1731 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#3| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#3| |#1|)) (-15 -4001 ((-1 |#1| (-777)) |#1|)) (-15 -2867 (|#1| |#1|)) (-15 -1517 (|#1| |#1|)) (-15 -3082 (|#4| |#1|)) (-15 -1428 ((-112) |#1|)) (-15 -2131 ((-777) |#1| |#3|)) (-15 -3643 ((-650 (-777)) |#1| |#3|)) (-15 -2131 ((-777) |#1|)) (-15 -3643 ((-650 (-777)) |#1|)) (-15 -3221 ((-777) |#1| |#3|)) (-15 -4331 ((-777) |#1|)) (-15 -4331 ((-777) |#1| |#3|)) (-15 -3750 ((-650 |#3|) |#1|)) (-15 -4001 ((-1 |#1| (-777)) |#3|)) (-15 -3735 (|#1| |#3|)) (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -3221 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -3221 ((-777) |#1| |#4|)) (-15 -3735 (|#1| |#4|)) (-15 -4379 ((-3 |#4| "failed") |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#4| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#4| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3221 (|#5| |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3447 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3447 (|#1| |#1| |#4| (-777))) (-15 -3447 (|#1| |#1| (-650 |#4|))) (-15 -3447 (|#1| |#1| |#4|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3643 (((-650 (-777)) $) 216) (((-650 (-777)) $ |#2|) 214)) (-2131 (((-777) $) 215) (((-777) $ |#2|) 213)) (-1713 (((-650 |#3|) $) 112)) (-3702 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-1345 (($ $) 90 (|has| |#1| (-562)))) (-1372 (((-112) $) 92 (|has| |#1| (-562)))) (-2200 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-4119 (((-3 $ "failed") $ $) 20)) (-2810 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-3252 (($ $) 100 (|has| |#1| (-458)))) (-1378 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-2867 (($ $) 209)) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) 138) (((-3 |#2| "failed") $) 223)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139) ((|#2| $) 224)) (-3383 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1891 (($ $) 156)) (-1836 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2937 (((-3 $ "failed") $) 37)) (-1767 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1872 (((-650 $) $) 111)) (-4037 (((-112) $) 98 (|has| |#1| (-916)))) (-3382 (($ $ |#1| |#4| $) 174)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| |#3| (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| |#3| (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4331 (((-777) $ |#2|) 219) (((-777) $) 218)) (-4340 (((-112) $) 35)) (-2292 (((-777) $) 171)) (-1705 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-1471 (((-650 $) $) 128)) (-4016 (((-112) $) 154)) (-3872 (($ |#1| |#4|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#3|) 122)) (-2730 ((|#4| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-2206 (($ (-1 |#4| |#4|) $) 173)) (-1352 (($ (-1 |#1| |#1|) $) 153)) (-4001 (((-1 $ (-777)) |#2|) 221) (((-1 $ (-777)) $) 208 (|has| |#1| (-235)))) (-2645 (((-3 |#3| "failed") $) 125)) (-1857 (($ $) 151)) (-1865 ((|#1| $) 150)) (-3082 ((|#3| $) 211)) (-1847 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-4268 (((-1168) $) 10)) (-1428 (((-112) $) 212)) (-3176 (((-3 (-650 $) "failed") $) 116)) (-1955 (((-3 (-650 $) "failed") $) 117)) (-4415 (((-3 (-2 (|:| |var| |#3|) (|:| -3011 (-777))) "failed") $) 115)) (-1517 (($ $) 210)) (-3479 (((-1129) $) 11)) (-1835 (((-112) $) 168)) (-1846 ((|#1| $) 169)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3739 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140) (($ $ |#2| $) 207 (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 $)) 206 (|has| |#1| (-235))) (($ $ |#2| |#1|) 205 (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 |#1|)) 204 (|has| |#1| (-235)))) (-3290 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3447 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43) (($ $) 240 (|has| |#1| (-235))) (($ $ (-777)) 238 (|has| |#1| (-235))) (($ $ (-1186)) 236 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 235 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 234 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 233 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-3750 (((-650 |#2|) $) 220)) (-3221 ((|#4| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131) (((-777) $ |#2|) 217)) (-1417 (((-899 (-384)) $) 84 (-12 (|has| |#3| (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| |#3| (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| |#3| (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ |#2|) 222) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) 170)) (-1983 ((|#1| $ |#4|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3127 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) 32 T CONST)) (-3340 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39) (($ $) 239 (|has| |#1| (-235))) (($ $ (-777)) 237 (|has| |#1| (-235))) (($ $ (-1186)) 232 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 231 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 230 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 229 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 228) (($ $ (-1 |#1| |#1|)) 227)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-256 |#1| |#2| |#3| |#4|) (-141) (-1058) (-856) (-269 |t#2|) (-799)) (T -256))
-((-3581 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *4 *3 *5 *6)))) (-2146 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 *4)))) (-3157 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777)))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777)))) (-1601 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777)))) (-4307 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 (-777))))) (-3454 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777)))) (-4307 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-650 (-777))))) (-3454 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777)))) (-1795 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-112)))) (-3082 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-799)) (-4 *2 (-269 *4)))) (-1516 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-2009 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-3581 (*1 *2 *1) (-12 (-4 *3 (-235)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *3 *4 *5 *6)))))
-(-13 (-956 |t#1| |t#4| |t#3|) (-233 |t#1|) (-1047 |t#2|) (-10 -8 (-15 -3581 ((-1 $ (-777)) |t#2|)) (-15 -2146 ((-650 |t#2|) $)) (-15 -3157 ((-777) $ |t#2|)) (-15 -3157 ((-777) $)) (-15 -1601 ((-777) $ |t#2|)) (-15 -4307 ((-650 (-777)) $)) (-15 -3454 ((-777) $)) (-15 -4307 ((-650 (-777)) $ |t#2|)) (-15 -3454 ((-777) $ |t#2|)) (-15 -1795 ((-112) $)) (-15 -3082 (|t#3| $)) (-15 -1516 ($ $)) (-15 -2009 ($ $)) (IF (|has| |t#1| (-235)) (PROGN (-6 (-520 |t#2| |t#1|)) (-6 (-520 |t#2| $)) (-6 (-313 $)) (-15 -3581 ((-1 $ (-777)) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#2|) . T) ((-622 |#3|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570))))) ((-233 |#1|) . T) ((-235) |has| |#1| (-235)) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#4|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#2| |#1|) |has| |#1| (-235)) ((-520 |#2| $) |has| |#1| (-235)) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-732) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-907 |#3|) . T) ((-893 (-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))) ((-956 |#1| |#4| |#3|) . T) ((-916) |has| |#1| (-916)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1047 |#2|) . T) ((-1047 |#3|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) |has| |#1| (-916)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3579 ((|#1| $) 55)) (-3240 ((|#1| $) 45)) (-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2895 (($ $) 61)) (-2697 (($ $) 49)) (-2562 ((|#1| |#1| $) 47)) (-1446 ((|#1| $) 46)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-3788 (((-777) $) 62)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-4170 ((|#1| |#1| $) 53)) (-1803 ((|#1| |#1| $) 52)) (-2278 (($ |#1| $) 41)) (-1434 (((-777) $) 56)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1407 ((|#1| $) 63)) (-2360 ((|#1| $) 51)) (-4043 ((|#1| $) 50)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-2528 ((|#1| |#1| $) 59)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-2936 ((|#1| $) 60)) (-4231 (($) 58) (($ (-650 |#1|)) 57)) (-2765 (((-777) $) 44)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1697 ((|#1| $) 54)) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-2547 ((|#1| $) 64)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-257 |#1|) (-141) (-1226)) (T -257))
-((-4231 (*1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-4231 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-4 *1 (-257 *3)))) (-1434 (*1 *2 *1) (-12 (-4 *1 (-257 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))) (-3579 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-1697 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-4170 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-1803 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-2360 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-4043 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))) (-2697 (*1 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
-(-13 (-1130 |t#1|) (-1004 |t#1|) (-10 -8 (-15 -4231 ($)) (-15 -4231 ($ (-650 |t#1|))) (-15 -1434 ((-777) $)) (-15 -3579 (|t#1| $)) (-15 -1697 (|t#1| $)) (-15 -4170 (|t#1| |t#1| $)) (-15 -1803 (|t#1| |t#1| $)) (-15 -2360 (|t#1| $)) (-15 -4043 (|t#1| $)) (-15 -2697 ($ $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1004 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1130 |#1|) . T) ((-1226) . T))
-((-1518 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 153)) (-1426 (((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384))) 173) (((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 171) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 176) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 172) (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 164) (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 163) (((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384))) 145) (((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266))) 143) (((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384))) 144) (((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266))) 141)) (-1376 (((-1278) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384))) 175) (((-1278) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 174) (((-1278) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 178) (((-1278) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 177) (((-1278) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 166) (((-1278) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 165) (((-1278) (-1 (-950 (-227)) (-227)) (-1103 (-384))) 151) (((-1278) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266))) 150) (((-1278) (-886 (-1 (-227) (-227))) (-1103 (-384))) 149) (((-1278) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266))) 148) (((-1277) (-884 (-1 (-227) (-227))) (-1103 (-384))) 113) (((-1277) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266))) 112) (((-1277) (-1 (-227) (-227)) (-1103 (-384))) 107) (((-1277) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266))) 105)))
-(((-258) (-10 -7 (-15 -1376 ((-1277) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1376 ((-1277) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1376 ((-1278) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1376 ((-1278) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1376 ((-1278) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1518 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -258))
-((-1518 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1426 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1277)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1277)) (-5 *1 (-258)))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-258)))))
-(-10 -7 (-15 -1376 ((-1277) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1376 ((-1277) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1376 ((-1278) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1376 ((-1278) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1376 ((-1278) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1426 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1518 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
-((-1376 (((-1277) (-298 |#2|) (-1186) (-1186) (-650 (-266))) 101)))
-(((-259 |#1| |#2|) (-10 -7 (-15 -1376 ((-1277) (-298 |#2|) (-1186) (-1186) (-650 (-266))))) (-13 (-562) (-856) (-1047 (-570))) (-436 |#1|)) (T -259))
-((-1376 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-298 *7)) (-5 *4 (-1186)) (-5 *5 (-650 (-266))) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-856) (-1047 (-570)))) (-5 *2 (-1277)) (-5 *1 (-259 *6 *7)))))
-(-10 -7 (-15 -1376 ((-1277) (-298 |#2|) (-1186) (-1186) (-650 (-266)))))
-((-3803 (((-570) (-570)) 73)) (-3406 (((-570) (-570)) 74)) (-4135 (((-227) (-227)) 75)) (-2296 (((-1278) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227))) 72)) (-2968 (((-1278) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112)) 70)))
-(((-260) (-10 -7 (-15 -2968 ((-1278) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -2296 ((-1278) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -3803 ((-570) (-570))) (-15 -3406 ((-570) (-570))) (-15 -4135 ((-227) (-227))))) (T -260))
-((-4135 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))) (-3406 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-3803 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-2296 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227))) (-5 *2 (-1278)) (-5 *1 (-260)))) (-2968 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227))) (-5 *5 (-112)) (-5 *2 (-1278)) (-5 *1 (-260)))))
-(-10 -7 (-15 -2968 ((-1278) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -2296 ((-1278) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -3803 ((-570) (-570))) (-15 -3406 ((-570) (-570))) (-15 -4135 ((-227) (-227))))
+((-4001 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *4 *3 *5 *6)))) (-3750 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 *4)))) (-4331 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777)))) (-4331 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777)))) (-3221 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777)))) (-3643 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 (-777))))) (-2131 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777)))) (-3643 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-650 (-777))))) (-2131 (*1 *2 *1 *3) (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777)))) (-1428 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-112)))) (-3082 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-799)) (-4 *2 (-269 *4)))) (-1517 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-2867 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-4001 (*1 *2 *1) (-12 (-4 *3 (-235)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *3 *4 *5 *6)))))
+(-13 (-956 |t#1| |t#4| |t#3|) (-233 |t#1|) (-1047 |t#2|) (-10 -8 (-15 -4001 ((-1 $ (-777)) |t#2|)) (-15 -3750 ((-650 |t#2|) $)) (-15 -4331 ((-777) $ |t#2|)) (-15 -4331 ((-777) $)) (-15 -3221 ((-777) $ |t#2|)) (-15 -3643 ((-650 (-777)) $)) (-15 -2131 ((-777) $)) (-15 -3643 ((-650 (-777)) $ |t#2|)) (-15 -2131 ((-777) $ |t#2|)) (-15 -1428 ((-112) $)) (-15 -3082 (|t#3| $)) (-15 -1517 ($ $)) (-15 -2867 ($ $)) (IF (|has| |t#1| (-235)) (PROGN (-6 (-520 |t#2| |t#1|)) (-6 (-520 |t#2| $)) (-6 (-313 $)) (-15 -4001 ((-1 $ (-777)) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#2|) . T) ((-622 |#3|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570))))) ((-233 |#1|) . T) ((-235) |has| |#1| (-235)) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#4|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#2| |#1|) |has| |#1| (-235)) ((-520 |#2| $) |has| |#1| (-235)) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-732) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-907 |#3|) . T) ((-893 (-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))) ((-956 |#1| |#4| |#3|) . T) ((-916) |has| |#1| (-916)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1047 |#2|) . T) ((-1047 |#3|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3979 ((|#1| $) 55)) (-3240 ((|#1| $) 45)) (-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-3663 (($ $) 61)) (-2347 (($ $) 49)) (-3575 ((|#1| |#1| $) 47)) (-1568 ((|#1| $) 46)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-3788 (((-777) $) 62)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-1756 ((|#1| |#1| $) 53)) (-1499 ((|#1| |#1| $) 52)) (-2599 (($ |#1| $) 41)) (-1435 (((-777) $) 56)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-4336 ((|#1| $) 63)) (-2273 ((|#1| $) 51)) (-2886 ((|#1| $) 50)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3218 ((|#1| |#1| $) 59)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3988 ((|#1| $) 60)) (-4207 (($) 58) (($ (-650 |#1|)) 57)) (-2766 (((-777) $) 44)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1852 ((|#1| $) 54)) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-3407 ((|#1| $) 64)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-257 |#1|) (-141) (-1227)) (T -257))
+((-4207 (*1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-4207 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-257 *3)))) (-1435 (*1 *2 *1) (-12 (-4 *1 (-257 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-3979 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1852 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1756 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1499 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2273 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2886 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2347 (*1 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(-13 (-1130 |t#1|) (-1004 |t#1|) (-10 -8 (-15 -4207 ($)) (-15 -4207 ($ (-650 |t#1|))) (-15 -1435 ((-777) $)) (-15 -3979 (|t#1| $)) (-15 -1852 (|t#1| $)) (-15 -1756 (|t#1| |t#1| $)) (-15 -1499 (|t#1| |t#1| $)) (-15 -2273 (|t#1| $)) (-15 -2886 (|t#1| $)) (-15 -2347 ($ $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1004 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1130 |#1|) . T) ((-1227) . T))
+((-3657 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 153)) (-1427 (((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384))) 173) (((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 171) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 176) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 172) (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 164) (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 163) (((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384))) 145) (((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266))) 143) (((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384))) 144) (((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266))) 141)) (-1377 (((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384))) 175) (((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 174) (((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 178) (((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 177) (((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384))) 166) (((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266))) 165) (((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384))) 151) (((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266))) 150) (((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384))) 149) (((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266))) 148) (((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384))) 113) (((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266))) 112) (((-1278) (-1 (-227) (-227)) (-1103 (-384))) 107) (((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266))) 105)))
+(((-258) (-10 -7 (-15 -1377 ((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1377 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1377 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1377 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1377 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -3657 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -258))
+((-3657 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1427 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258)))))
+(-10 -7 (-15 -1377 ((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1377 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1377 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1377 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1377 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1427 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -3657 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
+((-1377 (((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266))) 101)))
+(((-259 |#1| |#2|) (-10 -7 (-15 -1377 ((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266))))) (-13 (-562) (-856) (-1047 (-570))) (-436 |#1|)) (T -259))
+((-1377 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-298 *7)) (-5 *4 (-1186)) (-5 *5 (-650 (-266))) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-856) (-1047 (-570)))) (-5 *2 (-1278)) (-5 *1 (-259 *6 *7)))))
+(-10 -7 (-15 -1377 ((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266)))))
+((-2337 (((-570) (-570)) 73)) (-2874 (((-570) (-570)) 74)) (-1392 (((-227) (-227)) 75)) (-2775 (((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227))) 72)) (-2992 (((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112)) 70)))
+(((-260) (-10 -7 (-15 -2992 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -2775 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -2337 ((-570) (-570))) (-15 -2874 ((-570) (-570))) (-15 -1392 ((-227) (-227))))) (T -260))
+((-1392 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))) (-2874 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-2337 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-2775 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227))) (-5 *2 (-1279)) (-5 *1 (-260)))) (-2992 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227))) (-5 *5 (-112)) (-5 *2 (-1279)) (-5 *1 (-260)))))
+(-10 -7 (-15 -2992 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -2775 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -2337 ((-570) (-570))) (-15 -2874 ((-570) (-570))) (-15 -1392 ((-227) (-227))))
((-3735 (((-1101 (-384)) (-1101 (-320 |#1|))) 16)))
(((-261 |#1|) (-10 -7 (-15 -3735 ((-1101 (-384)) (-1101 (-320 |#1|))))) (-13 (-856) (-562) (-620 (-384)))) (T -261))
((-3735 (*1 *2 *3) (-12 (-5 *3 (-1101 (-320 *4))) (-4 *4 (-13 (-856) (-562) (-620 (-384)))) (-5 *2 (-1101 (-384))) (-5 *1 (-261 *4)))))
(-10 -7 (-15 -3735 ((-1101 (-384)) (-1101 (-320 |#1|)))))
-((-1426 (((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384))) 75) (((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 74) (((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384))) 65) (((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 64) (((-1142 (-227)) (-886 |#1|) (-1101 (-384))) 56) (((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266))) 55)) (-1376 (((-1278) (-889 |#1|) (-1101 (-384)) (-1101 (-384))) 78) (((-1278) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 77) (((-1278) |#1| (-1101 (-384)) (-1101 (-384))) 68) (((-1278) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 67) (((-1278) (-886 |#1|) (-1101 (-384))) 60) (((-1278) (-886 |#1|) (-1101 (-384)) (-650 (-266))) 59) (((-1277) (-884 |#1|) (-1101 (-384))) 47) (((-1277) (-884 |#1|) (-1101 (-384)) (-650 (-266))) 46) (((-1277) |#1| (-1101 (-384))) 38) (((-1277) |#1| (-1101 (-384)) (-650 (-266))) 36)))
-(((-262 |#1|) (-10 -7 (-15 -1376 ((-1277) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) |#1| (-1101 (-384)))) (-15 -1376 ((-1277) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) (-884 |#1|) (-1101 (-384)))) (-15 -1376 ((-1278) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-886 |#1|) (-1101 (-384)))) (-15 -1426 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1376 ((-1278) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1426 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1376 ((-1278) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1426 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384))))) (-13 (-620 (-542)) (-1109))) (T -262))
-((-1426 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *5)))) (-1426 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *6)))) (-1376 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278)) (-5 *1 (-262 *5)))) (-1376 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278)) (-5 *1 (-262 *6)))) (-1426 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1426 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1376 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1278)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1376 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1426 (*1 *2 *3 *4) (-12 (-5 *3 (-886 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *5)))) (-1426 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *6)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-886 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278)) (-5 *1 (-262 *5)))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278)) (-5 *1 (-262 *6)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-884 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1277)) (-5 *1 (-262 *5)))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-884 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1277)) (-5 *1 (-262 *6)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1277)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1376 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))))
-(-10 -7 (-15 -1376 ((-1277) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) |#1| (-1101 (-384)))) (-15 -1376 ((-1277) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1277) (-884 |#1|) (-1101 (-384)))) (-15 -1376 ((-1278) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-886 |#1|) (-1101 (-384)))) (-15 -1426 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1376 ((-1278) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1426 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1376 ((-1278) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1376 ((-1278) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1426 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1426 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))))
-((-1376 (((-1278) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266))) 23) (((-1278) (-650 (-227)) (-650 (-227)) (-650 (-227))) 24) (((-1277) (-650 (-950 (-227))) (-650 (-266))) 16) (((-1277) (-650 (-950 (-227)))) 17) (((-1277) (-650 (-227)) (-650 (-227)) (-650 (-266))) 20) (((-1277) (-650 (-227)) (-650 (-227))) 21)))
-(((-263) (-10 -7 (-15 -1376 ((-1277) (-650 (-227)) (-650 (-227)))) (-15 -1376 ((-1277) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1376 ((-1277) (-650 (-950 (-227))))) (-15 -1376 ((-1277) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1376 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1376 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))) (T -263))
-((-1376 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1376 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1376 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-263)))) (-1376 (*1 *2 *3) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *2 (-1277)) (-5 *1 (-263)))) (-1376 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-263)))) (-1376 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277)) (-5 *1 (-263)))))
-(-10 -7 (-15 -1376 ((-1277) (-650 (-227)) (-650 (-227)))) (-15 -1376 ((-1277) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1376 ((-1277) (-650 (-950 (-227))))) (-15 -1376 ((-1277) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1376 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1376 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))
-((-1833 (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 25)) (-3924 (((-928) (-650 (-266)) (-928)) 52)) (-2927 (((-928) (-650 (-266)) (-928)) 51)) (-3087 (((-650 (-384)) (-650 (-266)) (-650 (-384))) 68)) (-2415 (((-384) (-650 (-266)) (-384)) 57)) (-2552 (((-928) (-650 (-266)) (-928)) 53)) (-4125 (((-112) (-650 (-266)) (-112)) 27)) (-3261 (((-1168) (-650 (-266)) (-1168)) 19)) (-3865 (((-1168) (-650 (-266)) (-1168)) 26)) (-2281 (((-1142 (-227)) (-650 (-266))) 46)) (-2646 (((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384)))) 40)) (-4289 (((-880) (-650 (-266)) (-880)) 32)) (-2702 (((-880) (-650 (-266)) (-880)) 33)) (-4179 (((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227)))) 63)) (-1849 (((-112) (-650 (-266)) (-112)) 14)) (-1708 (((-112) (-650 (-266)) (-112)) 13)))
-(((-264) (-10 -7 (-15 -1708 ((-112) (-650 (-266)) (-112))) (-15 -1849 ((-112) (-650 (-266)) (-112))) (-15 -1833 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ((-1168) (-650 (-266)) (-1168))) (-15 -3865 ((-1168) (-650 (-266)) (-1168))) (-15 -4125 ((-112) (-650 (-266)) (-112))) (-15 -4289 ((-880) (-650 (-266)) (-880))) (-15 -2702 ((-880) (-650 (-266)) (-880))) (-15 -2646 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -2927 ((-928) (-650 (-266)) (-928))) (-15 -3924 ((-928) (-650 (-266)) (-928))) (-15 -2281 ((-1142 (-227)) (-650 (-266)))) (-15 -2552 ((-928) (-650 (-266)) (-928))) (-15 -2415 ((-384) (-650 (-266)) (-384))) (-15 -4179 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3087 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))) (T -264))
-((-3087 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-384))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-4179 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2415 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2552 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2281 (*1 *2 *3) (-12 (-5 *3 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-264)))) (-3924 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2927 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2646 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2702 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-4289 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-4125 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3865 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3261 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1833 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1849 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1708 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(-10 -7 (-15 -1708 ((-112) (-650 (-266)) (-112))) (-15 -1849 ((-112) (-650 (-266)) (-112))) (-15 -1833 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ((-1168) (-650 (-266)) (-1168))) (-15 -3865 ((-1168) (-650 (-266)) (-1168))) (-15 -4125 ((-112) (-650 (-266)) (-112))) (-15 -4289 ((-880) (-650 (-266)) (-880))) (-15 -2702 ((-880) (-650 (-266)) (-880))) (-15 -2646 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -2927 ((-928) (-650 (-266)) (-928))) (-15 -3924 ((-928) (-650 (-266)) (-928))) (-15 -2281 ((-1142 (-227)) (-650 (-266)))) (-15 -2552 ((-928) (-650 (-266)) (-928))) (-15 -2415 ((-384) (-650 (-266)) (-384))) (-15 -4179 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3087 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))
-((-1598 (((-3 |#1| "failed") (-650 (-266)) (-1186)) 17)))
-(((-265 |#1|) (-10 -7 (-15 -1598 ((-3 |#1| "failed") (-650 (-266)) (-1186)))) (-1226)) (T -265))
-((-1598 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *1 (-265 *2)) (-4 *2 (-1226)))))
-(-10 -7 (-15 -1598 ((-3 |#1| "failed") (-650 (-266)) (-1186))))
-((-2416 (((-112) $ $) NIL)) (-1833 (($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 24)) (-3924 (($ (-928)) 81)) (-2927 (($ (-928)) 80)) (-1733 (($ (-650 (-384))) 87)) (-2415 (($ (-384)) 66)) (-2552 (($ (-928)) 82)) (-4125 (($ (-112)) 33)) (-3261 (($ (-1168)) 28)) (-3865 (($ (-1168)) 29)) (-2281 (($ (-1142 (-227))) 76)) (-2646 (($ (-650 (-1103 (-384)))) 72)) (-3758 (($ (-650 (-1103 (-384)))) 68) (($ (-650 (-1103 (-413 (-570))))) 71)) (-1776 (($ (-384)) 38) (($ (-880)) 42)) (-2847 (((-112) (-650 $) (-1186)) 100)) (-1598 (((-3 (-52) "failed") (-650 $) (-1186)) 102)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1900 (($ (-384)) 43) (($ (-880)) 44)) (-1807 (($ (-1 (-950 (-227)) (-950 (-227)))) 65)) (-4179 (($ (-1 (-950 (-227)) (-950 (-227)))) 83)) (-4203 (($ (-1 (-227) (-227))) 48) (($ (-1 (-227) (-227) (-227))) 52) (($ (-1 (-227) (-227) (-227) (-227))) 56)) (-3735 (((-868) $) 93)) (-1406 (($ (-112)) 34) (($ (-650 (-1103 (-384)))) 60)) (-1859 (((-112) $ $) NIL)) (-1708 (($ (-112)) 35)) (-2872 (((-112) $ $) 97)))
-(((-266) (-13 (-1109) (-10 -8 (-15 -1708 ($ (-112))) (-15 -1406 ($ (-112))) (-15 -1833 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ($ (-1168))) (-15 -3865 ($ (-1168))) (-15 -4125 ($ (-112))) (-15 -1406 ($ (-650 (-1103 (-384))))) (-15 -1807 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -1776 ($ (-384))) (-15 -1776 ($ (-880))) (-15 -1900 ($ (-384))) (-15 -1900 ($ (-880))) (-15 -4203 ($ (-1 (-227) (-227)))) (-15 -4203 ($ (-1 (-227) (-227) (-227)))) (-15 -4203 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -2415 ($ (-384))) (-15 -3758 ($ (-650 (-1103 (-384))))) (-15 -3758 ($ (-650 (-1103 (-413 (-570)))))) (-15 -2646 ($ (-650 (-1103 (-384))))) (-15 -2281 ($ (-1142 (-227)))) (-15 -2927 ($ (-928))) (-15 -3924 ($ (-928))) (-15 -2552 ($ (-928))) (-15 -4179 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -1733 ($ (-650 (-384)))) (-15 -1598 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -2847 ((-112) (-650 $) (-1186)))))) (T -266))
-((-1708 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-1406 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-1833 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-266)))) (-3261 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-3865 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-4125 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-1406 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-1807 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-1776 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-1776 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-1900 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-1900 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-4203 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-266)))) (-4203 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-266)))) (-4203 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-266)))) (-2415 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-3758 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-3758 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-413 (-570))))) (-5 *1 (-266)))) (-2646 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-2281 (*1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-266)))) (-2927 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-3924 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-4179 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-1733 (*1 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-266)))) (-1598 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-52)) (-5 *1 (-266)))) (-2847 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112)) (-5 *1 (-266)))))
-(-13 (-1109) (-10 -8 (-15 -1708 ($ (-112))) (-15 -1406 ($ (-112))) (-15 -1833 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ($ (-1168))) (-15 -3865 ($ (-1168))) (-15 -4125 ($ (-112))) (-15 -1406 ($ (-650 (-1103 (-384))))) (-15 -1807 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -1776 ($ (-384))) (-15 -1776 ($ (-880))) (-15 -1900 ($ (-384))) (-15 -1900 ($ (-880))) (-15 -4203 ($ (-1 (-227) (-227)))) (-15 -4203 ($ (-1 (-227) (-227) (-227)))) (-15 -4203 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -2415 ($ (-384))) (-15 -3758 ($ (-650 (-1103 (-384))))) (-15 -3758 ($ (-650 (-1103 (-413 (-570)))))) (-15 -2646 ($ (-650 (-1103 (-384))))) (-15 -2281 ($ (-1142 (-227)))) (-15 -2927 ($ (-928))) (-15 -3924 ($ (-928))) (-15 -2552 ($ (-928))) (-15 -4179 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -1733 ($ (-650 (-384)))) (-15 -1598 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -2847 ((-112) (-650 $) (-1186)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-4307 (((-650 (-777)) $) NIL) (((-650 (-777)) $ |#2|) NIL)) (-3454 (((-777) $) NIL) (((-777) $ |#2|) NIL)) (-1716 (((-650 |#3|) $) NIL)) (-3703 (((-1182 $) $ |#3|) NIL) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 |#3|)) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2009 (($ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1134 |#1| |#2|) "failed") $) 23)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1134 |#1| |#2|) $) NIL)) (-1939 (($ $ $ |#3|) NIL (|has| |#1| (-174)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-537 |#3|) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))))) (-3157 (((-777) $ |#2|) NIL) (((-777) $) 10)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#1|) |#3|) NIL) (($ (-1182 $) |#3|) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#3|) NIL)) (-4341 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL)) (-4414 (($ (-1 (-537 |#3|) (-537 |#3|)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3581 (((-1 $ (-777)) |#2|) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-3382 (((-3 |#3| "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-3082 ((|#3| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-1795 (((-112) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| |#3|) (|:| -1907 (-777))) "failed") $) NIL)) (-1516 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-650 |#3|) (-650 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-650 |#3|) (-650 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 $)) NIL (|has| |#1| (-235))) (($ $ |#2| |#1|) NIL (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 |#1|)) NIL (|has| |#1| (-235)))) (-2998 (($ $ |#3|) NIL (|has| |#1| (-174)))) (-3447 (($ $ |#3|) NIL) (($ $ (-650 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2146 (((-650 |#2|) $) NIL)) (-1601 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL) (((-777) $ |#2|) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))))) (-3030 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 26) (($ |#3|) 25) (($ |#2|) NIL) (($ (-1134 |#1| |#2|)) 32) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ |#3|) NIL) (($ $ (-650 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-1427 (((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384))) 75) (((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 74) (((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384))) 65) (((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 64) (((-1142 (-227)) (-886 |#1|) (-1101 (-384))) 56) (((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266))) 55)) (-1377 (((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384))) 78) (((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 77) (((-1279) |#1| (-1101 (-384)) (-1101 (-384))) 68) (((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266))) 67) (((-1279) (-886 |#1|) (-1101 (-384))) 60) (((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266))) 59) (((-1278) (-884 |#1|) (-1101 (-384))) 47) (((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266))) 46) (((-1278) |#1| (-1101 (-384))) 38) (((-1278) |#1| (-1101 (-384)) (-650 (-266))) 36)))
+(((-262 |#1|) (-10 -7 (-15 -1377 ((-1278) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) |#1| (-1101 (-384)))) (-15 -1377 ((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) (-884 |#1|) (-1101 (-384)))) (-15 -1377 ((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-886 |#1|) (-1101 (-384)))) (-15 -1427 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1377 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1427 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1377 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1427 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384))))) (-13 (-620 (-542)) (-1109))) (T -262))
+((-1427 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *5)))) (-1427 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *6)))) (-1377 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279)) (-5 *1 (-262 *5)))) (-1377 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-889 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279)) (-5 *1 (-262 *6)))) (-1427 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1427 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1377 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1279)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1377 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1427 (*1 *2 *3 *4) (-12 (-5 *3 (-886 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *5)))) (-1427 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *6)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-886 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279)) (-5 *1 (-262 *5)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-886 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279)) (-5 *1 (-262 *6)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-884 *5)) (-5 *4 (-1101 (-384))) (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278)) (-5 *1 (-262 *5)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-884 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278)) (-5 *1 (-262 *6)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1278)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))))
+(-10 -7 (-15 -1377 ((-1278) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) |#1| (-1101 (-384)))) (-15 -1377 ((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1278) (-884 |#1|) (-1101 (-384)))) (-15 -1377 ((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-886 |#1|) (-1101 (-384)))) (-15 -1427 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1377 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1427 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1377 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1377 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1427 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1427 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))))
+((-1377 (((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266))) 23) (((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227))) 24) (((-1278) (-650 (-950 (-227))) (-650 (-266))) 16) (((-1278) (-650 (-950 (-227)))) 17) (((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266))) 20) (((-1278) (-650 (-227)) (-650 (-227))) 21)))
+(((-263) (-10 -7 (-15 -1377 ((-1278) (-650 (-227)) (-650 (-227)))) (-15 -1377 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1377 ((-1278) (-650 (-950 (-227))))) (-15 -1377 ((-1278) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1377 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1377 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))) (T -263))
+((-1377 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-263)))) (-1377 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1279)) (-5 *1 (-263)))) (-1377 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1377 (*1 *2 *3) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1377 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1377 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1278)) (-5 *1 (-263)))))
+(-10 -7 (-15 -1377 ((-1278) (-650 (-227)) (-650 (-227)))) (-15 -1377 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1377 ((-1278) (-650 (-950 (-227))))) (-15 -1377 ((-1278) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1377 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1377 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))
+((-1789 (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 25)) (-4202 (((-928) (-650 (-266)) (-928)) 52)) (-3892 (((-928) (-650 (-266)) (-928)) 51)) (-3087 (((-650 (-384)) (-650 (-266)) (-650 (-384))) 68)) (-1601 (((-384) (-650 (-266)) (-384)) 57)) (-3470 (((-928) (-650 (-266)) (-928)) 53)) (-2473 (((-112) (-650 (-266)) (-112)) 27)) (-3261 (((-1168) (-650 (-266)) (-1168)) 19)) (-1785 (((-1168) (-650 (-266)) (-1168)) 26)) (-2630 (((-1142 (-227)) (-650 (-266))) 46)) (-1946 (((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384)))) 40)) (-3485 (((-880) (-650 (-266)) (-880)) 32)) (-2378 (((-880) (-650 (-266)) (-880)) 33)) (-1856 (((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227)))) 63)) (-3759 (((-112) (-650 (-266)) (-112)) 14)) (-1928 (((-112) (-650 (-266)) (-112)) 13)))
+(((-264) (-10 -7 (-15 -1928 ((-112) (-650 (-266)) (-112))) (-15 -3759 ((-112) (-650 (-266)) (-112))) (-15 -1789 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ((-1168) (-650 (-266)) (-1168))) (-15 -1785 ((-1168) (-650 (-266)) (-1168))) (-15 -2473 ((-112) (-650 (-266)) (-112))) (-15 -3485 ((-880) (-650 (-266)) (-880))) (-15 -2378 ((-880) (-650 (-266)) (-880))) (-15 -1946 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -3892 ((-928) (-650 (-266)) (-928))) (-15 -4202 ((-928) (-650 (-266)) (-928))) (-15 -2630 ((-1142 (-227)) (-650 (-266)))) (-15 -3470 ((-928) (-650 (-266)) (-928))) (-15 -1601 ((-384) (-650 (-266)) (-384))) (-15 -1856 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3087 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))) (T -264))
+((-3087 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-384))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1856 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1601 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3470 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2630 (*1 *2 *3) (-12 (-5 *3 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-264)))) (-4202 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3892 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1946 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2378 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3485 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2473 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1785 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3261 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1789 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3759 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1928 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(-10 -7 (-15 -1928 ((-112) (-650 (-266)) (-112))) (-15 -3759 ((-112) (-650 (-266)) (-112))) (-15 -1789 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ((-1168) (-650 (-266)) (-1168))) (-15 -1785 ((-1168) (-650 (-266)) (-1168))) (-15 -2473 ((-112) (-650 (-266)) (-112))) (-15 -3485 ((-880) (-650 (-266)) (-880))) (-15 -2378 ((-880) (-650 (-266)) (-880))) (-15 -1946 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -3892 ((-928) (-650 (-266)) (-928))) (-15 -4202 ((-928) (-650 (-266)) (-928))) (-15 -2630 ((-1142 (-227)) (-650 (-266)))) (-15 -3470 ((-928) (-650 (-266)) (-928))) (-15 -1601 ((-384) (-650 (-266)) (-384))) (-15 -1856 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3087 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))
+((-1599 (((-3 |#1| "failed") (-650 (-266)) (-1186)) 17)))
+(((-265 |#1|) (-10 -7 (-15 -1599 ((-3 |#1| "failed") (-650 (-266)) (-1186)))) (-1227)) (T -265))
+((-1599 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *1 (-265 *2)) (-4 *2 (-1227)))))
+(-10 -7 (-15 -1599 ((-3 |#1| "failed") (-650 (-266)) (-1186))))
+((-2417 (((-112) $ $) NIL)) (-1789 (($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 24)) (-4202 (($ (-928)) 81)) (-3892 (($ (-928)) 80)) (-2101 (($ (-650 (-384))) 87)) (-1601 (($ (-384)) 66)) (-3470 (($ (-928)) 82)) (-2473 (($ (-112)) 33)) (-3261 (($ (-1168)) 28)) (-1785 (($ (-1168)) 29)) (-2630 (($ (-1142 (-227))) 76)) (-1946 (($ (-650 (-1103 (-384)))) 72)) (-1990 (($ (-650 (-1103 (-384)))) 68) (($ (-650 (-1103 (-413 (-570))))) 71)) (-4366 (($ (-384)) 38) (($ (-880)) 42)) (-3179 (((-112) (-650 $) (-1186)) 100)) (-1599 (((-3 (-52) "failed") (-650 $) (-1186)) 102)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4234 (($ (-384)) 43) (($ (-880)) 44)) (-1533 (($ (-1 (-950 (-227)) (-950 (-227)))) 65)) (-1856 (($ (-1 (-950 (-227)) (-950 (-227)))) 83)) (-3906 (($ (-1 (-227) (-227))) 48) (($ (-1 (-227) (-227) (-227))) 52) (($ (-1 (-227) (-227) (-227) (-227))) 56)) (-3735 (((-868) $) 93)) (-4325 (($ (-112)) 34) (($ (-650 (-1103 (-384)))) 60)) (-3866 (((-112) $ $) NIL)) (-1928 (($ (-112)) 35)) (-2872 (((-112) $ $) 97)))
+(((-266) (-13 (-1109) (-10 -8 (-15 -1928 ($ (-112))) (-15 -4325 ($ (-112))) (-15 -1789 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ($ (-1168))) (-15 -1785 ($ (-1168))) (-15 -2473 ($ (-112))) (-15 -4325 ($ (-650 (-1103 (-384))))) (-15 -1533 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -4366 ($ (-384))) (-15 -4366 ($ (-880))) (-15 -4234 ($ (-384))) (-15 -4234 ($ (-880))) (-15 -3906 ($ (-1 (-227) (-227)))) (-15 -3906 ($ (-1 (-227) (-227) (-227)))) (-15 -3906 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -1601 ($ (-384))) (-15 -1990 ($ (-650 (-1103 (-384))))) (-15 -1990 ($ (-650 (-1103 (-413 (-570)))))) (-15 -1946 ($ (-650 (-1103 (-384))))) (-15 -2630 ($ (-1142 (-227)))) (-15 -3892 ($ (-928))) (-15 -4202 ($ (-928))) (-15 -3470 ($ (-928))) (-15 -1856 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -2101 ($ (-650 (-384)))) (-15 -1599 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -3179 ((-112) (-650 $) (-1186)))))) (T -266))
+((-1928 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-4325 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-1789 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-266)))) (-3261 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-1785 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-2473 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-4325 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-1533 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-4366 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-4366 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-4234 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-4234 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-3906 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-266)))) (-3906 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-266)))) (-3906 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-266)))) (-1601 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-1990 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-1990 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-413 (-570))))) (-5 *1 (-266)))) (-1946 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-2630 (*1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-266)))) (-3892 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-4202 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-3470 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-1856 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-2101 (*1 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-266)))) (-1599 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-52)) (-5 *1 (-266)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112)) (-5 *1 (-266)))))
+(-13 (-1109) (-10 -8 (-15 -1928 ($ (-112))) (-15 -4325 ($ (-112))) (-15 -1789 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3261 ($ (-1168))) (-15 -1785 ($ (-1168))) (-15 -2473 ($ (-112))) (-15 -4325 ($ (-650 (-1103 (-384))))) (-15 -1533 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -4366 ($ (-384))) (-15 -4366 ($ (-880))) (-15 -4234 ($ (-384))) (-15 -4234 ($ (-880))) (-15 -3906 ($ (-1 (-227) (-227)))) (-15 -3906 ($ (-1 (-227) (-227) (-227)))) (-15 -3906 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -1601 ($ (-384))) (-15 -1990 ($ (-650 (-1103 (-384))))) (-15 -1990 ($ (-650 (-1103 (-413 (-570)))))) (-15 -1946 ($ (-650 (-1103 (-384))))) (-15 -2630 ($ (-1142 (-227)))) (-15 -3892 ($ (-928))) (-15 -4202 ($ (-928))) (-15 -3470 ($ (-928))) (-15 -1856 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -2101 ($ (-650 (-384)))) (-15 -1599 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -3179 ((-112) (-650 $) (-1186)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3643 (((-650 (-777)) $) NIL) (((-650 (-777)) $ |#2|) NIL)) (-2131 (((-777) $) NIL) (((-777) $ |#2|) NIL)) (-1713 (((-650 |#3|) $) NIL)) (-3702 (((-1182 $) $ |#3|) NIL) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 |#3|)) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2867 (($ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1134 |#1| |#2|) "failed") $) 23)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1134 |#1| |#2|) $) NIL)) (-3383 (($ $ $ |#3|) NIL (|has| |#1| (-174)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-537 |#3|) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))))) (-4331 (((-777) $ |#2|) NIL) (((-777) $) 10)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#1|) |#3|) NIL) (($ (-1182 $) |#3|) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#3|) NIL)) (-2730 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL)) (-2206 (($ (-1 (-537 |#3|) (-537 |#3|)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4001 (((-1 $ (-777)) |#2|) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-2645 (((-3 |#3| "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-3082 ((|#3| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-1428 (((-112) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| |#3|) (|:| -3011 (-777))) "failed") $) NIL)) (-1517 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-650 |#3|) (-650 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-650 |#3|) (-650 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 $)) NIL (|has| |#1| (-235))) (($ $ |#2| |#1|) NIL (|has| |#1| (-235))) (($ $ (-650 |#2|) (-650 |#1|)) NIL (|has| |#1| (-235)))) (-3290 (($ $ |#3|) NIL (|has| |#1| (-174)))) (-3447 (($ $ |#3|) NIL) (($ $ (-650 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3750 (((-650 |#2|) $) NIL)) (-3221 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL) (((-777) $ |#2|) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))))) (-3621 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 26) (($ |#3|) 25) (($ |#2|) NIL) (($ (-1134 |#1| |#2|)) 32) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ |#3|) NIL) (($ $ (-650 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-267 |#1| |#2| |#3|) (-13 (-256 |#1| |#2| |#3| (-537 |#3|)) (-1047 (-1134 |#1| |#2|))) (-1058) (-856) (-269 |#2|)) (T -267))
NIL
(-13 (-256 |#1| |#2| |#3| (-537 |#3|)) (-1047 (-1134 |#1| |#2|)))
-((-3454 (((-777) $) 37)) (-4378 (((-3 |#2| "failed") $) 22)) (-3080 ((|#2| $) 33)) (-3447 (($ $) 14) (($ $ (-777)) 18)) (-3735 (((-868) $) 32) (($ |#2|) 11)) (-2872 (((-112) $ $) 26)) (-2894 (((-112) $ $) 36)))
-(((-268 |#1| |#2|) (-10 -8 (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -3454 ((-777) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-269 |#2|) (-856)) (T -268))
+((-2131 (((-777) $) 37)) (-4379 (((-3 |#2| "failed") $) 22)) (-3080 ((|#2| $) 33)) (-3447 (($ $) 14) (($ $ (-777)) 18)) (-3735 (((-868) $) 32) (($ |#2|) 11)) (-2872 (((-112) $ $) 26)) (-2894 (((-112) $ $) 36)))
+(((-268 |#1| |#2|) (-10 -8 (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -2131 ((-777) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-269 |#2|) (-856)) (T -268))
NIL
-(-10 -8 (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -3454 ((-777) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-3454 (((-777) $) 23)) (-2643 ((|#1| $) 24)) (-4378 (((-3 |#1| "failed") $) 28)) (-3080 ((|#1| $) 29)) (-3157 (((-777) $) 25)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-3581 (($ |#1| (-777)) 26)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $) 22) (($ $ (-777)) 21)) (-3735 (((-868) $) 12) (($ |#1|) 27)) (-1859 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)))
+(-10 -8 (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -2131 ((-777) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2131 (((-777) $) 23)) (-2643 ((|#1| $) 24)) (-4379 (((-3 |#1| "failed") $) 28)) (-3080 ((|#1| $) 29)) (-4331 (((-777) $) 25)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4001 (($ |#1| (-777)) 26)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $) 22) (($ $ (-777)) 21)) (-3735 (((-868) $) 12) (($ |#1|) 27)) (-3866 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)))
(((-269 |#1|) (-141) (-856)) (T -269))
-((-3735 (*1 *1 *2) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3581 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2643 (*1 *2 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3454 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3447 (*1 *1 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-269 *3)) (-4 *3 (-856)))))
-(-13 (-856) (-1047 |t#1|) (-10 -8 (-15 -3581 ($ |t#1| (-777))) (-15 -3157 ((-777) $)) (-15 -2643 (|t#1| $)) (-15 -3454 ((-777) $)) (-15 -3447 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -3735 ($ |t#1|))))
+((-3735 (*1 *1 *2) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-4001 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-4331 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2643 (*1 *2 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-2131 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3447 (*1 *1 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-269 *3)) (-4 *3 (-856)))))
+(-13 (-856) (-1047 |t#1|) (-10 -8 (-15 -4001 ($ |t#1| (-777))) (-15 -4331 ((-777) $)) (-15 -2643 (|t#1| $)) (-15 -2131 ((-777) $)) (-15 -3447 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -3735 ($ |t#1|))))
(((-102) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-856) . T) ((-1047 |#1|) . T) ((-1109) . T))
-((-1716 (((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 54)) (-3039 (((-650 (-1186)) (-320 (-227)) (-777)) 96)) (-3355 (((-3 (-320 (-227)) "failed") (-320 (-227))) 64)) (-3187 (((-320 (-227)) (-320 (-227))) 82)) (-1618 (((-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 39)) (-1881 (((-112) (-650 (-320 (-227)))) 106)) (-2977 (((-112) (-320 (-227))) 37)) (-2789 (((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))))) 134)) (-1699 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 110)) (-3043 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 108)) (-2826 (((-695 (-227)) (-650 (-320 (-227))) (-777)) 122)) (-3244 (((-112) (-320 (-227))) 32) (((-112) (-650 (-320 (-227)))) 107)) (-1780 (((-650 (-227)) (-650 (-849 (-227))) (-227)) 15)) (-4267 (((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 128)) (-3376 (((-1044) (-1186) (-1044)) 47)))
-(((-270) (-10 -7 (-15 -1780 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -1618 ((-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3355 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3187 ((-320 (-227)) (-320 (-227)))) (-15 -1881 ((-112) (-650 (-320 (-227))))) (-15 -3244 ((-112) (-650 (-320 (-227))))) (-15 -3244 ((-112) (-320 (-227)))) (-15 -2826 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -3043 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -1699 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -2977 ((-112) (-320 (-227)))) (-15 -1716 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -3039 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -3376 ((-1044) (-1186) (-1044))) (-15 -4267 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -2789 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))))))) (T -270))
-((-2789 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))))) (-5 *2 (-650 (-1168))) (-5 *1 (-270)))) (-4267 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) (-5 *2 (-384)) (-5 *1 (-270)))) (-3376 (*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))) (-3039 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-1716 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-2977 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-1699 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-3043 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-2826 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-270)))) (-3244 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-3244 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-1881 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-3187 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-3355 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-1618 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-270)))) (-1780 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4)) (-5 *1 (-270)))))
-(-10 -7 (-15 -1780 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -1618 ((-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3355 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3187 ((-320 (-227)) (-320 (-227)))) (-15 -1881 ((-112) (-650 (-320 (-227))))) (-15 -3244 ((-112) (-650 (-320 (-227))))) (-15 -3244 ((-112) (-320 (-227)))) (-15 -2826 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -3043 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -1699 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -2977 ((-112) (-320 (-227)))) (-15 -1716 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -3039 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -3376 ((-1044) (-1186) (-1044))) (-15 -4267 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -2789 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))))))
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 56)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-1713 (((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 54)) (-3039 (((-650 (-1186)) (-320 (-227)) (-777)) 96)) (-3634 (((-3 (-320 (-227)) "failed") (-320 (-227))) 64)) (-1529 (((-320 (-227)) (-320 (-227))) 82)) (-3424 (((-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 39)) (-4043 (((-112) (-650 (-320 (-227)))) 106)) (-3063 (((-112) (-320 (-227))) 37)) (-3876 (((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))))) 134)) (-1871 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 110)) (-2492 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 108)) (-4278 (((-695 (-227)) (-650 (-320 (-227))) (-777)) 122)) (-3932 (((-112) (-320 (-227))) 32) (((-112) (-650 (-320 (-227)))) 107)) (-4400 (((-650 (-227)) (-650 (-849 (-227))) (-227)) 15)) (-3262 (((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 128)) (-2588 (((-1044) (-1186) (-1044)) 47)))
+(((-270) (-10 -7 (-15 -4400 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -3424 ((-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3634 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -1529 ((-320 (-227)) (-320 (-227)))) (-15 -4043 ((-112) (-650 (-320 (-227))))) (-15 -3932 ((-112) (-650 (-320 (-227))))) (-15 -3932 ((-112) (-320 (-227)))) (-15 -4278 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -2492 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -1871 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3063 ((-112) (-320 (-227)))) (-15 -1713 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3039 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -2588 ((-1044) (-1186) (-1044))) (-15 -3262 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3876 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))))))) (T -270))
+((-3876 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))))) (-5 *2 (-650 (-1168))) (-5 *1 (-270)))) (-3262 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) (-5 *2 (-384)) (-5 *1 (-270)))) (-2588 (*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))) (-3039 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-1713 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-3063 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-1871 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-2492 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-4278 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-270)))) (-3932 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-3932 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-4043 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-1529 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-3634 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-3424 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-270)))) (-4400 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4)) (-5 *1 (-270)))))
+(-10 -7 (-15 -4400 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -3424 ((-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3634 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -1529 ((-320 (-227)) (-320 (-227)))) (-15 -4043 ((-112) (-650 (-320 (-227))))) (-15 -3932 ((-112) (-650 (-320 (-227))))) (-15 -3932 ((-112) (-320 (-227)))) (-15 -4278 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -2492 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -1871 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3063 ((-112) (-320 (-227)))) (-15 -1713 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3039 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -2588 ((-1044) (-1186) (-1044))) (-15 -3262 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3876 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))))))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 56)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-271) (-845)) (T -271))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 72) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 63)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 41) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 43)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 72) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 63)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 41) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 43)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-272) (-845)) (T -272))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 85)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 52) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 65)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 85)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 52) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 65)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-273) (-845)) (T -273))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 73)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 45) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 73)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 45) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-274) (-845)) (T -274))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 65)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 31) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 65)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 31) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-275) (-845)) (T -275))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 90)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 33) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 90)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 33) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-276) (-845)) (T -276))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 87)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 87)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-277) (-845)) (T -277))
NIL
(-845)
-((-2416 (((-112) $ $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1657 (((-650 (-570)) $) 29)) (-1601 (((-777) $) 27)) (-3735 (((-868) $) 36) (($ (-650 (-570))) 23)) (-1859 (((-112) $ $) NIL)) (-3757 (($ (-777)) 33)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 17)))
-(((-278) (-13 (-856) (-10 -8 (-15 -3735 ($ (-650 (-570)))) (-15 -1601 ((-777) $)) (-15 -1657 ((-650 (-570)) $)) (-15 -3757 ($ (-777)))))) (T -278))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-1601 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-278)))) (-1657 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-3757 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
-(-13 (-856) (-10 -8 (-15 -3735 ($ (-650 (-570)))) (-15 -1601 ((-777) $)) (-15 -1657 ((-650 (-570)) $)) (-15 -3757 ($ (-777)))))
-((-2735 ((|#2| |#2|) 77)) (-2602 ((|#2| |#2|) 65)) (-3617 (((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 125)) (-2712 ((|#2| |#2|) 75)) (-2579 ((|#2| |#2|) 63)) (-4087 ((|#2| |#2|) 79)) (-2622 ((|#2| |#2|) 67)) (-1314 ((|#2|) 46)) (-3680 (((-115) (-115)) 100)) (-2635 ((|#2| |#2|) 61)) (-2831 (((-112) |#2|) 147)) (-4070 ((|#2| |#2|) 195)) (-4316 ((|#2| |#2|) 171)) (-2079 ((|#2|) 59)) (-3173 ((|#2|) 58)) (-3626 ((|#2| |#2|) 191)) (-2264 ((|#2| |#2|) 167)) (-3881 ((|#2| |#2|) 199)) (-2818 ((|#2| |#2|) 175)) (-4145 ((|#2| |#2|) 163)) (-4315 ((|#2| |#2|) 165)) (-1815 ((|#2| |#2|) 201)) (-2162 ((|#2| |#2|) 177)) (-1378 ((|#2| |#2|) 197)) (-1330 ((|#2| |#2|) 173)) (-1749 ((|#2| |#2|) 193)) (-2621 ((|#2| |#2|) 169)) (-2596 ((|#2| |#2|) 207)) (-4350 ((|#2| |#2|) 183)) (-4338 ((|#2| |#2|) 203)) (-4403 ((|#2| |#2|) 179)) (-1650 ((|#2| |#2|) 211)) (-3857 ((|#2| |#2|) 187)) (-1617 ((|#2| |#2|) 213)) (-1719 ((|#2| |#2|) 189)) (-4201 ((|#2| |#2|) 209)) (-3340 ((|#2| |#2|) 185)) (-3778 ((|#2| |#2|) 205)) (-2001 ((|#2| |#2|) 181)) (-4387 ((|#2| |#2|) 62)) (-4099 ((|#2| |#2|) 80)) (-2634 ((|#2| |#2|) 68)) (-2746 ((|#2| |#2|) 78)) (-2611 ((|#2| |#2|) 66)) (-2723 ((|#2| |#2|) 76)) (-2590 ((|#2| |#2|) 64)) (-2004 (((-112) (-115)) 98)) (-4138 ((|#2| |#2|) 83)) (-2671 ((|#2| |#2|) 71)) (-4108 ((|#2| |#2|) 81)) (-2647 ((|#2| |#2|) 69)) (-4161 ((|#2| |#2|) 85)) (-2691 ((|#2| |#2|) 73)) (-1509 ((|#2| |#2|) 86)) (-2701 ((|#2| |#2|) 74)) (-4150 ((|#2| |#2|) 84)) (-2681 ((|#2| |#2|) 72)) (-4123 ((|#2| |#2|) 82)) (-2660 ((|#2| |#2|) 70)))
-(((-279 |#1| |#2|) (-10 -7 (-15 -4387 (|#2| |#2|)) (-15 -2635 (|#2| |#2|)) (-15 -2579 (|#2| |#2|)) (-15 -2590 (|#2| |#2|)) (-15 -2602 (|#2| |#2|)) (-15 -2611 (|#2| |#2|)) (-15 -2622 (|#2| |#2|)) (-15 -2634 (|#2| |#2|)) (-15 -2647 (|#2| |#2|)) (-15 -2660 (|#2| |#2|)) (-15 -2671 (|#2| |#2|)) (-15 -2681 (|#2| |#2|)) (-15 -2691 (|#2| |#2|)) (-15 -2701 (|#2| |#2|)) (-15 -2712 (|#2| |#2|)) (-15 -2723 (|#2| |#2|)) (-15 -2735 (|#2| |#2|)) (-15 -2746 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4099 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -4123 (|#2| |#2|)) (-15 -4138 (|#2| |#2|)) (-15 -4150 (|#2| |#2|)) (-15 -4161 (|#2| |#2|)) (-15 -1509 (|#2| |#2|)) (-15 -1314 (|#2|)) (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -3173 (|#2|)) (-15 -2079 (|#2|)) (-15 -4315 (|#2| |#2|)) (-15 -4145 (|#2| |#2|)) (-15 -2264 (|#2| |#2|)) (-15 -2621 (|#2| |#2|)) (-15 -4316 (|#2| |#2|)) (-15 -1330 (|#2| |#2|)) (-15 -2818 (|#2| |#2|)) (-15 -2162 (|#2| |#2|)) (-15 -4403 (|#2| |#2|)) (-15 -2001 (|#2| |#2|)) (-15 -4350 (|#2| |#2|)) (-15 -3340 (|#2| |#2|)) (-15 -3857 (|#2| |#2|)) (-15 -1719 (|#2| |#2|)) (-15 -3626 (|#2| |#2|)) (-15 -1749 (|#2| |#2|)) (-15 -4070 (|#2| |#2|)) (-15 -1378 (|#2| |#2|)) (-15 -3881 (|#2| |#2|)) (-15 -1815 (|#2| |#2|)) (-15 -4338 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -2596 (|#2| |#2|)) (-15 -4201 (|#2| |#2|)) (-15 -1650 (|#2| |#2|)) (-15 -1617 (|#2| |#2|)) (-15 -3617 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -2831 ((-112) |#2|))) (-562) (-13 (-436 |#1|) (-1011))) (T -279))
-((-2831 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3)) (-4 *3 (-13 (-436 *4) (-1011))))) (-3617 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-650 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-436 *4) (-1011))) (-4 *4 (-562)) (-5 *1 (-279 *4 *2)))) (-1617 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1650 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4201 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2596 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3778 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4338 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1815 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3881 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1378 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4070 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1749 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3626 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3857 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3340 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4350 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2001 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4403 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2162 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2818 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1330 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4316 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2621 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2264 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4145 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4315 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2079 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-3173 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-279 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011))))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011))))) (-1314 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-1509 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4161 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4150 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4138 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4123 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4099 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2746 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2712 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2701 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2681 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2671 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2660 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2647 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2611 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2590 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2579 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4387 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))))
-(-10 -7 (-15 -4387 (|#2| |#2|)) (-15 -2635 (|#2| |#2|)) (-15 -2579 (|#2| |#2|)) (-15 -2590 (|#2| |#2|)) (-15 -2602 (|#2| |#2|)) (-15 -2611 (|#2| |#2|)) (-15 -2622 (|#2| |#2|)) (-15 -2634 (|#2| |#2|)) (-15 -2647 (|#2| |#2|)) (-15 -2660 (|#2| |#2|)) (-15 -2671 (|#2| |#2|)) (-15 -2681 (|#2| |#2|)) (-15 -2691 (|#2| |#2|)) (-15 -2701 (|#2| |#2|)) (-15 -2712 (|#2| |#2|)) (-15 -2723 (|#2| |#2|)) (-15 -2735 (|#2| |#2|)) (-15 -2746 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4099 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -4123 (|#2| |#2|)) (-15 -4138 (|#2| |#2|)) (-15 -4150 (|#2| |#2|)) (-15 -4161 (|#2| |#2|)) (-15 -1509 (|#2| |#2|)) (-15 -1314 (|#2|)) (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -3173 (|#2|)) (-15 -2079 (|#2|)) (-15 -4315 (|#2| |#2|)) (-15 -4145 (|#2| |#2|)) (-15 -2264 (|#2| |#2|)) (-15 -2621 (|#2| |#2|)) (-15 -4316 (|#2| |#2|)) (-15 -1330 (|#2| |#2|)) (-15 -2818 (|#2| |#2|)) (-15 -2162 (|#2| |#2|)) (-15 -4403 (|#2| |#2|)) (-15 -2001 (|#2| |#2|)) (-15 -4350 (|#2| |#2|)) (-15 -3340 (|#2| |#2|)) (-15 -3857 (|#2| |#2|)) (-15 -1719 (|#2| |#2|)) (-15 -3626 (|#2| |#2|)) (-15 -1749 (|#2| |#2|)) (-15 -4070 (|#2| |#2|)) (-15 -1378 (|#2| |#2|)) (-15 -3881 (|#2| |#2|)) (-15 -1815 (|#2| |#2|)) (-15 -4338 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -2596 (|#2| |#2|)) (-15 -4201 (|#2| |#2|)) (-15 -1650 (|#2| |#2|)) (-15 -1617 (|#2| |#2|)) (-15 -3617 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -2831 ((-112) |#2|)))
-((-3969 (((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186)) 153)) (-2325 ((|#2| (-413 (-570)) |#2|) 49)) (-2449 ((|#2| |#2| (-618 |#2|)) 146)) (-2624 (((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186)) 145)) (-1491 ((|#2| |#2| (-1186)) 20) ((|#2| |#2|) 23)) (-4046 ((|#2| |#2| (-1186)) 159) ((|#2| |#2|) 157)))
-(((-280 |#1| |#2|) (-10 -7 (-15 -4046 (|#2| |#2|)) (-15 -4046 (|#2| |#2| (-1186))) (-15 -2624 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -1491 (|#2| |#2|)) (-15 -1491 (|#2| |#2| (-1186))) (-15 -3969 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -2449 (|#2| |#2| (-618 |#2|))) (-15 -2325 (|#2| (-413 (-570)) |#2|))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -280))
-((-2325 (*1 *2 *3 *2) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))) (-2449 (*1 *2 *2 *3) (-12 (-5 *3 (-618 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)))) (-3969 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-1186)) (-4 *2 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *5 *2)))) (-1491 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))) (-1491 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))) (-2624 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-650 (-618 *3))) (|:| |vals| (-650 *3)))) (-5 *1 (-280 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-4046 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))) (-4046 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))))
-(-10 -7 (-15 -4046 (|#2| |#2|)) (-15 -4046 (|#2| |#2| (-1186))) (-15 -2624 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -1491 (|#2| |#2|)) (-15 -1491 (|#2| |#2| (-1186))) (-15 -3969 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -2449 (|#2| |#2| (-618 |#2|))) (-15 -2325 (|#2| (-413 (-570)) |#2|)))
-((-1409 (((-3 |#3| "failed") |#3|) 120)) (-2735 ((|#3| |#3|) 142)) (-1436 (((-3 |#3| "failed") |#3|) 89)) (-2602 ((|#3| |#3|) 132)) (-3827 (((-3 |#3| "failed") |#3|) 65)) (-2712 ((|#3| |#3|) 140)) (-2069 (((-3 |#3| "failed") |#3|) 53)) (-2579 ((|#3| |#3|) 130)) (-1344 (((-3 |#3| "failed") |#3|) 122)) (-4087 ((|#3| |#3|) 144)) (-1839 (((-3 |#3| "failed") |#3|) 91)) (-2622 ((|#3| |#3|) 134)) (-2705 (((-3 |#3| "failed") |#3| (-777)) 41)) (-3764 (((-3 |#3| "failed") |#3|) 81)) (-2635 ((|#3| |#3|) 129)) (-3588 (((-3 |#3| "failed") |#3|) 51)) (-4387 ((|#3| |#3|) 128)) (-3494 (((-3 |#3| "failed") |#3|) 123)) (-4099 ((|#3| |#3|) 145)) (-3580 (((-3 |#3| "failed") |#3|) 92)) (-2634 ((|#3| |#3|) 135)) (-2092 (((-3 |#3| "failed") |#3|) 121)) (-2746 ((|#3| |#3|) 143)) (-1652 (((-3 |#3| "failed") |#3|) 90)) (-2611 ((|#3| |#3|) 133)) (-3166 (((-3 |#3| "failed") |#3|) 67)) (-2723 ((|#3| |#3|) 141)) (-2330 (((-3 |#3| "failed") |#3|) 55)) (-2590 ((|#3| |#3|) 131)) (-3000 (((-3 |#3| "failed") |#3|) 73)) (-4138 ((|#3| |#3|) 148)) (-4372 (((-3 |#3| "failed") |#3|) 114)) (-2671 ((|#3| |#3|) 152)) (-3903 (((-3 |#3| "failed") |#3|) 69)) (-4108 ((|#3| |#3|) 146)) (-4313 (((-3 |#3| "failed") |#3|) 57)) (-2647 ((|#3| |#3|) 136)) (-2473 (((-3 |#3| "failed") |#3|) 77)) (-4161 ((|#3| |#3|) 150)) (-2604 (((-3 |#3| "failed") |#3|) 61)) (-2691 ((|#3| |#3|) 138)) (-3036 (((-3 |#3| "failed") |#3|) 79)) (-1509 ((|#3| |#3|) 151)) (-3521 (((-3 |#3| "failed") |#3|) 63)) (-2701 ((|#3| |#3|) 139)) (-2241 (((-3 |#3| "failed") |#3|) 75)) (-4150 ((|#3| |#3|) 149)) (-1690 (((-3 |#3| "failed") |#3|) 117)) (-2681 ((|#3| |#3|) 153)) (-4258 (((-3 |#3| "failed") |#3|) 71)) (-4123 ((|#3| |#3|) 147)) (-2266 (((-3 |#3| "failed") |#3|) 59)) (-2660 ((|#3| |#3|) 137)) (** ((|#3| |#3| (-413 (-570))) 47 (|has| |#1| (-368)))))
-(((-281 |#1| |#2| |#3|) (-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4387 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2611 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4099 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4161 (|#3| |#3|)) (-15 -1509 (|#3| |#3|)))) (-38 (-413 (-570))) (-1267 |#1|) (-1238 |#1| |#2|)) (T -281))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-368)) (-4 *4 (-38 *3)) (-4 *5 (-1267 *4)) (-5 *1 (-281 *4 *5 *2)) (-4 *2 (-1238 *4 *5)))) (-4387 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2579 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2590 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2611 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2647 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2660 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2671 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2681 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2701 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2712 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-2746 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4099 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4123 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4138 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4150 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-4161 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))) (-1509 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4)))))
-(-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4387 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2611 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4099 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4161 (|#3| |#3|)) (-15 -1509 (|#3| |#3|))))
-((-1409 (((-3 |#3| "failed") |#3|) 70)) (-2735 ((|#3| |#3|) 137)) (-1436 (((-3 |#3| "failed") |#3|) 54)) (-2602 ((|#3| |#3|) 125)) (-3827 (((-3 |#3| "failed") |#3|) 66)) (-2712 ((|#3| |#3|) 135)) (-2069 (((-3 |#3| "failed") |#3|) 50)) (-2579 ((|#3| |#3|) 123)) (-1344 (((-3 |#3| "failed") |#3|) 74)) (-4087 ((|#3| |#3|) 139)) (-1839 (((-3 |#3| "failed") |#3|) 58)) (-2622 ((|#3| |#3|) 127)) (-2705 (((-3 |#3| "failed") |#3| (-777)) 38)) (-3764 (((-3 |#3| "failed") |#3|) 48)) (-2635 ((|#3| |#3|) 111)) (-3588 (((-3 |#3| "failed") |#3|) 46)) (-4387 ((|#3| |#3|) 122)) (-3494 (((-3 |#3| "failed") |#3|) 76)) (-4099 ((|#3| |#3|) 140)) (-3580 (((-3 |#3| "failed") |#3|) 60)) (-2634 ((|#3| |#3|) 128)) (-2092 (((-3 |#3| "failed") |#3|) 72)) (-2746 ((|#3| |#3|) 138)) (-1652 (((-3 |#3| "failed") |#3|) 56)) (-2611 ((|#3| |#3|) 126)) (-3166 (((-3 |#3| "failed") |#3|) 68)) (-2723 ((|#3| |#3|) 136)) (-2330 (((-3 |#3| "failed") |#3|) 52)) (-2590 ((|#3| |#3|) 124)) (-3000 (((-3 |#3| "failed") |#3|) 78)) (-4138 ((|#3| |#3|) 143)) (-4372 (((-3 |#3| "failed") |#3|) 62)) (-2671 ((|#3| |#3|) 131)) (-3903 (((-3 |#3| "failed") |#3|) 112)) (-4108 ((|#3| |#3|) 141)) (-4313 (((-3 |#3| "failed") |#3|) 100)) (-2647 ((|#3| |#3|) 129)) (-2473 (((-3 |#3| "failed") |#3|) 116)) (-4161 ((|#3| |#3|) 145)) (-2604 (((-3 |#3| "failed") |#3|) 107)) (-2691 ((|#3| |#3|) 133)) (-3036 (((-3 |#3| "failed") |#3|) 117)) (-1509 ((|#3| |#3|) 146)) (-3521 (((-3 |#3| "failed") |#3|) 109)) (-2701 ((|#3| |#3|) 134)) (-2241 (((-3 |#3| "failed") |#3|) 80)) (-4150 ((|#3| |#3|) 144)) (-1690 (((-3 |#3| "failed") |#3|) 64)) (-2681 ((|#3| |#3|) 132)) (-4258 (((-3 |#3| "failed") |#3|) 113)) (-4123 ((|#3| |#3|) 142)) (-2266 (((-3 |#3| "failed") |#3|) 103)) (-2660 ((|#3| |#3|) 130)) (** ((|#3| |#3| (-413 (-570))) 44 (|has| |#1| (-368)))))
-(((-282 |#1| |#2| |#3| |#4|) (-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4387 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2611 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4099 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4161 (|#3| |#3|)) (-15 -1509 (|#3| |#3|)))) (-38 (-413 (-570))) (-1236 |#1|) (-1259 |#1| |#2|) (-992 |#2|)) (T -282))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-368)) (-4 *4 (-38 *3)) (-4 *5 (-1236 *4)) (-5 *1 (-282 *4 *5 *2 *6)) (-4 *2 (-1259 *4 *5)) (-4 *6 (-992 *5)))) (-4387 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2579 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2590 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2611 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2647 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2660 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2671 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2681 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2701 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2712 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-2746 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4099 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4123 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4138 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4150 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-4161 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))) (-1509 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4)))))
-(-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4387 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2611 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4099 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4161 (|#3| |#3|)) (-15 -1509 (|#3| |#3|))))
-((-2770 (((-112) $) 20)) (-2039 (((-1191) $) 7)) (-3037 (((-3 (-512) "failed") $) 14)) (-3836 (((-3 (-650 $) "failed") $) NIL)) (-1984 (((-3 (-512) "failed") $) 21)) (-2912 (((-3 (-1113) "failed") $) 18)) (-3267 (((-112) $) 16)) (-3735 (((-868) $) NIL)) (-2244 (((-112) $) 9)))
-(((-283) (-13 (-619 (-868)) (-10 -8 (-15 -2039 ((-1191) $)) (-15 -3267 ((-112) $)) (-15 -2912 ((-3 (-1113) "failed") $)) (-15 -2770 ((-112) $)) (-15 -1984 ((-3 (-512) "failed") $)) (-15 -2244 ((-112) $)) (-15 -3037 ((-3 (-512) "failed") $)) (-15 -3836 ((-3 (-650 $) "failed") $))))) (T -283))
-((-2039 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))) (-3267 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-2912 (*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))) (-2770 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-1984 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-2244 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-3037 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-3836 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2039 ((-1191) $)) (-15 -3267 ((-112) $)) (-15 -2912 ((-3 (-1113) "failed") $)) (-15 -2770 ((-112) $)) (-15 -1984 ((-3 (-512) "failed") $)) (-15 -2244 ((-112) $)) (-15 -3037 ((-3 (-512) "failed") $)) (-15 -3836 ((-3 (-650 $) "failed") $))))
-((-3089 (((-603) $) 10)) (-1367 (((-591) $) 8)) (-1993 (((-295) $) 12)) (-3416 (($ (-591) (-603) (-295)) NIL)) (-3735 (((-868) $) 19)))
-(((-284) (-13 (-619 (-868)) (-10 -8 (-15 -3416 ($ (-591) (-603) (-295))) (-15 -1367 ((-591) $)) (-15 -3089 ((-603) $)) (-15 -1993 ((-295) $))))) (T -284))
-((-3416 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))) (-1367 (*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))) (-3089 (*1 *2 *1) (-12 (-5 *2 (-603)) (-5 *1 (-284)))) (-1993 (*1 *2 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3416 ($ (-591) (-603) (-295))) (-15 -1367 ((-591) $)) (-15 -3089 ((-603) $)) (-15 -1993 ((-295) $))))
-((-1424 (($ (-1 (-112) |#2|) $) 24)) (-3480 (($ $) 38)) (-2513 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 36)) (-1702 (($ |#2| $) 34) (($ (-1 (-112) |#2|) $) 18)) (-2190 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 42)) (-4285 (($ |#2| $ (-570)) 20) (($ $ $ (-570)) 22)) (-4320 (($ $ (-570)) 11) (($ $ (-1243 (-570))) 14)) (-2850 (($ $ |#2|) 32) (($ $ $) NIL)) (-2439 (($ $ |#2|) 31) (($ |#2| $) NIL) (($ $ $) 26) (($ (-650 $)) NIL)))
-(((-285 |#1| |#2|) (-10 -8 (-15 -2190 (|#1| |#1| |#1|)) (-15 -2513 (|#1| |#2| |#1|)) (-15 -2190 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2513 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2850 (|#1| |#1| |#1|)) (-15 -2850 (|#1| |#1| |#2|)) (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1243 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -1702 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1424 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1702 (|#1| |#2| |#1|)) (-15 -3480 (|#1| |#1|))) (-286 |#2|) (-1226)) (T -285))
-NIL
-(-10 -8 (-15 -2190 (|#1| |#1| |#1|)) (-15 -2513 (|#1| |#2| |#1|)) (-15 -2190 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2513 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2850 (|#1| |#1| |#1|)) (-15 -2850 (|#1| |#1| |#2|)) (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1243 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -1702 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1424 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1702 (|#1| |#2| |#1|)) (-15 -3480 (|#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 59 (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) |#1|) $) 86)) (-1424 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2208 (($ $) 84 (|has| |#1| (-1109)))) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ (-1 (-112) |#1|) $) 90) (($ |#1| $) 85 (|has| |#1| (-1109)))) (-1702 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 52)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-2190 (($ (-1 (-112) |#1| |#1|) $ $) 87) (($ $ $) 83 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2278 (($ |#1| $ (-570)) 89) (($ $ $ (-570)) 88)) (-4285 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1952 (($ $ |#1|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1243 (-570))) 64)) (-1882 (($ $ (-570)) 92) (($ $ (-1243 (-570))) 91)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 71)) (-2850 (($ $ |#1|) 94) (($ $ $) 93)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-286 |#1|) (-141) (-1226)) (T -286))
-((-2850 (*1 *1 *1 *2) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)))) (-2850 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)))) (-1882 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))) (-1882 (*1 *1 *1 *2) (-12 (-5 *2 (-1243 (-570))) (-4 *1 (-286 *3)) (-4 *3 (-1226)))) (-2513 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))) (-2278 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-286 *2)) (-4 *2 (-1226)))) (-2278 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))) (-2190 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))) (-1591 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))) (-2513 (*1 *1 *2 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)) (-4 *2 (-1109)))) (-2208 (*1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)) (-4 *2 (-1109)))) (-2190 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)) (-4 *2 (-856)))))
-(-13 (-657 |t#1|) (-10 -8 (-6 -4449) (-15 -2850 ($ $ |t#1|)) (-15 -2850 ($ $ $)) (-15 -1882 ($ $ (-570))) (-15 -1882 ($ $ (-1243 (-570)))) (-15 -2513 ($ (-1 (-112) |t#1|) $)) (-15 -2278 ($ |t#1| $ (-570))) (-15 -2278 ($ $ $ (-570))) (-15 -2190 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -1591 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -2513 ($ |t#1| $)) (-15 -2208 ($ $))) |%noBranch|) (IF (|has| |t#1| (-856)) (-15 -2190 ($ $ $)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
+((-2417 (((-112) $ $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2555 (((-650 (-570)) $) 29)) (-3221 (((-777) $) 27)) (-3735 (((-868) $) 36) (($ (-650 (-570))) 23)) (-3866 (((-112) $ $) NIL)) (-1980 (($ (-777)) 33)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 17)))
+(((-278) (-13 (-856) (-10 -8 (-15 -3735 ($ (-650 (-570)))) (-15 -3221 ((-777) $)) (-15 -2555 ((-650 (-570)) $)) (-15 -1980 ($ (-777)))))) (T -278))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-278)))) (-2555 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-1980 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
+(-13 (-856) (-10 -8 (-15 -3735 ($ (-650 (-570)))) (-15 -3221 ((-777) $)) (-15 -2555 ((-650 (-570)) $)) (-15 -1980 ($ (-777)))))
+((-2735 ((|#2| |#2|) 77)) (-2602 ((|#2| |#2|) 65)) (-4345 (((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 125)) (-2712 ((|#2| |#2|) 75)) (-2579 ((|#2| |#2|) 63)) (-4087 ((|#2| |#2|) 79)) (-2622 ((|#2| |#2|) 67)) (-1315 ((|#2|) 46)) (-3680 (((-115) (-115)) 100)) (-2635 ((|#2| |#2|) 61)) (-4332 (((-112) |#2|) 147)) (-2044 ((|#2| |#2|) 195)) (-3736 ((|#2| |#2|) 171)) (-2388 ((|#2|) 59)) (-1368 ((|#2|) 58)) (-3128 ((|#2| |#2|) 191)) (-2471 ((|#2| |#2|) 167)) (-3769 ((|#2| |#2|) 199)) (-4188 ((|#2| |#2|) 175)) (-1502 ((|#2| |#2|) 163)) (-3724 ((|#2| |#2|) 165)) (-1612 ((|#2| |#2|) 201)) (-3919 ((|#2| |#2|) 177)) (-3694 ((|#2| |#2|) 197)) (-1821 ((|#2| |#2|) 173)) (-2235 ((|#2| |#2|) 193)) (-2869 ((|#2| |#2|) 169)) (-2639 ((|#2| |#2|) 207)) (-2812 ((|#2| |#2|) 183)) (-2696 ((|#2| |#2|) 203)) (-2138 ((|#2| |#2|) 179)) (-2497 ((|#2| |#2|) 211)) (-1686 ((|#2| |#2|) 187)) (-3411 ((|#2| |#2|) 213)) (-2002 ((|#2| |#2|) 189)) (-3883 ((|#2| |#2|) 209)) (-3474 ((|#2| |#2|) 185)) (-2146 ((|#2| |#2|) 205)) (-2789 ((|#2| |#2|) 181)) (-4388 ((|#2| |#2|) 62)) (-4098 ((|#2| |#2|) 80)) (-2634 ((|#2| |#2|) 68)) (-2746 ((|#2| |#2|) 78)) (-2612 ((|#2| |#2|) 66)) (-2723 ((|#2| |#2|) 76)) (-2590 ((|#2| |#2|) 64)) (-2818 (((-112) (-115)) 98)) (-4137 ((|#2| |#2|) 83)) (-2671 ((|#2| |#2|) 71)) (-4112 ((|#2| |#2|) 81)) (-2647 ((|#2| |#2|) 69)) (-4157 ((|#2| |#2|) 85)) (-2691 ((|#2| |#2|) 73)) (-1510 ((|#2| |#2|) 86)) (-2701 ((|#2| |#2|) 74)) (-4150 ((|#2| |#2|) 84)) (-2681 ((|#2| |#2|) 72)) (-4123 ((|#2| |#2|) 82)) (-2660 ((|#2| |#2|) 70)))
+(((-279 |#1| |#2|) (-10 -7 (-15 -4388 (|#2| |#2|)) (-15 -2635 (|#2| |#2|)) (-15 -2579 (|#2| |#2|)) (-15 -2590 (|#2| |#2|)) (-15 -2602 (|#2| |#2|)) (-15 -2612 (|#2| |#2|)) (-15 -2622 (|#2| |#2|)) (-15 -2634 (|#2| |#2|)) (-15 -2647 (|#2| |#2|)) (-15 -2660 (|#2| |#2|)) (-15 -2671 (|#2| |#2|)) (-15 -2681 (|#2| |#2|)) (-15 -2691 (|#2| |#2|)) (-15 -2701 (|#2| |#2|)) (-15 -2712 (|#2| |#2|)) (-15 -2723 (|#2| |#2|)) (-15 -2735 (|#2| |#2|)) (-15 -2746 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4098 (|#2| |#2|)) (-15 -4112 (|#2| |#2|)) (-15 -4123 (|#2| |#2|)) (-15 -4137 (|#2| |#2|)) (-15 -4150 (|#2| |#2|)) (-15 -4157 (|#2| |#2|)) (-15 -1510 (|#2| |#2|)) (-15 -1315 (|#2|)) (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1368 (|#2|)) (-15 -2388 (|#2|)) (-15 -3724 (|#2| |#2|)) (-15 -1502 (|#2| |#2|)) (-15 -2471 (|#2| |#2|)) (-15 -2869 (|#2| |#2|)) (-15 -3736 (|#2| |#2|)) (-15 -1821 (|#2| |#2|)) (-15 -4188 (|#2| |#2|)) (-15 -3919 (|#2| |#2|)) (-15 -2138 (|#2| |#2|)) (-15 -2789 (|#2| |#2|)) (-15 -2812 (|#2| |#2|)) (-15 -3474 (|#2| |#2|)) (-15 -1686 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -3128 (|#2| |#2|)) (-15 -2235 (|#2| |#2|)) (-15 -2044 (|#2| |#2|)) (-15 -3694 (|#2| |#2|)) (-15 -3769 (|#2| |#2|)) (-15 -1612 (|#2| |#2|)) (-15 -2696 (|#2| |#2|)) (-15 -2146 (|#2| |#2|)) (-15 -2639 (|#2| |#2|)) (-15 -3883 (|#2| |#2|)) (-15 -2497 (|#2| |#2|)) (-15 -3411 (|#2| |#2|)) (-15 -4345 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -4332 ((-112) |#2|))) (-562) (-13 (-436 |#1|) (-1011))) (T -279))
+((-4332 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3)) (-4 *3 (-13 (-436 *4) (-1011))))) (-4345 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-650 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-436 *4) (-1011))) (-4 *4 (-562)) (-5 *1 (-279 *4 *2)))) (-3411 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2497 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3883 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2639 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2146 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2696 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1612 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3769 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3694 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2044 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2235 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3128 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2002 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1686 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3474 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2812 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2789 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2138 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3919 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4188 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1821 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3736 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2869 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2471 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1502 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3724 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2388 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-1368 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-279 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011))))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011))))) (-1315 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-1510 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4157 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4150 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4137 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4123 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4112 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2746 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2712 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2701 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2681 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2671 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2660 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2647 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2612 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2590 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2579 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4388 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))))
+(-10 -7 (-15 -4388 (|#2| |#2|)) (-15 -2635 (|#2| |#2|)) (-15 -2579 (|#2| |#2|)) (-15 -2590 (|#2| |#2|)) (-15 -2602 (|#2| |#2|)) (-15 -2612 (|#2| |#2|)) (-15 -2622 (|#2| |#2|)) (-15 -2634 (|#2| |#2|)) (-15 -2647 (|#2| |#2|)) (-15 -2660 (|#2| |#2|)) (-15 -2671 (|#2| |#2|)) (-15 -2681 (|#2| |#2|)) (-15 -2691 (|#2| |#2|)) (-15 -2701 (|#2| |#2|)) (-15 -2712 (|#2| |#2|)) (-15 -2723 (|#2| |#2|)) (-15 -2735 (|#2| |#2|)) (-15 -2746 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4098 (|#2| |#2|)) (-15 -4112 (|#2| |#2|)) (-15 -4123 (|#2| |#2|)) (-15 -4137 (|#2| |#2|)) (-15 -4150 (|#2| |#2|)) (-15 -4157 (|#2| |#2|)) (-15 -1510 (|#2| |#2|)) (-15 -1315 (|#2|)) (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1368 (|#2|)) (-15 -2388 (|#2|)) (-15 -3724 (|#2| |#2|)) (-15 -1502 (|#2| |#2|)) (-15 -2471 (|#2| |#2|)) (-15 -2869 (|#2| |#2|)) (-15 -3736 (|#2| |#2|)) (-15 -1821 (|#2| |#2|)) (-15 -4188 (|#2| |#2|)) (-15 -3919 (|#2| |#2|)) (-15 -2138 (|#2| |#2|)) (-15 -2789 (|#2| |#2|)) (-15 -2812 (|#2| |#2|)) (-15 -3474 (|#2| |#2|)) (-15 -1686 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -3128 (|#2| |#2|)) (-15 -2235 (|#2| |#2|)) (-15 -2044 (|#2| |#2|)) (-15 -3694 (|#2| |#2|)) (-15 -3769 (|#2| |#2|)) (-15 -1612 (|#2| |#2|)) (-15 -2696 (|#2| |#2|)) (-15 -2146 (|#2| |#2|)) (-15 -2639 (|#2| |#2|)) (-15 -3883 (|#2| |#2|)) (-15 -2497 (|#2| |#2|)) (-15 -3411 (|#2| |#2|)) (-15 -4345 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -4332 ((-112) |#2|)))
+((-3379 (((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186)) 153)) (-1950 ((|#2| (-413 (-570)) |#2|) 49)) (-3745 ((|#2| |#2| (-618 |#2|)) 146)) (-2880 (((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186)) 145)) (-1593 ((|#2| |#2| (-1186)) 20) ((|#2| |#2|) 23)) (-2918 ((|#2| |#2| (-1186)) 159) ((|#2| |#2|) 157)))
+(((-280 |#1| |#2|) (-10 -7 (-15 -2918 (|#2| |#2|)) (-15 -2918 (|#2| |#2| (-1186))) (-15 -2880 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -1593 (|#2| |#2|)) (-15 -1593 (|#2| |#2| (-1186))) (-15 -3379 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -3745 (|#2| |#2| (-618 |#2|))) (-15 -1950 (|#2| (-413 (-570)) |#2|))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -280))
+((-1950 (*1 *2 *3 *2) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))) (-3745 (*1 *2 *2 *3) (-12 (-5 *3 (-618 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)))) (-3379 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-1186)) (-4 *2 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *5 *2)))) (-1593 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))) (-1593 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-2880 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-650 (-618 *3))) (|:| |vals| (-650 *3)))) (-5 *1 (-280 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-2918 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))) (-2918 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))))
+(-10 -7 (-15 -2918 (|#2| |#2|)) (-15 -2918 (|#2| |#2| (-1186))) (-15 -2880 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -1593 (|#2| |#2|)) (-15 -1593 (|#2| |#2| (-1186))) (-15 -3379 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -3745 (|#2| |#2| (-618 |#2|))) (-15 -1950 (|#2| (-413 (-570)) |#2|)))
+((-4357 (((-3 |#3| "failed") |#3|) 120)) (-2735 ((|#3| |#3|) 142)) (-1481 (((-3 |#3| "failed") |#3|) 89)) (-2602 ((|#3| |#3|) 132)) (-1358 (((-3 |#3| "failed") |#3|) 65)) (-2712 ((|#3| |#3|) 140)) (-2299 (((-3 |#3| "failed") |#3|) 53)) (-2579 ((|#3| |#3|) 130)) (-1948 (((-3 |#3| "failed") |#3|) 122)) (-4087 ((|#3| |#3|) 144)) (-3665 (((-3 |#3| "failed") |#3|) 91)) (-2622 ((|#3| |#3|) 134)) (-2405 (((-3 |#3| "failed") |#3| (-777)) 41)) (-2027 (((-3 |#3| "failed") |#3|) 81)) (-2635 ((|#3| |#3|) 129)) (-4055 (((-3 |#3| "failed") |#3|) 51)) (-4388 ((|#3| |#3|) 128)) (-4402 (((-3 |#3| "failed") |#3|) 123)) (-4098 ((|#3| |#3|) 145)) (-3989 (((-3 |#3| "failed") |#3|) 92)) (-2634 ((|#3| |#3|) 135)) (-1333 (((-3 |#3| "failed") |#3|) 121)) (-2746 ((|#3| |#3|) 143)) (-2516 (((-3 |#3| "failed") |#3|) 90)) (-2612 ((|#3| |#3|) 133)) (-4422 (((-3 |#3| "failed") |#3|) 67)) (-2723 ((|#3| |#3|) 141)) (-1995 (((-3 |#3| "failed") |#3|) 55)) (-2590 ((|#3| |#3|) 131)) (-3313 (((-3 |#3| "failed") |#3|) 73)) (-4137 ((|#3| |#3|) 148)) (-3007 (((-3 |#3| "failed") |#3|) 114)) (-2671 ((|#3| |#3|) 152)) (-3985 (((-3 |#3| "failed") |#3|) 69)) (-4112 ((|#3| |#3|) 146)) (-3701 (((-3 |#3| "failed") |#3|) 57)) (-2647 ((|#3| |#3|) 136)) (-3990 (((-3 |#3| "failed") |#3|) 77)) (-4157 ((|#3| |#3|) 150)) (-2705 (((-3 |#3| "failed") |#3|) 61)) (-2691 ((|#3| |#3|) 138)) (-2441 (((-3 |#3| "failed") |#3|) 79)) (-1510 ((|#3| |#3|) 151)) (-1534 (((-3 |#3| "failed") |#3|) 63)) (-2701 ((|#3| |#3|) 139)) (-3477 (((-3 |#3| "failed") |#3|) 75)) (-4150 ((|#3| |#3|) 149)) (-2883 (((-3 |#3| "failed") |#3|) 117)) (-2681 ((|#3| |#3|) 153)) (-3163 (((-3 |#3| "failed") |#3|) 71)) (-4123 ((|#3| |#3|) 147)) (-2491 (((-3 |#3| "failed") |#3|) 59)) (-2660 ((|#3| |#3|) 137)) (** ((|#3| |#3| (-413 (-570))) 47 (|has| |#1| (-368)))))
+(((-281 |#1| |#2| |#3|) (-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4388 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2612 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4112 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4137 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -1510 (|#3| |#3|)))) (-38 (-413 (-570))) (-1268 |#1|) (-1239 |#1| |#2|)) (T -281))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-368)) (-4 *4 (-38 *3)) (-4 *5 (-1268 *4)) (-5 *1 (-281 *4 *5 *2)) (-4 *2 (-1239 *4 *5)))) (-4388 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2579 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2590 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2612 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2647 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2660 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2671 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2681 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2701 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2712 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2746 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4112 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4123 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4137 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4150 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4157 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-1510 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))))
+(-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4388 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2612 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4112 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4137 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -1510 (|#3| |#3|))))
+((-4357 (((-3 |#3| "failed") |#3|) 70)) (-2735 ((|#3| |#3|) 137)) (-1481 (((-3 |#3| "failed") |#3|) 54)) (-2602 ((|#3| |#3|) 125)) (-1358 (((-3 |#3| "failed") |#3|) 66)) (-2712 ((|#3| |#3|) 135)) (-2299 (((-3 |#3| "failed") |#3|) 50)) (-2579 ((|#3| |#3|) 123)) (-1948 (((-3 |#3| "failed") |#3|) 74)) (-4087 ((|#3| |#3|) 139)) (-3665 (((-3 |#3| "failed") |#3|) 58)) (-2622 ((|#3| |#3|) 127)) (-2405 (((-3 |#3| "failed") |#3| (-777)) 38)) (-2027 (((-3 |#3| "failed") |#3|) 48)) (-2635 ((|#3| |#3|) 111)) (-4055 (((-3 |#3| "failed") |#3|) 46)) (-4388 ((|#3| |#3|) 122)) (-4402 (((-3 |#3| "failed") |#3|) 76)) (-4098 ((|#3| |#3|) 140)) (-3989 (((-3 |#3| "failed") |#3|) 60)) (-2634 ((|#3| |#3|) 128)) (-1333 (((-3 |#3| "failed") |#3|) 72)) (-2746 ((|#3| |#3|) 138)) (-2516 (((-3 |#3| "failed") |#3|) 56)) (-2612 ((|#3| |#3|) 126)) (-4422 (((-3 |#3| "failed") |#3|) 68)) (-2723 ((|#3| |#3|) 136)) (-1995 (((-3 |#3| "failed") |#3|) 52)) (-2590 ((|#3| |#3|) 124)) (-3313 (((-3 |#3| "failed") |#3|) 78)) (-4137 ((|#3| |#3|) 143)) (-3007 (((-3 |#3| "failed") |#3|) 62)) (-2671 ((|#3| |#3|) 131)) (-3985 (((-3 |#3| "failed") |#3|) 112)) (-4112 ((|#3| |#3|) 141)) (-3701 (((-3 |#3| "failed") |#3|) 100)) (-2647 ((|#3| |#3|) 129)) (-3990 (((-3 |#3| "failed") |#3|) 116)) (-4157 ((|#3| |#3|) 145)) (-2705 (((-3 |#3| "failed") |#3|) 107)) (-2691 ((|#3| |#3|) 133)) (-2441 (((-3 |#3| "failed") |#3|) 117)) (-1510 ((|#3| |#3|) 146)) (-1534 (((-3 |#3| "failed") |#3|) 109)) (-2701 ((|#3| |#3|) 134)) (-3477 (((-3 |#3| "failed") |#3|) 80)) (-4150 ((|#3| |#3|) 144)) (-2883 (((-3 |#3| "failed") |#3|) 64)) (-2681 ((|#3| |#3|) 132)) (-3163 (((-3 |#3| "failed") |#3|) 113)) (-4123 ((|#3| |#3|) 142)) (-2491 (((-3 |#3| "failed") |#3|) 103)) (-2660 ((|#3| |#3|) 130)) (** ((|#3| |#3| (-413 (-570))) 44 (|has| |#1| (-368)))))
+(((-282 |#1| |#2| |#3| |#4|) (-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4388 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2612 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4112 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4137 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -1510 (|#3| |#3|)))) (-38 (-413 (-570))) (-1237 |#1|) (-1260 |#1| |#2|) (-992 |#2|)) (T -282))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-413 (-570))) (-4 *4 (-368)) (-4 *4 (-38 *3)) (-4 *5 (-1237 *4)) (-5 *1 (-282 *4 *5 *2 *6)) (-4 *2 (-1260 *4 *5)) (-4 *6 (-992 *5)))) (-4388 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2579 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2590 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2612 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2647 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2660 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2671 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2681 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2701 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2712 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-2746 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4112 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4123 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4137 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4150 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-4157 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))) (-1510 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3)) (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4)))))
+(-13 (-992 |#3|) (-10 -7 (IF (|has| |#1| (-368)) (-15 ** (|#3| |#3| (-413 (-570)))) |%noBranch|) (-15 -4388 (|#3| |#3|)) (-15 -2635 (|#3| |#3|)) (-15 -2579 (|#3| |#3|)) (-15 -2590 (|#3| |#3|)) (-15 -2602 (|#3| |#3|)) (-15 -2612 (|#3| |#3|)) (-15 -2622 (|#3| |#3|)) (-15 -2634 (|#3| |#3|)) (-15 -2647 (|#3| |#3|)) (-15 -2660 (|#3| |#3|)) (-15 -2671 (|#3| |#3|)) (-15 -2681 (|#3| |#3|)) (-15 -2691 (|#3| |#3|)) (-15 -2701 (|#3| |#3|)) (-15 -2712 (|#3| |#3|)) (-15 -2723 (|#3| |#3|)) (-15 -2735 (|#3| |#3|)) (-15 -2746 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4112 (|#3| |#3|)) (-15 -4123 (|#3| |#3|)) (-15 -4137 (|#3| |#3|)) (-15 -4150 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -1510 (|#3| |#3|))))
+((-1858 (((-112) $) 20)) (-2040 (((-1191) $) 7)) (-2450 (((-3 (-512) "failed") $) 14)) (-1476 (((-3 (-650 $) "failed") $) NIL)) (-2613 (((-3 (-512) "failed") $) 21)) (-3732 (((-3 (-1113) "failed") $) 18)) (-4116 (((-112) $) 16)) (-3735 (((-868) $) NIL)) (-3511 (((-112) $) 9)))
+(((-283) (-13 (-619 (-868)) (-10 -8 (-15 -2040 ((-1191) $)) (-15 -4116 ((-112) $)) (-15 -3732 ((-3 (-1113) "failed") $)) (-15 -1858 ((-112) $)) (-15 -2613 ((-3 (-512) "failed") $)) (-15 -3511 ((-112) $)) (-15 -2450 ((-3 (-512) "failed") $)) (-15 -1476 ((-3 (-650 $) "failed") $))))) (T -283))
+((-2040 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))) (-4116 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-3732 (*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))) (-1858 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-2613 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-3511 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-2450 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-1476 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2040 ((-1191) $)) (-15 -4116 ((-112) $)) (-15 -3732 ((-3 (-1113) "failed") $)) (-15 -1858 ((-112) $)) (-15 -2613 ((-3 (-512) "failed") $)) (-15 -3511 ((-112) $)) (-15 -2450 ((-3 (-512) "failed") $)) (-15 -1476 ((-3 (-650 $) "failed") $))))
+((-3090 (((-603) $) 10)) (-3646 (((-591) $) 8)) (-2702 (((-295) $) 12)) (-2956 (($ (-591) (-603) (-295)) NIL)) (-3735 (((-868) $) 19)))
+(((-284) (-13 (-619 (-868)) (-10 -8 (-15 -2956 ($ (-591) (-603) (-295))) (-15 -3646 ((-591) $)) (-15 -3090 ((-603) $)) (-15 -2702 ((-295) $))))) (T -284))
+((-2956 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))) (-3646 (*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))) (-3090 (*1 *2 *1) (-12 (-5 *2 (-603)) (-5 *1 (-284)))) (-2702 (*1 *2 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2956 ($ (-591) (-603) (-295))) (-15 -3646 ((-591) $)) (-15 -3090 ((-603) $)) (-15 -2702 ((-295) $))))
+((-1425 (($ (-1 (-112) |#2|) $) 24)) (-3480 (($ $) 38)) (-3076 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 36)) (-1703 (($ |#2| $) 34) (($ (-1 (-112) |#2|) $) 18)) (-4210 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 42)) (-4286 (($ |#2| $ (-570)) 20) (($ $ $ (-570)) 22)) (-4320 (($ $ (-570)) 11) (($ $ (-1244 (-570))) 14)) (-3214 (($ $ |#2|) 32) (($ $ $) NIL)) (-2439 (($ $ |#2|) 31) (($ |#2| $) NIL) (($ $ $) 26) (($ (-650 $)) NIL)))
+(((-285 |#1| |#2|) (-10 -8 (-15 -4210 (|#1| |#1| |#1|)) (-15 -3076 (|#1| |#2| |#1|)) (-15 -4210 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3076 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3214 (|#1| |#1| |#1|)) (-15 -3214 (|#1| |#1| |#2|)) (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1244 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -1703 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1425 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1703 (|#1| |#2| |#1|)) (-15 -3480 (|#1| |#1|))) (-286 |#2|) (-1227)) (T -285))
+NIL
+(-10 -8 (-15 -4210 (|#1| |#1| |#1|)) (-15 -3076 (|#1| |#2| |#1|)) (-15 -4210 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3076 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3214 (|#1| |#1| |#1|)) (-15 -3214 (|#1| |#1| |#2|)) (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1244 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -1703 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1425 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1703 (|#1| |#2| |#1|)) (-15 -3480 (|#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) |#1|) $) 86)) (-1425 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3092 (($ $) 84 (|has| |#1| (-1109)))) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ (-1 (-112) |#1|) $) 90) (($ |#1| $) 85 (|has| |#1| (-1109)))) (-1703 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 52)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-4210 (($ (-1 (-112) |#1| |#1|) $ $) 87) (($ $ $) 83 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2599 (($ |#1| $ (-570)) 89) (($ $ $ (-570)) 88)) (-4286 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3531 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4052 (($ $ (-570)) 92) (($ $ (-1244 (-570))) 91)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 71)) (-3214 (($ $ |#1|) 94) (($ $ $) 93)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-286 |#1|) (-141) (-1227)) (T -286))
+((-3214 (*1 *1 *1 *2) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-3214 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-4052 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-4052 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3076 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-2599 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-2599 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-4210 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3131 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3076 (*1 *1 *2 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-3092 (*1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-4210 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))))
+(-13 (-657 |t#1|) (-10 -8 (-6 -4450) (-15 -3214 ($ $ |t#1|)) (-15 -3214 ($ $ $)) (-15 -4052 ($ $ (-570))) (-15 -4052 ($ $ (-1244 (-570)))) (-15 -3076 ($ (-1 (-112) |t#1|) $)) (-15 -2599 ($ |t#1| $ (-570))) (-15 -2599 ($ $ $ (-570))) (-15 -4210 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3131 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3076 ($ |t#1| $)) (-15 -3092 ($ $))) |%noBranch|) (IF (|has| |t#1| (-856)) (-15 -4210 ($ $ $)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
((** (($ $ $) 10)))
(((-287 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-288)) (T -287))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-2635 (($ $) 6)) (-4387 (($ $) 7)) (** (($ $ $) 8)))
+((-2635 (($ $) 6)) (-4388 (($ $) 7)) (** (($ $ $) 8)))
(((-288) (-141)) (T -288))
-((** (*1 *1 *1 *1) (-4 *1 (-288))) (-4387 (*1 *1 *1) (-4 *1 (-288))) (-2635 (*1 *1 *1) (-4 *1 (-288))))
-(-13 (-10 -8 (-15 -2635 ($ $)) (-15 -4387 ($ $)) (-15 ** ($ $ $))))
-((-1592 (((-650 (-1166 |#1|)) (-1166 |#1|) |#1|) 35)) (-2256 ((|#2| |#2| |#1|) 39)) (-2218 ((|#2| |#2| |#1|) 41)) (-2966 ((|#2| |#2| |#1|) 40)))
-(((-289 |#1| |#2|) (-10 -7 (-15 -2256 (|#2| |#2| |#1|)) (-15 -2966 (|#2| |#2| |#1|)) (-15 -2218 (|#2| |#2| |#1|)) (-15 -1592 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|))) (-368) (-1267 |#1|)) (T -289))
-((-1592 (*1 *2 *3 *4) (-12 (-4 *4 (-368)) (-5 *2 (-650 (-1166 *4))) (-5 *1 (-289 *4 *5)) (-5 *3 (-1166 *4)) (-4 *5 (-1267 *4)))) (-2218 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1267 *3)))) (-2966 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1267 *3)))) (-2256 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1267 *3)))))
-(-10 -7 (-15 -2256 (|#2| |#2| |#1|)) (-15 -2966 (|#2| |#2| |#1|)) (-15 -2218 (|#2| |#2| |#1|)) (-15 -1592 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|)))
-((-1876 ((|#2| $ |#1|) 6)))
-(((-290 |#1| |#2|) (-141) (-1109) (-1226)) (T -290))
-((-1876 (*1 *2 *1 *3) (-12 (-4 *1 (-290 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226)))))
-(-13 (-10 -8 (-15 -1876 (|t#2| $ |t#1|))))
-((-3790 ((|#3| $ |#2| |#3|) 12)) (-3712 ((|#3| $ |#2|) 10)))
-(((-291 |#1| |#2| |#3|) (-10 -8 (-15 -3790 (|#3| |#1| |#2| |#3|)) (-15 -3712 (|#3| |#1| |#2|))) (-292 |#2| |#3|) (-1109) (-1226)) (T -291))
-NIL
-(-10 -8 (-15 -3790 (|#3| |#1| |#2| |#3|)) (-15 -3712 (|#3| |#1| |#2|)))
-((-3895 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4449)))) (-3790 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) 11)) (-1876 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
-(((-292 |#1| |#2|) (-141) (-1109) (-1226)) (T -292))
-((-1876 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226)))) (-3712 (*1 *2 *1 *3) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226)))) (-3895 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226)))) (-3790 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226)))))
-(-13 (-290 |t#1| |t#2|) (-10 -8 (-15 -1876 (|t#2| $ |t#1| |t#2|)) (-15 -3712 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4449)) (PROGN (-15 -3895 (|t#2| $ |t#1| |t#2|)) (-15 -3790 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((** (*1 *1 *1 *1) (-4 *1 (-288))) (-4388 (*1 *1 *1) (-4 *1 (-288))) (-2635 (*1 *1 *1) (-4 *1 (-288))))
+(-13 (-10 -8 (-15 -2635 ($ $)) (-15 -4388 ($ $)) (-15 ** ($ $ $))))
+((-3142 (((-650 (-1166 |#1|)) (-1166 |#1|) |#1|) 35)) (-2257 ((|#2| |#2| |#1|) 39)) (-3199 ((|#2| |#2| |#1|) 41)) (-2966 ((|#2| |#2| |#1|) 40)))
+(((-289 |#1| |#2|) (-10 -7 (-15 -2257 (|#2| |#2| |#1|)) (-15 -2966 (|#2| |#2| |#1|)) (-15 -3199 (|#2| |#2| |#1|)) (-15 -3142 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|))) (-368) (-1268 |#1|)) (T -289))
+((-3142 (*1 *2 *3 *4) (-12 (-4 *4 (-368)) (-5 *2 (-650 (-1166 *4))) (-5 *1 (-289 *4 *5)) (-5 *3 (-1166 *4)) (-4 *5 (-1268 *4)))) (-3199 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))) (-2966 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))) (-2257 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
+(-10 -7 (-15 -2257 (|#2| |#2| |#1|)) (-15 -2966 (|#2| |#2| |#1|)) (-15 -3199 (|#2| |#2| |#1|)) (-15 -3142 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|)))
+((-1877 ((|#2| $ |#1|) 6)))
+(((-290 |#1| |#2|) (-141) (-1109) (-1227)) (T -290))
+((-1877 (*1 *2 *1 *3) (-12 (-4 *1 (-290 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -1877 (|t#2| $ |t#1|))))
+((-3789 ((|#3| $ |#2| |#3|) 12)) (-3713 ((|#3| $ |#2|) 10)))
+(((-291 |#1| |#2| |#3|) (-10 -8 (-15 -3789 (|#3| |#1| |#2| |#3|)) (-15 -3713 (|#3| |#1| |#2|))) (-292 |#2| |#3|) (-1109) (-1227)) (T -291))
+NIL
+(-10 -8 (-15 -3789 (|#3| |#1| |#2| |#3|)) (-15 -3713 (|#3| |#1| |#2|)))
+((-3894 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4450)))) (-3789 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) 11)) (-1877 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(((-292 |#1| |#2|) (-141) (-1109) (-1227)) (T -292))
+((-1877 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3713 (*1 *2 *1 *3) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3894 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3789 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))))
+(-13 (-290 |t#1| |t#2|) (-10 -8 (-15 -1877 (|t#2| $ |t#1| |t#2|)) (-15 -3713 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3894 (|t#2| $ |t#1| |t#2|)) (-15 -3789 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-290 |#1| |#2|) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 37)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 44)) (-3171 (($ $) 41)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) 35)) (-3529 (($ |#2| |#3|) 18)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4323 ((|#3| $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 19)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2797 (((-3 $ "failed") $ $) NIL)) (-2272 (((-777) $) 36)) (-1876 ((|#2| $ |#2|) 46)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 23)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 31 T CONST)) (-1823 (($) 39 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 40)))
-(((-293 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-311) (-10 -8 (-15 -4323 (|#3| $)) (-15 -3735 (|#2| $)) (-15 -3529 ($ |#2| |#3|)) (-15 -2797 ((-3 $ "failed") $ $)) (-15 -3413 ((-3 $ "failed") $)) (-15 -1825 ($ $)) (-15 -1876 (|#2| $ |#2|)))) (-174) (-1252 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -293))
-((-3413 (*1 *1 *1) (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1252 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-4323 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-23)) (-5 *1 (-293 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1252 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-1252 *3)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7)) (-4 *3 (-174)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))) (-3529 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-293 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1252 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3)) (-14 *6 (-1 (-3 *3 "failed") *3 *3)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2797 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1252 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1825 (*1 *1 *1) (-12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1252 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1876 (*1 *2 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1252 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))))
-(-13 (-311) (-10 -8 (-15 -4323 (|#3| $)) (-15 -3735 (|#2| $)) (-15 -3529 ($ |#2| |#3|)) (-15 -2797 ((-3 $ "failed") $ $)) (-15 -3413 ((-3 $ "failed") $)) (-15 -1825 ($ $)) (-15 -1876 (|#2| $ |#2|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 37)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 44)) (-1345 (($ $) 41)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) 35)) (-3529 (($ |#2| |#3|) 18)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2532 ((|#3| $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 19)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3955 (((-3 $ "failed") $ $) NIL)) (-2547 (((-777) $) 36)) (-1877 ((|#2| $ |#2|) 46)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 23)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 31 T CONST)) (-1824 (($) 39 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 40)))
+(((-293 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-311) (-10 -8 (-15 -2532 (|#3| $)) (-15 -3735 (|#2| $)) (-15 -3529 ($ |#2| |#3|)) (-15 -3955 ((-3 $ "failed") $ $)) (-15 -2937 ((-3 $ "failed") $)) (-15 -1826 ($ $)) (-15 -1877 (|#2| $ |#2|)))) (-174) (-1253 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -293))
+((-2937 (*1 *1 *1) (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1253 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-2532 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-23)) (-5 *1 (-293 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1253 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7)) (-4 *3 (-174)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))) (-3529 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-293 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1253 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3)) (-14 *6 (-1 (-3 *3 "failed") *3 *3)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3955 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1253 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1826 (*1 *1 *1) (-12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1253 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1877 (*1 *2 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1253 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))))
+(-13 (-311) (-10 -8 (-15 -2532 (|#3| $)) (-15 -3735 (|#2| $)) (-15 -3529 ($ |#2| |#3|)) (-15 -3955 ((-3 $ "failed") $ $)) (-15 -2937 ((-3 $ "failed") $)) (-15 -1826 ($ $)) (-15 -1877 (|#2| $ |#2|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-294) (-141)) (T -294))
NIL
-(-13 (-1058) (-111 $ $) (-10 -7 (-6 -4441)))
+(-13 (-1058) (-111 $ $) (-10 -7 (-6 -4442)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3591 (((-650 (-1094)) $) 10)) (-2375 (($ (-512) (-512) (-1113) $) 19)) (-2825 (($ (-512) (-650 (-972)) $) 23)) (-2786 (($) 25)) (-2100 (((-697 (-1113)) (-512) (-512) $) 18)) (-4404 (((-650 (-972)) (-512) $) 22)) (-3743 (($) 7)) (-1394 (($) 24)) (-3735 (((-868) $) 29)) (-3377 (($) 26)))
-(((-295) (-13 (-619 (-868)) (-10 -8 (-15 -3743 ($)) (-15 -3591 ((-650 (-1094)) $)) (-15 -2100 ((-697 (-1113)) (-512) (-512) $)) (-15 -2375 ($ (-512) (-512) (-1113) $)) (-15 -4404 ((-650 (-972)) (-512) $)) (-15 -2825 ($ (-512) (-650 (-972)) $)) (-15 -1394 ($)) (-15 -2786 ($)) (-15 -3377 ($))))) (T -295))
-((-3743 (*1 *1) (-5 *1 (-295))) (-3591 (*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))) (-2100 (*1 *2 *3 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))) (-2375 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))) (-4404 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))) (-2825 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))) (-1394 (*1 *1) (-5 *1 (-295))) (-2786 (*1 *1) (-5 *1 (-295))) (-3377 (*1 *1) (-5 *1 (-295))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3743 ($)) (-15 -3591 ((-650 (-1094)) $)) (-15 -2100 ((-697 (-1113)) (-512) (-512) $)) (-15 -2375 ($ (-512) (-512) (-1113) $)) (-15 -4404 ((-650 (-972)) (-512) $)) (-15 -2825 ($ (-512) (-650 (-972)) $)) (-15 -1394 ($)) (-15 -2786 ($)) (-15 -3377 ($))))
-((-3863 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 104)) (-1989 (((-650 (-695 (-413 (-959 |#1|)))) (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|)))))) (-695 (-413 (-959 |#1|)))) 99) (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777)) 41)) (-2234 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 101)) (-1700 (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|)))) 77)) (-1770 (((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|)))) 76)) (-3674 (((-959 |#1|) (-695 (-413 (-959 |#1|)))) 57) (((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186)) 58)))
-(((-296 |#1|) (-10 -7 (-15 -3674 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -3674 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -1770 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -1700 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -1989 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -1989 ((-650 (-695 (-413 (-959 |#1|)))) (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|)))))) (-695 (-413 (-959 |#1|))))) (-15 -3863 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -2234 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))))) (-458)) (T -296))
-((-2234 (*1 *2 *3) (-12 (-4 *4 (-458)) (-5 *2 (-650 (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 *4)))))))) (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))) (-3863 (*1 *2 *3) (-12 (-4 *4 (-458)) (-5 *2 (-650 (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 *4)))))))) (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))) (-1989 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 *4)))) (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5))))) (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))) (-1989 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-413 (-959 *6)) (-1175 (-1186) (-959 *6)))) (-5 *5 (-777)) (-4 *6 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *6))))) (-5 *1 (-296 *6)) (-5 *4 (-695 (-413 (-959 *6)))))) (-1700 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5)))) (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5))))) (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))) (-1770 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-4 *4 (-458)) (-5 *2 (-650 (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4))))) (-5 *1 (-296 *4)))) (-3674 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-5 *2 (-959 *4)) (-5 *1 (-296 *4)) (-4 *4 (-458)))) (-3674 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-959 *5)))) (-5 *4 (-1186)) (-5 *2 (-959 *5)) (-5 *1 (-296 *5)) (-4 *5 (-458)))))
-(-10 -7 (-15 -3674 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -3674 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -1770 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -1700 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -1989 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -1989 ((-650 (-695 (-413 (-959 |#1|)))) (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|)))))) (-695 (-413 (-959 |#1|))))) (-15 -3863 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -2234 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))))
-((-1351 (((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)) 14)))
-(((-297 |#1| |#2|) (-10 -7 (-15 -1351 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)))) (-1226) (-1226)) (T -297))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-298 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-298 *6)) (-5 *1 (-297 *5 *6)))))
-(-10 -7 (-15 -1351 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4028 (((-112) $) NIL (|has| |#1| (-21)))) (-2776 (($ $) 12)) (-3596 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4283 (($ $ $) 95 (|has| |#1| (-306)))) (-2450 (($) NIL (-2740 (|has| |#1| (-21)) (|has| |#1| (-732))) CONST)) (-1382 (($ $) 51 (|has| |#1| (-21)))) (-4257 (((-3 $ "failed") $) 62 (|has| |#1| (-732)))) (-2121 ((|#1| $) 11)) (-3413 (((-3 $ "failed") $) 60 (|has| |#1| (-732)))) (-2081 (((-112) $) NIL (|has| |#1| (-732)))) (-1351 (($ (-1 |#1| |#1|) $) 14)) (-2112 ((|#1| $) 10)) (-4233 (($ $) 50 (|has| |#1| (-21)))) (-2462 (((-3 $ "failed") $) 61 (|has| |#1| (-732)))) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1825 (($ $) 64 (-2740 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2424 (((-650 $) $) 85 (|has| |#1| (-562)))) (-1730 (($ $ $) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 $)) 28 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-1186) |#1|) 17 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 21 (|has| |#1| (-520 (-1186) |#1|)))) (-3428 (($ |#1| |#1|) 9)) (-2184 (((-135)) 90 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 87 (|has| |#1| (-907 (-1186))))) (-3684 (($ $ $) NIL (|has| |#1| (-479)))) (-3688 (($ $ $) NIL (|has| |#1| (-479)))) (-3735 (($ (-570)) NIL (|has| |#1| (-1058))) (((-112) $) 37 (|has| |#1| (-1109))) (((-868) $) 36 (|has| |#1| (-1109)))) (-2744 (((-777)) 67 (|has| |#1| (-1058)) CONST)) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1812 (($) 47 (|has| |#1| (-21)) CONST)) (-1823 (($) 57 (|has| |#1| (-732)) CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186))))) (-2872 (($ |#1| |#1|) 8) (((-112) $ $) 32 (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 92 (-2740 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-2965 (($ |#1| $) 45 (|has| |#1| (-21))) (($ $ |#1|) 46 (|has| |#1| (-21))) (($ $ $) 44 (|has| |#1| (-21))) (($ $) 43 (|has| |#1| (-21)))) (-2954 (($ |#1| $) 40 (|has| |#1| (-25))) (($ $ |#1|) 41 (|has| |#1| (-25))) (($ $ $) 39 (|has| |#1| (-25)))) (** (($ $ (-570)) NIL (|has| |#1| (-479))) (($ $ (-777)) NIL (|has| |#1| (-732))) (($ $ (-928)) NIL (|has| |#1| (-1121)))) (* (($ $ |#1|) 55 (|has| |#1| (-1121))) (($ |#1| $) 54 (|has| |#1| (-1121))) (($ $ $) 53 (|has| |#1| (-1121))) (($ (-570) $) 70 (|has| |#1| (-21))) (($ (-777) $) NIL (|has| |#1| (-21))) (($ (-928) $) NIL (|has| |#1| (-25)))))
-(((-298 |#1|) (-13 (-1226) (-10 -8 (-15 -2872 ($ |#1| |#1|)) (-15 -3428 ($ |#1| |#1|)) (-15 -2776 ($ $)) (-15 -2112 (|#1| $)) (-15 -2121 (|#1| $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-520 (-1186) |#1|)) (-6 (-520 (-1186) |#1|)) |%noBranch|) (IF (|has| |#1| (-1109)) (PROGN (-6 (-1109)) (-6 (-619 (-112))) (IF (|has| |#1| (-313 |#1|)) (PROGN (-15 -1730 ($ $ $)) (-15 -1730 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2954 ($ |#1| $)) (-15 -2954 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -4233 ($ $)) (-15 -1382 ($ $)) (-15 -2965 ($ |#1| $)) (-15 -2965 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -2462 ((-3 $ "failed") $)) (-15 -4257 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -2462 ((-3 $ "failed") $)) (-15 -4257 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-6 (-1058)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-723 |#1|)) |%noBranch|) (IF (|has| |#1| (-562)) (-15 -2424 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1283 |#1|)) (-15 -2975 ($ $ $)) (-15 -1825 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4283 ($ $ $)) |%noBranch|))) (-1226)) (T -298))
-((-2872 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226)))) (-3428 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226)))) (-2776 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226)))) (-2112 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226)))) (-2121 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226)))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-298 *3)))) (-1730 (*1 *1 *1 *1) (-12 (-4 *2 (-313 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)) (-5 *1 (-298 *2)))) (-1730 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *3))) (-4 *3 (-313 *3)) (-4 *3 (-1109)) (-4 *3 (-1226)) (-5 *1 (-298 *3)))) (-2954 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1226)))) (-2954 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1226)))) (-4233 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226)))) (-1382 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226)))) (-2965 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226)))) (-2965 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226)))) (-2462 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1226)))) (-4257 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1226)))) (-2424 (*1 *2 *1) (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562)) (-4 *3 (-1226)))) (-4283 (*1 *1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-306)) (-4 *2 (-1226)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1226)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1226)))) (-2975 (*1 *1 *1 *1) (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1226))) (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1226))))) (-1825 (*1 *1 *1) (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1226))) (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1226))))))
-(-13 (-1226) (-10 -8 (-15 -2872 ($ |#1| |#1|)) (-15 -3428 ($ |#1| |#1|)) (-15 -2776 ($ $)) (-15 -2112 (|#1| $)) (-15 -2121 (|#1| $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-520 (-1186) |#1|)) (-6 (-520 (-1186) |#1|)) |%noBranch|) (IF (|has| |#1| (-1109)) (PROGN (-6 (-1109)) (-6 (-619 (-112))) (IF (|has| |#1| (-313 |#1|)) (PROGN (-15 -1730 ($ $ $)) (-15 -1730 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2954 ($ |#1| $)) (-15 -2954 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -4233 ($ $)) (-15 -1382 ($ $)) (-15 -2965 ($ |#1| $)) (-15 -2965 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -2462 ((-3 $ "failed") $)) (-15 -4257 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -2462 ((-3 $ "failed") $)) (-15 -4257 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-6 (-1058)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-723 |#1|)) |%noBranch|) (IF (|has| |#1| (-562)) (-15 -2424 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1283 |#1|)) (-15 -2975 ($ $ $)) (-15 -1825 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4283 ($ $ $)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#2| $ |#1| |#2|) NIL)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) NIL)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2760 (((-650 |#1|) $) NIL)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2344 (((-650 |#1|) $) NIL)) (-1354 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-299 |#1| |#2|) (-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448))) (-1109) (-1109)) (T -299))
-NIL
-(-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448)))
-((-3578 (((-316) (-1168) (-650 (-1168))) 17) (((-316) (-1168) (-1168)) 16) (((-316) (-650 (-1168))) 15) (((-316) (-1168)) 14)))
-(((-300) (-10 -7 (-15 -3578 ((-316) (-1168))) (-15 -3578 ((-316) (-650 (-1168)))) (-15 -3578 ((-316) (-1168) (-1168))) (-15 -3578 ((-316) (-1168) (-650 (-1168)))))) (T -300))
-((-3578 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1168))) (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3578 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3578 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-316)) (-5 *1 (-300)))) (-3578 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))))
-(-10 -7 (-15 -3578 ((-316) (-1168))) (-15 -3578 ((-316) (-650 (-1168)))) (-15 -3578 ((-316) (-1168) (-1168))) (-15 -3578 ((-316) (-1168) (-650 (-1168)))))
-((-1351 ((|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)) 18)))
-(((-301 |#1| |#2|) (-10 -7 (-15 -1351 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)))) (-306) (-1226)) (T -301))
-((-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1168)) (-5 *5 (-618 *6)) (-4 *6 (-306)) (-4 *2 (-1226)) (-5 *1 (-301 *6 *2)))))
-(-10 -7 (-15 -1351 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|))))
-((-1351 ((|#2| (-1 |#2| |#1|) (-618 |#1|)) 17)))
-(((-302 |#1| |#2|) (-10 -7 (-15 -1351 (|#2| (-1 |#2| |#1|) (-618 |#1|)))) (-306) (-306)) (T -302))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-618 *5)) (-4 *5 (-306)) (-4 *2 (-306)) (-5 *1 (-302 *5 *2)))))
-(-10 -7 (-15 -1351 (|#2| (-1 |#2| |#1|) (-618 |#1|))))
-((-1698 (((-112) (-227)) 12)))
-(((-303 |#1| |#2|) (-10 -7 (-15 -1698 ((-112) (-227)))) (-227) (-227)) (T -303))
-((-1698 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-303 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -1698 ((-112) (-227))))
-((-3028 (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 118)) (-2093 (((-1166 (-227)) (-1276 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227)))) 135) (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 72)) (-1631 (((-650 (-1168)) (-1166 (-227))) NIL)) (-2066 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) 69)) (-1419 (((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227)))) 59)) (-2816 (((-650 (-1168)) (-650 (-227))) NIL)) (-3885 (((-227) (-1103 (-849 (-227)))) 29)) (-1514 (((-227) (-1103 (-849 (-227)))) 30)) (-1922 (((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 64)) (-1994 (((-1168) (-227)) NIL)))
-(((-304) (-10 -7 (-15 -3885 ((-227) (-1103 (-849 (-227))))) (-15 -1514 ((-227) (-1103 (-849 (-227))))) (-15 -1922 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2066 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -3028 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2093 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2093 ((-1166 (-227)) (-1276 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1419 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -1994 ((-1168) (-227))) (-15 -2816 ((-650 (-1168)) (-650 (-227)))) (-15 -1631 ((-650 (-1168)) (-1166 (-227)))))) (T -304))
-((-1631 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-2816 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-304)))) (-1419 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *4 (-1186)) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))) (-2093 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *4 (-650 (-1186))) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))) (-2093 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186))) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))) (-3028 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186))) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))) (-2066 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186)) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))) (-1922 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-112)) (-5 *1 (-304)))) (-1514 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))) (-3885 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))))
-(-10 -7 (-15 -3885 ((-227) (-1103 (-849 (-227))))) (-15 -1514 ((-227) (-1103 (-849 (-227))))) (-15 -1922 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2066 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -3028 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2093 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2093 ((-1166 (-227)) (-1276 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1419 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -1994 ((-1168) (-227))) (-15 -2816 ((-650 (-1168)) (-650 (-227)))) (-15 -1631 ((-650 (-1168)) (-1166 (-227)))))
-((-3593 (((-650 (-618 $)) $) 27)) (-4283 (($ $ (-298 $)) 78) (($ $ (-650 (-298 $))) 139) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4378 (((-3 (-618 $) "failed") $) 127)) (-3080 (((-618 $) $) 126)) (-2268 (($ $) 17) (($ (-650 $)) 54)) (-4190 (((-650 (-115)) $) 35)) (-3680 (((-115) (-115)) 88)) (-3431 (((-112) $) 150)) (-1351 (($ (-1 $ $) (-618 $)) 86)) (-3399 (((-3 (-618 $) "failed") $) 94)) (-1360 (($ (-115) $) 59) (($ (-115) (-650 $)) 110)) (-1566 (((-112) $ (-115)) 132) (((-112) $ (-1186)) 131)) (-1434 (((-777) $) 44)) (-3247 (((-112) $ $) 57) (((-112) $ (-1186)) 49)) (-1322 (((-112) $) 148)) (-1730 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) 137) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 81) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) 67) (($ $ (-1186) (-1 $ $)) 72) (($ $ (-650 (-115)) (-650 (-1 $ $))) 80) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 82) (($ $ (-115) (-1 $ (-650 $))) 68) (($ $ (-115) (-1 $ $)) 74)) (-1876 (($ (-115) $) 60) (($ (-115) $ $) 61) (($ (-115) $ $ $) 62) (($ (-115) $ $ $ $) 63) (($ (-115) (-650 $)) 123)) (-3760 (($ $) 51) (($ $ $) 135)) (-4192 (($ $) 15) (($ (-650 $)) 53)) (-2004 (((-112) (-115)) 21)))
-(((-305 |#1|) (-10 -8 (-15 -3431 ((-112) |#1|)) (-15 -1322 ((-112) |#1|)) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -3247 ((-112) |#1| (-1186))) (-15 -3247 ((-112) |#1| |#1|)) (-15 -1351 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1360 (|#1| (-115) (-650 |#1|))) (-15 -1360 (|#1| (-115) |#1|)) (-15 -1566 ((-112) |#1| (-1186))) (-15 -1566 ((-112) |#1| (-115))) (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -4190 ((-650 (-115)) |#1|)) (-15 -3593 ((-650 (-618 |#1|)) |#1|)) (-15 -3399 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1434 ((-777) |#1|)) (-15 -3760 (|#1| |#1| |#1|)) (-15 -3760 (|#1| |#1|)) (-15 -2268 (|#1| (-650 |#1|))) (-15 -2268 (|#1| |#1|)) (-15 -4192 (|#1| (-650 |#1|))) (-15 -4192 (|#1| |#1|)) (-15 -4283 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4283 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4283 (|#1| |#1| (-298 |#1|))) (-15 -1876 (|#1| (-115) (-650 |#1|))) (-15 -1876 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1730 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4378 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|))) (-306)) (T -305))
-((-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-5 *1 (-305 *3)) (-4 *3 (-306)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-305 *4)) (-4 *4 (-306)))))
-(-10 -8 (-15 -3431 ((-112) |#1|)) (-15 -1322 ((-112) |#1|)) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -3247 ((-112) |#1| (-1186))) (-15 -3247 ((-112) |#1| |#1|)) (-15 -1351 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1360 (|#1| (-115) (-650 |#1|))) (-15 -1360 (|#1| (-115) |#1|)) (-15 -1566 ((-112) |#1| (-1186))) (-15 -1566 ((-112) |#1| (-115))) (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -4190 ((-650 (-115)) |#1|)) (-15 -3593 ((-650 (-618 |#1|)) |#1|)) (-15 -3399 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1434 ((-777) |#1|)) (-15 -3760 (|#1| |#1| |#1|)) (-15 -3760 (|#1| |#1|)) (-15 -2268 (|#1| (-650 |#1|))) (-15 -2268 (|#1| |#1|)) (-15 -4192 (|#1| (-650 |#1|))) (-15 -4192 (|#1| |#1|)) (-15 -4283 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4283 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4283 (|#1| |#1| (-298 |#1|))) (-15 -1876 (|#1| (-115) (-650 |#1|))) (-15 -1876 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1730 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4378 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|)))
-((-2416 (((-112) $ $) 7)) (-3593 (((-650 (-618 $)) $) 39)) (-4283 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-4378 (((-3 (-618 $) "failed") $) 64)) (-3080 (((-618 $) $) 65)) (-2268 (($ $) 46) (($ (-650 $)) 45)) (-4190 (((-650 (-115)) $) 38)) (-3680 (((-115) (-115)) 37)) (-3431 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-1646 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) 31)) (-3399 (((-3 (-618 $) "failed") $) 41)) (-1903 (((-1168) $) 10)) (-3669 (((-650 (-618 $)) $) 40)) (-1360 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-1566 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1434 (((-777) $) 42)) (-3479 (((-1129) $) 11)) (-3247 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-1322 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1730 (($ $ (-618 $) $) 62) (($ $ (-650 (-618 $)) (-650 $)) 61) (($ $ (-650 (-298 $))) 60) (($ $ (-298 $)) 59) (($ $ $ $) 58) (($ $ (-650 $) (-650 $)) 57) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 28) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 27) (($ $ (-1186) (-1 $ (-650 $))) 26) (($ $ (-1186) (-1 $ $)) 25) (($ $ (-650 (-115)) (-650 (-1 $ $))) 24) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 23) (($ $ (-115) (-1 $ (-650 $))) 22) (($ $ (-115) (-1 $ $)) 21)) (-1876 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-3760 (($ $) 44) (($ $ $) 43)) (-2886 (($ $) 19 (|has| $ (-1058)))) (-3735 (((-868) $) 12) (($ (-618 $)) 63)) (-4192 (($ $) 48) (($ (-650 $)) 47)) (-2004 (((-112) (-115)) 36)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-4083 (((-650 (-1094)) $) 10)) (-2384 (($ (-512) (-512) (-1113) $) 19)) (-4266 (($ (-512) (-650 (-972)) $) 23)) (-3841 (($) 25)) (-1421 (((-697 (-1113)) (-512) (-512) $) 18)) (-2147 (((-650 (-972)) (-512) $) 22)) (-3006 (($) 7)) (-1395 (($) 24)) (-3735 (((-868) $) 29)) (-2597 (($) 26)))
+(((-295) (-13 (-619 (-868)) (-10 -8 (-15 -3006 ($)) (-15 -4083 ((-650 (-1094)) $)) (-15 -1421 ((-697 (-1113)) (-512) (-512) $)) (-15 -2384 ($ (-512) (-512) (-1113) $)) (-15 -2147 ((-650 (-972)) (-512) $)) (-15 -4266 ($ (-512) (-650 (-972)) $)) (-15 -1395 ($)) (-15 -3841 ($)) (-15 -2597 ($))))) (T -295))
+((-3006 (*1 *1) (-5 *1 (-295))) (-4083 (*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))) (-1421 (*1 *2 *3 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))) (-2384 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))) (-2147 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))) (-4266 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))) (-1395 (*1 *1) (-5 *1 (-295))) (-3841 (*1 *1) (-5 *1 (-295))) (-2597 (*1 *1) (-5 *1 (-295))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3006 ($)) (-15 -4083 ((-650 (-1094)) $)) (-15 -1421 ((-697 (-1113)) (-512) (-512) $)) (-15 -2384 ($ (-512) (-512) (-1113) $)) (-15 -2147 ((-650 (-972)) (-512) $)) (-15 -4266 ($ (-512) (-650 (-972)) $)) (-15 -1395 ($)) (-15 -3841 ($)) (-15 -2597 ($))))
+((-1761 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 104)) (-2672 (((-650 (-695 (-413 (-959 |#1|)))) (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|)))))) (-695 (-413 (-959 |#1|)))) 99) (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777)) 41)) (-3388 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 101)) (-1885 (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|)))) 77)) (-4315 (((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|)))) 76)) (-3641 (((-959 |#1|) (-695 (-413 (-959 |#1|)))) 57) (((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186)) 58)))
+(((-296 |#1|) (-10 -7 (-15 -3641 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -3641 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -4315 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -1885 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -2672 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -2672 ((-650 (-695 (-413 (-959 |#1|)))) (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|)))))) (-695 (-413 (-959 |#1|))))) (-15 -1761 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -3388 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))))) (-458)) (T -296))
+((-3388 (*1 *2 *3) (-12 (-4 *4 (-458)) (-5 *2 (-650 (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 *4)))))))) (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))) (-1761 (*1 *2 *3) (-12 (-4 *4 (-458)) (-5 *2 (-650 (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 *4)))))))) (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))) (-2672 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 *4)))) (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5))))) (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))) (-2672 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-413 (-959 *6)) (-1175 (-1186) (-959 *6)))) (-5 *5 (-777)) (-4 *6 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *6))))) (-5 *1 (-296 *6)) (-5 *4 (-695 (-413 (-959 *6)))))) (-1885 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5)))) (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5))))) (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))) (-4315 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-4 *4 (-458)) (-5 *2 (-650 (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4))))) (-5 *1 (-296 *4)))) (-3641 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-5 *2 (-959 *4)) (-5 *1 (-296 *4)) (-4 *4 (-458)))) (-3641 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-959 *5)))) (-5 *4 (-1186)) (-5 *2 (-959 *5)) (-5 *1 (-296 *5)) (-4 *5 (-458)))))
+(-10 -7 (-15 -3641 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -3641 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -4315 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -1885 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -2672 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -2672 ((-650 (-695 (-413 (-959 |#1|)))) (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|)))))) (-695 (-413 (-959 |#1|))))) (-15 -1761 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -3388 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))))
+((-1352 (((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)) 14)))
+(((-297 |#1| |#2|) (-10 -7 (-15 -1352 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)))) (-1227) (-1227)) (T -297))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-298 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-298 *6)) (-5 *1 (-297 *5 *6)))))
+(-10 -7 (-15 -1352 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2745 (((-112) $) NIL (|has| |#1| (-21)))) (-1919 (($ $) 12)) (-4119 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4284 (($ $ $) 95 (|has| |#1| (-306)))) (-3761 (($) NIL (-2740 (|has| |#1| (-21)) (|has| |#1| (-732))) CONST)) (-3238 (($ $) 51 (|has| |#1| (-21)))) (-3151 (((-3 $ "failed") $) 62 (|has| |#1| (-732)))) (-2123 ((|#1| $) 11)) (-2937 (((-3 $ "failed") $) 60 (|has| |#1| (-732)))) (-4340 (((-112) $) NIL (|has| |#1| (-732)))) (-1352 (($ (-1 |#1| |#1|) $) 14)) (-2112 ((|#1| $) 10)) (-4228 (($ $) 50 (|has| |#1| (-21)))) (-3868 (((-3 $ "failed") $) 61 (|has| |#1| (-732)))) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1826 (($ $) 64 (-2740 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1690 (((-650 $) $) 85 (|has| |#1| (-562)))) (-1731 (($ $ $) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 $)) 28 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-1186) |#1|) 17 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 21 (|has| |#1| (-520 (-1186) |#1|)))) (-3428 (($ |#1| |#1|) 9)) (-4154 (((-135)) 90 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) 87 (|has| |#1| (-907 (-1186))))) (-2488 (($ $ $) NIL (|has| |#1| (-479)))) (-2522 (($ $ $) NIL (|has| |#1| (-479)))) (-3735 (($ (-570)) NIL (|has| |#1| (-1058))) (((-112) $) 37 (|has| |#1| (-1109))) (((-868) $) 36 (|has| |#1| (-1109)))) (-1609 (((-777)) 67 (|has| |#1| (-1058)) CONST)) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1814 (($) 47 (|has| |#1| (-21)) CONST)) (-1824 (($) 57 (|has| |#1| (-732)) CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186))))) (-2872 (($ |#1| |#1|) 8) (((-112) $ $) 32 (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 92 (-2740 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-2965 (($ |#1| $) 45 (|has| |#1| (-21))) (($ $ |#1|) 46 (|has| |#1| (-21))) (($ $ $) 44 (|has| |#1| (-21))) (($ $) 43 (|has| |#1| (-21)))) (-2953 (($ |#1| $) 40 (|has| |#1| (-25))) (($ $ |#1|) 41 (|has| |#1| (-25))) (($ $ $) 39 (|has| |#1| (-25)))) (** (($ $ (-570)) NIL (|has| |#1| (-479))) (($ $ (-777)) NIL (|has| |#1| (-732))) (($ $ (-928)) NIL (|has| |#1| (-1121)))) (* (($ $ |#1|) 55 (|has| |#1| (-1121))) (($ |#1| $) 54 (|has| |#1| (-1121))) (($ $ $) 53 (|has| |#1| (-1121))) (($ (-570) $) 70 (|has| |#1| (-21))) (($ (-777) $) NIL (|has| |#1| (-21))) (($ (-928) $) NIL (|has| |#1| (-25)))))
+(((-298 |#1|) (-13 (-1227) (-10 -8 (-15 -2872 ($ |#1| |#1|)) (-15 -3428 ($ |#1| |#1|)) (-15 -1919 ($ $)) (-15 -2112 (|#1| $)) (-15 -2123 (|#1| $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-520 (-1186) |#1|)) (-6 (-520 (-1186) |#1|)) |%noBranch|) (IF (|has| |#1| (-1109)) (PROGN (-6 (-1109)) (-6 (-619 (-112))) (IF (|has| |#1| (-313 |#1|)) (PROGN (-15 -1731 ($ $ $)) (-15 -1731 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2953 ($ |#1| $)) (-15 -2953 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -4228 ($ $)) (-15 -3238 ($ $)) (-15 -2965 ($ |#1| $)) (-15 -2965 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -3868 ((-3 $ "failed") $)) (-15 -3151 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -3868 ((-3 $ "failed") $)) (-15 -3151 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-6 (-1058)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-723 |#1|)) |%noBranch|) (IF (|has| |#1| (-562)) (-15 -1690 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1284 |#1|)) (-15 -2975 ($ $ $)) (-15 -1826 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4284 ($ $ $)) |%noBranch|))) (-1227)) (T -298))
+((-2872 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-3428 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-1919 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-2112 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-2123 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-298 *3)))) (-1731 (*1 *1 *1 *1) (-12 (-4 *2 (-313 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)) (-5 *1 (-298 *2)))) (-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *3))) (-4 *3 (-313 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)) (-5 *1 (-298 *3)))) (-2953 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227)))) (-2953 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227)))) (-4228 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3238 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-2965 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-2965 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3868 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))) (-3151 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))) (-1690 (*1 *2 *1) (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562)) (-4 *3 (-1227)))) (-4284 (*1 *1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-306)) (-4 *2 (-1227)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1227)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1227)))) (-2975 (*1 *1 *1 *1) (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227))) (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1227))))) (-1826 (*1 *1 *1) (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227))) (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1227))))))
+(-13 (-1227) (-10 -8 (-15 -2872 ($ |#1| |#1|)) (-15 -3428 ($ |#1| |#1|)) (-15 -1919 ($ $)) (-15 -2112 (|#1| $)) (-15 -2123 (|#1| $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-520 (-1186) |#1|)) (-6 (-520 (-1186) |#1|)) |%noBranch|) (IF (|has| |#1| (-1109)) (PROGN (-6 (-1109)) (-6 (-619 (-112))) (IF (|has| |#1| (-313 |#1|)) (PROGN (-15 -1731 ($ $ $)) (-15 -1731 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2953 ($ |#1| $)) (-15 -2953 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -4228 ($ $)) (-15 -3238 ($ $)) (-15 -2965 ($ |#1| $)) (-15 -2965 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -3868 ((-3 $ "failed") $)) (-15 -3151 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -3868 ((-3 $ "failed") $)) (-15 -3151 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-6 (-1058)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-723 |#1|)) |%noBranch|) (IF (|has| |#1| (-562)) (-15 -1690 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1284 |#1|)) (-15 -2975 ($ $ $)) (-15 -1826 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4284 ($ $ $)) |%noBranch|)))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#2| $ |#1| |#2|) NIL)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2761 (((-650 |#1|) $) NIL)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2122 (((-650 |#1|) $) NIL)) (-2083 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-299 |#1| |#2|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449))) (-1109) (-1109)) (T -299))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449)))
+((-3577 (((-316) (-1168) (-650 (-1168))) 17) (((-316) (-1168) (-1168)) 16) (((-316) (-650 (-1168))) 15) (((-316) (-1168)) 14)))
+(((-300) (-10 -7 (-15 -3577 ((-316) (-1168))) (-15 -3577 ((-316) (-650 (-1168)))) (-15 -3577 ((-316) (-1168) (-1168))) (-15 -3577 ((-316) (-1168) (-650 (-1168)))))) (T -300))
+((-3577 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1168))) (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3577 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3577 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-316)) (-5 *1 (-300)))) (-3577 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))))
+(-10 -7 (-15 -3577 ((-316) (-1168))) (-15 -3577 ((-316) (-650 (-1168)))) (-15 -3577 ((-316) (-1168) (-1168))) (-15 -3577 ((-316) (-1168) (-650 (-1168)))))
+((-1352 ((|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)) 18)))
+(((-301 |#1| |#2|) (-10 -7 (-15 -1352 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)))) (-306) (-1227)) (T -301))
+((-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1168)) (-5 *5 (-618 *6)) (-4 *6 (-306)) (-4 *2 (-1227)) (-5 *1 (-301 *6 *2)))))
+(-10 -7 (-15 -1352 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|))))
+((-1352 ((|#2| (-1 |#2| |#1|) (-618 |#1|)) 17)))
+(((-302 |#1| |#2|) (-10 -7 (-15 -1352 (|#2| (-1 |#2| |#1|) (-618 |#1|)))) (-306) (-306)) (T -302))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-618 *5)) (-4 *5 (-306)) (-4 *2 (-306)) (-5 *1 (-302 *5 *2)))))
+(-10 -7 (-15 -1352 (|#2| (-1 |#2| |#1|) (-618 |#1|))))
+((-1860 (((-112) (-227)) 12)))
+(((-303 |#1| |#2|) (-10 -7 (-15 -1860 ((-112) (-227)))) (-227) (-227)) (T -303))
+((-1860 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-303 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -1860 ((-112) (-227))))
+((-3598 (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 118)) (-1344 (((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227)))) 135) (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 72)) (-3567 (((-650 (-1168)) (-1166 (-227))) NIL)) (-2268 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) 69)) (-1319 (((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227)))) 59)) (-4166 (((-650 (-1168)) (-650 (-227))) NIL)) (-3818 (((-227) (-1103 (-849 (-227)))) 29)) (-3625 (((-227) (-1103 (-849 (-227)))) 30)) (-3170 (((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 64)) (-2714 (((-1168) (-227)) NIL)))
+(((-304) (-10 -7 (-15 -3818 ((-227) (-1103 (-849 (-227))))) (-15 -3625 ((-227) (-1103 (-849 (-227))))) (-15 -3170 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2268 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -3598 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1344 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1344 ((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1319 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -2714 ((-1168) (-227))) (-15 -4166 ((-650 (-1168)) (-650 (-227)))) (-15 -3567 ((-650 (-1168)) (-1166 (-227)))))) (T -304))
+((-3567 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-4166 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-2714 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-304)))) (-1319 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *4 (-1186)) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))) (-1344 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *4 (-650 (-1186))) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))) (-1344 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186))) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))) (-3598 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186))) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))) (-2268 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186)) (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))) (-3170 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-112)) (-5 *1 (-304)))) (-3625 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))) (-3818 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))))
+(-10 -7 (-15 -3818 ((-227) (-1103 (-849 (-227))))) (-15 -3625 ((-227) (-1103 (-849 (-227))))) (-15 -3170 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2268 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -3598 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1344 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1344 ((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -1319 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -2714 ((-1168) (-227))) (-15 -4166 ((-650 (-1168)) (-650 (-227)))) (-15 -3567 ((-650 (-1168)) (-1166 (-227)))))
+((-3593 (((-650 (-618 $)) $) 27)) (-4284 (($ $ (-298 $)) 78) (($ $ (-650 (-298 $))) 139) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4379 (((-3 (-618 $) "failed") $) 127)) (-3080 (((-618 $) $) 126)) (-2506 (($ $) 17) (($ (-650 $)) 54)) (-1941 (((-650 (-115)) $) 35)) (-3680 (((-115) (-115)) 88)) (-1958 (((-112) $) 150)) (-1352 (($ (-1 $ $) (-618 $)) 86)) (-2814 (((-3 (-618 $) "failed") $) 94)) (-1361 (($ (-115) $) 59) (($ (-115) (-650 $)) 110)) (-4198 (((-112) $ (-115)) 132) (((-112) $ (-1186)) 131)) (-1435 (((-777) $) 44)) (-3953 (((-112) $ $) 57) (((-112) $ (-1186)) 49)) (-1739 (((-112) $) 148)) (-1731 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) 137) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 81) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) 67) (($ $ (-1186) (-1 $ $)) 72) (($ $ (-650 (-115)) (-650 (-1 $ $))) 80) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 82) (($ $ (-115) (-1 $ (-650 $))) 68) (($ $ (-115) (-1 $ $)) 74)) (-1877 (($ (-115) $) 60) (($ (-115) $ $) 61) (($ (-115) $ $ $) 62) (($ (-115) $ $ $ $) 63) (($ (-115) (-650 $)) 123)) (-2008 (($ $) 51) (($ $ $) 135)) (-4192 (($ $) 15) (($ (-650 $)) 53)) (-2818 (((-112) (-115)) 21)))
+(((-305 |#1|) (-10 -8 (-15 -1958 ((-112) |#1|)) (-15 -1739 ((-112) |#1|)) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -3953 ((-112) |#1| (-1186))) (-15 -3953 ((-112) |#1| |#1|)) (-15 -1352 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1361 (|#1| (-115) (-650 |#1|))) (-15 -1361 (|#1| (-115) |#1|)) (-15 -4198 ((-112) |#1| (-1186))) (-15 -4198 ((-112) |#1| (-115))) (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1941 ((-650 (-115)) |#1|)) (-15 -3593 ((-650 (-618 |#1|)) |#1|)) (-15 -2814 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1435 ((-777) |#1|)) (-15 -2008 (|#1| |#1| |#1|)) (-15 -2008 (|#1| |#1|)) (-15 -2506 (|#1| (-650 |#1|))) (-15 -2506 (|#1| |#1|)) (-15 -4192 (|#1| (-650 |#1|))) (-15 -4192 (|#1| |#1|)) (-15 -4284 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4284 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4284 (|#1| |#1| (-298 |#1|))) (-15 -1877 (|#1| (-115) (-650 |#1|))) (-15 -1877 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1731 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4379 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|))) (-306)) (T -305))
+((-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-5 *1 (-305 *3)) (-4 *3 (-306)))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-305 *4)) (-4 *4 (-306)))))
+(-10 -8 (-15 -1958 ((-112) |#1|)) (-15 -1739 ((-112) |#1|)) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -3953 ((-112) |#1| (-1186))) (-15 -3953 ((-112) |#1| |#1|)) (-15 -1352 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1361 (|#1| (-115) (-650 |#1|))) (-15 -1361 (|#1| (-115) |#1|)) (-15 -4198 ((-112) |#1| (-1186))) (-15 -4198 ((-112) |#1| (-115))) (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1941 ((-650 (-115)) |#1|)) (-15 -3593 ((-650 (-618 |#1|)) |#1|)) (-15 -2814 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1435 ((-777) |#1|)) (-15 -2008 (|#1| |#1| |#1|)) (-15 -2008 (|#1| |#1|)) (-15 -2506 (|#1| (-650 |#1|))) (-15 -2506 (|#1| |#1|)) (-15 -4192 (|#1| (-650 |#1|))) (-15 -4192 (|#1| |#1|)) (-15 -4284 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4284 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4284 (|#1| |#1| (-298 |#1|))) (-15 -1877 (|#1| (-115) (-650 |#1|))) (-15 -1877 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1731 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4379 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|)))
+((-2417 (((-112) $ $) 7)) (-3593 (((-650 (-618 $)) $) 39)) (-4284 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-4379 (((-3 (-618 $) "failed") $) 64)) (-3080 (((-618 $) $) 65)) (-2506 (($ $) 46) (($ (-650 $)) 45)) (-1941 (((-650 (-115)) $) 38)) (-3680 (((-115) (-115)) 37)) (-1958 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-2462 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) 31)) (-2814 (((-3 (-618 $) "failed") $) 41)) (-4268 (((-1168) $) 10)) (-3669 (((-650 (-618 $)) $) 40)) (-1361 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-4198 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1435 (((-777) $) 42)) (-3479 (((-1129) $) 11)) (-3953 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-1739 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1731 (($ $ (-618 $) $) 62) (($ $ (-650 (-618 $)) (-650 $)) 61) (($ $ (-650 (-298 $))) 60) (($ $ (-298 $)) 59) (($ $ $ $) 58) (($ $ (-650 $) (-650 $)) 57) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 28) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 27) (($ $ (-1186) (-1 $ (-650 $))) 26) (($ $ (-1186) (-1 $ $)) 25) (($ $ (-650 (-115)) (-650 (-1 $ $))) 24) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 23) (($ $ (-115) (-1 $ (-650 $))) 22) (($ $ (-115) (-1 $ $)) 21)) (-1877 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-2008 (($ $) 44) (($ $ $) 43)) (-3597 (($ $) 19 (|has| $ (-1058)))) (-3735 (((-868) $) 12) (($ (-618 $)) 63)) (-4192 (($ $) 48) (($ (-650 $)) 47)) (-2818 (((-112) (-115)) 36)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-306) (-141)) (T -306))
-((-1876 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1876 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1876 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1876 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1876 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4283 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *1)) (-4 *1 (-306)))) (-4283 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *1))) (-4 *1 (-306)))) (-4283 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-618 *1))) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4192 (*1 *1 *1) (-4 *1 (-306))) (-4192 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-2268 (*1 *1 *1) (-4 *1 (-306))) (-2268 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-3760 (*1 *1 *1) (-4 *1 (-306))) (-3760 (*1 *1 *1 *1) (-4 *1 (-306))) (-1434 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-777)))) (-3399 (*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))) (-3669 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-3593 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-4190 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))) (-3680 (*1 *2 *2) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-2004 (*1 *2 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-1566 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-1566 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1360 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1360 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-1351 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-618 *1)) (-4 *1 (-306)))) (-3247 (*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))) (-3247 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-1646 (*1 *2 *3) (-12 (-5 *3 (-618 *1)) (-4 *1 (-1058)) (-4 *1 (-306)) (-5 *2 (-1182 *1)))) (-2886 (*1 *1 *1) (-12 (-4 *1 (-1058)) (-4 *1 (-306)))) (-1322 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))) (-3431 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))))
-(-13 (-1109) (-1047 (-618 $)) (-520 (-618 $) $) (-313 $) (-10 -8 (-15 -1876 ($ (-115) $)) (-15 -1876 ($ (-115) $ $)) (-15 -1876 ($ (-115) $ $ $)) (-15 -1876 ($ (-115) $ $ $ $)) (-15 -1876 ($ (-115) (-650 $))) (-15 -4283 ($ $ (-298 $))) (-15 -4283 ($ $ (-650 (-298 $)))) (-15 -4283 ($ $ (-650 (-618 $)) (-650 $))) (-15 -4192 ($ $)) (-15 -4192 ($ (-650 $))) (-15 -2268 ($ $)) (-15 -2268 ($ (-650 $))) (-15 -3760 ($ $)) (-15 -3760 ($ $ $)) (-15 -1434 ((-777) $)) (-15 -3399 ((-3 (-618 $) "failed") $)) (-15 -3669 ((-650 (-618 $)) $)) (-15 -3593 ((-650 (-618 $)) $)) (-15 -4190 ((-650 (-115)) $)) (-15 -3680 ((-115) (-115))) (-15 -2004 ((-112) (-115))) (-15 -1566 ((-112) $ (-115))) (-15 -1566 ((-112) $ (-1186))) (-15 -1360 ($ (-115) $)) (-15 -1360 ($ (-115) (-650 $))) (-15 -1351 ($ (-1 $ $) (-618 $))) (-15 -3247 ((-112) $ $)) (-15 -3247 ((-112) $ (-1186))) (-15 -1730 ($ $ (-650 (-1186)) (-650 (-1 $ $)))) (-15 -1730 ($ $ (-650 (-1186)) (-650 (-1 $ (-650 $))))) (-15 -1730 ($ $ (-1186) (-1 $ (-650 $)))) (-15 -1730 ($ $ (-1186) (-1 $ $))) (-15 -1730 ($ $ (-650 (-115)) (-650 (-1 $ $)))) (-15 -1730 ($ $ (-650 (-115)) (-650 (-1 $ (-650 $))))) (-15 -1730 ($ $ (-115) (-1 $ (-650 $)))) (-15 -1730 ($ $ (-115) (-1 $ $))) (IF (|has| $ (-1058)) (PROGN (-15 -1646 ((-1182 $) (-618 $))) (-15 -2886 ($ $))) |%noBranch|) (IF (|has| $ (-1047 (-570))) (PROGN (-15 -1322 ((-112) $)) (-15 -3431 ((-112) $))) |%noBranch|)))
+((-1877 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1877 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1877 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1877 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1877 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4284 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *1)) (-4 *1 (-306)))) (-4284 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *1))) (-4 *1 (-306)))) (-4284 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-618 *1))) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4192 (*1 *1 *1) (-4 *1 (-306))) (-4192 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-2506 (*1 *1 *1) (-4 *1 (-306))) (-2506 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-2008 (*1 *1 *1) (-4 *1 (-306))) (-2008 (*1 *1 *1 *1) (-4 *1 (-306))) (-1435 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-777)))) (-2814 (*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))) (-3669 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-3593 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-1941 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))) (-3680 (*1 *2 *2) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-2818 (*1 *2 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-4198 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-4198 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1361 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1361 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-1352 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-618 *1)) (-4 *1 (-306)))) (-3953 (*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))) (-3953 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-2462 (*1 *2 *3) (-12 (-5 *3 (-618 *1)) (-4 *1 (-1058)) (-4 *1 (-306)) (-5 *2 (-1182 *1)))) (-3597 (*1 *1 *1) (-12 (-4 *1 (-1058)) (-4 *1 (-306)))) (-1739 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))) (-1958 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))))
+(-13 (-1109) (-1047 (-618 $)) (-520 (-618 $) $) (-313 $) (-10 -8 (-15 -1877 ($ (-115) $)) (-15 -1877 ($ (-115) $ $)) (-15 -1877 ($ (-115) $ $ $)) (-15 -1877 ($ (-115) $ $ $ $)) (-15 -1877 ($ (-115) (-650 $))) (-15 -4284 ($ $ (-298 $))) (-15 -4284 ($ $ (-650 (-298 $)))) (-15 -4284 ($ $ (-650 (-618 $)) (-650 $))) (-15 -4192 ($ $)) (-15 -4192 ($ (-650 $))) (-15 -2506 ($ $)) (-15 -2506 ($ (-650 $))) (-15 -2008 ($ $)) (-15 -2008 ($ $ $)) (-15 -1435 ((-777) $)) (-15 -2814 ((-3 (-618 $) "failed") $)) (-15 -3669 ((-650 (-618 $)) $)) (-15 -3593 ((-650 (-618 $)) $)) (-15 -1941 ((-650 (-115)) $)) (-15 -3680 ((-115) (-115))) (-15 -2818 ((-112) (-115))) (-15 -4198 ((-112) $ (-115))) (-15 -4198 ((-112) $ (-1186))) (-15 -1361 ($ (-115) $)) (-15 -1361 ($ (-115) (-650 $))) (-15 -1352 ($ (-1 $ $) (-618 $))) (-15 -3953 ((-112) $ $)) (-15 -3953 ((-112) $ (-1186))) (-15 -1731 ($ $ (-650 (-1186)) (-650 (-1 $ $)))) (-15 -1731 ($ $ (-650 (-1186)) (-650 (-1 $ (-650 $))))) (-15 -1731 ($ $ (-1186) (-1 $ (-650 $)))) (-15 -1731 ($ $ (-1186) (-1 $ $))) (-15 -1731 ($ $ (-650 (-115)) (-650 (-1 $ $)))) (-15 -1731 ($ $ (-650 (-115)) (-650 (-1 $ (-650 $))))) (-15 -1731 ($ $ (-115) (-1 $ (-650 $)))) (-15 -1731 ($ $ (-115) (-1 $ $))) (IF (|has| $ (-1058)) (PROGN (-15 -2462 ((-1182 $) (-618 $))) (-15 -3597 ($ $))) |%noBranch|) (IF (|has| $ (-1047 (-570))) (PROGN (-15 -1739 ((-112) $)) (-15 -1958 ((-112) $))) |%noBranch|)))
(((-102) . T) ((-622 #0=(-618 $)) . T) ((-619 (-868)) . T) ((-313 $) . T) ((-520 (-618 $) $) . T) ((-520 $ $) . T) ((-1047 #0#) . T) ((-1109) . T))
-((-2992 (((-650 |#1|) (-650 |#1|)) 10)))
-(((-307 |#1|) (-10 -7 (-15 -2992 ((-650 |#1|) (-650 |#1|)))) (-854)) (T -307))
-((-2992 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
-(-10 -7 (-15 -2992 ((-650 |#1|) (-650 |#1|))))
-((-1351 (((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)) 17)))
-(((-308 |#1| |#2|) (-10 -7 (-15 -1351 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)))) (-1058) (-1058)) (T -308))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-695 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-695 *6)) (-5 *1 (-308 *5 *6)))))
-(-10 -7 (-15 -1351 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|))))
-((-3983 (((-1276 (-320 (-384))) (-1276 (-320 (-227)))) 112)) (-3956 (((-1103 (-849 (-227))) (-1103 (-849 (-384)))) 45)) (-1631 (((-650 (-1168)) (-1166 (-227))) 94)) (-3059 (((-320 (-384)) (-959 (-227))) 55)) (-2219 (((-227) (-959 (-227))) 51)) (-2625 (((-1168) (-384)) 197)) (-3634 (((-849 (-227)) (-849 (-384))) 39)) (-1605 (((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1276 (-320 (-227)))) 165)) (-2440 (((-1044) (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) 209) (((-1044) (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) 207)) (-3442 (((-695 (-227)) (-650 (-227)) (-777)) 21)) (-2311 (((-1276 (-705)) (-650 (-227))) 101)) (-2816 (((-650 (-1168)) (-650 (-227))) 81)) (-1368 (((-3 (-320 (-227)) "failed") (-320 (-227))) 130)) (-1698 (((-112) (-227) (-1103 (-849 (-227)))) 119)) (-3891 (((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) 226)) (-3885 (((-227) (-1103 (-849 (-227)))) 114)) (-1514 (((-227) (-1103 (-849 (-227)))) 115)) (-3658 (((-227) (-413 (-570))) 33)) (-1455 (((-1168) (-384)) 79)) (-3649 (((-227) (-384)) 24)) (-4267 (((-384) (-1276 (-320 (-227)))) 179)) (-2675 (((-320 (-227)) (-320 (-384))) 30)) (-2200 (((-413 (-570)) (-320 (-227))) 58)) (-1705 (((-320 (-413 (-570))) (-320 (-227))) 75)) (-2443 (((-320 (-384)) (-320 (-227))) 105)) (-2810 (((-227) (-320 (-227))) 59)) (-1683 (((-650 (-227)) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) 70)) (-2570 (((-1103 (-849 (-227))) (-1103 (-849 (-227)))) 67)) (-1994 (((-1168) (-227)) 78)) (-1568 (((-705) (-227)) 97)) (-2754 (((-413 (-570)) (-227)) 60)) (-3192 (((-320 (-384)) (-227)) 54)) (-1416 (((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384))))) 48)) (-2439 (((-1044) (-650 (-1044))) 193) (((-1044) (-1044) (-1044)) 187)) (-1838 (((-1044) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) 223)))
-(((-309) (-10 -7 (-15 -3649 ((-227) (-384))) (-15 -2675 ((-320 (-227)) (-320 (-384)))) (-15 -3634 ((-849 (-227)) (-849 (-384)))) (-15 -3956 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1416 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -2754 ((-413 (-570)) (-227))) (-15 -2200 ((-413 (-570)) (-320 (-227)))) (-15 -2810 ((-227) (-320 (-227)))) (-15 -1368 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -4267 ((-384) (-1276 (-320 (-227))))) (-15 -1605 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1276 (-320 (-227))))) (-15 -1705 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -2570 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -1683 ((-650 (-227)) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-15 -1568 ((-705) (-227))) (-15 -2311 ((-1276 (-705)) (-650 (-227)))) (-15 -2443 ((-320 (-384)) (-320 (-227)))) (-15 -3983 ((-1276 (-320 (-384))) (-1276 (-320 (-227))))) (-15 -1698 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -1994 ((-1168) (-227))) (-15 -1455 ((-1168) (-384))) (-15 -2816 ((-650 (-1168)) (-650 (-227)))) (-15 -1631 ((-650 (-1168)) (-1166 (-227)))) (-15 -3885 ((-227) (-1103 (-849 (-227))))) (-15 -1514 ((-227) (-1103 (-849 (-227))))) (-15 -2439 ((-1044) (-1044) (-1044))) (-15 -2439 ((-1044) (-650 (-1044)))) (-15 -2625 ((-1168) (-384))) (-15 -2440 ((-1044) (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -2440 ((-1044) (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -1838 ((-1044) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3891 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -3059 ((-320 (-384)) (-959 (-227)))) (-15 -2219 ((-227) (-959 (-227)))) (-15 -3192 ((-320 (-384)) (-227))) (-15 -3658 ((-227) (-413 (-570)))) (-15 -3442 ((-695 (-227)) (-650 (-227)) (-777))))) (T -309))
-((-3442 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-309)))) (-3658 (*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))) (-3192 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-3059 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-3891 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-1838 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2440 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2440 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2625 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-2439 (*1 *2 *3) (-12 (-5 *3 (-650 (-1044))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2439 (*1 *2 *2 *2) (-12 (-5 *2 (-1044)) (-5 *1 (-309)))) (-1514 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-3885 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-1631 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-2816 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-1455 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-1698 (*1 *2 *3 *4) (-12 (-5 *4 (-1103 (-849 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-309)))) (-3983 (*1 *2 *3) (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *2 (-1276 (-320 (-384)))) (-5 *1 (-309)))) (-2443 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1276 (-705))) (-5 *1 (-309)))) (-1568 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))) (-1683 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *2 (-650 (-227))) (-5 *1 (-309)))) (-2570 (*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-1705 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570)))) (-5 *1 (-309)))) (-1605 (*1 *2 *3) (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *2 (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570)))) (-5 *1 (-309)))) (-4267 (*1 *2 *3) (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))) (-1368 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-2810 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2200 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-2754 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-650 (-1103 (-849 (-384))))) (-5 *2 (-650 (-1103 (-849 (-227))))) (-5 *1 (-309)))) (-3956 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-3634 (*1 *2 *3) (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))) (-2675 (*1 *2 *3) (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-3649 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
-(-10 -7 (-15 -3649 ((-227) (-384))) (-15 -2675 ((-320 (-227)) (-320 (-384)))) (-15 -3634 ((-849 (-227)) (-849 (-384)))) (-15 -3956 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1416 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -2754 ((-413 (-570)) (-227))) (-15 -2200 ((-413 (-570)) (-320 (-227)))) (-15 -2810 ((-227) (-320 (-227)))) (-15 -1368 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -4267 ((-384) (-1276 (-320 (-227))))) (-15 -1605 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1276 (-320 (-227))))) (-15 -1705 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -2570 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -1683 ((-650 (-227)) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-15 -1568 ((-705) (-227))) (-15 -2311 ((-1276 (-705)) (-650 (-227)))) (-15 -2443 ((-320 (-384)) (-320 (-227)))) (-15 -3983 ((-1276 (-320 (-384))) (-1276 (-320 (-227))))) (-15 -1698 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -1994 ((-1168) (-227))) (-15 -1455 ((-1168) (-384))) (-15 -2816 ((-650 (-1168)) (-650 (-227)))) (-15 -1631 ((-650 (-1168)) (-1166 (-227)))) (-15 -3885 ((-227) (-1103 (-849 (-227))))) (-15 -1514 ((-227) (-1103 (-849 (-227))))) (-15 -2439 ((-1044) (-1044) (-1044))) (-15 -2439 ((-1044) (-650 (-1044)))) (-15 -2625 ((-1168) (-384))) (-15 -2440 ((-1044) (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -2440 ((-1044) (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -1838 ((-1044) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3891 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -3059 ((-320 (-384)) (-959 (-227)))) (-15 -2219 ((-227) (-959 (-227)))) (-15 -3192 ((-320 (-384)) (-227))) (-15 -3658 ((-227) (-413 (-570)))) (-15 -3442 ((-695 (-227)) (-650 (-227)) (-777))))
-((-4339 (((-112) $ $) 14)) (-2372 (($ $ $) 18)) (-2381 (($ $ $) 17)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 50)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 65)) (-1874 (($ $ $) 25) (($ (-650 $)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 35) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 40)) (-2407 (((-3 $ "failed") $ $) 21)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 53)))
-(((-310 |#1|) (-10 -8 (-15 -2041 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -2044 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -2044 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2339 |#1|)) |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -2381 (|#1| |#1| |#1|)) (-15 -4339 ((-112) |#1| |#1|)) (-15 -1906 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3984 ((-2 (|:| -1441 (-650 |#1|)) (|:| -2339 |#1|)) (-650 |#1|))) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|))) (-311)) (T -310))
-NIL
-(-10 -8 (-15 -2041 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -2044 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -2044 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2339 |#1|)) |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -2381 (|#1| |#1| |#1|)) (-15 -4339 ((-112) |#1| |#1|)) (-15 -1906 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3984 ((-2 (|:| -1441 (-650 |#1|)) (|:| -2339 |#1|)) (-650 |#1|))) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-2081 (((-112) $) 35)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3215 (((-650 |#1|) (-650 |#1|)) 10)))
+(((-307 |#1|) (-10 -7 (-15 -3215 ((-650 |#1|) (-650 |#1|)))) (-854)) (T -307))
+((-3215 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
+(-10 -7 (-15 -3215 ((-650 |#1|) (-650 |#1|))))
+((-1352 (((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)) 17)))
+(((-308 |#1| |#2|) (-10 -7 (-15 -1352 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)))) (-1058) (-1058)) (T -308))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-695 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-695 *6)) (-5 *1 (-308 *5 *6)))))
+(-10 -7 (-15 -1352 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|))))
+((-3550 (((-1277 (-320 (-384))) (-1277 (-320 (-227)))) 112)) (-3209 (((-1103 (-849 (-227))) (-1103 (-849 (-384)))) 45)) (-3567 (((-650 (-1168)) (-1166 (-227))) 94)) (-2624 (((-320 (-384)) (-959 (-227))) 55)) (-3211 (((-227) (-959 (-227))) 51)) (-2887 (((-1168) (-384)) 197)) (-3217 (((-849 (-227)) (-849 (-384))) 39)) (-3264 (((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227)))) 165)) (-1823 (((-1044) (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) 209) (((-1044) (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) 207)) (-2042 (((-695 (-227)) (-650 (-227)) (-777)) 21)) (-2927 (((-1277 (-705)) (-650 (-227))) 101)) (-4166 (((-650 (-1168)) (-650 (-227))) 81)) (-1369 (((-3 (-320 (-227)) "failed") (-320 (-227))) 130)) (-1860 (((-112) (-227) (-1103 (-849 (-227)))) 119)) (-3863 (((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) 226)) (-3818 (((-227) (-1103 (-849 (-227)))) 114)) (-3625 (((-227) (-1103 (-849 (-227)))) 115)) (-3483 (((-227) (-413 (-570))) 33)) (-4309 (((-1168) (-384)) 79)) (-3384 (((-227) (-384)) 24)) (-3262 (((-384) (-1277 (-320 (-227)))) 179)) (-2155 (((-320 (-227)) (-320 (-384))) 30)) (-4310 (((-413 (-570)) (-320 (-227))) 58)) (-1903 (((-320 (-413 (-570))) (-320 (-227))) 75)) (-1854 (((-320 (-384)) (-320 (-227))) 105)) (-4093 (((-227) (-320 (-227))) 59)) (-2813 (((-650 (-227)) (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) 70)) (-3653 (((-1103 (-849 (-227))) (-1103 (-849 (-227)))) 67)) (-2714 (((-1168) (-227)) 78)) (-4218 (((-705) (-227)) 97)) (-1696 (((-413 (-570)) (-227)) 60)) (-1571 (((-320 (-384)) (-227)) 54)) (-1417 (((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384))))) 48)) (-2439 (((-1044) (-650 (-1044))) 193) (((-1044) (-1044) (-1044)) 187)) (-3651 (((-1044) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) 223)))
+(((-309) (-10 -7 (-15 -3384 ((-227) (-384))) (-15 -2155 ((-320 (-227)) (-320 (-384)))) (-15 -3217 ((-849 (-227)) (-849 (-384)))) (-15 -3209 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1417 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -1696 ((-413 (-570)) (-227))) (-15 -4310 ((-413 (-570)) (-320 (-227)))) (-15 -4093 ((-227) (-320 (-227)))) (-15 -1369 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3262 ((-384) (-1277 (-320 (-227))))) (-15 -3264 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227))))) (-15 -1903 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -3653 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -2813 ((-650 (-227)) (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))) (-15 -4218 ((-705) (-227))) (-15 -2927 ((-1277 (-705)) (-650 (-227)))) (-15 -1854 ((-320 (-384)) (-320 (-227)))) (-15 -3550 ((-1277 (-320 (-384))) (-1277 (-320 (-227))))) (-15 -1860 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -2714 ((-1168) (-227))) (-15 -4309 ((-1168) (-384))) (-15 -4166 ((-650 (-1168)) (-650 (-227)))) (-15 -3567 ((-650 (-1168)) (-1166 (-227)))) (-15 -3818 ((-227) (-1103 (-849 (-227))))) (-15 -3625 ((-227) (-1103 (-849 (-227))))) (-15 -2439 ((-1044) (-1044) (-1044))) (-15 -2439 ((-1044) (-650 (-1044)))) (-15 -2887 ((-1168) (-384))) (-15 -1823 ((-1044) (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -1823 ((-1044) (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -3651 ((-1044) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3863 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -2624 ((-320 (-384)) (-959 (-227)))) (-15 -3211 ((-227) (-959 (-227)))) (-15 -1571 ((-320 (-384)) (-227))) (-15 -3483 ((-227) (-413 (-570)))) (-15 -2042 ((-695 (-227)) (-650 (-227)) (-777))))) (T -309))
+((-2042 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-309)))) (-3483 (*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))) (-1571 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-3211 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2624 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-3863 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-3651 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-1823 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-1823 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2887 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-2439 (*1 *2 *3) (-12 (-5 *3 (-650 (-1044))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2439 (*1 *2 *2 *2) (-12 (-5 *2 (-1044)) (-5 *1 (-309)))) (-3625 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-3818 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-3567 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-4166 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-4309 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-2714 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-1860 (*1 *2 *3 *4) (-12 (-5 *4 (-1103 (-849 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-309)))) (-3550 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-1277 (-320 (-384)))) (-5 *1 (-309)))) (-1854 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-2927 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277 (-705))) (-5 *1 (-309)))) (-4218 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))) (-2813 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *2 (-650 (-227))) (-5 *1 (-309)))) (-3653 (*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-1903 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570)))) (-5 *1 (-309)))) (-3264 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570)))) (-5 *1 (-309)))) (-3262 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))) (-1369 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-4093 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-4310 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-1696 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-650 (-1103 (-849 (-384))))) (-5 *2 (-650 (-1103 (-849 (-227))))) (-5 *1 (-309)))) (-3209 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-3217 (*1 *2 *3) (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))) (-2155 (*1 *2 *3) (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-3384 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
+(-10 -7 (-15 -3384 ((-227) (-384))) (-15 -2155 ((-320 (-227)) (-320 (-384)))) (-15 -3217 ((-849 (-227)) (-849 (-384)))) (-15 -3209 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1417 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -1696 ((-413 (-570)) (-227))) (-15 -4310 ((-413 (-570)) (-320 (-227)))) (-15 -4093 ((-227) (-320 (-227)))) (-15 -1369 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3262 ((-384) (-1277 (-320 (-227))))) (-15 -3264 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227))))) (-15 -1903 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -3653 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -2813 ((-650 (-227)) (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))) (-15 -4218 ((-705) (-227))) (-15 -2927 ((-1277 (-705)) (-650 (-227)))) (-15 -1854 ((-320 (-384)) (-320 (-227)))) (-15 -3550 ((-1277 (-320 (-384))) (-1277 (-320 (-227))))) (-15 -1860 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -2714 ((-1168) (-227))) (-15 -4309 ((-1168) (-384))) (-15 -4166 ((-650 (-1168)) (-650 (-227)))) (-15 -3567 ((-650 (-1168)) (-1166 (-227)))) (-15 -3818 ((-227) (-1103 (-849 (-227))))) (-15 -3625 ((-227) (-1103 (-849 (-227))))) (-15 -2439 ((-1044) (-1044) (-1044))) (-15 -2439 ((-1044) (-650 (-1044)))) (-15 -2887 ((-1168) (-384))) (-15 -1823 ((-1044) (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -1823 ((-1044) (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -3651 ((-1044) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3863 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -2624 ((-320 (-384)) (-959 (-227)))) (-15 -3211 ((-227) (-959 (-227)))) (-15 -1571 ((-320 (-384)) (-227))) (-15 -3483 ((-227) (-413 (-570)))) (-15 -2042 ((-695 (-227)) (-650 (-227)) (-777))))
+((-2707 (((-112) $ $) 14)) (-2372 (($ $ $) 18)) (-2382 (($ $ $) 17)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 50)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 65)) (-1874 (($ $ $) 25) (($ (-650 $)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 35) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 40)) (-2406 (((-3 $ "failed") $ $) 21)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 53)))
+(((-310 |#1|) (-10 -8 (-15 -2045 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -2074 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -2074 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2340 |#1|)) |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -2382 (|#1| |#1| |#1|)) (-15 -2707 ((-112) |#1| |#1|)) (-15 -3003 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3561 ((-2 (|:| -1442 (-650 |#1|)) (|:| -2340 |#1|)) (-650 |#1|))) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|))) (-311)) (T -310))
+NIL
+(-10 -8 (-15 -2045 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -2074 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -2074 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2340 |#1|)) |#1| |#1|)) (-15 -2372 (|#1| |#1| |#1|)) (-15 -2382 (|#1| |#1| |#1|)) (-15 -2707 ((-112) |#1| |#1|)) (-15 -3003 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3561 ((-2 (|:| -1442 (-650 |#1|)) (|:| -2340 |#1|)) (-650 |#1|))) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4340 (((-112) $) 35)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-311) (-141)) (T -311))
-((-4339 (*1 *2 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))) (-2272 (*1 *2 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))) (-2382 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-311)))) (-2381 (*1 *1 *1 *1) (-4 *1 (-311))) (-2372 (*1 *1 *1 *1) (-4 *1 (-311))) (-2044 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2339 *1))) (-4 *1 (-311)))) (-2044 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-311)))) (-2041 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
-(-13 (-927) (-10 -8 (-15 -4339 ((-112) $ $)) (-15 -2272 ((-777) $)) (-15 -2382 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2381 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -2044 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $)) (-15 -2044 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -2041 ((-3 (-650 $) "failed") (-650 $) $))))
+((-2707 (*1 *2 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))) (-2547 (*1 *2 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))) (-4378 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-311)))) (-2382 (*1 *1 *1 *1) (-4 *1 (-311))) (-2372 (*1 *1 *1 *1) (-4 *1 (-311))) (-2074 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2340 *1))) (-4 *1 (-311)))) (-2074 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-311)))) (-2045 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
+(-13 (-927) (-10 -8 (-15 -2707 ((-112) $ $)) (-15 -2547 ((-777) $)) (-15 -4378 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -2382 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -2074 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $)) (-15 -2074 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -2045 ((-3 (-650 $) "failed") (-650 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1730 (($ $ (-650 |#2|) (-650 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-298 |#2|)) 11) (($ $ (-650 (-298 |#2|))) NIL)))
-(((-312 |#1| |#2|) (-10 -8 (-15 -1730 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1730 (|#1| |#1| (-298 |#2|))) (-15 -1730 (|#1| |#1| |#2| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#2|)))) (-313 |#2|) (-1109)) (T -312))
+((-1731 (($ $ (-650 |#2|) (-650 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-298 |#2|)) 11) (($ $ (-650 (-298 |#2|))) NIL)))
+(((-312 |#1| |#2|) (-10 -8 (-15 -1731 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1731 (|#1| |#1| (-298 |#2|))) (-15 -1731 (|#1| |#1| |#2| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#2|)))) (-313 |#2|) (-1109)) (T -312))
NIL
-(-10 -8 (-15 -1730 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1730 (|#1| |#1| (-298 |#2|))) (-15 -1730 (|#1| |#1| |#2| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#2|))))
-((-1730 (($ $ (-650 |#1|) (-650 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-298 |#1|)) 11) (($ $ (-650 (-298 |#1|))) 10)))
+(-10 -8 (-15 -1731 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1731 (|#1| |#1| (-298 |#2|))) (-15 -1731 (|#1| |#1| |#2| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#2|))))
+((-1731 (($ $ (-650 |#1|) (-650 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-298 |#1|)) 11) (($ $ (-650 (-298 |#1|))) 10)))
(((-313 |#1|) (-141) (-1109)) (T -313))
-((-1730 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1109)))) (-1730 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *3))) (-4 *1 (-313 *3)) (-4 *3 (-1109)))))
-(-13 (-520 |t#1| |t#1|) (-10 -8 (-15 -1730 ($ $ (-298 |t#1|))) (-15 -1730 ($ $ (-650 (-298 |t#1|))))))
+((-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1109)))) (-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *3))) (-4 *1 (-313 *3)) (-4 *3 (-1109)))))
+(-13 (-520 |t#1| |t#1|) (-10 -8 (-15 -1731 ($ $ (-298 |t#1|))) (-15 -1731 ($ $ (-650 (-298 |t#1|))))))
(((-520 |#1| |#1|) . T))
-((-1730 ((|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))) 25)))
-(((-314 |#1|) (-10 -7 (-15 -1730 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))))) (-38 (-413 (-570)))) (T -314))
-((-1730 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-570))) (-5 *4 (-1188 (-413 (-570)))) (-5 *1 (-314 *2)) (-4 *2 (-38 (-413 (-570)))))))
-(-10 -7 (-15 -1730 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570))))))
-((-2416 (((-112) $ $) NIL)) (-2461 (((-570) $) 12)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1425 (((-1144) $) 9)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-315) (-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -2461 ((-570) $))))) (T -315))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-315)))) (-2461 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-315)))))
-(-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -2461 ((-570) $))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 7)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
+((-1731 ((|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))) 25)))
+(((-314 |#1|) (-10 -7 (-15 -1731 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))))) (-38 (-413 (-570)))) (T -314))
+((-1731 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-570))) (-5 *4 (-1188 (-413 (-570)))) (-5 *1 (-314 *2)) (-4 *2 (-38 (-413 (-570)))))))
+(-10 -7 (-15 -1731 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570))))))
+((-2417 (((-112) $ $) NIL)) (-2461 (((-570) $) 12)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1426 (((-1144) $) 9)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-315) (-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -2461 ((-570) $))))) (T -315))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-315)))) (-2461 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-315)))))
+(-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -2461 ((-570) $))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 7)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
(((-316) (-1109)) (T -316))
NIL
(-1109)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 60)) (-3303 (((-1262 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-1262 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-3 (-1261 |#2| |#3| |#4|) "failed") $) 26)) (-3080 (((-1262 |#1| |#2| |#3| |#4|) $) NIL) (((-1186) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-570) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-1261 |#2| |#3| |#4|) $) NIL)) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-1262 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1276 (-1262 |#1| |#2| |#3| |#4|)))) (-695 $) (-1276 $)) NIL) (((-695 (-1262 |#1| |#2| |#3| |#4|)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-1262 |#1| |#2| |#3| |#4|) $) 22)) (-2885 (((-3 $ "failed") $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1161)))) (-2761 (((-112) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-856)))) (-3787 (($ $ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-856)))) (-1351 (($ (-1 (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|)) $) NIL)) (-2807 (((-3 (-849 |#2|) "failed") $) 80)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-311)))) (-3739 (((-1262 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-1262 |#1| |#2| |#3| |#4|)) (-650 (-1262 |#1| |#2| |#3| |#4|))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-313 (-1262 |#1| |#2| |#3| |#4|)))) (($ $ (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-313 (-1262 |#1| |#2| |#3| |#4|)))) (($ $ (-298 (-1262 |#1| |#2| |#3| |#4|))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-313 (-1262 |#1| |#2| |#3| |#4|)))) (($ $ (-650 (-298 (-1262 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-313 (-1262 |#1| |#2| |#3| |#4|)))) (($ $ (-650 (-1186)) (-650 (-1262 |#1| |#2| |#3| |#4|))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-520 (-1186) (-1262 |#1| |#2| |#3| |#4|)))) (($ $ (-1186) (-1262 |#1| |#2| |#3| |#4|)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-520 (-1186) (-1262 |#1| |#2| |#3| |#4|))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-1262 |#1| |#2| |#3| |#4|)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-290 (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-777)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-1186)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1 (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|)) (-777)) NIL) (($ $ (-1 (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-1262 |#1| |#2| |#3| |#4|) $) 19)) (-1416 (((-899 (-570)) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-620 (-542)))) (((-384) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1031))) (((-227) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1262 |#1| |#2| |#3| |#4|) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-1262 |#1| |#2| |#3| |#4|)) 30) (($ (-1186)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-1047 (-1186)))) (($ (-1261 |#2| |#3| |#4|)) 37)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-1262 |#1| |#2| |#3| |#4|) (-916))) (|has| (-1262 |#1| |#2| |#3| |#4|) (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 (((-1262 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-826)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-777)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-1186)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1 (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|)) (-777)) NIL) (($ $ (-1 (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-1262 |#1| |#2| |#3| |#4|) (-856)))) (-2975 (($ $ $) 35) (($ (-1262 |#1| |#2| |#3| |#4|) (-1262 |#1| |#2| |#3| |#4|)) 32)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-1262 |#1| |#2| |#3| |#4|) $) 31) (($ $ (-1262 |#1| |#2| |#3| |#4|)) NIL)))
-(((-317 |#1| |#2| |#3| |#4|) (-13 (-1001 (-1262 |#1| |#2| |#3| |#4|)) (-1047 (-1261 |#2| |#3| |#4|)) (-10 -8 (-15 -2807 ((-3 (-849 |#2|) "failed") $)) (-15 -3735 ($ (-1261 |#2| |#3| |#4|))))) (-13 (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1211) (-436 |#1|)) (-1186) |#2|) (T -317))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1261 *4 *5 *6)) (-4 *4 (-13 (-27) (-1211) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4) (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *1 (-317 *3 *4 *5 *6)))) (-2807 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *2 (-849 *4)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1211) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4))))
-(-13 (-1001 (-1262 |#1| |#2| |#3| |#4|)) (-1047 (-1261 |#2| |#3| |#4|)) (-10 -8 (-15 -2807 ((-3 (-849 |#2|) "failed") $)) (-15 -3735 ($ (-1261 |#2| |#3| |#4|)))))
-((-1351 (((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)) 13)))
-(((-318 |#1| |#2|) (-10 -7 (-15 -1351 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)))) (-1109) (-1109)) (T -318))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-320 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-320 *6)) (-5 *1 (-318 *5 *6)))))
-(-10 -7 (-15 -1351 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|))))
-((-1781 (((-52) |#2| (-298 |#2|) (-777)) 40) (((-52) |#2| (-298 |#2|)) 32) (((-52) |#2| (-777)) 35) (((-52) |#2|) 33) (((-52) (-1186)) 26)) (-3254 (((-52) |#2| (-298 |#2|) (-413 (-570))) 59) (((-52) |#2| (-298 |#2|)) 56) (((-52) |#2| (-413 (-570))) 58) (((-52) |#2|) 57) (((-52) (-1186)) 55)) (-1804 (((-52) |#2| (-298 |#2|) (-413 (-570))) 54) (((-52) |#2| (-298 |#2|)) 51) (((-52) |#2| (-413 (-570))) 53) (((-52) |#2|) 52) (((-52) (-1186)) 50)) (-1791 (((-52) |#2| (-298 |#2|) (-570)) 47) (((-52) |#2| (-298 |#2|)) 44) (((-52) |#2| (-570)) 46) (((-52) |#2|) 45) (((-52) (-1186)) 43)))
-(((-319 |#1| |#2|) (-10 -7 (-15 -1781 ((-52) (-1186))) (-15 -1781 ((-52) |#2|)) (-15 -1781 ((-52) |#2| (-777))) (-15 -1781 ((-52) |#2| (-298 |#2|))) (-15 -1781 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1791 ((-52) (-1186))) (-15 -1791 ((-52) |#2|)) (-15 -1791 ((-52) |#2| (-570))) (-15 -1791 ((-52) |#2| (-298 |#2|))) (-15 -1791 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1804 ((-52) (-1186))) (-15 -1804 ((-52) |#2|)) (-15 -1804 ((-52) |#2| (-413 (-570)))) (-15 -1804 ((-52) |#2| (-298 |#2|))) (-15 -1804 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3254 ((-52) (-1186))) (-15 -3254 ((-52) |#2|)) (-15 -3254 ((-52) |#2| (-413 (-570)))) (-15 -3254 ((-52) |#2| (-298 |#2|))) (-15 -3254 ((-52) |#2| (-298 |#2|) (-413 (-570))))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -319))
-((-3254 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-5 *5 (-413 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-3254 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-3254 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-3254 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))) (-3254 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4))))) (-1804 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-5 *5 (-413 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-1804 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-1804 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-1804 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))) (-1804 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4))))) (-1791 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-458) (-1047 *5) (-645 *5))) (-5 *5 (-570)) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-1791 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-1791 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *5 (-13 (-458) (-1047 *4) (-645 *4))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-1791 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))) (-1791 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4))))) (-1781 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-5 *5 (-777)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-1781 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))) (-1781 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4))))))
-(-10 -7 (-15 -1781 ((-52) (-1186))) (-15 -1781 ((-52) |#2|)) (-15 -1781 ((-52) |#2| (-777))) (-15 -1781 ((-52) |#2| (-298 |#2|))) (-15 -1781 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1791 ((-52) (-1186))) (-15 -1791 ((-52) |#2|)) (-15 -1791 ((-52) |#2| (-570))) (-15 -1791 ((-52) |#2| (-298 |#2|))) (-15 -1791 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1804 ((-52) (-1186))) (-15 -1804 ((-52) |#2|)) (-15 -1804 ((-52) |#2| (-413 (-570)))) (-15 -1804 ((-52) |#2| (-298 |#2|))) (-15 -1804 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3254 ((-52) (-1186))) (-15 -3254 ((-52) |#2|)) (-15 -3254 ((-52) |#2| (-413 (-570)))) (-15 -3254 ((-52) |#2| (-298 |#2|))) (-15 -3254 ((-52) |#2| (-298 |#2|) (-413 (-570)))))
-((-2416 (((-112) $ $) NIL)) (-3028 (((-650 $) $ (-1186)) NIL (|has| |#1| (-562))) (((-650 $) $) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $) (-1186)) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $)) NIL (|has| |#1| (-562))) (((-650 $) (-959 $)) NIL (|has| |#1| (-562)))) (-1723 (($ $ (-1186)) NIL (|has| |#1| (-562))) (($ $) NIL (|has| |#1| (-562))) (($ (-1182 $) (-1186)) NIL (|has| |#1| (-562))) (($ (-1182 $)) NIL (|has| |#1| (-562))) (($ (-959 $)) NIL (|has| |#1| (-562)))) (-4028 (((-112) $) 27 (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-1716 (((-650 (-1186)) $) 368)) (-3703 (((-413 (-1182 $)) $ (-618 $)) NIL (|has| |#1| (-562)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3593 (((-650 (-618 $)) $) NIL)) (-2735 (($ $) 171 (|has| |#1| (-562)))) (-2602 (($ $) 147 (|has| |#1| (-562)))) (-2805 (($ $ (-1101 $)) 232 (|has| |#1| (-562))) (($ $ (-1186)) 228 (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) NIL (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-4283 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) 386) (($ $ (-650 (-618 $)) (-650 $)) 430)) (-2615 (((-424 (-1182 $)) (-1182 $)) 308 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-2222 (($ $) NIL (|has| |#1| (-562)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-562)))) (-3753 (($ $) NIL (|has| |#1| (-562)))) (-4339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2712 (($ $) 167 (|has| |#1| (-562)))) (-2579 (($ $) 143 (|has| |#1| (-562)))) (-2130 (($ $ (-570)) 73 (|has| |#1| (-562)))) (-4087 (($ $) 175 (|has| |#1| (-562)))) (-2622 (($ $) 151 (|has| |#1| (-562)))) (-2450 (($) NIL (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-2492 (((-650 $) $ (-1186)) NIL (|has| |#1| (-562))) (((-650 $) $) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $) (-1186)) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $)) NIL (|has| |#1| (-562))) (((-650 $) (-959 $)) NIL (|has| |#1| (-562)))) (-4143 (($ $ (-1186)) NIL (|has| |#1| (-562))) (($ $) NIL (|has| |#1| (-562))) (($ (-1182 $) (-1186)) 134 (|has| |#1| (-562))) (($ (-1182 $)) NIL (|has| |#1| (-562))) (($ (-959 $)) NIL (|has| |#1| (-562)))) (-4378 (((-3 (-618 $) "failed") $) 18) (((-3 (-1186) "failed") $) NIL) (((-3 |#1| "failed") $) 441) (((-3 (-48) "failed") $) 336 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-959 |#1|)) "failed") $) NIL (|has| |#1| (-562))) (((-3 (-959 |#1|) "failed") $) NIL (|has| |#1| (-1058))) (((-3 (-413 (-570)) "failed") $) 46 (-2740 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 (((-618 $) $) 12) (((-1186) $) NIL) ((|#1| $) 421) (((-48) $) NIL (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-959 |#1|)) $) NIL (|has| |#1| (-562))) (((-959 |#1|) $) NIL (|has| |#1| (-1058))) (((-413 (-570)) $) 319 (-2740 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2372 (($ $ $) NIL (|has| |#1| (-562)))) (-4177 (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 125 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 115 (|has| |#1| (-1058))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (-3529 (($ $) 96 (|has| |#1| (-562)))) (-3413 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-2381 (($ $ $) NIL (|has| |#1| (-562)))) (-2213 (($ $ (-1101 $)) 236 (|has| |#1| (-562))) (($ $ (-1186)) 234 (|has| |#1| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-562)))) (-1552 (((-112) $) NIL (|has| |#1| (-562)))) (-1794 (($ $ $) 202 (|has| |#1| (-562)))) (-1314 (($) 137 (|has| |#1| (-562)))) (-4390 (($ $ $) 222 (|has| |#1| (-562)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 392 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 399 (|has| |#1| (-893 (-384))))) (-2268 (($ $) NIL) (($ (-650 $)) NIL)) (-4190 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) 276)) (-2081 (((-112) $) 25 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-3431 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-3195 (($ $) 72 (|has| |#1| (-1058)))) (-4398 (((-1134 |#1| (-618 $)) $) 91 (|has| |#1| (-1058)))) (-3692 (((-112) $) 62 (|has| |#1| (-562)))) (-2598 (($ $ (-570)) NIL (|has| |#1| (-562)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-1646 (((-1182 $) (-618 $)) 277 (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) 426)) (-3399 (((-3 (-618 $) "failed") $) NIL)) (-2635 (($ $) 141 (|has| |#1| (-562)))) (-4146 (($ $) 247 (|has| |#1| (-562)))) (-1845 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1903 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) 49)) (-1360 (($ (-115) $) NIL) (($ (-115) (-650 $)) 431)) (-1596 (((-3 (-650 $) "failed") $) NIL (|has| |#1| (-1121)))) (-3366 (((-3 (-2 (|:| |val| $) (|:| -1907 (-570))) "failed") $) NIL (|has| |#1| (-1058)))) (-3751 (((-3 (-650 $) "failed") $) 436 (|has| |#1| (-25)))) (-2828 (((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 $))) "failed") $) 440 (|has| |#1| (-25)))) (-3496 (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $) NIL (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-115)) NIL (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-1186)) NIL (|has| |#1| (-1058)))) (-1566 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) 51)) (-1825 (($ $) NIL (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-2642 (($ $ (-1186)) 251 (|has| |#1| (-562))) (($ $ (-1101 $)) 253 (|has| |#1| (-562)))) (-1434 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) 43)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 301 (|has| |#1| (-562)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-3247 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-1959 (($ $ (-1186)) 226 (|has| |#1| (-562))) (($ $) 224 (|has| |#1| (-562)))) (-4061 (($ $) 218 (|has| |#1| (-562)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 306 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-3738 (((-424 $) $) NIL (|has| |#1| (-562)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-562)))) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-4387 (($ $) 139 (|has| |#1| (-562)))) (-1322 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1730 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) 425) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) 379) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL) (($ $ (-1186)) NIL (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-620 (-542)))) (($ $) NIL (|has| |#1| (-620 (-542)))) (($ $ (-115) $ (-1186)) 366 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-115)) (-650 $) (-1186)) 365 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) NIL (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ (-650 $))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ $)) NIL (|has| |#1| (-1058)))) (-2272 (((-777) $) NIL (|has| |#1| (-562)))) (-2537 (($ $) 239 (|has| |#1| (-562)))) (-1876 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-3760 (($ $) NIL) (($ $ $) NIL)) (-2568 (($ $) 249 (|has| |#1| (-562)))) (-3571 (($ $) 200 (|has| |#1| (-562)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-1058))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-1058))) (($ $ (-1186)) NIL (|has| |#1| (-1058)))) (-1418 (($ $) 74 (|has| |#1| (-562)))) (-4412 (((-1134 |#1| (-618 $)) $) 93 (|has| |#1| (-562)))) (-2886 (($ $) 317 (|has| $ (-1058)))) (-4099 (($ $) 177 (|has| |#1| (-562)))) (-2634 (($ $) 153 (|has| |#1| (-562)))) (-2746 (($ $) 173 (|has| |#1| (-562)))) (-2611 (($ $) 149 (|has| |#1| (-562)))) (-2723 (($ $) 169 (|has| |#1| (-562)))) (-2590 (($ $) 145 (|has| |#1| (-562)))) (-1416 (((-899 (-570)) $) NIL (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#1| (-620 (-899 (-384))))) (($ (-424 $)) NIL (|has| |#1| (-562))) (((-542) $) 363 (|has| |#1| (-620 (-542))))) (-3684 (($ $ $) NIL (|has| |#1| (-479)))) (-3688 (($ $ $) NIL (|has| |#1| (-479)))) (-3735 (((-868) $) 424) (($ (-618 $)) 415) (($ (-1186)) 381) (($ |#1|) 337) (($ $) NIL (|has| |#1| (-562))) (($ (-48)) 312 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) (($ (-1134 |#1| (-618 $))) 95 (|has| |#1| (-1058))) (($ (-413 |#1|)) NIL (|has| |#1| (-562))) (($ (-959 (-413 |#1|))) NIL (|has| |#1| (-562))) (($ (-413 (-959 (-413 |#1|)))) NIL (|has| |#1| (-562))) (($ (-413 (-959 |#1|))) NIL (|has| |#1| (-562))) (($ (-959 |#1|)) NIL (|has| |#1| (-1058))) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-562)) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 34 (-2740 (|has| |#1| (-1047 (-570))) (|has| |#1| (-1058))))) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL (|has| |#1| (-1058)) CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-1397 (($ $ $) 220 (|has| |#1| (-562)))) (-1801 (($ $ $) 206 (|has| |#1| (-562)))) (-3614 (($ $ $) 210 (|has| |#1| (-562)))) (-2565 (($ $ $) 204 (|has| |#1| (-562)))) (-2051 (($ $ $) 208 (|has| |#1| (-562)))) (-2004 (((-112) (-115)) 10)) (-1859 (((-112) $ $) 86)) (-4138 (($ $) 183 (|has| |#1| (-562)))) (-2671 (($ $) 159 (|has| |#1| (-562)))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) 179 (|has| |#1| (-562)))) (-2647 (($ $) 155 (|has| |#1| (-562)))) (-4161 (($ $) 187 (|has| |#1| (-562)))) (-2691 (($ $) 163 (|has| |#1| (-562)))) (-4191 (($ (-1186) $) NIL) (($ (-1186) $ $) NIL) (($ (-1186) $ $ $) NIL) (($ (-1186) $ $ $ $) NIL) (($ (-1186) (-650 $)) NIL)) (-2228 (($ $) 214 (|has| |#1| (-562)))) (-3022 (($ $) 212 (|has| |#1| (-562)))) (-1509 (($ $) 189 (|has| |#1| (-562)))) (-2701 (($ $) 165 (|has| |#1| (-562)))) (-4150 (($ $) 185 (|has| |#1| (-562)))) (-2681 (($ $) 161 (|has| |#1| (-562)))) (-4123 (($ $) 181 (|has| |#1| (-562)))) (-2660 (($ $) 157 (|has| |#1| (-562)))) (-1423 (($ $) 192 (|has| |#1| (-562)))) (-1812 (($) 21 (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) CONST)) (-2211 (($ $) 243 (|has| |#1| (-562)))) (-1823 (($) 23 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-4118 (($ $) 194 (|has| |#1| (-562))) (($ $ $) 196 (|has| |#1| (-562)))) (-2332 (($ $) 241 (|has| |#1| (-562)))) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-1058))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-1058))) (($ $ (-1186)) NIL (|has| |#1| (-1058)))) (-3456 (($ $) 245 (|has| |#1| (-562)))) (-3829 (($ $ $) 198 (|has| |#1| (-562)))) (-2872 (((-112) $ $) 88)) (-2975 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 106 (|has| |#1| (-562))) (($ $ $) 42 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-2965 (($ $ $) 40 (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ $) 29 (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-2954 (($ $ $) 38 (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (** (($ $ $) 64 (|has| |#1| (-562))) (($ $ (-413 (-570))) 314 (|has| |#1| (-562))) (($ $ (-570)) 80 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562)))) (($ $ (-777)) 75 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ $ (-928)) 84 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (* (($ (-413 (-570)) $) NIL (|has| |#1| (-562))) (($ $ (-413 (-570))) NIL (|has| |#1| (-562))) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174))) (($ $ $) 36 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ (-570) $) 32 (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-777) $) NIL (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-928) $) NIL (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))))
-(((-320 |#1|) (-13 (-436 |#1|) (-10 -8 (IF (|has| |#1| (-562)) (PROGN (-6 (-29 |#1|)) (-6 (-1211)) (-6 (-161)) (-6 (-635)) (-6 (-1148)) (-15 -3529 ($ $)) (-15 -3692 ((-112) $)) (-15 -2130 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -1495 ((-424 (-1182 $)) (-1182 $))) (-15 -2615 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|))) (-1109)) (T -320))
-((-3529 (*1 *1 *1) (-12 (-5 *1 (-320 *2)) (-4 *2 (-562)) (-4 *2 (-1109)))) (-3692 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-2130 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-1495 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1)) (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109)))) (-2615 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1)) (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109)))))
-(-13 (-436 |#1|) (-10 -8 (IF (|has| |#1| (-562)) (PROGN (-6 (-29 |#1|)) (-6 (-1211)) (-6 (-161)) (-6 (-635)) (-6 (-1148)) (-15 -3529 ($ $)) (-15 -3692 ((-112) $)) (-15 -2130 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -1495 ((-424 (-1182 $)) (-1182 $))) (-15 -2615 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|)))
-((-3977 (((-52) |#2| (-115) (-298 |#2|) (-650 |#2|)) 89) (((-52) |#2| (-115) (-298 |#2|) (-298 |#2|)) 85) (((-52) |#2| (-115) (-298 |#2|) |#2|) 87) (((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|) 88) (((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|))) 81) (((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|)) 83) (((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|)) 84) (((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|))) 82) (((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|)) 90) (((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|)) 86)))
-(((-321 |#1| |#2|) (-10 -7 (-15 -3977 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -3977 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3977 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3977 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3977 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3977 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3977 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -3977 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -3977 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -3977 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-562) (-620 (-542))) (-436 |#1|)) (T -321))
-((-3977 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-5 *6 (-650 *3)) (-4 *3 (-436 *7)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *7 *3)))) (-3977 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *3)))) (-3977 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *3)))) (-3977 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-298 *5)) (-5 *4 (-115)) (-4 *5 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *5)))) (-3977 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-115))) (-5 *6 (-650 (-298 *8))) (-4 *8 (-436 *7)) (-5 *5 (-298 *8)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *7 *8)))) (-3977 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7)) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *7)))) (-3977 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-650 (-298 *8))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *8)) (-5 *6 (-650 *8)) (-4 *8 (-436 *7)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *7 *8)))) (-3977 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7)) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *7)))) (-3977 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-650 *7)) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *7)))) (-3977 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-298 *6)) (-5 *4 (-115)) (-4 *6 (-436 *5)) (-4 *5 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *5 *6)))))
-(-10 -7 (-15 -3977 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -3977 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3977 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3977 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3977 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3977 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3977 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -3977 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -3977 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -3977 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|))))
-((-1529 (((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168)) 67) (((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570)) 68) (((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168)) 64) (((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570)) 65)) (-1620 (((-1 (-227) (-227)) (-227)) 66)))
-(((-322) (-10 -7 (-15 -1620 ((-1 (-227) (-227)) (-227))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))) (T -322))
-((-1529 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570)) (-5 *8 (-1168)) (-5 *2 (-1221 (-933))) (-5 *1 (-322)))) (-1529 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570)) (-5 *2 (-1221 (-933))) (-5 *1 (-322)))) (-1529 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *7 (-1168)) (-5 *2 (-1221 (-933))) (-5 *1 (-322)))) (-1529 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *2 (-1221 (-933))) (-5 *1 (-322)))) (-1620 (*1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
-(-10 -7 (-15 -1620 ((-1 (-227) (-227)) (-227))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -1529 ((-1221 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 26)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 20)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) 36)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) 16)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-3555 (($ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211)))))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) NIL)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4176 (((-413 (-570)) $) 17)) (-3438 (($ (-1261 |#1| |#2| |#3|)) 11)) (-1907 (((-1261 |#1| |#2| |#3|) $) 12)) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-1601 (((-413 (-570)) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 10)) (-3735 (((-868) $) 42) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) 34)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) NIL)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 28)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 37)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-323 |#1| |#2| |#3|) (-13 (-1257 |#1|) (-798) (-10 -8 (-15 -3438 ($ (-1261 |#1| |#2| |#3|))) (-15 -1907 ((-1261 |#1| |#2| |#3|) $)) (-15 -4176 ((-413 (-570)) $)))) (-368) (-1186) |#1|) (T -323))
-((-3438 (*1 *1 *2) (-12 (-5 *2 (-1261 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-323 *3 *4 *5)))) (-1907 (*1 *2 *1) (-12 (-5 *2 (-1261 *3 *4 *5)) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186)) (-14 *5 *3))) (-4176 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186)) (-14 *5 *3))))
-(-13 (-1257 |#1|) (-798) (-10 -8 (-15 -3438 ($ (-1261 |#1| |#2| |#3|))) (-15 -1907 ((-1261 |#1| |#2| |#3|) $)) (-15 -4176 ((-413 (-570)) $))))
-((-2598 (((-2 (|:| -1907 (-777)) (|:| -1441 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777)) 35)) (-2635 (((-650 (-2 (|:| -1441 (-777)) (|:| |logand| |#1|))) (-424 |#1|)) 40)))
-(((-324 |#1|) (-10 -7 (-15 -2598 ((-2 (|:| -1907 (-777)) (|:| -1441 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2635 ((-650 (-2 (|:| -1441 (-777)) (|:| |logand| |#1|))) (-424 |#1|)))) (-562)) (T -324))
-((-2635 (*1 *2 *3) (-12 (-5 *3 (-424 *4)) (-4 *4 (-562)) (-5 *2 (-650 (-2 (|:| -1441 (-777)) (|:| |logand| *4)))) (-5 *1 (-324 *4)))) (-2598 (*1 *2 *3 *4) (-12 (-5 *3 (-424 *5)) (-4 *5 (-562)) (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *5) (|:| |radicand| (-650 *5)))) (-5 *1 (-324 *5)) (-5 *4 (-777)))))
-(-10 -7 (-15 -2598 ((-2 (|:| -1907 (-777)) (|:| -1441 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2635 ((-650 (-2 (|:| -1441 (-777)) (|:| |logand| |#1|))) (-424 |#1|))))
-((-1716 (((-650 |#2|) (-1182 |#4|)) 44)) (-1647 ((|#3| (-570)) 47)) (-4093 (((-1182 |#4|) (-1182 |#3|)) 30)) (-3410 (((-1182 |#4|) (-1182 |#4|) (-570)) 66)) (-2556 (((-1182 |#3|) (-1182 |#4|)) 21)) (-1601 (((-650 (-777)) (-1182 |#4|) (-650 |#2|)) 41)) (-4153 (((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|)) 35)))
-(((-325 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4153 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -1601 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1716 ((-650 |#2|) (-1182 |#4|))) (-15 -2556 ((-1182 |#3|) (-1182 |#4|))) (-15 -4093 ((-1182 |#4|) (-1182 |#3|))) (-15 -3410 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -1647 (|#3| (-570)))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|)) (T -325))
-((-1647 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1058)) (-5 *1 (-325 *4 *5 *2 *6)) (-4 *6 (-956 *2 *4 *5)))) (-3410 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 *7)) (-5 *3 (-570)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *1 (-325 *4 *5 *6 *7)))) (-4093 (*1 *2 *3) (-12 (-5 *3 (-1182 *6)) (-4 *6 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-1182 *7)) (-5 *1 (-325 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-2556 (*1 *2 *3) (-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *2 (-1182 *6)) (-5 *1 (-325 *4 *5 *6 *7)))) (-1716 (*1 *2 *3) (-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *2 (-650 *5)) (-5 *1 (-325 *4 *5 *6 *7)))) (-1601 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *8)) (-5 *4 (-650 *6)) (-4 *6 (-856)) (-4 *8 (-956 *7 *5 *6)) (-4 *5 (-799)) (-4 *7 (-1058)) (-5 *2 (-650 (-777))) (-5 *1 (-325 *5 *6 *7 *8)))) (-4153 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 *8)) (-4 *7 (-856)) (-4 *8 (-1058)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-5 *2 (-1182 *8)) (-5 *1 (-325 *6 *7 *8 *9)))))
-(-10 -7 (-15 -4153 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -1601 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1716 ((-650 |#2|) (-1182 |#4|))) (-15 -2556 ((-1182 |#3|) (-1182 |#4|))) (-15 -4093 ((-1182 |#4|) (-1182 |#3|))) (-15 -3410 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -1647 (|#3| (-570))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 19)) (-2230 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $) 21)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777) $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2530 ((|#1| $ (-570)) NIL)) (-2896 (((-570) $ (-570)) NIL)) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-2553 (($ (-1 |#1| |#1|) $) NIL)) (-1644 (($ (-1 (-570) (-570)) $) 11)) (-1903 (((-1168) $) NIL)) (-3296 (($ $ $) NIL (|has| (-570) (-798)))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1715 (((-570) |#1| $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) 29 (|has| |#1| (-856)))) (-2965 (($ $) 12) (($ $ $) 28)) (-2954 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL) (($ (-570) |#1|) 27)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 60)) (-3113 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-1263 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-3 (-1262 |#2| |#3| |#4|) "failed") $) 26)) (-3080 (((-1263 |#1| |#2| |#3| |#4|) $) NIL) (((-1186) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-570) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-570)))) (((-1262 |#2| |#3| |#4|) $) NIL)) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-1263 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1277 (-1263 |#1| |#2| |#3| |#4|)))) (-695 $) (-1277 $)) NIL) (((-695 (-1263 |#1| |#2| |#3| |#4|)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-1263 |#1| |#2| |#3| |#4|) $) 22)) (-3584 (((-3 $ "failed") $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1161)))) (-1774 (((-112) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2222 (($ $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-1352 (($ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) $) NIL)) (-4061 (((-3 (-849 |#2|) "failed") $) 80)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-311)))) (-2962 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-1263 |#1| |#2| |#3| |#4|)) (-650 (-1263 |#1| |#2| |#3| |#4|))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-313 (-1263 |#1| |#2| |#3| |#4|)))) (($ $ (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-313 (-1263 |#1| |#2| |#3| |#4|)))) (($ $ (-298 (-1263 |#1| |#2| |#3| |#4|))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-313 (-1263 |#1| |#2| |#3| |#4|)))) (($ $ (-650 (-298 (-1263 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-313 (-1263 |#1| |#2| |#3| |#4|)))) (($ $ (-650 (-1186)) (-650 (-1263 |#1| |#2| |#3| |#4|))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-520 (-1186) (-1263 |#1| |#2| |#3| |#4|)))) (($ $ (-1186) (-1263 |#1| |#2| |#3| |#4|)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-520 (-1186) (-1263 |#1| |#2| |#3| |#4|))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-1263 |#1| |#2| |#3| |#4|)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-290 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-777)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-1186)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) (-777)) NIL) (($ $ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-1263 |#1| |#2| |#3| |#4|) $) 19)) (-1417 (((-899 (-570)) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-620 (-542)))) (((-384) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1031))) (((-227) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1263 |#1| |#2| |#3| |#4|) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-1263 |#1| |#2| |#3| |#4|)) 30) (($ (-1186)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1047 (-1186)))) (($ (-1262 |#2| |#3| |#4|)) 37)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-1263 |#1| |#2| |#3| |#4|) (-916))) (|has| (-1263 |#1| |#2| |#3| |#4|) (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-777)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-235))) (($ $ (-1186)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-907 (-1186)))) (($ $ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) (-777)) NIL) (($ $ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2975 (($ $ $) 35) (($ (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) 32)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-1263 |#1| |#2| |#3| |#4|) $) 31) (($ $ (-1263 |#1| |#2| |#3| |#4|)) NIL)))
+(((-317 |#1| |#2| |#3| |#4|) (-13 (-1001 (-1263 |#1| |#2| |#3| |#4|)) (-1047 (-1262 |#2| |#3| |#4|)) (-10 -8 (-15 -4061 ((-3 (-849 |#2|) "failed") $)) (-15 -3735 ($ (-1262 |#2| |#3| |#4|))))) (-13 (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -317))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1262 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4) (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *1 (-317 *3 *4 *5 *6)))) (-4061 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *2 (-849 *4)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4))))
+(-13 (-1001 (-1263 |#1| |#2| |#3| |#4|)) (-1047 (-1262 |#2| |#3| |#4|)) (-10 -8 (-15 -4061 ((-3 (-849 |#2|) "failed") $)) (-15 -3735 ($ (-1262 |#2| |#3| |#4|)))))
+((-1352 (((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)) 13)))
+(((-318 |#1| |#2|) (-10 -7 (-15 -1352 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)))) (-1109) (-1109)) (T -318))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-320 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-320 *6)) (-5 *1 (-318 *5 *6)))))
+(-10 -7 (-15 -1352 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|))))
+((-1781 (((-52) |#2| (-298 |#2|) (-777)) 40) (((-52) |#2| (-298 |#2|)) 32) (((-52) |#2| (-777)) 35) (((-52) |#2|) 33) (((-52) (-1186)) 26)) (-3253 (((-52) |#2| (-298 |#2|) (-413 (-570))) 59) (((-52) |#2| (-298 |#2|)) 56) (((-52) |#2| (-413 (-570))) 58) (((-52) |#2|) 57) (((-52) (-1186)) 55)) (-1805 (((-52) |#2| (-298 |#2|) (-413 (-570))) 54) (((-52) |#2| (-298 |#2|)) 51) (((-52) |#2| (-413 (-570))) 53) (((-52) |#2|) 52) (((-52) (-1186)) 50)) (-1793 (((-52) |#2| (-298 |#2|) (-570)) 47) (((-52) |#2| (-298 |#2|)) 44) (((-52) |#2| (-570)) 46) (((-52) |#2|) 45) (((-52) (-1186)) 43)))
+(((-319 |#1| |#2|) (-10 -7 (-15 -1781 ((-52) (-1186))) (-15 -1781 ((-52) |#2|)) (-15 -1781 ((-52) |#2| (-777))) (-15 -1781 ((-52) |#2| (-298 |#2|))) (-15 -1781 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1793 ((-52) (-1186))) (-15 -1793 ((-52) |#2|)) (-15 -1793 ((-52) |#2| (-570))) (-15 -1793 ((-52) |#2| (-298 |#2|))) (-15 -1793 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1805 ((-52) (-1186))) (-15 -1805 ((-52) |#2|)) (-15 -1805 ((-52) |#2| (-413 (-570)))) (-15 -1805 ((-52) |#2| (-298 |#2|))) (-15 -1805 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3253 ((-52) (-1186))) (-15 -3253 ((-52) |#2|)) (-15 -3253 ((-52) |#2| (-413 (-570)))) (-15 -3253 ((-52) |#2| (-298 |#2|))) (-15 -3253 ((-52) |#2| (-298 |#2|) (-413 (-570))))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -319))
+((-3253 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-5 *5 (-413 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-3253 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-3253 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-3253 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))) (-3253 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4))))) (-1805 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-5 *5 (-413 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-1805 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-1805 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-1805 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))) (-1805 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4))))) (-1793 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-458) (-1047 *5) (-645 *5))) (-5 *5 (-570)) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *5 (-13 (-458) (-1047 *4) (-645 *4))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))) (-1793 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4))))) (-1781 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-298 *3)) (-5 *5 (-777)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *6 *3)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-1781 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))) (-1781 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4))))))
+(-10 -7 (-15 -1781 ((-52) (-1186))) (-15 -1781 ((-52) |#2|)) (-15 -1781 ((-52) |#2| (-777))) (-15 -1781 ((-52) |#2| (-298 |#2|))) (-15 -1781 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1793 ((-52) (-1186))) (-15 -1793 ((-52) |#2|)) (-15 -1793 ((-52) |#2| (-570))) (-15 -1793 ((-52) |#2| (-298 |#2|))) (-15 -1793 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1805 ((-52) (-1186))) (-15 -1805 ((-52) |#2|)) (-15 -1805 ((-52) |#2| (-413 (-570)))) (-15 -1805 ((-52) |#2| (-298 |#2|))) (-15 -1805 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3253 ((-52) (-1186))) (-15 -3253 ((-52) |#2|)) (-15 -3253 ((-52) |#2| (-413 (-570)))) (-15 -3253 ((-52) |#2| (-298 |#2|))) (-15 -3253 ((-52) |#2| (-298 |#2|) (-413 (-570)))))
+((-2417 (((-112) $ $) NIL)) (-3598 (((-650 $) $ (-1186)) NIL (|has| |#1| (-562))) (((-650 $) $) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $) (-1186)) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $)) NIL (|has| |#1| (-562))) (((-650 $) (-959 $)) NIL (|has| |#1| (-562)))) (-2041 (($ $ (-1186)) NIL (|has| |#1| (-562))) (($ $) NIL (|has| |#1| (-562))) (($ (-1182 $) (-1186)) NIL (|has| |#1| (-562))) (($ (-1182 $)) NIL (|has| |#1| (-562))) (($ (-959 $)) NIL (|has| |#1| (-562)))) (-2745 (((-112) $) 27 (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-1713 (((-650 (-1186)) $) 368)) (-3702 (((-413 (-1182 $)) $ (-618 $)) NIL (|has| |#1| (-562)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3593 (((-650 (-618 $)) $) NIL)) (-2735 (($ $) 171 (|has| |#1| (-562)))) (-2602 (($ $) 147 (|has| |#1| (-562)))) (-4040 (($ $ (-1101 $)) 232 (|has| |#1| (-562))) (($ $ (-1186)) 228 (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) NIL (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-4284 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) 386) (($ $ (-650 (-618 $)) (-650 $)) 430)) (-2810 (((-424 (-1182 $)) (-1182 $)) 308 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-3252 (($ $) NIL (|has| |#1| (-562)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-562)))) (-3754 (($ $) NIL (|has| |#1| (-562)))) (-2707 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2712 (($ $) 167 (|has| |#1| (-562)))) (-2579 (($ $) 143 (|has| |#1| (-562)))) (-1746 (($ $ (-570)) 73 (|has| |#1| (-562)))) (-4087 (($ $) 175 (|has| |#1| (-562)))) (-2622 (($ $) 151 (|has| |#1| (-562)))) (-3761 (($) NIL (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-4170 (((-650 $) $ (-1186)) NIL (|has| |#1| (-562))) (((-650 $) $) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $) (-1186)) NIL (|has| |#1| (-562))) (((-650 $) (-1182 $)) NIL (|has| |#1| (-562))) (((-650 $) (-959 $)) NIL (|has| |#1| (-562)))) (-1480 (($ $ (-1186)) NIL (|has| |#1| (-562))) (($ $) NIL (|has| |#1| (-562))) (($ (-1182 $) (-1186)) 134 (|has| |#1| (-562))) (($ (-1182 $)) NIL (|has| |#1| (-562))) (($ (-959 $)) NIL (|has| |#1| (-562)))) (-4379 (((-3 (-618 $) "failed") $) 18) (((-3 (-1186) "failed") $) NIL) (((-3 |#1| "failed") $) 441) (((-3 (-48) "failed") $) 336 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-959 |#1|)) "failed") $) NIL (|has| |#1| (-562))) (((-3 (-959 |#1|) "failed") $) NIL (|has| |#1| (-1058))) (((-3 (-413 (-570)) "failed") $) 46 (-2740 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 (((-618 $) $) 12) (((-1186) $) NIL) ((|#1| $) 421) (((-48) $) NIL (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-959 |#1|)) $) NIL (|has| |#1| (-562))) (((-959 |#1|) $) NIL (|has| |#1| (-1058))) (((-413 (-570)) $) 319 (-2740 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2372 (($ $ $) NIL (|has| |#1| (-562)))) (-1836 (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 125 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 115 (|has| |#1| (-1058))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (-3529 (($ $) 96 (|has| |#1| (-562)))) (-2937 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-2382 (($ $ $) NIL (|has| |#1| (-562)))) (-3144 (($ $ (-1101 $)) 236 (|has| |#1| (-562))) (($ $ (-1186)) 234 (|has| |#1| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-562)))) (-4037 (((-112) $) NIL (|has| |#1| (-562)))) (-1414 (($ $ $) 202 (|has| |#1| (-562)))) (-1315 (($) 137 (|has| |#1| (-562)))) (-2039 (($ $ $) 222 (|has| |#1| (-562)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 392 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 399 (|has| |#1| (-893 (-384))))) (-2506 (($ $) NIL) (($ (-650 $)) NIL)) (-1941 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) 276)) (-4340 (((-112) $) 25 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-1958 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1607 (($ $) 72 (|has| |#1| (-1058)))) (-4399 (((-1134 |#1| (-618 $)) $) 91 (|has| |#1| (-1058)))) (-2562 (((-112) $) 62 (|has| |#1| (-562)))) (-2665 (($ $ (-570)) NIL (|has| |#1| (-562)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-2462 (((-1182 $) (-618 $)) 277 (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) 426)) (-2814 (((-3 (-618 $) "failed") $) NIL)) (-2635 (($ $) 141 (|has| |#1| (-562)))) (-4146 (($ $) 247 (|has| |#1| (-562)))) (-1847 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-4268 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) 49)) (-1361 (($ (-115) $) NIL) (($ (-115) (-650 $)) 431)) (-3176 (((-3 (-650 $) "failed") $) NIL (|has| |#1| (-1121)))) (-2499 (((-3 (-2 (|:| |val| $) (|:| -3011 (-570))) "failed") $) NIL (|has| |#1| (-1058)))) (-1955 (((-3 (-650 $) "failed") $) 436 (|has| |#1| (-25)))) (-4298 (((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 $))) "failed") $) 440 (|has| |#1| (-25)))) (-4415 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $) NIL (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-115)) NIL (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-1186)) NIL (|has| |#1| (-1058)))) (-4198 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) 51)) (-1826 (($ $) NIL (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-3024 (($ $ (-1186)) 251 (|has| |#1| (-562))) (($ $ (-1101 $)) 253 (|has| |#1| (-562)))) (-1435 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) 43)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 301 (|has| |#1| (-562)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-3953 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3609 (($ $ (-1186)) 226 (|has| |#1| (-562))) (($ $) 224 (|has| |#1| (-562)))) (-3072 (($ $) 218 (|has| |#1| (-562)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 306 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-3739 (((-424 $) $) NIL (|has| |#1| (-562)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-562)))) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-4388 (($ $) 139 (|has| |#1| (-562)))) (-1739 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1731 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) 425) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) 379) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL) (($ $ (-1186)) NIL (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-620 (-542)))) (($ $) NIL (|has| |#1| (-620 (-542)))) (($ $ (-115) $ (-1186)) 366 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-115)) (-650 $) (-1186)) 365 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) NIL (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ (-650 $))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ $)) NIL (|has| |#1| (-1058)))) (-2547 (((-777) $) NIL (|has| |#1| (-562)))) (-2537 (($ $) 239 (|has| |#1| (-562)))) (-1877 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2008 (($ $) NIL) (($ $ $) NIL)) (-2568 (($ $) 249 (|has| |#1| (-562)))) (-3915 (($ $) 200 (|has| |#1| (-562)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-1058))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-1058))) (($ $ (-1186)) NIL (|has| |#1| (-1058)))) (-4428 (($ $) 74 (|has| |#1| (-562)))) (-4413 (((-1134 |#1| (-618 $)) $) 93 (|has| |#1| (-562)))) (-3597 (($ $) 317 (|has| $ (-1058)))) (-4098 (($ $) 177 (|has| |#1| (-562)))) (-2634 (($ $) 153 (|has| |#1| (-562)))) (-2746 (($ $) 173 (|has| |#1| (-562)))) (-2612 (($ $) 149 (|has| |#1| (-562)))) (-2723 (($ $) 169 (|has| |#1| (-562)))) (-2590 (($ $) 145 (|has| |#1| (-562)))) (-1417 (((-899 (-570)) $) NIL (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#1| (-620 (-899 (-384))))) (($ (-424 $)) NIL (|has| |#1| (-562))) (((-542) $) 363 (|has| |#1| (-620 (-542))))) (-2488 (($ $ $) NIL (|has| |#1| (-479)))) (-2522 (($ $ $) NIL (|has| |#1| (-479)))) (-3735 (((-868) $) 424) (($ (-618 $)) 415) (($ (-1186)) 381) (($ |#1|) 337) (($ $) NIL (|has| |#1| (-562))) (($ (-48)) 312 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) (($ (-1134 |#1| (-618 $))) 95 (|has| |#1| (-1058))) (($ (-413 |#1|)) NIL (|has| |#1| (-562))) (($ (-959 (-413 |#1|))) NIL (|has| |#1| (-562))) (($ (-413 (-959 (-413 |#1|)))) NIL (|has| |#1| (-562))) (($ (-413 (-959 |#1|))) NIL (|has| |#1| (-562))) (($ (-959 |#1|)) NIL (|has| |#1| (-1058))) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-562)) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 34 (-2740 (|has| |#1| (-1047 (-570))) (|has| |#1| (-1058))))) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL (|has| |#1| (-1058)) CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-3829 (($ $ $) 220 (|has| |#1| (-562)))) (-1487 (($ $ $) 206 (|has| |#1| (-562)))) (-4317 (($ $ $) 210 (|has| |#1| (-562)))) (-3612 (($ $ $) 204 (|has| |#1| (-562)))) (-2135 (($ $ $) 208 (|has| |#1| (-562)))) (-2818 (((-112) (-115)) 10)) (-3866 (((-112) $ $) 86)) (-4137 (($ $) 183 (|has| |#1| (-562)))) (-2671 (($ $) 159 (|has| |#1| (-562)))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) 179 (|has| |#1| (-562)))) (-2647 (($ $) 155 (|has| |#1| (-562)))) (-4157 (($ $) 187 (|has| |#1| (-562)))) (-2691 (($ $) 163 (|has| |#1| (-562)))) (-4194 (($ (-1186) $) NIL) (($ (-1186) $ $) NIL) (($ (-1186) $ $ $) NIL) (($ (-1186) $ $ $ $) NIL) (($ (-1186) (-650 $)) NIL)) (-3322 (($ $) 214 (|has| |#1| (-562)))) (-3543 (($ $) 212 (|has| |#1| (-562)))) (-1510 (($ $) 189 (|has| |#1| (-562)))) (-2701 (($ $) 165 (|has| |#1| (-562)))) (-4150 (($ $) 185 (|has| |#1| (-562)))) (-2681 (($ $) 161 (|has| |#1| (-562)))) (-4123 (($ $) 181 (|has| |#1| (-562)))) (-2660 (($ $) 157 (|has| |#1| (-562)))) (-1367 (($ $) 192 (|has| |#1| (-562)))) (-1814 (($) 21 (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) CONST)) (-3122 (($ $) 243 (|has| |#1| (-562)))) (-1824 (($) 23 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-2430 (($ $) 194 (|has| |#1| (-562))) (($ $ $) 196 (|has| |#1| (-562)))) (-2011 (($ $) 241 (|has| |#1| (-562)))) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-1058))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-1058))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-1058))) (($ $ (-1186)) NIL (|has| |#1| (-1058)))) (-2141 (($ $) 245 (|has| |#1| (-562)))) (-1387 (($ $ $) 198 (|has| |#1| (-562)))) (-2872 (((-112) $ $) 88)) (-2975 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 106 (|has| |#1| (-562))) (($ $ $) 42 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-2965 (($ $ $) 40 (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ $) 29 (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-2953 (($ $ $) 38 (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (** (($ $ $) 64 (|has| |#1| (-562))) (($ $ (-413 (-570))) 314 (|has| |#1| (-562))) (($ $ (-570)) 80 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562)))) (($ $ (-777)) 75 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ $ (-928)) 84 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (* (($ (-413 (-570)) $) NIL (|has| |#1| (-562))) (($ $ (-413 (-570))) NIL (|has| |#1| (-562))) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174))) (($ $ $) 36 (-2740 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ (-570) $) 32 (-2740 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-777) $) NIL (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-928) $) NIL (-2740 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))))
+(((-320 |#1|) (-13 (-436 |#1|) (-10 -8 (IF (|has| |#1| (-562)) (PROGN (-6 (-29 |#1|)) (-6 (-1212)) (-6 (-161)) (-6 (-635)) (-6 (-1148)) (-15 -3529 ($ $)) (-15 -2562 ((-112) $)) (-15 -1746 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -1627 ((-424 (-1182 $)) (-1182 $))) (-15 -2810 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|))) (-1109)) (T -320))
+((-3529 (*1 *1 *1) (-12 (-5 *1 (-320 *2)) (-4 *2 (-562)) (-4 *2 (-1109)))) (-2562 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-1746 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-1627 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1)) (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109)))) (-2810 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1)) (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109)))))
+(-13 (-436 |#1|) (-10 -8 (IF (|has| |#1| (-562)) (PROGN (-6 (-29 |#1|)) (-6 (-1212)) (-6 (-161)) (-6 (-635)) (-6 (-1148)) (-15 -3529 ($ $)) (-15 -2562 ((-112) $)) (-15 -1746 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -1627 ((-424 (-1182 $)) (-1182 $))) (-15 -2810 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|)))
+((-3476 (((-52) |#2| (-115) (-298 |#2|) (-650 |#2|)) 89) (((-52) |#2| (-115) (-298 |#2|) (-298 |#2|)) 85) (((-52) |#2| (-115) (-298 |#2|) |#2|) 87) (((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|) 88) (((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|))) 81) (((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|)) 83) (((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|)) 84) (((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|))) 82) (((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|)) 90) (((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|)) 86)))
+(((-321 |#1| |#2|) (-10 -7 (-15 -3476 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -3476 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3476 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3476 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -3476 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -3476 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -3476 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-562) (-620 (-542))) (-436 |#1|)) (T -321))
+((-3476 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-5 *6 (-650 *3)) (-4 *3 (-436 *7)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *7 *3)))) (-3476 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *3)))) (-3476 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *3)))) (-3476 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-298 *5)) (-5 *4 (-115)) (-4 *5 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *5)))) (-3476 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-115))) (-5 *6 (-650 (-298 *8))) (-4 *8 (-436 *7)) (-5 *5 (-298 *8)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *7 *8)))) (-3476 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7)) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *7)))) (-3476 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-650 (-298 *8))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *8)) (-5 *6 (-650 *8)) (-4 *8 (-436 *7)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *7 *8)))) (-3476 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7)) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *7)))) (-3476 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-650 *7)) (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *6 *7)))) (-3476 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-298 *6)) (-5 *4 (-115)) (-4 *6 (-436 *5)) (-4 *5 (-13 (-562) (-620 (-542)))) (-5 *2 (-52)) (-5 *1 (-321 *5 *6)))))
+(-10 -7 (-15 -3476 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -3476 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3476 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3476 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -3476 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -3476 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -3476 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|))))
+((-3792 (((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168)) 67) (((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570)) 68) (((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168)) 64) (((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570)) 65)) (-3450 (((-1 (-227) (-227)) (-227)) 66)))
+(((-322) (-10 -7 (-15 -3450 ((-1 (-227) (-227)) (-227))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))) (T -322))
+((-3792 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570)) (-5 *8 (-1168)) (-5 *2 (-1222 (-933))) (-5 *1 (-322)))) (-3792 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570)) (-5 *2 (-1222 (-933))) (-5 *1 (-322)))) (-3792 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *7 (-1168)) (-5 *2 (-1222 (-933))) (-5 *1 (-322)))) (-3792 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *2 (-1222 (-933))) (-5 *1 (-322)))) (-3450 (*1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
+(-10 -7 (-15 -3450 ((-1 (-227) (-227)) (-227))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -3792 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 26)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 20)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) 36)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) 16)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-3722 (($ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) NIL)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1825 (((-413 (-570)) $) 17)) (-2004 (($ (-1262 |#1| |#2| |#3|)) 11)) (-3011 (((-1262 |#1| |#2| |#3|) $) 12)) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-3221 (((-413 (-570)) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 10)) (-3735 (((-868) $) 42) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) 34)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) NIL)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 28)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 37)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-323 |#1| |#2| |#3|) (-13 (-1258 |#1|) (-798) (-10 -8 (-15 -2004 ($ (-1262 |#1| |#2| |#3|))) (-15 -3011 ((-1262 |#1| |#2| |#3|) $)) (-15 -1825 ((-413 (-570)) $)))) (-368) (-1186) |#1|) (T -323))
+((-2004 (*1 *1 *2) (-12 (-5 *2 (-1262 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-323 *3 *4 *5)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1262 *3 *4 *5)) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186)) (-14 *5 *3))) (-1825 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186)) (-14 *5 *3))))
+(-13 (-1258 |#1|) (-798) (-10 -8 (-15 -2004 ($ (-1262 |#1| |#2| |#3|))) (-15 -3011 ((-1262 |#1| |#2| |#3|) $)) (-15 -1825 ((-413 (-570)) $))))
+((-2665 (((-2 (|:| -3011 (-777)) (|:| -1442 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777)) 35)) (-2635 (((-650 (-2 (|:| -1442 (-777)) (|:| |logand| |#1|))) (-424 |#1|)) 40)))
+(((-324 |#1|) (-10 -7 (-15 -2665 ((-2 (|:| -3011 (-777)) (|:| -1442 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2635 ((-650 (-2 (|:| -1442 (-777)) (|:| |logand| |#1|))) (-424 |#1|)))) (-562)) (T -324))
+((-2635 (*1 *2 *3) (-12 (-5 *3 (-424 *4)) (-4 *4 (-562)) (-5 *2 (-650 (-2 (|:| -1442 (-777)) (|:| |logand| *4)))) (-5 *1 (-324 *4)))) (-2665 (*1 *2 *3 *4) (-12 (-5 *3 (-424 *5)) (-4 *5 (-562)) (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *5) (|:| |radicand| (-650 *5)))) (-5 *1 (-324 *5)) (-5 *4 (-777)))))
+(-10 -7 (-15 -2665 ((-2 (|:| -3011 (-777)) (|:| -1442 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2635 ((-650 (-2 (|:| -1442 (-777)) (|:| |logand| |#1|))) (-424 |#1|))))
+((-1713 (((-650 |#2|) (-1182 |#4|)) 44)) (-2470 ((|#3| (-570)) 47)) (-2238 (((-1182 |#4|) (-1182 |#3|)) 30)) (-2906 (((-1182 |#4|) (-1182 |#4|) (-570)) 66)) (-3521 (((-1182 |#3|) (-1182 |#4|)) 21)) (-3221 (((-650 (-777)) (-1182 |#4|) (-650 |#2|)) 41)) (-1567 (((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|)) 35)))
+(((-325 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1567 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -3221 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1713 ((-650 |#2|) (-1182 |#4|))) (-15 -3521 ((-1182 |#3|) (-1182 |#4|))) (-15 -2238 ((-1182 |#4|) (-1182 |#3|))) (-15 -2906 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -2470 (|#3| (-570)))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|)) (T -325))
+((-2470 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1058)) (-5 *1 (-325 *4 *5 *2 *6)) (-4 *6 (-956 *2 *4 *5)))) (-2906 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 *7)) (-5 *3 (-570)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *1 (-325 *4 *5 *6 *7)))) (-2238 (*1 *2 *3) (-12 (-5 *3 (-1182 *6)) (-4 *6 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-1182 *7)) (-5 *1 (-325 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-3521 (*1 *2 *3) (-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *2 (-1182 *6)) (-5 *1 (-325 *4 *5 *6 *7)))) (-1713 (*1 *2 *3) (-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *2 (-650 *5)) (-5 *1 (-325 *4 *5 *6 *7)))) (-3221 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *8)) (-5 *4 (-650 *6)) (-4 *6 (-856)) (-4 *8 (-956 *7 *5 *6)) (-4 *5 (-799)) (-4 *7 (-1058)) (-5 *2 (-650 (-777))) (-5 *1 (-325 *5 *6 *7 *8)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 *8)) (-4 *7 (-856)) (-4 *8 (-1058)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-5 *2 (-1182 *8)) (-5 *1 (-325 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1567 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -3221 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1713 ((-650 |#2|) (-1182 |#4|))) (-15 -3521 ((-1182 |#3|) (-1182 |#4|))) (-15 -2238 ((-1182 |#4|) (-1182 |#3|))) (-15 -2906 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -2470 (|#3| (-570))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 19)) (-3345 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-570)))) $) 21)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777) $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3243 ((|#1| $ (-570)) NIL)) (-3671 (((-570) $ (-570)) NIL)) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3484 (($ (-1 |#1| |#1|) $) NIL)) (-2445 (($ (-1 (-570) (-570)) $) 11)) (-4268 (((-1168) $) NIL)) (-3046 (($ $ $) NIL (|has| (-570) (-798)))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1983 (((-570) |#1| $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) 29 (|has| |#1| (-856)))) (-2965 (($ $) 12) (($ $ $) 28)) (-2953 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL) (($ (-570) |#1|) 27)))
(((-326 |#1|) (-13 (-21) (-723 (-570)) (-327 |#1| (-570)) (-10 -7 (IF (|has| |#1| (-856)) (-6 (-856)) |%noBranch|))) (-1109)) (T -326))
NIL
(-13 (-21) (-723 (-570)) (-327 |#1| (-570)) (-10 -7 (IF (|has| |#1| (-856)) (-6 (-856)) |%noBranch|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-2230 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $) 28)) (-3596 (((-3 $ "failed") $ $) 20)) (-3403 (((-777) $) 29)) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 33)) (-3080 ((|#1| $) 34)) (-2530 ((|#1| $ (-570)) 26)) (-2896 ((|#2| $ (-570)) 27)) (-2553 (($ (-1 |#1| |#1|) $) 23)) (-1644 (($ (-1 |#2| |#2|) $) 24)) (-1903 (((-1168) $) 10)) (-3296 (($ $ $) 22 (|has| |#2| (-798)))) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ |#1|) 32)) (-1715 ((|#2| |#1| $) 25)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2954 (($ $ $) 15) (($ |#1| $) 31)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ |#2| |#1|) 30)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3345 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))) $) 28)) (-4119 (((-3 $ "failed") $ $) 20)) (-3403 (((-777) $) 29)) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 33)) (-3080 ((|#1| $) 34)) (-3243 ((|#1| $ (-570)) 26)) (-3671 ((|#2| $ (-570)) 27)) (-3484 (($ (-1 |#1| |#1|) $) 23)) (-2445 (($ (-1 |#2| |#2|) $) 24)) (-4268 (((-1168) $) 10)) (-3046 (($ $ $) 22 (|has| |#2| (-798)))) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ |#1|) 32)) (-1983 ((|#2| |#1| $) 25)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2953 (($ $ $) 15) (($ |#1| $) 31)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ |#2| |#1|) 30)))
(((-327 |#1| |#2|) (-141) (-1109) (-132)) (T -327))
-((-2954 (*1 *1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132)))) (-3403 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-777)))) (-2230 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4)))))) (-2896 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109)) (-4 *2 (-132)))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *2 *4)) (-4 *4 (-132)) (-4 *2 (-1109)))) (-1715 (*1 *2 *3 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132)))) (-1644 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-2553 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-3296 (*1 *1 *1 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132)) (-4 *3 (-798)))))
-(-13 (-132) (-1047 |t#1|) (-10 -8 (-15 -2954 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3403 ((-777) $)) (-15 -2230 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4387 |t#2|))) $)) (-15 -2896 (|t#2| $ (-570))) (-15 -2530 (|t#1| $ (-570))) (-15 -1715 (|t#2| |t#1| $)) (-15 -1644 ($ (-1 |t#2| |t#2|) $)) (-15 -2553 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-798)) (-15 -3296 ($ $ $)) |%noBranch|)))
+((-2953 (*1 *1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132)))) (-3403 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-777)))) (-3345 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 *4)))))) (-3671 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109)) (-4 *2 (-132)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *2 *4)) (-4 *4 (-132)) (-4 *2 (-1109)))) (-1983 (*1 *2 *3 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132)))) (-2445 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-3484 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-3046 (*1 *1 *1 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132)) (-4 *3 (-798)))))
+(-13 (-132) (-1047 |t#1|) (-10 -8 (-15 -2953 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3403 ((-777) $)) (-15 -3345 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4388 |t#2|))) $)) (-15 -3671 (|t#2| $ (-570))) (-15 -3243 (|t#1| $ (-570))) (-15 -1983 (|t#2| |t#1| $)) (-15 -2445 ($ (-1 |t#2| |t#2|) $)) (-15 -3484 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-798)) (-15 -3046 ($ $ $)) |%noBranch|)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-1047 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-2230 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777) $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2530 ((|#1| $ (-570)) NIL)) (-2896 (((-777) $ (-570)) NIL)) (-2553 (($ (-1 |#1| |#1|) $) NIL)) (-1644 (($ (-1 (-777) (-777)) $) NIL)) (-1903 (((-1168) $) NIL)) (-3296 (($ $ $) NIL (|has| (-777) (-798)))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1715 (((-777) |#1| $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2954 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-777) |#1|) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3345 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-777)))) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777) $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3243 ((|#1| $ (-570)) NIL)) (-3671 (((-777) $ (-570)) NIL)) (-3484 (($ (-1 |#1| |#1|) $) NIL)) (-2445 (($ (-1 (-777) (-777)) $) NIL)) (-4268 (((-1168) $) NIL)) (-3046 (($ $ $) NIL (|has| (-777) (-798)))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1983 (((-777) |#1| $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2953 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-777) |#1|) NIL)))
(((-328 |#1|) (-327 |#1| (-777)) (-1109)) (T -328))
NIL
(-327 |#1| (-777))
-((-3543 (($ $) 72)) (-3007 (($ $ |#2| |#3| $) 14)) (-4414 (($ (-1 |#3| |#3|) $) 51)) (-1834 (((-112) $) 42)) (-1842 ((|#2| $) 44)) (-2407 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 64)) (-3030 ((|#2| $) 68)) (-3009 (((-650 |#2|) $) 56)) (-3644 (($ $ $ (-777)) 37)) (-2975 (($ $ |#2|) 60)))
-(((-329 |#1| |#2| |#3|) (-10 -8 (-15 -3543 (|#1| |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3644 (|#1| |#1| |#1| (-777))) (-15 -3007 (|#1| |#1| |#2| |#3| |#1|)) (-15 -4414 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3009 ((-650 |#2|) |#1|)) (-15 -1842 (|#2| |#1|)) (-15 -1834 ((-112) |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2975 (|#1| |#1| |#2|))) (-330 |#2| |#3|) (-1058) (-798)) (T -329))
+((-1767 (($ $) 72)) (-3382 (($ $ |#2| |#3| $) 14)) (-2206 (($ (-1 |#3| |#3|) $) 51)) (-1835 (((-112) $) 42)) (-1846 ((|#2| $) 44)) (-2406 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 64)) (-3621 ((|#2| $) 68)) (-3405 (((-650 |#2|) $) 56)) (-3340 (($ $ $ (-777)) 37)) (-2975 (($ $ |#2|) 60)))
+(((-329 |#1| |#2| |#3|) (-10 -8 (-15 -1767 (|#1| |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3340 (|#1| |#1| |#1| (-777))) (-15 -3382 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2206 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3405 ((-650 |#2|) |#1|)) (-15 -1846 (|#2| |#1|)) (-15 -1835 ((-112) |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2975 (|#1| |#1| |#2|))) (-330 |#2| |#3|) (-1058) (-798)) (T -329))
NIL
-(-10 -8 (-15 -3543 (|#1| |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3644 (|#1| |#1| |#1| (-777))) (-15 -3007 (|#1| |#1| |#2| |#3| |#1|)) (-15 -4414 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3009 ((-650 |#2|) |#1|)) (-15 -1842 (|#2| |#1|)) (-15 -1834 ((-112) |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2975 (|#1| |#1| |#2|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 98 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 95)) (-3080 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 97 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 96)) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-3543 (($ $) 84 (|has| |#1| (-458)))) (-3007 (($ $ |#1| |#2| $) 88)) (-2081 (((-112) $) 35)) (-3797 (((-777) $) 91)) (-1550 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73)) (-4341 ((|#2| $) 90)) (-4414 (($ (-1 |#2| |#2|) $) 89)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1834 (((-112) $) 94)) (-1842 ((|#1| $) 93)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 86 (|has| |#1| (-562)))) (-1601 ((|#2| $) 76)) (-3030 ((|#1| $) 85 (|has| |#1| (-458)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59) (($ (-413 (-570))) 69 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-3009 (((-650 |#1|) $) 92)) (-1715 ((|#1| $ |#2|) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-3644 (($ $ $ (-777)) 87 (|has| |#1| (-174)))) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(-10 -8 (-15 -1767 (|#1| |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3340 (|#1| |#1| |#1| (-777))) (-15 -3382 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2206 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3405 ((-650 |#2|) |#1|)) (-15 -1846 (|#2| |#1|)) (-15 -1835 ((-112) |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2975 (|#1| |#1| |#2|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 98 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 95)) (-3080 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 97 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 96)) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-1767 (($ $) 84 (|has| |#1| (-458)))) (-3382 (($ $ |#1| |#2| $) 88)) (-4340 (((-112) $) 35)) (-2292 (((-777) $) 91)) (-4016 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73)) (-2730 ((|#2| $) 90)) (-2206 (($ (-1 |#2| |#2|) $) 89)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1835 (((-112) $) 94)) (-1846 ((|#1| $) 93)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 86 (|has| |#1| (-562)))) (-3221 ((|#2| $) 76)) (-3621 ((|#1| $) 85 (|has| |#1| (-458)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59) (($ (-413 (-570))) 69 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-3405 (((-650 |#1|) $) 92)) (-1983 ((|#1| $ |#2|) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3340 (($ $ $ (-777)) 87 (|has| |#1| (-174)))) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
(((-330 |#1| |#2|) (-141) (-1058) (-798)) (T -330))
-((-1834 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-1842 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-3009 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-650 *3)))) (-3797 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-777)))) (-4341 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-4414 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-3007 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-3644 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *3 (-174)))) (-2407 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-562)))) (-3030 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-3543 (*1 *1 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-458)))))
-(-13 (-47 |t#1| |t#2|) (-417 |t#1|) (-10 -8 (-15 -1834 ((-112) $)) (-15 -1842 (|t#1| $)) (-15 -3009 ((-650 |t#1|) $)) (-15 -3797 ((-777) $)) (-15 -4341 (|t#2| $)) (-15 -4414 ($ (-1 |t#2| |t#2|) $)) (-15 -3007 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-174)) (-15 -3644 ($ $ $ (-777))) |%noBranch|) (IF (|has| |t#1| (-562)) (-15 -2407 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -3030 (|t#1| $)) (-15 -3543 ($ $))) |%noBranch|)))
+((-1835 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-1846 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-3405 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-650 *3)))) (-2292 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-777)))) (-2730 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-2206 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-3382 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-3340 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *3 (-174)))) (-2406 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-562)))) (-3621 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-1767 (*1 *1 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-458)))))
+(-13 (-47 |t#1| |t#2|) (-417 |t#1|) (-10 -8 (-15 -1835 ((-112) $)) (-15 -1846 (|t#1| $)) (-15 -3405 ((-650 |t#1|) $)) (-15 -2292 ((-777) $)) (-15 -2730 (|t#2| $)) (-15 -2206 ($ (-1 |t#2| |t#2|) $)) (-15 -3382 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-174)) (-15 -3340 ($ $ $ (-777))) |%noBranch|) (IF (|has| |t#1| (-562)) (-15 -2406 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -3621 (|t#1| $)) (-15 -1767 ($ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-294) |has| |#1| (-562)) ((-417 |#1|) . T) ((-562) |has| |#1| (-562)) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-2399 (((-112) (-112)) NIL)) (-3895 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) |#1|) $) NIL)) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-2208 (($ $) NIL (|has| |#1| (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3913 (($ $ (-570)) NIL)) (-2606 (((-777) $) NIL)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-2190 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2278 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2666 (($ (-650 |#1|)) NIL)) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-1882 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) NIL)) (-2850 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-331 |#1|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2666 ($ (-650 |#1|))) (-15 -2606 ((-777) $)) (-15 -3913 ($ $ (-570))) (-15 -2399 ((-112) (-112))))) (-1226)) (T -331))
-((-2666 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-331 *3)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-331 *3)) (-4 *3 (-1226)))) (-3913 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-331 *3)) (-4 *3 (-1226)))) (-2399 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1226)))))
-(-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2666 ($ (-650 |#1|))) (-15 -2606 ((-777) $)) (-15 -3913 ($ $ (-570))) (-15 -2399 ((-112) (-112)))))
-((-2980 (((-112) $) 50)) (-2412 (((-777)) 26)) (-3071 ((|#2| $) 54) (($ $ (-928)) 124)) (-3403 (((-777)) 125)) (-2049 (($ (-1276 |#2|)) 23)) (-3088 (((-112) $) 138)) (-2610 ((|#2| $) 56) (($ $ (-928)) 121)) (-1638 (((-1182 |#2|) $) NIL) (((-1182 $) $ (-928)) 112)) (-3587 (((-1182 |#2|) $) 98)) (-1726 (((-1182 |#2|) $) 94) (((-3 (-1182 |#2|) "failed") $ $) 91)) (-3609 (($ $ (-1182 |#2|)) 62)) (-3916 (((-839 (-928))) 33) (((-928)) 51)) (-2184 (((-135)) 30)) (-1601 (((-839 (-928)) $) 35) (((-928) $) 141)) (-3046 (($) 131)) (-1807 (((-1276 |#2|) $) NIL) (((-695 |#2|) (-1276 $)) 45)) (-1918 (($ $) NIL) (((-3 $ "failed") $) 101)) (-2663 (((-112) $) 48)))
-(((-332 |#1| |#2|) (-10 -8 (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -3403 ((-777))) (-15 -1918 (|#1| |#1|)) (-15 -1726 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -1726 ((-1182 |#2|) |#1|)) (-15 -3587 ((-1182 |#2|) |#1|)) (-15 -3609 (|#1| |#1| (-1182 |#2|))) (-15 -3088 ((-112) |#1|)) (-15 -3046 (|#1|)) (-15 -3071 (|#1| |#1| (-928))) (-15 -2610 (|#1| |#1| (-928))) (-15 -1638 ((-1182 |#1|) |#1| (-928))) (-15 -3071 (|#2| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -1601 ((-928) |#1|)) (-15 -3916 ((-928))) (-15 -1638 ((-1182 |#2|) |#1|)) (-15 -2049 (|#1| (-1276 |#2|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -2412 ((-777))) (-15 -3916 ((-839 (-928)))) (-15 -1601 ((-839 (-928)) |#1|)) (-15 -2980 ((-112) |#1|)) (-15 -2663 ((-112) |#1|)) (-15 -2184 ((-135)))) (-333 |#2|) (-368)) (T -332))
-((-2184 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-135)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-3916 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-839 (-928))) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-2412 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-3916 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-928)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-3403 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))))
-(-10 -8 (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -3403 ((-777))) (-15 -1918 (|#1| |#1|)) (-15 -1726 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -1726 ((-1182 |#2|) |#1|)) (-15 -3587 ((-1182 |#2|) |#1|)) (-15 -3609 (|#1| |#1| (-1182 |#2|))) (-15 -3088 ((-112) |#1|)) (-15 -3046 (|#1|)) (-15 -3071 (|#1| |#1| (-928))) (-15 -2610 (|#1| |#1| (-928))) (-15 -1638 ((-1182 |#1|) |#1| (-928))) (-15 -3071 (|#2| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -1601 ((-928) |#1|)) (-15 -3916 ((-928))) (-15 -1638 ((-1182 |#2|) |#1|)) (-15 -2049 (|#1| (-1276 |#2|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -2412 ((-777))) (-15 -3916 ((-839 (-928)))) (-15 -1601 ((-839 (-928)) |#1|)) (-15 -2980 ((-112) |#1|)) (-15 -2663 ((-112) |#1|)) (-15 -2184 ((-135))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-2980 (((-112) $) 104)) (-2412 (((-777)) 100)) (-3071 ((|#1| $) 150) (($ $ (-928)) 147 (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) 132 (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-4339 (((-112) $ $) 65)) (-3403 (((-777)) 122 (|has| |#1| (-373)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 111)) (-3080 ((|#1| $) 112)) (-2049 (($ (-1276 |#1|)) 156)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 138 (|has| |#1| (-373)))) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-3336 (($) 119 (|has| |#1| (-373)))) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-2493 (($) 134 (|has| |#1| (-373)))) (-2036 (((-112) $) 135 (|has| |#1| (-373)))) (-2774 (($ $ (-777)) 97 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) 79)) (-3157 (((-928) $) 137 (|has| |#1| (-373))) (((-839 (-928)) $) 94 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) 35)) (-1484 (($) 145 (|has| |#1| (-373)))) (-3088 (((-112) $) 144 (|has| |#1| (-373)))) (-2610 ((|#1| $) 151) (($ $ (-928)) 148 (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) 123 (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1638 (((-1182 |#1|) $) 155) (((-1182 $) $ (-928)) 149 (|has| |#1| (-373)))) (-2367 (((-928) $) 120 (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) 141 (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) 140 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 139 (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) 142 (|has| |#1| (-373)))) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-2314 (($) 124 (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) 121 (|has| |#1| (-373)))) (-2289 (((-112) $) 103)) (-3479 (((-1129) $) 11)) (-2339 (($) 143 (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 131 (|has| |#1| (-373)))) (-3738 (((-424 $) $) 82)) (-3916 (((-839 (-928))) 101) (((-928)) 153)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-2845 (((-777) $) 136 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 95 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) 109)) (-3447 (($ $) 128 (|has| |#1| (-373))) (($ $ (-777)) 126 (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) 102) (((-928) $) 152)) (-2886 (((-1182 |#1|)) 154)) (-2163 (($) 133 (|has| |#1| (-373)))) (-3046 (($) 146 (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) 158) (((-695 |#1|) (-1276 $)) 157)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 130 (|has| |#1| (-373)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-1918 (($ $) 129 (|has| |#1| (-373))) (((-3 $ "failed") $) 93 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-2331 (((-1276 $)) 160) (((-1276 $) (-928)) 159)) (-1681 (((-112) $ $) 45)) (-2663 (((-112) $) 105)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-3741 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-2791 (($ $) 127 (|has| |#1| (-373))) (($ $ (-777)) 125 (|has| |#1| (-373)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73) (($ $ |#1|) 108)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-1445 (((-112) (-112)) NIL)) (-3894 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) |#1|) $) NIL)) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3092 (($ $) NIL (|has| |#1| (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-4094 (($ $ (-570)) NIL)) (-2725 (((-777) $) NIL)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-4210 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2599 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2076 (($ (-650 |#1|)) NIL)) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4052 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) NIL)) (-3214 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-331 |#1|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2076 ($ (-650 |#1|))) (-15 -2725 ((-777) $)) (-15 -4094 ($ $ (-570))) (-15 -1445 ((-112) (-112))))) (-1227)) (T -331))
+((-2076 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-331 *3)))) (-2725 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))) (-4094 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))) (-1445 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))))
+(-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2076 ($ (-650 |#1|))) (-15 -2725 ((-777) $)) (-15 -4094 ($ $ (-570))) (-15 -1445 ((-112) (-112)))))
+((-3096 (((-112) $) 50)) (-1566 (((-777)) 26)) (-3071 ((|#2| $) 54) (($ $ (-928)) 124)) (-3403 (((-777)) 125)) (-2125 (($ (-1277 |#2|)) 23)) (-2888 (((-112) $) 138)) (-2771 ((|#2| $) 56) (($ $ (-928)) 121)) (-2399 (((-1182 |#2|) $) NIL) (((-1182 $) $ (-928)) 112)) (-4044 (((-1182 |#2|) $) 98)) (-2070 (((-1182 |#2|) $) 94) (((-3 (-1182 |#2|) "failed") $ $) 91)) (-4258 (($ $ (-1182 |#2|)) 62)) (-4118 (((-839 (-928))) 33) (((-928)) 51)) (-4154 (((-135)) 30)) (-3221 (((-839 (-928)) $) 35) (((-928) $) 141)) (-2520 (($) 131)) (-1533 (((-1277 |#2|) $) NIL) (((-695 |#2|) (-1277 $)) 45)) (-3127 (($ $) NIL) (((-3 $ "failed") $) 101)) (-2048 (((-112) $) 48)))
+(((-332 |#1| |#2|) (-10 -8 (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -3403 ((-777))) (-15 -3127 (|#1| |#1|)) (-15 -2070 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -2070 ((-1182 |#2|) |#1|)) (-15 -4044 ((-1182 |#2|) |#1|)) (-15 -4258 (|#1| |#1| (-1182 |#2|))) (-15 -2888 ((-112) |#1|)) (-15 -2520 (|#1|)) (-15 -3071 (|#1| |#1| (-928))) (-15 -2771 (|#1| |#1| (-928))) (-15 -2399 ((-1182 |#1|) |#1| (-928))) (-15 -3071 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -3221 ((-928) |#1|)) (-15 -4118 ((-928))) (-15 -2399 ((-1182 |#2|) |#1|)) (-15 -2125 (|#1| (-1277 |#2|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -1566 ((-777))) (-15 -4118 ((-839 (-928)))) (-15 -3221 ((-839 (-928)) |#1|)) (-15 -3096 ((-112) |#1|)) (-15 -2048 ((-112) |#1|)) (-15 -4154 ((-135)))) (-333 |#2|) (-368)) (T -332))
+((-4154 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-135)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-4118 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-839 (-928))) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-1566 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-4118 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-928)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-3403 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))))
+(-10 -8 (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -3403 ((-777))) (-15 -3127 (|#1| |#1|)) (-15 -2070 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -2070 ((-1182 |#2|) |#1|)) (-15 -4044 ((-1182 |#2|) |#1|)) (-15 -4258 (|#1| |#1| (-1182 |#2|))) (-15 -2888 ((-112) |#1|)) (-15 -2520 (|#1|)) (-15 -3071 (|#1| |#1| (-928))) (-15 -2771 (|#1| |#1| (-928))) (-15 -2399 ((-1182 |#1|) |#1| (-928))) (-15 -3071 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -3221 ((-928) |#1|)) (-15 -4118 ((-928))) (-15 -2399 ((-1182 |#2|) |#1|)) (-15 -2125 (|#1| (-1277 |#2|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -1566 ((-777))) (-15 -4118 ((-839 (-928)))) (-15 -3221 ((-839 (-928)) |#1|)) (-15 -3096 ((-112) |#1|)) (-15 -2048 ((-112) |#1|)) (-15 -4154 ((-135))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-3096 (((-112) $) 104)) (-1566 (((-777)) 100)) (-3071 ((|#1| $) 150) (($ $ (-928)) 147 (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) 132 (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-2707 (((-112) $ $) 65)) (-3403 (((-777)) 122 (|has| |#1| (-373)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 111)) (-3080 ((|#1| $) 112)) (-2125 (($ (-1277 |#1|)) 156)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 138 (|has| |#1| (-373)))) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-3336 (($) 119 (|has| |#1| (-373)))) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4181 (($) 134 (|has| |#1| (-373)))) (-2006 (((-112) $) 135 (|has| |#1| (-373)))) (-1901 (($ $ (-777)) 97 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) 79)) (-4331 (((-928) $) 137 (|has| |#1| (-373))) (((-839 (-928)) $) 94 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) 35)) (-1518 (($) 145 (|has| |#1| (-373)))) (-2888 (((-112) $) 144 (|has| |#1| (-373)))) (-2771 ((|#1| $) 151) (($ $ (-928)) 148 (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) 123 (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-2399 (((-1182 |#1|) $) 155) (((-1182 $) $ (-928)) 149 (|has| |#1| (-373)))) (-2332 (((-928) $) 120 (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) 141 (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) 140 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 139 (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) 142 (|has| |#1| (-373)))) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-2315 (($) 124 (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) 121 (|has| |#1| (-373)))) (-2699 (((-112) $) 103)) (-3479 (((-1129) $) 11)) (-2340 (($) 143 (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 131 (|has| |#1| (-373)))) (-3739 (((-424 $) $) 82)) (-4118 (((-839 (-928))) 101) (((-928)) 153)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3156 (((-777) $) 136 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 95 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) 109)) (-3447 (($ $) 128 (|has| |#1| (-373))) (($ $ (-777)) 126 (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) 102) (((-928) $) 152)) (-3597 (((-1182 |#1|)) 154)) (-3929 (($) 133 (|has| |#1| (-373)))) (-2520 (($) 146 (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) 158) (((-695 |#1|) (-1277 $)) 157)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 130 (|has| |#1| (-373)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-3127 (($ $) 129 (|has| |#1| (-373))) (((-3 $ "failed") $) 93 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2003 (((-1277 $)) 160) (((-1277 $) (-928)) 159)) (-2795 (((-112) $ $) 45)) (-2048 (((-112) $) 105)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2984 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-2791 (($ $) 127 (|has| |#1| (-373))) (($ $ (-777)) 125 (|has| |#1| (-373)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73) (($ $ |#1|) 108)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
(((-333 |#1|) (-141) (-368)) (T -333))
-((-2331 (*1 *2) (-12 (-4 *3 (-368)) (-5 *2 (-1276 *1)) (-4 *1 (-333 *3)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-368)) (-5 *2 (-1276 *1)) (-4 *1 (-333 *4)))) (-1807 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1276 *3)))) (-1807 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-333 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4)))) (-2049 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-368)) (-4 *1 (-333 *3)))) (-1638 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-2886 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-3916 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-2610 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-1638 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-4 *4 (-373)) (-4 *4 (-368)) (-5 *2 (-1182 *1)) (-4 *1 (-333 *4)))) (-2610 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-3071 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-3046 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-1484 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-3088 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112)))) (-2339 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-3609 (*1 *1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3)) (-4 *3 (-368)))) (-3587 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-1726 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))))
-(-13 (-1295 |t#1|) (-1047 |t#1|) (-10 -8 (-15 -2331 ((-1276 $))) (-15 -2331 ((-1276 $) (-928))) (-15 -1807 ((-1276 |t#1|) $)) (-15 -1807 ((-695 |t#1|) (-1276 $))) (-15 -2049 ($ (-1276 |t#1|))) (-15 -1638 ((-1182 |t#1|) $)) (-15 -2886 ((-1182 |t#1|))) (-15 -3916 ((-928))) (-15 -1601 ((-928) $)) (-15 -2610 (|t#1| $)) (-15 -3071 (|t#1| $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-354)) (-15 -1638 ((-1182 $) $ (-928))) (-15 -2610 ($ $ (-928))) (-15 -3071 ($ $ (-928))) (-15 -3046 ($)) (-15 -1484 ($)) (-15 -3088 ((-112) $)) (-15 -2339 ($)) (-15 -3609 ($ $ (-1182 |t#1|))) (-15 -3587 ((-1182 |t#1|) $)) (-15 -1726 ((-1182 |t#1|) $)) (-15 -1726 ((-3 (-1182 |t#1|) "failed") $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-235) |has| |#1| (-373)) ((-245) . T) ((-294) . T) ((-311) . T) ((-1295 |#1|) . T) ((-368) . T) ((-408) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-373) |has| |#1| (-373)) ((-354) |has| |#1| (-373)) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 |#1|) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-373)) ((-1230) . T) ((-1283 |#1|) . T))
-((-2416 (((-112) $ $) NIL)) (-4261 (($ (-1185) $) 100)) (-4127 (($) 89)) (-2498 (((-1129) (-1129)) 9)) (-1768 (($) 90)) (-2290 (($) 104) (($ (-320 (-705))) 112) (($ (-320 (-707))) 108) (($ (-320 (-700))) 116) (($ (-320 (-384))) 123) (($ (-320 (-570))) 119) (($ (-320 (-171 (-384)))) 127)) (-3281 (($ (-1185) $) 101)) (-4072 (($ (-650 (-868))) 91)) (-1554 (((-1281) $) 87)) (-2887 (((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) 33)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1940 (($ (-1129)) 58)) (-2210 (((-1113) $) 30)) (-1615 (($ (-1101 (-959 (-570))) $) 97) (($ (-1101 (-959 (-570))) (-959 (-570)) $) 98)) (-3285 (($ (-1129)) 99)) (-1335 (($ (-1185) $) 129) (($ (-1185) $ $) 130)) (-3318 (($ (-1186) (-650 (-1186))) 88)) (-3711 (($ (-1168)) 94) (($ (-650 (-1168))) 92)) (-3735 (((-868) $) 132)) (-3136 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3329 (-112)) (|:| -2195 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -3758 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3517 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3517 $))) (|:| |commonBranch| (-2 (|:| -3503 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $) 50)) (-2274 (($ (-1168)) 202)) (-4031 (($ (-650 $)) 128)) (-1859 (((-112) $ $) NIL)) (-4156 (($ (-1186) (-1168)) 135) (($ (-1186) (-320 (-707))) 175) (($ (-1186) (-320 (-705))) 176) (($ (-1186) (-320 (-700))) 177) (($ (-1186) (-695 (-707))) 138) (($ (-1186) (-695 (-705))) 141) (($ (-1186) (-695 (-700))) 144) (($ (-1186) (-1276 (-707))) 147) (($ (-1186) (-1276 (-705))) 150) (($ (-1186) (-1276 (-700))) 153) (($ (-1186) (-695 (-320 (-707)))) 156) (($ (-1186) (-695 (-320 (-705)))) 159) (($ (-1186) (-695 (-320 (-700)))) 162) (($ (-1186) (-1276 (-320 (-707)))) 165) (($ (-1186) (-1276 (-320 (-705)))) 168) (($ (-1186) (-1276 (-320 (-700)))) 171) (($ (-1186) (-650 (-959 (-570))) (-320 (-707))) 172) (($ (-1186) (-650 (-959 (-570))) (-320 (-705))) 173) (($ (-1186) (-650 (-959 (-570))) (-320 (-700))) 174) (($ (-1186) (-320 (-570))) 199) (($ (-1186) (-320 (-384))) 200) (($ (-1186) (-320 (-171 (-384)))) 201) (($ (-1186) (-695 (-320 (-570)))) 180) (($ (-1186) (-695 (-320 (-384)))) 183) (($ (-1186) (-695 (-320 (-171 (-384))))) 186) (($ (-1186) (-1276 (-320 (-570)))) 189) (($ (-1186) (-1276 (-320 (-384)))) 192) (($ (-1186) (-1276 (-320 (-171 (-384))))) 195) (($ (-1186) (-650 (-959 (-570))) (-320 (-570))) 196) (($ (-1186) (-650 (-959 (-570))) (-320 (-384))) 197) (($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384)))) 198)) (-2872 (((-112) $ $) NIL)))
-(((-334) (-13 (-1109) (-10 -8 (-15 -1615 ($ (-1101 (-959 (-570))) $)) (-15 -1615 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -4261 ($ (-1185) $)) (-15 -3281 ($ (-1185) $)) (-15 -1940 ($ (-1129))) (-15 -3285 ($ (-1129))) (-15 -3711 ($ (-1168))) (-15 -3711 ($ (-650 (-1168)))) (-15 -2274 ($ (-1168))) (-15 -2290 ($)) (-15 -2290 ($ (-320 (-705)))) (-15 -2290 ($ (-320 (-707)))) (-15 -2290 ($ (-320 (-700)))) (-15 -2290 ($ (-320 (-384)))) (-15 -2290 ($ (-320 (-570)))) (-15 -2290 ($ (-320 (-171 (-384))))) (-15 -1335 ($ (-1185) $)) (-15 -1335 ($ (-1185) $ $)) (-15 -4156 ($ (-1186) (-1168))) (-15 -4156 ($ (-1186) (-320 (-707)))) (-15 -4156 ($ (-1186) (-320 (-705)))) (-15 -4156 ($ (-1186) (-320 (-700)))) (-15 -4156 ($ (-1186) (-695 (-707)))) (-15 -4156 ($ (-1186) (-695 (-705)))) (-15 -4156 ($ (-1186) (-695 (-700)))) (-15 -4156 ($ (-1186) (-1276 (-707)))) (-15 -4156 ($ (-1186) (-1276 (-705)))) (-15 -4156 ($ (-1186) (-1276 (-700)))) (-15 -4156 ($ (-1186) (-695 (-320 (-707))))) (-15 -4156 ($ (-1186) (-695 (-320 (-705))))) (-15 -4156 ($ (-1186) (-695 (-320 (-700))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-707))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-705))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-700))))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -4156 ($ (-1186) (-320 (-570)))) (-15 -4156 ($ (-1186) (-320 (-384)))) (-15 -4156 ($ (-1186) (-320 (-171 (-384))))) (-15 -4156 ($ (-1186) (-695 (-320 (-570))))) (-15 -4156 ($ (-1186) (-695 (-320 (-384))))) (-15 -4156 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-570))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-384))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-171 (-384)))))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -4031 ($ (-650 $))) (-15 -4127 ($)) (-15 -1768 ($)) (-15 -4072 ($ (-650 (-868)))) (-15 -3318 ($ (-1186) (-650 (-1186)))) (-15 -2887 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3136 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3329 (-112)) (|:| -2195 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -3758 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3517 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3517 $))) (|:| |commonBranch| (-2 (|:| -3503 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -1554 ((-1281) $)) (-15 -2210 ((-1113) $)) (-15 -2498 ((-1129) (-1129)))))) (T -334))
-((-1615 (*1 *1 *2 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *1 (-334)))) (-1615 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *3 (-959 (-570))) (-5 *1 (-334)))) (-4261 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-3281 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-1940 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3285 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3711 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-3711 (*1 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-334)))) (-2274 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-2290 (*1 *1) (-5 *1 (-334))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-334)))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-334)))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-334)))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-334)))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-334)))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-1335 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-1335 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-707))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-705))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-700))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-707))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-705))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-700))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-707))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-705))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-700))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-707)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-705)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-700)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-707)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-705)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-700)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-707))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-705))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-700))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-570))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-384))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-570)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-384)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-570)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-384)))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-570))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-384))) (-5 *1 (-334)))) (-4156 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-4031 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))) (-4127 (*1 *1) (-5 *1 (-334))) (-1768 (*1 *1) (-5 *1 (-334))) (-4072 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))) (-3318 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-334)))) (-2887 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print"))) (-5 *1 (-334)))) (-3136 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| (-334)) (|:| |elseClause| (-334)))) (|:| |returnBranch| (-2 (|:| -3329 (-112)) (|:| -2195 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 (-334))) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -3758 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3517 (-334)))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3517 (-334)))) (|:| |commonBranch| (-2 (|:| -3503 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868))))) (-5 *1 (-334)))) (-1554 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-334)))) (-2210 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))) (-2498 (*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(-13 (-1109) (-10 -8 (-15 -1615 ($ (-1101 (-959 (-570))) $)) (-15 -1615 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -4261 ($ (-1185) $)) (-15 -3281 ($ (-1185) $)) (-15 -1940 ($ (-1129))) (-15 -3285 ($ (-1129))) (-15 -3711 ($ (-1168))) (-15 -3711 ($ (-650 (-1168)))) (-15 -2274 ($ (-1168))) (-15 -2290 ($)) (-15 -2290 ($ (-320 (-705)))) (-15 -2290 ($ (-320 (-707)))) (-15 -2290 ($ (-320 (-700)))) (-15 -2290 ($ (-320 (-384)))) (-15 -2290 ($ (-320 (-570)))) (-15 -2290 ($ (-320 (-171 (-384))))) (-15 -1335 ($ (-1185) $)) (-15 -1335 ($ (-1185) $ $)) (-15 -4156 ($ (-1186) (-1168))) (-15 -4156 ($ (-1186) (-320 (-707)))) (-15 -4156 ($ (-1186) (-320 (-705)))) (-15 -4156 ($ (-1186) (-320 (-700)))) (-15 -4156 ($ (-1186) (-695 (-707)))) (-15 -4156 ($ (-1186) (-695 (-705)))) (-15 -4156 ($ (-1186) (-695 (-700)))) (-15 -4156 ($ (-1186) (-1276 (-707)))) (-15 -4156 ($ (-1186) (-1276 (-705)))) (-15 -4156 ($ (-1186) (-1276 (-700)))) (-15 -4156 ($ (-1186) (-695 (-320 (-707))))) (-15 -4156 ($ (-1186) (-695 (-320 (-705))))) (-15 -4156 ($ (-1186) (-695 (-320 (-700))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-707))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-705))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-700))))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -4156 ($ (-1186) (-320 (-570)))) (-15 -4156 ($ (-1186) (-320 (-384)))) (-15 -4156 ($ (-1186) (-320 (-171 (-384))))) (-15 -4156 ($ (-1186) (-695 (-320 (-570))))) (-15 -4156 ($ (-1186) (-695 (-320 (-384))))) (-15 -4156 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-570))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-384))))) (-15 -4156 ($ (-1186) (-1276 (-320 (-171 (-384)))))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -4156 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -4031 ($ (-650 $))) (-15 -4127 ($)) (-15 -1768 ($)) (-15 -4072 ($ (-650 (-868)))) (-15 -3318 ($ (-1186) (-650 (-1186)))) (-15 -2887 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3136 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3329 (-112)) (|:| -2195 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -3758 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3517 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3517 $))) (|:| |commonBranch| (-2 (|:| -3503 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -1554 ((-1281) $)) (-15 -2210 ((-1113) $)) (-15 -2498 ((-1129) (-1129)))))
-((-2416 (((-112) $ $) NIL)) (-3892 (((-112) $) 13)) (-2579 (($ |#1|) 10)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2590 (($ |#1|) 12)) (-3735 (((-868) $) 19)) (-1859 (((-112) $ $) NIL)) (-3091 ((|#1| $) 14)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 21)))
-(((-335 |#1|) (-13 (-856) (-10 -8 (-15 -2579 ($ |#1|)) (-15 -2590 ($ |#1|)) (-15 -3892 ((-112) $)) (-15 -3091 (|#1| $)))) (-856)) (T -335))
-((-2579 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-2590 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-3892 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))) (-3091 (*1 *2 *1) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))))
-(-13 (-856) (-10 -8 (-15 -2579 ($ |#1|)) (-15 -2590 ($ |#1|)) (-15 -3892 ((-112) $)) (-15 -3091 (|#1| $))))
-((-4223 (((-334) (-1186) (-959 (-570))) 23)) (-3041 (((-334) (-1186) (-959 (-570))) 27)) (-1456 (((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570)))) 26) (((-334) (-1186) (-959 (-570)) (-959 (-570))) 24)) (-2466 (((-334) (-1186) (-959 (-570))) 31)))
-(((-336) (-10 -7 (-15 -4223 ((-334) (-1186) (-959 (-570)))) (-15 -1456 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -1456 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -3041 ((-334) (-1186) (-959 (-570)))) (-15 -2466 ((-334) (-1186) (-959 (-570)))))) (T -336))
-((-2466 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-3041 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-1456 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-1101 (-959 (-570)))) (-5 *2 (-334)) (-5 *1 (-336)))) (-1456 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4223 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))))
-(-10 -7 (-15 -4223 ((-334) (-1186) (-959 (-570)))) (-15 -1456 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -1456 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -3041 ((-334) (-1186) (-959 (-570)))) (-15 -2466 ((-334) (-1186) (-959 (-570)))))
-((-2416 (((-112) $ $) NIL)) (-2139 (((-512) $) 20)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2109 (((-965 (-777)) $) 18)) (-2305 (((-252) $) 7)) (-3735 (((-868) $) 26)) (-1941 (((-965 (-185 (-140))) $) 16)) (-1859 (((-112) $ $) NIL)) (-4247 (((-650 (-879 (-1191) (-777))) $) 12)) (-2872 (((-112) $ $) 22)))
-(((-337) (-13 (-1109) (-10 -8 (-15 -2305 ((-252) $)) (-15 -4247 ((-650 (-879 (-1191) (-777))) $)) (-15 -2109 ((-965 (-777)) $)) (-15 -1941 ((-965 (-185 (-140))) $)) (-15 -2139 ((-512) $))))) (T -337))
-((-2305 (*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))) (-4247 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))) (-2109 (*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))) (-1941 (*1 *2 *1) (-12 (-5 *2 (-965 (-185 (-140)))) (-5 *1 (-337)))) (-2139 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
-(-13 (-1109) (-10 -8 (-15 -2305 ((-252) $)) (-15 -4247 ((-650 (-879 (-1191) (-777))) $)) (-15 -2109 ((-965 (-777)) $)) (-15 -1941 ((-965 (-185 (-140))) $)) (-15 -2139 ((-512) $))))
-((-1351 (((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|)) 33)))
-(((-338 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1351 ((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|)))) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|) (-368) (-1252 |#5|) (-1252 (-413 |#6|)) (-347 |#5| |#6| |#7|)) (T -338))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-341 *5 *6 *7 *8)) (-4 *5 (-368)) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *9 (-368)) (-4 *10 (-1252 *9)) (-4 *11 (-1252 (-413 *10))) (-5 *2 (-341 *9 *10 *11 *12)) (-5 *1 (-338 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-347 *9 *10 *11)))))
-(-10 -7 (-15 -1351 ((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|))))
-((-1738 (((-112) $) 14)))
-(((-339 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1738 ((-112) |#1|))) (-340 |#2| |#3| |#4| |#5|) (-368) (-1252 |#2|) (-1252 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -339))
-NIL
-(-10 -8 (-15 -1738 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3529 (($ $) 29)) (-1738 (((-112) $) 28)) (-1903 (((-1168) $) 10)) (-2799 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 35)) (-3479 (((-1129) $) 11)) (-2339 (((-3 |#4| "failed") $) 27)) (-2064 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 34) (($ |#4|) 33) (($ |#1| |#1|) 32) (($ |#1| |#1| (-570)) 31) (($ |#4| |#2| |#2| |#2| |#1|) 26)) (-1386 (((-2 (|:| -4251 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 30)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
-(((-340 |#1| |#2| |#3| |#4|) (-141) (-368) (-1252 |t#1|) (-1252 (-413 |t#2|)) (-347 |t#1| |t#2| |t#3|)) (T -340))
-((-2799 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-419 *4 (-413 *4) *5 *6)))) (-2064 (*1 *1 *2) (-12 (-5 *2 (-419 *4 (-413 *4) *5 *6)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-4 *3 (-368)) (-4 *1 (-340 *3 *4 *5 *6)))) (-2064 (*1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *1 (-340 *3 *4 *5 *2)) (-4 *2 (-347 *3 *4 *5)))) (-2064 (*1 *1 *2 *2) (-12 (-4 *2 (-368)) (-4 *3 (-1252 *2)) (-4 *4 (-1252 (-413 *3))) (-4 *1 (-340 *2 *3 *4 *5)) (-4 *5 (-347 *2 *3 *4)))) (-2064 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-570)) (-4 *2 (-368)) (-4 *4 (-1252 *2)) (-4 *5 (-1252 (-413 *4))) (-4 *1 (-340 *2 *4 *5 *6)) (-4 *6 (-347 *2 *4 *5)))) (-1386 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-2 (|:| -4251 (-419 *4 (-413 *4) *5 *6)) (|:| |principalPart| *6))))) (-3529 (*1 *1 *1) (-12 (-4 *1 (-340 *2 *3 *4 *5)) (-4 *2 (-368)) (-4 *3 (-1252 *2)) (-4 *4 (-1252 (-413 *3))) (-4 *5 (-347 *2 *3 *4)))) (-1738 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-112)))) (-2339 (*1 *2 *1) (|partial| -12 (-4 *1 (-340 *3 *4 *5 *2)) (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *2 (-347 *3 *4 *5)))) (-2064 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-368)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 (-413 *3))) (-4 *1 (-340 *4 *3 *5 *2)) (-4 *2 (-347 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -2799 ((-419 |t#2| (-413 |t#2|) |t#3| |t#4|) $)) (-15 -2064 ($ (-419 |t#2| (-413 |t#2|) |t#3| |t#4|))) (-15 -2064 ($ |t#4|)) (-15 -2064 ($ |t#1| |t#1|)) (-15 -2064 ($ |t#1| |t#1| (-570))) (-15 -1386 ((-2 (|:| -4251 (-419 |t#2| (-413 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -3529 ($ $)) (-15 -1738 ((-112) $)) (-15 -2339 ((-3 |t#4| "failed") $)) (-15 -2064 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+((-2003 (*1 *2) (-12 (-4 *3 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *3)))) (-2003 (*1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *4)))) (-1533 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1277 *3)))) (-1533 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-333 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4)))) (-2125 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-368)) (-4 *1 (-333 *3)))) (-2399 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-3597 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-4118 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-2399 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-4 *4 (-373)) (-4 *4 (-368)) (-5 *2 (-1182 *1)) (-4 *1 (-333 *4)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-3071 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-2520 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-1518 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-2888 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112)))) (-2340 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-4258 (*1 *1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3)) (-4 *3 (-368)))) (-4044 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-2070 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-2070 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))))
+(-13 (-1296 |t#1|) (-1047 |t#1|) (-10 -8 (-15 -2003 ((-1277 $))) (-15 -2003 ((-1277 $) (-928))) (-15 -1533 ((-1277 |t#1|) $)) (-15 -1533 ((-695 |t#1|) (-1277 $))) (-15 -2125 ($ (-1277 |t#1|))) (-15 -2399 ((-1182 |t#1|) $)) (-15 -3597 ((-1182 |t#1|))) (-15 -4118 ((-928))) (-15 -3221 ((-928) $)) (-15 -2771 (|t#1| $)) (-15 -3071 (|t#1| $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-354)) (-15 -2399 ((-1182 $) $ (-928))) (-15 -2771 ($ $ (-928))) (-15 -3071 ($ $ (-928))) (-15 -2520 ($)) (-15 -1518 ($)) (-15 -2888 ((-112) $)) (-15 -2340 ($)) (-15 -4258 ($ $ (-1182 |t#1|))) (-15 -4044 ((-1182 |t#1|) $)) (-15 -2070 ((-1182 |t#1|) $)) (-15 -2070 ((-3 (-1182 |t#1|) "failed") $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-235) |has| |#1| (-373)) ((-245) . T) ((-294) . T) ((-311) . T) ((-1296 |#1|) . T) ((-368) . T) ((-408) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-373) |has| |#1| (-373)) ((-354) |has| |#1| (-373)) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 |#1|) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-373)) ((-1231) . T) ((-1284 |#1|) . T))
+((-2417 (((-112) $ $) NIL)) (-3185 (($ (-1185) $) 100)) (-4126 (($) 89)) (-4224 (((-1129) (-1129)) 9)) (-1769 (($) 90)) (-2709 (($) 104) (($ (-320 (-705))) 112) (($ (-320 (-707))) 108) (($ (-320 (-700))) 116) (($ (-320 (-384))) 123) (($ (-320 (-570))) 119) (($ (-320 (-171 (-384)))) 127)) (-4230 (($ (-1185) $) 101)) (-2064 (($ (-650 (-868))) 91)) (-4057 (((-1282) $) 87)) (-2891 (((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) 33)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3392 (($ (-1129)) 58)) (-3110 (((-1113) $) 30)) (-3387 (($ (-1101 (-959 (-570))) $) 97) (($ (-1101 (-959 (-570))) (-959 (-570)) $) 98)) (-3285 (($ (-1129)) 99)) (-1336 (($ (-1185) $) 129) (($ (-1185) $ $) 130)) (-3318 (($ (-1186) (-650 (-1186))) 88)) (-3711 (($ (-1168)) 94) (($ (-650 (-1168))) 92)) (-3735 (((-868) $) 132)) (-3136 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3366 (-112)) (|:| -2196 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1990 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3515 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3515 $))) (|:| |commonBranch| (-2 (|:| -3504 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $) 50)) (-2275 (($ (-1168)) 202)) (-2776 (($ (-650 $)) 128)) (-3866 (((-112) $ $) NIL)) (-1603 (($ (-1186) (-1168)) 135) (($ (-1186) (-320 (-707))) 175) (($ (-1186) (-320 (-705))) 176) (($ (-1186) (-320 (-700))) 177) (($ (-1186) (-695 (-707))) 138) (($ (-1186) (-695 (-705))) 141) (($ (-1186) (-695 (-700))) 144) (($ (-1186) (-1277 (-707))) 147) (($ (-1186) (-1277 (-705))) 150) (($ (-1186) (-1277 (-700))) 153) (($ (-1186) (-695 (-320 (-707)))) 156) (($ (-1186) (-695 (-320 (-705)))) 159) (($ (-1186) (-695 (-320 (-700)))) 162) (($ (-1186) (-1277 (-320 (-707)))) 165) (($ (-1186) (-1277 (-320 (-705)))) 168) (($ (-1186) (-1277 (-320 (-700)))) 171) (($ (-1186) (-650 (-959 (-570))) (-320 (-707))) 172) (($ (-1186) (-650 (-959 (-570))) (-320 (-705))) 173) (($ (-1186) (-650 (-959 (-570))) (-320 (-700))) 174) (($ (-1186) (-320 (-570))) 199) (($ (-1186) (-320 (-384))) 200) (($ (-1186) (-320 (-171 (-384)))) 201) (($ (-1186) (-695 (-320 (-570)))) 180) (($ (-1186) (-695 (-320 (-384)))) 183) (($ (-1186) (-695 (-320 (-171 (-384))))) 186) (($ (-1186) (-1277 (-320 (-570)))) 189) (($ (-1186) (-1277 (-320 (-384)))) 192) (($ (-1186) (-1277 (-320 (-171 (-384))))) 195) (($ (-1186) (-650 (-959 (-570))) (-320 (-570))) 196) (($ (-1186) (-650 (-959 (-570))) (-320 (-384))) 197) (($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384)))) 198)) (-2872 (((-112) $ $) NIL)))
+(((-334) (-13 (-1109) (-10 -8 (-15 -3387 ($ (-1101 (-959 (-570))) $)) (-15 -3387 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -3185 ($ (-1185) $)) (-15 -4230 ($ (-1185) $)) (-15 -3392 ($ (-1129))) (-15 -3285 ($ (-1129))) (-15 -3711 ($ (-1168))) (-15 -3711 ($ (-650 (-1168)))) (-15 -2275 ($ (-1168))) (-15 -2709 ($)) (-15 -2709 ($ (-320 (-705)))) (-15 -2709 ($ (-320 (-707)))) (-15 -2709 ($ (-320 (-700)))) (-15 -2709 ($ (-320 (-384)))) (-15 -2709 ($ (-320 (-570)))) (-15 -2709 ($ (-320 (-171 (-384))))) (-15 -1336 ($ (-1185) $)) (-15 -1336 ($ (-1185) $ $)) (-15 -1603 ($ (-1186) (-1168))) (-15 -1603 ($ (-1186) (-320 (-707)))) (-15 -1603 ($ (-1186) (-320 (-705)))) (-15 -1603 ($ (-1186) (-320 (-700)))) (-15 -1603 ($ (-1186) (-695 (-707)))) (-15 -1603 ($ (-1186) (-695 (-705)))) (-15 -1603 ($ (-1186) (-695 (-700)))) (-15 -1603 ($ (-1186) (-1277 (-707)))) (-15 -1603 ($ (-1186) (-1277 (-705)))) (-15 -1603 ($ (-1186) (-1277 (-700)))) (-15 -1603 ($ (-1186) (-695 (-320 (-707))))) (-15 -1603 ($ (-1186) (-695 (-320 (-705))))) (-15 -1603 ($ (-1186) (-695 (-320 (-700))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-707))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-705))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-700))))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -1603 ($ (-1186) (-320 (-570)))) (-15 -1603 ($ (-1186) (-320 (-384)))) (-15 -1603 ($ (-1186) (-320 (-171 (-384))))) (-15 -1603 ($ (-1186) (-695 (-320 (-570))))) (-15 -1603 ($ (-1186) (-695 (-320 (-384))))) (-15 -1603 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-570))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-384))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-171 (-384)))))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -2776 ($ (-650 $))) (-15 -4126 ($)) (-15 -1769 ($)) (-15 -2064 ($ (-650 (-868)))) (-15 -3318 ($ (-1186) (-650 (-1186)))) (-15 -2891 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3136 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3366 (-112)) (|:| -2196 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1990 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3515 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3515 $))) (|:| |commonBranch| (-2 (|:| -3504 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -4057 ((-1282) $)) (-15 -3110 ((-1113) $)) (-15 -4224 ((-1129) (-1129)))))) (T -334))
+((-3387 (*1 *1 *2 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *1 (-334)))) (-3387 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *3 (-959 (-570))) (-5 *1 (-334)))) (-3185 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-4230 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-3392 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3285 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3711 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-3711 (*1 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-334)))) (-2275 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-2709 (*1 *1) (-5 *1 (-334))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-334)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-334)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-334)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-334)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-334)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-1336 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-1336 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-707))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-705))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-700))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-707))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-705))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-700))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-707))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-705))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-700))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-707)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-705)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-700)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-707)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-705)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-700)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-707))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-705))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-700))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-570))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-384))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-570)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-384)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-570)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-384)))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-570))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-384))) (-5 *1 (-334)))) (-1603 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-2776 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))) (-4126 (*1 *1) (-5 *1 (-334))) (-1769 (*1 *1) (-5 *1 (-334))) (-2064 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))) (-3318 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-334)))) (-2891 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print"))) (-5 *1 (-334)))) (-3136 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| (-334)) (|:| |elseClause| (-334)))) (|:| |returnBranch| (-2 (|:| -3366 (-112)) (|:| -2196 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 (-334))) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1990 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3515 (-334)))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3515 (-334)))) (|:| |commonBranch| (-2 (|:| -3504 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868))))) (-5 *1 (-334)))) (-4057 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-334)))) (-3110 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))) (-4224 (*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(-13 (-1109) (-10 -8 (-15 -3387 ($ (-1101 (-959 (-570))) $)) (-15 -3387 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -3185 ($ (-1185) $)) (-15 -4230 ($ (-1185) $)) (-15 -3392 ($ (-1129))) (-15 -3285 ($ (-1129))) (-15 -3711 ($ (-1168))) (-15 -3711 ($ (-650 (-1168)))) (-15 -2275 ($ (-1168))) (-15 -2709 ($)) (-15 -2709 ($ (-320 (-705)))) (-15 -2709 ($ (-320 (-707)))) (-15 -2709 ($ (-320 (-700)))) (-15 -2709 ($ (-320 (-384)))) (-15 -2709 ($ (-320 (-570)))) (-15 -2709 ($ (-320 (-171 (-384))))) (-15 -1336 ($ (-1185) $)) (-15 -1336 ($ (-1185) $ $)) (-15 -1603 ($ (-1186) (-1168))) (-15 -1603 ($ (-1186) (-320 (-707)))) (-15 -1603 ($ (-1186) (-320 (-705)))) (-15 -1603 ($ (-1186) (-320 (-700)))) (-15 -1603 ($ (-1186) (-695 (-707)))) (-15 -1603 ($ (-1186) (-695 (-705)))) (-15 -1603 ($ (-1186) (-695 (-700)))) (-15 -1603 ($ (-1186) (-1277 (-707)))) (-15 -1603 ($ (-1186) (-1277 (-705)))) (-15 -1603 ($ (-1186) (-1277 (-700)))) (-15 -1603 ($ (-1186) (-695 (-320 (-707))))) (-15 -1603 ($ (-1186) (-695 (-320 (-705))))) (-15 -1603 ($ (-1186) (-695 (-320 (-700))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-707))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-705))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-700))))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -1603 ($ (-1186) (-320 (-570)))) (-15 -1603 ($ (-1186) (-320 (-384)))) (-15 -1603 ($ (-1186) (-320 (-171 (-384))))) (-15 -1603 ($ (-1186) (-695 (-320 (-570))))) (-15 -1603 ($ (-1186) (-695 (-320 (-384))))) (-15 -1603 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-570))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-384))))) (-15 -1603 ($ (-1186) (-1277 (-320 (-171 (-384)))))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -1603 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -2776 ($ (-650 $))) (-15 -4126 ($)) (-15 -1769 ($)) (-15 -2064 ($ (-650 (-868)))) (-15 -3318 ($ (-1186) (-650 (-1186)))) (-15 -2891 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3136 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3366 (-112)) (|:| -2196 (-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1990 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3515 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3515 $))) (|:| |commonBranch| (-2 (|:| -3504 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -4057 ((-1282) $)) (-15 -3110 ((-1113) $)) (-15 -4224 ((-1129) (-1129)))))
+((-2417 (((-112) $ $) NIL)) (-3877 (((-112) $) 13)) (-2579 (($ |#1|) 10)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2590 (($ |#1|) 12)) (-3735 (((-868) $) 19)) (-3866 (((-112) $ $) NIL)) (-2909 ((|#1| $) 14)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 21)))
+(((-335 |#1|) (-13 (-856) (-10 -8 (-15 -2579 ($ |#1|)) (-15 -2590 ($ |#1|)) (-15 -3877 ((-112) $)) (-15 -2909 (|#1| $)))) (-856)) (T -335))
+((-2579 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-2590 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-3877 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))) (-2909 (*1 *2 *1) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))))
+(-13 (-856) (-10 -8 (-15 -2579 ($ |#1|)) (-15 -2590 ($ |#1|)) (-15 -3877 ((-112) $)) (-15 -2909 (|#1| $))))
+((-4125 (((-334) (-1186) (-959 (-570))) 23)) (-2475 (((-334) (-1186) (-959 (-570))) 27)) (-4319 (((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570)))) 26) (((-334) (-1186) (-959 (-570)) (-959 (-570))) 24)) (-3912 (((-334) (-1186) (-959 (-570))) 31)))
+(((-336) (-10 -7 (-15 -4125 ((-334) (-1186) (-959 (-570)))) (-15 -4319 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -4319 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -2475 ((-334) (-1186) (-959 (-570)))) (-15 -3912 ((-334) (-1186) (-959 (-570)))))) (T -336))
+((-3912 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-2475 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4319 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-1101 (-959 (-570)))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4319 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))))
+(-10 -7 (-15 -4125 ((-334) (-1186) (-959 (-570)))) (-15 -4319 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -4319 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -2475 ((-334) (-1186) (-959 (-570)))) (-15 -3912 ((-334) (-1186) (-959 (-570)))))
+((-2417 (((-112) $ $) NIL)) (-1848 (((-512) $) 20)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1530 (((-965 (-777)) $) 18)) (-2863 (((-252) $) 7)) (-3735 (((-868) $) 26)) (-1942 (((-965 (-185 (-140))) $) 16)) (-3866 (((-112) $ $) NIL)) (-4370 (((-650 (-879 (-1191) (-777))) $) 12)) (-2872 (((-112) $ $) 22)))
+(((-337) (-13 (-1109) (-10 -8 (-15 -2863 ((-252) $)) (-15 -4370 ((-650 (-879 (-1191) (-777))) $)) (-15 -1530 ((-965 (-777)) $)) (-15 -1942 ((-965 (-185 (-140))) $)) (-15 -1848 ((-512) $))))) (T -337))
+((-2863 (*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))) (-4370 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))) (-1530 (*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))) (-1942 (*1 *2 *1) (-12 (-5 *2 (-965 (-185 (-140)))) (-5 *1 (-337)))) (-1848 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
+(-13 (-1109) (-10 -8 (-15 -2863 ((-252) $)) (-15 -4370 ((-650 (-879 (-1191) (-777))) $)) (-15 -1530 ((-965 (-777)) $)) (-15 -1942 ((-965 (-185 (-140))) $)) (-15 -1848 ((-512) $))))
+((-1352 (((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|)) 33)))
+(((-338 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1352 ((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|) (-368) (-1253 |#5|) (-1253 (-413 |#6|)) (-347 |#5| |#6| |#7|)) (T -338))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-341 *5 *6 *7 *8)) (-4 *5 (-368)) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *9 (-368)) (-4 *10 (-1253 *9)) (-4 *11 (-1253 (-413 *10))) (-5 *2 (-341 *9 *10 *11 *12)) (-5 *1 (-338 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-347 *9 *10 *11)))))
+(-10 -7 (-15 -1352 ((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|))))
+((-2139 (((-112) $) 14)))
+(((-339 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2139 ((-112) |#1|))) (-340 |#2| |#3| |#4| |#5|) (-368) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -339))
+NIL
+(-10 -8 (-15 -2139 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-3529 (($ $) 29)) (-2139 (((-112) $) 28)) (-4268 (((-1168) $) 10)) (-3976 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 35)) (-3479 (((-1129) $) 11)) (-2340 (((-3 |#4| "failed") $) 27)) (-2248 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 34) (($ |#4|) 33) (($ |#1| |#1|) 32) (($ |#1| |#1| (-570)) 31) (($ |#4| |#2| |#2| |#2| |#1|) 26)) (-1437 (((-2 (|:| -4254 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 30)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
+(((-340 |#1| |#2| |#3| |#4|) (-141) (-368) (-1253 |t#1|) (-1253 (-413 |t#2|)) (-347 |t#1| |t#2| |t#3|)) (T -340))
+((-3976 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-419 *4 (-413 *4) *5 *6)))) (-2248 (*1 *1 *2) (-12 (-5 *2 (-419 *4 (-413 *4) *5 *6)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-4 *3 (-368)) (-4 *1 (-340 *3 *4 *5 *6)))) (-2248 (*1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *1 (-340 *3 *4 *5 *2)) (-4 *2 (-347 *3 *4 *5)))) (-2248 (*1 *1 *2 *2) (-12 (-4 *2 (-368)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))) (-4 *1 (-340 *2 *3 *4 *5)) (-4 *5 (-347 *2 *3 *4)))) (-2248 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-570)) (-4 *2 (-368)) (-4 *4 (-1253 *2)) (-4 *5 (-1253 (-413 *4))) (-4 *1 (-340 *2 *4 *5 *6)) (-4 *6 (-347 *2 *4 *5)))) (-1437 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-2 (|:| -4254 (-419 *4 (-413 *4) *5 *6)) (|:| |principalPart| *6))))) (-3529 (*1 *1 *1) (-12 (-4 *1 (-340 *2 *3 *4 *5)) (-4 *2 (-368)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))) (-4 *5 (-347 *2 *3 *4)))) (-2139 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-112)))) (-2340 (*1 *2 *1) (|partial| -12 (-4 *1 (-340 *3 *4 *5 *2)) (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *2 (-347 *3 *4 *5)))) (-2248 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-368)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 (-413 *3))) (-4 *1 (-340 *4 *3 *5 *2)) (-4 *2 (-347 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -3976 ((-419 |t#2| (-413 |t#2|) |t#3| |t#4|) $)) (-15 -2248 ($ (-419 |t#2| (-413 |t#2|) |t#3| |t#4|))) (-15 -2248 ($ |t#4|)) (-15 -2248 ($ |t#1| |t#1|)) (-15 -2248 ($ |t#1| |t#1| (-570))) (-15 -1437 ((-2 (|:| -4254 (-419 |t#2| (-413 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -3529 ($ $)) (-15 -2139 ((-112) $)) (-15 -2340 ((-3 |t#4| "failed") $)) (-15 -2248 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3529 (($ $) 33)) (-1738 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-2806 (((-1276 |#4|) $) 134)) (-2799 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 31)) (-3479 (((-1129) $) NIL)) (-2339 (((-3 |#4| "failed") $) 36)) (-2670 (((-1276 |#4|) $) 126)) (-2064 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-570)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-1386 (((-2 (|:| -4251 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3735 (((-868) $) 17)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 14 T CONST)) (-2872 (((-112) $ $) 20)) (-2965 (($ $) 27) (($ $ $) NIL)) (-2954 (($ $ $) 25)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 23)))
-(((-341 |#1| |#2| |#3| |#4|) (-13 (-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2670 ((-1276 |#4|) $)) (-15 -2806 ((-1276 |#4|) $)))) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -341))
-((-2670 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-1276 *6)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *6 (-347 *3 *4 *5)))) (-2806 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-1276 *6)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *6 (-347 *3 *4 *5)))))
-(-13 (-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2670 ((-1276 |#4|) $)) (-15 -2806 ((-1276 |#4|) $))))
-((-1730 (($ $ (-1186) |#2|) NIL) (($ $ (-650 (-1186)) (-650 |#2|)) 20) (($ $ (-650 (-298 |#2|))) 15) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-1876 (($ $ |#2|) 11)))
-(((-342 |#1| |#2|) (-10 -8 (-15 -1876 (|#1| |#1| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#2| |#2|)) (-15 -1730 (|#1| |#1| (-298 |#2|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1730 (|#1| |#1| (-1186) |#2|))) (-343 |#2|) (-1109)) (T -342))
-NIL
-(-10 -8 (-15 -1876 (|#1| |#1| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#2| |#2|)) (-15 -1730 (|#1| |#1| (-298 |#2|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1730 (|#1| |#1| (-1186) |#2|)))
-((-1351 (($ (-1 |#1| |#1|) $) 6)) (-1730 (($ $ (-1186) |#1|) 17 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 16 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-650 (-298 |#1|))) 15 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 14 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-313 |#1|))) (($ $ (-650 |#1|) (-650 |#1|)) 12 (|has| |#1| (-313 |#1|)))) (-1876 (($ $ |#1|) 11 (|has| |#1| (-290 |#1| |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3529 (($ $) 33)) (-2139 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-4050 (((-1277 |#4|) $) 134)) (-3976 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 31)) (-3479 (((-1129) $) NIL)) (-2340 (((-3 |#4| "failed") $) 36)) (-2117 (((-1277 |#4|) $) 126)) (-2248 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-570)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-1437 (((-2 (|:| -4254 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3735 (((-868) $) 17)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 14 T CONST)) (-2872 (((-112) $ $) 20)) (-2965 (($ $) 27) (($ $ $) NIL)) (-2953 (($ $ $) 25)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 23)))
+(((-341 |#1| |#2| |#3| |#4|) (-13 (-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2117 ((-1277 |#4|) $)) (-15 -4050 ((-1277 |#4|) $)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -341))
+((-2117 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-1277 *6)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *6 (-347 *3 *4 *5)))) (-4050 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-1277 *6)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *6 (-347 *3 *4 *5)))))
+(-13 (-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2117 ((-1277 |#4|) $)) (-15 -4050 ((-1277 |#4|) $))))
+((-1731 (($ $ (-1186) |#2|) NIL) (($ $ (-650 (-1186)) (-650 |#2|)) 20) (($ $ (-650 (-298 |#2|))) 15) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-1877 (($ $ |#2|) 11)))
+(((-342 |#1| |#2|) (-10 -8 (-15 -1877 (|#1| |#1| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#2| |#2|)) (-15 -1731 (|#1| |#1| (-298 |#2|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1731 (|#1| |#1| (-1186) |#2|))) (-343 |#2|) (-1109)) (T -342))
+NIL
+(-10 -8 (-15 -1877 (|#1| |#1| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#2| |#2|)) (-15 -1731 (|#1| |#1| (-298 |#2|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1731 (|#1| |#1| (-1186) |#2|)))
+((-1352 (($ (-1 |#1| |#1|) $) 6)) (-1731 (($ $ (-1186) |#1|) 17 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 16 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-650 (-298 |#1|))) 15 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 14 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-313 |#1|))) (($ $ (-650 |#1|) (-650 |#1|)) 12 (|has| |#1| (-313 |#1|)))) (-1877 (($ $ |#1|) 11 (|has| |#1| (-290 |#1| |#1|)))))
(((-343 |#1|) (-141) (-1109)) (T -343))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-343 *3)) (-4 *3 (-1109)))))
-(-13 (-10 -8 (-15 -1351 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-290 |t#1| |t#1|)) (-6 (-290 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-313 |t#1|)) (-6 (-313 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-520 (-1186) |t#1|)) (-6 (-520 (-1186) |t#1|)) |%noBranch|)))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-343 *3)) (-4 *3 (-1109)))))
+(-13 (-10 -8 (-15 -1352 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-290 |t#1| |t#1|)) (-6 (-290 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-313 |t#1|)) (-6 (-313 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-520 (-1186) |t#1|)) (-6 (-520 (-1186) |t#1|)) |%noBranch|)))
(((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1186)) $) NIL)) (-2814 (((-112)) 96) (((-112) (-112)) 97)) (-3593 (((-650 (-618 $)) $) NIL)) (-2735 (($ $) NIL)) (-2602 (($ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4283 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-3753 (($ $) NIL)) (-2712 (($ $) NIL)) (-2579 (($ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-618 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-320 |#3|)) 76) (((-3 $ "failed") (-1186)) 103) (((-3 $ "failed") (-320 (-570))) 64 (|has| |#3| (-1047 (-570)))) (((-3 $ "failed") (-413 (-959 (-570)))) 70 (|has| |#3| (-1047 (-570)))) (((-3 $ "failed") (-959 (-570))) 65 (|has| |#3| (-1047 (-570)))) (((-3 $ "failed") (-320 (-384))) 94 (|has| |#3| (-1047 (-384)))) (((-3 $ "failed") (-413 (-959 (-384)))) 88 (|has| |#3| (-1047 (-384)))) (((-3 $ "failed") (-959 (-384))) 83 (|has| |#3| (-1047 (-384))))) (-3080 (((-618 $) $) NIL) ((|#3| $) NIL) (($ (-320 |#3|)) 77) (($ (-1186)) 104) (($ (-320 (-570))) 66 (|has| |#3| (-1047 (-570)))) (($ (-413 (-959 (-570)))) 71 (|has| |#3| (-1047 (-570)))) (($ (-959 (-570))) 67 (|has| |#3| (-1047 (-570)))) (($ (-320 (-384))) 95 (|has| |#3| (-1047 (-384)))) (($ (-413 (-959 (-384)))) 89 (|has| |#3| (-1047 (-384)))) (($ (-959 (-384))) 85 (|has| |#3| (-1047 (-384))))) (-3413 (((-3 $ "failed") $) NIL)) (-1314 (($) 101)) (-2268 (($ $) NIL) (($ (-650 $)) NIL)) (-4190 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) NIL)) (-2081 (((-112) $) NIL)) (-3431 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1646 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) NIL)) (-3399 (((-3 (-618 $) "failed") $) NIL)) (-1347 (($ $) 99)) (-2635 (($ $) NIL)) (-1903 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) NIL)) (-1360 (($ (-115) $) 98) (($ (-115) (-650 $)) NIL)) (-1566 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1434 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-3247 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-4387 (($ $) NIL)) (-1322 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1730 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL)) (-1876 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-3760 (($ $) NIL) (($ $ $) NIL)) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-2886 (($ $) NIL (|has| $ (-1058)))) (-2723 (($ $) NIL)) (-2590 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-618 $)) NIL) (($ |#3|) NIL) (($ (-570)) NIL) (((-320 |#3|) $) 102)) (-2744 (((-777)) NIL T CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-2004 (((-112) (-115)) NIL)) (-1859 (((-112) $ $) NIL)) (-2671 (($ $) NIL)) (-2647 (($ $) NIL)) (-2660 (($ $) NIL)) (-1423 (($ $) NIL)) (-1812 (($) 100 T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
-(((-344 |#1| |#2| |#3|) (-13 (-306) (-38 |#3|) (-1047 |#3|) (-907 (-1186)) (-10 -8 (-15 -3080 ($ (-320 |#3|))) (-15 -4378 ((-3 $ "failed") (-320 |#3|))) (-15 -3080 ($ (-1186))) (-15 -4378 ((-3 $ "failed") (-1186))) (-15 -3735 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3080 ($ (-320 (-570)))) (-15 -4378 ((-3 $ "failed") (-320 (-570)))) (-15 -3080 ($ (-413 (-959 (-570))))) (-15 -4378 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3080 ($ (-959 (-570)))) (-15 -4378 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3080 ($ (-320 (-384)))) (-15 -4378 ((-3 $ "failed") (-320 (-384)))) (-15 -3080 ($ (-413 (-959 (-384))))) (-15 -4378 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3080 ($ (-959 (-384)))) (-15 -4378 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -1423 ($ $)) (-15 -3753 ($ $)) (-15 -4387 ($ $)) (-15 -2635 ($ $)) (-15 -1347 ($ $)) (-15 -2579 ($ $)) (-15 -2590 ($ $)) (-15 -2602 ($ $)) (-15 -2647 ($ $)) (-15 -2660 ($ $)) (-15 -2671 ($ $)) (-15 -2712 ($ $)) (-15 -2723 ($ $)) (-15 -2735 ($ $)) (-15 -1314 ($)) (-15 -1716 ((-650 (-1186)) $)) (-15 -2814 ((-112))) (-15 -2814 ((-112) (-112))))) (-650 (-1186)) (-650 (-1186)) (-393)) (T -344))
-((-3080 (*1 *1 *2) (-12 (-5 *2 (-320 *5)) (-4 *5 (-393)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 *5)) (-4 *5 (-393)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 *2)) (-14 *4 (-650 *2)) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 *2)) (-14 *4 (-650 *2)) (-4 *5 (-393)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-320 *5)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-570)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-570)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-384)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-384)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-1423 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-3753 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-4387 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2635 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1347 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2579 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2590 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2602 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2647 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2660 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2671 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2712 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2723 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2735 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1314 (*1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1716 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-344 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-393)))) (-2814 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-2814 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))))
-(-13 (-306) (-38 |#3|) (-1047 |#3|) (-907 (-1186)) (-10 -8 (-15 -3080 ($ (-320 |#3|))) (-15 -4378 ((-3 $ "failed") (-320 |#3|))) (-15 -3080 ($ (-1186))) (-15 -4378 ((-3 $ "failed") (-1186))) (-15 -3735 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3080 ($ (-320 (-570)))) (-15 -4378 ((-3 $ "failed") (-320 (-570)))) (-15 -3080 ($ (-413 (-959 (-570))))) (-15 -4378 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3080 ($ (-959 (-570)))) (-15 -4378 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3080 ($ (-320 (-384)))) (-15 -4378 ((-3 $ "failed") (-320 (-384)))) (-15 -3080 ($ (-413 (-959 (-384))))) (-15 -4378 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3080 ($ (-959 (-384)))) (-15 -4378 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -1423 ($ $)) (-15 -3753 ($ $)) (-15 -4387 ($ $)) (-15 -2635 ($ $)) (-15 -1347 ($ $)) (-15 -2579 ($ $)) (-15 -2590 ($ $)) (-15 -2602 ($ $)) (-15 -2647 ($ $)) (-15 -2660 ($ $)) (-15 -2671 ($ $)) (-15 -2712 ($ $)) (-15 -2723 ($ $)) (-15 -2735 ($ $)) (-15 -1314 ($)) (-15 -1716 ((-650 (-1186)) $)) (-15 -2814 ((-112))) (-15 -2814 ((-112) (-112)))))
-((-1351 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-345 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1351 (|#8| (-1 |#5| |#1|) |#4|))) (-1230) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|) (-1230) (-1252 |#5|) (-1252 (-413 |#6|)) (-347 |#5| |#6| |#7|)) (T -345))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1230)) (-4 *8 (-1230)) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *9 (-1252 *8)) (-4 *2 (-347 *8 *9 *10)) (-5 *1 (-345 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-347 *5 *6 *7)) (-4 *10 (-1252 (-413 *9))))))
-(-10 -7 (-15 -1351 (|#8| (-1 |#5| |#1|) |#4|)))
-((-3646 (((-2 (|:| |num| (-1276 |#3|)) (|:| |den| |#3|)) $) 39)) (-2049 (($ (-1276 (-413 |#3|)) (-1276 $)) NIL) (($ (-1276 (-413 |#3|))) NIL) (($ (-1276 |#3|) |#3|) 177)) (-2906 (((-1276 $) (-1276 $)) 160)) (-2772 (((-650 (-650 |#2|))) 129)) (-1861 (((-112) |#2| |#2|) 76)) (-3543 (($ $) 151)) (-3858 (((-777)) 176)) (-1606 (((-1276 $) (-1276 $)) 222)) (-2554 (((-650 (-959 |#2|)) (-1186)) 118)) (-3075 (((-112) $) 173)) (-1828 (((-112) $) 27) (((-112) $ |#2|) 31) (((-112) $ |#3|) 226)) (-3660 (((-3 |#3| "failed")) 52)) (-4334 (((-777)) 188)) (-1876 ((|#2| $ |#2| |#2|) 143)) (-4418 (((-3 |#3| "failed")) 71)) (-3447 (($ $ (-1 (-413 |#3|) (-413 |#3|)) (-777)) NIL) (($ $ (-1 (-413 |#3|) (-413 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 230) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-1326 (((-1276 $) (-1276 $)) 166)) (-3475 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 68)) (-3114 (((-112)) 34)))
-(((-346 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2772 ((-650 (-650 |#2|)))) (-15 -2554 ((-650 (-959 |#2|)) (-1186))) (-15 -3475 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3660 ((-3 |#3| "failed"))) (-15 -4418 ((-3 |#3| "failed"))) (-15 -1876 (|#2| |#1| |#2| |#2|)) (-15 -3543 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1828 ((-112) |#1| |#3|)) (-15 -1828 ((-112) |#1| |#2|)) (-15 -2049 (|#1| (-1276 |#3|) |#3|)) (-15 -3646 ((-2 (|:| |num| (-1276 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2906 ((-1276 |#1|) (-1276 |#1|))) (-15 -1606 ((-1276 |#1|) (-1276 |#1|))) (-15 -1326 ((-1276 |#1|) (-1276 |#1|))) (-15 -1828 ((-112) |#1|)) (-15 -3075 ((-112) |#1|)) (-15 -1861 ((-112) |#2| |#2|)) (-15 -3114 ((-112))) (-15 -4334 ((-777))) (-15 -3858 ((-777))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -2049 (|#1| (-1276 (-413 |#3|)))) (-15 -2049 (|#1| (-1276 (-413 |#3|)) (-1276 |#1|)))) (-347 |#2| |#3| |#4|) (-1230) (-1252 |#2|) (-1252 (-413 |#3|))) (T -346))
-((-3858 (*1 *2) (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))) (-4334 (*1 *2) (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))) (-3114 (*1 *2) (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-112)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))) (-1861 (*1 *2 *3 *3) (-12 (-4 *3 (-1230)) (-4 *5 (-1252 *3)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-112)) (-5 *1 (-346 *4 *3 *5 *6)) (-4 *4 (-347 *3 *5 *6)))) (-4418 (*1 *2) (|partial| -12 (-4 *4 (-1230)) (-4 *5 (-1252 (-413 *2))) (-4 *2 (-1252 *4)) (-5 *1 (-346 *3 *4 *2 *5)) (-4 *3 (-347 *4 *2 *5)))) (-3660 (*1 *2) (|partial| -12 (-4 *4 (-1230)) (-4 *5 (-1252 (-413 *2))) (-4 *2 (-1252 *4)) (-5 *1 (-346 *3 *4 *2 *5)) (-4 *3 (-347 *4 *2 *5)))) (-2554 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *5 (-1230)) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-5 *2 (-650 (-959 *5))) (-5 *1 (-346 *4 *5 *6 *7)) (-4 *4 (-347 *5 *6 *7)))) (-2772 (*1 *2) (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-650 (-650 *4))) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))))
-(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2772 ((-650 (-650 |#2|)))) (-15 -2554 ((-650 (-959 |#2|)) (-1186))) (-15 -3475 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3660 ((-3 |#3| "failed"))) (-15 -4418 ((-3 |#3| "failed"))) (-15 -1876 (|#2| |#1| |#2| |#2|)) (-15 -3543 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1828 ((-112) |#1| |#3|)) (-15 -1828 ((-112) |#1| |#2|)) (-15 -2049 (|#1| (-1276 |#3|) |#3|)) (-15 -3646 ((-2 (|:| |num| (-1276 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2906 ((-1276 |#1|) (-1276 |#1|))) (-15 -1606 ((-1276 |#1|) (-1276 |#1|))) (-15 -1326 ((-1276 |#1|) (-1276 |#1|))) (-15 -1828 ((-112) |#1|)) (-15 -3075 ((-112) |#1|)) (-15 -1861 ((-112) |#2| |#2|)) (-15 -3114 ((-112))) (-15 -4334 ((-777))) (-15 -3858 ((-777))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -2049 (|#1| (-1276 (-413 |#3|)))) (-15 -2049 (|#1| (-1276 (-413 |#3|)) (-1276 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3646 (((-2 (|:| |num| (-1276 |#2|)) (|:| |den| |#2|)) $) 204)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 102 (|has| (-413 |#2|) (-368)))) (-3171 (($ $) 103 (|has| (-413 |#2|) (-368)))) (-2720 (((-112) $) 105 (|has| (-413 |#2|) (-368)))) (-2945 (((-695 (-413 |#2|)) (-1276 $)) 53) (((-695 (-413 |#2|))) 68)) (-3071 (((-413 |#2|) $) 59)) (-4029 (((-1199 (-928) (-777)) (-570)) 155 (|has| (-413 |#2|) (-354)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 122 (|has| (-413 |#2|) (-368)))) (-1790 (((-424 $) $) 123 (|has| (-413 |#2|) (-368)))) (-4339 (((-112) $ $) 113 (|has| (-413 |#2|) (-368)))) (-3403 (((-777)) 96 (|has| (-413 |#2|) (-373)))) (-2796 (((-112)) 221)) (-3024 (((-112) |#1|) 220) (((-112) |#2|) 219)) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 178 (|has| (-413 |#2|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-3 (-413 |#2|) "failed") $) 173)) (-3080 (((-570) $) 177 (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) 174)) (-2049 (($ (-1276 (-413 |#2|)) (-1276 $)) 55) (($ (-1276 (-413 |#2|))) 71) (($ (-1276 |#2|) |#2|) 203)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| (-413 |#2|) (-354)))) (-2372 (($ $ $) 117 (|has| (-413 |#2|) (-368)))) (-2710 (((-695 (-413 |#2|)) $ (-1276 $)) 60) (((-695 (-413 |#2|)) $) 66)) (-4177 (((-695 (-570)) (-695 $)) 172 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 171 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-413 |#2|))) (|:| |vec| (-1276 (-413 |#2|)))) (-695 $) (-1276 $)) 170) (((-695 (-413 |#2|)) (-695 $)) 169)) (-2906 (((-1276 $) (-1276 $)) 209)) (-3529 (($ |#3|) 166) (((-3 $ "failed") (-413 |#3|)) 163 (|has| (-413 |#2|) (-368)))) (-3413 (((-3 $ "failed") $) 37)) (-2772 (((-650 (-650 |#1|))) 190 (|has| |#1| (-373)))) (-1861 (((-112) |#1| |#1|) 225)) (-3934 (((-928)) 61)) (-3336 (($) 99 (|has| (-413 |#2|) (-373)))) (-4363 (((-112)) 218)) (-3090 (((-112) |#1|) 217) (((-112) |#2|) 216)) (-2381 (($ $ $) 116 (|has| (-413 |#2|) (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 111 (|has| (-413 |#2|) (-368)))) (-3543 (($ $) 196)) (-2493 (($) 157 (|has| (-413 |#2|) (-354)))) (-2036 (((-112) $) 158 (|has| (-413 |#2|) (-354)))) (-2774 (($ $ (-777)) 149 (|has| (-413 |#2|) (-354))) (($ $) 148 (|has| (-413 |#2|) (-354)))) (-1552 (((-112) $) 124 (|has| (-413 |#2|) (-368)))) (-3157 (((-928) $) 160 (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) 146 (|has| (-413 |#2|) (-354)))) (-2081 (((-112) $) 35)) (-3858 (((-777)) 228)) (-1606 (((-1276 $) (-1276 $)) 210)) (-2610 (((-413 |#2|) $) 58)) (-2554 (((-650 (-959 |#1|)) (-1186)) 191 (|has| |#1| (-368)))) (-2885 (((-3 $ "failed") $) 150 (|has| (-413 |#2|) (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| (-413 |#2|) (-368)))) (-1638 ((|#3| $) 51 (|has| (-413 |#2|) (-368)))) (-2367 (((-928) $) 98 (|has| (-413 |#2|) (-373)))) (-3516 ((|#3| $) 164)) (-1845 (($ (-650 $)) 109 (|has| (-413 |#2|) (-368))) (($ $ $) 108 (|has| (-413 |#2|) (-368)))) (-1903 (((-1168) $) 10)) (-2285 (((-695 (-413 |#2|))) 205)) (-2505 (((-695 (-413 |#2|))) 207)) (-1825 (($ $) 125 (|has| (-413 |#2|) (-368)))) (-4019 (($ (-1276 |#2|) |#2|) 201)) (-2613 (((-695 (-413 |#2|))) 206)) (-3883 (((-695 (-413 |#2|))) 208)) (-3203 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 200)) (-1369 (((-2 (|:| |num| (-1276 |#2|)) (|:| |den| |#2|)) $) 202)) (-3524 (((-1276 $)) 214)) (-3223 (((-1276 $)) 215)) (-3075 (((-112) $) 213)) (-1828 (((-112) $) 212) (((-112) $ |#1|) 199) (((-112) $ |#2|) 198)) (-2314 (($) 151 (|has| (-413 |#2|) (-354)) CONST)) (-2159 (($ (-928)) 97 (|has| (-413 |#2|) (-373)))) (-3660 (((-3 |#2| "failed")) 193)) (-3479 (((-1129) $) 11)) (-4334 (((-777)) 227)) (-2339 (($) 168)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| (-413 |#2|) (-368)))) (-1874 (($ (-650 $)) 107 (|has| (-413 |#2|) (-368))) (($ $ $) 106 (|has| (-413 |#2|) (-368)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 154 (|has| (-413 |#2|) (-354)))) (-3738 (((-424 $) $) 121 (|has| (-413 |#2|) (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 118 (|has| (-413 |#2|) (-368)))) (-2407 (((-3 $ "failed") $ $) 101 (|has| (-413 |#2|) (-368)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| (-413 |#2|) (-368)))) (-2272 (((-777) $) 114 (|has| (-413 |#2|) (-368)))) (-1876 ((|#1| $ |#1| |#1|) 195)) (-4418 (((-3 |#2| "failed")) 194)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 115 (|has| (-413 |#2|) (-368)))) (-2998 (((-413 |#2|) (-1276 $)) 54) (((-413 |#2|)) 67)) (-2845 (((-777) $) 159 (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) 147 (|has| (-413 |#2|) (-354)))) (-3447 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) 131 (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) 130 (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) 197) (($ $ (-650 (-1186)) (-650 (-777))) 138 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 139 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 140 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 141 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 143 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 145 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-4399 (((-695 (-413 |#2|)) (-1276 $) (-1 (-413 |#2|) (-413 |#2|))) 162 (|has| (-413 |#2|) (-368)))) (-2886 ((|#3|) 167)) (-2163 (($) 156 (|has| (-413 |#2|) (-354)))) (-1807 (((-1276 (-413 |#2|)) $ (-1276 $)) 57) (((-695 (-413 |#2|)) (-1276 $) (-1276 $)) 56) (((-1276 (-413 |#2|)) $) 73) (((-695 (-413 |#2|)) (-1276 $)) 72)) (-1416 (((-1276 (-413 |#2|)) $) 70) (($ (-1276 (-413 |#2|))) 69) ((|#3| $) 179) (($ |#3|) 165)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 153 (|has| (-413 |#2|) (-354)))) (-1326 (((-1276 $) (-1276 $)) 211)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 |#2|)) 44) (($ (-413 (-570))) 95 (-2740 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-1047 (-413 (-570)))))) (($ $) 100 (|has| (-413 |#2|) (-368)))) (-1918 (($ $) 152 (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) 50 (|has| (-413 |#2|) (-146)))) (-3674 ((|#3| $) 52)) (-2744 (((-777)) 32 T CONST)) (-3222 (((-112)) 224)) (-4050 (((-112) |#1|) 223) (((-112) |#2|) 222)) (-1859 (((-112) $ $) 9)) (-2331 (((-1276 $)) 74)) (-1681 (((-112) $ $) 104 (|has| (-413 |#2|) (-368)))) (-3475 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 192)) (-3114 (((-112)) 226)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) 133 (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) 132 (|has| (-413 |#2|) (-368))) (($ $ (-650 (-1186)) (-650 (-777))) 134 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 135 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 136 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 137 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 142 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 144 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 129 (|has| (-413 |#2|) (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 126 (|has| (-413 |#2|) (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 |#2|)) 46) (($ (-413 |#2|) $) 45) (($ (-413 (-570)) $) 128 (|has| (-413 |#2|) (-368))) (($ $ (-413 (-570))) 127 (|has| (-413 |#2|) (-368)))))
-(((-347 |#1| |#2| |#3|) (-141) (-1230) (-1252 |t#1|) (-1252 (-413 |t#2|))) (T -347))
-((-3858 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-777)))) (-4334 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-777)))) (-3114 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-1861 (*1 *2 *3 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-3222 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-4050 (*1 *2 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-4050 (*1 *2 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112)))) (-2796 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-3024 (*1 *2 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-3024 (*1 *2 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112)))) (-4363 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-3090 (*1 *2 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-3090 (*1 *2 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112)))) (-3223 (*1 *2) (-12 (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)))) (-3524 (*1 *2) (-12 (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)))) (-3075 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-1828 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-1326 (*1 *2 *2) (-12 (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))) (-1606 (*1 *2 *2) (-12 (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))) (-2906 (*1 *2 *2) (-12 (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))) (-3883 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-2505 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-2613 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-2285 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-3646 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-2 (|:| |num| (-1276 *4)) (|:| |den| *4))))) (-2049 (*1 *1 *2 *3) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1252 *4)) (-4 *4 (-1230)) (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1252 (-413 *3))))) (-1369 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-2 (|:| |num| (-1276 *4)) (|:| |den| *4))))) (-4019 (*1 *1 *2 *3) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1252 *4)) (-4 *4 (-1230)) (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1252 (-413 *3))))) (-3203 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-2 (|:| |num| (-695 *5)) (|:| |den| *5))))) (-1828 (*1 *2 *1 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))) (-1828 (*1 *2 *1 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))) (-3543 (*1 *1 *1) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1230)) (-4 *3 (-1252 *2)) (-4 *4 (-1252 (-413 *3))))) (-1876 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1230)) (-4 *3 (-1252 *2)) (-4 *4 (-1252 (-413 *3))))) (-4418 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1230)) (-4 *4 (-1252 (-413 *2))) (-4 *2 (-1252 *3)))) (-3660 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1230)) (-4 *4 (-1252 (-413 *2))) (-4 *2 (-1252 *3)))) (-3475 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-1230)) (-4 *6 (-1252 (-413 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-347 *4 *5 *6)))) (-2554 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-4 *4 (-368)) (-5 *2 (-650 (-959 *4))))) (-2772 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))) (-4 *3 (-373)) (-5 *2 (-650 (-650 *3))))))
-(-13 (-730 (-413 |t#2|) |t#3|) (-10 -8 (-15 -3858 ((-777))) (-15 -4334 ((-777))) (-15 -3114 ((-112))) (-15 -1861 ((-112) |t#1| |t#1|)) (-15 -3222 ((-112))) (-15 -4050 ((-112) |t#1|)) (-15 -4050 ((-112) |t#2|)) (-15 -2796 ((-112))) (-15 -3024 ((-112) |t#1|)) (-15 -3024 ((-112) |t#2|)) (-15 -4363 ((-112))) (-15 -3090 ((-112) |t#1|)) (-15 -3090 ((-112) |t#2|)) (-15 -3223 ((-1276 $))) (-15 -3524 ((-1276 $))) (-15 -3075 ((-112) $)) (-15 -1828 ((-112) $)) (-15 -1326 ((-1276 $) (-1276 $))) (-15 -1606 ((-1276 $) (-1276 $))) (-15 -2906 ((-1276 $) (-1276 $))) (-15 -3883 ((-695 (-413 |t#2|)))) (-15 -2505 ((-695 (-413 |t#2|)))) (-15 -2613 ((-695 (-413 |t#2|)))) (-15 -2285 ((-695 (-413 |t#2|)))) (-15 -3646 ((-2 (|:| |num| (-1276 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2049 ($ (-1276 |t#2|) |t#2|)) (-15 -1369 ((-2 (|:| |num| (-1276 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -4019 ($ (-1276 |t#2|) |t#2|)) (-15 -3203 ((-2 (|:| |num| (-695 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -1828 ((-112) $ |t#1|)) (-15 -1828 ((-112) $ |t#2|)) (-15 -3447 ($ $ (-1 |t#2| |t#2|))) (-15 -3543 ($ $)) (-15 -1876 (|t#1| $ |t#1| |t#1|)) (-15 -4418 ((-3 |t#2| "failed"))) (-15 -3660 ((-3 |t#2| "failed"))) (-15 -3475 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-368)) (-15 -2554 ((-650 (-959 |t#1|)) (-1186))) |%noBranch|) (IF (|has| |t#1| (-373)) (-15 -2772 ((-650 (-650 |t#1|)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-38 #1=(-413 |#2|)) . T) ((-38 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-102) . T) ((-111 #0# #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-146))) ((-148) |has| (-413 |#2|) (-148)) ((-622 #0#) -2740 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-622 #1#) . T) ((-622 (-570)) . T) ((-622 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#3|) . T) ((-233 #1#) |has| (-413 |#2|) (-368)) ((-235) -2740 (|has| (-413 |#2|) (-354)) (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368)))) ((-245) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-294) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-311) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-368) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-408) |has| (-413 |#2|) (-354)) ((-373) -2740 (|has| (-413 |#2|) (-373)) (|has| (-413 |#2|) (-354))) ((-354) |has| (-413 |#2|) (-354)) ((-375 #1# |#3|) . T) ((-415 #1# |#3|) . T) ((-382 #1#) . T) ((-417 #1#) . T) ((-458) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-562) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #1#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-654 #1#) . T) ((-654 $) . T) ((-646 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-646 #1#) . T) ((-646 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-645 #1#) . T) ((-645 (-570)) |has| (-413 |#2|) (-645 (-570))) ((-723 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-723 #1#) . T) ((-723 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-730 #1# |#3|) . T) ((-732) . T) ((-907 (-1186)) -12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) ((-927) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1047 (-413 (-570))) |has| (-413 |#2|) (-1047 (-413 (-570)))) ((-1047 #1#) . T) ((-1047 (-570)) |has| (-413 |#2|) (-1047 (-570))) ((-1060 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1060 #1#) . T) ((-1060 $) . T) ((-1065 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1065 #1#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| (-413 |#2|) (-354)) ((-1230) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-917 |#1|) "failed") $) NIL)) (-3080 (((-917 |#1|) $) NIL)) (-2049 (($ (-1276 (-917 |#1|))) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-917 |#1|) (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| (-917 |#1|) (-373)))) (-2036 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| (-917 |#1|) (-373)))) (-3088 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2610 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2367 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-3587 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-1726 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-3609 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-1588 (((-965 (-1129))) NIL)) (-2339 (($) NIL (|has| (-917 |#1|) (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 (-917 |#1|))) NIL)) (-2163 (($) NIL (|has| (-917 |#1|) (-373)))) (-3046 (($) NIL (|has| (-917 |#1|) (-373)))) (-1807 (((-1276 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-1918 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-917 |#1|)) NIL) (($ (-917 |#1|) $) NIL)))
-(((-348 |#1| |#2|) (-13 (-333 (-917 |#1|)) (-10 -7 (-15 -1588 ((-965 (-1129)))))) (-928) (-928)) (T -348))
-((-1588 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-348 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))))
-(-13 (-333 (-917 |#1|)) (-10 -7 (-15 -1588 ((-965 (-1129))))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 58)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) 56 (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 142)) (-3080 ((|#1| $) 113)) (-2049 (($ (-1276 |#1|)) 130)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 121 (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) 124 (|has| |#1| (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) 160 (|has| |#1| (-373)))) (-2036 (((-112) $) 66 (|has| |#1| (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) 60 (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) 62)) (-1484 (($) 162 (|has| |#1| (-373)))) (-3088 (((-112) $) NIL (|has| |#1| (-373)))) (-2610 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 |#1|) $) 117) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2367 (((-928) $) 171 (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 178)) (-2314 (($) NIL (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) 96 (|has| |#1| (-373)))) (-2289 (((-112) $) 147)) (-3479 (((-1129) $) NIL)) (-1588 (((-965 (-1129))) 57)) (-2339 (($) 158 (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 119 (|has| |#1| (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) 90) (((-928)) 91)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) 161 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 154 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 |#1|)) 122)) (-2163 (($) 159 (|has| |#1| (-373)))) (-3046 (($) 167 (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) 77) (((-695 |#1|) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) 174) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 100)) (-1918 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) 155 T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) 144) (((-1276 $) (-928)) 98)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) 67 T CONST)) (-1823 (($) 103 T CONST)) (-3741 (($ $) 107 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) 65)) (-2975 (($ $ $) 176) (($ $ |#1|) 177)) (-2965 (($ $) 157) (($ $ $) NIL)) (-2954 (($ $ $) 86)) (** (($ $ (-928)) 180) (($ $ (-777)) 181) (($ $ (-570)) 179)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 102) (($ $ $) 101) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 175)))
-(((-349 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -1588 ((-965 (-1129)))))) (-354) (-1182 |#1|)) (T -349))
-((-1588 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-349 *3 *4)) (-4 *3 (-354)) (-14 *4 (-1182 *3)))))
-(-13 (-333 |#1|) (-10 -7 (-15 -1588 ((-965 (-1129))))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2049 (($ (-1276 |#1|)) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| |#1| (-373)))) (-2036 (((-112) $) NIL (|has| |#1| (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| |#1| (-373)))) (-3088 (((-112) $) NIL (|has| |#1| (-373)))) (-2610 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-1588 (((-965 (-1129))) NIL)) (-2339 (($) NIL (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| |#1| (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 |#1|)) NIL)) (-2163 (($) NIL (|has| |#1| (-373)))) (-3046 (($) NIL (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) NIL) (((-695 |#1|) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-1918 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-350 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -1588 ((-965 (-1129)))))) (-354) (-928)) (T -350))
-((-1588 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-350 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
-(-13 (-333 |#1|) (-10 -7 (-15 -1588 ((-965 (-1129))))))
-((-3615 (((-777) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) 61)) (-2939 (((-965 (-1129)) (-1182 |#1|)) 111)) (-4174 (((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) (-1182 |#1|)) 102)) (-2181 (((-695 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) 113)) (-3761 (((-3 (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) "failed") (-928)) 13)) (-2871 (((-3 (-1182 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) (-928)) 18)))
-(((-351 |#1|) (-10 -7 (-15 -2939 ((-965 (-1129)) (-1182 |#1|))) (-15 -4174 ((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) (-1182 |#1|))) (-15 -2181 ((-695 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -3615 ((-777) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -3761 ((-3 (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) "failed") (-928))) (-15 -2871 ((-3 (-1182 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) (-928)))) (-354)) (T -351))
-((-2871 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-3 (-1182 *4) (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129))))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-3761 (*1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-5 *2 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129)))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-3615 (*1 *2 *3) (-12 (-5 *3 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-777)) (-5 *1 (-351 *4)))) (-2181 (*1 *2 *3) (-12 (-5 *3 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))) (-4174 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129)))))) (-5 *1 (-351 *4)))) (-2939 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129))) (-5 *1 (-351 *4)))))
-(-10 -7 (-15 -2939 ((-965 (-1129)) (-1182 |#1|))) (-15 -4174 ((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) (-1182 |#1|))) (-15 -2181 ((-695 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -3615 ((-777) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -3761 ((-3 (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) "failed") (-928))) (-15 -2871 ((-3 (-1182 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) (-928))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1186)) $) NIL)) (-4143 (((-112)) 96) (((-112) (-112)) 97)) (-3593 (((-650 (-618 $)) $) NIL)) (-2735 (($ $) NIL)) (-2602 (($ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4284 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-3754 (($ $) NIL)) (-2712 (($ $) NIL)) (-2579 (($ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-618 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-320 |#3|)) 76) (((-3 $ "failed") (-1186)) 103) (((-3 $ "failed") (-320 (-570))) 64 (|has| |#3| (-1047 (-570)))) (((-3 $ "failed") (-413 (-959 (-570)))) 70 (|has| |#3| (-1047 (-570)))) (((-3 $ "failed") (-959 (-570))) 65 (|has| |#3| (-1047 (-570)))) (((-3 $ "failed") (-320 (-384))) 94 (|has| |#3| (-1047 (-384)))) (((-3 $ "failed") (-413 (-959 (-384)))) 88 (|has| |#3| (-1047 (-384)))) (((-3 $ "failed") (-959 (-384))) 83 (|has| |#3| (-1047 (-384))))) (-3080 (((-618 $) $) NIL) ((|#3| $) NIL) (($ (-320 |#3|)) 77) (($ (-1186)) 104) (($ (-320 (-570))) 66 (|has| |#3| (-1047 (-570)))) (($ (-413 (-959 (-570)))) 71 (|has| |#3| (-1047 (-570)))) (($ (-959 (-570))) 67 (|has| |#3| (-1047 (-570)))) (($ (-320 (-384))) 95 (|has| |#3| (-1047 (-384)))) (($ (-413 (-959 (-384)))) 89 (|has| |#3| (-1047 (-384)))) (($ (-959 (-384))) 85 (|has| |#3| (-1047 (-384))))) (-2937 (((-3 $ "failed") $) NIL)) (-1315 (($) 101)) (-2506 (($ $) NIL) (($ (-650 $)) NIL)) (-1941 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) NIL)) (-4340 (((-112) $) NIL)) (-1958 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-2462 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) NIL)) (-2814 (((-3 (-618 $) "failed") $) NIL)) (-1348 (($ $) 99)) (-2635 (($ $) NIL)) (-4268 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) NIL)) (-1361 (($ (-115) $) 98) (($ (-115) (-650 $)) NIL)) (-4198 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1435 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-3953 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-4388 (($ $) NIL)) (-1739 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1731 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL)) (-1877 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2008 (($ $) NIL) (($ $ $) NIL)) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-3597 (($ $) NIL (|has| $ (-1058)))) (-2723 (($ $) NIL)) (-2590 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-618 $)) NIL) (($ |#3|) NIL) (($ (-570)) NIL) (((-320 |#3|) $) 102)) (-1609 (((-777)) NIL T CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-2818 (((-112) (-115)) NIL)) (-3866 (((-112) $ $) NIL)) (-2671 (($ $) NIL)) (-2647 (($ $) NIL)) (-2660 (($ $) NIL)) (-1367 (($ $) NIL)) (-1814 (($) 100 T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
+(((-344 |#1| |#2| |#3|) (-13 (-306) (-38 |#3|) (-1047 |#3|) (-907 (-1186)) (-10 -8 (-15 -3080 ($ (-320 |#3|))) (-15 -4379 ((-3 $ "failed") (-320 |#3|))) (-15 -3080 ($ (-1186))) (-15 -4379 ((-3 $ "failed") (-1186))) (-15 -3735 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3080 ($ (-320 (-570)))) (-15 -4379 ((-3 $ "failed") (-320 (-570)))) (-15 -3080 ($ (-413 (-959 (-570))))) (-15 -4379 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3080 ($ (-959 (-570)))) (-15 -4379 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3080 ($ (-320 (-384)))) (-15 -4379 ((-3 $ "failed") (-320 (-384)))) (-15 -3080 ($ (-413 (-959 (-384))))) (-15 -4379 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3080 ($ (-959 (-384)))) (-15 -4379 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -1367 ($ $)) (-15 -3754 ($ $)) (-15 -4388 ($ $)) (-15 -2635 ($ $)) (-15 -1348 ($ $)) (-15 -2579 ($ $)) (-15 -2590 ($ $)) (-15 -2602 ($ $)) (-15 -2647 ($ $)) (-15 -2660 ($ $)) (-15 -2671 ($ $)) (-15 -2712 ($ $)) (-15 -2723 ($ $)) (-15 -2735 ($ $)) (-15 -1315 ($)) (-15 -1713 ((-650 (-1186)) $)) (-15 -4143 ((-112))) (-15 -4143 ((-112) (-112))))) (-650 (-1186)) (-650 (-1186)) (-393)) (T -344))
+((-3080 (*1 *1 *2) (-12 (-5 *2 (-320 *5)) (-4 *5 (-393)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 *5)) (-4 *5 (-393)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 *2)) (-14 *4 (-650 *2)) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 *2)) (-14 *4 (-650 *2)) (-4 *5 (-393)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-320 *5)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-570)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-570)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-570))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-570))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-384)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-384)))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-384))) (-5 *1 (-344 *3 *4 *5)) (-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-1367 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-3754 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-4388 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2635 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1348 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2579 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2590 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2602 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2647 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2660 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2671 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2712 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2723 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2735 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1315 (*1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1713 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-344 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-393)))) (-4143 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4143 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))))
+(-13 (-306) (-38 |#3|) (-1047 |#3|) (-907 (-1186)) (-10 -8 (-15 -3080 ($ (-320 |#3|))) (-15 -4379 ((-3 $ "failed") (-320 |#3|))) (-15 -3080 ($ (-1186))) (-15 -4379 ((-3 $ "failed") (-1186))) (-15 -3735 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3080 ($ (-320 (-570)))) (-15 -4379 ((-3 $ "failed") (-320 (-570)))) (-15 -3080 ($ (-413 (-959 (-570))))) (-15 -4379 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3080 ($ (-959 (-570)))) (-15 -4379 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3080 ($ (-320 (-384)))) (-15 -4379 ((-3 $ "failed") (-320 (-384)))) (-15 -3080 ($ (-413 (-959 (-384))))) (-15 -4379 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3080 ($ (-959 (-384)))) (-15 -4379 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -1367 ($ $)) (-15 -3754 ($ $)) (-15 -4388 ($ $)) (-15 -2635 ($ $)) (-15 -1348 ($ $)) (-15 -2579 ($ $)) (-15 -2590 ($ $)) (-15 -2602 ($ $)) (-15 -2647 ($ $)) (-15 -2660 ($ $)) (-15 -2671 ($ $)) (-15 -2712 ($ $)) (-15 -2723 ($ $)) (-15 -2735 ($ $)) (-15 -1315 ($)) (-15 -1713 ((-650 (-1186)) $)) (-15 -4143 ((-112))) (-15 -4143 ((-112) (-112)))))
+((-1352 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-345 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1352 (|#8| (-1 |#5| |#1|) |#4|))) (-1231) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|) (-1231) (-1253 |#5|) (-1253 (-413 |#6|)) (-347 |#5| |#6| |#7|)) (T -345))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1231)) (-4 *8 (-1231)) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *9 (-1253 *8)) (-4 *2 (-347 *8 *9 *10)) (-5 *1 (-345 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-347 *5 *6 *7)) (-4 *10 (-1253 (-413 *9))))))
+(-10 -7 (-15 -1352 (|#8| (-1 |#5| |#1|) |#4|)))
+((-3351 (((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) $) 39)) (-2125 (($ (-1277 (-413 |#3|)) (-1277 $)) NIL) (($ (-1277 (-413 |#3|))) NIL) (($ (-1277 |#3|) |#3|) 177)) (-3664 (((-1277 $) (-1277 $)) 160)) (-1882 (((-650 (-650 |#2|))) 129)) (-3893 (((-112) |#2| |#2|) 76)) (-1767 (($ $) 151)) (-1697 (((-777)) 176)) (-3279 (((-1277 $) (-1277 $)) 222)) (-3492 (((-650 (-959 |#2|)) (-1186)) 118)) (-2790 (((-112) $) 173)) (-1724 (((-112) $) 27) (((-112) $ |#2|) 31) (((-112) $ |#3|) 226)) (-3495 (((-3 |#3| "failed")) 52)) (-2653 (((-777)) 188)) (-1877 ((|#2| $ |#2| |#2|) 143)) (-2243 (((-3 |#3| "failed")) 71)) (-3447 (($ $ (-1 (-413 |#3|) (-413 |#3|)) (-777)) NIL) (($ $ (-1 (-413 |#3|) (-413 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 230) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-1776 (((-1277 $) (-1277 $)) 166)) (-2312 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 68)) (-2016 (((-112)) 34)))
+(((-346 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -1882 ((-650 (-650 |#2|)))) (-15 -3492 ((-650 (-959 |#2|)) (-1186))) (-15 -2312 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3495 ((-3 |#3| "failed"))) (-15 -2243 ((-3 |#3| "failed"))) (-15 -1877 (|#2| |#1| |#2| |#2|)) (-15 -1767 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1724 ((-112) |#1| |#3|)) (-15 -1724 ((-112) |#1| |#2|)) (-15 -2125 (|#1| (-1277 |#3|) |#3|)) (-15 -3351 ((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -3664 ((-1277 |#1|) (-1277 |#1|))) (-15 -3279 ((-1277 |#1|) (-1277 |#1|))) (-15 -1776 ((-1277 |#1|) (-1277 |#1|))) (-15 -1724 ((-112) |#1|)) (-15 -2790 ((-112) |#1|)) (-15 -3893 ((-112) |#2| |#2|)) (-15 -2016 ((-112))) (-15 -2653 ((-777))) (-15 -1697 ((-777))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -2125 (|#1| (-1277 (-413 |#3|)))) (-15 -2125 (|#1| (-1277 (-413 |#3|)) (-1277 |#1|)))) (-347 |#2| |#3| |#4|) (-1231) (-1253 |#2|) (-1253 (-413 |#3|))) (T -346))
+((-1697 (*1 *2) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))) (-2653 (*1 *2) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))) (-2016 (*1 *2) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-112)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))) (-3893 (*1 *2 *3 *3) (-12 (-4 *3 (-1231)) (-4 *5 (-1253 *3)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-112)) (-5 *1 (-346 *4 *3 *5 *6)) (-4 *4 (-347 *3 *5 *6)))) (-2243 (*1 *2) (|partial| -12 (-4 *4 (-1231)) (-4 *5 (-1253 (-413 *2))) (-4 *2 (-1253 *4)) (-5 *1 (-346 *3 *4 *2 *5)) (-4 *3 (-347 *4 *2 *5)))) (-3495 (*1 *2) (|partial| -12 (-4 *4 (-1231)) (-4 *5 (-1253 (-413 *2))) (-4 *2 (-1253 *4)) (-5 *1 (-346 *3 *4 *2 *5)) (-4 *3 (-347 *4 *2 *5)))) (-3492 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *5 (-1231)) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-5 *2 (-650 (-959 *5))) (-5 *1 (-346 *4 *5 *6 *7)) (-4 *4 (-347 *5 *6 *7)))) (-1882 (*1 *2) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-650 (-650 *4))) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6)))))
+(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -1882 ((-650 (-650 |#2|)))) (-15 -3492 ((-650 (-959 |#2|)) (-1186))) (-15 -2312 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3495 ((-3 |#3| "failed"))) (-15 -2243 ((-3 |#3| "failed"))) (-15 -1877 (|#2| |#1| |#2| |#2|)) (-15 -1767 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1724 ((-112) |#1| |#3|)) (-15 -1724 ((-112) |#1| |#2|)) (-15 -2125 (|#1| (-1277 |#3|) |#3|)) (-15 -3351 ((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -3664 ((-1277 |#1|) (-1277 |#1|))) (-15 -3279 ((-1277 |#1|) (-1277 |#1|))) (-15 -1776 ((-1277 |#1|) (-1277 |#1|))) (-15 -1724 ((-112) |#1|)) (-15 -2790 ((-112) |#1|)) (-15 -3893 ((-112) |#2| |#2|)) (-15 -2016 ((-112))) (-15 -2653 ((-777))) (-15 -1697 ((-777))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3447 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -2125 (|#1| (-1277 (-413 |#3|)))) (-15 -2125 (|#1| (-1277 (-413 |#3|)) (-1277 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3351 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 204)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 102 (|has| (-413 |#2|) (-368)))) (-1345 (($ $) 103 (|has| (-413 |#2|) (-368)))) (-1372 (((-112) $) 105 (|has| (-413 |#2|) (-368)))) (-4084 (((-695 (-413 |#2|)) (-1277 $)) 53) (((-695 (-413 |#2|))) 68)) (-3071 (((-413 |#2|) $) 59)) (-2756 (((-1199 (-928) (-777)) (-570)) 155 (|has| (-413 |#2|) (-354)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 122 (|has| (-413 |#2|) (-368)))) (-1378 (((-424 $) $) 123 (|has| (-413 |#2|) (-368)))) (-2707 (((-112) $ $) 113 (|has| (-413 |#2|) (-368)))) (-3403 (((-777)) 96 (|has| (-413 |#2|) (-373)))) (-3941 (((-112)) 221)) (-3562 (((-112) |#1|) 220) (((-112) |#2|) 219)) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 178 (|has| (-413 |#2|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-3 (-413 |#2|) "failed") $) 173)) (-3080 (((-570) $) 177 (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) 174)) (-2125 (($ (-1277 (-413 |#2|)) (-1277 $)) 55) (($ (-1277 (-413 |#2|))) 71) (($ (-1277 |#2|) |#2|) 203)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| (-413 |#2|) (-354)))) (-2372 (($ $ $) 117 (|has| (-413 |#2|) (-368)))) (-2443 (((-695 (-413 |#2|)) $ (-1277 $)) 60) (((-695 (-413 |#2|)) $) 66)) (-1836 (((-695 (-570)) (-695 $)) 172 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) 170) (((-695 (-413 |#2|)) (-695 $)) 169)) (-3664 (((-1277 $) (-1277 $)) 209)) (-3529 (($ |#3|) 166) (((-3 $ "failed") (-413 |#3|)) 163 (|has| (-413 |#2|) (-368)))) (-2937 (((-3 $ "failed") $) 37)) (-1882 (((-650 (-650 |#1|))) 190 (|has| |#1| (-373)))) (-3893 (((-112) |#1| |#1|) 225)) (-3933 (((-928)) 61)) (-3336 (($) 99 (|has| (-413 |#2|) (-373)))) (-2913 (((-112)) 218)) (-2899 (((-112) |#1|) 217) (((-112) |#2|) 216)) (-2382 (($ $ $) 116 (|has| (-413 |#2|) (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 111 (|has| (-413 |#2|) (-368)))) (-1767 (($ $) 196)) (-4181 (($) 157 (|has| (-413 |#2|) (-354)))) (-2006 (((-112) $) 158 (|has| (-413 |#2|) (-354)))) (-1901 (($ $ (-777)) 149 (|has| (-413 |#2|) (-354))) (($ $) 148 (|has| (-413 |#2|) (-354)))) (-4037 (((-112) $) 124 (|has| (-413 |#2|) (-368)))) (-4331 (((-928) $) 160 (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) 146 (|has| (-413 |#2|) (-354)))) (-4340 (((-112) $) 35)) (-1697 (((-777)) 228)) (-3279 (((-1277 $) (-1277 $)) 210)) (-2771 (((-413 |#2|) $) 58)) (-3492 (((-650 (-959 |#1|)) (-1186)) 191 (|has| |#1| (-368)))) (-3584 (((-3 $ "failed") $) 150 (|has| (-413 |#2|) (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| (-413 |#2|) (-368)))) (-2399 ((|#3| $) 51 (|has| (-413 |#2|) (-368)))) (-2332 (((-928) $) 98 (|has| (-413 |#2|) (-373)))) (-3514 ((|#3| $) 164)) (-1847 (($ (-650 $)) 109 (|has| (-413 |#2|) (-368))) (($ $ $) 108 (|has| (-413 |#2|) (-368)))) (-4268 (((-1168) $) 10)) (-2654 (((-695 (-413 |#2|))) 205)) (-4305 (((-695 (-413 |#2|))) 207)) (-1826 (($ $) 125 (|has| (-413 |#2|) (-368)))) (-2646 (($ (-1277 |#2|) |#2|) 201)) (-2792 (((-695 (-413 |#2|))) 206)) (-3795 (((-695 (-413 |#2|))) 208)) (-1684 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 200)) (-3658 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 202)) (-1555 (((-1277 $)) 214)) (-3705 (((-1277 $)) 215)) (-2790 (((-112) $) 213)) (-1724 (((-112) $) 212) (((-112) $ |#1|) 199) (((-112) $ |#2|) 198)) (-2315 (($) 151 (|has| (-413 |#2|) (-354)) CONST)) (-2160 (($ (-928)) 97 (|has| (-413 |#2|) (-373)))) (-3495 (((-3 |#2| "failed")) 193)) (-3479 (((-1129) $) 11)) (-2653 (((-777)) 227)) (-2340 (($) 168)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| (-413 |#2|) (-368)))) (-1874 (($ (-650 $)) 107 (|has| (-413 |#2|) (-368))) (($ $ $) 106 (|has| (-413 |#2|) (-368)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 154 (|has| (-413 |#2|) (-354)))) (-3739 (((-424 $) $) 121 (|has| (-413 |#2|) (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 118 (|has| (-413 |#2|) (-368)))) (-2406 (((-3 $ "failed") $ $) 101 (|has| (-413 |#2|) (-368)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| (-413 |#2|) (-368)))) (-2547 (((-777) $) 114 (|has| (-413 |#2|) (-368)))) (-1877 ((|#1| $ |#1| |#1|) 195)) (-2243 (((-3 |#2| "failed")) 194)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 115 (|has| (-413 |#2|) (-368)))) (-3290 (((-413 |#2|) (-1277 $)) 54) (((-413 |#2|)) 67)) (-3156 (((-777) $) 159 (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) 147 (|has| (-413 |#2|) (-354)))) (-3447 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) 131 (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) 130 (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) 197) (($ $ (-650 (-1186)) (-650 (-777))) 138 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 139 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 140 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 141 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 143 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 145 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2100 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) 162 (|has| (-413 |#2|) (-368)))) (-3597 ((|#3|) 167)) (-3929 (($) 156 (|has| (-413 |#2|) (-354)))) (-1533 (((-1277 (-413 |#2|)) $ (-1277 $)) 57) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) 56) (((-1277 (-413 |#2|)) $) 73) (((-695 (-413 |#2|)) (-1277 $)) 72)) (-1417 (((-1277 (-413 |#2|)) $) 70) (($ (-1277 (-413 |#2|))) 69) ((|#3| $) 179) (($ |#3|) 165)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 153 (|has| (-413 |#2|) (-354)))) (-1776 (((-1277 $) (-1277 $)) 211)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 |#2|)) 44) (($ (-413 (-570))) 95 (-2740 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-1047 (-413 (-570)))))) (($ $) 100 (|has| (-413 |#2|) (-368)))) (-3127 (($ $) 152 (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) 50 (|has| (-413 |#2|) (-146)))) (-3641 ((|#3| $) 52)) (-1609 (((-777)) 32 T CONST)) (-3691 (((-112)) 224)) (-2958 (((-112) |#1|) 223) (((-112) |#2|) 222)) (-3866 (((-112) $ $) 9)) (-2003 (((-1277 $)) 74)) (-2795 (((-112) $ $) 104 (|has| (-413 |#2|) (-368)))) (-2312 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 192)) (-2016 (((-112)) 226)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) 133 (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) 132 (|has| (-413 |#2|) (-368))) (($ $ (-650 (-1186)) (-650 (-777))) 134 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 135 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 136 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 137 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1765 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 142 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 144 (-2740 (-1765 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1765 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 129 (|has| (-413 |#2|) (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 126 (|has| (-413 |#2|) (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 |#2|)) 46) (($ (-413 |#2|) $) 45) (($ (-413 (-570)) $) 128 (|has| (-413 |#2|) (-368))) (($ $ (-413 (-570))) 127 (|has| (-413 |#2|) (-368)))))
+(((-347 |#1| |#2| |#3|) (-141) (-1231) (-1253 |t#1|) (-1253 (-413 |t#2|))) (T -347))
+((-1697 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))) (-2653 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))) (-2016 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-3893 (*1 *2 *3 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-3691 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2958 (*1 *2 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2958 (*1 *2 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112)))) (-3941 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-3562 (*1 *2 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-3562 (*1 *2 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112)))) (-2913 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2899 (*1 *2 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2899 (*1 *2 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112)))) (-3705 (*1 *2) (-12 (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)))) (-1555 (*1 *2) (-12 (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)))) (-2790 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1724 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1776 (*1 *2 *2) (-12 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))) (-3279 (*1 *2 *2) (-12 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))) (-3664 (*1 *2 *2) (-12 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))) (-3795 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-4305 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-2792 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-2654 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))) (-3351 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-2 (|:| |num| (-1277 *4)) (|:| |den| *4))))) (-2125 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1253 *4)) (-4 *4 (-1231)) (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1253 (-413 *3))))) (-3658 (*1 *2 *1) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-2 (|:| |num| (-1277 *4)) (|:| |den| *4))))) (-2646 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1253 *4)) (-4 *4 (-1231)) (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1253 (-413 *3))))) (-1684 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-2 (|:| |num| (-695 *5)) (|:| |den| *5))))) (-1724 (*1 *2 *1 *3) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1724 (*1 *2 *1 *3) (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))) (-1767 (*1 *1 *1) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))))) (-1877 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))))) (-2243 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231)) (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))) (-3495 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231)) (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))) (-2312 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-1231)) (-4 *6 (-1253 (-413 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-347 *4 *5 *6)))) (-3492 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-4 *4 (-368)) (-5 *2 (-650 (-959 *4))))) (-1882 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-4 *3 (-373)) (-5 *2 (-650 (-650 *3))))))
+(-13 (-730 (-413 |t#2|) |t#3|) (-10 -8 (-15 -1697 ((-777))) (-15 -2653 ((-777))) (-15 -2016 ((-112))) (-15 -3893 ((-112) |t#1| |t#1|)) (-15 -3691 ((-112))) (-15 -2958 ((-112) |t#1|)) (-15 -2958 ((-112) |t#2|)) (-15 -3941 ((-112))) (-15 -3562 ((-112) |t#1|)) (-15 -3562 ((-112) |t#2|)) (-15 -2913 ((-112))) (-15 -2899 ((-112) |t#1|)) (-15 -2899 ((-112) |t#2|)) (-15 -3705 ((-1277 $))) (-15 -1555 ((-1277 $))) (-15 -2790 ((-112) $)) (-15 -1724 ((-112) $)) (-15 -1776 ((-1277 $) (-1277 $))) (-15 -3279 ((-1277 $) (-1277 $))) (-15 -3664 ((-1277 $) (-1277 $))) (-15 -3795 ((-695 (-413 |t#2|)))) (-15 -4305 ((-695 (-413 |t#2|)))) (-15 -2792 ((-695 (-413 |t#2|)))) (-15 -2654 ((-695 (-413 |t#2|)))) (-15 -3351 ((-2 (|:| |num| (-1277 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2125 ($ (-1277 |t#2|) |t#2|)) (-15 -3658 ((-2 (|:| |num| (-1277 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2646 ($ (-1277 |t#2|) |t#2|)) (-15 -1684 ((-2 (|:| |num| (-695 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -1724 ((-112) $ |t#1|)) (-15 -1724 ((-112) $ |t#2|)) (-15 -3447 ($ $ (-1 |t#2| |t#2|))) (-15 -1767 ($ $)) (-15 -1877 (|t#1| $ |t#1| |t#1|)) (-15 -2243 ((-3 |t#2| "failed"))) (-15 -3495 ((-3 |t#2| "failed"))) (-15 -2312 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-368)) (-15 -3492 ((-650 (-959 |t#1|)) (-1186))) |%noBranch|) (IF (|has| |t#1| (-373)) (-15 -1882 ((-650 (-650 |t#1|)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-38 #1=(-413 |#2|)) . T) ((-38 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-102) . T) ((-111 #0# #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-146))) ((-148) |has| (-413 |#2|) (-148)) ((-622 #0#) -2740 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-622 #1#) . T) ((-622 (-570)) . T) ((-622 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#3|) . T) ((-233 #1#) |has| (-413 |#2|) (-368)) ((-235) -2740 (|has| (-413 |#2|) (-354)) (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368)))) ((-245) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-294) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-311) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-368) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-408) |has| (-413 |#2|) (-354)) ((-373) -2740 (|has| (-413 |#2|) (-373)) (|has| (-413 |#2|) (-354))) ((-354) |has| (-413 |#2|) (-354)) ((-375 #1# |#3|) . T) ((-415 #1# |#3|) . T) ((-382 #1#) . T) ((-417 #1#) . T) ((-458) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-562) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #1#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-654 #1#) . T) ((-654 $) . T) ((-646 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-646 #1#) . T) ((-646 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-645 #1#) . T) ((-645 (-570)) |has| (-413 |#2|) (-645 (-570))) ((-723 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-723 #1#) . T) ((-723 $) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-730 #1# |#3|) . T) ((-732) . T) ((-907 (-1186)) -12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) ((-927) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1047 (-413 (-570))) |has| (-413 |#2|) (-1047 (-413 (-570)))) ((-1047 #1#) . T) ((-1047 (-570)) |has| (-413 |#2|) (-1047 (-570))) ((-1060 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1060 #1#) . T) ((-1060 $) . T) ((-1065 #0#) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1065 #1#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| (-413 |#2|) (-354)) ((-1231) -2740 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-917 |#1|) "failed") $) NIL)) (-3080 (((-917 |#1|) $) NIL)) (-2125 (($ (-1277 (-917 |#1|))) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-917 |#1|) (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| (-917 |#1|) (-373)))) (-2006 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| (-917 |#1|) (-373)))) (-2888 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2771 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2332 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-4044 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-2070 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-4258 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-3100 (((-965 (-1129))) NIL)) (-2340 (($) NIL (|has| (-917 |#1|) (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 (-917 |#1|))) NIL)) (-3929 (($) NIL (|has| (-917 |#1|) (-373)))) (-2520 (($) NIL (|has| (-917 |#1|) (-373)))) (-1533 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3127 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-917 |#1|)) NIL) (($ (-917 |#1|) $) NIL)))
+(((-348 |#1| |#2|) (-13 (-333 (-917 |#1|)) (-10 -7 (-15 -3100 ((-965 (-1129)))))) (-928) (-928)) (T -348))
+((-3100 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-348 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))))
+(-13 (-333 (-917 |#1|)) (-10 -7 (-15 -3100 ((-965 (-1129))))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 58)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) 56 (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 142)) (-3080 ((|#1| $) 113)) (-2125 (($ (-1277 |#1|)) 130)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 121 (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) 124 (|has| |#1| (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) 160 (|has| |#1| (-373)))) (-2006 (((-112) $) 66 (|has| |#1| (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) 60 (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) 62)) (-1518 (($) 162 (|has| |#1| (-373)))) (-2888 (((-112) $) NIL (|has| |#1| (-373)))) (-2771 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 |#1|) $) 117) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2332 (((-928) $) 171 (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 178)) (-2315 (($) NIL (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) 96 (|has| |#1| (-373)))) (-2699 (((-112) $) 147)) (-3479 (((-1129) $) NIL)) (-3100 (((-965 (-1129))) 57)) (-2340 (($) 158 (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 119 (|has| |#1| (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) 90) (((-928)) 91)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) 161 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 154 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 |#1|)) 122)) (-3929 (($) 159 (|has| |#1| (-373)))) (-2520 (($) 167 (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) 77) (((-695 |#1|) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) 174) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 100)) (-3127 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) 155 T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) 144) (((-1277 $) (-928)) 98)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) 67 T CONST)) (-1824 (($) 103 T CONST)) (-2984 (($ $) 107 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) 65)) (-2975 (($ $ $) 176) (($ $ |#1|) 177)) (-2965 (($ $) 157) (($ $ $) NIL)) (-2953 (($ $ $) 86)) (** (($ $ (-928)) 180) (($ $ (-777)) 181) (($ $ (-570)) 179)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 102) (($ $ $) 101) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 175)))
+(((-349 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -3100 ((-965 (-1129)))))) (-354) (-1182 |#1|)) (T -349))
+((-3100 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-349 *3 *4)) (-4 *3 (-354)) (-14 *4 (-1182 *3)))))
+(-13 (-333 |#1|) (-10 -7 (-15 -3100 ((-965 (-1129))))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2125 (($ (-1277 |#1|)) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| |#1| (-373)))) (-2006 (((-112) $) NIL (|has| |#1| (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| |#1| (-373)))) (-2888 (((-112) $) NIL (|has| |#1| (-373)))) (-2771 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-3100 (((-965 (-1129))) NIL)) (-2340 (($) NIL (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| |#1| (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 |#1|)) NIL)) (-3929 (($) NIL (|has| |#1| (-373)))) (-2520 (($) NIL (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3127 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-350 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -3100 ((-965 (-1129)))))) (-354) (-928)) (T -350))
+((-3100 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-350 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
+(-13 (-333 |#1|) (-10 -7 (-15 -3100 ((-965 (-1129))))))
+((-4326 (((-777) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) 61)) (-4021 (((-965 (-1129)) (-1182 |#1|)) 111)) (-1804 (((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) (-1182 |#1|)) 102)) (-4115 (((-695 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) 113)) (-2018 (((-3 (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) "failed") (-928)) 13)) (-3440 (((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) (-928)) 18)))
+(((-351 |#1|) (-10 -7 (-15 -4021 ((-965 (-1129)) (-1182 |#1|))) (-15 -1804 ((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) (-1182 |#1|))) (-15 -4115 ((-695 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -4326 ((-777) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -2018 ((-3 (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) "failed") (-928))) (-15 -3440 ((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) (-928)))) (-354)) (T -351))
+((-3440 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-3 (-1182 *4) (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129))))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-2018 (*1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-5 *2 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129)))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-4326 (*1 *2 *3) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-777)) (-5 *1 (-351 *4)))) (-4115 (*1 *2 *3) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))) (-1804 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129)))))) (-5 *1 (-351 *4)))) (-4021 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129))) (-5 *1 (-351 *4)))))
+(-10 -7 (-15 -4021 ((-965 (-1129)) (-1182 |#1|))) (-15 -1804 ((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) (-1182 |#1|))) (-15 -4115 ((-695 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -4326 ((-777) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -2018 ((-3 (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) "failed") (-928))) (-15 -3440 ((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) (-928))))
((-3735 ((|#1| |#3|) 106) ((|#3| |#1|) 89)))
(((-352 |#1| |#2| |#3|) (-10 -7 (-15 -3735 (|#3| |#1|)) (-15 -3735 (|#1| |#3|))) (-333 |#2|) (-354) (-333 |#2|)) (T -352))
((-3735 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *2 (-333 *4)) (-5 *1 (-352 *2 *4 *3)) (-4 *3 (-333 *4)))) (-3735 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *2 (-333 *4)) (-5 *1 (-352 *3 *4 *2)) (-4 *3 (-333 *4)))))
(-10 -7 (-15 -3735 (|#3| |#1|)) (-15 -3735 (|#1| |#3|)))
-((-2036 (((-112) $) 60)) (-3157 (((-839 (-928)) $) 23) (((-928) $) 66)) (-2885 (((-3 $ "failed") $) 18)) (-2314 (($) 9)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 116)) (-2845 (((-3 (-777) "failed") $ $) 94) (((-777) $) 81)) (-3447 (($ $ (-777)) NIL) (($ $) 8)) (-2163 (($) 53)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 38)) (-1918 (((-3 $ "failed") $) 45) (($ $) 44)))
-(((-353 |#1|) (-10 -8 (-15 -3157 ((-928) |#1|)) (-15 -2845 ((-777) |#1|)) (-15 -2036 ((-112) |#1|)) (-15 -2163 (|#1|)) (-15 -4057 ((-3 (-1276 |#1|) "failed") (-695 |#1|))) (-15 -1918 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -2845 ((-3 (-777) "failed") |#1| |#1|)) (-15 -3157 ((-839 (-928)) |#1|)) (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-354)) (T -353))
+((-2006 (((-112) $) 60)) (-4331 (((-839 (-928)) $) 23) (((-928) $) 66)) (-3584 (((-3 $ "failed") $) 18)) (-2315 (($) 9)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 116)) (-3156 (((-3 (-777) "failed") $ $) 94) (((-777) $) 81)) (-3447 (($ $ (-777)) NIL) (($ $) 8)) (-3929 (($) 53)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 38)) (-3127 (((-3 $ "failed") $) 45) (($ $) 44)))
+(((-353 |#1|) (-10 -8 (-15 -4331 ((-928) |#1|)) (-15 -3156 ((-777) |#1|)) (-15 -2006 ((-112) |#1|)) (-15 -3929 (|#1|)) (-15 -3032 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3127 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -3156 ((-3 (-777) "failed") |#1| |#1|)) (-15 -4331 ((-839 (-928)) |#1|)) (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-354)) (T -353))
NIL
-(-10 -8 (-15 -3157 ((-928) |#1|)) (-15 -2845 ((-777) |#1|)) (-15 -2036 ((-112) |#1|)) (-15 -2163 (|#1|)) (-15 -4057 ((-3 (-1276 |#1|) "failed") (-695 |#1|))) (-15 -1918 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -2845 ((-3 (-777) "failed") |#1| |#1|)) (-15 -3157 ((-839 (-928)) |#1|)) (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-4029 (((-1199 (-928) (-777)) (-570)) 101)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-4339 (((-112) $ $) 65)) (-3403 (((-777)) 111)) (-2450 (($) 18 T CONST)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 95)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-3336 (($) 114)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-2493 (($) 99)) (-2036 (((-112) $) 98)) (-2774 (($ $) 87) (($ $ (-777)) 86)) (-1552 (((-112) $) 79)) (-3157 (((-839 (-928)) $) 89) (((-928) $) 96)) (-2081 (((-112) $) 35)) (-2885 (((-3 $ "failed") $) 110)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-2367 (((-928) $) 113)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-2314 (($) 109 T CONST)) (-2159 (($ (-928)) 112)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 102)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-2845 (((-3 (-777) "failed") $ $) 88) (((-777) $) 97)) (-3447 (($ $ (-777)) 107) (($ $) 105)) (-2163 (($) 100)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 103)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-1918 (((-3 $ "failed") $) 90) (($ $) 104)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-777)) 108) (($ $) 106)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+(-10 -8 (-15 -4331 ((-928) |#1|)) (-15 -3156 ((-777) |#1|)) (-15 -2006 ((-112) |#1|)) (-15 -3929 (|#1|)) (-15 -3032 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3127 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -3156 ((-3 (-777) "failed") |#1| |#1|)) (-15 -4331 ((-839 (-928)) |#1|)) (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-2756 (((-1199 (-928) (-777)) (-570)) 101)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-2707 (((-112) $ $) 65)) (-3403 (((-777)) 111)) (-3761 (($) 18 T CONST)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 95)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-3336 (($) 114)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4181 (($) 99)) (-2006 (((-112) $) 98)) (-1901 (($ $) 87) (($ $ (-777)) 86)) (-4037 (((-112) $) 79)) (-4331 (((-839 (-928)) $) 89) (((-928) $) 96)) (-4340 (((-112) $) 35)) (-3584 (((-3 $ "failed") $) 110)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-2332 (((-928) $) 113)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-2315 (($) 109 T CONST)) (-2160 (($ (-928)) 112)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 102)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3156 (((-3 (-777) "failed") $ $) 88) (((-777) $) 97)) (-3447 (($ $ (-777)) 107) (($ $) 105)) (-3929 (($) 100)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 103)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3127 (((-3 $ "failed") $) 90) (($ $) 104)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-777)) 108) (($ $) 106)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-354) (-141)) (T -354))
-((-1918 (*1 *1 *1) (-4 *1 (-354))) (-4057 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1276 *1)))) (-2460 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))))) (-4029 (*1 *2 *3) (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))) (-2163 (*1 *1) (-4 *1 (-354))) (-2493 (*1 *1) (-4 *1 (-354))) (-2036 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-112)))) (-2845 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777)))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-928)))) (-3131 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-408) (-373) (-1161) (-235) (-10 -8 (-15 -1918 ($ $)) (-15 -4057 ((-3 (-1276 $) "failed") (-695 $))) (-15 -2460 ((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570)))))) (-15 -4029 ((-1199 (-928) (-777)) (-570))) (-15 -2163 ($)) (-15 -2493 ($)) (-15 -2036 ((-112) $)) (-15 -2845 ((-777) $)) (-15 -3157 ((-928) $)) (-15 -3131 ((-3 "prime" "polynomial" "normal" "cyclic")))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-235) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-408) . T) ((-373) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) . T) ((-1230) . T))
-((-2196 (((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|) 55)) (-3223 (((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 53)))
-(((-355 |#1| |#2| |#3|) (-10 -7 (-15 -3223 ((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -2196 ((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|))) (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))) (-1252 |#1|) (-415 |#1| |#2|)) (T -355))
-((-2196 (*1 *2 *3) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *2 (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3223 (*1 *2) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *2 (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
-(-10 -7 (-15 -3223 ((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -2196 ((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3615 (((-777)) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-917 |#1|) "failed") $) NIL)) (-3080 (((-917 |#1|) $) NIL)) (-2049 (($ (-1276 (-917 |#1|))) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-917 |#1|) (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| (-917 |#1|) (-373)))) (-2036 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| (-917 |#1|) (-373)))) (-3088 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2610 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2367 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-3587 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-1726 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-3609 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-3928 (((-1276 (-650 (-2 (|:| -2195 (-917 |#1|)) (|:| -2159 (-1129)))))) NIL)) (-1339 (((-695 (-917 |#1|))) NIL)) (-2339 (($) NIL (|has| (-917 |#1|) (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 (-917 |#1|))) NIL)) (-2163 (($) NIL (|has| (-917 |#1|) (-373)))) (-3046 (($) NIL (|has| (-917 |#1|) (-373)))) (-1807 (((-1276 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-1918 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-917 |#1|)) NIL) (($ (-917 |#1|) $) NIL)))
-(((-356 |#1| |#2|) (-13 (-333 (-917 |#1|)) (-10 -7 (-15 -3928 ((-1276 (-650 (-2 (|:| -2195 (-917 |#1|)) (|:| -2159 (-1129))))))) (-15 -1339 ((-695 (-917 |#1|)))) (-15 -3615 ((-777))))) (-928) (-928)) (T -356))
-((-3928 (*1 *2) (-12 (-5 *2 (-1276 (-650 (-2 (|:| -2195 (-917 *3)) (|:| -2159 (-1129)))))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-1339 (*1 *2) (-12 (-5 *2 (-695 (-917 *3))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3615 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))))
-(-13 (-333 (-917 |#1|)) (-10 -7 (-15 -3928 ((-1276 (-650 (-2 (|:| -2195 (-917 |#1|)) (|:| -2159 (-1129))))))) (-15 -1339 ((-695 (-917 |#1|)))) (-15 -3615 ((-777)))))
-((-2416 (((-112) $ $) 73)) (-4028 (((-112) $) 88)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 ((|#1| $) 106) (($ $ (-928)) 104 (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) 171 (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3615 (((-777)) 103)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) 188 (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 128)) (-3080 ((|#1| $) 105)) (-2049 (($ (-1276 |#1|)) 71)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 214 (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) 183 (|has| |#1| (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) 172 (|has| |#1| (-373)))) (-2036 (((-112) $) NIL (|has| |#1| (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) 114 (|has| |#1| (-373)))) (-3088 (((-112) $) 201 (|has| |#1| (-373)))) (-2610 ((|#1| $) 108) (($ $ (-928)) 107 (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 |#1|) $) 215) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2367 (((-928) $) 149 (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) 87 (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) 84 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 96 (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) 83 (|has| |#1| (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 219)) (-2314 (($) NIL (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) 151 (|has| |#1| (-373)))) (-2289 (((-112) $) 124)) (-3479 (((-1129) $) NIL)) (-3928 (((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) 97)) (-1339 (((-695 |#1|)) 101)) (-2339 (($) 110 (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 174 (|has| |#1| (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) 175)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) 75)) (-2886 (((-1182 |#1|)) 176)) (-2163 (($) 148 (|has| |#1| (-373)))) (-3046 (($) NIL (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) 122) (((-695 |#1|) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) 141) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 70)) (-1918 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) 181 T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) 198) (((-1276 $) (-928)) 117)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) 187 T CONST)) (-1823 (($) 162 T CONST)) (-3741 (($ $) 123 (|has| |#1| (-373))) (($ $ (-777)) 115 (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) 209)) (-2975 (($ $ $) 120) (($ $ |#1|) 121)) (-2965 (($ $) 203) (($ $ $) 207)) (-2954 (($ $ $) 205)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 154)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 212) (($ $ $) 165) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 119)))
-(((-357 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -3928 ((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -1339 ((-695 |#1|))) (-15 -3615 ((-777))))) (-354) (-3 (-1182 |#1|) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (T -357))
-((-3928 (*1 *2) (-12 (-5 *2 (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129)))))) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2)))) (-1339 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129))))))))) (-3615 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129))))))))))
-(-13 (-333 |#1|) (-10 -7 (-15 -3928 ((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -1339 ((-695 |#1|))) (-15 -3615 ((-777)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3615 (((-777)) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2049 (($ (-1276 |#1|)) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| |#1| (-373)))) (-2036 (((-112) $) NIL (|has| |#1| (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| |#1| (-373)))) (-3088 (((-112) $) NIL (|has| |#1| (-373)))) (-2610 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-3928 (((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129)))))) NIL)) (-1339 (((-695 |#1|)) NIL)) (-2339 (($) NIL (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| |#1| (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 |#1|)) NIL)) (-2163 (($) NIL (|has| |#1| (-373)))) (-3046 (($) NIL (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) NIL) (((-695 |#1|) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-1918 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-358 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -3928 ((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -1339 ((-695 |#1|))) (-15 -3615 ((-777))))) (-354) (-928)) (T -358))
-((-3928 (*1 *2) (-12 (-5 *2 (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129)))))) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-1339 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-3615 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
-(-13 (-333 |#1|) (-10 -7 (-15 -3928 ((-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))))) (-15 -1339 ((-695 |#1|))) (-15 -3615 ((-777)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-917 |#1|) "failed") $) NIL)) (-3080 (((-917 |#1|) $) NIL)) (-2049 (($ (-1276 (-917 |#1|))) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-917 |#1|) (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| (-917 |#1|) (-373)))) (-2036 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| (-917 |#1|) (-373)))) (-3088 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2610 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2367 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-3587 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-1726 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-3609 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2339 (($) NIL (|has| (-917 |#1|) (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 (-917 |#1|))) NIL)) (-2163 (($) NIL (|has| (-917 |#1|) (-373)))) (-3046 (($) NIL (|has| (-917 |#1|) (-373)))) (-1807 (((-1276 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-1918 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-917 |#1|)) NIL) (($ (-917 |#1|) $) NIL)))
+((-3127 (*1 *1 *1) (-4 *1 (-354))) (-3032 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1277 *1)))) (-3857 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))))) (-2756 (*1 *2 *3) (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))) (-3929 (*1 *1) (-4 *1 (-354))) (-4181 (*1 *1) (-4 *1 (-354))) (-2006 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-112)))) (-3156 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777)))) (-4331 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-928)))) (-2172 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-408) (-373) (-1161) (-235) (-10 -8 (-15 -3127 ($ $)) (-15 -3032 ((-3 (-1277 $) "failed") (-695 $))) (-15 -3857 ((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570)))))) (-15 -2756 ((-1199 (-928) (-777)) (-570))) (-15 -3929 ($)) (-15 -4181 ($)) (-15 -2006 ((-112) $)) (-15 -3156 ((-777) $)) (-15 -4331 ((-928) $)) (-15 -2172 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-235) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-408) . T) ((-373) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) . T) ((-1231) . T))
+((-4265 (((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|) 55)) (-3705 (((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 53)))
+(((-355 |#1| |#2| |#3|) (-10 -7 (-15 -3705 ((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -4265 ((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|))) (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))) (-1253 |#1|) (-415 |#1| |#2|)) (T -355))
+((-4265 (*1 *2 *3) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3705 (*1 *2) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(-10 -7 (-15 -3705 ((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -4265 ((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-4326 (((-777)) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-917 |#1|) "failed") $) NIL)) (-3080 (((-917 |#1|) $) NIL)) (-2125 (($ (-1277 (-917 |#1|))) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-917 |#1|) (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| (-917 |#1|) (-373)))) (-2006 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| (-917 |#1|) (-373)))) (-2888 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2771 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2332 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-4044 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-2070 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-4258 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-4242 (((-1277 (-650 (-2 (|:| -2196 (-917 |#1|)) (|:| -2160 (-1129)))))) NIL)) (-1904 (((-695 (-917 |#1|))) NIL)) (-2340 (($) NIL (|has| (-917 |#1|) (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 (-917 |#1|))) NIL)) (-3929 (($) NIL (|has| (-917 |#1|) (-373)))) (-2520 (($) NIL (|has| (-917 |#1|) (-373)))) (-1533 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3127 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-917 |#1|)) NIL) (($ (-917 |#1|) $) NIL)))
+(((-356 |#1| |#2|) (-13 (-333 (-917 |#1|)) (-10 -7 (-15 -4242 ((-1277 (-650 (-2 (|:| -2196 (-917 |#1|)) (|:| -2160 (-1129))))))) (-15 -1904 ((-695 (-917 |#1|)))) (-15 -4326 ((-777))))) (-928) (-928)) (T -356))
+((-4242 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2196 (-917 *3)) (|:| -2160 (-1129)))))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-1904 (*1 *2) (-12 (-5 *2 (-695 (-917 *3))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-4326 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))))
+(-13 (-333 (-917 |#1|)) (-10 -7 (-15 -4242 ((-1277 (-650 (-2 (|:| -2196 (-917 |#1|)) (|:| -2160 (-1129))))))) (-15 -1904 ((-695 (-917 |#1|)))) (-15 -4326 ((-777)))))
+((-2417 (((-112) $ $) 73)) (-2745 (((-112) $) 88)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 ((|#1| $) 106) (($ $ (-928)) 104 (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) 171 (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-4326 (((-777)) 103)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) 188 (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 128)) (-3080 ((|#1| $) 105)) (-2125 (($ (-1277 |#1|)) 71)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 214 (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) 183 (|has| |#1| (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) 172 (|has| |#1| (-373)))) (-2006 (((-112) $) NIL (|has| |#1| (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) 114 (|has| |#1| (-373)))) (-2888 (((-112) $) 201 (|has| |#1| (-373)))) (-2771 ((|#1| $) 108) (($ $ (-928)) 107 (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 |#1|) $) 215) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2332 (((-928) $) 149 (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) 87 (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) 84 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 96 (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) 83 (|has| |#1| (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 219)) (-2315 (($) NIL (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) 151 (|has| |#1| (-373)))) (-2699 (((-112) $) 124)) (-3479 (((-1129) $) NIL)) (-4242 (((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) 97)) (-1904 (((-695 |#1|)) 101)) (-2340 (($) 110 (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 174 (|has| |#1| (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) 175)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) 75)) (-3597 (((-1182 |#1|)) 176)) (-3929 (($) 148 (|has| |#1| (-373)))) (-2520 (($) NIL (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) 122) (((-695 |#1|) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) 141) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 70)) (-3127 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) 181 T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) 198) (((-1277 $) (-928)) 117)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) 187 T CONST)) (-1824 (($) 162 T CONST)) (-2984 (($ $) 123 (|has| |#1| (-373))) (($ $ (-777)) 115 (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) 209)) (-2975 (($ $ $) 120) (($ $ |#1|) 121)) (-2965 (($ $) 203) (($ $ $) 207)) (-2953 (($ $ $) 205)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 154)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 212) (($ $ $) 165) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 119)))
+(((-357 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -4242 ((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -1904 ((-695 |#1|))) (-15 -4326 ((-777))))) (-354) (-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (T -357))
+((-4242 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129)))))) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2)))) (-1904 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129))))))))) (-4326 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129))))))))))
+(-13 (-333 |#1|) (-10 -7 (-15 -4242 ((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -1904 ((-695 |#1|))) (-15 -4326 ((-777)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-4326 (((-777)) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2125 (($ (-1277 |#1|)) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| |#1| (-373)))) (-2006 (((-112) $) NIL (|has| |#1| (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| |#1| (-373)))) (-2888 (((-112) $) NIL (|has| |#1| (-373)))) (-2771 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-4242 (((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129)))))) NIL)) (-1904 (((-695 |#1|)) NIL)) (-2340 (($) NIL (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| |#1| (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 |#1|)) NIL)) (-3929 (($) NIL (|has| |#1| (-373)))) (-2520 (($) NIL (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3127 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-358 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -4242 ((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -1904 ((-695 |#1|))) (-15 -4326 ((-777))))) (-354) (-928)) (T -358))
+((-4242 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129)))))) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-1904 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-4326 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
+(-13 (-333 |#1|) (-10 -7 (-15 -4242 ((-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))))) (-15 -1904 ((-695 |#1|))) (-15 -4326 ((-777)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-917 |#1|) "failed") $) NIL)) (-3080 (((-917 |#1|) $) NIL)) (-2125 (($ (-1277 (-917 |#1|))) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-917 |#1|) (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| (-917 |#1|) (-373)))) (-2006 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| (-917 |#1|) (-373)))) (-2888 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2771 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2332 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-4044 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-2070 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-4258 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2340 (($) NIL (|has| (-917 |#1|) (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 (-917 |#1|))) NIL)) (-3929 (($) NIL (|has| (-917 |#1|) (-373)))) (-2520 (($) NIL (|has| (-917 |#1|) (-373)))) (-1533 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3127 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-917 |#1|)) NIL) (($ (-917 |#1|) $) NIL)))
(((-359 |#1| |#2|) (-333 (-917 |#1|)) (-928) (-928)) (T -359))
NIL
(-333 (-917 |#1|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) 132 (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) 158 (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 106)) (-3080 ((|#1| $) 103)) (-2049 (($ (-1276 |#1|)) 98)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 129 (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) 95 (|has| |#1| (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) 51 (|has| |#1| (-373)))) (-2036 (((-112) $) NIL (|has| |#1| (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) 133 (|has| |#1| (-373)))) (-3088 (((-112) $) 87 (|has| |#1| (-373)))) (-2610 ((|#1| $) 47) (($ $ (-928)) 52 (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 |#1|) $) 78) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2367 (((-928) $) 110 (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) 108 (|has| |#1| (-373)))) (-2289 (((-112) $) 160)) (-3479 (((-1129) $) NIL)) (-2339 (($) 44 (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 127 (|has| |#1| (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) 157)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) 70)) (-2886 (((-1182 |#1|)) 101)) (-2163 (($) 138 (|has| |#1| (-373)))) (-3046 (($) NIL (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) 66) (((-695 |#1|) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) 156) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 100)) (-1918 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) 162 T CONST)) (-1859 (((-112) $ $) 164)) (-2331 (((-1276 $)) 122) (((-1276 $) (-928)) 60)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) 124 T CONST)) (-1823 (($) 40 T CONST)) (-3741 (($ $) 81 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) 120)) (-2975 (($ $ $) 112) (($ $ |#1|) 113)) (-2965 (($ $) 93) (($ $ $) 118)) (-2954 (($ $ $) 116)) (** (($ $ (-928)) NIL) (($ $ (-777)) 55) (($ $ (-570)) 141)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 91) (($ $ $) 68) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 89)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) 132 (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) 158 (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 106)) (-3080 ((|#1| $) 103)) (-2125 (($ (-1277 |#1|)) 98)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 129 (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) 95 (|has| |#1| (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) 51 (|has| |#1| (-373)))) (-2006 (((-112) $) NIL (|has| |#1| (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) 133 (|has| |#1| (-373)))) (-2888 (((-112) $) 87 (|has| |#1| (-373)))) (-2771 ((|#1| $) 47) (($ $ (-928)) 52 (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 |#1|) $) 78) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2332 (((-928) $) 110 (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) 108 (|has| |#1| (-373)))) (-2699 (((-112) $) 160)) (-3479 (((-1129) $) NIL)) (-2340 (($) 44 (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 127 (|has| |#1| (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) 157)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) 70)) (-3597 (((-1182 |#1|)) 101)) (-3929 (($) 138 (|has| |#1| (-373)))) (-2520 (($) NIL (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) 66) (((-695 |#1|) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) 156) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 100)) (-3127 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) 162 T CONST)) (-3866 (((-112) $ $) 164)) (-2003 (((-1277 $)) 122) (((-1277 $) (-928)) 60)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) 124 T CONST)) (-1824 (($) 40 T CONST)) (-2984 (($ $) 81 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) 120)) (-2975 (($ $ $) 112) (($ $ |#1|) 113)) (-2965 (($ $) 93) (($ $ $) 118)) (-2953 (($ $ $) 116)) (** (($ $ (-928)) NIL) (($ $ (-777)) 55) (($ $ (-570)) 141)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 91) (($ $ $) 68) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 89)))
(((-360 |#1| |#2|) (-333 |#1|) (-354) (-1182 |#1|)) (T -360))
NIL
(-333 |#1|)
-((-3151 ((|#1| (-1182 |#2|)) 61)))
-(((-361 |#1| |#2|) (-10 -7 (-15 -3151 (|#1| (-1182 |#2|)))) (-13 (-408) (-10 -7 (-15 -3735 (|#1| |#2|)) (-15 -2367 ((-928) |#1|)) (-15 -2331 ((-1276 |#1|) (-928))) (-15 -3741 (|#1| |#1|)))) (-354)) (T -361))
-((-3151 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-4 *2 (-13 (-408) (-10 -7 (-15 -3735 (*2 *4)) (-15 -2367 ((-928) *2)) (-15 -2331 ((-1276 *2) (-928))) (-15 -3741 (*2 *2))))) (-5 *1 (-361 *2 *4)))))
-(-10 -7 (-15 -3151 (|#1| (-1182 |#2|))))
-((-3100 (((-965 (-1182 |#1|)) (-1182 |#1|)) 51)) (-3336 (((-1182 |#1|) (-928) (-928)) 158) (((-1182 |#1|) (-928)) 154)) (-2036 (((-112) (-1182 |#1|)) 110)) (-4155 (((-928) (-928)) 88)) (-2370 (((-928) (-928)) 95)) (-1503 (((-928) (-928)) 86)) (-3088 (((-112) (-1182 |#1|)) 114)) (-2128 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 139)) (-3323 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 144)) (-3459 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 143)) (-2487 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 142)) (-2909 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 134)) (-3973 (((-1182 |#1|) (-1182 |#1|)) 74)) (-4035 (((-1182 |#1|) (-928)) 149)) (-3953 (((-1182 |#1|) (-928)) 152)) (-4221 (((-1182 |#1|) (-928)) 151)) (-1923 (((-1182 |#1|) (-928)) 150)) (-3902 (((-1182 |#1|) (-928)) 147)))
-(((-362 |#1|) (-10 -7 (-15 -2036 ((-112) (-1182 |#1|))) (-15 -3088 ((-112) (-1182 |#1|))) (-15 -1503 ((-928) (-928))) (-15 -4155 ((-928) (-928))) (-15 -2370 ((-928) (-928))) (-15 -3902 ((-1182 |#1|) (-928))) (-15 -4035 ((-1182 |#1|) (-928))) (-15 -1923 ((-1182 |#1|) (-928))) (-15 -4221 ((-1182 |#1|) (-928))) (-15 -3953 ((-1182 |#1|) (-928))) (-15 -2909 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2128 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2487 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3459 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3323 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3336 ((-1182 |#1|) (-928))) (-15 -3336 ((-1182 |#1|) (-928) (-928))) (-15 -3973 ((-1182 |#1|) (-1182 |#1|))) (-15 -3100 ((-965 (-1182 |#1|)) (-1182 |#1|)))) (-354)) (T -362))
-((-3100 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4)) (-5 *3 (-1182 *4)))) (-3973 (*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3336 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3336 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3323 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3459 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2487 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2128 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2909 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3953 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-4221 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-1923 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-4035 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3902 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2370 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-4155 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-1503 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-3088 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))))
-(-10 -7 (-15 -2036 ((-112) (-1182 |#1|))) (-15 -3088 ((-112) (-1182 |#1|))) (-15 -1503 ((-928) (-928))) (-15 -4155 ((-928) (-928))) (-15 -2370 ((-928) (-928))) (-15 -3902 ((-1182 |#1|) (-928))) (-15 -4035 ((-1182 |#1|) (-928))) (-15 -1923 ((-1182 |#1|) (-928))) (-15 -4221 ((-1182 |#1|) (-928))) (-15 -3953 ((-1182 |#1|) (-928))) (-15 -2909 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2128 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2487 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3459 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3323 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3336 ((-1182 |#1|) (-928))) (-15 -3336 ((-1182 |#1|) (-928) (-928))) (-15 -3973 ((-1182 |#1|) (-1182 |#1|))) (-15 -3100 ((-965 (-1182 |#1|)) (-1182 |#1|))))
-((-1659 (((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|) 38)))
-(((-363 |#1| |#2| |#3|) (-10 -7 (-15 -1659 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|))) (-354) (-1252 |#1|) (-1252 |#2|)) (T -363))
-((-1659 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-354)) (-5 *1 (-363 *4 *5 *3)))))
-(-10 -7 (-15 -1659 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2049 (($ (-1276 |#1|)) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| |#1| (-373)))) (-2036 (((-112) $) NIL (|has| |#1| (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| |#1| (-373)))) (-3088 (((-112) $) NIL (|has| |#1| (-373)))) (-2610 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-3587 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1726 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3609 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| |#1| (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2339 (($) NIL (|has| |#1| (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| |#1| (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 |#1|)) NIL)) (-2163 (($) NIL (|has| |#1| (-373)))) (-3046 (($) NIL (|has| |#1| (-373)))) (-1807 (((-1276 |#1|) $) NIL) (((-695 |#1|) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-1918 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2352 ((|#1| (-1182 |#2|)) 61)))
+(((-361 |#1| |#2|) (-10 -7 (-15 -2352 (|#1| (-1182 |#2|)))) (-13 (-408) (-10 -7 (-15 -3735 (|#1| |#2|)) (-15 -2332 ((-928) |#1|)) (-15 -2003 ((-1277 |#1|) (-928))) (-15 -2984 (|#1| |#1|)))) (-354)) (T -361))
+((-2352 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-4 *2 (-13 (-408) (-10 -7 (-15 -3735 (*2 *4)) (-15 -2332 ((-928) *2)) (-15 -2003 ((-1277 *2) (-928))) (-15 -2984 (*2 *2))))) (-5 *1 (-361 *2 *4)))))
+(-10 -7 (-15 -2352 (|#1| (-1182 |#2|))))
+((-1899 (((-965 (-1182 |#1|)) (-1182 |#1|)) 51)) (-3336 (((-1182 |#1|) (-928) (-928)) 158) (((-1182 |#1|) (-928)) 154)) (-2006 (((-112) (-1182 |#1|)) 110)) (-1590 (((-928) (-928)) 88)) (-2350 (((-928) (-928)) 95)) (-1706 (((-928) (-928)) 86)) (-2888 (((-112) (-1182 |#1|)) 114)) (-1720 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 139)) (-3306 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 144)) (-2169 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 143)) (-4111 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 142)) (-3697 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 134)) (-3425 (((-1182 |#1|) (-1182 |#1|)) 74)) (-2816 (((-1182 |#1|) (-928)) 149)) (-3180 (((-1182 |#1|) (-928)) 152)) (-4100 (((-1182 |#1|) (-928)) 151)) (-3181 (((-1182 |#1|) (-928)) 150)) (-3975 (((-1182 |#1|) (-928)) 147)))
+(((-362 |#1|) (-10 -7 (-15 -2006 ((-112) (-1182 |#1|))) (-15 -2888 ((-112) (-1182 |#1|))) (-15 -1706 ((-928) (-928))) (-15 -1590 ((-928) (-928))) (-15 -2350 ((-928) (-928))) (-15 -3975 ((-1182 |#1|) (-928))) (-15 -2816 ((-1182 |#1|) (-928))) (-15 -3181 ((-1182 |#1|) (-928))) (-15 -4100 ((-1182 |#1|) (-928))) (-15 -3180 ((-1182 |#1|) (-928))) (-15 -3697 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -1720 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -4111 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2169 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3306 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3336 ((-1182 |#1|) (-928))) (-15 -3336 ((-1182 |#1|) (-928) (-928))) (-15 -3425 ((-1182 |#1|) (-1182 |#1|))) (-15 -1899 ((-965 (-1182 |#1|)) (-1182 |#1|)))) (-354)) (T -362))
+((-1899 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4)) (-5 *3 (-1182 *4)))) (-3425 (*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3336 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3336 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3306 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2169 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-4111 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-1720 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3697 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3180 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-4100 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3181 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2816 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3975 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2350 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-1590 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-1706 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-2888 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))))
+(-10 -7 (-15 -2006 ((-112) (-1182 |#1|))) (-15 -2888 ((-112) (-1182 |#1|))) (-15 -1706 ((-928) (-928))) (-15 -1590 ((-928) (-928))) (-15 -2350 ((-928) (-928))) (-15 -3975 ((-1182 |#1|) (-928))) (-15 -2816 ((-1182 |#1|) (-928))) (-15 -3181 ((-1182 |#1|) (-928))) (-15 -4100 ((-1182 |#1|) (-928))) (-15 -3180 ((-1182 |#1|) (-928))) (-15 -3697 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -1720 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -4111 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2169 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3306 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3336 ((-1182 |#1|) (-928))) (-15 -3336 ((-1182 |#1|) (-928) (-928))) (-15 -3425 ((-1182 |#1|) (-1182 |#1|))) (-15 -1899 ((-965 (-1182 |#1|)) (-1182 |#1|))))
+((-2576 (((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|) 38)))
+(((-363 |#1| |#2| |#3|) (-10 -7 (-15 -2576 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|))) (-354) (-1253 |#1|) (-1253 |#2|)) (T -363))
+((-2576 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *1 (-363 *4 *5 *3)))))
+(-10 -7 (-15 -2576 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2125 (($ (-1277 |#1|)) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| |#1| (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| |#1| (-373)))) (-2006 (((-112) $) NIL (|has| |#1| (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| |#1| (-373)))) (-2888 (((-112) $) NIL (|has| |#1| (-373)))) (-2771 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-4044 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2070 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4258 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| |#1| (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2340 (($) NIL (|has| |#1| (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| |#1| (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 |#1|)) NIL)) (-3929 (($) NIL (|has| |#1| (-373)))) (-2520 (($) NIL (|has| |#1| (-373)))) (-1533 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3127 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2791 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-364 |#1| |#2|) (-333 |#1|) (-354) (-928)) (T -364))
NIL
(-333 |#1|)
-((-3264 (((-112) (-650 (-959 |#1|))) 41)) (-2475 (((-650 (-959 |#1|)) (-650 (-959 |#1|))) 53)) (-2918 (((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|))) 48)))
-(((-365 |#1| |#2|) (-10 -7 (-15 -3264 ((-112) (-650 (-959 |#1|)))) (-15 -2918 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -2475 ((-650 (-959 |#1|)) (-650 (-959 |#1|))))) (-458) (-650 (-1186))) (T -365))
-((-2475 (*1 *2 *2) (-12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-2918 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-3264 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-112)) (-5 *1 (-365 *4 *5)) (-14 *5 (-650 (-1186))))))
-(-10 -7 (-15 -3264 ((-112) (-650 (-959 |#1|)))) (-15 -2918 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -2475 ((-650 (-959 |#1|)) (-650 (-959 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777) $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) 17)) (-2530 ((|#1| $ (-570)) NIL)) (-1519 (((-570) $ (-570)) NIL)) (-2553 (($ (-1 |#1| |#1|) $) 34)) (-1381 (($ (-1 (-570) (-570)) $) 26)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 28)) (-3479 (((-1129) $) NIL)) (-1679 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $) 30)) (-3684 (($ $ $) NIL)) (-3688 (($ $ $) NIL)) (-3735 (((-868) $) 40) (($ |#1|) NIL)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 11 T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ |#1| (-570)) 19)) (* (($ $ $) 53) (($ |#1| $) 23) (($ $ |#1|) 21)))
-(((-366 |#1|) (-13 (-479) (-1047 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-570))) (-15 -3403 ((-777) $)) (-15 -1519 ((-570) $ (-570))) (-15 -2530 (|#1| $ (-570))) (-15 -1381 ($ (-1 (-570) (-570)) $)) (-15 -2553 ($ (-1 |#1| |#1|) $)) (-15 -1679 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $)))) (-1109)) (T -366))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (-3403 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-1519 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (-1381 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-570) (-570))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-2553 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-366 *3)))) (-1679 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 (-570))))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))))
-(-13 (-479) (-1047 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-570))) (-15 -3403 ((-777) $)) (-15 -1519 ((-570) $ (-570))) (-15 -2530 (|#1| $ (-570))) (-15 -1381 ($ (-1 (-570) (-570)) $)) (-15 -2553 ($ (-1 |#1| |#1|) $)) (-15 -1679 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $))))
-((-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 13)) (-3171 (($ $) 14)) (-1790 (((-424 $) $) 34)) (-1552 (((-112) $) 30)) (-1825 (($ $) 19)) (-1874 (($ $ $) 25) (($ (-650 $)) NIL)) (-3738 (((-424 $) $) 35)) (-2407 (((-3 $ "failed") $ $) 24)) (-2272 (((-777) $) 28)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 39)) (-1681 (((-112) $ $) 16)) (-2975 (($ $ $) 37)))
-(((-367 |#1|) (-10 -8 (-15 -2975 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -1552 ((-112) |#1|)) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -2382 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2272 ((-777) |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -1681 ((-112) |#1| |#1|)) (-15 -3171 (|#1| |#1|)) (-15 -3732 ((-2 (|:| -1733 |#1|) (|:| -4435 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|))) (-368)) (T -367))
-NIL
-(-10 -8 (-15 -2975 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -1552 ((-112) |#1|)) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -2382 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2272 ((-777) |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -1681 ((-112) |#1| |#1|)) (-15 -3171 (|#1| |#1|)) (-15 -3732 ((-2 (|:| -1733 |#1|) (|:| -4435 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-1552 (((-112) $) 79)) (-2081 (((-112) $) 35)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-4080 (((-112) (-650 (-959 |#1|))) 41)) (-4013 (((-650 (-959 |#1|)) (-650 (-959 |#1|))) 53)) (-3798 (((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|))) 48)))
+(((-365 |#1| |#2|) (-10 -7 (-15 -4080 ((-112) (-650 (-959 |#1|)))) (-15 -3798 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -4013 ((-650 (-959 |#1|)) (-650 (-959 |#1|))))) (-458) (-650 (-1186))) (T -365))
+((-4013 (*1 *2 *2) (-12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-3798 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-4080 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-112)) (-5 *1 (-365 *4 *5)) (-14 *5 (-650 (-1186))))))
+(-10 -7 (-15 -4080 ((-112) (-650 (-959 |#1|)))) (-15 -3798 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -4013 ((-650 (-959 |#1|)) (-650 (-959 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777) $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) 17)) (-3243 ((|#1| $ (-570)) NIL)) (-3670 (((-570) $ (-570)) NIL)) (-3484 (($ (-1 |#1| |#1|) $) 34)) (-3031 (($ (-1 (-570) (-570)) $) 26)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 28)) (-3479 (((-1129) $) NIL)) (-2773 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-570)))) $) 30)) (-2488 (($ $ $) NIL)) (-2522 (($ $ $) NIL)) (-3735 (((-868) $) 40) (($ |#1|) NIL)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 11 T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ |#1| (-570)) 19)) (* (($ $ $) 53) (($ |#1| $) 23) (($ $ |#1|) 21)))
+(((-366 |#1|) (-13 (-479) (-1047 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-570))) (-15 -3403 ((-777) $)) (-15 -3670 ((-570) $ (-570))) (-15 -3243 (|#1| $ (-570))) (-15 -3031 ($ (-1 (-570) (-570)) $)) (-15 -3484 ($ (-1 |#1| |#1|) $)) (-15 -2773 ((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-570)))) $)))) (-1109)) (T -366))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (-3403 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-3670 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (-3031 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-570) (-570))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-3484 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-366 *3)))) (-2773 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 (-570))))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))))
+(-13 (-479) (-1047 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-570))) (-15 -3403 ((-777) $)) (-15 -3670 ((-570) $ (-570))) (-15 -3243 (|#1| $ (-570))) (-15 -3031 ($ (-1 (-570) (-570)) $)) (-15 -3484 ($ (-1 |#1| |#1|) $)) (-15 -2773 ((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-570)))) $))))
+((-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 13)) (-1345 (($ $) 14)) (-1378 (((-424 $) $) 34)) (-4037 (((-112) $) 30)) (-1826 (($ $) 19)) (-1874 (($ $ $) 25) (($ (-650 $)) NIL)) (-3739 (((-424 $) $) 35)) (-2406 (((-3 $ "failed") $ $) 24)) (-2547 (((-777) $) 28)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 39)) (-2795 (((-112) $ $) 16)) (-2975 (($ $ $) 37)))
+(((-367 |#1|) (-10 -8 (-15 -2975 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -4037 ((-112) |#1|)) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -4378 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2547 ((-777) |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -2795 ((-112) |#1| |#1|)) (-15 -1345 (|#1| |#1|)) (-15 -2921 ((-2 (|:| -2101 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|))) (-368)) (T -367))
+NIL
+(-10 -8 (-15 -2975 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -4037 ((-112) |#1|)) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -4378 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2547 ((-777) |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)) (-15 -2795 ((-112) |#1| |#1|)) (-15 -1345 (|#1| |#1|)) (-15 -2921 ((-2 (|:| -2101 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4037 (((-112) $) 79)) (-4340 (((-112) $) 35)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-368) (-141)) (T -368))
((-2975 (*1 *1 *1 *1) (-4 *1 (-368))))
-(-13 (-311) (-1230) (-245) (-10 -8 (-15 -2975 ($ $ $)) (-6 -4446) (-6 -4440)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-2416 (((-112) $ $) 7)) (-3560 ((|#2| $ |#2|) 14)) (-2603 (($ $ (-1168)) 19)) (-2346 ((|#2| $) 15)) (-1727 (($ |#1|) 21) (($ |#1| (-1168)) 20)) (-3503 ((|#1| $) 17)) (-1903 (((-1168) $) 10)) (-2564 (((-1168) $) 16)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1866 (($ $) 18)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+(-13 (-311) (-1231) (-245) (-10 -8 (-15 -2975 ($ $ $)) (-6 -4447) (-6 -4441)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-2417 (((-112) $ $) 7)) (-3784 ((|#2| $ |#2|) 14)) (-2695 (($ $ (-1168)) 19)) (-2140 ((|#2| $) 15)) (-1726 (($ |#1|) 21) (($ |#1| (-1168)) 20)) (-3504 ((|#1| $) 17)) (-4268 (((-1168) $) 10)) (-3600 (((-1168) $) 16)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3924 (($ $) 18)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-369 |#1| |#2|) (-141) (-1109) (-1109)) (T -369))
-((-1727 (*1 *1 *2) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-1727 (*1 *1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *1 (-369 *2 *4)) (-4 *2 (-1109)) (-4 *4 (-1109)))) (-2603 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-1866 (*1 *1 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3503 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2564 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-1168)))) (-2346 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-3560 (*1 *2 *1 *2) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -1727 ($ |t#1|)) (-15 -1727 ($ |t#1| (-1168))) (-15 -2603 ($ $ (-1168))) (-15 -1866 ($ $)) (-15 -3503 (|t#1| $)) (-15 -2564 ((-1168) $)) (-15 -2346 (|t#2| $)) (-15 -3560 (|t#2| $ |t#2|))))
+((-1726 (*1 *1 *2) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-1726 (*1 *1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *1 (-369 *2 *4)) (-4 *2 (-1109)) (-4 *4 (-1109)))) (-2695 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3924 (*1 *1 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3504 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-3600 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-1168)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-3784 (*1 *2 *1 *2) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -1726 ($ |t#1|)) (-15 -1726 ($ |t#1| (-1168))) (-15 -2695 ($ $ (-1168))) (-15 -3924 ($ $)) (-15 -3504 (|t#1| $)) (-15 -3600 ((-1168) $)) (-15 -2140 (|t#2| $)) (-15 -3784 (|t#2| $ |t#2|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3560 ((|#1| $ |#1|) 31)) (-2603 (($ $ (-1168)) 23)) (-2065 (((-3 |#1| "failed") $) 30)) (-2346 ((|#1| $) 28)) (-1727 (($ (-394)) 22) (($ (-394) (-1168)) 21)) (-3503 (((-394) $) 25)) (-1903 (((-1168) $) NIL)) (-2564 (((-1168) $) 26)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20)) (-1866 (($ $) 24)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 19)))
-(((-370 |#1|) (-13 (-369 (-394) |#1|) (-10 -8 (-15 -2065 ((-3 |#1| "failed") $)))) (-1109)) (T -370))
-((-2065 (*1 *2 *1) (|partial| -12 (-5 *1 (-370 *2)) (-4 *2 (-1109)))))
-(-13 (-369 (-394) |#1|) (-10 -8 (-15 -2065 ((-3 |#1| "failed") $))))
-((-1759 (((-1276 (-695 |#2|)) (-1276 $)) 70)) (-2893 (((-695 |#2|) (-1276 $)) 141)) (-4361 ((|#2| $) 39)) (-2520 (((-695 |#2|) $ (-1276 $)) 144)) (-1535 (((-3 $ "failed") $) 91)) (-3602 ((|#2| $) 42)) (-3929 (((-1182 |#2|) $) 99)) (-4290 ((|#2| (-1276 $)) 124)) (-1458 (((-1182 |#2|) $) 34)) (-3161 (((-112)) 118)) (-2049 (($ (-1276 |#2|) (-1276 $)) 134)) (-3413 (((-3 $ "failed") $) 95)) (-3060 (((-112)) 112)) (-3207 (((-112)) 107)) (-3149 (((-112)) 61)) (-1401 (((-695 |#2|) (-1276 $)) 139)) (-4395 ((|#2| $) 38)) (-3215 (((-695 |#2|) $ (-1276 $)) 143)) (-2168 (((-3 $ "failed") $) 89)) (-3386 ((|#2| $) 41)) (-1395 (((-1182 |#2|) $) 98)) (-2191 ((|#2| (-1276 $)) 122)) (-4265 (((-1182 |#2|) $) 32)) (-2455 (((-112)) 117)) (-3641 (((-112)) 109)) (-1482 (((-112)) 59)) (-3204 (((-112)) 104)) (-1687 (((-112)) 119)) (-1807 (((-1276 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) (-1276 $) (-1276 $)) 130)) (-4068 (((-112)) 115)) (-4365 (((-650 (-1276 |#2|))) 103)) (-2170 (((-112)) 116)) (-4213 (((-112)) 113)) (-3987 (((-112)) 54)) (-3463 (((-112)) 120)))
-(((-371 |#1| |#2|) (-10 -8 (-15 -3929 ((-1182 |#2|) |#1|)) (-15 -1395 ((-1182 |#2|) |#1|)) (-15 -4365 ((-650 (-1276 |#2|)))) (-15 -1535 ((-3 |#1| "failed") |#1|)) (-15 -2168 ((-3 |#1| "failed") |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 -3207 ((-112))) (-15 -3641 ((-112))) (-15 -3060 ((-112))) (-15 -1482 ((-112))) (-15 -3149 ((-112))) (-15 -3204 ((-112))) (-15 -3463 ((-112))) (-15 -1687 ((-112))) (-15 -3161 ((-112))) (-15 -2455 ((-112))) (-15 -3987 ((-112))) (-15 -2170 ((-112))) (-15 -4213 ((-112))) (-15 -4068 ((-112))) (-15 -1458 ((-1182 |#2|) |#1|)) (-15 -4265 ((-1182 |#2|) |#1|)) (-15 -2893 ((-695 |#2|) (-1276 |#1|))) (-15 -1401 ((-695 |#2|) (-1276 |#1|))) (-15 -4290 (|#2| (-1276 |#1|))) (-15 -2191 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -3602 (|#2| |#1|)) (-15 -3386 (|#2| |#1|)) (-15 -4361 (|#2| |#1|)) (-15 -4395 (|#2| |#1|)) (-15 -2520 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -3215 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -1759 ((-1276 (-695 |#2|)) (-1276 |#1|)))) (-372 |#2|) (-174)) (T -371))
-((-4068 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4213 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2170 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3987 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2455 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3161 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1687 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3463 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3204 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3149 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1482 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3060 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3641 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3207 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4365 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-1276 *4))) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))))
-(-10 -8 (-15 -3929 ((-1182 |#2|) |#1|)) (-15 -1395 ((-1182 |#2|) |#1|)) (-15 -4365 ((-650 (-1276 |#2|)))) (-15 -1535 ((-3 |#1| "failed") |#1|)) (-15 -2168 ((-3 |#1| "failed") |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 -3207 ((-112))) (-15 -3641 ((-112))) (-15 -3060 ((-112))) (-15 -1482 ((-112))) (-15 -3149 ((-112))) (-15 -3204 ((-112))) (-15 -3463 ((-112))) (-15 -1687 ((-112))) (-15 -3161 ((-112))) (-15 -2455 ((-112))) (-15 -3987 ((-112))) (-15 -2170 ((-112))) (-15 -4213 ((-112))) (-15 -4068 ((-112))) (-15 -1458 ((-1182 |#2|) |#1|)) (-15 -4265 ((-1182 |#2|) |#1|)) (-15 -2893 ((-695 |#2|) (-1276 |#1|))) (-15 -1401 ((-695 |#2|) (-1276 |#1|))) (-15 -4290 (|#2| (-1276 |#1|))) (-15 -2191 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -3602 (|#2| |#1|)) (-15 -3386 (|#2| |#1|)) (-15 -4361 (|#2| |#1|)) (-15 -4395 (|#2| |#1|)) (-15 -2520 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -3215 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -1759 ((-1276 (-695 |#2|)) (-1276 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1733 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) 20)) (-1759 (((-1276 (-695 |#1|)) (-1276 $)) 83)) (-2201 (((-1276 $)) 86)) (-2450 (($) 18 T CONST)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-1822 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-2893 (((-695 |#1|) (-1276 $)) 70)) (-4361 ((|#1| $) 79)) (-2520 (((-695 |#1|) $ (-1276 $)) 81)) (-1535 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-3937 (($ $ (-928)) 31)) (-3602 ((|#1| $) 77)) (-3929 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-4290 ((|#1| (-1276 $)) 72)) (-1458 (((-1182 |#1|) $) 68)) (-3161 (((-112)) 62)) (-2049 (($ (-1276 |#1|) (-1276 $)) 74)) (-3413 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-3934 (((-928)) 85)) (-1460 (((-112)) 59)) (-3388 (($ $ (-928)) 38)) (-3060 (((-112)) 55)) (-3207 (((-112)) 53)) (-3149 (((-112)) 57)) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-2546 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-1401 (((-695 |#1|) (-1276 $)) 71)) (-4395 ((|#1| $) 80)) (-3215 (((-695 |#1|) $ (-1276 $)) 82)) (-2168 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-2247 (($ $ (-928)) 32)) (-3386 ((|#1| $) 78)) (-1395 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-2191 ((|#1| (-1276 $)) 73)) (-4265 (((-1182 |#1|) $) 69)) (-2455 (((-112)) 63)) (-1903 (((-1168) $) 10)) (-3641 (((-112)) 54)) (-1482 (((-112)) 56)) (-3204 (((-112)) 58)) (-3479 (((-1129) $) 11)) (-1687 (((-112)) 61)) (-1807 (((-1276 |#1|) $ (-1276 $)) 76) (((-695 |#1|) (-1276 $) (-1276 $)) 75)) (-3824 (((-650 (-959 |#1|)) (-1276 $)) 84)) (-3688 (($ $ $) 28)) (-4068 (((-112)) 67)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-4365 (((-650 (-1276 |#1|))) 49 (|has| |#1| (-562)))) (-3183 (($ $ $ $) 29)) (-2170 (((-112)) 65)) (-1960 (($ $ $) 27)) (-4213 (((-112)) 66)) (-3987 (((-112)) 64)) (-3463 (((-112)) 60)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-2417 (((-112) $ $) NIL)) (-3784 ((|#1| $ |#1|) 31)) (-2695 (($ $ (-1168)) 23)) (-2260 (((-3 |#1| "failed") $) 30)) (-2140 ((|#1| $) 28)) (-1726 (($ (-394)) 22) (($ (-394) (-1168)) 21)) (-3504 (((-394) $) 25)) (-4268 (((-1168) $) NIL)) (-3600 (((-1168) $) 26)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20)) (-3924 (($ $) 24)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 19)))
+(((-370 |#1|) (-13 (-369 (-394) |#1|) (-10 -8 (-15 -2260 ((-3 |#1| "failed") $)))) (-1109)) (T -370))
+((-2260 (*1 *2 *1) (|partial| -12 (-5 *1 (-370 *2)) (-4 *2 (-1109)))))
+(-13 (-369 (-394) |#1|) (-10 -8 (-15 -2260 ((-3 |#1| "failed") $))))
+((-2303 (((-1277 (-695 |#2|)) (-1277 $)) 70)) (-3649 (((-695 |#2|) (-1277 $)) 141)) (-2893 ((|#2| $) 39)) (-3129 (((-695 |#2|) $ (-1277 $)) 144)) (-3860 (((-3 $ "failed") $) 91)) (-4191 ((|#2| $) 42)) (-4255 (((-1182 |#2|) $) 99)) (-3497 ((|#2| (-1277 $)) 124)) (-4339 (((-1182 |#2|) $) 34)) (-4362 (((-112)) 118)) (-2125 (($ (-1277 |#2|) (-1277 $)) 134)) (-2937 (((-3 $ "failed") $) 95)) (-2637 (((-112)) 112)) (-1734 (((-112)) 107)) (-2335 (((-112)) 61)) (-1883 (((-695 |#2|) (-1277 $)) 139)) (-2078 ((|#2| $) 38)) (-1806 (((-695 |#2|) $ (-1277 $)) 143)) (-3984 (((-3 $ "failed") $) 89)) (-2688 ((|#2| $) 41)) (-4272 (((-1182 |#2|) $) 98)) (-4219 ((|#2| (-1277 $)) 122)) (-3231 (((-1182 |#2|) $) 32)) (-3809 (((-112)) 117)) (-3303 (((-112)) 109)) (-1493 (((-112)) 59)) (-1694 (((-112)) 104)) (-2851 (((-112)) 119)) (-1533 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) 130)) (-2024 (((-112)) 115)) (-2934 (((-650 (-1277 |#2|))) 103)) (-4004 (((-112)) 116)) (-4015 (((-112)) 113)) (-3596 (((-112)) 54)) (-2208 (((-112)) 120)))
+(((-371 |#1| |#2|) (-10 -8 (-15 -4255 ((-1182 |#2|) |#1|)) (-15 -4272 ((-1182 |#2|) |#1|)) (-15 -2934 ((-650 (-1277 |#2|)))) (-15 -3860 ((-3 |#1| "failed") |#1|)) (-15 -3984 ((-3 |#1| "failed") |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 -1734 ((-112))) (-15 -3303 ((-112))) (-15 -2637 ((-112))) (-15 -1493 ((-112))) (-15 -2335 ((-112))) (-15 -1694 ((-112))) (-15 -2208 ((-112))) (-15 -2851 ((-112))) (-15 -4362 ((-112))) (-15 -3809 ((-112))) (-15 -3596 ((-112))) (-15 -4004 ((-112))) (-15 -4015 ((-112))) (-15 -2024 ((-112))) (-15 -4339 ((-1182 |#2|) |#1|)) (-15 -3231 ((-1182 |#2|) |#1|)) (-15 -3649 ((-695 |#2|) (-1277 |#1|))) (-15 -1883 ((-695 |#2|) (-1277 |#1|))) (-15 -3497 (|#2| (-1277 |#1|))) (-15 -4219 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -4191 (|#2| |#1|)) (-15 -2688 (|#2| |#1|)) (-15 -2893 (|#2| |#1|)) (-15 -2078 (|#2| |#1|)) (-15 -3129 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1806 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -2303 ((-1277 (-695 |#2|)) (-1277 |#1|)))) (-372 |#2|) (-174)) (T -371))
+((-2024 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4015 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4004 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3596 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3809 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4362 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2851 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2208 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1694 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2335 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1493 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2637 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3303 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1734 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2934 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-1277 *4))) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))))
+(-10 -8 (-15 -4255 ((-1182 |#2|) |#1|)) (-15 -4272 ((-1182 |#2|) |#1|)) (-15 -2934 ((-650 (-1277 |#2|)))) (-15 -3860 ((-3 |#1| "failed") |#1|)) (-15 -3984 ((-3 |#1| "failed") |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 -1734 ((-112))) (-15 -3303 ((-112))) (-15 -2637 ((-112))) (-15 -1493 ((-112))) (-15 -2335 ((-112))) (-15 -1694 ((-112))) (-15 -2208 ((-112))) (-15 -2851 ((-112))) (-15 -4362 ((-112))) (-15 -3809 ((-112))) (-15 -3596 ((-112))) (-15 -4004 ((-112))) (-15 -4015 ((-112))) (-15 -2024 ((-112))) (-15 -4339 ((-1182 |#2|) |#1|)) (-15 -3231 ((-1182 |#2|) |#1|)) (-15 -3649 ((-695 |#2|) (-1277 |#1|))) (-15 -1883 ((-695 |#2|) (-1277 |#1|))) (-15 -3497 (|#2| (-1277 |#1|))) (-15 -4219 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -4191 (|#2| |#1|)) (-15 -2688 (|#2| |#1|)) (-15 -2893 (|#2| |#1|)) (-15 -2078 (|#2| |#1|)) (-15 -3129 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1806 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -2303 ((-1277 (-695 |#2|)) (-1277 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2101 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) 20)) (-2303 (((-1277 (-695 |#1|)) (-1277 $)) 83)) (-3016 (((-1277 $)) 86)) (-3761 (($) 18 T CONST)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-1679 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-3649 (((-695 |#1|) (-1277 $)) 70)) (-2893 ((|#1| $) 79)) (-3129 (((-695 |#1|) $ (-1277 $)) 81)) (-3860 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-4333 (($ $ (-928)) 31)) (-4191 ((|#1| $) 77)) (-4255 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-3497 ((|#1| (-1277 $)) 72)) (-4339 (((-1182 |#1|) $) 68)) (-4362 (((-112)) 62)) (-2125 (($ (-1277 |#1|) (-1277 $)) 74)) (-2937 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-3933 (((-928)) 85)) (-4356 (((-112)) 59)) (-2710 (($ $ (-928)) 38)) (-2637 (((-112)) 55)) (-1734 (((-112)) 53)) (-2335 (((-112)) 57)) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-3394 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-1883 (((-695 |#1|) (-1277 $)) 71)) (-2078 ((|#1| $) 80)) (-1806 (((-695 |#1|) $ (-1277 $)) 82)) (-3984 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-3548 (($ $ (-928)) 32)) (-2688 ((|#1| $) 78)) (-4272 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-4219 ((|#1| (-1277 $)) 73)) (-3231 (((-1182 |#1|) $) 69)) (-3809 (((-112)) 63)) (-4268 (((-1168) $) 10)) (-3303 (((-112)) 54)) (-1493 (((-112)) 56)) (-1694 (((-112)) 58)) (-3479 (((-1129) $) 11)) (-2851 (((-112)) 61)) (-1533 (((-1277 |#1|) $ (-1277 $)) 76) (((-695 |#1|) (-1277 $) (-1277 $)) 75)) (-1334 (((-650 (-959 |#1|)) (-1277 $)) 84)) (-2522 (($ $ $) 28)) (-2024 (((-112)) 67)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2934 (((-650 (-1277 |#1|))) 49 (|has| |#1| (-562)))) (-1483 (($ $ $ $) 29)) (-4004 (((-112)) 65)) (-3619 (($ $ $) 27)) (-4015 (((-112)) 66)) (-3596 (((-112)) 64)) (-2208 (((-112)) 60)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-372 |#1|) (-141) (-174)) (T -372))
-((-2201 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1276 *1)) (-4 *1 (-372 *3)))) (-3934 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-928)))) (-3824 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))))) (-1759 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1276 (-695 *4))))) (-3215 (*1 *2 *1 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2520 (*1 *2 *1 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-4395 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-4361 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3386 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3602 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-1807 (*1 *2 *1 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1276 *4)))) (-1807 (*1 *2 *3 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2049 (*1 *1 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-1276 *1)) (-4 *4 (-174)) (-4 *1 (-372 *4)))) (-2191 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-4290 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2893 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-4265 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-1458 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-4068 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4213 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2170 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3987 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2455 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3161 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1687 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3463 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1460 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3204 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3149 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1482 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3060 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3641 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3207 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3413 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-2168 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-1535 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-4365 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-650 (-1276 *3))))) (-1395 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-3929 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-1396 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2331 (-650 *1)))) (-4 *1 (-372 *3)))) (-4352 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2331 (-650 *1)))) (-4 *1 (-372 *3)))) (-2546 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-1822 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-1733 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
-(-13 (-750 |t#1|) (-10 -8 (-15 -2201 ((-1276 $))) (-15 -3934 ((-928))) (-15 -3824 ((-650 (-959 |t#1|)) (-1276 $))) (-15 -1759 ((-1276 (-695 |t#1|)) (-1276 $))) (-15 -3215 ((-695 |t#1|) $ (-1276 $))) (-15 -2520 ((-695 |t#1|) $ (-1276 $))) (-15 -4395 (|t#1| $)) (-15 -4361 (|t#1| $)) (-15 -3386 (|t#1| $)) (-15 -3602 (|t#1| $)) (-15 -1807 ((-1276 |t#1|) $ (-1276 $))) (-15 -1807 ((-695 |t#1|) (-1276 $) (-1276 $))) (-15 -2049 ($ (-1276 |t#1|) (-1276 $))) (-15 -2191 (|t#1| (-1276 $))) (-15 -4290 (|t#1| (-1276 $))) (-15 -1401 ((-695 |t#1|) (-1276 $))) (-15 -2893 ((-695 |t#1|) (-1276 $))) (-15 -4265 ((-1182 |t#1|) $)) (-15 -1458 ((-1182 |t#1|) $)) (-15 -4068 ((-112))) (-15 -4213 ((-112))) (-15 -2170 ((-112))) (-15 -3987 ((-112))) (-15 -2455 ((-112))) (-15 -3161 ((-112))) (-15 -1687 ((-112))) (-15 -3463 ((-112))) (-15 -1460 ((-112))) (-15 -3204 ((-112))) (-15 -3149 ((-112))) (-15 -1482 ((-112))) (-15 -3060 ((-112))) (-15 -3641 ((-112))) (-15 -3207 ((-112))) (IF (|has| |t#1| (-562)) (PROGN (-15 -3413 ((-3 $ "failed") $)) (-15 -2168 ((-3 $ "failed") $)) (-15 -1535 ((-3 $ "failed") $)) (-15 -4365 ((-650 (-1276 |t#1|)))) (-15 -1395 ((-1182 |t#1|) $)) (-15 -3929 ((-1182 |t#1|) $)) (-15 -1396 ((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed"))) (-15 -4352 ((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed"))) (-15 -2546 ((-3 $ "failed"))) (-15 -1822 ((-3 $ "failed"))) (-15 -1733 ((-3 $ "failed"))) (-6 -4445)) |%noBranch|)))
+((-3016 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-372 *3)))) (-3933 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-928)))) (-1334 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))))) (-1806 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3129 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2078 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-2893 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-2688 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-4191 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-1533 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1277 *4)))) (-1533 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2125 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1277 *1)) (-4 *4 (-174)) (-4 *1 (-372 *4)))) (-4219 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3497 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-1883 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3649 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3231 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-4339 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-2024 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4015 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4004 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3596 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3809 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4362 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2851 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2208 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4356 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1694 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2335 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1493 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2637 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3303 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1734 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2937 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3984 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3860 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-2934 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-650 (-1277 *3))))) (-4272 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-4255 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-4282 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2003 (-650 *1)))) (-4 *1 (-372 *3)))) (-2830 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2003 (-650 *1)))) (-4 *1 (-372 *3)))) (-3394 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-1679 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-2101 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
+(-13 (-750 |t#1|) (-10 -8 (-15 -3016 ((-1277 $))) (-15 -3933 ((-928))) (-15 -1334 ((-650 (-959 |t#1|)) (-1277 $))) (-15 -2303 ((-1277 (-695 |t#1|)) (-1277 $))) (-15 -1806 ((-695 |t#1|) $ (-1277 $))) (-15 -3129 ((-695 |t#1|) $ (-1277 $))) (-15 -2078 (|t#1| $)) (-15 -2893 (|t#1| $)) (-15 -2688 (|t#1| $)) (-15 -4191 (|t#1| $)) (-15 -1533 ((-1277 |t#1|) $ (-1277 $))) (-15 -1533 ((-695 |t#1|) (-1277 $) (-1277 $))) (-15 -2125 ($ (-1277 |t#1|) (-1277 $))) (-15 -4219 (|t#1| (-1277 $))) (-15 -3497 (|t#1| (-1277 $))) (-15 -1883 ((-695 |t#1|) (-1277 $))) (-15 -3649 ((-695 |t#1|) (-1277 $))) (-15 -3231 ((-1182 |t#1|) $)) (-15 -4339 ((-1182 |t#1|) $)) (-15 -2024 ((-112))) (-15 -4015 ((-112))) (-15 -4004 ((-112))) (-15 -3596 ((-112))) (-15 -3809 ((-112))) (-15 -4362 ((-112))) (-15 -2851 ((-112))) (-15 -2208 ((-112))) (-15 -4356 ((-112))) (-15 -1694 ((-112))) (-15 -2335 ((-112))) (-15 -1493 ((-112))) (-15 -2637 ((-112))) (-15 -3303 ((-112))) (-15 -1734 ((-112))) (IF (|has| |t#1| (-562)) (PROGN (-15 -2937 ((-3 $ "failed") $)) (-15 -3984 ((-3 $ "failed") $)) (-15 -3860 ((-3 $ "failed") $)) (-15 -2934 ((-650 (-1277 |t#1|)))) (-15 -4272 ((-1182 |t#1|) $)) (-15 -4255 ((-1182 |t#1|) $)) (-15 -4282 ((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed"))) (-15 -2830 ((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed"))) (-15 -3394 ((-3 $ "failed"))) (-15 -1679 ((-3 $ "failed"))) (-15 -2101 ((-3 $ "failed"))) (-6 -4446)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-726) . T) ((-750 |#1|) . T) ((-767) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-3403 (((-777)) 17)) (-3336 (($) 14)) (-2367 (((-928) $) 15)) (-1903 (((-1168) $) 10)) (-2159 (($ (-928)) 16)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) 7)) (-3403 (((-777)) 17)) (-3336 (($) 14)) (-2332 (((-928) $) 15)) (-4268 (((-1168) $) 10)) (-2160 (($ (-928)) 16)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-373) (-141)) (T -373))
-((-3403 (*1 *2) (-12 (-4 *1 (-373)) (-5 *2 (-777)))) (-2159 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-373)))) (-2367 (*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928)))) (-3336 (*1 *1) (-4 *1 (-373))))
-(-13 (-1109) (-10 -8 (-15 -3403 ((-777))) (-15 -2159 ($ (-928))) (-15 -2367 ((-928) $)) (-15 -3336 ($))))
+((-3403 (*1 *2) (-12 (-4 *1 (-373)) (-5 *2 (-777)))) (-2160 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-373)))) (-2332 (*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928)))) (-3336 (*1 *1) (-4 *1 (-373))))
+(-13 (-1109) (-10 -8 (-15 -3403 ((-777))) (-15 -2160 ($ (-928))) (-15 -2332 ((-928) $)) (-15 -3336 ($))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2945 (((-695 |#2|) (-1276 $)) 47)) (-2049 (($ (-1276 |#2|) (-1276 $)) 41)) (-2710 (((-695 |#2|) $ (-1276 $)) 49)) (-2998 ((|#2| (-1276 $)) 13)) (-1807 (((-1276 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) (-1276 $) (-1276 $)) 27)))
-(((-374 |#1| |#2| |#3|) (-10 -8 (-15 -2945 ((-695 |#2|) (-1276 |#1|))) (-15 -2998 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2710 ((-695 |#2|) |#1| (-1276 |#1|)))) (-375 |#2| |#3|) (-174) (-1252 |#2|)) (T -374))
-NIL
-(-10 -8 (-15 -2945 ((-695 |#2|) (-1276 |#1|))) (-15 -2998 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2710 ((-695 |#2|) |#1| (-1276 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-2945 (((-695 |#1|) (-1276 $)) 53)) (-3071 ((|#1| $) 59)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-2049 (($ (-1276 |#1|) (-1276 $)) 55)) (-2710 (((-695 |#1|) $ (-1276 $)) 60)) (-3413 (((-3 $ "failed") $) 37)) (-3934 (((-928)) 61)) (-2081 (((-112) $) 35)) (-2610 ((|#1| $) 58)) (-1638 ((|#2| $) 51 (|has| |#1| (-368)))) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2998 ((|#1| (-1276 $)) 54)) (-1807 (((-1276 |#1|) $ (-1276 $)) 57) (((-695 |#1|) (-1276 $) (-1276 $)) 56)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-1918 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3674 ((|#2| $) 52)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
-(((-375 |#1| |#2|) (-141) (-174) (-1252 |t#1|)) (T -375))
-((-3934 (*1 *2) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-928)))) (-2710 (*1 *2 *1 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-695 *4)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1252 *2)) (-4 *2 (-174)))) (-2610 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1252 *2)) (-4 *2 (-174)))) (-1807 (*1 *2 *1 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-1276 *4)))) (-1807 (*1 *2 *3 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-695 *4)))) (-2049 (*1 *1 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-1276 *1)) (-4 *4 (-174)) (-4 *1 (-375 *4 *5)) (-4 *5 (-1252 *4)))) (-2998 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *2 *4)) (-4 *4 (-1252 *2)) (-4 *2 (-174)))) (-2945 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-695 *4)))) (-3674 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1252 *3)))) (-1638 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *3 (-368)) (-4 *2 (-1252 *3)))))
-(-13 (-38 |t#1|) (-10 -8 (-15 -3934 ((-928))) (-15 -2710 ((-695 |t#1|) $ (-1276 $))) (-15 -3071 (|t#1| $)) (-15 -2610 (|t#1| $)) (-15 -1807 ((-1276 |t#1|) $ (-1276 $))) (-15 -1807 ((-695 |t#1|) (-1276 $) (-1276 $))) (-15 -2049 ($ (-1276 |t#1|) (-1276 $))) (-15 -2998 (|t#1| (-1276 $))) (-15 -2945 ((-695 |t#1|) (-1276 $))) (-15 -3674 (|t#2| $)) (IF (|has| |t#1| (-368)) (-15 -1638 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|)))
+((-4084 (((-695 |#2|) (-1277 $)) 47)) (-2125 (($ (-1277 |#2|) (-1277 $)) 41)) (-2443 (((-695 |#2|) $ (-1277 $)) 49)) (-3290 ((|#2| (-1277 $)) 13)) (-1533 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) 27)))
+(((-374 |#1| |#2| |#3|) (-10 -8 (-15 -4084 ((-695 |#2|) (-1277 |#1|))) (-15 -3290 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2443 ((-695 |#2|) |#1| (-1277 |#1|)))) (-375 |#2| |#3|) (-174) (-1253 |#2|)) (T -374))
+NIL
+(-10 -8 (-15 -4084 ((-695 |#2|) (-1277 |#1|))) (-15 -3290 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2443 ((-695 |#2|) |#1| (-1277 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4084 (((-695 |#1|) (-1277 $)) 53)) (-3071 ((|#1| $) 59)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2125 (($ (-1277 |#1|) (-1277 $)) 55)) (-2443 (((-695 |#1|) $ (-1277 $)) 60)) (-2937 (((-3 $ "failed") $) 37)) (-3933 (((-928)) 61)) (-4340 (((-112) $) 35)) (-2771 ((|#1| $) 58)) (-2399 ((|#2| $) 51 (|has| |#1| (-368)))) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3290 ((|#1| (-1277 $)) 54)) (-1533 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3127 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3641 ((|#2| $) 52)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+(((-375 |#1| |#2|) (-141) (-174) (-1253 |t#1|)) (T -375))
+((-3933 (*1 *2) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-928)))) (-2443 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-1533 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-1277 *4)))) (-1533 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-2125 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1277 *1)) (-4 *4 (-174)) (-4 *1 (-375 *4 *5)) (-4 *5 (-1253 *4)))) (-3290 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *2 *4)) (-4 *4 (-1253 *2)) (-4 *2 (-174)))) (-4084 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-2399 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *3 (-368)) (-4 *2 (-1253 *3)))))
+(-13 (-38 |t#1|) (-10 -8 (-15 -3933 ((-928))) (-15 -2443 ((-695 |t#1|) $ (-1277 $))) (-15 -3071 (|t#1| $)) (-15 -2771 (|t#1| $)) (-15 -1533 ((-1277 |t#1|) $ (-1277 $))) (-15 -1533 ((-695 |t#1|) (-1277 $) (-1277 $))) (-15 -2125 ($ (-1277 |t#1|) (-1277 $))) (-15 -3290 (|t#1| (-1277 $))) (-15 -4084 ((-695 |t#1|) (-1277 $))) (-15 -3641 (|t#2| $)) (IF (|has| |t#1| (-368)) (-15 -2399 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-732) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3734 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 25)) (-3529 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 17)) (-1351 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
-(((-376 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3734 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1226) (-378 |#1|) (-1226) (-378 |#3|)) (T -376))
-((-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1226)) (-4 *5 (-1226)) (-4 *2 (-378 *5)) (-5 *1 (-376 *6 *4 *5 *2)) (-4 *4 (-378 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1226)) (-4 *2 (-1226)) (-5 *1 (-376 *5 *4 *2 *6)) (-4 *4 (-378 *5)) (-4 *6 (-378 *2)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-4 *2 (-378 *6)) (-5 *1 (-376 *5 *4 *6 *2)) (-4 *4 (-378 *5)))))
-(-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3734 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-4254 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-3239 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3288 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-2258 (($ $) 25)) (-3998 (((-570) (-1 (-112) |#2|) $) NIL) (((-570) |#2| $) 11) (((-570) |#2| $ (-570)) NIL)) (-3068 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-377 |#1| |#2|) (-10 -8 (-15 -3239 (|#1| |#1|)) (-15 -3239 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4254 ((-112) |#1|)) (-15 -3288 (|#1| |#1|)) (-15 -3068 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4254 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3288 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2258 (|#1| |#1|)) (-15 -3068 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-378 |#2|) (-1226)) (T -377))
-NIL
-(-10 -8 (-15 -3239 (|#1| |#1|)) (-15 -3239 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4254 ((-112) |#1|)) (-15 -3288 (|#1| |#1|)) (-15 -3068 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4254 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3288 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2258 (|#1| |#1|)) (-15 -3068 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4449))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2697 (($ $) 91 (|has| $ (-6 -4449)))) (-2258 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 88 (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1952 (($ $ |#1|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1243 (-570))) 64)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 92 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2913 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-378 |#1|) (-141) (-1226)) (T -378))
-((-3068 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1226)))) (-2258 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1226)))) (-3288 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1226)))) (-4254 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-378 *4)) (-4 *4 (-1226)) (-5 *2 (-112)))) (-3998 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-378 *4)) (-4 *4 (-1226)) (-5 *2 (-570)))) (-3998 (*1 *2 *3 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-570)))) (-3998 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1226)) (-4 *3 (-1109)))) (-3068 (*1 *1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1226)) (-4 *2 (-856)))) (-3288 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1226)) (-4 *2 (-856)))) (-4254 (*1 *2 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1226)) (-4 *3 (-856)) (-5 *2 (-112)))) (-1806 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4449)) (-4 *1 (-378 *3)) (-4 *3 (-1226)))) (-2697 (*1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-378 *2)) (-4 *2 (-1226)))) (-3239 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4449)) (-4 *1 (-378 *3)) (-4 *3 (-1226)))) (-3239 (*1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-378 *2)) (-4 *2 (-1226)) (-4 *2 (-856)))))
-(-13 (-657 |t#1|) (-10 -8 (-6 -4448) (-15 -3068 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2258 ($ $)) (-15 -3288 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -4254 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -3998 ((-570) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3998 ((-570) |t#1| $)) (-15 -3998 ((-570) |t#1| $ (-570)))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-6 (-856)) (-15 -3068 ($ $ $)) (-15 -3288 ($ $)) (-15 -4254 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4449)) (PROGN (-15 -1806 ($ $ $ (-570))) (-15 -2697 ($ $)) (-15 -3239 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-856)) (-15 -3239 ($ $)) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1226) . T))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3039 (((-650 |#1|) $) 37)) (-2464 (($ $ (-777)) 38)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-2477 (((-1300 |#1| |#2|) (-1300 |#1| |#2|) $) 41)) (-2543 (($ $) 39)) (-3996 (((-1300 |#1| |#2|) (-1300 |#1| |#2|) $) 42)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1730 (($ $ |#1| $) 36) (($ $ (-650 |#1|) (-650 $)) 35)) (-1601 (((-777) $) 43)) (-3748 (($ $ $) 34)) (-3735 (((-868) $) 12) (($ |#1|) 46) (((-1291 |#1| |#2|) $) 45) (((-1300 |#1| |#2|) $) 44)) (-1441 ((|#2| (-1300 |#1| |#2|) $) 47)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2517 (($ (-678 |#1|)) 40)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#2|) 33 (|has| |#2| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#2| $) 27) (($ $ |#2|) 31)))
+((-2942 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 25)) (-3529 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 17)) (-1352 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
+(((-376 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2942 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1227) (-378 |#1|) (-1227) (-378 |#3|)) (T -376))
+((-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1227)) (-4 *5 (-1227)) (-4 *2 (-378 *5)) (-5 *1 (-376 *6 *4 *5 *2)) (-4 *4 (-378 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1227)) (-4 *2 (-1227)) (-5 *1 (-376 *5 *4 *2 *6)) (-4 *4 (-378 *5)) (-4 *6 (-378 *2)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-4 *2 (-378 *6)) (-5 *1 (-376 *5 *4 *6 *2)) (-4 *4 (-378 *5)))))
+(-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2942 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-4429 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-3885 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3287 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-2261 (($ $) 25)) (-3998 (((-570) (-1 (-112) |#2|) $) NIL) (((-570) |#2| $) 11) (((-570) |#2| $ (-570)) NIL)) (-2727 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-377 |#1| |#2|) (-10 -8 (-15 -3885 (|#1| |#1|)) (-15 -3885 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4429 ((-112) |#1|)) (-15 -3287 (|#1| |#1|)) (-15 -2727 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4429 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3287 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2261 (|#1| |#1|)) (-15 -2727 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-378 |#2|) (-1227)) (T -377))
+NIL
+(-10 -8 (-15 -3885 (|#1| |#1|)) (-15 -3885 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4429 ((-112) |#1|)) (-15 -3287 (|#1| |#1|)) (-15 -2727 (|#1| |#1| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4429 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3287 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2261 (|#1| |#1|)) (-15 -2727 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-2347 (($ $) 91 (|has| $ (-6 -4450)))) (-2261 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 88 (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3531 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2914 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-378 |#1|) (-141) (-1227)) (T -378))
+((-2727 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-2261 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)))) (-3287 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-4429 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-3998 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227)) (-5 *2 (-570)))) (-3998 (*1 *2 *3 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-570)))) (-3998 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)))) (-2727 (*1 *1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))) (-3287 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))) (-4429 (*1 *2 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-856)) (-5 *2 (-112)))) (-1523 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-2347 (*1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-378 *2)) (-4 *2 (-1227)))) (-3885 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4450)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-3885 (*1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))))
+(-13 (-657 |t#1|) (-10 -8 (-6 -4449) (-15 -2727 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2261 ($ $)) (-15 -3287 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -4429 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -3998 ((-570) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3998 ((-570) |t#1| $)) (-15 -3998 ((-570) |t#1| $ (-570)))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-6 (-856)) (-15 -2727 ($ $ $)) (-15 -3287 ($ $)) (-15 -4429 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4450)) (PROGN (-15 -1523 ($ $ $ (-570))) (-15 -2347 ($ $)) (-15 -3885 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-856)) (-15 -3885 ($ $)) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3039 (((-650 |#1|) $) 37)) (-3895 (($ $ (-777)) 38)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4034 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 41)) (-3374 (($ $) 39)) (-3684 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 42)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1731 (($ $ |#1| $) 36) (($ $ (-650 |#1|) (-650 $)) 35)) (-3221 (((-777) $) 43)) (-3749 (($ $ $) 34)) (-3735 (((-868) $) 12) (($ |#1|) 46) (((-1292 |#1| |#2|) $) 45) (((-1301 |#1| |#2|) $) 44)) (-1442 ((|#2| (-1301 |#1| |#2|) $) 47)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-3097 (($ (-678 |#1|)) 40)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#2|) 33 (|has| |#2| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#2| $) 27) (($ $ |#2|) 31)))
(((-379 |#1| |#2|) (-141) (-856) (-174)) (T -379))
-((-1441 (*1 *2 *3 *1) (-12 (-5 *3 (-1300 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856)) (-4 *2 (-174)))) (-3735 (*1 *1 *2) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3735 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1291 *3 *4)))) (-3735 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1300 *3 *4)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-777)))) (-3996 (*1 *2 *2 *1) (-12 (-5 *2 (-1300 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-2477 (*1 *2 *2 *1) (-12 (-5 *2 (-1300 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-2517 (*1 *1 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4)) (-4 *4 (-174)))) (-2543 (*1 *1 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-2464 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3039 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-650 *3)))) (-1730 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 *1)) (-4 *1 (-379 *4 *5)) (-4 *4 (-856)) (-4 *5 (-174)))))
-(-13 (-640 |t#2|) (-10 -8 (-15 -1441 (|t#2| (-1300 |t#1| |t#2|) $)) (-15 -3735 ($ |t#1|)) (-15 -3735 ((-1291 |t#1| |t#2|) $)) (-15 -3735 ((-1300 |t#1| |t#2|) $)) (-15 -1601 ((-777) $)) (-15 -3996 ((-1300 |t#1| |t#2|) (-1300 |t#1| |t#2|) $)) (-15 -2477 ((-1300 |t#1| |t#2|) (-1300 |t#1| |t#2|) $)) (-15 -2517 ($ (-678 |t#1|))) (-15 -2543 ($ $)) (-15 -2464 ($ $ (-777))) (-15 -3039 ((-650 |t#1|) $)) (-15 -1730 ($ $ |t#1| $)) (-15 -1730 ($ $ (-650 |t#1|) (-650 $)))))
+((-1442 (*1 *2 *3 *1) (-12 (-5 *3 (-1301 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856)) (-4 *2 (-174)))) (-3735 (*1 *1 *2) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3735 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1292 *3 *4)))) (-3735 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1301 *3 *4)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-777)))) (-3684 (*1 *2 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4034 (*1 *2 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3097 (*1 *1 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4)) (-4 *4 (-174)))) (-3374 (*1 *1 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3895 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3039 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-650 *3)))) (-1731 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 *1)) (-4 *1 (-379 *4 *5)) (-4 *4 (-856)) (-4 *5 (-174)))))
+(-13 (-640 |t#2|) (-10 -8 (-15 -1442 (|t#2| (-1301 |t#1| |t#2|) $)) (-15 -3735 ($ |t#1|)) (-15 -3735 ((-1292 |t#1| |t#2|) $)) (-15 -3735 ((-1301 |t#1| |t#2|) $)) (-15 -3221 ((-777) $)) (-15 -3684 ((-1301 |t#1| |t#2|) (-1301 |t#1| |t#2|) $)) (-15 -4034 ((-1301 |t#1| |t#2|) (-1301 |t#1| |t#2|) $)) (-15 -3097 ($ (-678 |t#1|))) (-15 -3374 ($ $)) (-15 -3895 ($ $ (-777))) (-15 -3039 ((-650 |t#1|) $)) (-15 -1731 ($ $ |t#1| $)) (-15 -1731 ($ $ (-650 |t#1|) (-650 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-654 |#2|) . T) ((-640 |#2|) . T) ((-646 |#2|) . T) ((-723 |#2|) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1109) . T))
-((-3286 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 44)) (-2981 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-3472 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 35)))
-(((-380 |#1| |#2|) (-10 -7 (-15 -2981 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3472 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3286 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1226) (-13 (-378 |#1|) (-10 -7 (-6 -4449)))) (T -380))
-((-3286 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-380 *4 *2)) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))))) (-3472 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-380 *4 *2)) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))))) (-2981 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-380 *4 *2)) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))))))
-(-10 -7 (-15 -2981 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3472 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3286 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
-((-4177 (((-695 |#2|) (-695 $)) NIL) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 22) (((-695 (-570)) (-695 $)) 14)))
-(((-381 |#1| |#2|) (-10 -8 (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 |#2|) (-695 |#1|)))) (-382 |#2|) (-1058)) (T -381))
-NIL
-(-10 -8 (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 |#2|) (-695 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-4177 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 39) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 47 (|has| |#1| (-645 (-570)))) (((-695 (-570)) (-695 $)) 46 (|has| |#1| (-645 (-570))))) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-4275 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 44)) (-3105 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-2286 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 35)))
+(((-380 |#1| |#2|) (-10 -7 (-15 -3105 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2286 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4275 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1227) (-13 (-378 |#1|) (-10 -7 (-6 -4450)))) (T -380))
+((-4275 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2)) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))))) (-2286 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2)) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))))) (-3105 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2)) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))))))
+(-10 -7 (-15 -3105 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2286 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4275 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
+((-1836 (((-695 |#2|) (-695 $)) NIL) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 22) (((-695 (-570)) (-695 $)) 14)))
+(((-381 |#1| |#2|) (-10 -8 (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 |#2|) (-695 |#1|)))) (-382 |#2|) (-1058)) (T -381))
+NIL
+(-10 -8 (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 |#2|) (-695 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1836 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 39) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 47 (|has| |#1| (-645 (-570)))) (((-695 (-570)) (-695 $)) 46 (|has| |#1| (-645 (-570))))) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-382 |#1|) (-141) (-1058)) (T -382))
NIL
(-13 (-645 |t#1|) (-10 -7 (IF (|has| |t#1| (-645 (-570))) (-6 (-645 (-570))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3919 (((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|) 51) (((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|) 50) (((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|) 47) (((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|) 41)) (-3130 (((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|) 30) (((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|) 18)))
-(((-383 |#1|) (-10 -7 (-15 -3919 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3919 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -3919 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3919 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3130 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3130 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|))) (-13 (-368) (-854))) (T -383))
-((-3130 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570)))))) (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 (-171 *5)))) (-5 *1 (-383 *5)) (-4 *5 (-13 (-368) (-854))))) (-3130 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-171 (-570))))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-3919 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 (-171 (-570)))))) (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-3919 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-171 (-570))))) (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-3919 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-298 (-413 (-959 (-171 (-570))))))) (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-3919 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570)))))) (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))))
-(-10 -7 (-15 -3919 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3919 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -3919 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3919 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3130 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3130 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 35)) (-3303 (((-570) $) 62)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3316 (($ $) 142)) (-2735 (($ $) 105)) (-2602 (($ $) 93)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3753 (($ $) 47)) (-4339 (((-112) $ $) NIL)) (-2712 (($ $) 103)) (-2579 (($ $) 87)) (-3140 (((-570) $) 80)) (-3020 (($ $ (-570)) 75)) (-4087 (($ $) NIL)) (-2622 (($ $) NIL)) (-2450 (($) NIL T CONST)) (-3670 (($ $) 144)) (-4378 (((-3 (-570) "failed") $) 239) (((-3 (-413 (-570)) "failed") $) 235)) (-3080 (((-570) $) 237) (((-413 (-570)) $) 233)) (-2372 (($ $ $) NIL)) (-4166 (((-570) $ $) 131)) (-3413 (((-3 $ "failed") $) 147)) (-1992 (((-413 (-570)) $ (-777)) 240) (((-413 (-570)) $ (-777) (-777)) 232)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-3430 (((-928)) 127) (((-928) (-928)) 128 (|has| $ (-6 -4439)))) (-1522 (((-112) $) 136)) (-1314 (($) 41)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-2238 (((-1281) (-777)) 199)) (-1544 (((-1281)) 204) (((-1281) (-777)) 205)) (-2962 (((-1281)) 206) (((-1281) (-777)) 207)) (-4158 (((-1281)) 202) (((-1281) (-777)) 203)) (-3157 (((-570) $) 68)) (-2081 (((-112) $) 40)) (-2598 (($ $ (-570)) NIL)) (-4046 (($ $) 51)) (-2610 (($ $) NIL)) (-2761 (((-112) $) 37)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL) (($) NIL (-12 (-1754 (|has| $ (-6 -4431))) (-1754 (|has| $ (-6 -4439)))))) (-3787 (($ $ $) NIL) (($) NIL (-12 (-1754 (|has| $ (-6 -4431))) (-1754 (|has| $ (-6 -4439)))))) (-2972 (((-570) $) 17)) (-2983 (($) 113) (($ $) 119)) (-1347 (($) 118) (($ $) 120)) (-2635 (($ $) 108)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 149)) (-3690 (((-928) (-570)) 46 (|has| $ (-6 -4439)))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) 60)) (-3739 (($ $) 141)) (-2539 (($ (-570) (-570)) 137) (($ (-570) (-570) (-928)) 138)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1907 (((-570) $) 19)) (-2694 (($) 121)) (-4387 (($ $) 102)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2784 (((-928)) 129) (((-928) (-928)) 130 (|has| $ (-6 -4439)))) (-3447 (($ $ (-777)) NIL) (($ $) 148)) (-4173 (((-928) (-570)) 50 (|has| $ (-6 -4439)))) (-4099 (($ $) NIL)) (-2634 (($ $) NIL)) (-2746 (($ $) NIL)) (-2611 (($ $) NIL)) (-2723 (($ $) 104)) (-2590 (($ $) 92)) (-1416 (((-384) $) 224) (((-227) $) 226) (((-899 (-384)) $) NIL) (((-1168) $) 210) (((-542) $) 222) (($ (-227)) 231)) (-3735 (((-868) $) 214) (($ (-570)) 236) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 236) (($ (-413 (-570))) NIL) (((-227) $) 227)) (-2744 (((-777)) NIL T CONST)) (-3754 (($ $) 143)) (-3804 (((-928)) 61) (((-928) (-928)) 82 (|has| $ (-6 -4439)))) (-1859 (((-112) $ $) NIL)) (-4358 (((-928)) 132)) (-4138 (($ $) 111)) (-2671 (($ $) 49) (($ $ $) 59)) (-1681 (((-112) $ $) NIL)) (-4108 (($ $) 109)) (-2647 (($ $) 39)) (-4161 (($ $) NIL)) (-2691 (($ $) NIL)) (-1509 (($ $) NIL)) (-2701 (($ $) NIL)) (-4150 (($ $) NIL)) (-2681 (($ $) NIL)) (-4123 (($ $) 110)) (-2660 (($ $) 52)) (-1423 (($ $) 58)) (-1812 (($) 36 T CONST)) (-1823 (($) 43 T CONST)) (-2892 (((-1168) $) 27) (((-1168) $ (-112)) 29) (((-1281) (-828) $) 30) (((-1281) (-828) $ (-112)) 31)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2924 (((-112) $ $) 211)) (-2904 (((-112) $ $) 45)) (-2872 (((-112) $ $) 56)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 57)) (-2975 (($ $ $) 48) (($ $ (-570)) 42)) (-2965 (($ $) 38) (($ $ $) 53)) (-2954 (($ $ $) 74)) (** (($ $ (-928)) 85) (($ $ (-777)) NIL) (($ $ (-570)) 114) (($ $ (-413 (-570))) 160) (($ $ $) 151)) (* (($ (-928) $) 81) (($ (-777) $) NIL) (($ (-570) $) 86) (($ $ $) 73) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-384) (-13 (-410) (-235) (-620 (-1168)) (-834) (-619 (-227)) (-1211) (-620 (-542)) (-624 (-227)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -4046 ($ $)) (-15 -4166 ((-570) $ $)) (-15 -3020 ($ $ (-570))) (-15 -1992 ((-413 (-570)) $ (-777))) (-15 -1992 ((-413 (-570)) $ (-777) (-777))) (-15 -2983 ($)) (-15 -1347 ($)) (-15 -2694 ($)) (-15 -2671 ($ $ $)) (-15 -2983 ($ $)) (-15 -1347 ($ $)) (-15 -2962 ((-1281))) (-15 -2962 ((-1281) (-777))) (-15 -4158 ((-1281))) (-15 -4158 ((-1281) (-777))) (-15 -1544 ((-1281))) (-15 -1544 ((-1281) (-777))) (-15 -2238 ((-1281) (-777))) (-6 -4439) (-6 -4431)))) (T -384))
-((** (*1 *1 *1 *1) (-5 *1 (-384))) (-2975 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-4046 (*1 *1 *1) (-5 *1 (-384))) (-4166 (*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-3020 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-1992 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-1992 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-2983 (*1 *1) (-5 *1 (-384))) (-1347 (*1 *1) (-5 *1 (-384))) (-2694 (*1 *1) (-5 *1 (-384))) (-2671 (*1 *1 *1 *1) (-5 *1 (-384))) (-2983 (*1 *1 *1) (-5 *1 (-384))) (-1347 (*1 *1 *1) (-5 *1 (-384))) (-2962 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-384)))) (-2962 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384)))) (-4158 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-384)))) (-4158 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384)))) (-1544 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-384)))) (-1544 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384)))) (-2238 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384)))))
-(-13 (-410) (-235) (-620 (-1168)) (-834) (-619 (-227)) (-1211) (-620 (-542)) (-624 (-227)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -4046 ($ $)) (-15 -4166 ((-570) $ $)) (-15 -3020 ($ $ (-570))) (-15 -1992 ((-413 (-570)) $ (-777))) (-15 -1992 ((-413 (-570)) $ (-777) (-777))) (-15 -2983 ($)) (-15 -1347 ($)) (-15 -2694 ($)) (-15 -2671 ($ $ $)) (-15 -2983 ($ $)) (-15 -1347 ($ $)) (-15 -2962 ((-1281))) (-15 -2962 ((-1281) (-777))) (-15 -4158 ((-1281))) (-15 -4158 ((-1281) (-777))) (-15 -1544 ((-1281))) (-15 -1544 ((-1281) (-777))) (-15 -2238 ((-1281) (-777))) (-6 -4439) (-6 -4431)))
-((-1654 (((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|) 46) (((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|) 45) (((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|) 42) (((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|) 36)) (-3040 (((-650 |#1|) (-413 (-959 (-570))) |#1|) 20) (((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|) 30)))
-(((-385 |#1|) (-10 -7 (-15 -1654 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -1654 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -1654 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -1654 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -3040 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -3040 ((-650 |#1|) (-413 (-959 (-570))) |#1|))) (-13 (-854) (-368))) (T -385))
-((-3040 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-3040 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-413 (-959 (-570))))) (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 *5))) (-5 *1 (-385 *5)) (-4 *5 (-13 (-854) (-368))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 (-570))))) (-5 *2 (-650 (-298 (-959 *4)))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 (-298 (-959 *4)))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-298 (-413 (-959 (-570)))))) (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 (-570))))) (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))))
-(-10 -7 (-15 -1654 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -1654 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -1654 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -1654 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -3040 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -3040 ((-650 |#1|) (-413 (-959 (-570))) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) 30)) (-3080 ((|#2| $) 32)) (-1890 (($ $) NIL)) (-3797 (((-777) $) 11)) (-1435 (((-650 $) $) 23)) (-1550 (((-112) $) NIL)) (-3278 (($ |#2| |#1|) 21)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3864 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 17)) (-1855 ((|#2| $) 18)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 51) (($ |#2|) 31)) (-3009 (((-650 |#1|) $) 20)) (-1715 ((|#1| $ |#2|) 55)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 33 T CONST)) (-2824 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 14)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#1| $) 36) (($ $ |#1|) 37) (($ |#1| |#2|) 39) (($ |#2| |#1|) 40)))
+((-4155 (((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|) 51) (((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|) 50) (((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|) 47) (((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|) 41)) (-2164 (((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|) 30) (((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|) 18)))
+(((-383 |#1|) (-10 -7 (-15 -4155 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -4155 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -4155 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -4155 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -2164 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -2164 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|))) (-13 (-368) (-854))) (T -383))
+((-2164 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570)))))) (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 (-171 *5)))) (-5 *1 (-383 *5)) (-4 *5 (-13 (-368) (-854))))) (-2164 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-171 (-570))))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 (-171 (-570)))))) (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-171 (-570))))) (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-298 (-413 (-959 (-171 (-570))))))) (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570)))))) (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854))))))
+(-10 -7 (-15 -4155 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -4155 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -4155 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -4155 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -2164 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -2164 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 35)) (-3113 (((-570) $) 62)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3235 (($ $) 142)) (-2735 (($ $) 105)) (-2602 (($ $) 93)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-3754 (($ $) 47)) (-2707 (((-112) $ $) NIL)) (-2712 (($ $) 103)) (-2579 (($ $) 87)) (-2249 (((-570) $) 80)) (-3020 (($ $ (-570)) 75)) (-4087 (($ $) NIL)) (-2622 (($ $) NIL)) (-3761 (($) NIL T CONST)) (-3601 (($ $) 144)) (-4379 (((-3 (-570) "failed") $) 239) (((-3 (-413 (-570)) "failed") $) 235)) (-3080 (((-570) $) 237) (((-413 (-570)) $) 233)) (-2372 (($ $ $) NIL)) (-1700 (((-570) $ $) 131)) (-2937 (((-3 $ "failed") $) 147)) (-2692 (((-413 (-570)) $ (-777)) 240) (((-413 (-570)) $ (-777) (-777)) 232)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3431 (((-928)) 127) (((-928) (-928)) 128 (|has| $ (-6 -4440)))) (-3703 (((-112) $) 136)) (-1315 (($) 41)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3438 (((-1282) (-777)) 199)) (-3962 (((-1282)) 204) (((-1282) (-777)) 205)) (-4244 (((-1282)) 206) (((-1282) (-777)) 207)) (-1625 (((-1282)) 202) (((-1282) (-777)) 203)) (-4331 (((-570) $) 68)) (-4340 (((-112) $) 40)) (-2665 (($ $ (-570)) NIL)) (-2918 (($ $) 51)) (-2771 (($ $) NIL)) (-1774 (((-112) $) 37)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL) (($) NIL (-12 (-1753 (|has| $ (-6 -4432))) (-1753 (|has| $ (-6 -4440)))))) (-2222 (($ $ $) NIL) (($) NIL (-12 (-1753 (|has| $ (-6 -4432))) (-1753 (|has| $ (-6 -4440)))))) (-2973 (((-570) $) 17)) (-3126 (($) 113) (($ $) 119)) (-1348 (($) 118) (($ $) 120)) (-2635 (($ $) 108)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 149)) (-2542 (((-928) (-570)) 46 (|has| $ (-6 -4440)))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) 60)) (-2962 (($ $) 141)) (-2539 (($ (-570) (-570)) 137) (($ (-570) (-570) (-928)) 138)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3011 (((-570) $) 19)) (-2319 (($) 121)) (-4388 (($ $) 102)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3819 (((-928)) 129) (((-928) (-928)) 130 (|has| $ (-6 -4440)))) (-3447 (($ $ (-777)) NIL) (($ $) 148)) (-1792 (((-928) (-570)) 50 (|has| $ (-6 -4440)))) (-4098 (($ $) NIL)) (-2634 (($ $) NIL)) (-2746 (($ $) NIL)) (-2612 (($ $) NIL)) (-2723 (($ $) 104)) (-2590 (($ $) 92)) (-1417 (((-384) $) 224) (((-227) $) 226) (((-899 (-384)) $) NIL) (((-1168) $) 210) (((-542) $) 222) (($ (-227)) 231)) (-3735 (((-868) $) 214) (($ (-570)) 236) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 236) (($ (-413 (-570))) NIL) (((-227) $) 227)) (-1609 (((-777)) NIL T CONST)) (-1963 (($ $) 143)) (-2346 (((-928)) 61) (((-928) (-928)) 82 (|has| $ (-6 -4440)))) (-3866 (((-112) $ $) NIL)) (-4360 (((-928)) 132)) (-4137 (($ $) 111)) (-2671 (($ $) 49) (($ $ $) 59)) (-2795 (((-112) $ $) NIL)) (-4112 (($ $) 109)) (-2647 (($ $) 39)) (-4157 (($ $) NIL)) (-2691 (($ $) NIL)) (-1510 (($ $) NIL)) (-2701 (($ $) NIL)) (-4150 (($ $) NIL)) (-2681 (($ $) NIL)) (-4123 (($ $) 110)) (-2660 (($ $) 52)) (-1367 (($ $) 58)) (-1814 (($) 36 T CONST)) (-1824 (($) 43 T CONST)) (-3637 (((-1168) $) 27) (((-1168) $ (-112)) 29) (((-1282) (-828) $) 30) (((-1282) (-828) $ (-112)) 31)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2924 (((-112) $ $) 211)) (-2904 (((-112) $ $) 45)) (-2872 (((-112) $ $) 56)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 57)) (-2975 (($ $ $) 48) (($ $ (-570)) 42)) (-2965 (($ $) 38) (($ $ $) 53)) (-2953 (($ $ $) 74)) (** (($ $ (-928)) 85) (($ $ (-777)) NIL) (($ $ (-570)) 114) (($ $ (-413 (-570))) 160) (($ $ $) 151)) (* (($ (-928) $) 81) (($ (-777) $) NIL) (($ (-570) $) 86) (($ $ $) 73) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-384) (-13 (-410) (-235) (-620 (-1168)) (-834) (-619 (-227)) (-1212) (-620 (-542)) (-624 (-227)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2918 ($ $)) (-15 -1700 ((-570) $ $)) (-15 -3020 ($ $ (-570))) (-15 -2692 ((-413 (-570)) $ (-777))) (-15 -2692 ((-413 (-570)) $ (-777) (-777))) (-15 -3126 ($)) (-15 -1348 ($)) (-15 -2319 ($)) (-15 -2671 ($ $ $)) (-15 -3126 ($ $)) (-15 -1348 ($ $)) (-15 -4244 ((-1282))) (-15 -4244 ((-1282) (-777))) (-15 -1625 ((-1282))) (-15 -1625 ((-1282) (-777))) (-15 -3962 ((-1282))) (-15 -3962 ((-1282) (-777))) (-15 -3438 ((-1282) (-777))) (-6 -4440) (-6 -4432)))) (T -384))
+((** (*1 *1 *1 *1) (-5 *1 (-384))) (-2975 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-2918 (*1 *1 *1) (-5 *1 (-384))) (-1700 (*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-3020 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-2692 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-2692 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-3126 (*1 *1) (-5 *1 (-384))) (-1348 (*1 *1) (-5 *1 (-384))) (-2319 (*1 *1) (-5 *1 (-384))) (-2671 (*1 *1 *1 *1) (-5 *1 (-384))) (-3126 (*1 *1 *1) (-5 *1 (-384))) (-1348 (*1 *1 *1) (-5 *1 (-384))) (-4244 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-4244 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-1625 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-1625 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-3962 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-3962 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-3438 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))))
+(-13 (-410) (-235) (-620 (-1168)) (-834) (-619 (-227)) (-1212) (-620 (-542)) (-624 (-227)) (-10 -8 (-15 -2975 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2918 ($ $)) (-15 -1700 ((-570) $ $)) (-15 -3020 ($ $ (-570))) (-15 -2692 ((-413 (-570)) $ (-777))) (-15 -2692 ((-413 (-570)) $ (-777) (-777))) (-15 -3126 ($)) (-15 -1348 ($)) (-15 -2319 ($)) (-15 -2671 ($ $ $)) (-15 -3126 ($ $)) (-15 -1348 ($ $)) (-15 -4244 ((-1282))) (-15 -4244 ((-1282) (-777))) (-15 -1625 ((-1282))) (-15 -1625 ((-1282) (-777))) (-15 -3962 ((-1282))) (-15 -3962 ((-1282) (-777))) (-15 -3438 ((-1282) (-777))) (-6 -4440) (-6 -4432)))
+((-2524 (((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|) 46) (((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|) 45) (((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|) 42) (((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|) 36)) (-2466 (((-650 |#1|) (-413 (-959 (-570))) |#1|) 20) (((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|) 30)))
+(((-385 |#1|) (-10 -7 (-15 -2524 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -2524 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -2524 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -2524 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -2466 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -2466 ((-650 |#1|) (-413 (-959 (-570))) |#1|))) (-13 (-854) (-368))) (T -385))
+((-2466 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-2466 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-413 (-959 (-570))))) (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 *5))) (-5 *1 (-385 *5)) (-4 *5 (-13 (-854) (-368))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 (-570))))) (-5 *2 (-650 (-298 (-959 *4)))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 (-298 (-959 *4)))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-298 (-413 (-959 (-570)))))) (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 (-570))))) (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))))
+(-10 -7 (-15 -2524 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -2524 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -2524 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -2524 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -2466 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -2466 ((-650 |#1|) (-413 (-959 (-570))) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) 30)) (-3080 ((|#2| $) 32)) (-1891 (($ $) NIL)) (-2292 (((-777) $) 11)) (-1471 (((-650 $) $) 23)) (-4016 (((-112) $) NIL)) (-3278 (($ |#2| |#1|) 21)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1773 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 17)) (-1857 ((|#2| $) 18)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 51) (($ |#2|) 31)) (-3405 (((-650 |#1|) $) 20)) (-1983 ((|#1| $ |#2|) 55)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 33 T CONST)) (-4256 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 14)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#1| $) 36) (($ $ |#1|) 37) (($ |#1| |#2|) 39) (($ |#2| |#1|) 40)))
(((-386 |#1| |#2|) (-13 (-387 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-1058) (-856)) (T -386))
((* (*1 *1 *2 *3) (-12 (-5 *1 (-386 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-856)))))
(-13 (-387 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#2| "failed") $) 49)) (-3080 ((|#2| $) 50)) (-1890 (($ $) 35)) (-3797 (((-777) $) 39)) (-1435 (((-650 $) $) 40)) (-1550 (((-112) $) 43)) (-3278 (($ |#2| |#1|) 44)) (-1351 (($ (-1 |#1| |#1|) $) 45)) (-3864 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 36)) (-1855 ((|#2| $) 38)) (-1864 ((|#1| $) 37)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ |#2|) 48)) (-3009 (((-650 |#1|) $) 41)) (-1715 ((|#1| $ |#2|) 46)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2824 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 42)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31) (($ |#1| |#2|) 47)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#2| "failed") $) 49)) (-3080 ((|#2| $) 50)) (-1891 (($ $) 35)) (-2292 (((-777) $) 39)) (-1471 (((-650 $) $) 40)) (-4016 (((-112) $) 43)) (-3278 (($ |#2| |#1|) 44)) (-1352 (($ (-1 |#1| |#1|) $) 45)) (-1773 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 36)) (-1857 ((|#2| $) 38)) (-1865 ((|#1| $) 37)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ |#2|) 48)) (-3405 (((-650 |#1|) $) 41)) (-1983 ((|#1| $ |#2|) 46)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-4256 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 42)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31) (($ |#1| |#2|) 47)))
(((-387 |#1| |#2|) (-141) (-1058) (-1109)) (T -387))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-387 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1109)))) (-1715 (*1 *2 *1 *3) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)))) (-3278 (*1 *1 *2 *3) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-1550 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-2824 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3009 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-1435 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-387 *3 *4)))) (-3797 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-1855 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-1864 (*1 *2 *1) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-3864 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1890 (*1 *1 *1) (-12 (-4 *1 (-387 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1109)))))
-(-13 (-111 |t#1| |t#1|) (-1047 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -1715 (|t#1| $ |t#2|)) (-15 -1351 ($ (-1 |t#1| |t#1|) $)) (-15 -3278 ($ |t#2| |t#1|)) (-15 -1550 ((-112) $)) (-15 -2824 ((-650 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3009 ((-650 |t#1|) $)) (-15 -1435 ((-650 $) $)) (-15 -3797 ((-777) $)) (-15 -1855 (|t#2| $)) (-15 -1864 (|t#1| $)) (-15 -3864 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1890 ($ $)) (IF (|has| |t#1| (-174)) (-6 (-723 |t#1|)) |%noBranch|)))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-387 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1109)))) (-1983 (*1 *2 *1 *3) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)))) (-3278 (*1 *1 *2 *3) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-4016 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-4256 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3405 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-1471 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-387 *3 *4)))) (-2292 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-1857 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-1773 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1891 (*1 *1 *1) (-12 (-4 *1 (-387 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1109)))))
+(-13 (-111 |t#1| |t#1|) (-1047 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -1983 (|t#1| $ |t#2|)) (-15 -1352 ($ (-1 |t#1| |t#1|) $)) (-15 -3278 ($ |t#2| |t#1|)) (-15 -4016 ((-112) $)) (-15 -4256 ((-650 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3405 ((-650 |t#1|) $)) (-15 -1471 ((-650 $) $)) (-15 -2292 ((-777) $)) (-15 -1857 (|t#2| $)) (-15 -1865 (|t#1| $)) (-15 -1773 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1891 ($ $)) (IF (|has| |t#1| (-174)) (-6 (-723 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) |has| |#1| (-174)) ((-723 |#1|) |has| |#1| (-174)) ((-1047 |#2|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-3292 (((-1281) $) 7)) (-3735 (((-868) $) 8) (($ (-695 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 11)))
+((-3291 (((-1282) $) 7)) (-3735 (((-868) $) 8) (($ (-695 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 11)))
(((-388) (-141)) (T -388))
((-3735 (*1 *1 *2) (-12 (-5 *2 (-695 (-705))) (-4 *1 (-388)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-388)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-388)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-388)))))
(-13 (-401) (-10 -8 (-15 -3735 ($ (-695 (-705)))) (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))))))
-(((-619 (-868)) . T) ((-401) . T) ((-1226) . T))
-((-4378 (((-3 $ "failed") (-695 (-320 (-384)))) 21) (((-3 $ "failed") (-695 (-320 (-570)))) 19) (((-3 $ "failed") (-695 (-959 (-384)))) 17) (((-3 $ "failed") (-695 (-959 (-570)))) 15) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 13) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 11)) (-3080 (($ (-695 (-320 (-384)))) 22) (($ (-695 (-320 (-570)))) 20) (($ (-695 (-959 (-384)))) 18) (($ (-695 (-959 (-570)))) 16) (($ (-695 (-413 (-959 (-384))))) 14) (($ (-695 (-413 (-959 (-570))))) 12)) (-3292 (((-1281) $) 7)) (-3735 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 23)))
+(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
+((-4379 (((-3 $ "failed") (-695 (-320 (-384)))) 21) (((-3 $ "failed") (-695 (-320 (-570)))) 19) (((-3 $ "failed") (-695 (-959 (-384)))) 17) (((-3 $ "failed") (-695 (-959 (-570)))) 15) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 13) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 11)) (-3080 (($ (-695 (-320 (-384)))) 22) (($ (-695 (-320 (-570)))) 20) (($ (-695 (-959 (-384)))) 18) (($ (-695 (-959 (-570)))) 16) (($ (-695 (-413 (-959 (-384))))) 14) (($ (-695 (-413 (-959 (-570))))) 12)) (-3291 (((-1282) $) 7)) (-3735 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 23)))
(((-389) (-141)) (T -389))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-389)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-389)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))))
-(-13 (-401) (-10 -8 (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3080 ($ (-695 (-320 (-384))))) (-15 -4378 ((-3 $ "failed") (-695 (-320 (-384))))) (-15 -3080 ($ (-695 (-320 (-570))))) (-15 -4378 ((-3 $ "failed") (-695 (-320 (-570))))) (-15 -3080 ($ (-695 (-959 (-384))))) (-15 -4378 ((-3 $ "failed") (-695 (-959 (-384))))) (-15 -3080 ($ (-695 (-959 (-570))))) (-15 -4378 ((-3 $ "failed") (-695 (-959 (-570))))) (-15 -3080 ($ (-695 (-413 (-959 (-384)))))) (-15 -4378 ((-3 $ "failed") (-695 (-413 (-959 (-384)))))) (-15 -3080 ($ (-695 (-413 (-959 (-570)))))) (-15 -4378 ((-3 $ "failed") (-695 (-413 (-959 (-570))))))))
-(((-619 (-868)) . T) ((-401) . T) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2178 ((|#2| $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 33)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 12 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#1| $) 15) (($ $ |#1|) 18)))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-389)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-389)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))))
+(-13 (-401) (-10 -8 (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3080 ($ (-695 (-320 (-384))))) (-15 -4379 ((-3 $ "failed") (-695 (-320 (-384))))) (-15 -3080 ($ (-695 (-320 (-570))))) (-15 -4379 ((-3 $ "failed") (-695 (-320 (-570))))) (-15 -3080 ($ (-695 (-959 (-384))))) (-15 -4379 ((-3 $ "failed") (-695 (-959 (-384))))) (-15 -3080 ($ (-695 (-959 (-570))))) (-15 -4379 ((-3 $ "failed") (-695 (-959 (-570))))) (-15 -3080 ($ (-695 (-413 (-959 (-384)))))) (-15 -4379 ((-3 $ "failed") (-695 (-413 (-959 (-384)))))) (-15 -3080 ($ (-695 (-413 (-959 (-570)))))) (-15 -4379 ((-3 $ "failed") (-695 (-413 (-959 (-570))))))))
+(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4079 ((|#2| $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 33)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 12 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#1| $) 15) (($ $ |#1|) 18)))
(((-390 |#1| |#2|) (-13 (-111 |#1| |#1|) (-515 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-174)) (-6 (-723 |#1|)) |%noBranch|))) (-1058) (-856)) (T -390))
NIL
(-13 (-111 |#1| |#1|) (-515 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-174)) (-6 (-723 |#1|)) |%noBranch|)))
-((-2416 (((-112) $ $) 7)) (-3403 (((-777) $) 34)) (-2450 (($) 19 T CONST)) (-2477 (((-3 $ "failed") $ $) 37)) (-4378 (((-3 |#1| "failed") $) 45)) (-3080 ((|#1| $) 46)) (-3413 (((-3 $ "failed") $) 16)) (-3906 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 35)) (-2081 (((-112) $) 18)) (-2530 ((|#1| $ (-570)) 31)) (-1519 (((-777) $ (-570)) 32)) (-3310 (($ $ $) 28 (|has| |#1| (-856)))) (-3787 (($ $ $) 27 (|has| |#1| (-856)))) (-2553 (($ (-1 |#1| |#1|) $) 29)) (-1381 (($ (-1 (-777) (-777)) $) 30)) (-3996 (((-3 $ "failed") $ $) 38)) (-1903 (((-1168) $) 10)) (-1886 (($ $ $) 39)) (-3653 (($ $ $) 40)) (-3479 (((-1129) $) 11)) (-1679 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) 33)) (-2382 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 36)) (-3735 (((-868) $) 12) (($ |#1|) 44)) (-1859 (((-112) $ $) 9)) (-1823 (($) 20 T CONST)) (-2924 (((-112) $ $) 25 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 24 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 26 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 23 (|has| |#1| (-856)))) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ |#1| (-777)) 41)) (* (($ $ $) 15) (($ |#1| $) 43) (($ $ |#1|) 42)))
+((-2417 (((-112) $ $) 7)) (-3403 (((-777) $) 34)) (-3761 (($) 19 T CONST)) (-4034 (((-3 $ "failed") $ $) 37)) (-4379 (((-3 |#1| "failed") $) 45)) (-3080 ((|#1| $) 46)) (-2937 (((-3 $ "failed") $) 16)) (-4019 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 35)) (-4340 (((-112) $) 18)) (-3243 ((|#1| $ (-570)) 31)) (-3670 (((-777) $ (-570)) 32)) (-3311 (($ $ $) 28 (|has| |#1| (-856)))) (-2222 (($ $ $) 27 (|has| |#1| (-856)))) (-3484 (($ (-1 |#1| |#1|) $) 29)) (-3031 (($ (-1 (-777) (-777)) $) 30)) (-3684 (((-3 $ "failed") $ $) 38)) (-4268 (((-1168) $) 10)) (-4096 (($ $ $) 39)) (-3430 (($ $ $) 40)) (-3479 (((-1129) $) 11)) (-2773 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-777)))) $) 33)) (-4378 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 36)) (-3735 (((-868) $) 12) (($ |#1|) 44)) (-3866 (((-112) $ $) 9)) (-1824 (($) 20 T CONST)) (-2924 (((-112) $ $) 25 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 24 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 26 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 23 (|has| |#1| (-856)))) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ |#1| (-777)) 41)) (* (($ $ $) 15) (($ |#1| $) 43) (($ $ |#1|) 42)))
(((-391 |#1|) (-141) (-1109)) (T -391))
-((* (*1 *1 *2 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3653 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-1886 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3996 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2477 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2382 (*1 *2 *1 *1) (|partial| -12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-3906 (*1 *2 *1 *1) (-12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-3403 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-1679 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 (-777))))))) (-1519 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *4)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-1381 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-777) (-777))) (-4 *1 (-391 *3)) (-4 *3 (-1109)))) (-2553 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-391 *3)) (-4 *3 (-1109)))))
-(-13 (-732) (-1047 |t#1|) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 ** ($ |t#1| (-777))) (-15 -3653 ($ $ $)) (-15 -1886 ($ $ $)) (-15 -3996 ((-3 $ "failed") $ $)) (-15 -2477 ((-3 $ "failed") $ $)) (-15 -2382 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3906 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3403 ((-777) $)) (-15 -1679 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4387 (-777)))) $)) (-15 -1519 ((-777) $ (-570))) (-15 -2530 (|t#1| $ (-570))) (-15 -1381 ($ (-1 (-777) (-777)) $)) (-15 -2553 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|)))
+((* (*1 *1 *2 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3430 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-4096 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3684 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-4034 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-4378 (*1 *2 *1 *1) (|partial| -12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-4019 (*1 *2 *1 *1) (-12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-3403 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-2773 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 (-777))))))) (-3670 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *4)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3031 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-777) (-777))) (-4 *1 (-391 *3)) (-4 *3 (-1109)))) (-3484 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-391 *3)) (-4 *3 (-1109)))))
+(-13 (-732) (-1047 |t#1|) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 ** ($ |t#1| (-777))) (-15 -3430 ($ $ $)) (-15 -4096 ($ $ $)) (-15 -3684 ((-3 $ "failed") $ $)) (-15 -4034 ((-3 $ "failed") $ $)) (-15 -4378 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4019 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3403 ((-777) $)) (-15 -2773 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4388 (-777)))) $)) (-15 -3670 ((-777) $ (-570))) (-15 -3243 (|t#1| $ (-570))) (-15 -3031 ($ (-1 (-777) (-777)) $)) (-15 -3484 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|)))
(((-102) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-732) . T) ((-856) |has| |#1| (-856)) ((-1047 |#1|) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777) $) 74)) (-2450 (($) NIL T CONST)) (-2477 (((-3 $ "failed") $ $) 77)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3906 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 64)) (-2081 (((-112) $) 17)) (-2530 ((|#1| $ (-570)) NIL)) (-1519 (((-777) $ (-570)) NIL)) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-2553 (($ (-1 |#1| |#1|) $) 40)) (-1381 (($ (-1 (-777) (-777)) $) 37)) (-3996 (((-3 $ "failed") $ $) 60)) (-1903 (((-1168) $) NIL)) (-1886 (($ $ $) 28)) (-3653 (($ $ $) 26)) (-3479 (((-1129) $) NIL)) (-1679 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) 34)) (-2382 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 70)) (-3735 (((-868) $) 24) (($ |#1|) NIL)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 11 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) 84 (|has| |#1| (-856)))) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) 42)) (* (($ $ $) 52) (($ |#1| $) 32) (($ $ |#1|) 30)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777) $) 74)) (-3761 (($) NIL T CONST)) (-4034 (((-3 $ "failed") $ $) 77)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-4019 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 64)) (-4340 (((-112) $) 17)) (-3243 ((|#1| $ (-570)) NIL)) (-3670 (((-777) $ (-570)) NIL)) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3484 (($ (-1 |#1| |#1|) $) 40)) (-3031 (($ (-1 (-777) (-777)) $) 37)) (-3684 (((-3 $ "failed") $ $) 60)) (-4268 (((-1168) $) NIL)) (-4096 (($ $ $) 28)) (-3430 (($ $ $) 26)) (-3479 (((-1129) $) NIL)) (-2773 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-777)))) $) 34)) (-4378 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 70)) (-3735 (((-868) $) 24) (($ |#1|) NIL)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 11 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) 84 (|has| |#1| (-856)))) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) 42)) (* (($ $ $) 52) (($ |#1| $) 32) (($ $ |#1|) 30)))
(((-392 |#1|) (-391 |#1|) (-1109)) (T -392))
NIL
(-391 |#1|)
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 53)) (-3080 (((-570) $) 54)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-3310 (($ $ $) 60)) (-3787 (($ $ $) 59)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 52)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 57)) (-2904 (((-112) $ $) 56)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 58)) (-2894 (((-112) $ $) 55)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 53)) (-3080 (((-570) $) 54)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-3311 (($ $ $) 60)) (-2222 (($ $ $) 59)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 52)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 57)) (-2904 (((-112) $ $) 56)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 58)) (-2894 (((-112) $ $) 55)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-393) (-141)) (T -393))
NIL
(-13 (-562) (-856) (-1047 (-570)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-856) . T) ((-1047 (-570)) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-2291 (((-112) $) 25)) (-2901 (((-112) $) 22)) (-4286 (($ (-1168) (-1168) (-1168)) 26)) (-3503 (((-1168) $) 16)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2031 (($ (-1168) (-1168) (-1168)) 14)) (-1851 (((-1168) $) 17)) (-2405 (((-112) $) 18)) (-4355 (((-1168) $) 15)) (-3735 (((-868) $) 12) (($ (-1168)) 13) (((-1168) $) 9)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 7)))
+((-2417 (((-112) $ $) NIL)) (-2720 (((-112) $) 25)) (-3728 (((-112) $) 22)) (-4287 (($ (-1168) (-1168) (-1168)) 26)) (-3504 (((-1168) $) 16)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2030 (($ (-1168) (-1168) (-1168)) 14)) (-3785 (((-1168) $) 17)) (-1513 (((-112) $) 18)) (-4358 (((-1168) $) 15)) (-3735 (((-868) $) 12) (($ (-1168)) 13) (((-1168) $) 9)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 7)))
(((-394) (-395)) (T -394))
NIL
(-395)
-((-2416 (((-112) $ $) 7)) (-2291 (((-112) $) 17)) (-2901 (((-112) $) 18)) (-4286 (($ (-1168) (-1168) (-1168)) 16)) (-3503 (((-1168) $) 21)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2031 (($ (-1168) (-1168) (-1168)) 23)) (-1851 (((-1168) $) 20)) (-2405 (((-112) $) 19)) (-4355 (((-1168) $) 22)) (-3735 (((-868) $) 12) (($ (-1168)) 25) (((-1168) $) 24)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) 7)) (-2720 (((-112) $) 17)) (-3728 (((-112) $) 18)) (-4287 (($ (-1168) (-1168) (-1168)) 16)) (-3504 (((-1168) $) 21)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2030 (($ (-1168) (-1168) (-1168)) 23)) (-3785 (((-1168) $) 20)) (-1513 (((-112) $) 19)) (-4358 (((-1168) $) 22)) (-3735 (((-868) $) 12) (($ (-1168)) 25) (((-1168) $) 24)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-395) (-141)) (T -395))
-((-2031 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))) (-4355 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3503 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-1851 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-2405 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-2901 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-2291 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-4286 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
-(-13 (-1109) (-496 (-1168)) (-10 -8 (-15 -2031 ($ (-1168) (-1168) (-1168))) (-15 -4355 ((-1168) $)) (-15 -3503 ((-1168) $)) (-15 -1851 ((-1168) $)) (-15 -2405 ((-112) $)) (-15 -2901 ((-112) $)) (-15 -2291 ((-112) $)) (-15 -4286 ($ (-1168) (-1168) (-1168)))))
+((-2030 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))) (-4358 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3504 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3785 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-1513 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-3728 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-2720 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-4287 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
+(-13 (-1109) (-496 (-1168)) (-10 -8 (-15 -2030 ($ (-1168) (-1168) (-1168))) (-15 -4358 ((-1168) $)) (-15 -3504 ((-1168) $)) (-15 -3785 ((-1168) $)) (-15 -1513 ((-112) $)) (-15 -3728 ((-112) $)) (-15 -2720 ((-112) $)) (-15 -4287 ($ (-1168) (-1168) (-1168)))))
(((-102) . T) ((-622 #0=(-1168)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4277 (((-868) $) 63)) (-2450 (($) NIL T CONST)) (-3937 (($ $ (-928)) NIL)) (-3388 (($ $ (-928)) NIL)) (-2247 (($ $ (-928)) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2339 (($ (-777)) 38)) (-2184 (((-777)) 18)) (-3961 (((-868) $) 65)) (-3688 (($ $ $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-3183 (($ $ $ $) NIL)) (-1960 (($ $ $) NIL)) (-1812 (($) 24 T CONST)) (-2872 (((-112) $ $) 41)) (-2965 (($ $) 48) (($ $ $) 50)) (-2954 (($ $ $) 51)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 52) (($ $ |#3|) NIL) (($ |#3| $) 47)))
-(((-396 |#1| |#2| |#3|) (-13 (-750 |#3|) (-10 -8 (-15 -2184 ((-777))) (-15 -3961 ((-868) $)) (-15 -4277 ((-868) $)) (-15 -2339 ($ (-777))))) (-777) (-777) (-174)) (T -396))
-((-2184 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-174)))) (-3961 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-4277 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2339 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-174)))))
-(-13 (-750 |#3|) (-10 -8 (-15 -2184 ((-777))) (-15 -3961 ((-868) $)) (-15 -4277 ((-868) $)) (-15 -2339 ($ (-777)))))
-((-1442 (((-1168)) 12)) (-3384 (((-1156 (-1168))) 30)) (-3257 (((-1281) (-1168)) 27) (((-1281) (-394)) 26)) (-3274 (((-1281)) 28)) (-3635 (((-1156 (-1168))) 29)))
-(((-397) (-10 -7 (-15 -3635 ((-1156 (-1168)))) (-15 -3384 ((-1156 (-1168)))) (-15 -3274 ((-1281))) (-15 -3257 ((-1281) (-394))) (-15 -3257 ((-1281) (-1168))) (-15 -1442 ((-1168))))) (T -397))
-((-1442 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))) (-3257 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-397)))) (-3257 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1281)) (-5 *1 (-397)))) (-3274 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-397)))) (-3384 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))) (-3635 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
-(-10 -7 (-15 -3635 ((-1156 (-1168)))) (-15 -3384 ((-1156 (-1168)))) (-15 -3274 ((-1281))) (-15 -3257 ((-1281) (-394))) (-15 -3257 ((-1281) (-1168))) (-15 -1442 ((-1168))))
-((-3157 (((-777) (-341 |#1| |#2| |#3| |#4|)) 19)))
-(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3157 ((-777) (-341 |#1| |#2| |#3| |#4|)))) (-13 (-373) (-368)) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -398))
-((-3157 (*1 *2 *3) (-12 (-5 *3 (-341 *4 *5 *6 *7)) (-4 *4 (-13 (-373) (-368))) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-4 *7 (-347 *4 *5 *6)) (-5 *2 (-777)) (-5 *1 (-398 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3157 ((-777) (-341 |#1| |#2| |#3| |#4|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3375 (((-868) $) 63)) (-3761 (($) NIL T CONST)) (-4333 (($ $ (-928)) NIL)) (-2710 (($ $ (-928)) NIL)) (-3548 (($ $ (-928)) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2340 (($ (-777)) 38)) (-4154 (((-777)) 18)) (-3283 (((-868) $) 65)) (-2522 (($ $ $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1483 (($ $ $ $) NIL)) (-3619 (($ $ $) NIL)) (-1814 (($) 24 T CONST)) (-2872 (((-112) $ $) 41)) (-2965 (($ $) 48) (($ $ $) 50)) (-2953 (($ $ $) 51)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 52) (($ $ |#3|) NIL) (($ |#3| $) 47)))
+(((-396 |#1| |#2| |#3|) (-13 (-750 |#3|) (-10 -8 (-15 -4154 ((-777))) (-15 -3283 ((-868) $)) (-15 -3375 ((-868) $)) (-15 -2340 ($ (-777))))) (-777) (-777) (-174)) (T -396))
+((-4154 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-174)))) (-3283 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-3375 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2340 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-174)))))
+(-13 (-750 |#3|) (-10 -8 (-15 -4154 ((-777))) (-15 -3283 ((-868) $)) (-15 -3375 ((-868) $)) (-15 -2340 ($ (-777)))))
+((-1526 (((-1168)) 12)) (-2668 (((-1156 (-1168))) 30)) (-3255 (((-1282) (-1168)) 27) (((-1282) (-394)) 26)) (-3270 (((-1282)) 28)) (-3227 (((-1156 (-1168))) 29)))
+(((-397) (-10 -7 (-15 -3227 ((-1156 (-1168)))) (-15 -2668 ((-1156 (-1168)))) (-15 -3270 ((-1282))) (-15 -3255 ((-1282) (-394))) (-15 -3255 ((-1282) (-1168))) (-15 -1526 ((-1168))))) (T -397))
+((-1526 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))) (-3255 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-397)))) (-3255 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-397)))) (-3270 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-397)))) (-2668 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))) (-3227 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+(-10 -7 (-15 -3227 ((-1156 (-1168)))) (-15 -2668 ((-1156 (-1168)))) (-15 -3270 ((-1282))) (-15 -3255 ((-1282) (-394))) (-15 -3255 ((-1282) (-1168))) (-15 -1526 ((-1168))))
+((-4331 (((-777) (-341 |#1| |#2| |#3| |#4|)) 19)))
+(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4331 ((-777) (-341 |#1| |#2| |#3| |#4|)))) (-13 (-373) (-368)) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -398))
+((-4331 (*1 *2 *3) (-12 (-5 *3 (-341 *4 *5 *6 *7)) (-4 *4 (-13 (-373) (-368))) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-4 *7 (-347 *4 *5 *6)) (-5 *2 (-777)) (-5 *1 (-398 *4 *5 *6 *7)))))
+(-10 -7 (-15 -4331 ((-777) (-341 |#1| |#2| |#3| |#4|))))
((-3735 (((-400) |#1|) 11)))
(((-399 |#1|) (-10 -7 (-15 -3735 ((-400) |#1|))) (-1109)) (T -399))
((-3735 (*1 *2 *3) (-12 (-5 *2 (-400)) (-5 *1 (-399 *3)) (-4 *3 (-1109)))))
(-10 -7 (-15 -3735 ((-400) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-2376 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-4117 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-2511 (((-650 (-1168)) $ (-650 (-1168))) 44)) (-3519 (((-650 (-1168)) $) 39)) (-4286 (($) 30)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3110 (((-650 (-1168)) $) 40)) (-3910 (((-650 (-1168)) $) 41)) (-4131 (((-1281) $ (-570)) 37) (((-1281) $) 38)) (-1416 (($ (-868) (-570)) 35)) (-3735 (((-868) $) 49) (($ (-868)) 32)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-400) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1416 ($ (-868) (-570))) (-15 -4131 ((-1281) $ (-570))) (-15 -4131 ((-1281) $)) (-15 -3910 ((-650 (-1168)) $)) (-15 -3110 ((-650 (-1168)) $)) (-15 -4286 ($)) (-15 -3519 ((-650 (-1168)) $)) (-15 -2511 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -4117 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2376 ((-650 (-1168)) $ (-650 (-1168))))))) (T -400))
-((-1416 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-400)))) (-4131 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-400)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-400)))) (-3910 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3110 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-4286 (*1 *1) (-5 *1 (-400))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-2511 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-4117 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-2376 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
-(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1416 ($ (-868) (-570))) (-15 -4131 ((-1281) $ (-570))) (-15 -4131 ((-1281) $)) (-15 -3910 ((-650 (-1168)) $)) (-15 -3110 ((-650 (-1168)) $)) (-15 -4286 ($)) (-15 -3519 ((-650 (-1168)) $)) (-15 -2511 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -4117 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2376 ((-650 (-1168)) $ (-650 (-1168))))))
-((-3292 (((-1281) $) 7)) (-3735 (((-868) $) 8)))
+((-2417 (((-112) $ $) NIL)) (-2394 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-2421 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-3055 (((-650 (-1168)) $ (-650 (-1168))) 44)) (-1514 (((-650 (-1168)) $) 39)) (-4287 (($) 30)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3112 (((-650 (-1168)) $) 40)) (-4060 (((-650 (-1168)) $) 41)) (-4131 (((-1282) $ (-570)) 37) (((-1282) $) 38)) (-1417 (($ (-868) (-570)) 35)) (-3735 (((-868) $) 49) (($ (-868)) 32)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-400) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1417 ($ (-868) (-570))) (-15 -4131 ((-1282) $ (-570))) (-15 -4131 ((-1282) $)) (-15 -4060 ((-650 (-1168)) $)) (-15 -3112 ((-650 (-1168)) $)) (-15 -4287 ($)) (-15 -1514 ((-650 (-1168)) $)) (-15 -3055 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2421 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2394 ((-650 (-1168)) $ (-650 (-1168))))))) (T -400))
+((-1417 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-400)))) (-4131 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-400)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-400)))) (-4060 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3112 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-4287 (*1 *1) (-5 *1 (-400))) (-1514 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3055 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-2421 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-2394 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
+(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1417 ($ (-868) (-570))) (-15 -4131 ((-1282) $ (-570))) (-15 -4131 ((-1282) $)) (-15 -4060 ((-650 (-1168)) $)) (-15 -3112 ((-650 (-1168)) $)) (-15 -4287 ($)) (-15 -1514 ((-650 (-1168)) $)) (-15 -3055 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2421 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2394 ((-650 (-1168)) $ (-650 (-1168))))))
+((-3291 (((-1282) $) 7)) (-3735 (((-868) $) 8)))
(((-401) (-141)) (T -401))
-((-3292 (*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-1281)))))
-(-13 (-1226) (-619 (-868)) (-10 -8 (-15 -3292 ((-1281) $))))
-(((-619 (-868)) . T) ((-1226) . T))
-((-4378 (((-3 $ "failed") (-320 (-384))) 21) (((-3 $ "failed") (-320 (-570))) 19) (((-3 $ "failed") (-959 (-384))) 17) (((-3 $ "failed") (-959 (-570))) 15) (((-3 $ "failed") (-413 (-959 (-384)))) 13) (((-3 $ "failed") (-413 (-959 (-570)))) 11)) (-3080 (($ (-320 (-384))) 22) (($ (-320 (-570))) 20) (($ (-959 (-384))) 18) (($ (-959 (-570))) 16) (($ (-413 (-959 (-384)))) 14) (($ (-413 (-959 (-570)))) 12)) (-3292 (((-1281) $) 7)) (-3735 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 23)))
+((-3291 (*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-1282)))))
+(-13 (-1227) (-619 (-868)) (-10 -8 (-15 -3291 ((-1282) $))))
+(((-619 (-868)) . T) ((-1227) . T))
+((-4379 (((-3 $ "failed") (-320 (-384))) 21) (((-3 $ "failed") (-320 (-570))) 19) (((-3 $ "failed") (-959 (-384))) 17) (((-3 $ "failed") (-959 (-570))) 15) (((-3 $ "failed") (-413 (-959 (-384)))) 13) (((-3 $ "failed") (-413 (-959 (-570)))) 11)) (-3080 (($ (-320 (-384))) 22) (($ (-320 (-570))) 20) (($ (-959 (-384))) 18) (($ (-959 (-570))) 16) (($ (-413 (-959 (-384)))) 14) (($ (-413 (-959 (-570)))) 12)) (-3291 (((-1282) $) 7)) (-3735 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 23)))
(((-402) (-141)) (T -402))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-402)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-402)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))))
-(-13 (-401) (-10 -8 (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3080 ($ (-320 (-384)))) (-15 -4378 ((-3 $ "failed") (-320 (-384)))) (-15 -3080 ($ (-320 (-570)))) (-15 -4378 ((-3 $ "failed") (-320 (-570)))) (-15 -3080 ($ (-959 (-384)))) (-15 -4378 ((-3 $ "failed") (-959 (-384)))) (-15 -3080 ($ (-959 (-570)))) (-15 -4378 ((-3 $ "failed") (-959 (-570)))) (-15 -3080 ($ (-413 (-959 (-384))))) (-15 -4378 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3080 ($ (-413 (-959 (-570))))) (-15 -4378 ((-3 $ "failed") (-413 (-959 (-570)))))))
-(((-619 (-868)) . T) ((-401) . T) ((-1226) . T))
-((-4219 (((-650 (-1168)) (-650 (-1168))) 9)) (-3292 (((-1281) (-394)) 26)) (-2421 (((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186))) 59) (((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186)) 34) (((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186))) 33)))
-(((-403) (-10 -7 (-15 -2421 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -2421 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -2421 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3292 ((-1281) (-394))) (-15 -4219 ((-650 (-1168)) (-650 (-1168)))))) (T -403))
-((-4219 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))) (-3292 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1281)) (-5 *1 (-403)))) (-2421 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *5 (-1189)) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))) (-2421 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186))))) (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))) (-2421 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186))))) (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))))
-(-10 -7 (-15 -2421 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -2421 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -2421 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3292 ((-1281) (-394))) (-15 -4219 ((-650 (-1168)) (-650 (-1168)))))
-((-3292 (((-1281) $) 35)) (-3735 (((-868) $) 97) (($ (-334)) 99) (($ (-650 (-334))) 98) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 96) (($ (-320 (-707))) 52) (($ (-320 (-705))) 72) (($ (-320 (-700))) 85) (($ (-298 (-320 (-707)))) 67) (($ (-298 (-320 (-705)))) 80) (($ (-298 (-320 (-700)))) 93) (($ (-320 (-570))) 104) (($ (-320 (-384))) 117) (($ (-320 (-171 (-384)))) 130) (($ (-298 (-320 (-570)))) 112) (($ (-298 (-320 (-384)))) 125) (($ (-298 (-320 (-171 (-384))))) 138)))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-402)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-402)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))))
+(-13 (-401) (-10 -8 (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3080 ($ (-320 (-384)))) (-15 -4379 ((-3 $ "failed") (-320 (-384)))) (-15 -3080 ($ (-320 (-570)))) (-15 -4379 ((-3 $ "failed") (-320 (-570)))) (-15 -3080 ($ (-959 (-384)))) (-15 -4379 ((-3 $ "failed") (-959 (-384)))) (-15 -3080 ($ (-959 (-570)))) (-15 -4379 ((-3 $ "failed") (-959 (-570)))) (-15 -3080 ($ (-413 (-959 (-384))))) (-15 -4379 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3080 ($ (-413 (-959 (-570))))) (-15 -4379 ((-3 $ "failed") (-413 (-959 (-570)))))))
+(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
+((-4077 (((-650 (-1168)) (-650 (-1168))) 9)) (-3291 (((-1282) (-394)) 26)) (-1658 (((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186))) 59) (((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186)) 34) (((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186))) 33)))
+(((-403) (-10 -7 (-15 -1658 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -1658 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -1658 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3291 ((-1282) (-394))) (-15 -4077 ((-650 (-1168)) (-650 (-1168)))))) (T -403))
+((-4077 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))) (-3291 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-403)))) (-1658 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *5 (-1189)) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))) (-1658 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186))))) (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))) (-1658 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186))))) (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))))
+(-10 -7 (-15 -1658 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -1658 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -1658 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3291 ((-1282) (-394))) (-15 -4077 ((-650 (-1168)) (-650 (-1168)))))
+((-3291 (((-1282) $) 35)) (-3735 (((-868) $) 97) (($ (-334)) 99) (($ (-650 (-334))) 98) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 96) (($ (-320 (-707))) 52) (($ (-320 (-705))) 72) (($ (-320 (-700))) 85) (($ (-298 (-320 (-707)))) 67) (($ (-298 (-320 (-705)))) 80) (($ (-298 (-320 (-700)))) 93) (($ (-320 (-570))) 104) (($ (-320 (-384))) 117) (($ (-320 (-171 (-384)))) 130) (($ (-298 (-320 (-570)))) 112) (($ (-298 (-320 (-384)))) 125) (($ (-298 (-320 (-171 (-384))))) 138)))
(((-404 |#1| |#2| |#3| |#4|) (-13 (-401) (-10 -8 (-15 -3735 ($ (-334))) (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3735 ($ (-320 (-707)))) (-15 -3735 ($ (-320 (-705)))) (-15 -3735 ($ (-320 (-700)))) (-15 -3735 ($ (-298 (-320 (-707))))) (-15 -3735 ($ (-298 (-320 (-705))))) (-15 -3735 ($ (-298 (-320 (-700))))) (-15 -3735 ($ (-320 (-570)))) (-15 -3735 ($ (-320 (-384)))) (-15 -3735 ($ (-320 (-171 (-384))))) (-15 -3735 ($ (-298 (-320 (-570))))) (-15 -3735 ($ (-298 (-320 (-384))))) (-15 -3735 ($ (-298 (-320 (-171 (-384)))))))) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-1190)) (T -404))
((-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-707)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-705)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-700)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-570)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-384)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-171 (-384))))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))))
(-13 (-401) (-10 -8 (-15 -3735 ($ (-334))) (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3735 ($ (-320 (-707)))) (-15 -3735 ($ (-320 (-705)))) (-15 -3735 ($ (-320 (-700)))) (-15 -3735 ($ (-298 (-320 (-707))))) (-15 -3735 ($ (-298 (-320 (-705))))) (-15 -3735 ($ (-298 (-320 (-700))))) (-15 -3735 ($ (-320 (-570)))) (-15 -3735 ($ (-320 (-384)))) (-15 -3735 ($ (-320 (-171 (-384))))) (-15 -3735 ($ (-298 (-320 (-570))))) (-15 -3735 ($ (-298 (-320 (-384))))) (-15 -3735 ($ (-298 (-320 (-171 (-384))))))))
-((-2416 (((-112) $ $) NIL)) (-3893 ((|#2| $) 38)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3209 (($ (-413 |#2|)) 95)) (-2910 (((-650 (-2 (|:| -1907 (-777)) (|:| -2177 |#2|) (|:| |num| |#2|))) $) 39)) (-3447 (($ $) 34) (($ $ (-777)) 36)) (-1416 (((-413 |#2|) $) 51)) (-3748 (($ (-650 (-2 (|:| -1907 (-777)) (|:| -2177 |#2|) (|:| |num| |#2|)))) 33)) (-3735 (((-868) $) 132)) (-1859 (((-112) $ $) NIL)) (-2791 (($ $) 35) (($ $ (-777)) 37)) (-2872 (((-112) $ $) NIL)) (-2954 (($ |#2| $) 41)))
-(((-405 |#1| |#2|) (-13 (-1109) (-620 (-413 |#2|)) (-10 -8 (-15 -2954 ($ |#2| $)) (-15 -3209 ($ (-413 |#2|))) (-15 -3893 (|#2| $)) (-15 -2910 ((-650 (-2 (|:| -1907 (-777)) (|:| -2177 |#2|) (|:| |num| |#2|))) $)) (-15 -3748 ($ (-650 (-2 (|:| -1907 (-777)) (|:| -2177 |#2|) (|:| |num| |#2|))))) (-15 -3447 ($ $)) (-15 -2791 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -2791 ($ $ (-777))))) (-13 (-368) (-148)) (-1252 |#1|)) (T -405))
-((-2954 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *2)) (-4 *2 (-1252 *3)))) (-3209 (*1 *1 *2) (-12 (-5 *2 (-413 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-3893 (*1 *2 *1) (-12 (-4 *2 (-1252 *3)) (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-368) (-148))))) (-2910 (*1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *2 (-650 (-2 (|:| -1907 (-777)) (|:| -2177 *4) (|:| |num| *4)))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1252 *3)))) (-3748 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -1907 (-777)) (|:| -2177 *4) (|:| |num| *4)))) (-4 *4 (-1252 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-3447 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1252 *2)))) (-2791 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1252 *2)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1252 *3)))) (-2791 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1252 *3)))))
-(-13 (-1109) (-620 (-413 |#2|)) (-10 -8 (-15 -2954 ($ |#2| $)) (-15 -3209 ($ (-413 |#2|))) (-15 -3893 (|#2| $)) (-15 -2910 ((-650 (-2 (|:| -1907 (-777)) (|:| -2177 |#2|) (|:| |num| |#2|))) $)) (-15 -3748 ($ (-650 (-2 (|:| -1907 (-777)) (|:| -2177 |#2|) (|:| |num| |#2|))))) (-15 -3447 ($ $)) (-15 -2791 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -2791 ($ $ (-777)))))
-((-2416 (((-112) $ $) 9 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 16 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 15 (|has| |#1| (-893 (-570))))) (-1903 (((-1168) $) 13 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3479 (((-1129) $) 12 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3735 (((-868) $) 11 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-1859 (((-112) $ $) 14 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-2872 (((-112) $ $) 10 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))))
-(((-406 |#1|) (-141) (-1226)) (T -406))
-NIL
-(-13 (-1226) (-10 -7 (IF (|has| |t#1| (-893 (-570))) (-6 (-893 (-570))) |%noBranch|) (IF (|has| |t#1| (-893 (-384))) (-6 (-893 (-384))) |%noBranch|)))
-(((-102) -2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-619 (-868)) -2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-1109) -2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-1226) . T))
-((-2774 (($ $) 10) (($ $ (-777)) 12)))
-(((-407 |#1|) (-10 -8 (-15 -2774 (|#1| |#1| (-777))) (-15 -2774 (|#1| |#1|))) (-408)) (T -407))
-NIL
-(-10 -8 (-15 -2774 (|#1| |#1| (-777))) (-15 -2774 (|#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-2774 (($ $) 87) (($ $ (-777)) 86)) (-1552 (((-112) $) 79)) (-3157 (((-839 (-928)) $) 89)) (-2081 (((-112) $) 35)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-2845 (((-3 (-777) "failed") $ $) 88)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-1918 (((-3 $ "failed") $) 90)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-2417 (((-112) $ $) NIL)) (-3886 ((|#2| $) 38)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1747 (($ (-413 |#2|)) 95)) (-3709 (((-650 (-2 (|:| -3011 (-777)) (|:| -2178 |#2|) (|:| |num| |#2|))) $) 39)) (-3447 (($ $) 34) (($ $ (-777)) 36)) (-1417 (((-413 |#2|) $) 51)) (-3749 (($ (-650 (-2 (|:| -3011 (-777)) (|:| -2178 |#2|) (|:| |num| |#2|)))) 33)) (-3735 (((-868) $) 132)) (-3866 (((-112) $ $) NIL)) (-2791 (($ $) 35) (($ $ (-777)) 37)) (-2872 (((-112) $ $) NIL)) (-2953 (($ |#2| $) 41)))
+(((-405 |#1| |#2|) (-13 (-1109) (-620 (-413 |#2|)) (-10 -8 (-15 -2953 ($ |#2| $)) (-15 -1747 ($ (-413 |#2|))) (-15 -3886 (|#2| $)) (-15 -3709 ((-650 (-2 (|:| -3011 (-777)) (|:| -2178 |#2|) (|:| |num| |#2|))) $)) (-15 -3749 ($ (-650 (-2 (|:| -3011 (-777)) (|:| -2178 |#2|) (|:| |num| |#2|))))) (-15 -3447 ($ $)) (-15 -2791 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -2791 ($ $ (-777))))) (-13 (-368) (-148)) (-1253 |#1|)) (T -405))
+((-2953 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *2)) (-4 *2 (-1253 *3)))) (-1747 (*1 *1 *2) (-12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-3886 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-368) (-148))))) (-3709 (*1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *2 (-650 (-2 (|:| -3011 (-777)) (|:| -2178 *4) (|:| |num| *4)))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))) (-3749 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -3011 (-777)) (|:| -2178 *4) (|:| |num| *4)))) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-3447 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1253 *2)))) (-2791 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1253 *2)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))) (-2791 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))))
+(-13 (-1109) (-620 (-413 |#2|)) (-10 -8 (-15 -2953 ($ |#2| $)) (-15 -1747 ($ (-413 |#2|))) (-15 -3886 (|#2| $)) (-15 -3709 ((-650 (-2 (|:| -3011 (-777)) (|:| -2178 |#2|) (|:| |num| |#2|))) $)) (-15 -3749 ($ (-650 (-2 (|:| -3011 (-777)) (|:| -2178 |#2|) (|:| |num| |#2|))))) (-15 -3447 ($ $)) (-15 -2791 ($ $)) (-15 -3447 ($ $ (-777))) (-15 -2791 ($ $ (-777)))))
+((-2417 (((-112) $ $) 9 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 16 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 15 (|has| |#1| (-893 (-570))))) (-4268 (((-1168) $) 13 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3479 (((-1129) $) 12 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3735 (((-868) $) 11 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3866 (((-112) $ $) 14 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-2872 (((-112) $ $) 10 (-2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))))
+(((-406 |#1|) (-141) (-1227)) (T -406))
+NIL
+(-13 (-1227) (-10 -7 (IF (|has| |t#1| (-893 (-570))) (-6 (-893 (-570))) |%noBranch|) (IF (|has| |t#1| (-893 (-384))) (-6 (-893 (-384))) |%noBranch|)))
+(((-102) -2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-619 (-868)) -2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-1109) -2740 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-1227) . T))
+((-1901 (($ $) 10) (($ $ (-777)) 12)))
+(((-407 |#1|) (-10 -8 (-15 -1901 (|#1| |#1| (-777))) (-15 -1901 (|#1| |#1|))) (-408)) (T -407))
+NIL
+(-10 -8 (-15 -1901 (|#1| |#1| (-777))) (-15 -1901 (|#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-1901 (($ $) 87) (($ $ (-777)) 86)) (-4037 (((-112) $) 79)) (-4331 (((-839 (-928)) $) 89)) (-4340 (((-112) $) 35)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3156 (((-3 (-777) "failed") $ $) 88)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3127 (((-3 $ "failed") $) 90)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-408) (-141)) (T -408))
-((-3157 (*1 *2 *1) (-12 (-4 *1 (-408)) (-5 *2 (-839 (-928))))) (-2845 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))) (-2774 (*1 *1 *1) (-4 *1 (-408))) (-2774 (*1 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777)))))
-(-13 (-368) (-146) (-10 -8 (-15 -3157 ((-839 (-928)) $)) (-15 -2845 ((-3 (-777) "failed") $ $)) (-15 -2774 ($ $)) (-15 -2774 ($ $ (-777)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-2539 (($ (-570) (-570)) 11) (($ (-570) (-570) (-928)) NIL)) (-2784 (((-928)) 19) (((-928) (-928)) NIL)))
-(((-409 |#1|) (-10 -8 (-15 -2784 ((-928) (-928))) (-15 -2784 ((-928))) (-15 -2539 (|#1| (-570) (-570) (-928))) (-15 -2539 (|#1| (-570) (-570)))) (-410)) (T -409))
-((-2784 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))) (-2784 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))))
-(-10 -8 (-15 -2784 ((-928) (-928))) (-15 -2784 ((-928))) (-15 -2539 (|#1| (-570) (-570) (-928))) (-15 -2539 (|#1| (-570) (-570))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3303 (((-570) $) 97)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3316 (($ $) 95)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-3753 (($ $) 105)) (-4339 (((-112) $ $) 65)) (-3140 (((-570) $) 122)) (-2450 (($) 18 T CONST)) (-3670 (($ $) 94)) (-4378 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3080 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-1552 (((-112) $) 79)) (-3430 (((-928)) 138) (((-928) (-928)) 135 (|has| $ (-6 -4439)))) (-1522 (((-112) $) 120)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-3157 (((-570) $) 144)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 104)) (-2610 (($ $) 100)) (-2761 (((-112) $) 121)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3310 (($ $ $) 119) (($) 132 (-12 (-1754 (|has| $ (-6 -4439))) (-1754 (|has| $ (-6 -4431)))))) (-3787 (($ $ $) 118) (($) 131 (-12 (-1754 (|has| $ (-6 -4439))) (-1754 (|has| $ (-6 -4431)))))) (-2972 (((-570) $) 141)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-3690 (((-928) (-570)) 134 (|has| $ (-6 -4439)))) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-1965 (($ $) 96)) (-3739 (($ $) 98)) (-2539 (($ (-570) (-570)) 146) (($ (-570) (-570) (-928)) 145)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1907 (((-570) $) 142)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-2784 (((-928)) 139) (((-928) (-928)) 136 (|has| $ (-6 -4439)))) (-4173 (((-928) (-570)) 133 (|has| $ (-6 -4439)))) (-1416 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-2744 (((-777)) 32 T CONST)) (-3754 (($ $) 99)) (-3804 (((-928)) 140) (((-928) (-928)) 137 (|has| $ (-6 -4439)))) (-1859 (((-112) $ $) 9)) (-4358 (((-928)) 143)) (-1681 (((-112) $ $) 45)) (-1423 (($ $) 123)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 116)) (-2904 (((-112) $ $) 115)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 117)) (-2894 (((-112) $ $) 114)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-4331 (*1 *2 *1) (-12 (-4 *1 (-408)) (-5 *2 (-839 (-928))))) (-3156 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))) (-1901 (*1 *1 *1) (-4 *1 (-408))) (-1901 (*1 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777)))))
+(-13 (-368) (-146) (-10 -8 (-15 -4331 ((-839 (-928)) $)) (-15 -3156 ((-3 (-777) "failed") $ $)) (-15 -1901 ($ $)) (-15 -1901 ($ $ (-777)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-2539 (($ (-570) (-570)) 11) (($ (-570) (-570) (-928)) NIL)) (-3819 (((-928)) 19) (((-928) (-928)) NIL)))
+(((-409 |#1|) (-10 -8 (-15 -3819 ((-928) (-928))) (-15 -3819 ((-928))) (-15 -2539 (|#1| (-570) (-570) (-928))) (-15 -2539 (|#1| (-570) (-570)))) (-410)) (T -409))
+((-3819 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))) (-3819 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))))
+(-10 -8 (-15 -3819 ((-928) (-928))) (-15 -3819 ((-928))) (-15 -2539 (|#1| (-570) (-570) (-928))) (-15 -2539 (|#1| (-570) (-570))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3113 (((-570) $) 97)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-3235 (($ $) 95)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-3754 (($ $) 105)) (-2707 (((-112) $ $) 65)) (-2249 (((-570) $) 122)) (-3761 (($) 18 T CONST)) (-3601 (($ $) 94)) (-4379 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3080 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4037 (((-112) $) 79)) (-3431 (((-928)) 138) (((-928) (-928)) 135 (|has| $ (-6 -4440)))) (-3703 (((-112) $) 120)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-4331 (((-570) $) 144)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 104)) (-2771 (($ $) 100)) (-1774 (((-112) $) 121)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3311 (($ $ $) 119) (($) 132 (-12 (-1753 (|has| $ (-6 -4440))) (-1753 (|has| $ (-6 -4432)))))) (-2222 (($ $ $) 118) (($) 131 (-12 (-1753 (|has| $ (-6 -4440))) (-1753 (|has| $ (-6 -4432)))))) (-2973 (((-570) $) 141)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-2542 (((-928) (-570)) 134 (|has| $ (-6 -4440)))) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2442 (($ $) 96)) (-2962 (($ $) 98)) (-2539 (($ (-570) (-570)) 146) (($ (-570) (-570) (-928)) 145)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3011 (((-570) $) 142)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3819 (((-928)) 139) (((-928) (-928)) 136 (|has| $ (-6 -4440)))) (-1792 (((-928) (-570)) 133 (|has| $ (-6 -4440)))) (-1417 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-1609 (((-777)) 32 T CONST)) (-1963 (($ $) 99)) (-2346 (((-928)) 140) (((-928) (-928)) 137 (|has| $ (-6 -4440)))) (-3866 (((-112) $ $) 9)) (-4360 (((-928)) 143)) (-2795 (((-112) $ $) 45)) (-1367 (($ $) 123)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 116)) (-2904 (((-112) $ $) 115)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 117)) (-2894 (((-112) $ $) 114)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-410) (-141)) (T -410))
-((-2539 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-410)))) (-2539 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-4 *1 (-410)))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-4358 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-1907 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-2972 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-3804 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-2784 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3430 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3804 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4439)) (-4 *1 (-410)))) (-2784 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4439)) (-4 *1 (-410)))) (-3430 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4439)) (-4 *1 (-410)))) (-3690 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4439)) (-4 *1 (-410)) (-5 *2 (-928)))) (-4173 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4439)) (-4 *1 (-410)) (-5 *2 (-928)))) (-3310 (*1 *1) (-12 (-4 *1 (-410)) (-1754 (|has| *1 (-6 -4439))) (-1754 (|has| *1 (-6 -4431))))) (-3787 (*1 *1) (-12 (-4 *1 (-410)) (-1754 (|has| *1 (-6 -4439))) (-1754 (|has| *1 (-6 -4431))))))
-(-13 (-1069) (-10 -8 (-6 -3026) (-15 -2539 ($ (-570) (-570))) (-15 -2539 ($ (-570) (-570) (-928))) (-15 -3157 ((-570) $)) (-15 -4358 ((-928))) (-15 -1907 ((-570) $)) (-15 -2972 ((-570) $)) (-15 -3804 ((-928))) (-15 -2784 ((-928))) (-15 -3430 ((-928))) (IF (|has| $ (-6 -4439)) (PROGN (-15 -3804 ((-928) (-928))) (-15 -2784 ((-928) (-928))) (-15 -3430 ((-928) (-928))) (-15 -3690 ((-928) (-570))) (-15 -4173 ((-928) (-570)))) |%noBranch|) (IF (|has| $ (-6 -4431)) |%noBranch| (IF (|has| $ (-6 -4439)) |%noBranch| (PROGN (-15 -3310 ($)) (-15 -3787 ($)))))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-227)) . T) ((-620 (-384)) . T) ((-620 (-899 (-384))) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-893 (-384)) . T) ((-927) . T) ((-1011) . T) ((-1031) . T) ((-1069) . T) ((-1047 (-413 (-570))) . T) ((-1047 (-570)) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-1351 (((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)) 20)))
-(((-411 |#1| |#2|) (-10 -7 (-15 -1351 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)))) (-562) (-562)) (T -411))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-424 *5)) (-4 *5 (-562)) (-4 *6 (-562)) (-5 *2 (-424 *6)) (-5 *1 (-411 *5 *6)))))
-(-10 -7 (-15 -1351 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|))))
-((-1351 (((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)) 13)))
-(((-412 |#1| |#2|) (-10 -7 (-15 -1351 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)))) (-562) (-562)) (T -412))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-413 *5)) (-4 *5 (-562)) (-4 *6 (-562)) (-5 *2 (-413 *6)) (-5 *1 (-412 *5 *6)))))
-(-10 -7 (-15 -1351 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 13)) (-3303 ((|#1| $) 21 (|has| |#1| (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| |#1| (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 17) (((-3 (-1186) "failed") $) NIL (|has| |#1| (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) 72 (|has| |#1| (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570))))) (-3080 ((|#1| $) 15) (((-1186) $) NIL (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 69 (|has| |#1| (-1047 (-570)))) (((-570) $) NIL (|has| |#1| (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) 51)) (-3336 (($) NIL (|has| |#1| (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| |#1| (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-2081 (((-112) $) 57)) (-3195 (($ $) NIL)) (-4398 ((|#1| $) 73)) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-2761 (((-112) $) NIL (|has| |#1| (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 100)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| |#1| (-311)))) (-3739 ((|#1| $) 28 (|has| |#1| (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 148 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 141 (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-2272 (((-777) $) NIL)) (-1876 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) 64)) (-1418 (($ $) NIL)) (-4412 ((|#1| $) 75)) (-1416 (((-899 (-570)) $) NIL (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#1| (-620 (-899 (-384))))) (((-542) $) NIL (|has| |#1| (-620 (-542)))) (((-384) $) NIL (|has| |#1| (-1031))) (((-227) $) NIL (|has| |#1| (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 125 (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 10) (($ (-1186)) NIL (|has| |#1| (-1047 (-1186))))) (-1918 (((-3 $ "failed") $) 102 (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) 103 T CONST)) (-3754 ((|#1| $) 26 (|has| |#1| (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| |#1| (-826)))) (-1812 (($) 22 T CONST)) (-1823 (($) 8 T CONST)) (-2892 (((-1168) $) 44 (-12 (|has| |#1| (-551)) (|has| |#1| (-834)))) (((-1168) $ (-112)) 45 (-12 (|has| |#1| (-551)) (|has| |#1| (-834)))) (((-1281) (-828) $) 46 (-12 (|has| |#1| (-551)) (|has| |#1| (-834)))) (((-1281) (-828) $ (-112)) 47 (-12 (|has| |#1| (-551)) (|has| |#1| (-834))))) (-2791 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) 66)) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) 24 (|has| |#1| (-856)))) (-2975 (($ $ $) 136) (($ |#1| |#1|) 53)) (-2965 (($ $) 25) (($ $ $) 56)) (-2954 (($ $ $) 54)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 135)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 61) (($ $ $) 58) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ |#1| $) 62) (($ $ |#1|) 88)))
-(((-413 |#1|) (-13 (-1001 |#1|) (-10 -7 (IF (|has| |#1| (-551)) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4435)) (IF (|has| |#1| (-458)) (IF (|has| |#1| (-6 -4446)) (-6 -4435) |%noBranch|) |%noBranch|) |%noBranch|))) (-562)) (T -413))
-NIL
-(-13 (-1001 |#1|) (-10 -7 (IF (|has| |#1| (-551)) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4435)) (IF (|has| |#1| (-458)) (IF (|has| |#1| (-6 -4446)) (-6 -4435) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-2945 (((-695 |#2|) (-1276 $)) NIL) (((-695 |#2|)) 18)) (-2049 (($ (-1276 |#2|) (-1276 $)) NIL) (($ (-1276 |#2|)) 24)) (-2710 (((-695 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) $) 40)) (-1638 ((|#3| $) 73)) (-2998 ((|#2| (-1276 $)) NIL) ((|#2|) 20)) (-1807 (((-1276 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) (-1276 $) (-1276 $)) NIL) (((-1276 |#2|) $) 22) (((-695 |#2|) (-1276 $)) 38)) (-1416 (((-1276 |#2|) $) 11) (($ (-1276 |#2|)) 13)) (-3674 ((|#3| $) 55)))
-(((-414 |#1| |#2| |#3|) (-10 -8 (-15 -2710 ((-695 |#2|) |#1|)) (-15 -2998 (|#2|)) (-15 -2945 ((-695 |#2|))) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -2049 (|#1| (-1276 |#2|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -1638 (|#3| |#1|)) (-15 -3674 (|#3| |#1|)) (-15 -2945 ((-695 |#2|) (-1276 |#1|))) (-15 -2998 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2710 ((-695 |#2|) |#1| (-1276 |#1|)))) (-415 |#2| |#3|) (-174) (-1252 |#2|)) (T -414))
-((-2945 (*1 *2) (-12 (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-695 *4)) (-5 *1 (-414 *3 *4 *5)) (-4 *3 (-415 *4 *5)))) (-2998 (*1 *2) (-12 (-4 *4 (-1252 *2)) (-4 *2 (-174)) (-5 *1 (-414 *3 *2 *4)) (-4 *3 (-415 *2 *4)))))
-(-10 -8 (-15 -2710 ((-695 |#2|) |#1|)) (-15 -2998 (|#2|)) (-15 -2945 ((-695 |#2|))) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -2049 (|#1| (-1276 |#2|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -1638 (|#3| |#1|)) (-15 -3674 (|#3| |#1|)) (-15 -2945 ((-695 |#2|) (-1276 |#1|))) (-15 -2998 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2710 ((-695 |#2|) |#1| (-1276 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-2945 (((-695 |#1|) (-1276 $)) 53) (((-695 |#1|)) 68)) (-3071 ((|#1| $) 59)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-2049 (($ (-1276 |#1|) (-1276 $)) 55) (($ (-1276 |#1|)) 71)) (-2710 (((-695 |#1|) $ (-1276 $)) 60) (((-695 |#1|) $) 66)) (-3413 (((-3 $ "failed") $) 37)) (-3934 (((-928)) 61)) (-2081 (((-112) $) 35)) (-2610 ((|#1| $) 58)) (-1638 ((|#2| $) 51 (|has| |#1| (-368)))) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2998 ((|#1| (-1276 $)) 54) ((|#1|) 67)) (-1807 (((-1276 |#1|) $ (-1276 $)) 57) (((-695 |#1|) (-1276 $) (-1276 $)) 56) (((-1276 |#1|) $) 73) (((-695 |#1|) (-1276 $)) 72)) (-1416 (((-1276 |#1|) $) 70) (($ (-1276 |#1|)) 69)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-1918 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3674 ((|#2| $) 52)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-2331 (((-1276 $)) 74)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
-(((-415 |#1| |#2|) (-141) (-174) (-1252 |t#1|)) (T -415))
-((-2331 (*1 *2) (-12 (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-1276 *1)) (-4 *1 (-415 *3 *4)))) (-1807 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-1276 *3)))) (-1807 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-415 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-695 *4)))) (-2049 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1252 *3)))) (-1416 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-1276 *3)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1252 *3)))) (-2945 (*1 *2) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-695 *3)))) (-2998 (*1 *2) (-12 (-4 *1 (-415 *2 *3)) (-4 *3 (-1252 *2)) (-4 *2 (-174)))) (-2710 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-695 *3)))))
-(-13 (-375 |t#1| |t#2|) (-10 -8 (-15 -2331 ((-1276 $))) (-15 -1807 ((-1276 |t#1|) $)) (-15 -1807 ((-695 |t#1|) (-1276 $))) (-15 -2049 ($ (-1276 |t#1|))) (-15 -1416 ((-1276 |t#1|) $)) (-15 -1416 ($ (-1276 |t#1|))) (-15 -2945 ((-695 |t#1|))) (-15 -2998 (|t#1|)) (-15 -2710 ((-695 |t#1|) $))))
+((-2539 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-410)))) (-2539 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-4 *1 (-410)))) (-4331 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-4360 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3011 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-2973 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-2346 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3819 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3431 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-2346 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410)))) (-3819 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410)))) (-3431 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410)))) (-2542 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410)) (-5 *2 (-928)))) (-1792 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410)) (-5 *2 (-928)))) (-3311 (*1 *1) (-12 (-4 *1 (-410)) (-1753 (|has| *1 (-6 -4440))) (-1753 (|has| *1 (-6 -4432))))) (-2222 (*1 *1) (-12 (-4 *1 (-410)) (-1753 (|has| *1 (-6 -4440))) (-1753 (|has| *1 (-6 -4432))))))
+(-13 (-1069) (-10 -8 (-6 -3026) (-15 -2539 ($ (-570) (-570))) (-15 -2539 ($ (-570) (-570) (-928))) (-15 -4331 ((-570) $)) (-15 -4360 ((-928))) (-15 -3011 ((-570) $)) (-15 -2973 ((-570) $)) (-15 -2346 ((-928))) (-15 -3819 ((-928))) (-15 -3431 ((-928))) (IF (|has| $ (-6 -4440)) (PROGN (-15 -2346 ((-928) (-928))) (-15 -3819 ((-928) (-928))) (-15 -3431 ((-928) (-928))) (-15 -2542 ((-928) (-570))) (-15 -1792 ((-928) (-570)))) |%noBranch|) (IF (|has| $ (-6 -4432)) |%noBranch| (IF (|has| $ (-6 -4440)) |%noBranch| (PROGN (-15 -3311 ($)) (-15 -2222 ($)))))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-227)) . T) ((-620 (-384)) . T) ((-620 (-899 (-384))) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-893 (-384)) . T) ((-927) . T) ((-1011) . T) ((-1031) . T) ((-1069) . T) ((-1047 (-413 (-570))) . T) ((-1047 (-570)) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-1352 (((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)) 20)))
+(((-411 |#1| |#2|) (-10 -7 (-15 -1352 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)))) (-562) (-562)) (T -411))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-424 *5)) (-4 *5 (-562)) (-4 *6 (-562)) (-5 *2 (-424 *6)) (-5 *1 (-411 *5 *6)))))
+(-10 -7 (-15 -1352 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|))))
+((-1352 (((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)) 13)))
+(((-412 |#1| |#2|) (-10 -7 (-15 -1352 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)))) (-562) (-562)) (T -412))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-413 *5)) (-4 *5 (-562)) (-4 *6 (-562)) (-5 *2 (-413 *6)) (-5 *1 (-412 *5 *6)))))
+(-10 -7 (-15 -1352 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 13)) (-3113 ((|#1| $) 21 (|has| |#1| (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| |#1| (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 17) (((-3 (-1186) "failed") $) NIL (|has| |#1| (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) 72 (|has| |#1| (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570))))) (-3080 ((|#1| $) 15) (((-1186) $) NIL (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 69 (|has| |#1| (-1047 (-570)))) (((-570) $) NIL (|has| |#1| (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) 51)) (-3336 (($) NIL (|has| |#1| (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| |#1| (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-4340 (((-112) $) 57)) (-1607 (($ $) NIL)) (-4399 ((|#1| $) 73)) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1774 (((-112) $) NIL (|has| |#1| (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 100)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| |#1| (-311)))) (-2962 ((|#1| $) 28 (|has| |#1| (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 148 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 141 (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-2547 (((-777) $) NIL)) (-1877 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) 64)) (-4428 (($ $) NIL)) (-4413 ((|#1| $) 75)) (-1417 (((-899 (-570)) $) NIL (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#1| (-620 (-899 (-384))))) (((-542) $) NIL (|has| |#1| (-620 (-542)))) (((-384) $) NIL (|has| |#1| (-1031))) (((-227) $) NIL (|has| |#1| (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 125 (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 10) (($ (-1186)) NIL (|has| |#1| (-1047 (-1186))))) (-3127 (((-3 $ "failed") $) 102 (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) 103 T CONST)) (-1963 ((|#1| $) 26 (|has| |#1| (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| |#1| (-826)))) (-1814 (($) 22 T CONST)) (-1824 (($) 8 T CONST)) (-3637 (((-1168) $) 44 (-12 (|has| |#1| (-551)) (|has| |#1| (-834)))) (((-1168) $ (-112)) 45 (-12 (|has| |#1| (-551)) (|has| |#1| (-834)))) (((-1282) (-828) $) 46 (-12 (|has| |#1| (-551)) (|has| |#1| (-834)))) (((-1282) (-828) $ (-112)) 47 (-12 (|has| |#1| (-551)) (|has| |#1| (-834))))) (-2791 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) 66)) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) 24 (|has| |#1| (-856)))) (-2975 (($ $ $) 136) (($ |#1| |#1|) 53)) (-2965 (($ $) 25) (($ $ $) 56)) (-2953 (($ $ $) 54)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 135)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 61) (($ $ $) 58) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ |#1| $) 62) (($ $ |#1|) 88)))
+(((-413 |#1|) (-13 (-1001 |#1|) (-10 -7 (IF (|has| |#1| (-551)) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4436)) (IF (|has| |#1| (-458)) (IF (|has| |#1| (-6 -4447)) (-6 -4436) |%noBranch|) |%noBranch|) |%noBranch|))) (-562)) (T -413))
+NIL
+(-13 (-1001 |#1|) (-10 -7 (IF (|has| |#1| (-551)) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4436)) (IF (|has| |#1| (-458)) (IF (|has| |#1| (-6 -4447)) (-6 -4436) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-4084 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 18)) (-2125 (($ (-1277 |#2|) (-1277 $)) NIL) (($ (-1277 |#2|)) 24)) (-2443 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 40)) (-2399 ((|#3| $) 73)) (-3290 ((|#2| (-1277 $)) NIL) ((|#2|) 20)) (-1533 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 22) (((-695 |#2|) (-1277 $)) 38)) (-1417 (((-1277 |#2|) $) 11) (($ (-1277 |#2|)) 13)) (-3641 ((|#3| $) 55)))
+(((-414 |#1| |#2| |#3|) (-10 -8 (-15 -2443 ((-695 |#2|) |#1|)) (-15 -3290 (|#2|)) (-15 -4084 ((-695 |#2|))) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -2125 (|#1| (-1277 |#2|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -2399 (|#3| |#1|)) (-15 -3641 (|#3| |#1|)) (-15 -4084 ((-695 |#2|) (-1277 |#1|))) (-15 -3290 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2443 ((-695 |#2|) |#1| (-1277 |#1|)))) (-415 |#2| |#3|) (-174) (-1253 |#2|)) (T -414))
+((-4084 (*1 *2) (-12 (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)) (-5 *1 (-414 *3 *4 *5)) (-4 *3 (-415 *4 *5)))) (-3290 (*1 *2) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-174)) (-5 *1 (-414 *3 *2 *4)) (-4 *3 (-415 *2 *4)))))
+(-10 -8 (-15 -2443 ((-695 |#2|) |#1|)) (-15 -3290 (|#2|)) (-15 -4084 ((-695 |#2|))) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -2125 (|#1| (-1277 |#2|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -2399 (|#3| |#1|)) (-15 -3641 (|#3| |#1|)) (-15 -4084 ((-695 |#2|) (-1277 |#1|))) (-15 -3290 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2443 ((-695 |#2|) |#1| (-1277 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4084 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3071 ((|#1| $) 59)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2125 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2443 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-2937 (((-3 $ "failed") $) 37)) (-3933 (((-928)) 61)) (-4340 (((-112) $) 35)) (-2771 ((|#1| $) 58)) (-2399 ((|#2| $) 51 (|has| |#1| (-368)))) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3290 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-1533 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1417 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3127 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3641 ((|#2| $) 52)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2003 (((-1277 $)) 74)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+(((-415 |#1| |#2|) (-141) (-174) (-1253 |t#1|)) (T -415))
+((-2003 (*1 *2) (-12 (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *1)) (-4 *1 (-415 *3 *4)))) (-1533 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *3)))) (-1533 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-415 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-2125 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1253 *3)))) (-1417 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *3)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1253 *3)))) (-4084 (*1 *2) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-695 *3)))) (-3290 (*1 *2) (-12 (-4 *1 (-415 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-2443 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-695 *3)))))
+(-13 (-375 |t#1| |t#2|) (-10 -8 (-15 -2003 ((-1277 $))) (-15 -1533 ((-1277 |t#1|) $)) (-15 -1533 ((-695 |t#1|) (-1277 $))) (-15 -2125 ($ (-1277 |t#1|))) (-15 -1417 ((-1277 |t#1|) $)) (-15 -1417 ($ (-1277 |t#1|))) (-15 -4084 ((-695 |t#1|))) (-15 -3290 (|t#1|)) (-15 -2443 ((-695 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-375 |#1| |#2|) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-732) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) 27) (((-3 (-570) "failed") $) 19)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) 24) (((-570) $) 14)) (-3735 (($ |#2|) NIL) (($ (-413 (-570))) 22) (($ (-570)) 11)))
-(((-416 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| (-570))) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|))) (-417 |#2|) (-1226)) (T -416))
+((-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) 27) (((-3 (-570) "failed") $) 19)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) 24) (((-570) $) 14)) (-3735 (($ |#2|) NIL) (($ (-413 (-570))) 22) (($ (-570)) 11)))
+(((-416 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| (-570))) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|))) (-417 |#2|) (-1227)) (T -416))
NIL
-(-10 -8 (-15 -3735 (|#1| (-570))) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)))
-((-4378 (((-3 |#1| "failed") $) 9) (((-3 (-413 (-570)) "failed") $) 16 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 13 (|has| |#1| (-1047 (-570))))) (-3080 ((|#1| $) 8) (((-413 (-570)) $) 17 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 14 (|has| |#1| (-1047 (-570))))) (-3735 (($ |#1|) 6) (($ (-413 (-570))) 15 (|has| |#1| (-1047 (-413 (-570))))) (($ (-570)) 12 (|has| |#1| (-1047 (-570))))))
-(((-417 |#1|) (-141) (-1226)) (T -417))
+(-10 -8 (-15 -3735 (|#1| (-570))) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)))
+((-4379 (((-3 |#1| "failed") $) 9) (((-3 (-413 (-570)) "failed") $) 16 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 13 (|has| |#1| (-1047 (-570))))) (-3080 ((|#1| $) 8) (((-413 (-570)) $) 17 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 14 (|has| |#1| (-1047 (-570))))) (-3735 (($ |#1|) 6) (($ (-413 (-570))) 15 (|has| |#1| (-1047 (-413 (-570))))) (($ (-570)) 12 (|has| |#1| (-1047 (-570))))))
+(((-417 |#1|) (-141) (-1227)) (T -417))
NIL
(-13 (-1047 |t#1|) (-10 -7 (IF (|has| |t#1| (-1047 (-570))) (-6 (-1047 (-570))) |%noBranch|) (IF (|has| |t#1| (-1047 (-413 (-570)))) (-6 (-1047 (-413 (-570)))) |%noBranch|)))
(((-622 #0=(-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-622 #1=(-570)) |has| |#1| (-1047 (-570))) ((-622 |#1|) . T) ((-1047 #0#) |has| |#1| (-1047 (-413 (-570)))) ((-1047 #1#) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T))
-((-1351 (((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|)) 35)))
-(((-418 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1351 ((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|)))) (-311) (-1001 |#1|) (-1252 |#2|) (-13 (-415 |#2| |#3|) (-1047 |#2|)) (-311) (-1001 |#5|) (-1252 |#6|) (-13 (-415 |#6| |#7|) (-1047 |#6|))) (T -418))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-419 *5 *6 *7 *8)) (-4 *5 (-311)) (-4 *6 (-1001 *5)) (-4 *7 (-1252 *6)) (-4 *8 (-13 (-415 *6 *7) (-1047 *6))) (-4 *9 (-311)) (-4 *10 (-1001 *9)) (-4 *11 (-1252 *10)) (-5 *2 (-419 *9 *10 *11 *12)) (-5 *1 (-418 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-415 *10 *11) (-1047 *10))))))
-(-10 -7 (-15 -1351 ((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|))))
-((-2416 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-4100 ((|#4| (-777) (-1276 |#4|)) 58)) (-2081 (((-112) $) NIL)) (-4398 (((-1276 |#4|) $) 15)) (-2610 ((|#2| $) 53)) (-1953 (($ $) 161)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 106)) (-2799 (($ (-1276 |#4|)) 105)) (-3479 (((-1129) $) NIL)) (-4412 ((|#1| $) 16)) (-3684 (($ $ $) NIL)) (-3688 (($ $ $) NIL)) (-3735 (((-868) $) 151)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 |#4|) $) 144)) (-1823 (($) 11 T CONST)) (-2872 (((-112) $ $) 39)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 137)) (* (($ $ $) 133)))
-(((-419 |#1| |#2| |#3| |#4|) (-13 (-479) (-10 -8 (-15 -2799 ($ (-1276 |#4|))) (-15 -2331 ((-1276 |#4|) $)) (-15 -2610 (|#2| $)) (-15 -4398 ((-1276 |#4|) $)) (-15 -4412 (|#1| $)) (-15 -1953 ($ $)) (-15 -4100 (|#4| (-777) (-1276 |#4|))))) (-311) (-1001 |#1|) (-1252 |#2|) (-13 (-415 |#2| |#3|) (-1047 |#2|))) (T -419))
-((-2799 (*1 *1 *2) (-12 (-5 *2 (-1276 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4))) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-4 *3 (-311)) (-5 *1 (-419 *3 *4 *5 *6)))) (-2331 (*1 *2 *1) (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-5 *2 (-1276 *6)) (-5 *1 (-419 *3 *4 *5 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4))))) (-2610 (*1 *2 *1) (-12 (-4 *4 (-1252 *2)) (-4 *2 (-1001 *3)) (-5 *1 (-419 *3 *2 *4 *5)) (-4 *3 (-311)) (-4 *5 (-13 (-415 *2 *4) (-1047 *2))))) (-4398 (*1 *2 *1) (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-5 *2 (-1276 *6)) (-5 *1 (-419 *3 *4 *5 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4))))) (-4412 (*1 *2 *1) (-12 (-4 *3 (-1001 *2)) (-4 *4 (-1252 *3)) (-4 *2 (-311)) (-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3))))) (-1953 (*1 *1 *1) (-12 (-4 *2 (-311)) (-4 *3 (-1001 *2)) (-4 *4 (-1252 *3)) (-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3))))) (-4100 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-1276 *2)) (-4 *5 (-311)) (-4 *6 (-1001 *5)) (-4 *2 (-13 (-415 *6 *7) (-1047 *6))) (-5 *1 (-419 *5 *6 *7 *2)) (-4 *7 (-1252 *6)))))
-(-13 (-479) (-10 -8 (-15 -2799 ($ (-1276 |#4|))) (-15 -2331 ((-1276 |#4|) $)) (-15 -2610 (|#2| $)) (-15 -4398 ((-1276 |#4|) $)) (-15 -4412 (|#1| $)) (-15 -1953 ($ $)) (-15 -4100 (|#4| (-777) (-1276 |#4|)))))
-((-2416 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-2610 ((|#2| $) 71)) (-1461 (($ (-1276 |#4|)) 27) (($ (-419 |#1| |#2| |#3| |#4|)) 85 (|has| |#4| (-1047 |#2|)))) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 37)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 |#4|) $) 28)) (-1823 (($) 25 T CONST)) (-2872 (((-112) $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ $ $) 82)))
-(((-420 |#1| |#2| |#3| |#4| |#5|) (-13 (-732) (-10 -8 (-15 -2331 ((-1276 |#4|) $)) (-15 -2610 (|#2| $)) (-15 -1461 ($ (-1276 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -1461 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-311) (-1001 |#1|) (-1252 |#2|) (-415 |#2| |#3|) (-1276 |#4|)) (T -420))
-((-2331 (*1 *2 *1) (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-5 *2 (-1276 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7)) (-4 *6 (-415 *4 *5)) (-14 *7 *2))) (-2610 (*1 *2 *1) (-12 (-4 *4 (-1252 *2)) (-4 *2 (-1001 *3)) (-5 *1 (-420 *3 *2 *4 *5 *6)) (-4 *3 (-311)) (-4 *5 (-415 *2 *4)) (-14 *6 (-1276 *5)))) (-1461 (*1 *1 *2) (-12 (-5 *2 (-1276 *6)) (-4 *6 (-415 *4 *5)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-4 *3 (-311)) (-5 *1 (-420 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-1461 (*1 *1 *2) (-12 (-5 *2 (-419 *3 *4 *5 *6)) (-4 *6 (-1047 *4)) (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-4 *6 (-415 *4 *5)) (-14 *7 (-1276 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7)))))
-(-13 (-732) (-10 -8 (-15 -2331 ((-1276 |#4|) $)) (-15 -2610 (|#2| $)) (-15 -1461 ($ (-1276 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -1461 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-1351 ((|#3| (-1 |#4| |#2|) |#1|) 32)))
-(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#3| (-1 |#4| |#2|) |#1|))) (-423 |#2|) (-174) (-423 |#4|) (-174)) (T -421))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-4 *2 (-423 *6)) (-5 *1 (-421 *4 *5 *2 *6)) (-4 *4 (-423 *5)))))
-(-10 -7 (-15 -1351 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1733 (((-3 $ "failed")) 99)) (-1759 (((-1276 (-695 |#2|)) (-1276 $)) NIL) (((-1276 (-695 |#2|))) 104)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) 97)) (-1822 (((-3 $ "failed")) 96)) (-2893 (((-695 |#2|) (-1276 $)) NIL) (((-695 |#2|)) 115)) (-2520 (((-695 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) $) 123)) (-3065 (((-1182 (-959 |#2|))) 65)) (-4290 ((|#2| (-1276 $)) NIL) ((|#2|) 119)) (-2049 (($ (-1276 |#2|) (-1276 $)) NIL) (($ (-1276 |#2|)) 125)) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) 95)) (-2546 (((-3 $ "failed")) 87)) (-1401 (((-695 |#2|) (-1276 $)) NIL) (((-695 |#2|)) 113)) (-3215 (((-695 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) $) 121)) (-4004 (((-1182 (-959 |#2|))) 64)) (-2191 ((|#2| (-1276 $)) NIL) ((|#2|) 117)) (-1807 (((-1276 |#2|) $ (-1276 $)) NIL) (((-695 |#2|) (-1276 $) (-1276 $)) NIL) (((-1276 |#2|) $) 124) (((-695 |#2|) (-1276 $)) 133)) (-1416 (((-1276 |#2|) $) 109) (($ (-1276 |#2|)) 111)) (-3824 (((-650 (-959 |#2|)) (-1276 $)) NIL) (((-650 (-959 |#2|))) 107)) (-3381 (($ (-695 |#2|) $) 103)))
-(((-422 |#1| |#2|) (-10 -8 (-15 -3381 (|#1| (-695 |#2|) |#1|)) (-15 -3065 ((-1182 (-959 |#2|)))) (-15 -4004 ((-1182 (-959 |#2|)))) (-15 -2520 ((-695 |#2|) |#1|)) (-15 -3215 ((-695 |#2|) |#1|)) (-15 -2893 ((-695 |#2|))) (-15 -1401 ((-695 |#2|))) (-15 -4290 (|#2|)) (-15 -2191 (|#2|)) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -2049 (|#1| (-1276 |#2|))) (-15 -3824 ((-650 (-959 |#2|)))) (-15 -1759 ((-1276 (-695 |#2|)))) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -1733 ((-3 |#1| "failed"))) (-15 -1822 ((-3 |#1| "failed"))) (-15 -2546 ((-3 |#1| "failed"))) (-15 -4352 ((-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed"))) (-15 -1396 ((-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed"))) (-15 -2893 ((-695 |#2|) (-1276 |#1|))) (-15 -1401 ((-695 |#2|) (-1276 |#1|))) (-15 -4290 (|#2| (-1276 |#1|))) (-15 -2191 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2520 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -3215 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -1759 ((-1276 (-695 |#2|)) (-1276 |#1|))) (-15 -3824 ((-650 (-959 |#2|)) (-1276 |#1|)))) (-423 |#2|) (-174)) (T -422))
-((-1759 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1276 (-695 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3824 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2191 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-4290 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-1401 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2893 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-4004 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3065 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))))
-(-10 -8 (-15 -3381 (|#1| (-695 |#2|) |#1|)) (-15 -3065 ((-1182 (-959 |#2|)))) (-15 -4004 ((-1182 (-959 |#2|)))) (-15 -2520 ((-695 |#2|) |#1|)) (-15 -3215 ((-695 |#2|) |#1|)) (-15 -2893 ((-695 |#2|))) (-15 -1401 ((-695 |#2|))) (-15 -4290 (|#2|)) (-15 -2191 (|#2|)) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -2049 (|#1| (-1276 |#2|))) (-15 -3824 ((-650 (-959 |#2|)))) (-15 -1759 ((-1276 (-695 |#2|)))) (-15 -1807 ((-695 |#2|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1|)) (-15 -1733 ((-3 |#1| "failed"))) (-15 -1822 ((-3 |#1| "failed"))) (-15 -2546 ((-3 |#1| "failed"))) (-15 -4352 ((-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed"))) (-15 -1396 ((-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed"))) (-15 -2893 ((-695 |#2|) (-1276 |#1|))) (-15 -1401 ((-695 |#2|) (-1276 |#1|))) (-15 -4290 (|#2| (-1276 |#1|))) (-15 -2191 (|#2| (-1276 |#1|))) (-15 -2049 (|#1| (-1276 |#2|) (-1276 |#1|))) (-15 -1807 ((-695 |#2|) (-1276 |#1|) (-1276 |#1|))) (-15 -1807 ((-1276 |#2|) |#1| (-1276 |#1|))) (-15 -2520 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -3215 ((-695 |#2|) |#1| (-1276 |#1|))) (-15 -1759 ((-1276 (-695 |#2|)) (-1276 |#1|))) (-15 -3824 ((-650 (-959 |#2|)) (-1276 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1733 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) 20)) (-1759 (((-1276 (-695 |#1|)) (-1276 $)) 83) (((-1276 (-695 |#1|))) 105)) (-2201 (((-1276 $)) 86)) (-2450 (($) 18 T CONST)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-1822 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-2893 (((-695 |#1|) (-1276 $)) 70) (((-695 |#1|)) 97)) (-4361 ((|#1| $) 79)) (-2520 (((-695 |#1|) $ (-1276 $)) 81) (((-695 |#1|) $) 95)) (-1535 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-3065 (((-1182 (-959 |#1|))) 93 (|has| |#1| (-368)))) (-3937 (($ $ (-928)) 31)) (-3602 ((|#1| $) 77)) (-3929 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-4290 ((|#1| (-1276 $)) 72) ((|#1|) 99)) (-1458 (((-1182 |#1|) $) 68)) (-3161 (((-112)) 62)) (-2049 (($ (-1276 |#1|) (-1276 $)) 74) (($ (-1276 |#1|)) 103)) (-3413 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-3934 (((-928)) 85)) (-1460 (((-112)) 59)) (-3388 (($ $ (-928)) 38)) (-3060 (((-112)) 55)) (-3207 (((-112)) 53)) (-3149 (((-112)) 57)) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-2546 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-1401 (((-695 |#1|) (-1276 $)) 71) (((-695 |#1|)) 98)) (-4395 ((|#1| $) 80)) (-3215 (((-695 |#1|) $ (-1276 $)) 82) (((-695 |#1|) $) 96)) (-2168 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-4004 (((-1182 (-959 |#1|))) 94 (|has| |#1| (-368)))) (-2247 (($ $ (-928)) 32)) (-3386 ((|#1| $) 78)) (-1395 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-2191 ((|#1| (-1276 $)) 73) ((|#1|) 100)) (-4265 (((-1182 |#1|) $) 69)) (-2455 (((-112)) 63)) (-1903 (((-1168) $) 10)) (-3641 (((-112)) 54)) (-1482 (((-112)) 56)) (-3204 (((-112)) 58)) (-3479 (((-1129) $) 11)) (-1687 (((-112)) 61)) (-1876 ((|#1| $ (-570)) 106)) (-1807 (((-1276 |#1|) $ (-1276 $)) 76) (((-695 |#1|) (-1276 $) (-1276 $)) 75) (((-1276 |#1|) $) 108) (((-695 |#1|) (-1276 $)) 107)) (-1416 (((-1276 |#1|) $) 102) (($ (-1276 |#1|)) 101)) (-3824 (((-650 (-959 |#1|)) (-1276 $)) 84) (((-650 (-959 |#1|))) 104)) (-3688 (($ $ $) 28)) (-4068 (((-112)) 67)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2331 (((-1276 $)) 109)) (-4365 (((-650 (-1276 |#1|))) 49 (|has| |#1| (-562)))) (-3183 (($ $ $ $) 29)) (-2170 (((-112)) 65)) (-3381 (($ (-695 |#1|) $) 92)) (-1960 (($ $ $) 27)) (-4213 (((-112)) 66)) (-3987 (((-112)) 64)) (-3463 (((-112)) 60)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-1352 (((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|)) 35)))
+(((-418 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1352 ((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|)))) (-311) (-1001 |#1|) (-1253 |#2|) (-13 (-415 |#2| |#3|) (-1047 |#2|)) (-311) (-1001 |#5|) (-1253 |#6|) (-13 (-415 |#6| |#7|) (-1047 |#6|))) (T -418))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-419 *5 *6 *7 *8)) (-4 *5 (-311)) (-4 *6 (-1001 *5)) (-4 *7 (-1253 *6)) (-4 *8 (-13 (-415 *6 *7) (-1047 *6))) (-4 *9 (-311)) (-4 *10 (-1001 *9)) (-4 *11 (-1253 *10)) (-5 *2 (-419 *9 *10 *11 *12)) (-5 *1 (-418 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-415 *10 *11) (-1047 *10))))))
+(-10 -7 (-15 -1352 ((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|))))
+((-2417 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-2297 ((|#4| (-777) (-1277 |#4|)) 58)) (-4340 (((-112) $) NIL)) (-4399 (((-1277 |#4|) $) 15)) (-2771 ((|#2| $) 53)) (-3542 (($ $) 161)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 106)) (-3976 (($ (-1277 |#4|)) 105)) (-3479 (((-1129) $) NIL)) (-4413 ((|#1| $) 16)) (-2488 (($ $ $) NIL)) (-2522 (($ $ $) NIL)) (-3735 (((-868) $) 151)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 |#4|) $) 144)) (-1824 (($) 11 T CONST)) (-2872 (((-112) $ $) 39)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 137)) (* (($ $ $) 133)))
+(((-419 |#1| |#2| |#3| |#4|) (-13 (-479) (-10 -8 (-15 -3976 ($ (-1277 |#4|))) (-15 -2003 ((-1277 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -4399 ((-1277 |#4|) $)) (-15 -4413 (|#1| $)) (-15 -3542 ($ $)) (-15 -2297 (|#4| (-777) (-1277 |#4|))))) (-311) (-1001 |#1|) (-1253 |#2|) (-13 (-415 |#2| |#3|) (-1047 |#2|))) (T -419))
+((-3976 (*1 *1 *2) (-12 (-5 *2 (-1277 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4))) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-4 *3 (-311)) (-5 *1 (-419 *3 *4 *5 *6)))) (-2003 (*1 *2 *1) (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-1277 *6)) (-5 *1 (-419 *3 *4 *5 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4))))) (-2771 (*1 *2 *1) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1001 *3)) (-5 *1 (-419 *3 *2 *4 *5)) (-4 *3 (-311)) (-4 *5 (-13 (-415 *2 *4) (-1047 *2))))) (-4399 (*1 *2 *1) (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-1277 *6)) (-5 *1 (-419 *3 *4 *5 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4))))) (-4413 (*1 *2 *1) (-12 (-4 *3 (-1001 *2)) (-4 *4 (-1253 *3)) (-4 *2 (-311)) (-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3))))) (-3542 (*1 *1 *1) (-12 (-4 *2 (-311)) (-4 *3 (-1001 *2)) (-4 *4 (-1253 *3)) (-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3))))) (-2297 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-1277 *2)) (-4 *5 (-311)) (-4 *6 (-1001 *5)) (-4 *2 (-13 (-415 *6 *7) (-1047 *6))) (-5 *1 (-419 *5 *6 *7 *2)) (-4 *7 (-1253 *6)))))
+(-13 (-479) (-10 -8 (-15 -3976 ($ (-1277 |#4|))) (-15 -2003 ((-1277 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -4399 ((-1277 |#4|) $)) (-15 -4413 (|#1| $)) (-15 -3542 ($ $)) (-15 -2297 (|#4| (-777) (-1277 |#4|)))))
+((-2417 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-2771 ((|#2| $) 71)) (-4371 (($ (-1277 |#4|)) 27) (($ (-419 |#1| |#2| |#3| |#4|)) 85 (|has| |#4| (-1047 |#2|)))) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 37)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 |#4|) $) 28)) (-1824 (($) 25 T CONST)) (-2872 (((-112) $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ $ $) 82)))
+(((-420 |#1| |#2| |#3| |#4| |#5|) (-13 (-732) (-10 -8 (-15 -2003 ((-1277 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -4371 ($ (-1277 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -4371 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-311) (-1001 |#1|) (-1253 |#2|) (-415 |#2| |#3|) (-1277 |#4|)) (T -420))
+((-2003 (*1 *2 *1) (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-1277 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7)) (-4 *6 (-415 *4 *5)) (-14 *7 *2))) (-2771 (*1 *2 *1) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1001 *3)) (-5 *1 (-420 *3 *2 *4 *5 *6)) (-4 *3 (-311)) (-4 *5 (-415 *2 *4)) (-14 *6 (-1277 *5)))) (-4371 (*1 *1 *2) (-12 (-5 *2 (-1277 *6)) (-4 *6 (-415 *4 *5)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-4 *3 (-311)) (-5 *1 (-420 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-4371 (*1 *1 *2) (-12 (-5 *2 (-419 *3 *4 *5 *6)) (-4 *6 (-1047 *4)) (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-4 *6 (-415 *4 *5)) (-14 *7 (-1277 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7)))))
+(-13 (-732) (-10 -8 (-15 -2003 ((-1277 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -4371 ($ (-1277 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -4371 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-1352 ((|#3| (-1 |#4| |#2|) |#1|) 32)))
+(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#3| (-1 |#4| |#2|) |#1|))) (-423 |#2|) (-174) (-423 |#4|) (-174)) (T -421))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-4 *2 (-423 *6)) (-5 *1 (-421 *4 *5 *2 *6)) (-4 *4 (-423 *5)))))
+(-10 -7 (-15 -1352 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2101 (((-3 $ "failed")) 99)) (-2303 (((-1277 (-695 |#2|)) (-1277 $)) NIL) (((-1277 (-695 |#2|))) 104)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) 97)) (-1679 (((-3 $ "failed")) 96)) (-3649 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 115)) (-3129 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 123)) (-2693 (((-1182 (-959 |#2|))) 65)) (-3497 ((|#2| (-1277 $)) NIL) ((|#2|) 119)) (-2125 (($ (-1277 |#2|) (-1277 $)) NIL) (($ (-1277 |#2|)) 125)) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) 95)) (-3394 (((-3 $ "failed")) 87)) (-1883 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 113)) (-1806 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 121)) (-2508 (((-1182 (-959 |#2|))) 64)) (-4219 ((|#2| (-1277 $)) NIL) ((|#2|) 117)) (-1533 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 124) (((-695 |#2|) (-1277 $)) 133)) (-1417 (((-1277 |#2|) $) 109) (($ (-1277 |#2|)) 111)) (-1334 (((-650 (-959 |#2|)) (-1277 $)) NIL) (((-650 (-959 |#2|))) 107)) (-3381 (($ (-695 |#2|) $) 103)))
+(((-422 |#1| |#2|) (-10 -8 (-15 -3381 (|#1| (-695 |#2|) |#1|)) (-15 -2693 ((-1182 (-959 |#2|)))) (-15 -2508 ((-1182 (-959 |#2|)))) (-15 -3129 ((-695 |#2|) |#1|)) (-15 -1806 ((-695 |#2|) |#1|)) (-15 -3649 ((-695 |#2|))) (-15 -1883 ((-695 |#2|))) (-15 -3497 (|#2|)) (-15 -4219 (|#2|)) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -2125 (|#1| (-1277 |#2|))) (-15 -1334 ((-650 (-959 |#2|)))) (-15 -2303 ((-1277 (-695 |#2|)))) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -2101 ((-3 |#1| "failed"))) (-15 -1679 ((-3 |#1| "failed"))) (-15 -3394 ((-3 |#1| "failed"))) (-15 -2830 ((-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed"))) (-15 -4282 ((-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed"))) (-15 -3649 ((-695 |#2|) (-1277 |#1|))) (-15 -1883 ((-695 |#2|) (-1277 |#1|))) (-15 -3497 (|#2| (-1277 |#1|))) (-15 -4219 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -3129 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1806 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -2303 ((-1277 (-695 |#2|)) (-1277 |#1|))) (-15 -1334 ((-650 (-959 |#2|)) (-1277 |#1|)))) (-423 |#2|) (-174)) (T -422))
+((-2303 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-1334 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-4219 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-3497 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-1883 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3649 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2508 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2693 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))))
+(-10 -8 (-15 -3381 (|#1| (-695 |#2|) |#1|)) (-15 -2693 ((-1182 (-959 |#2|)))) (-15 -2508 ((-1182 (-959 |#2|)))) (-15 -3129 ((-695 |#2|) |#1|)) (-15 -1806 ((-695 |#2|) |#1|)) (-15 -3649 ((-695 |#2|))) (-15 -1883 ((-695 |#2|))) (-15 -3497 (|#2|)) (-15 -4219 (|#2|)) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -2125 (|#1| (-1277 |#2|))) (-15 -1334 ((-650 (-959 |#2|)))) (-15 -2303 ((-1277 (-695 |#2|)))) (-15 -1533 ((-695 |#2|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1|)) (-15 -2101 ((-3 |#1| "failed"))) (-15 -1679 ((-3 |#1| "failed"))) (-15 -3394 ((-3 |#1| "failed"))) (-15 -2830 ((-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed"))) (-15 -4282 ((-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed"))) (-15 -3649 ((-695 |#2|) (-1277 |#1|))) (-15 -1883 ((-695 |#2|) (-1277 |#1|))) (-15 -3497 (|#2| (-1277 |#1|))) (-15 -4219 (|#2| (-1277 |#1|))) (-15 -2125 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -1533 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -1533 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -3129 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1806 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -2303 ((-1277 (-695 |#2|)) (-1277 |#1|))) (-15 -1334 ((-650 (-959 |#2|)) (-1277 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2101 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) 20)) (-2303 (((-1277 (-695 |#1|)) (-1277 $)) 83) (((-1277 (-695 |#1|))) 105)) (-3016 (((-1277 $)) 86)) (-3761 (($) 18 T CONST)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-1679 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-3649 (((-695 |#1|) (-1277 $)) 70) (((-695 |#1|)) 97)) (-2893 ((|#1| $) 79)) (-3129 (((-695 |#1|) $ (-1277 $)) 81) (((-695 |#1|) $) 95)) (-3860 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-2693 (((-1182 (-959 |#1|))) 93 (|has| |#1| (-368)))) (-4333 (($ $ (-928)) 31)) (-4191 ((|#1| $) 77)) (-4255 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-3497 ((|#1| (-1277 $)) 72) ((|#1|) 99)) (-4339 (((-1182 |#1|) $) 68)) (-4362 (((-112)) 62)) (-2125 (($ (-1277 |#1|) (-1277 $)) 74) (($ (-1277 |#1|)) 103)) (-2937 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-3933 (((-928)) 85)) (-4356 (((-112)) 59)) (-2710 (($ $ (-928)) 38)) (-2637 (((-112)) 55)) (-1734 (((-112)) 53)) (-2335 (((-112)) 57)) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-3394 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-1883 (((-695 |#1|) (-1277 $)) 71) (((-695 |#1|)) 98)) (-2078 ((|#1| $) 80)) (-1806 (((-695 |#1|) $ (-1277 $)) 82) (((-695 |#1|) $) 96)) (-3984 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-2508 (((-1182 (-959 |#1|))) 94 (|has| |#1| (-368)))) (-3548 (($ $ (-928)) 32)) (-2688 ((|#1| $) 78)) (-4272 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-4219 ((|#1| (-1277 $)) 73) ((|#1|) 100)) (-3231 (((-1182 |#1|) $) 69)) (-3809 (((-112)) 63)) (-4268 (((-1168) $) 10)) (-3303 (((-112)) 54)) (-1493 (((-112)) 56)) (-1694 (((-112)) 58)) (-3479 (((-1129) $) 11)) (-2851 (((-112)) 61)) (-1877 ((|#1| $ (-570)) 106)) (-1533 (((-1277 |#1|) $ (-1277 $)) 76) (((-695 |#1|) (-1277 $) (-1277 $)) 75) (((-1277 |#1|) $) 108) (((-695 |#1|) (-1277 $)) 107)) (-1417 (((-1277 |#1|) $) 102) (($ (-1277 |#1|)) 101)) (-1334 (((-650 (-959 |#1|)) (-1277 $)) 84) (((-650 (-959 |#1|))) 104)) (-2522 (($ $ $) 28)) (-2024 (((-112)) 67)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2003 (((-1277 $)) 109)) (-2934 (((-650 (-1277 |#1|))) 49 (|has| |#1| (-562)))) (-1483 (($ $ $ $) 29)) (-4004 (((-112)) 65)) (-3381 (($ (-695 |#1|) $) 92)) (-3619 (($ $ $) 27)) (-4015 (((-112)) 66)) (-3596 (((-112)) 64)) (-2208 (((-112)) 60)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-423 |#1|) (-141) (-174)) (T -423))
-((-2331 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1276 *1)) (-4 *1 (-423 *3)))) (-1807 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1276 *3)))) (-1807 (*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-423 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-1759 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1276 (-695 *3))))) (-3824 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-650 (-959 *3))))) (-2049 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-1416 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1276 *3)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-2191 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-4290 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-1401 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-2893 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3215 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-2520 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-4004 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-3065 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-3381 (*1 *1 *2 *1) (-12 (-5 *2 (-695 *3)) (-4 *1 (-423 *3)) (-4 *3 (-174)))))
-(-13 (-372 |t#1|) (-10 -8 (-15 -2331 ((-1276 $))) (-15 -1807 ((-1276 |t#1|) $)) (-15 -1807 ((-695 |t#1|) (-1276 $))) (-15 -1876 (|t#1| $ (-570))) (-15 -1759 ((-1276 (-695 |t#1|)))) (-15 -3824 ((-650 (-959 |t#1|)))) (-15 -2049 ($ (-1276 |t#1|))) (-15 -1416 ((-1276 |t#1|) $)) (-15 -1416 ($ (-1276 |t#1|))) (-15 -2191 (|t#1|)) (-15 -4290 (|t#1|)) (-15 -1401 ((-695 |t#1|))) (-15 -2893 ((-695 |t#1|))) (-15 -3215 ((-695 |t#1|) $)) (-15 -2520 ((-695 |t#1|) $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -4004 ((-1182 (-959 |t#1|)))) (-15 -3065 ((-1182 (-959 |t#1|))))) |%noBranch|) (-15 -3381 ($ (-695 |t#1|) $))))
+((-2003 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-423 *3)))) (-1533 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3)))) (-1533 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-423 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-2303 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 (-695 *3))))) (-1334 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-650 (-959 *3))))) (-2125 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-1417 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-4219 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-3497 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-1883 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3649 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-1806 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3129 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-2508 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-2693 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-3381 (*1 *1 *2 *1) (-12 (-5 *2 (-695 *3)) (-4 *1 (-423 *3)) (-4 *3 (-174)))))
+(-13 (-372 |t#1|) (-10 -8 (-15 -2003 ((-1277 $))) (-15 -1533 ((-1277 |t#1|) $)) (-15 -1533 ((-695 |t#1|) (-1277 $))) (-15 -1877 (|t#1| $ (-570))) (-15 -2303 ((-1277 (-695 |t#1|)))) (-15 -1334 ((-650 (-959 |t#1|)))) (-15 -2125 ($ (-1277 |t#1|))) (-15 -1417 ((-1277 |t#1|) $)) (-15 -1417 ($ (-1277 |t#1|))) (-15 -4219 (|t#1|)) (-15 -3497 (|t#1|)) (-15 -1883 ((-695 |t#1|))) (-15 -3649 ((-695 |t#1|))) (-15 -1806 ((-695 |t#1|) $)) (-15 -3129 ((-695 |t#1|) $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -2508 ((-1182 (-959 |t#1|)))) (-15 -2693 ((-1182 (-959 |t#1|))))) |%noBranch|) (-15 -3381 ($ (-695 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-619 (-868)) . T) ((-372 |#1|) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-726) . T) ((-750 |#1|) . T) ((-767) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 60)) (-1732 (($ $) 78)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 191)) (-3171 (($ $) NIL)) (-2720 (((-112) $) 48)) (-1733 ((|#1| $) 16)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-1230)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-1230)))) (-2108 (($ |#1| (-570)) 42)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 148)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 74)) (-3413 (((-3 $ "failed") $) 164)) (-2951 (((-3 (-413 (-570)) "failed") $) 84 (|has| |#1| (-551)))) (-2085 (((-112) $) 80 (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) 91 (|has| |#1| (-551)))) (-2874 (($ |#1| (-570)) 44)) (-1552 (((-112) $) 213 (|has| |#1| (-1230)))) (-2081 (((-112) $) 62)) (-3672 (((-777) $) 51)) (-3525 (((-3 "nil" "sqfr" "irred" "prime") $ (-570)) 175)) (-2530 ((|#1| $ (-570)) 174)) (-4023 (((-570) $ (-570)) 173)) (-3186 (($ |#1| (-570)) 41)) (-1351 (($ (-1 |#1| |#1|) $) 183)) (-3351 (($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570))))) 79)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-4384 (($ |#1| (-570)) 43)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 192 (|has| |#1| (-458)))) (-2678 (($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime")) 40)) (-1679 (((-650 (-2 (|:| -3738 |#1|) (|:| -1907 (-570)))) $) 73)) (-3556 (((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $) 12)) (-3738 (((-424 $) $) NIL (|has| |#1| (-1230)))) (-2407 (((-3 $ "failed") $ $) 176)) (-1907 (((-570) $) 167)) (-1387 ((|#1| $) 75)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 100 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 106 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) $) NIL (|has| |#1| (-520 (-1186) $))) (($ $ (-650 (-1186)) (-650 $)) 107 (|has| |#1| (-520 (-1186) $))) (($ $ (-650 (-298 $))) 103 (|has| |#1| (-313 $))) (($ $ (-298 $)) NIL (|has| |#1| (-313 $))) (($ $ $ $) NIL (|has| |#1| (-313 $))) (($ $ (-650 $) (-650 $)) NIL (|has| |#1| (-313 $)))) (-1876 (($ $ |#1|) 92 (|has| |#1| (-290 |#1| |#1|))) (($ $ $) 93 (|has| |#1| (-290 $ $)))) (-3447 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) 182)) (-1416 (((-542) $) 39 (|has| |#1| (-620 (-542)))) (((-384) $) 113 (|has| |#1| (-1031))) (((-227) $) 119 (|has| |#1| (-1031)))) (-3735 (((-868) $) 146) (($ (-570)) 65) (($ $) NIL) (($ |#1|) 64) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570)))))) (-2744 (((-777)) 67 T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 53 T CONST)) (-1823 (($) 52 T CONST)) (-2791 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) 159)) (-2965 (($ $) 161) (($ $ $) NIL)) (-2954 (($ $ $) 180)) (** (($ $ (-928)) NIL) (($ $ (-777)) 125)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 69) (($ $ $) 68) (($ |#1| $) 70) (($ $ |#1|) NIL)))
-(((-424 |#1|) (-13 (-562) (-233 |#1|) (-38 |#1|) (-343 |#1|) (-417 |#1|) (-10 -8 (-15 -1387 (|#1| $)) (-15 -1907 ((-570) $)) (-15 -3351 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -3556 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -3186 ($ |#1| (-570))) (-15 -1679 ((-650 (-2 (|:| -3738 |#1|) (|:| -1907 (-570)))) $)) (-15 -4384 ($ |#1| (-570))) (-15 -4023 ((-570) $ (-570))) (-15 -2530 (|#1| $ (-570))) (-15 -3525 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -3672 ((-777) $)) (-15 -2874 ($ |#1| (-570))) (-15 -2108 ($ |#1| (-570))) (-15 -2678 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1733 (|#1| $)) (-15 -1732 ($ $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-458)) (-6 (-458)) |%noBranch|) (IF (|has| |#1| (-1031)) (-6 (-1031)) |%noBranch|) (IF (|has| |#1| (-1230)) (-6 (-1230)) |%noBranch|) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-290 $ $)) (-6 (-290 $ $)) |%noBranch|) (IF (|has| |#1| (-313 $)) (-6 (-313 $)) |%noBranch|) (IF (|has| |#1| (-520 (-1186) $)) (-6 (-520 (-1186) $)) |%noBranch|))) (-562)) (T -424))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-562)) (-5 *1 (-424 *3)))) (-1387 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1907 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-570))))) (-4 *2 (-562)) (-5 *1 (-424 *2)))) (-3556 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-570))))) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-3186 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1679 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -3738 *3) (|:| -1907 (-570))))) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-4384 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-4023 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3525 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *4)) (-4 *4 (-562)))) (-3672 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2874 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2108 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2678 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1733 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1732 (*1 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2085 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-3137 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-2951 (*1 *2 *1) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))))
-(-13 (-562) (-233 |#1|) (-38 |#1|) (-343 |#1|) (-417 |#1|) (-10 -8 (-15 -1387 (|#1| $)) (-15 -1907 ((-570) $)) (-15 -3351 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -3556 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -3186 ($ |#1| (-570))) (-15 -1679 ((-650 (-2 (|:| -3738 |#1|) (|:| -1907 (-570)))) $)) (-15 -4384 ($ |#1| (-570))) (-15 -4023 ((-570) $ (-570))) (-15 -2530 (|#1| $ (-570))) (-15 -3525 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -3672 ((-777) $)) (-15 -2874 ($ |#1| (-570))) (-15 -2108 ($ |#1| (-570))) (-15 -2678 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1733 (|#1| $)) (-15 -1732 ($ $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-458)) (-6 (-458)) |%noBranch|) (IF (|has| |#1| (-1031)) (-6 (-1031)) |%noBranch|) (IF (|has| |#1| (-1230)) (-6 (-1230)) |%noBranch|) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-290 $ $)) (-6 (-290 $ $)) |%noBranch|) (IF (|has| |#1| (-313 $)) (-6 (-313 $)) |%noBranch|) (IF (|has| |#1| (-520 (-1186) $)) (-6 (-520 (-1186) $)) |%noBranch|)))
-((-2018 (((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|)) 28)) (-1549 (((-424 |#1|) (-424 |#1|) (-424 |#1|)) 17)))
-(((-425 |#1|) (-10 -7 (-15 -2018 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -1549 ((-424 |#1|) (-424 |#1|) (-424 |#1|)))) (-562)) (T -425))
-((-1549 (*1 *2 *2 *2) (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))) (-2018 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-424 *4) *4)) (-4 *4 (-562)) (-5 *2 (-424 *4)) (-5 *1 (-425 *4)))))
-(-10 -7 (-15 -2018 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -1549 ((-424 |#1|) (-424 |#1|) (-424 |#1|))))
-((-2755 ((|#2| |#2|) 183)) (-3671 (((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112)) 60)))
-(((-426 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3671 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -2755 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|)) (-1186) |#2|) (T -426))
-((-2755 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-426 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1211) (-436 *3))) (-14 *4 (-1186)) (-14 *5 *2))) (-3671 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |%expansion| (-317 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168)))))) (-5 *1 (-426 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1211) (-436 *5))) (-14 *6 (-1186)) (-14 *7 *3))))
-(-10 -7 (-15 -3671 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -2755 (|#2| |#2|)))
-((-1351 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-427 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-436 |#1|) (-1058) (-436 |#3|)) (T -427))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *2 (-436 *6)) (-5 *1 (-427 *5 *4 *6 *2)) (-4 *4 (-436 *5)))))
-(-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2755 ((|#2| |#2|) 106)) (-4222 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 52)) (-1377 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 170)))
-(((-428 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4222 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1377 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -2755 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|) (-10 -8 (-15 -3735 ($ |#3|)))) (-854) (-13 (-1254 |#2| |#3|) (-368) (-1211) (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $)))) (-992 |#4|) (-1186)) (T -428))
-((-2755 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *2 (-13 (-27) (-1211) (-436 *3) (-10 -8 (-15 -3735 ($ *4))))) (-4 *4 (-854)) (-4 *5 (-13 (-1254 *2 *4) (-368) (-1211) (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $))))) (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))) (-1377 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *3 (-13 (-27) (-1211) (-436 *6) (-10 -8 (-15 -3735 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1254 *3 *7) (-368) (-1211) (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168)))))) (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8)) (-14 *10 (-1186)))) (-4222 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *3 (-13 (-27) (-1211) (-436 *6) (-10 -8 (-15 -3735 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1254 *3 *7) (-368) (-1211) (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168)))))) (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8)) (-14 *10 (-1186)))))
-(-10 -7 (-15 -4222 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1377 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -2755 (|#2| |#2|)))
-((-3734 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-3529 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-1351 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-429 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3734 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1109) (-431 |#1|) (-1109) (-431 |#3|)) (T -429))
-((-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1109)) (-4 *5 (-1109)) (-4 *2 (-431 *5)) (-5 *1 (-429 *6 *4 *5 *2)) (-4 *4 (-431 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1109)) (-4 *2 (-1109)) (-5 *1 (-429 *5 *4 *2 *6)) (-4 *4 (-431 *5)) (-4 *6 (-431 *2)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-431 *6)) (-5 *1 (-429 *5 *4 *6 *2)) (-4 *4 (-431 *5)))))
-(-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3734 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-2304 (($) 52)) (-3923 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 46)) (-2704 (($ $ $) 45)) (-1783 (((-112) $ $) 34)) (-3403 (((-777)) 56)) (-4240 (($ (-650 |#2|)) 23) (($) NIL)) (-3336 (($) 67)) (-2548 (((-112) $ $) 15)) (-3310 ((|#2| $) 78)) (-3787 ((|#2| $) 76)) (-2367 (((-928) $) 71)) (-2307 (($ $ $) 41)) (-2159 (($ (-928)) 61)) (-1966 (($ $ |#2|) NIL) (($ $ $) 44)) (-3486 (((-777) (-1 (-112) |#2|) $) NIL) (((-777) |#2| $) 31)) (-3748 (($ (-650 |#2|)) 27)) (-1593 (($ $) 54)) (-3735 (((-868) $) 39)) (-2316 (((-777) $) 24)) (-3813 (($ (-650 |#2|)) 22) (($) NIL)) (-2872 (((-112) $ $) 19)))
-(((-430 |#1| |#2|) (-10 -8 (-15 -3403 ((-777))) (-15 -2159 (|#1| (-928))) (-15 -2367 ((-928) |#1|)) (-15 -3336 (|#1|)) (-15 -3310 (|#2| |#1|)) (-15 -3787 (|#2| |#1|)) (-15 -2304 (|#1|)) (-15 -1593 (|#1| |#1|)) (-15 -2316 ((-777) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2548 ((-112) |#1| |#1|)) (-15 -3813 (|#1|)) (-15 -3813 (|#1| (-650 |#2|))) (-15 -4240 (|#1|)) (-15 -4240 (|#1| (-650 |#2|))) (-15 -2307 (|#1| |#1| |#1|)) (-15 -1966 (|#1| |#1| |#1|)) (-15 -1966 (|#1| |#1| |#2|)) (-15 -2704 (|#1| |#1| |#1|)) (-15 -1783 ((-112) |#1| |#1|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#2| |#1|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -3486 ((-777) |#2| |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|))) (-431 |#2|) (-1109)) (T -430))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 60)) (-2090 (($ $) 78)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 191)) (-1345 (($ $) NIL)) (-1372 (((-112) $) 48)) (-2101 ((|#1| $) 16)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-1231)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-1231)))) (-1519 (($ |#1| (-570)) 42)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 148)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 74)) (-2937 (((-3 $ "failed") $) 164)) (-4147 (((-3 (-413 (-570)) "failed") $) 84 (|has| |#1| (-551)))) (-4373 (((-112) $) 80 (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) 91 (|has| |#1| (-551)))) (-3465 (($ |#1| (-570)) 44)) (-4037 (((-112) $) 213 (|has| |#1| (-1231)))) (-4340 (((-112) $) 62)) (-3622 (((-777) $) 51)) (-1565 (((-3 "nil" "sqfr" "irred" "prime") $ (-570)) 175)) (-3243 ((|#1| $ (-570)) 174)) (-2690 (((-570) $ (-570)) 173)) (-1520 (($ |#1| (-570)) 41)) (-1352 (($ (-1 |#1| |#1|) $) 183)) (-3595 (($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570))))) 79)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-2001 (($ |#1| (-570)) 43)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 192 (|has| |#1| (-458)))) (-2184 (($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime")) 40)) (-2773 (((-650 (-2 (|:| -3739 |#1|) (|:| -3011 (-570)))) $) 73)) (-3733 (((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $) 12)) (-3739 (((-424 $) $) NIL (|has| |#1| (-1231)))) (-2406 (((-3 $ "failed") $ $) 176)) (-3011 (((-570) $) 167)) (-1388 ((|#1| $) 75)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 100 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 106 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) $) NIL (|has| |#1| (-520 (-1186) $))) (($ $ (-650 (-1186)) (-650 $)) 107 (|has| |#1| (-520 (-1186) $))) (($ $ (-650 (-298 $))) 103 (|has| |#1| (-313 $))) (($ $ (-298 $)) NIL (|has| |#1| (-313 $))) (($ $ $ $) NIL (|has| |#1| (-313 $))) (($ $ (-650 $) (-650 $)) NIL (|has| |#1| (-313 $)))) (-1877 (($ $ |#1|) 92 (|has| |#1| (-290 |#1| |#1|))) (($ $ $) 93 (|has| |#1| (-290 $ $)))) (-3447 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) 182)) (-1417 (((-542) $) 39 (|has| |#1| (-620 (-542)))) (((-384) $) 113 (|has| |#1| (-1031))) (((-227) $) 119 (|has| |#1| (-1031)))) (-3735 (((-868) $) 146) (($ (-570)) 65) (($ $) NIL) (($ |#1|) 64) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570)))))) (-1609 (((-777)) 67 T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 53 T CONST)) (-1824 (($) 52 T CONST)) (-2791 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) 159)) (-2965 (($ $) 161) (($ $ $) NIL)) (-2953 (($ $ $) 180)) (** (($ $ (-928)) NIL) (($ $ (-777)) 125)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 69) (($ $ $) 68) (($ |#1| $) 70) (($ $ |#1|) NIL)))
+(((-424 |#1|) (-13 (-562) (-233 |#1|) (-38 |#1|) (-343 |#1|) (-417 |#1|) (-10 -8 (-15 -1388 (|#1| $)) (-15 -3011 ((-570) $)) (-15 -3595 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -3733 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -1520 ($ |#1| (-570))) (-15 -2773 ((-650 (-2 (|:| -3739 |#1|) (|:| -3011 (-570)))) $)) (-15 -2001 ($ |#1| (-570))) (-15 -2690 ((-570) $ (-570))) (-15 -3243 (|#1| $ (-570))) (-15 -1565 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -3622 ((-777) $)) (-15 -3465 ($ |#1| (-570))) (-15 -1519 ($ |#1| (-570))) (-15 -2184 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2101 (|#1| $)) (-15 -2090 ($ $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-458)) (-6 (-458)) |%noBranch|) (IF (|has| |#1| (-1031)) (-6 (-1031)) |%noBranch|) (IF (|has| |#1| (-1231)) (-6 (-1231)) |%noBranch|) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-290 $ $)) (-6 (-290 $ $)) |%noBranch|) (IF (|has| |#1| (-313 $)) (-6 (-313 $)) |%noBranch|) (IF (|has| |#1| (-520 (-1186) $)) (-6 (-520 (-1186) $)) |%noBranch|))) (-562)) (T -424))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-562)) (-5 *1 (-424 *3)))) (-1388 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-3595 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-570))))) (-4 *2 (-562)) (-5 *1 (-424 *2)))) (-3733 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-570))))) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-1520 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2773 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -3739 *3) (|:| -3011 (-570))))) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2001 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2690 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1565 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *4)) (-4 *4 (-562)))) (-3622 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-3465 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1519 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2184 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2101 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2090 (*1 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-4373 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-2220 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-4147 (*1 *2 *1) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))))
+(-13 (-562) (-233 |#1|) (-38 |#1|) (-343 |#1|) (-417 |#1|) (-10 -8 (-15 -1388 (|#1| $)) (-15 -3011 ((-570) $)) (-15 -3595 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -3733 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -1520 ($ |#1| (-570))) (-15 -2773 ((-650 (-2 (|:| -3739 |#1|) (|:| -3011 (-570)))) $)) (-15 -2001 ($ |#1| (-570))) (-15 -2690 ((-570) $ (-570))) (-15 -3243 (|#1| $ (-570))) (-15 -1565 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -3622 ((-777) $)) (-15 -3465 ($ |#1| (-570))) (-15 -1519 ($ |#1| (-570))) (-15 -2184 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2101 (|#1| $)) (-15 -2090 ($ $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-458)) (-6 (-458)) |%noBranch|) (IF (|has| |#1| (-1031)) (-6 (-1031)) |%noBranch|) (IF (|has| |#1| (-1231)) (-6 (-1231)) |%noBranch|) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-290 $ $)) (-6 (-290 $ $)) |%noBranch|) (IF (|has| |#1| (-313 $)) (-6 (-313 $)) |%noBranch|) (IF (|has| |#1| (-520 (-1186) $)) (-6 (-520 (-1186) $)) |%noBranch|)))
+((-2950 (((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|)) 28)) (-4005 (((-424 |#1|) (-424 |#1|) (-424 |#1|)) 17)))
+(((-425 |#1|) (-10 -7 (-15 -2950 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -4005 ((-424 |#1|) (-424 |#1|) (-424 |#1|)))) (-562)) (T -425))
+((-4005 (*1 *2 *2 *2) (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))) (-2950 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-424 *4) *4)) (-4 *4 (-562)) (-5 *2 (-424 *4)) (-5 *1 (-425 *4)))))
+(-10 -7 (-15 -2950 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -4005 ((-424 |#1|) (-424 |#1|) (-424 |#1|))))
+((-1709 ((|#2| |#2|) 183)) (-3611 (((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112)) 60)))
+(((-426 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3611 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -1709 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -426))
+((-1709 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-426 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1212) (-436 *3))) (-14 *4 (-1186)) (-14 *5 *2))) (-3611 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (|:| |%expansion| (-317 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168)))))) (-5 *1 (-426 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1212) (-436 *5))) (-14 *6 (-1186)) (-14 *7 *3))))
+(-10 -7 (-15 -3611 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -1709 (|#2| |#2|)))
+((-1352 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-427 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-436 |#1|) (-1058) (-436 |#3|)) (T -427))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *2 (-436 *6)) (-5 *1 (-427 *5 *4 *6 *2)) (-4 *4 (-436 *5)))))
+(-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1709 ((|#2| |#2|) 106)) (-4113 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 52)) (-2724 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 170)))
+(((-428 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4113 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -2724 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1709 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|) (-10 -8 (-15 -3735 ($ |#3|)))) (-854) (-13 (-1255 |#2| |#3|) (-368) (-1212) (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $)))) (-992 |#4|) (-1186)) (T -428))
+((-1709 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *2 (-13 (-27) (-1212) (-436 *3) (-10 -8 (-15 -3735 ($ *4))))) (-4 *4 (-854)) (-4 *5 (-13 (-1255 *2 *4) (-368) (-1212) (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $))))) (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))) (-2724 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *3 (-13 (-27) (-1212) (-436 *6) (-10 -8 (-15 -3735 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1255 *3 *7) (-368) (-1212) (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168)))))) (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8)) (-14 *10 (-1186)))) (-4113 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *3 (-13 (-27) (-1212) (-436 *6) (-10 -8 (-15 -3735 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1255 *3 *7) (-368) (-1212) (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168)))))) (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8)) (-14 *10 (-1186)))))
+(-10 -7 (-15 -4113 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -2724 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1709 (|#2| |#2|)))
+((-2942 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-3529 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-1352 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-429 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2942 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1109) (-431 |#1|) (-1109) (-431 |#3|)) (T -429))
+((-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1109)) (-4 *5 (-1109)) (-4 *2 (-431 *5)) (-5 *1 (-429 *6 *4 *5 *2)) (-4 *4 (-431 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1109)) (-4 *2 (-1109)) (-5 *1 (-429 *5 *4 *2 *6)) (-4 *4 (-431 *5)) (-4 *6 (-431 *2)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-431 *6)) (-5 *1 (-429 *5 *4 *6 *2)) (-4 *4 (-431 *5)))))
+(-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3529 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2942 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-2853 (($) 52)) (-3923 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 46)) (-2398 (($ $ $) 45)) (-4425 (((-112) $ $) 34)) (-3403 (((-777)) 56)) (-4241 (($ (-650 |#2|)) 23) (($) NIL)) (-3336 (($) 67)) (-3418 (((-112) $ $) 15)) (-3311 ((|#2| $) 78)) (-2222 ((|#2| $) 76)) (-2332 (((-928) $) 71)) (-2885 (($ $ $) 41)) (-2160 (($ (-928)) 61)) (-2449 (($ $ |#2|) NIL) (($ $ $) 44)) (-3490 (((-777) (-1 (-112) |#2|) $) NIL) (((-777) |#2| $) 31)) (-3749 (($ (-650 |#2|)) 27)) (-3152 (($ $) 54)) (-3735 (((-868) $) 39)) (-2968 (((-777) $) 24)) (-3813 (($ (-650 |#2|)) 22) (($) NIL)) (-2872 (((-112) $ $) 19)))
+(((-430 |#1| |#2|) (-10 -8 (-15 -3403 ((-777))) (-15 -2160 (|#1| (-928))) (-15 -2332 ((-928) |#1|)) (-15 -3336 (|#1|)) (-15 -3311 (|#2| |#1|)) (-15 -2222 (|#2| |#1|)) (-15 -2853 (|#1|)) (-15 -3152 (|#1| |#1|)) (-15 -2968 ((-777) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -3418 ((-112) |#1| |#1|)) (-15 -3813 (|#1|)) (-15 -3813 (|#1| (-650 |#2|))) (-15 -4241 (|#1|)) (-15 -4241 (|#1| (-650 |#2|))) (-15 -2885 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1| |#2|)) (-15 -2398 (|#1| |#1| |#1|)) (-15 -4425 ((-112) |#1| |#1|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#2| |#1|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|))) (-431 |#2|) (-1109)) (T -430))
((-3403 (*1 *2) (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-430 *3 *4)) (-4 *3 (-431 *4)))))
-(-10 -8 (-15 -3403 ((-777))) (-15 -2159 (|#1| (-928))) (-15 -2367 ((-928) |#1|)) (-15 -3336 (|#1|)) (-15 -3310 (|#2| |#1|)) (-15 -3787 (|#2| |#1|)) (-15 -2304 (|#1|)) (-15 -1593 (|#1| |#1|)) (-15 -2316 ((-777) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2548 ((-112) |#1| |#1|)) (-15 -3813 (|#1|)) (-15 -3813 (|#1| (-650 |#2|))) (-15 -4240 (|#1|)) (-15 -4240 (|#1| (-650 |#2|))) (-15 -2307 (|#1| |#1| |#1|)) (-15 -1966 (|#1| |#1| |#1|)) (-15 -1966 (|#1| |#1| |#2|)) (-15 -2704 (|#1| |#1| |#1|)) (-15 -1783 ((-112) |#1| |#1|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#2| |#1|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -3486 ((-777) |#2| |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)))
-((-2416 (((-112) $ $) 19)) (-2304 (($) 68 (|has| |#1| (-373)))) (-3923 (($ |#1| $) 83) (($ $ |#1|) 82) (($ $ $) 81)) (-2704 (($ $ $) 79)) (-1783 (((-112) $ $) 80)) (-3594 (((-112) $ (-777)) 8)) (-3403 (((-777)) 62 (|has| |#1| (-373)))) (-4240 (($ (-650 |#1|)) 75) (($) 74)) (-1591 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4448)))) (-3336 (($) 65 (|has| |#1| (-373)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) 71)) (-2742 (((-112) $ (-777)) 9)) (-3310 ((|#1| $) 66 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3787 ((|#1| $) 67 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-2367 (((-928) $) 64 (|has| |#1| (-373)))) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22)) (-2307 (($ $ $) 76)) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-2159 (($ (-928)) 63 (|has| |#1| (-373)))) (-3479 (((-1129) $) 21)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1966 (($ $ |#1|) 78) (($ $ $) 77)) (-2271 (($) 50) (($ (-650 |#1|)) 49)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 51)) (-1593 (($ $) 69 (|has| |#1| (-373)))) (-3735 (((-868) $) 18)) (-2316 (((-777) $) 70)) (-3813 (($ (-650 |#1|)) 73) (($) 72)) (-1859 (((-112) $ $) 23)) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+(-10 -8 (-15 -3403 ((-777))) (-15 -2160 (|#1| (-928))) (-15 -2332 ((-928) |#1|)) (-15 -3336 (|#1|)) (-15 -3311 (|#2| |#1|)) (-15 -2222 (|#2| |#1|)) (-15 -2853 (|#1|)) (-15 -3152 (|#1| |#1|)) (-15 -2968 ((-777) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -3418 ((-112) |#1| |#1|)) (-15 -3813 (|#1|)) (-15 -3813 (|#1| (-650 |#2|))) (-15 -4241 (|#1|)) (-15 -4241 (|#1| (-650 |#2|))) (-15 -2885 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1| |#2|)) (-15 -2398 (|#1| |#1| |#1|)) (-15 -4425 ((-112) |#1| |#1|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#2| |#1|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)))
+((-2417 (((-112) $ $) 19)) (-2853 (($) 68 (|has| |#1| (-373)))) (-3923 (($ |#1| $) 83) (($ $ |#1|) 82) (($ $ $) 81)) (-2398 (($ $ $) 79)) (-4425 (((-112) $ $) 80)) (-4095 (((-112) $ (-777)) 8)) (-3403 (((-777)) 62 (|has| |#1| (-373)))) (-4241 (($ (-650 |#1|)) 75) (($) 74)) (-3131 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4449)))) (-3336 (($) 65 (|has| |#1| (-373)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) 71)) (-1586 (((-112) $ (-777)) 9)) (-3311 ((|#1| $) 66 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2222 ((|#1| $) 67 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2332 (((-928) $) 64 (|has| |#1| (-373)))) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22)) (-2885 (($ $ $) 76)) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-2160 (($ (-928)) 63 (|has| |#1| (-373)))) (-3479 (((-1129) $) 21)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-2449 (($ $ |#1|) 78) (($ $ $) 77)) (-2535 (($) 50) (($ (-650 |#1|)) 49)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 51)) (-3152 (($ $) 69 (|has| |#1| (-373)))) (-3735 (((-868) $) 18)) (-2968 (((-777) $) 70)) (-3813 (($ (-650 |#1|)) 73) (($) 72)) (-3866 (((-112) $ $) 23)) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-431 |#1|) (-141) (-1109)) (T -431))
-((-2316 (*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-1593 (*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))) (-2304 (*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))) (-3787 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3310 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))))
-(-13 (-231 |t#1|) (-1107 |t#1|) (-10 -8 (-6 -4448) (-15 -2316 ((-777) $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-373)) (-15 -1593 ($ $)) (-15 -2304 ($))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -3787 (|t#1| $)) (-15 -3310 (|t#1| $))) |%noBranch|)))
-(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-231 |#1|) . T) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-373) |has| |#1| (-373)) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1107 |#1|) . T) ((-1109) . T) ((-1226) . T))
-((-1402 (((-592 |#2|) |#2| (-1186)) 36)) (-4113 (((-592 |#2|) |#2| (-1186)) 21)) (-3975 ((|#2| |#2| (-1186)) 26)))
-(((-432 |#1| |#2|) (-10 -7 (-15 -4113 ((-592 |#2|) |#2| (-1186))) (-15 -1402 ((-592 |#2|) |#2| (-1186))) (-15 -3975 (|#2| |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-29 |#1|))) (T -432))
-((-3975 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-432 *4 *2)) (-4 *2 (-13 (-1211) (-29 *4))))) (-1402 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3)) (-4 *3 (-13 (-1211) (-29 *5))))) (-4113 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3)) (-4 *3 (-13 (-1211) (-29 *5))))))
-(-10 -7 (-15 -4113 ((-592 |#2|) |#2| (-1186))) (-15 -1402 ((-592 |#2|) |#2| (-1186))) (-15 -3975 (|#2| |#2| (-1186))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-1852 (($ |#2| |#1|) 37)) (-3834 (($ |#2| |#1|) 35)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-335 |#2|)) 25)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 10 T CONST)) (-1823 (($) 16 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 36)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 39) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-433 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4435)) (IF (|has| |#1| (-6 -4435)) (-6 -4435) |%noBranch|) |%noBranch|) (-15 -3735 ($ |#1|)) (-15 -3735 ($ (-335 |#2|))) (-15 -1852 ($ |#2| |#1|)) (-15 -3834 ($ |#2| |#1|)))) (-13 (-174) (-38 (-413 (-570)))) (-13 (-856) (-21))) (T -433))
-((-3735 (*1 *1 *2) (-12 (-5 *1 (-433 *2 *3)) (-4 *2 (-13 (-174) (-38 (-413 (-570))))) (-4 *3 (-13 (-856) (-21))))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-335 *4)) (-4 *4 (-13 (-856) (-21))) (-5 *1 (-433 *3 *4)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))))) (-1852 (*1 *1 *2 *3) (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))) (-4 *2 (-13 (-856) (-21))))) (-3834 (*1 *1 *2 *3) (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))) (-4 *2 (-13 (-856) (-21))))))
-(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4435)) (IF (|has| |#1| (-6 -4435)) (-6 -4435) |%noBranch|) |%noBranch|) (-15 -3735 ($ |#1|)) (-15 -3735 ($ (-335 |#2|))) (-15 -1852 ($ |#2| |#1|)) (-15 -3834 ($ |#2| |#1|))))
-((-3555 (((-3 |#2| (-650 |#2|)) |#2| (-1186)) 115)))
-(((-434 |#1| |#2|) (-10 -7 (-15 -3555 ((-3 |#2| (-650 |#2|)) |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-966) (-29 |#1|))) (T -434))
-((-3555 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 *3 (-650 *3))) (-5 *1 (-434 *5 *3)) (-4 *3 (-13 (-1211) (-966) (-29 *5))))))
-(-10 -7 (-15 -3555 ((-3 |#2| (-650 |#2|)) |#2| (-1186))))
-((-1716 (((-650 (-1186)) $) 81)) (-3703 (((-413 (-1182 $)) $ (-618 $)) 314)) (-4283 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) 278)) (-4378 (((-3 (-618 $) "failed") $) NIL) (((-3 (-1186) "failed") $) 84) (((-3 (-570) "failed") $) NIL) (((-3 |#2| "failed") $) 274) (((-3 (-413 (-959 |#2|)) "failed") $) 364) (((-3 (-959 |#2|) "failed") $) 276) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-618 $) $) NIL) (((-1186) $) 28) (((-570) $) NIL) ((|#2| $) 272) (((-413 (-959 |#2|)) $) 346) (((-959 |#2|) $) 273) (((-413 (-570)) $) NIL)) (-3680 (((-115) (-115)) 47)) (-3195 (($ $) 99)) (-3399 (((-3 (-618 $) "failed") $) 269)) (-3669 (((-650 (-618 $)) $) 270)) (-1596 (((-3 (-650 $) "failed") $) 288)) (-3366 (((-3 (-2 (|:| |val| $) (|:| -1907 (-570))) "failed") $) 295)) (-3751 (((-3 (-650 $) "failed") $) 286)) (-2828 (((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 $))) "failed") $) 305)) (-3496 (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $) 292) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-115)) 256) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-1186)) 258)) (-1834 (((-112) $) 17)) (-1842 ((|#2| $) 19)) (-1730 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) 277) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 109) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL) (($ $ (-1186)) 62) (($ $ (-650 (-1186))) 281) (($ $) 282) (($ $ (-115) $ (-1186)) 65) (($ $ (-650 (-115)) (-650 $) (-1186)) 72) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 120) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 283) (($ $ (-1186) (-777) (-1 $ (-650 $))) 105) (($ $ (-1186) (-777) (-1 $ $)) 104)) (-1876 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) 119)) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 279)) (-1418 (($ $) 325)) (-1416 (((-899 (-570)) $) 298) (((-899 (-384)) $) 302) (($ (-424 $)) 360) (((-542) $) NIL)) (-3735 (((-868) $) 280) (($ (-618 $)) 93) (($ (-1186)) 24) (($ |#2|) NIL) (($ (-1134 |#2| (-618 $))) NIL) (($ (-413 |#2|)) 330) (($ (-959 (-413 |#2|))) 369) (($ (-413 (-959 (-413 |#2|)))) 342) (($ (-413 (-959 |#2|))) 336) (($ $) NIL) (($ (-959 |#2|)) 218) (($ (-413 (-570))) 374) (($ (-570)) NIL)) (-2744 (((-777)) 88)) (-2004 (((-112) (-115)) 42)) (-4191 (($ (-1186) $) 31) (($ (-1186) $ $) 32) (($ (-1186) $ $ $) 33) (($ (-1186) $ $ $ $) 34) (($ (-1186) (-650 $)) 39)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ |#2| $) 307) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
-(((-435 |#1| |#2|) (-10 -8 (-15 * (|#1| (-928) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3735 (|#1| (-570))) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -3735 (|#1| (-959 |#2|))) (-15 -4378 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3080 ((-959 |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3735 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-959 |#2|)))) (-15 -4378 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3080 ((-413 (-959 |#2|)) |#1|)) (-15 -3703 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3735 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3735 (|#1| (-959 (-413 |#2|)))) (-15 -3735 (|#1| (-413 |#2|))) (-15 -1418 (|#1| |#1|)) (-15 -1416 (|#1| (-424 |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -3366 ((-3 (-2 (|:| |val| |#1|) (|:| -1907 (-570))) "failed") |#1|)) (-15 -3496 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -1907 (-570))) "failed") |#1| (-1186))) (-15 -3496 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -1907 (-570))) "failed") |#1| (-115))) (-15 -3195 (|#1| |#1|)) (-15 -3735 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -2828 ((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -3751 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3496 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -1907 (-570))) "failed") |#1|)) (-15 -1596 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1730 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1730 (|#1| |#1|)) (-15 -1730 (|#1| |#1| (-650 (-1186)))) (-15 -1730 (|#1| |#1| (-1186))) (-15 -4191 (|#1| (-1186) (-650 |#1|))) (-15 -4191 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4191 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4191 (|#1| (-1186) |#1| |#1|)) (-15 -4191 (|#1| (-1186) |#1|)) (-15 -1716 ((-650 (-1186)) |#1|)) (-15 -1842 (|#2| |#1|)) (-15 -1834 ((-112) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4378 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -3669 ((-650 (-618 |#1|)) |#1|)) (-15 -3399 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4283 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4283 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4283 (|#1| |#1| (-298 |#1|))) (-15 -1876 (|#1| (-115) (-650 |#1|))) (-15 -1876 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1730 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3735 (|#1| (-618 |#1|))) (-15 -4378 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|)) (-15 -3735 ((-868) |#1|))) (-436 |#2|) (-1109)) (T -435))
-((-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *4 (-1109)) (-5 *1 (-435 *3 *4)) (-4 *3 (-436 *4)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5)))) (-2744 (*1 *2) (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-435 *3 *4)) (-4 *3 (-436 *4)))))
-(-10 -8 (-15 * (|#1| (-928) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3735 (|#1| (-570))) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -3735 (|#1| (-959 |#2|))) (-15 -4378 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3080 ((-959 |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3735 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-959 |#2|)))) (-15 -4378 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3080 ((-413 (-959 |#2|)) |#1|)) (-15 -3703 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3735 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3735 (|#1| (-959 (-413 |#2|)))) (-15 -3735 (|#1| (-413 |#2|))) (-15 -1418 (|#1| |#1|)) (-15 -1416 (|#1| (-424 |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -3366 ((-3 (-2 (|:| |val| |#1|) (|:| -1907 (-570))) "failed") |#1|)) (-15 -3496 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -1907 (-570))) "failed") |#1| (-1186))) (-15 -3496 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -1907 (-570))) "failed") |#1| (-115))) (-15 -3195 (|#1| |#1|)) (-15 -3735 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -2828 ((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -3751 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3496 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -1907 (-570))) "failed") |#1|)) (-15 -1596 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1730 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1730 (|#1| |#1|)) (-15 -1730 (|#1| |#1| (-650 (-1186)))) (-15 -1730 (|#1| |#1| (-1186))) (-15 -4191 (|#1| (-1186) (-650 |#1|))) (-15 -4191 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4191 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4191 (|#1| (-1186) |#1| |#1|)) (-15 -4191 (|#1| (-1186) |#1|)) (-15 -1716 ((-650 (-1186)) |#1|)) (-15 -1842 (|#2| |#1|)) (-15 -1834 ((-112) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4378 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1730 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1730 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -3669 ((-650 (-618 |#1|)) |#1|)) (-15 -3399 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4283 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4283 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4283 (|#1| |#1| (-298 |#1|))) (-15 -1876 (|#1| (-115) (-650 |#1|))) (-15 -1876 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1| |#1|)) (-15 -1876 (|#1| (-115) |#1|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1730 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1730 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3735 (|#1| (-618 |#1|))) (-15 -4378 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|)) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 116 (|has| |#1| (-25)))) (-1716 (((-650 (-1186)) $) 203)) (-3703 (((-413 (-1182 $)) $ (-618 $)) 171 (|has| |#1| (-562)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 143 (|has| |#1| (-562)))) (-3171 (($ $) 144 (|has| |#1| (-562)))) (-2720 (((-112) $) 146 (|has| |#1| (-562)))) (-3593 (((-650 (-618 $)) $) 39)) (-3596 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-4283 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-2222 (($ $) 163 (|has| |#1| (-562)))) (-1790 (((-424 $) $) 164 (|has| |#1| (-562)))) (-4339 (((-112) $ $) 154 (|has| |#1| (-562)))) (-2450 (($) 104 (-2740 (|has| |#1| (-1121)) (|has| |#1| (-25))) CONST)) (-4378 (((-3 (-618 $) "failed") $) 64) (((-3 (-1186) "failed") $) 216) (((-3 (-570) "failed") $) 210 (|has| |#1| (-1047 (-570)))) (((-3 |#1| "failed") $) 207) (((-3 (-413 (-959 |#1|)) "failed") $) 169 (|has| |#1| (-562))) (((-3 (-959 |#1|) "failed") $) 123 (|has| |#1| (-1058))) (((-3 (-413 (-570)) "failed") $) 98 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 (((-618 $) $) 65) (((-1186) $) 217) (((-570) $) 209 (|has| |#1| (-1047 (-570)))) ((|#1| $) 208) (((-413 (-959 |#1|)) $) 170 (|has| |#1| (-562))) (((-959 |#1|) $) 124 (|has| |#1| (-1058))) (((-413 (-570)) $) 99 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2372 (($ $ $) 158 (|has| |#1| (-562)))) (-4177 (((-695 (-570)) (-695 $)) 137 (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 136 (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 135 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 134 (|has| |#1| (-1058)))) (-3413 (((-3 $ "failed") $) 106 (|has| |#1| (-1121)))) (-2381 (($ $ $) 157 (|has| |#1| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 152 (|has| |#1| (-562)))) (-1552 (((-112) $) 165 (|has| |#1| (-562)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 212 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 211 (|has| |#1| (-893 (-384))))) (-2268 (($ $) 46) (($ (-650 $)) 45)) (-4190 (((-650 (-115)) $) 38)) (-3680 (((-115) (-115)) 37)) (-2081 (((-112) $) 105 (|has| |#1| (-1121)))) (-3431 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-3195 (($ $) 186 (|has| |#1| (-1058)))) (-4398 (((-1134 |#1| (-618 $)) $) 187 (|has| |#1| (-1058)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 161 (|has| |#1| (-562)))) (-1646 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) 31)) (-3399 (((-3 (-618 $) "failed") $) 41)) (-1845 (($ (-650 $)) 150 (|has| |#1| (-562))) (($ $ $) 149 (|has| |#1| (-562)))) (-1903 (((-1168) $) 10)) (-3669 (((-650 (-618 $)) $) 40)) (-1360 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-1596 (((-3 (-650 $) "failed") $) 192 (|has| |#1| (-1121)))) (-3366 (((-3 (-2 (|:| |val| $) (|:| -1907 (-570))) "failed") $) 183 (|has| |#1| (-1058)))) (-3751 (((-3 (-650 $) "failed") $) 190 (|has| |#1| (-25)))) (-2828 (((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 $))) "failed") $) 189 (|has| |#1| (-25)))) (-3496 (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $) 191 (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-115)) 185 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-1186)) 184 (|has| |#1| (-1058)))) (-1566 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1825 (($ $) 108 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-1434 (((-777) $) 42)) (-3479 (((-1129) $) 11)) (-1834 (((-112) $) 205)) (-1842 ((|#1| $) 204)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 151 (|has| |#1| (-562)))) (-1874 (($ (-650 $)) 148 (|has| |#1| (-562))) (($ $ $) 147 (|has| |#1| (-562)))) (-3247 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-3738 (((-424 $) $) 162 (|has| |#1| (-562)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 159 (|has| |#1| (-562)))) (-2407 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 153 (|has| |#1| (-562)))) (-1322 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1730 (($ $ (-618 $) $) 62) (($ $ (-650 (-618 $)) (-650 $)) 61) (($ $ (-650 (-298 $))) 60) (($ $ (-298 $)) 59) (($ $ $ $) 58) (($ $ (-650 $) (-650 $)) 57) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 28) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 27) (($ $ (-1186) (-1 $ (-650 $))) 26) (($ $ (-1186) (-1 $ $)) 25) (($ $ (-650 (-115)) (-650 (-1 $ $))) 24) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 23) (($ $ (-115) (-1 $ (-650 $))) 22) (($ $ (-115) (-1 $ $)) 21) (($ $ (-1186)) 197 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186))) 196 (|has| |#1| (-620 (-542)))) (($ $) 195 (|has| |#1| (-620 (-542)))) (($ $ (-115) $ (-1186)) 194 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-115)) (-650 $) (-1186)) 193 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 182 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 181 (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ (-650 $))) 180 (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ $)) 179 (|has| |#1| (-1058)))) (-2272 (((-777) $) 155 (|has| |#1| (-562)))) (-1876 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 156 (|has| |#1| (-562)))) (-3760 (($ $) 44) (($ $ $) 43)) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 128 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 127 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 126 (|has| |#1| (-1058))) (($ $ (-1186)) 125 (|has| |#1| (-1058)))) (-1418 (($ $) 176 (|has| |#1| (-562)))) (-4412 (((-1134 |#1| (-618 $)) $) 177 (|has| |#1| (-562)))) (-2886 (($ $) 19 (|has| $ (-1058)))) (-1416 (((-899 (-570)) $) 214 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 213 (|has| |#1| (-620 (-899 (-384))))) (($ (-424 $)) 178 (|has| |#1| (-562))) (((-542) $) 100 (|has| |#1| (-620 (-542))))) (-3684 (($ $ $) 111 (|has| |#1| (-479)))) (-3688 (($ $ $) 112 (|has| |#1| (-479)))) (-3735 (((-868) $) 12) (($ (-618 $)) 63) (($ (-1186)) 215) (($ |#1|) 206) (($ (-1134 |#1| (-618 $))) 188 (|has| |#1| (-1058))) (($ (-413 |#1|)) 174 (|has| |#1| (-562))) (($ (-959 (-413 |#1|))) 173 (|has| |#1| (-562))) (($ (-413 (-959 (-413 |#1|)))) 172 (|has| |#1| (-562))) (($ (-413 (-959 |#1|))) 168 (|has| |#1| (-562))) (($ $) 141 (|has| |#1| (-562))) (($ (-959 |#1|)) 122 (|has| |#1| (-1058))) (($ (-413 (-570))) 97 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 96 (-2740 (|has| |#1| (-1058)) (|has| |#1| (-1047 (-570)))))) (-1918 (((-3 $ "failed") $) 138 (|has| |#1| (-146)))) (-2744 (((-777)) 133 (|has| |#1| (-1058)) CONST)) (-4192 (($ $) 48) (($ (-650 $)) 47)) (-2004 (((-112) (-115)) 36)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 145 (|has| |#1| (-562)))) (-4191 (($ (-1186) $) 202) (($ (-1186) $ $) 201) (($ (-1186) $ $ $) 200) (($ (-1186) $ $ $ $) 199) (($ (-1186) (-650 $)) 198)) (-1812 (($) 115 (|has| |#1| (-25)) CONST)) (-1823 (($) 103 (|has| |#1| (-1121)) CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 132 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 131 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 130 (|has| |#1| (-1058))) (($ $ (-1186)) 129 (|has| |#1| (-1058)))) (-2872 (((-112) $ $) 6)) (-2975 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 175 (|has| |#1| (-562))) (($ $ $) 109 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-2965 (($ $ $) 121 (|has| |#1| (-21))) (($ $) 120 (|has| |#1| (-21)))) (-2954 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-570)) 110 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562)))) (($ $ (-777)) 107 (|has| |#1| (-1121))) (($ $ (-928)) 102 (|has| |#1| (-1121)))) (* (($ (-413 (-570)) $) 167 (|has| |#1| (-562))) (($ $ (-413 (-570))) 166 (|has| |#1| (-562))) (($ |#1| $) 140 (|has| |#1| (-174))) (($ $ |#1|) 139 (|has| |#1| (-174))) (($ (-570) $) 119 (|has| |#1| (-21))) (($ (-777) $) 117 (|has| |#1| (-25))) (($ (-928) $) 114 (|has| |#1| (-25))) (($ $ $) 101 (|has| |#1| (-1121)))))
+((-2968 (*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-3152 (*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))) (-2853 (*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))) (-2222 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3311 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))))
+(-13 (-231 |t#1|) (-1107 |t#1|) (-10 -8 (-6 -4449) (-15 -2968 ((-777) $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-373)) (-15 -3152 ($ $)) (-15 -2853 ($))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -2222 (|t#1| $)) (-15 -3311 (|t#1| $))) |%noBranch|)))
+(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-231 |#1|) . T) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-373) |has| |#1| (-373)) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1107 |#1|) . T) ((-1109) . T) ((-1227) . T))
+((-1413 (((-592 |#2|) |#2| (-1186)) 36)) (-2386 (((-592 |#2|) |#2| (-1186)) 21)) (-3454 ((|#2| |#2| (-1186)) 26)))
+(((-432 |#1| |#2|) (-10 -7 (-15 -2386 ((-592 |#2|) |#2| (-1186))) (-15 -1413 ((-592 |#2|) |#2| (-1186))) (-15 -3454 (|#2| |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-29 |#1|))) (T -432))
+((-3454 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-432 *4 *2)) (-4 *2 (-13 (-1212) (-29 *4))))) (-1413 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3)) (-4 *3 (-13 (-1212) (-29 *5))))) (-2386 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3)) (-4 *3 (-13 (-1212) (-29 *5))))))
+(-10 -7 (-15 -2386 ((-592 |#2|) |#2| (-1186))) (-15 -1413 ((-592 |#2|) |#2| (-1186))) (-15 -3454 (|#2| |#2| (-1186))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-3797 (($ |#2| |#1|) 37)) (-1453 (($ |#2| |#1|) 35)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-335 |#2|)) 25)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 10 T CONST)) (-1824 (($) 16 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 36)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 39) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-433 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4436)) (IF (|has| |#1| (-6 -4436)) (-6 -4436) |%noBranch|) |%noBranch|) (-15 -3735 ($ |#1|)) (-15 -3735 ($ (-335 |#2|))) (-15 -3797 ($ |#2| |#1|)) (-15 -1453 ($ |#2| |#1|)))) (-13 (-174) (-38 (-413 (-570)))) (-13 (-856) (-21))) (T -433))
+((-3735 (*1 *1 *2) (-12 (-5 *1 (-433 *2 *3)) (-4 *2 (-13 (-174) (-38 (-413 (-570))))) (-4 *3 (-13 (-856) (-21))))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-335 *4)) (-4 *4 (-13 (-856) (-21))) (-5 *1 (-433 *3 *4)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))))) (-3797 (*1 *1 *2 *3) (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))) (-4 *2 (-13 (-856) (-21))))) (-1453 (*1 *1 *2 *3) (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))) (-4 *2 (-13 (-856) (-21))))))
+(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4436)) (IF (|has| |#1| (-6 -4436)) (-6 -4436) |%noBranch|) |%noBranch|) (-15 -3735 ($ |#1|)) (-15 -3735 ($ (-335 |#2|))) (-15 -3797 ($ |#2| |#1|)) (-15 -1453 ($ |#2| |#1|))))
+((-3722 (((-3 |#2| (-650 |#2|)) |#2| (-1186)) 115)))
+(((-434 |#1| |#2|) (-10 -7 (-15 -3722 ((-3 |#2| (-650 |#2|)) |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -434))
+((-3722 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 *3 (-650 *3))) (-5 *1 (-434 *5 *3)) (-4 *3 (-13 (-1212) (-966) (-29 *5))))))
+(-10 -7 (-15 -3722 ((-3 |#2| (-650 |#2|)) |#2| (-1186))))
+((-1713 (((-650 (-1186)) $) 81)) (-3702 (((-413 (-1182 $)) $ (-618 $)) 314)) (-4284 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) 278)) (-4379 (((-3 (-618 $) "failed") $) NIL) (((-3 (-1186) "failed") $) 84) (((-3 (-570) "failed") $) NIL) (((-3 |#2| "failed") $) 274) (((-3 (-413 (-959 |#2|)) "failed") $) 364) (((-3 (-959 |#2|) "failed") $) 276) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-618 $) $) NIL) (((-1186) $) 28) (((-570) $) NIL) ((|#2| $) 272) (((-413 (-959 |#2|)) $) 346) (((-959 |#2|) $) 273) (((-413 (-570)) $) NIL)) (-3680 (((-115) (-115)) 47)) (-1607 (($ $) 99)) (-2814 (((-3 (-618 $) "failed") $) 269)) (-3669 (((-650 (-618 $)) $) 270)) (-3176 (((-3 (-650 $) "failed") $) 288)) (-2499 (((-3 (-2 (|:| |val| $) (|:| -3011 (-570))) "failed") $) 295)) (-1955 (((-3 (-650 $) "failed") $) 286)) (-4298 (((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 $))) "failed") $) 305)) (-4415 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $) 292) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-115)) 256) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-1186)) 258)) (-1835 (((-112) $) 17)) (-1846 ((|#2| $) 19)) (-1731 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) 277) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 109) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL) (($ $ (-1186)) 62) (($ $ (-650 (-1186))) 281) (($ $) 282) (($ $ (-115) $ (-1186)) 65) (($ $ (-650 (-115)) (-650 $) (-1186)) 72) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 120) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 283) (($ $ (-1186) (-777) (-1 $ (-650 $))) 105) (($ $ (-1186) (-777) (-1 $ $)) 104)) (-1877 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) 119)) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 279)) (-4428 (($ $) 325)) (-1417 (((-899 (-570)) $) 298) (((-899 (-384)) $) 302) (($ (-424 $)) 360) (((-542) $) NIL)) (-3735 (((-868) $) 280) (($ (-618 $)) 93) (($ (-1186)) 24) (($ |#2|) NIL) (($ (-1134 |#2| (-618 $))) NIL) (($ (-413 |#2|)) 330) (($ (-959 (-413 |#2|))) 369) (($ (-413 (-959 (-413 |#2|)))) 342) (($ (-413 (-959 |#2|))) 336) (($ $) NIL) (($ (-959 |#2|)) 218) (($ (-413 (-570))) 374) (($ (-570)) NIL)) (-1609 (((-777)) 88)) (-2818 (((-112) (-115)) 42)) (-4194 (($ (-1186) $) 31) (($ (-1186) $ $) 32) (($ (-1186) $ $ $) 33) (($ (-1186) $ $ $ $) 34) (($ (-1186) (-650 $)) 39)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ |#2| $) 307) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
+(((-435 |#1| |#2|) (-10 -8 (-15 * (|#1| (-928) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3735 (|#1| (-570))) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -3735 (|#1| (-959 |#2|))) (-15 -4379 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3080 ((-959 |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3735 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-959 |#2|)))) (-15 -4379 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3080 ((-413 (-959 |#2|)) |#1|)) (-15 -3702 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3735 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3735 (|#1| (-959 (-413 |#2|)))) (-15 -3735 (|#1| (-413 |#2|))) (-15 -4428 (|#1| |#1|)) (-15 -1417 (|#1| (-424 |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -2499 ((-3 (-2 (|:| |val| |#1|) (|:| -3011 (-570))) "failed") |#1|)) (-15 -4415 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3011 (-570))) "failed") |#1| (-1186))) (-15 -4415 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3011 (-570))) "failed") |#1| (-115))) (-15 -1607 (|#1| |#1|)) (-15 -3735 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -4298 ((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -1955 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -4415 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3011 (-570))) "failed") |#1|)) (-15 -3176 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1731 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1731 (|#1| |#1|)) (-15 -1731 (|#1| |#1| (-650 (-1186)))) (-15 -1731 (|#1| |#1| (-1186))) (-15 -4194 (|#1| (-1186) (-650 |#1|))) (-15 -4194 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4194 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4194 (|#1| (-1186) |#1| |#1|)) (-15 -4194 (|#1| (-1186) |#1|)) (-15 -1713 ((-650 (-1186)) |#1|)) (-15 -1846 (|#2| |#1|)) (-15 -1835 ((-112) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4379 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -3669 ((-650 (-618 |#1|)) |#1|)) (-15 -2814 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4284 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4284 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4284 (|#1| |#1| (-298 |#1|))) (-15 -1877 (|#1| (-115) (-650 |#1|))) (-15 -1877 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1731 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3735 (|#1| (-618 |#1|))) (-15 -4379 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|)) (-15 -3735 ((-868) |#1|))) (-436 |#2|) (-1109)) (T -435))
+((-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *4 (-1109)) (-5 *1 (-435 *3 *4)) (-4 *3 (-436 *4)))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5)))) (-1609 (*1 *2) (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-435 *3 *4)) (-4 *3 (-436 *4)))))
+(-10 -8 (-15 * (|#1| (-928) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3735 (|#1| (-570))) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -3735 (|#1| (-959 |#2|))) (-15 -4379 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3080 ((-959 |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3735 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3735 (|#1| (-413 (-959 |#2|)))) (-15 -4379 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3080 ((-413 (-959 |#2|)) |#1|)) (-15 -3702 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3735 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3735 (|#1| (-959 (-413 |#2|)))) (-15 -3735 (|#1| (-413 |#2|))) (-15 -4428 (|#1| |#1|)) (-15 -1417 (|#1| (-424 |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -2499 ((-3 (-2 (|:| |val| |#1|) (|:| -3011 (-570))) "failed") |#1|)) (-15 -4415 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3011 (-570))) "failed") |#1| (-1186))) (-15 -4415 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3011 (-570))) "failed") |#1| (-115))) (-15 -1607 (|#1| |#1|)) (-15 -3735 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -4298 ((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -1955 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -4415 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3011 (-570))) "failed") |#1|)) (-15 -3176 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1731 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1731 (|#1| |#1|)) (-15 -1731 (|#1| |#1| (-650 (-1186)))) (-15 -1731 (|#1| |#1| (-1186))) (-15 -4194 (|#1| (-1186) (-650 |#1|))) (-15 -4194 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4194 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4194 (|#1| (-1186) |#1| |#1|)) (-15 -4194 (|#1| (-1186) |#1|)) (-15 -1713 ((-650 (-1186)) |#1|)) (-15 -1846 (|#2| |#1|)) (-15 -1835 ((-112) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4379 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1731 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1731 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -3669 ((-650 (-618 |#1|)) |#1|)) (-15 -2814 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4284 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4284 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4284 (|#1| |#1| (-298 |#1|))) (-15 -1877 (|#1| (-115) (-650 |#1|))) (-15 -1877 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1| |#1|)) (-15 -1877 (|#1| (-115) |#1|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1731 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1731 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3735 (|#1| (-618 |#1|))) (-15 -4379 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3080 ((-618 |#1|) |#1|)) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 116 (|has| |#1| (-25)))) (-1713 (((-650 (-1186)) $) 203)) (-3702 (((-413 (-1182 $)) $ (-618 $)) 171 (|has| |#1| (-562)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 143 (|has| |#1| (-562)))) (-1345 (($ $) 144 (|has| |#1| (-562)))) (-1372 (((-112) $) 146 (|has| |#1| (-562)))) (-3593 (((-650 (-618 $)) $) 39)) (-4119 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-4284 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-3252 (($ $) 163 (|has| |#1| (-562)))) (-1378 (((-424 $) $) 164 (|has| |#1| (-562)))) (-2707 (((-112) $ $) 154 (|has| |#1| (-562)))) (-3761 (($) 104 (-2740 (|has| |#1| (-1121)) (|has| |#1| (-25))) CONST)) (-4379 (((-3 (-618 $) "failed") $) 64) (((-3 (-1186) "failed") $) 216) (((-3 (-570) "failed") $) 210 (|has| |#1| (-1047 (-570)))) (((-3 |#1| "failed") $) 207) (((-3 (-413 (-959 |#1|)) "failed") $) 169 (|has| |#1| (-562))) (((-3 (-959 |#1|) "failed") $) 123 (|has| |#1| (-1058))) (((-3 (-413 (-570)) "failed") $) 98 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 (((-618 $) $) 65) (((-1186) $) 217) (((-570) $) 209 (|has| |#1| (-1047 (-570)))) ((|#1| $) 208) (((-413 (-959 |#1|)) $) 170 (|has| |#1| (-562))) (((-959 |#1|) $) 124 (|has| |#1| (-1058))) (((-413 (-570)) $) 99 (-2740 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2372 (($ $ $) 158 (|has| |#1| (-562)))) (-1836 (((-695 (-570)) (-695 $)) 137 (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 136 (-1765 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 135 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 134 (|has| |#1| (-1058)))) (-2937 (((-3 $ "failed") $) 106 (|has| |#1| (-1121)))) (-2382 (($ $ $) 157 (|has| |#1| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 152 (|has| |#1| (-562)))) (-4037 (((-112) $) 165 (|has| |#1| (-562)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 212 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 211 (|has| |#1| (-893 (-384))))) (-2506 (($ $) 46) (($ (-650 $)) 45)) (-1941 (((-650 (-115)) $) 38)) (-3680 (((-115) (-115)) 37)) (-4340 (((-112) $) 105 (|has| |#1| (-1121)))) (-1958 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-1607 (($ $) 186 (|has| |#1| (-1058)))) (-4399 (((-1134 |#1| (-618 $)) $) 187 (|has| |#1| (-1058)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 161 (|has| |#1| (-562)))) (-2462 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) 31)) (-2814 (((-3 (-618 $) "failed") $) 41)) (-1847 (($ (-650 $)) 150 (|has| |#1| (-562))) (($ $ $) 149 (|has| |#1| (-562)))) (-4268 (((-1168) $) 10)) (-3669 (((-650 (-618 $)) $) 40)) (-1361 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-3176 (((-3 (-650 $) "failed") $) 192 (|has| |#1| (-1121)))) (-2499 (((-3 (-2 (|:| |val| $) (|:| -3011 (-570))) "failed") $) 183 (|has| |#1| (-1058)))) (-1955 (((-3 (-650 $) "failed") $) 190 (|has| |#1| (-25)))) (-4298 (((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 $))) "failed") $) 189 (|has| |#1| (-25)))) (-4415 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $) 191 (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-115)) 185 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-1186)) 184 (|has| |#1| (-1058)))) (-4198 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1826 (($ $) 108 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-1435 (((-777) $) 42)) (-3479 (((-1129) $) 11)) (-1835 (((-112) $) 205)) (-1846 ((|#1| $) 204)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 151 (|has| |#1| (-562)))) (-1874 (($ (-650 $)) 148 (|has| |#1| (-562))) (($ $ $) 147 (|has| |#1| (-562)))) (-3953 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-3739 (((-424 $) $) 162 (|has| |#1| (-562)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 159 (|has| |#1| (-562)))) (-2406 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 153 (|has| |#1| (-562)))) (-1739 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1731 (($ $ (-618 $) $) 62) (($ $ (-650 (-618 $)) (-650 $)) 61) (($ $ (-650 (-298 $))) 60) (($ $ (-298 $)) 59) (($ $ $ $) 58) (($ $ (-650 $) (-650 $)) 57) (($ $ (-650 (-1186)) (-650 (-1 $ $))) 28) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) 27) (($ $ (-1186) (-1 $ (-650 $))) 26) (($ $ (-1186) (-1 $ $)) 25) (($ $ (-650 (-115)) (-650 (-1 $ $))) 24) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) 23) (($ $ (-115) (-1 $ (-650 $))) 22) (($ $ (-115) (-1 $ $)) 21) (($ $ (-1186)) 197 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186))) 196 (|has| |#1| (-620 (-542)))) (($ $) 195 (|has| |#1| (-620 (-542)))) (($ $ (-115) $ (-1186)) 194 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-115)) (-650 $) (-1186)) 193 (|has| |#1| (-620 (-542)))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 182 (|has| |#1| (-1058))) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 181 (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ (-650 $))) 180 (|has| |#1| (-1058))) (($ $ (-1186) (-777) (-1 $ $)) 179 (|has| |#1| (-1058)))) (-2547 (((-777) $) 155 (|has| |#1| (-562)))) (-1877 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 156 (|has| |#1| (-562)))) (-2008 (($ $) 44) (($ $ $) 43)) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 128 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 127 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 126 (|has| |#1| (-1058))) (($ $ (-1186)) 125 (|has| |#1| (-1058)))) (-4428 (($ $) 176 (|has| |#1| (-562)))) (-4413 (((-1134 |#1| (-618 $)) $) 177 (|has| |#1| (-562)))) (-3597 (($ $) 19 (|has| $ (-1058)))) (-1417 (((-899 (-570)) $) 214 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 213 (|has| |#1| (-620 (-899 (-384))))) (($ (-424 $)) 178 (|has| |#1| (-562))) (((-542) $) 100 (|has| |#1| (-620 (-542))))) (-2488 (($ $ $) 111 (|has| |#1| (-479)))) (-2522 (($ $ $) 112 (|has| |#1| (-479)))) (-3735 (((-868) $) 12) (($ (-618 $)) 63) (($ (-1186)) 215) (($ |#1|) 206) (($ (-1134 |#1| (-618 $))) 188 (|has| |#1| (-1058))) (($ (-413 |#1|)) 174 (|has| |#1| (-562))) (($ (-959 (-413 |#1|))) 173 (|has| |#1| (-562))) (($ (-413 (-959 (-413 |#1|)))) 172 (|has| |#1| (-562))) (($ (-413 (-959 |#1|))) 168 (|has| |#1| (-562))) (($ $) 141 (|has| |#1| (-562))) (($ (-959 |#1|)) 122 (|has| |#1| (-1058))) (($ (-413 (-570))) 97 (-2740 (|has| |#1| (-562)) (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 96 (-2740 (|has| |#1| (-1058)) (|has| |#1| (-1047 (-570)))))) (-3127 (((-3 $ "failed") $) 138 (|has| |#1| (-146)))) (-1609 (((-777)) 133 (|has| |#1| (-1058)) CONST)) (-4192 (($ $) 48) (($ (-650 $)) 47)) (-2818 (((-112) (-115)) 36)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 145 (|has| |#1| (-562)))) (-4194 (($ (-1186) $) 202) (($ (-1186) $ $) 201) (($ (-1186) $ $ $) 200) (($ (-1186) $ $ $ $) 199) (($ (-1186) (-650 $)) 198)) (-1814 (($) 115 (|has| |#1| (-25)) CONST)) (-1824 (($) 103 (|has| |#1| (-1121)) CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 132 (|has| |#1| (-1058))) (($ $ (-1186) (-777)) 131 (|has| |#1| (-1058))) (($ $ (-650 (-1186))) 130 (|has| |#1| (-1058))) (($ $ (-1186)) 129 (|has| |#1| (-1058)))) (-2872 (((-112) $ $) 6)) (-2975 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 175 (|has| |#1| (-562))) (($ $ $) 109 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-2965 (($ $ $) 121 (|has| |#1| (-21))) (($ $) 120 (|has| |#1| (-21)))) (-2953 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-570)) 110 (-2740 (|has| |#1| (-479)) (|has| |#1| (-562)))) (($ $ (-777)) 107 (|has| |#1| (-1121))) (($ $ (-928)) 102 (|has| |#1| (-1121)))) (* (($ (-413 (-570)) $) 167 (|has| |#1| (-562))) (($ $ (-413 (-570))) 166 (|has| |#1| (-562))) (($ |#1| $) 140 (|has| |#1| (-174))) (($ $ |#1|) 139 (|has| |#1| (-174))) (($ (-570) $) 119 (|has| |#1| (-21))) (($ (-777) $) 117 (|has| |#1| (-25))) (($ (-928) $) 114 (|has| |#1| (-25))) (($ $ $) 101 (|has| |#1| (-1121)))))
(((-436 |#1|) (-141) (-1109)) (T -436))
-((-1834 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-1842 (*1 *2 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)))) (-1716 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-1186))))) (-4191 (*1 *1 *2 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4191 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4191 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4191 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4191 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-650 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109)))) (-1730 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1730 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1730 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-620 (-542))))) (-1730 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1186)) (-4 *1 (-436 *4)) (-4 *4 (-1109)) (-4 *4 (-620 (-542))))) (-1730 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 *1)) (-5 *4 (-1186)) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-620 (-542))))) (-1596 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-3496 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -1907 (-570)))) (-4 *1 (-436 *3)))) (-3751 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-2828 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| -1441 (-570)) (|:| |var| (-618 *1)))) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-1058)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-4398 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1))) (-4 *1 (-436 *3)))) (-3195 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-1058)))) (-3496 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -1907 (-570)))) (-4 *1 (-436 *4)))) (-3496 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -1907 (-570)))) (-4 *1 (-436 *4)))) (-3366 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |val| *1) (|:| -1907 (-570)))) (-4 *1 (-436 *3)))) (-1730 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-777))) (-5 *4 (-650 (-1 *1 *1))) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1730 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-777))) (-5 *4 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1730 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *4 (-1 *1 (-650 *1))) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1730 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *4 (-1 *1 *1)) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-424 *1)) (-4 *1 (-436 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-4412 (*1 *2 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1))) (-4 *1 (-436 *3)))) (-1418 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-562)))) (-2975 (*1 *1 *2 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 *3))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-413 *3)))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3703 (*1 *2 *1 *3) (-12 (-5 *3 (-618 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109)) (-4 *4 (-562)) (-5 *2 (-413 (-1182 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-1121)))))
-(-13 (-306) (-1047 (-1186)) (-891 |t#1|) (-406 |t#1|) (-417 |t#1|) (-10 -8 (-15 -1834 ((-112) $)) (-15 -1842 (|t#1| $)) (-15 -1716 ((-650 (-1186)) $)) (-15 -4191 ($ (-1186) $)) (-15 -4191 ($ (-1186) $ $)) (-15 -4191 ($ (-1186) $ $ $)) (-15 -4191 ($ (-1186) $ $ $ $)) (-15 -4191 ($ (-1186) (-650 $))) (IF (|has| |t#1| (-620 (-542))) (PROGN (-6 (-620 (-542))) (-15 -1730 ($ $ (-1186))) (-15 -1730 ($ $ (-650 (-1186)))) (-15 -1730 ($ $)) (-15 -1730 ($ $ (-115) $ (-1186))) (-15 -1730 ($ $ (-650 (-115)) (-650 $) (-1186)))) |%noBranch|) (IF (|has| |t#1| (-1121)) (PROGN (-6 (-732)) (-15 ** ($ $ (-777))) (-15 -1596 ((-3 (-650 $) "failed") $)) (-15 -3496 ((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-479)) (-6 (-479)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -3751 ((-3 (-650 $) "failed") $)) (-15 -2828 ((-3 (-2 (|:| -1441 (-570)) (|:| |var| (-618 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1058)) (PROGN (-6 (-1058)) (-6 (-1047 (-959 |t#1|))) (-6 (-907 (-1186))) (-6 (-382 |t#1|)) (-15 -3735 ($ (-1134 |t#1| (-618 $)))) (-15 -4398 ((-1134 |t#1| (-618 $)) $)) (-15 -3195 ($ $)) (-15 -3496 ((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-115))) (-15 -3496 ((-3 (-2 (|:| |var| (-618 $)) (|:| -1907 (-570))) "failed") $ (-1186))) (-15 -3366 ((-3 (-2 (|:| |val| $) (|:| -1907 (-570))) "failed") $)) (-15 -1730 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $)))) (-15 -1730 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $))))) (-15 -1730 ($ $ (-1186) (-777) (-1 $ (-650 $)))) (-15 -1730 ($ $ (-1186) (-777) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-6 (-368)) (-6 (-1047 (-413 (-959 |t#1|)))) (-15 -1416 ($ (-424 $))) (-15 -4412 ((-1134 |t#1| (-618 $)) $)) (-15 -1418 ($ $)) (-15 -2975 ($ (-1134 |t#1| (-618 $)) (-1134 |t#1| (-618 $)))) (-15 -3735 ($ (-413 |t#1|))) (-15 -3735 ($ (-959 (-413 |t#1|)))) (-15 -3735 ($ (-413 (-959 (-413 |t#1|))))) (-15 -3703 ((-413 (-1182 $)) $ (-618 $))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-1047 (-413 (-570)))) |%noBranch|)) |%noBranch|)))
-(((-21) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-23) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-413 (-570))) |has| |#1| (-562)) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-562)) ((-111 |#1| |#1|) |has| |#1| (-174)) ((-111 $ $) |has| |#1| (-562)) ((-132) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-562))) ((-622 #1=(-413 (-959 |#1|))) |has| |#1| (-562)) ((-622 (-570)) -2740 (|has| |#1| (-1058)) (|has| |#1| (-1047 (-570))) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-622 #2=(-618 $)) . T) ((-622 #3=(-959 |#1|)) |has| |#1| (-1058)) ((-622 #4=(-1186)) . T) ((-622 |#1|) . T) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) |has| |#1| (-562)) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-245) |has| |#1| (-562)) ((-294) |has| |#1| (-562)) ((-311) |has| |#1| (-562)) ((-313 $) . T) ((-306) . T) ((-368) |has| |#1| (-562)) ((-382 |#1|) |has| |#1| (-1058)) ((-406 |#1|) . T) ((-417 |#1|) . T) ((-458) |has| |#1| (-562)) ((-479) |has| |#1| (-479)) ((-520 (-618 $) $) . T) ((-520 $ $) . T) ((-562) |has| |#1| (-562)) ((-652 #0#) |has| |#1| (-562)) ((-652 (-570)) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-652 |#1|) |has| |#1| (-174)) ((-652 $) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-654 #0#) |has| |#1| (-562)) ((-654 |#1|) |has| |#1| (-174)) ((-654 $) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-646 #0#) |has| |#1| (-562)) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-645 (-570)) -12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) ((-645 |#1|) |has| |#1| (-1058)) ((-723 #0#) |has| |#1| (-562)) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) -2740 (|has| |#1| (-1121)) (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-479)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-907 (-1186)) |has| |#1| (-1058)) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-927) |has| |#1| (-562)) ((-1047 (-413 (-570))) -2740 (|has| |#1| (-1047 (-413 (-570)))) (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) ((-1047 #1#) |has| |#1| (-562)) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #2#) . T) ((-1047 #3#) |has| |#1| (-1058)) ((-1047 #4#) . T) ((-1047 |#1|) . T) ((-1060 #0#) |has| |#1| (-562)) ((-1060 |#1|) |has| |#1| (-174)) ((-1060 $) |has| |#1| (-562)) ((-1065 #0#) |has| |#1| (-562)) ((-1065 |#1|) |has| |#1| (-174)) ((-1065 $) |has| |#1| (-562)) ((-1058) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1067) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1121) -2740 (|has| |#1| (-1121)) (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-479)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1109) . T) ((-1226) . T) ((-1230) |has| |#1| (-562)))
-((-1794 ((|#2| |#2| |#2|) 31)) (-3680 (((-115) (-115)) 43)) (-4163 ((|#2| |#2|) 63)) (-3985 ((|#2| |#2|) 66)) (-3571 ((|#2| |#2|) 30)) (-1801 ((|#2| |#2| |#2|) 33)) (-3614 ((|#2| |#2| |#2|) 35)) (-2565 ((|#2| |#2| |#2|) 32)) (-2051 ((|#2| |#2| |#2|) 34)) (-2004 (((-112) (-115)) 41)) (-2228 ((|#2| |#2|) 37)) (-3022 ((|#2| |#2|) 36)) (-1423 ((|#2| |#2|) 25)) (-4118 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-3829 ((|#2| |#2| |#2|) 29)))
-(((-437 |#1| |#2|) (-10 -7 (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1423 (|#2| |#2|)) (-15 -4118 (|#2| |#2|)) (-15 -4118 (|#2| |#2| |#2|)) (-15 -3829 (|#2| |#2| |#2|)) (-15 -3571 (|#2| |#2|)) (-15 -1794 (|#2| |#2| |#2|)) (-15 -2565 (|#2| |#2| |#2|)) (-15 -1801 (|#2| |#2| |#2|)) (-15 -2051 (|#2| |#2| |#2|)) (-15 -3614 (|#2| |#2| |#2|)) (-15 -3022 (|#2| |#2|)) (-15 -2228 (|#2| |#2|)) (-15 -3985 (|#2| |#2|)) (-15 -4163 (|#2| |#2|))) (-562) (-436 |#1|)) (T -437))
-((-4163 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3985 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2228 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3022 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3614 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2051 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1801 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2565 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1794 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3571 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3829 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4118 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4118 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1423 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-437 *3 *4)) (-4 *4 (-436 *3)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-437 *4 *5)) (-4 *5 (-436 *4)))))
-(-10 -7 (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1423 (|#2| |#2|)) (-15 -4118 (|#2| |#2|)) (-15 -4118 (|#2| |#2| |#2|)) (-15 -3829 (|#2| |#2| |#2|)) (-15 -3571 (|#2| |#2|)) (-15 -1794 (|#2| |#2| |#2|)) (-15 -2565 (|#2| |#2| |#2|)) (-15 -1801 (|#2| |#2| |#2|)) (-15 -2051 (|#2| |#2| |#2|)) (-15 -3614 (|#2| |#2| |#2|)) (-15 -3022 (|#2| |#2|)) (-15 -2228 (|#2| |#2|)) (-15 -3985 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)))
-((-2493 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|) 106 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|)) 68)))
-(((-438 |#1| |#2|) (-10 -7 (-15 -2493 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -2493 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-562) (-148)) (-436 |#1|)) (T -438))
-((-2493 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1182 *3)) (|:| |pol2| (-1182 *3)) (|:| |prim| (-1182 *3)))) (-5 *1 (-438 *4 *3)) (-4 *3 (-27)) (-4 *3 (-436 *4)))) (-2493 (*1 *2 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-650 (-1182 *5))) (|:| |prim| (-1182 *5)))) (-5 *1 (-438 *4 *5)))))
-(-10 -7 (-15 -2493 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -2493 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|))
-((-2214 (((-1281)) 18)) (-2378 (((-1182 (-413 (-570))) |#2| (-618 |#2|)) 40) (((-413 (-570)) |#2|) 24)))
-(((-439 |#1| |#2|) (-10 -7 (-15 -2378 ((-413 (-570)) |#2|)) (-15 -2378 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -2214 ((-1281)))) (-13 (-562) (-1047 (-570))) (-436 |#1|)) (T -439))
-((-2214 (*1 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1281)) (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))) (-2378 (*1 *2 *3 *4) (-12 (-5 *4 (-618 *3)) (-4 *3 (-436 *5)) (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-439 *5 *3)))) (-2378 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-439 *4 *3)) (-4 *3 (-436 *4)))))
-(-10 -7 (-15 -2378 ((-413 (-570)) |#2|)) (-15 -2378 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -2214 ((-1281))))
-((-2205 (((-112) $) 32)) (-2508 (((-112) $) 34)) (-2964 (((-112) $) 35)) (-2873 (((-112) $) 38)) (-2792 (((-112) $) 33)) (-4274 (((-112) $) 37)) (-3735 (((-868) $) 20) (($ (-1168)) 31) (($ (-1186)) 26) (((-1186) $) 24) (((-1113) $) 23)) (-4273 (((-112) $) 36)) (-2872 (((-112) $ $) 17)))
-(((-440) (-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1168))) (-15 -3735 ($ (-1186))) (-15 -3735 ((-1186) $)) (-15 -3735 ((-1113) $)) (-15 -2205 ((-112) $)) (-15 -2792 ((-112) $)) (-15 -2964 ((-112) $)) (-15 -4274 ((-112) $)) (-15 -2873 ((-112) $)) (-15 -4273 ((-112) $)) (-15 -2508 ((-112) $)) (-15 -2872 ((-112) $ $))))) (T -440))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-440)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-440)))) (-2205 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2792 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2964 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4274 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2873 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4273 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2508 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2872 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1168))) (-15 -3735 ($ (-1186))) (-15 -3735 ((-1186) $)) (-15 -3735 ((-1113) $)) (-15 -2205 ((-112) $)) (-15 -2792 ((-112) $)) (-15 -2964 ((-112) $)) (-15 -4274 ((-112) $)) (-15 -2873 ((-112) $)) (-15 -4273 ((-112) $)) (-15 -2508 ((-112) $)) (-15 -2872 ((-112) $ $))))
-((-2393 (((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|) 72)) (-1582 (((-424 |#3|) |#3|) 34)) (-3887 (((-3 (-424 (-1182 (-48))) "failed") |#3|) 46 (|has| |#2| (-1047 (-48))))) (-1517 (((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2484 (-112))) |#3|) 37)))
-(((-441 |#1| |#2| |#3|) (-10 -7 (-15 -1582 ((-424 |#3|) |#3|)) (-15 -2393 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -1517 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2484 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -3887 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1252 |#2|)) (T -441))
-((-3887 (*1 *2 *3) (|partial| -12 (-4 *5 (-1047 (-48))) (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-424 (-1182 (-48)))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1252 *5)))) (-1517 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2484 (-112)))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1252 *5)))) (-2393 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-424 (-1182 (-413 (-570))))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1252 *5)))) (-1582 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-424 *3)) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1252 *5)))))
-(-10 -7 (-15 -1582 ((-424 |#3|) |#3|)) (-15 -2393 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -1517 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2484 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -3887 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-3560 (((-1168) $ (-1168)) NIL)) (-2603 (($ $ (-1168)) NIL)) (-2346 (((-1168) $) NIL)) (-3624 (((-394) (-394) (-394)) 17) (((-394) (-394)) 15)) (-1727 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3503 (((-394) $) NIL)) (-1903 (((-1168) $) NIL)) (-2564 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1498 (((-1281) (-1168)) 9)) (-3638 (((-1281) (-1168)) 10)) (-1710 (((-1281)) 11)) (-3735 (((-868) $) NIL)) (-1866 (($ $) 39)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-442) (-13 (-369 (-394) (-1168)) (-10 -7 (-15 -3624 ((-394) (-394) (-394))) (-15 -3624 ((-394) (-394))) (-15 -1498 ((-1281) (-1168))) (-15 -3638 ((-1281) (-1168))) (-15 -1710 ((-1281)))))) (T -442))
-((-3624 (*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-3624 (*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-1498 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-442)))) (-3638 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-442)))) (-1710 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-442)))))
-(-13 (-369 (-394) (-1168)) (-10 -7 (-15 -3624 ((-394) (-394) (-394))) (-15 -3624 ((-394) (-394))) (-15 -1498 ((-1281) (-1168))) (-15 -3638 ((-1281) (-1168))) (-15 -1710 ((-1281)))))
-((-2416 (((-112) $ $) NIL)) (-4162 (((-3 (|:| |fst| (-440)) (|:| -2559 "void")) $) 11)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3073 (($) 35)) (-3249 (($) 41)) (-2202 (($) 37)) (-3512 (($) 39)) (-2605 (($) 36)) (-3126 (($) 38)) (-2724 (($) 40)) (-1489 (((-112) $) 8)) (-3774 (((-650 (-959 (-570))) $) 19)) (-3748 (($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-112)) 29) (($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-959 (-570))) (-112)) 30)) (-3735 (((-868) $) 24) (($ (-440)) 32)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-443) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-440))) (-15 -4162 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -3774 ((-650 (-959 (-570))) $)) (-15 -1489 ((-112) $)) (-15 -3748 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-112))) (-15 -3748 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-959 (-570))) (-112))) (-15 -3073 ($)) (-15 -2605 ($)) (-15 -2202 ($)) (-15 -3249 ($)) (-15 -3126 ($)) (-15 -3512 ($)) (-15 -2724 ($))))) (T -443))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-440)) (-5 *1 (-443)))) (-4162 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *1 (-443)))) (-3774 (*1 *2 *1) (-12 (-5 *2 (-650 (-959 (-570)))) (-5 *1 (-443)))) (-1489 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))) (-3748 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *3 (-650 (-1186))) (-5 *4 (-112)) (-5 *1 (-443)))) (-3748 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-112)) (-5 *1 (-443)))) (-3073 (*1 *1) (-5 *1 (-443))) (-2605 (*1 *1) (-5 *1 (-443))) (-2202 (*1 *1) (-5 *1 (-443))) (-3249 (*1 *1) (-5 *1 (-443))) (-3126 (*1 *1) (-5 *1 (-443))) (-3512 (*1 *1) (-5 *1 (-443))) (-2724 (*1 *1) (-5 *1 (-443))))
-(-13 (-1109) (-10 -8 (-15 -3735 ($ (-440))) (-15 -4162 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -3774 ((-650 (-959 (-570))) $)) (-15 -1489 ((-112) $)) (-15 -3748 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-112))) (-15 -3748 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-959 (-570))) (-112))) (-15 -3073 ($)) (-15 -2605 ($)) (-15 -2202 ($)) (-15 -3249 ($)) (-15 -3126 ($)) (-15 -3512 ($)) (-15 -2724 ($))))
-((-2416 (((-112) $ $) NIL)) (-3503 (((-1186) $) 8)) (-1903 (((-1168) $) 17)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 14)))
-(((-444 |#1|) (-13 (-1109) (-10 -8 (-15 -3503 ((-1186) $)))) (-1186)) (T -444))
-((-3503 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-444 *3)) (-14 *3 *2))))
-(-13 (-1109) (-10 -8 (-15 -3503 ((-1186) $))))
-((-2416 (((-112) $ $) NIL)) (-4322 (((-1127) $) 7)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 13)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
-(((-445) (-13 (-1109) (-10 -8 (-15 -4322 ((-1127) $))))) (T -445))
-((-4322 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-445)))))
-(-13 (-1109) (-10 -8 (-15 -4322 ((-1127) $))))
-((-3292 (((-1281) $) 7)) (-3735 (((-868) $) 8) (($ (-1276 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 11)))
+((-1835 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-1846 (*1 *2 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)))) (-1713 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-1186))))) (-4194 (*1 *1 *2 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4194 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4194 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4194 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4194 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-650 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109)))) (-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1731 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-620 (-542))))) (-1731 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1186)) (-4 *1 (-436 *4)) (-4 *4 (-1109)) (-4 *4 (-620 (-542))))) (-1731 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 *1)) (-5 *4 (-1186)) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-620 (-542))))) (-3176 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-4415 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3011 (-570)))) (-4 *1 (-436 *3)))) (-1955 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-4298 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| -1442 (-570)) (|:| |var| (-618 *1)))) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-1058)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-4399 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1))) (-4 *1 (-436 *3)))) (-1607 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-1058)))) (-4415 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3011 (-570)))) (-4 *1 (-436 *4)))) (-4415 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3011 (-570)))) (-4 *1 (-436 *4)))) (-2499 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |val| *1) (|:| -3011 (-570)))) (-4 *1 (-436 *3)))) (-1731 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-777))) (-5 *4 (-650 (-1 *1 *1))) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1731 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-777))) (-5 *4 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1731 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *4 (-1 *1 (-650 *1))) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1731 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *4 (-1 *1 *1)) (-4 *1 (-436 *5)) (-4 *5 (-1109)) (-4 *5 (-1058)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-424 *1)) (-4 *1 (-436 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-4413 (*1 *2 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1))) (-4 *1 (-436 *3)))) (-4428 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-562)))) (-2975 (*1 *1 *2 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 *3))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-413 *3)))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3702 (*1 *2 *1 *3) (-12 (-5 *3 (-618 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109)) (-4 *4 (-562)) (-5 *2 (-413 (-1182 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-1121)))))
+(-13 (-306) (-1047 (-1186)) (-891 |t#1|) (-406 |t#1|) (-417 |t#1|) (-10 -8 (-15 -1835 ((-112) $)) (-15 -1846 (|t#1| $)) (-15 -1713 ((-650 (-1186)) $)) (-15 -4194 ($ (-1186) $)) (-15 -4194 ($ (-1186) $ $)) (-15 -4194 ($ (-1186) $ $ $)) (-15 -4194 ($ (-1186) $ $ $ $)) (-15 -4194 ($ (-1186) (-650 $))) (IF (|has| |t#1| (-620 (-542))) (PROGN (-6 (-620 (-542))) (-15 -1731 ($ $ (-1186))) (-15 -1731 ($ $ (-650 (-1186)))) (-15 -1731 ($ $)) (-15 -1731 ($ $ (-115) $ (-1186))) (-15 -1731 ($ $ (-650 (-115)) (-650 $) (-1186)))) |%noBranch|) (IF (|has| |t#1| (-1121)) (PROGN (-6 (-732)) (-15 ** ($ $ (-777))) (-15 -3176 ((-3 (-650 $) "failed") $)) (-15 -4415 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-479)) (-6 (-479)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1955 ((-3 (-650 $) "failed") $)) (-15 -4298 ((-3 (-2 (|:| -1442 (-570)) (|:| |var| (-618 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1058)) (PROGN (-6 (-1058)) (-6 (-1047 (-959 |t#1|))) (-6 (-907 (-1186))) (-6 (-382 |t#1|)) (-15 -3735 ($ (-1134 |t#1| (-618 $)))) (-15 -4399 ((-1134 |t#1| (-618 $)) $)) (-15 -1607 ($ $)) (-15 -4415 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-115))) (-15 -4415 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3011 (-570))) "failed") $ (-1186))) (-15 -2499 ((-3 (-2 (|:| |val| $) (|:| -3011 (-570))) "failed") $)) (-15 -1731 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $)))) (-15 -1731 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $))))) (-15 -1731 ($ $ (-1186) (-777) (-1 $ (-650 $)))) (-15 -1731 ($ $ (-1186) (-777) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-6 (-368)) (-6 (-1047 (-413 (-959 |t#1|)))) (-15 -1417 ($ (-424 $))) (-15 -4413 ((-1134 |t#1| (-618 $)) $)) (-15 -4428 ($ $)) (-15 -2975 ($ (-1134 |t#1| (-618 $)) (-1134 |t#1| (-618 $)))) (-15 -3735 ($ (-413 |t#1|))) (-15 -3735 ($ (-959 (-413 |t#1|)))) (-15 -3735 ($ (-413 (-959 (-413 |t#1|))))) (-15 -3702 ((-413 (-1182 $)) $ (-618 $))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-1047 (-413 (-570)))) |%noBranch|)) |%noBranch|)))
+(((-21) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-23) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-413 (-570))) |has| |#1| (-562)) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-562)) ((-111 |#1| |#1|) |has| |#1| (-174)) ((-111 $ $) |has| |#1| (-562)) ((-132) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-562))) ((-622 #1=(-413 (-959 |#1|))) |has| |#1| (-562)) ((-622 (-570)) -2740 (|has| |#1| (-1058)) (|has| |#1| (-1047 (-570))) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-622 #2=(-618 $)) . T) ((-622 #3=(-959 |#1|)) |has| |#1| (-1058)) ((-622 #4=(-1186)) . T) ((-622 |#1|) . T) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) |has| |#1| (-562)) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-245) |has| |#1| (-562)) ((-294) |has| |#1| (-562)) ((-311) |has| |#1| (-562)) ((-313 $) . T) ((-306) . T) ((-368) |has| |#1| (-562)) ((-382 |#1|) |has| |#1| (-1058)) ((-406 |#1|) . T) ((-417 |#1|) . T) ((-458) |has| |#1| (-562)) ((-479) |has| |#1| (-479)) ((-520 (-618 $) $) . T) ((-520 $ $) . T) ((-562) |has| |#1| (-562)) ((-652 #0#) |has| |#1| (-562)) ((-652 (-570)) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-652 |#1|) |has| |#1| (-174)) ((-652 $) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-654 #0#) |has| |#1| (-562)) ((-654 |#1|) |has| |#1| (-174)) ((-654 $) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-646 #0#) |has| |#1| (-562)) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-645 (-570)) -12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) ((-645 |#1|) |has| |#1| (-1058)) ((-723 #0#) |has| |#1| (-562)) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) -2740 (|has| |#1| (-1121)) (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-479)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-907 (-1186)) |has| |#1| (-1058)) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-927) |has| |#1| (-562)) ((-1047 (-413 (-570))) -2740 (|has| |#1| (-1047 (-413 (-570)))) (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570))))) ((-1047 #1#) |has| |#1| (-562)) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #2#) . T) ((-1047 #3#) |has| |#1| (-1058)) ((-1047 #4#) . T) ((-1047 |#1|) . T) ((-1060 #0#) |has| |#1| (-562)) ((-1060 |#1|) |has| |#1| (-174)) ((-1060 $) |has| |#1| (-562)) ((-1065 #0#) |has| |#1| (-562)) ((-1065 |#1|) |has| |#1| (-174)) ((-1065 $) |has| |#1| (-562)) ((-1058) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1067) -2740 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1121) -2740 (|has| |#1| (-1121)) (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-479)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1109) . T) ((-1227) . T) ((-1231) |has| |#1| (-562)))
+((-1414 ((|#2| |#2| |#2|) 31)) (-3680 (((-115) (-115)) 43)) (-1670 ((|#2| |#2|) 63)) (-3570 ((|#2| |#2|) 66)) (-3915 ((|#2| |#2|) 30)) (-1487 ((|#2| |#2| |#2|) 33)) (-4317 ((|#2| |#2| |#2|) 35)) (-3612 ((|#2| |#2| |#2|) 32)) (-2135 ((|#2| |#2| |#2|) 34)) (-2818 (((-112) (-115)) 41)) (-3322 ((|#2| |#2|) 37)) (-3543 ((|#2| |#2|) 36)) (-1367 ((|#2| |#2|) 25)) (-2430 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-1387 ((|#2| |#2| |#2|) 29)))
+(((-437 |#1| |#2|) (-10 -7 (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1367 (|#2| |#2|)) (-15 -2430 (|#2| |#2|)) (-15 -2430 (|#2| |#2| |#2|)) (-15 -1387 (|#2| |#2| |#2|)) (-15 -3915 (|#2| |#2|)) (-15 -1414 (|#2| |#2| |#2|)) (-15 -3612 (|#2| |#2| |#2|)) (-15 -1487 (|#2| |#2| |#2|)) (-15 -2135 (|#2| |#2| |#2|)) (-15 -4317 (|#2| |#2| |#2|)) (-15 -3543 (|#2| |#2|)) (-15 -3322 (|#2| |#2|)) (-15 -3570 (|#2| |#2|)) (-15 -1670 (|#2| |#2|))) (-562) (-436 |#1|)) (T -437))
+((-1670 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3570 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3322 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3543 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4317 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2135 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1487 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3612 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1414 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3915 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1387 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2430 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2430 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1367 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-437 *3 *4)) (-4 *4 (-436 *3)))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-437 *4 *5)) (-4 *5 (-436 *4)))))
+(-10 -7 (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -1367 (|#2| |#2|)) (-15 -2430 (|#2| |#2|)) (-15 -2430 (|#2| |#2| |#2|)) (-15 -1387 (|#2| |#2| |#2|)) (-15 -3915 (|#2| |#2|)) (-15 -1414 (|#2| |#2| |#2|)) (-15 -3612 (|#2| |#2| |#2|)) (-15 -1487 (|#2| |#2| |#2|)) (-15 -2135 (|#2| |#2| |#2|)) (-15 -4317 (|#2| |#2| |#2|)) (-15 -3543 (|#2| |#2|)) (-15 -3322 (|#2| |#2|)) (-15 -3570 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)))
+((-4181 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|) 106 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|)) 68)))
+(((-438 |#1| |#2|) (-10 -7 (-15 -4181 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -4181 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-562) (-148)) (-436 |#1|)) (T -438))
+((-4181 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1182 *3)) (|:| |pol2| (-1182 *3)) (|:| |prim| (-1182 *3)))) (-5 *1 (-438 *4 *3)) (-4 *3 (-27)) (-4 *3 (-436 *4)))) (-4181 (*1 *2 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-650 (-1182 *5))) (|:| |prim| (-1182 *5)))) (-5 *1 (-438 *4 *5)))))
+(-10 -7 (-15 -4181 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -4181 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|))
+((-3153 (((-1282)) 18)) (-2410 (((-1182 (-413 (-570))) |#2| (-618 |#2|)) 40) (((-413 (-570)) |#2|) 24)))
+(((-439 |#1| |#2|) (-10 -7 (-15 -2410 ((-413 (-570)) |#2|)) (-15 -2410 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -3153 ((-1282)))) (-13 (-562) (-1047 (-570))) (-436 |#1|)) (T -439))
+((-3153 (*1 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1282)) (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))) (-2410 (*1 *2 *3 *4) (-12 (-5 *4 (-618 *3)) (-4 *3 (-436 *5)) (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-439 *5 *3)))) (-2410 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-439 *4 *3)) (-4 *3 (-436 *4)))))
+(-10 -7 (-15 -2410 ((-413 (-570)) |#2|)) (-15 -2410 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -3153 ((-1282))))
+((-3060 (((-112) $) 32)) (-4335 (((-112) $) 34)) (-4269 (((-112) $) 35)) (-3453 (((-112) $) 38)) (-3900 (((-112) $) 33)) (-3353 (((-112) $) 37)) (-3735 (((-868) $) 20) (($ (-1168)) 31) (($ (-1186)) 26) (((-1186) $) 24) (((-1113) $) 23)) (-3342 (((-112) $) 36)) (-2872 (((-112) $ $) 17)))
+(((-440) (-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1168))) (-15 -3735 ($ (-1186))) (-15 -3735 ((-1186) $)) (-15 -3735 ((-1113) $)) (-15 -3060 ((-112) $)) (-15 -3900 ((-112) $)) (-15 -4269 ((-112) $)) (-15 -3353 ((-112) $)) (-15 -3453 ((-112) $)) (-15 -3342 ((-112) $)) (-15 -4335 ((-112) $)) (-15 -2872 ((-112) $ $))))) (T -440))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-440)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-440)))) (-3060 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3900 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4269 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3453 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3342 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4335 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2872 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1168))) (-15 -3735 ($ (-1186))) (-15 -3735 ((-1186) $)) (-15 -3735 ((-1113) $)) (-15 -3060 ((-112) $)) (-15 -3900 ((-112) $)) (-15 -4269 ((-112) $)) (-15 -3353 ((-112) $)) (-15 -3453 ((-112) $)) (-15 -3342 ((-112) $)) (-15 -4335 ((-112) $)) (-15 -2872 ((-112) $ $))))
+((-1379 (((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|) 72)) (-3040 (((-424 |#3|) |#3|) 34)) (-3842 (((-3 (-424 (-1182 (-48))) "failed") |#3|) 46 (|has| |#2| (-1047 (-48))))) (-3644 (((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2485 (-112))) |#3|) 37)))
+(((-441 |#1| |#2| |#3|) (-10 -7 (-15 -3040 ((-424 |#3|) |#3|)) (-15 -1379 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -3644 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2485 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -3842 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1253 |#2|)) (T -441))
+((-3842 (*1 *2 *3) (|partial| -12 (-4 *5 (-1047 (-48))) (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-424 (-1182 (-48)))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))) (-3644 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2485 (-112)))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))) (-1379 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-424 (-1182 (-413 (-570))))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))) (-3040 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-424 *3)) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))))
+(-10 -7 (-15 -3040 ((-424 |#3|) |#3|)) (-15 -1379 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -3644 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2485 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -3842 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-3784 (((-1168) $ (-1168)) NIL)) (-2695 (($ $ (-1168)) NIL)) (-2140 (((-1168) $) NIL)) (-3107 (((-394) (-394) (-394)) 17) (((-394) (-394)) 15)) (-1726 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3504 (((-394) $) NIL)) (-4268 (((-1168) $) NIL)) (-3600 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1650 (((-1282) (-1168)) 9)) (-3274 (((-1282) (-1168)) 10)) (-1947 (((-1282)) 11)) (-3735 (((-868) $) NIL)) (-3924 (($ $) 39)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-442) (-13 (-369 (-394) (-1168)) (-10 -7 (-15 -3107 ((-394) (-394) (-394))) (-15 -3107 ((-394) (-394))) (-15 -1650 ((-1282) (-1168))) (-15 -3274 ((-1282) (-1168))) (-15 -1947 ((-1282)))))) (T -442))
+((-3107 (*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-3107 (*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-1650 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))) (-3274 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))) (-1947 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-442)))))
+(-13 (-369 (-394) (-1168)) (-10 -7 (-15 -3107 ((-394) (-394) (-394))) (-15 -3107 ((-394) (-394))) (-15 -1650 ((-1282) (-1168))) (-15 -3274 ((-1282) (-1168))) (-15 -1947 ((-1282)))))
+((-2417 (((-112) $ $) NIL)) (-1660 (((-3 (|:| |fst| (-440)) (|:| -2559 "void")) $) 11)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2768 (($) 35)) (-3963 (($) 41)) (-3028 (($) 37)) (-1458 (($) 39)) (-2716 (($) 36)) (-2126 (($) 38)) (-1407 (($) 40)) (-1569 (((-112) $) 8)) (-2118 (((-650 (-959 (-570))) $) 19)) (-3749 (($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-112)) 29) (($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-959 (-570))) (-112)) 30)) (-3735 (((-868) $) 24) (($ (-440)) 32)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-443) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-440))) (-15 -1660 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -2118 ((-650 (-959 (-570))) $)) (-15 -1569 ((-112) $)) (-15 -3749 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-112))) (-15 -3749 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-959 (-570))) (-112))) (-15 -2768 ($)) (-15 -2716 ($)) (-15 -3028 ($)) (-15 -3963 ($)) (-15 -2126 ($)) (-15 -1458 ($)) (-15 -1407 ($))))) (T -443))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-440)) (-5 *1 (-443)))) (-1660 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *1 (-443)))) (-2118 (*1 *2 *1) (-12 (-5 *2 (-650 (-959 (-570)))) (-5 *1 (-443)))) (-1569 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))) (-3749 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *3 (-650 (-1186))) (-5 *4 (-112)) (-5 *1 (-443)))) (-3749 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-112)) (-5 *1 (-443)))) (-2768 (*1 *1) (-5 *1 (-443))) (-2716 (*1 *1) (-5 *1 (-443))) (-3028 (*1 *1) (-5 *1 (-443))) (-3963 (*1 *1) (-5 *1 (-443))) (-2126 (*1 *1) (-5 *1 (-443))) (-1458 (*1 *1) (-5 *1 (-443))) (-1407 (*1 *1) (-5 *1 (-443))))
+(-13 (-1109) (-10 -8 (-15 -3735 ($ (-440))) (-15 -1660 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -2118 ((-650 (-959 (-570))) $)) (-15 -1569 ((-112) $)) (-15 -3749 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-1186)) (-112))) (-15 -3749 ($ (-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-650 (-959 (-570))) (-112))) (-15 -2768 ($)) (-15 -2716 ($)) (-15 -3028 ($)) (-15 -3963 ($)) (-15 -2126 ($)) (-15 -1458 ($)) (-15 -1407 ($))))
+((-2417 (((-112) $ $) NIL)) (-3504 (((-1186) $) 8)) (-4268 (((-1168) $) 17)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 14)))
+(((-444 |#1|) (-13 (-1109) (-10 -8 (-15 -3504 ((-1186) $)))) (-1186)) (T -444))
+((-3504 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-444 *3)) (-14 *3 *2))))
+(-13 (-1109) (-10 -8 (-15 -3504 ((-1186) $))))
+((-2417 (((-112) $ $) NIL)) (-4323 (((-1127) $) 7)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 13)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
+(((-445) (-13 (-1109) (-10 -8 (-15 -4323 ((-1127) $))))) (T -445))
+((-4323 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-445)))))
+(-13 (-1109) (-10 -8 (-15 -4323 ((-1127) $))))
+((-3291 (((-1282) $) 7)) (-3735 (((-868) $) 8) (($ (-1277 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 11)))
(((-446) (-141)) (T -446))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-705))) (-4 *1 (-446)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-446)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-446)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-446)))))
-(-13 (-401) (-10 -8 (-15 -3735 ($ (-1276 (-705)))) (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))))))
-(((-619 (-868)) . T) ((-401) . T) ((-1226) . T))
-((-4378 (((-3 $ "failed") (-1276 (-320 (-384)))) 21) (((-3 $ "failed") (-1276 (-320 (-570)))) 19) (((-3 $ "failed") (-1276 (-959 (-384)))) 17) (((-3 $ "failed") (-1276 (-959 (-570)))) 15) (((-3 $ "failed") (-1276 (-413 (-959 (-384))))) 13) (((-3 $ "failed") (-1276 (-413 (-959 (-570))))) 11)) (-3080 (($ (-1276 (-320 (-384)))) 22) (($ (-1276 (-320 (-570)))) 20) (($ (-1276 (-959 (-384)))) 18) (($ (-1276 (-959 (-570)))) 16) (($ (-1276 (-413 (-959 (-384))))) 14) (($ (-1276 (-413 (-959 (-570))))) 12)) (-3292 (((-1281) $) 7)) (-3735 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 23)))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-705))) (-4 *1 (-446)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-446)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-446)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-446)))))
+(-13 (-401) (-10 -8 (-15 -3735 ($ (-1277 (-705)))) (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))))))
+(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
+((-4379 (((-3 $ "failed") (-1277 (-320 (-384)))) 21) (((-3 $ "failed") (-1277 (-320 (-570)))) 19) (((-3 $ "failed") (-1277 (-959 (-384)))) 17) (((-3 $ "failed") (-1277 (-959 (-570)))) 15) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 13) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 11)) (-3080 (($ (-1277 (-320 (-384)))) 22) (($ (-1277 (-320 (-570)))) 20) (($ (-1277 (-959 (-384)))) 18) (($ (-1277 (-959 (-570)))) 16) (($ (-1277 (-413 (-959 (-384))))) 14) (($ (-1277 (-413 (-959 (-570))))) 12)) (-3291 (((-1282) $) 7)) (-3735 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) 23)))
(((-447) (-141)) (T -447))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-447)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-447)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1276 (-320 (-384)))) (-4 *1 (-447)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1276 (-320 (-384)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1276 (-320 (-570)))) (-4 *1 (-447)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1276 (-320 (-570)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1276 (-959 (-384)))) (-4 *1 (-447)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1276 (-959 (-384)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1276 (-959 (-570)))) (-4 *1 (-447)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1276 (-959 (-570)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1276 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1276 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1276 (-413 (-959 (-570))))) (-4 *1 (-447)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-1276 (-413 (-959 (-570))))) (-4 *1 (-447)))))
-(-13 (-401) (-10 -8 (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3080 ($ (-1276 (-320 (-384))))) (-15 -4378 ((-3 $ "failed") (-1276 (-320 (-384))))) (-15 -3080 ($ (-1276 (-320 (-570))))) (-15 -4378 ((-3 $ "failed") (-1276 (-320 (-570))))) (-15 -3080 ($ (-1276 (-959 (-384))))) (-15 -4378 ((-3 $ "failed") (-1276 (-959 (-384))))) (-15 -3080 ($ (-1276 (-959 (-570))))) (-15 -4378 ((-3 $ "failed") (-1276 (-959 (-570))))) (-15 -3080 ($ (-1276 (-413 (-959 (-384)))))) (-15 -4378 ((-3 $ "failed") (-1276 (-413 (-959 (-384)))))) (-15 -3080 ($ (-1276 (-413 (-959 (-570)))))) (-15 -4378 ((-3 $ "failed") (-1276 (-413 (-959 (-570))))))))
-(((-619 (-868)) . T) ((-401) . T) ((-1226) . T))
-((-4419 (((-112)) 18)) (-2703 (((-112) (-112)) 19)) (-4420 (((-112)) 14)) (-2082 (((-112) (-112)) 15)) (-2379 (((-112)) 16)) (-3941 (((-112) (-112)) 17)) (-2928 (((-928) (-928)) 22) (((-928)) 21)) (-3672 (((-777) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570))))) 52)) (-4077 (((-928) (-928)) 24) (((-928)) 23)) (-2832 (((-2 (|:| -1512 (-570)) (|:| -1679 (-650 |#1|))) |#1|) 97)) (-3351 (((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570))))))) 178)) (-3023 (((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112)) 211)) (-3696 (((-424 |#1|) |#1| (-777) (-777)) 226) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 223) (((-424 |#1|) |#1| (-650 (-777))) 225) (((-424 |#1|) |#1| (-777)) 224) (((-424 |#1|) |#1|) 222)) (-3251 (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112)) 228) (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777)) 229) (((-3 |#1| "failed") (-928) |#1| (-650 (-777))) 231) (((-3 |#1| "failed") (-928) |#1| (-777)) 230) (((-3 |#1| "failed") (-928) |#1|) 232)) (-3738 (((-424 |#1|) |#1| (-777) (-777)) 221) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 217) (((-424 |#1|) |#1| (-650 (-777))) 219) (((-424 |#1|) |#1| (-777)) 218) (((-424 |#1|) |#1|) 216)) (-2194 (((-112) |#1|) 44)) (-2524 (((-743 (-777)) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570))))) 102)) (-3726 (((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)) 215)))
-(((-448 |#1|) (-10 -7 (-15 -3351 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))))) (-15 -2524 ((-743 (-777)) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))))) (-15 -4077 ((-928))) (-15 -4077 ((-928) (-928))) (-15 -2928 ((-928))) (-15 -2928 ((-928) (-928))) (-15 -3672 ((-777) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))))) (-15 -2832 ((-2 (|:| -1512 (-570)) (|:| -1679 (-650 |#1|))) |#1|)) (-15 -4419 ((-112))) (-15 -2703 ((-112) (-112))) (-15 -4420 ((-112))) (-15 -2082 ((-112) (-112))) (-15 -2194 ((-112) |#1|)) (-15 -2379 ((-112))) (-15 -3941 ((-112) (-112))) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -3738 ((-424 |#1|) |#1| (-777))) (-15 -3738 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3738 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3738 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3696 ((-424 |#1|) |#1|)) (-15 -3696 ((-424 |#1|) |#1| (-777))) (-15 -3696 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3696 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3696 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1|)) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -3023 ((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112))) (-15 -3726 ((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)))) (-1252 (-570))) (T -448))
-((-3726 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3023 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3251 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *6 (-112)) (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570))))) (-3251 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570))))) (-3251 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570))))) (-3251 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-777)) (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570))))) (-3251 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-928)) (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570))))) (-3696 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3696 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3696 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3696 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3696 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3738 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3738 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3738 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3941 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2379 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2194 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2082 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-4420 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2703 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-4419 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2832 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -1512 (-570)) (|:| -1679 (-650 *3)))) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-3672 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3738 *4) (|:| -1601 (-570))))) (-4 *4 (-1252 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))) (-2928 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2928 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-4077 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-4077 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3738 *4) (|:| -1601 (-570))))) (-4 *4 (-1252 (-570))) (-5 *2 (-743 (-777))) (-5 *1 (-448 *4)))) (-3351 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| *4) (|:| -3465 (-570))))))) (-4 *4 (-1252 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
-(-10 -7 (-15 -3351 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))))) (-15 -2524 ((-743 (-777)) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))))) (-15 -4077 ((-928))) (-15 -4077 ((-928) (-928))) (-15 -2928 ((-928))) (-15 -2928 ((-928) (-928))) (-15 -3672 ((-777) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))))) (-15 -2832 ((-2 (|:| -1512 (-570)) (|:| -1679 (-650 |#1|))) |#1|)) (-15 -4419 ((-112))) (-15 -2703 ((-112) (-112))) (-15 -4420 ((-112))) (-15 -2082 ((-112) (-112))) (-15 -2194 ((-112) |#1|)) (-15 -2379 ((-112))) (-15 -3941 ((-112) (-112))) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -3738 ((-424 |#1|) |#1| (-777))) (-15 -3738 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3738 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3738 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3696 ((-424 |#1|) |#1|)) (-15 -3696 ((-424 |#1|) |#1| (-777))) (-15 -3696 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3696 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3696 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1|)) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -3251 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -3023 ((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112))) (-15 -3726 ((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112) (-1111 (-777)) (-777))))
-((-2835 (((-570) |#2|) 52) (((-570) |#2| (-777)) 51)) (-2480 (((-570) |#2|) 67)) (-1887 ((|#3| |#2|) 26)) (-2610 ((|#3| |#2| (-928)) 15)) (-3788 ((|#3| |#2|) 16)) (-3273 ((|#3| |#2|) 9)) (-1434 ((|#3| |#2|) 10)) (-3807 ((|#3| |#2| (-928)) 74) ((|#3| |#2|) 34)) (-2413 (((-570) |#2|) 69)))
-(((-449 |#1| |#2| |#3|) (-10 -7 (-15 -2413 ((-570) |#2|)) (-15 -3807 (|#3| |#2|)) (-15 -3807 (|#3| |#2| (-928))) (-15 -2480 ((-570) |#2|)) (-15 -2835 ((-570) |#2| (-777))) (-15 -2835 ((-570) |#2|)) (-15 -2610 (|#3| |#2| (-928))) (-15 -1887 (|#3| |#2|)) (-15 -3273 (|#3| |#2|)) (-15 -1434 (|#3| |#2|)) (-15 -3788 (|#3| |#2|))) (-1058) (-1252 |#1|) (-13 (-410) (-1047 |#1|) (-368) (-1211) (-288))) (T -449))
-((-3788 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))) (-1434 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))) (-3273 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))) (-1887 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))) (-2610 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1211) (-288))) (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1252 *5)))) (-2835 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5)) (-4 *3 (-1252 *4)) (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))))) (-2835 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *5 *3 *6)) (-4 *3 (-1252 *5)) (-4 *6 (-13 (-410) (-1047 *5) (-368) (-1211) (-288))))) (-2480 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5)) (-4 *3 (-1252 *4)) (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))))) (-3807 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1211) (-288))) (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1252 *5)))) (-3807 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))) (-2413 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5)) (-4 *3 (-1252 *4)) (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))))))
-(-10 -7 (-15 -2413 ((-570) |#2|)) (-15 -3807 (|#3| |#2|)) (-15 -3807 (|#3| |#2| (-928))) (-15 -2480 ((-570) |#2|)) (-15 -2835 ((-570) |#2| (-777))) (-15 -2835 ((-570) |#2|)) (-15 -2610 (|#3| |#2| (-928))) (-15 -1887 (|#3| |#2|)) (-15 -3273 (|#3| |#2|)) (-15 -1434 (|#3| |#2|)) (-15 -3788 (|#3| |#2|)))
-((-4299 ((|#2| (-1276 |#1|)) 45)) (-4297 ((|#2| |#2| |#1|) 61)) (-2509 ((|#2| |#2| |#1|) 53)) (-2258 ((|#2| |#2|) 49)) (-3411 (((-112) |#2|) 36)) (-4054 (((-650 |#2|) (-928) (-424 |#2|)) 24)) (-3251 ((|#2| (-928) (-424 |#2|)) 28)) (-2524 (((-743 (-777)) (-424 |#2|)) 33)))
-(((-450 |#1| |#2|) (-10 -7 (-15 -3411 ((-112) |#2|)) (-15 -4299 (|#2| (-1276 |#1|))) (-15 -2258 (|#2| |#2|)) (-15 -2509 (|#2| |#2| |#1|)) (-15 -4297 (|#2| |#2| |#1|)) (-15 -2524 ((-743 (-777)) (-424 |#2|))) (-15 -3251 (|#2| (-928) (-424 |#2|))) (-15 -4054 ((-650 |#2|) (-928) (-424 |#2|)))) (-1058) (-1252 |#1|)) (T -450))
-((-4054 (*1 *2 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-424 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-1058)) (-5 *2 (-650 *6)) (-5 *1 (-450 *5 *6)))) (-3251 (*1 *2 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1252 *5)) (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-424 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-1058)) (-5 *2 (-743 (-777))) (-5 *1 (-450 *4 *5)))) (-4297 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1252 *3)))) (-2509 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1252 *3)))) (-2258 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1252 *3)))) (-4299 (*1 *2 *3) (-12 (-5 *3 (-1276 *4)) (-4 *4 (-1058)) (-4 *2 (-1252 *4)) (-5 *1 (-450 *4 *2)))) (-3411 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-450 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3411 ((-112) |#2|)) (-15 -4299 (|#2| (-1276 |#1|))) (-15 -2258 (|#2| |#2|)) (-15 -2509 (|#2| |#2| |#1|)) (-15 -4297 (|#2| |#2| |#1|)) (-15 -2524 ((-743 (-777)) (-424 |#2|))) (-15 -3251 (|#2| (-928) (-424 |#2|))) (-15 -4054 ((-650 |#2|) (-928) (-424 |#2|))))
-((-1870 (((-777)) 59)) (-3876 (((-777)) 29 (|has| |#1| (-410))) (((-777) (-777)) 28 (|has| |#1| (-410)))) (-2249 (((-570) |#1|) 25 (|has| |#1| (-410)))) (-3666 (((-570) |#1|) 27 (|has| |#1| (-410)))) (-4308 (((-777)) 58) (((-777) (-777)) 57)) (-1420 ((|#1| (-777) (-570)) 37)) (-3111 (((-1281)) 61)))
-(((-451 |#1|) (-10 -7 (-15 -1420 (|#1| (-777) (-570))) (-15 -4308 ((-777) (-777))) (-15 -4308 ((-777))) (-15 -1870 ((-777))) (-15 -3111 ((-1281))) (IF (|has| |#1| (-410)) (PROGN (-15 -3666 ((-570) |#1|)) (-15 -2249 ((-570) |#1|)) (-15 -3876 ((-777) (-777))) (-15 -3876 ((-777)))) |%noBranch|)) (-1058)) (T -451))
-((-3876 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3876 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-2249 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3666 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3111 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-1870 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-4308 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-4308 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-1420 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
-(-10 -7 (-15 -1420 (|#1| (-777) (-570))) (-15 -4308 ((-777) (-777))) (-15 -4308 ((-777))) (-15 -1870 ((-777))) (-15 -3111 ((-1281))) (IF (|has| |#1| (-410)) (PROGN (-15 -3666 ((-570) |#1|)) (-15 -2249 ((-570) |#1|)) (-15 -3876 ((-777) (-777))) (-15 -3876 ((-777)))) |%noBranch|))
-((-2149 (((-650 (-570)) (-570)) 76)) (-1552 (((-112) (-171 (-570))) 82)) (-3738 (((-424 (-171 (-570))) (-171 (-570))) 75)))
-(((-452) (-10 -7 (-15 -3738 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -2149 ((-650 (-570)) (-570))) (-15 -1552 ((-112) (-171 (-570)))))) (T -452))
-((-1552 (*1 *2 *3) (-12 (-5 *3 (-171 (-570))) (-5 *2 (-112)) (-5 *1 (-452)))) (-2149 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))) (-3738 (*1 *2 *3) (-12 (-5 *2 (-424 (-171 (-570)))) (-5 *1 (-452)) (-5 *3 (-171 (-570))))))
-(-10 -7 (-15 -3738 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -2149 ((-650 (-570)) (-570))) (-15 -1552 ((-112) (-171 (-570)))))
-((-3193 ((|#4| |#4| (-650 |#4|)) 82)) (-3912 (((-650 |#4|) (-650 |#4|) (-1168) (-1168)) 22) (((-650 |#4|) (-650 |#4|) (-1168)) 21) (((-650 |#4|) (-650 |#4|)) 13)))
-(((-453 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3193 (|#4| |#4| (-650 |#4|))) (-15 -3912 ((-650 |#4|) (-650 |#4|))) (-15 -3912 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -3912 ((-650 |#4|) (-650 |#4|) (-1168) (-1168)))) (-311) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -453))
-((-3912 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *7)))) (-3912 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *7)))) (-3912 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-453 *3 *4 *5 *6)))) (-3193 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *2)))))
-(-10 -7 (-15 -3193 (|#4| |#4| (-650 |#4|))) (-15 -3912 ((-650 |#4|) (-650 |#4|))) (-15 -3912 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -3912 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))))
-((-2312 (((-650 (-650 |#4|)) (-650 |#4|) (-112)) 89) (((-650 (-650 |#4|)) (-650 |#4|)) 88) (((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112)) 82) (((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|)) 83)) (-1622 (((-650 (-650 |#4|)) (-650 |#4|) (-112)) 55) (((-650 (-650 |#4|)) (-650 |#4|)) 77)))
-(((-454 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1622 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -1622 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|) (-112)))) (-13 (-311) (-148)) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -454))
-((-2312 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8))) (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))) (-2312 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2312 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8))) (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))) (-2312 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-1622 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8))) (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))) (-1622 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(-10 -7 (-15 -1622 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -1622 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -2312 ((-650 (-650 |#4|)) (-650 |#4|) (-112))))
-((-3926 (((-777) |#4|) 12)) (-3721 (((-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|)))) 39)) (-2192 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 49)) (-4309 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 52)) (-3835 ((|#4| |#4| (-650 |#4|)) 54)) (-2949 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|)) 96)) (-2757 (((-1281) |#4|) 59)) (-1357 (((-1281) (-650 |#4|)) 69)) (-3306 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570)) 66)) (-3014 (((-1281) (-570)) 112)) (-2043 (((-650 |#4|) (-650 |#4|)) 104)) (-4302 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|)) |#4| (-777)) 31)) (-3197 (((-570) |#4|) 109)) (-3963 ((|#4| |#4|) 37)) (-2802 (((-650 |#4|) (-650 |#4|) (-570) (-570)) 74)) (-3959 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570)) 125)) (-1857 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 20)) (-2497 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 78)) (-3993 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 76)) (-3795 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 47)) (-2299 (((-112) |#2| |#2|) 75)) (-3850 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 48)) (-1830 (((-112) |#2| |#2| |#2| |#2|) 80)) (-1510 ((|#4| |#4| (-650 |#4|)) 97)))
-(((-455 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1510 (|#4| |#4| (-650 |#4|))) (-15 -3835 (|#4| |#4| (-650 |#4|))) (-15 -2802 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -2497 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2299 ((-112) |#2| |#2|)) (-15 -1830 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3850 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3795 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3993 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2949 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -3963 (|#4| |#4|)) (-15 -3721 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|))))) (-15 -4309 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2192 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2043 ((-650 |#4|) (-650 |#4|))) (-15 -3197 ((-570) |#4|)) (-15 -2757 ((-1281) |#4|)) (-15 -3306 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3959 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -1357 ((-1281) (-650 |#4|))) (-15 -3014 ((-1281) (-570))) (-15 -1857 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4302 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|)) |#4| (-777))) (-15 -3926 ((-777) |#4|))) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -455))
-((-3926 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777)) (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-4302 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -3282 *4))) (-5 *5 (-777)) (-4 *4 (-956 *6 *7 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-455 *6 *7 *8 *4)))) (-1857 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))) (-3014 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1281)) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-1357 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1281)) (-5 *1 (-455 *4 *5 *6 *7)))) (-3959 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *4)))) (-3306 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *4)))) (-2757 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1281)) (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-3197 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-570)) (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-2043 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))) (-2192 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))) (-4309 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-799)) (-4 *2 (-956 *4 *5 *6)) (-5 *1 (-455 *4 *5 *6 *2)) (-4 *4 (-458)) (-4 *6 (-856)))) (-3721 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 *3)))) (-5 *4 (-777)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *3)))) (-3963 (*1 *2 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))) (-2949 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-455 *5 *6 *7 *3)))) (-3993 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-777)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-799)) (-4 *6 (-956 *4 *3 *5)) (-4 *4 (-458)) (-4 *5 (-856)) (-5 *1 (-455 *4 *3 *5 *6)))) (-3795 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))) (-3850 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-799)) (-4 *3 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *3)))) (-1830 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))) (-2299 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))) (-2497 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))) (-2802 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *7)))) (-3835 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))) (-1510 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))))
-(-10 -7 (-15 -1510 (|#4| |#4| (-650 |#4|))) (-15 -3835 (|#4| |#4| (-650 |#4|))) (-15 -2802 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -2497 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2299 ((-112) |#2| |#2|)) (-15 -1830 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3850 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3795 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3993 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2949 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -3963 (|#4| |#4|)) (-15 -3721 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|))))) (-15 -4309 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2192 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2043 ((-650 |#4|) (-650 |#4|))) (-15 -3197 ((-570) |#4|)) (-15 -2757 ((-1281) |#4|)) (-15 -3306 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3959 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -1357 ((-1281) (-650 |#4|))) (-15 -3014 ((-1281) (-570))) (-15 -1857 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4302 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3282 |#4|)) |#4| (-777))) (-15 -3926 ((-777) |#4|)))
-((-1664 ((|#4| |#4| (-650 |#4|)) 20 (|has| |#1| (-368)))) (-2475 (((-650 |#4|) (-650 |#4|) (-1168) (-1168)) 46) (((-650 |#4|) (-650 |#4|) (-1168)) 45) (((-650 |#4|) (-650 |#4|)) 34)))
-(((-456 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2475 ((-650 |#4|) (-650 |#4|))) (-15 -2475 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -2475 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -1664 (|#4| |#4| (-650 |#4|))) |%noBranch|)) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -456))
-((-1664 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-368)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-456 *4 *5 *6 *2)))) (-2475 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-456 *4 *5 *6 *7)))) (-2475 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-456 *4 *5 *6 *7)))) (-2475 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-456 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2475 ((-650 |#4|) (-650 |#4|))) (-15 -2475 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -2475 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -1664 (|#4| |#4| (-650 |#4|))) |%noBranch|))
-((-1845 (($ $ $) 14) (($ (-650 $)) 21)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 46)) (-1874 (($ $ $) NIL) (($ (-650 $)) 22)))
-(((-457 |#1|) (-10 -8 (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1845 (|#1| (-650 |#1|))) (-15 -1845 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|))) (-458)) (T -457))
-NIL
-(-10 -8 (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1845 (|#1| (-650 |#1|))) (-15 -1845 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2407 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-447)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-447)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334))))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447)))))
+(-13 (-401) (-10 -8 (-15 -3735 ($ (-650 (-334)))) (-15 -3735 ($ (-334))) (-15 -3735 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))) (-15 -3080 ($ (-1277 (-320 (-384))))) (-15 -4379 ((-3 $ "failed") (-1277 (-320 (-384))))) (-15 -3080 ($ (-1277 (-320 (-570))))) (-15 -4379 ((-3 $ "failed") (-1277 (-320 (-570))))) (-15 -3080 ($ (-1277 (-959 (-384))))) (-15 -4379 ((-3 $ "failed") (-1277 (-959 (-384))))) (-15 -3080 ($ (-1277 (-959 (-570))))) (-15 -4379 ((-3 $ "failed") (-1277 (-959 (-570))))) (-15 -3080 ($ (-1277 (-413 (-959 (-384)))))) (-15 -4379 ((-3 $ "failed") (-1277 (-413 (-959 (-384)))))) (-15 -3080 ($ (-1277 (-413 (-959 (-570)))))) (-15 -4379 ((-3 $ "failed") (-1277 (-413 (-959 (-570))))))))
+(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
+((-2252 (((-112)) 18)) (-2390 (((-112) (-112)) 19)) (-2263 (((-112)) 14)) (-4351 (((-112) (-112)) 15)) (-2419 (((-112)) 16)) (-4374 (((-112) (-112)) 17)) (-3902 (((-928) (-928)) 22) (((-928)) 21)) (-3622 (((-777) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570))))) 52)) (-2104 (((-928) (-928)) 24) (((-928)) 23)) (-4342 (((-2 (|:| -3603 (-570)) (|:| -2773 (-650 |#1|))) |#1|) 97)) (-3595 (((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570))))))) 178)) (-3553 (((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112)) 211)) (-2595 (((-424 |#1|) |#1| (-777) (-777)) 226) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 223) (((-424 |#1|) |#1| (-650 (-777))) 225) (((-424 |#1|) |#1| (-777)) 224) (((-424 |#1|) |#1|) 222)) (-3983 (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112)) 228) (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777)) 229) (((-3 |#1| "failed") (-928) |#1| (-650 (-777))) 231) (((-3 |#1| "failed") (-928) |#1| (-777)) 230) (((-3 |#1| "failed") (-928) |#1|) 232)) (-3739 (((-424 |#1|) |#1| (-777) (-777)) 221) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 217) (((-424 |#1|) |#1| (-650 (-777))) 219) (((-424 |#1|) |#1| (-777)) 218) (((-424 |#1|) |#1|) 216)) (-4252 (((-112) |#1|) 44)) (-3172 (((-743 (-777)) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570))))) 102)) (-2870 (((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)) 215)))
+(((-448 |#1|) (-10 -7 (-15 -3595 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))))) (-15 -3172 ((-743 (-777)) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))))) (-15 -2104 ((-928))) (-15 -2104 ((-928) (-928))) (-15 -3902 ((-928))) (-15 -3902 ((-928) (-928))) (-15 -3622 ((-777) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))))) (-15 -4342 ((-2 (|:| -3603 (-570)) (|:| -2773 (-650 |#1|))) |#1|)) (-15 -2252 ((-112))) (-15 -2390 ((-112) (-112))) (-15 -2263 ((-112))) (-15 -4351 ((-112) (-112))) (-15 -4252 ((-112) |#1|)) (-15 -2419 ((-112))) (-15 -4374 ((-112) (-112))) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -3739 ((-424 |#1|) |#1| (-777))) (-15 -3739 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3739 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3739 ((-424 |#1|) |#1| (-777) (-777))) (-15 -2595 ((-424 |#1|) |#1|)) (-15 -2595 ((-424 |#1|) |#1| (-777))) (-15 -2595 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -2595 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -2595 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1|)) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -3553 ((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112))) (-15 -2870 ((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)))) (-1253 (-570))) (T -448))
+((-2870 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3553 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3983 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *6 (-112)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-3983 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-3983 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-3983 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-777)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-3983 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-928)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-2595 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2595 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2595 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2595 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2595 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3739 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3739 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3739 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4374 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2419 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4252 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4351 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2263 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2390 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2252 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4342 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3603 (-570)) (|:| -2773 (-650 *3)))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3622 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3739 *4) (|:| -3221 (-570))))) (-4 *4 (-1253 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))) (-3902 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3902 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2104 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2104 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3172 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3739 *4) (|:| -3221 (-570))))) (-4 *4 (-1253 (-570))) (-5 *2 (-743 (-777))) (-5 *1 (-448 *4)))) (-3595 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| *4) (|:| -2227 (-570))))))) (-4 *4 (-1253 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
+(-10 -7 (-15 -3595 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))))) (-15 -3172 ((-743 (-777)) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))))) (-15 -2104 ((-928))) (-15 -2104 ((-928) (-928))) (-15 -3902 ((-928))) (-15 -3902 ((-928) (-928))) (-15 -3622 ((-777) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))))) (-15 -4342 ((-2 (|:| -3603 (-570)) (|:| -2773 (-650 |#1|))) |#1|)) (-15 -2252 ((-112))) (-15 -2390 ((-112) (-112))) (-15 -2263 ((-112))) (-15 -4351 ((-112) (-112))) (-15 -4252 ((-112) |#1|)) (-15 -2419 ((-112))) (-15 -4374 ((-112) (-112))) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -3739 ((-424 |#1|) |#1| (-777))) (-15 -3739 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3739 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3739 ((-424 |#1|) |#1| (-777) (-777))) (-15 -2595 ((-424 |#1|) |#1|)) (-15 -2595 ((-424 |#1|) |#1| (-777))) (-15 -2595 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -2595 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -2595 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1|)) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -3983 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -3553 ((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112))) (-15 -2870 ((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112) (-1111 (-777)) (-777))))
+((-4375 (((-570) |#2|) 52) (((-570) |#2| (-777)) 51)) (-4054 (((-570) |#2|) 67)) (-4108 ((|#3| |#2|) 26)) (-2771 ((|#3| |#2| (-928)) 15)) (-3788 ((|#3| |#2|) 16)) (-4184 ((|#3| |#2|) 9)) (-1435 ((|#3| |#2|) 10)) (-2369 ((|#3| |#2| (-928)) 74) ((|#3| |#2|) 34)) (-1576 (((-570) |#2|) 69)))
+(((-449 |#1| |#2| |#3|) (-10 -7 (-15 -1576 ((-570) |#2|)) (-15 -2369 (|#3| |#2|)) (-15 -2369 (|#3| |#2| (-928))) (-15 -4054 ((-570) |#2|)) (-15 -4375 ((-570) |#2| (-777))) (-15 -4375 ((-570) |#2|)) (-15 -2771 (|#3| |#2| (-928))) (-15 -4108 (|#3| |#2|)) (-15 -4184 (|#3| |#2|)) (-15 -1435 (|#3| |#2|)) (-15 -3788 (|#3| |#2|))) (-1058) (-1253 |#1|) (-13 (-410) (-1047 |#1|) (-368) (-1212) (-288))) (T -449))
+((-3788 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))) (-1435 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))) (-4184 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))) (-4108 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))) (-2771 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1212) (-288))) (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1253 *5)))) (-4375 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5)) (-4 *3 (-1253 *4)) (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))))) (-4375 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *5 *3 *6)) (-4 *3 (-1253 *5)) (-4 *6 (-13 (-410) (-1047 *5) (-368) (-1212) (-288))))) (-4054 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5)) (-4 *3 (-1253 *4)) (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))))) (-2369 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1212) (-288))) (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1253 *5)))) (-2369 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))) (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))) (-1576 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5)) (-4 *3 (-1253 *4)) (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))))))
+(-10 -7 (-15 -1576 ((-570) |#2|)) (-15 -2369 (|#3| |#2|)) (-15 -2369 (|#3| |#2| (-928))) (-15 -4054 ((-570) |#2|)) (-15 -4375 ((-570) |#2| (-777))) (-15 -4375 ((-570) |#2|)) (-15 -2771 (|#3| |#2| (-928))) (-15 -4108 (|#3| |#2|)) (-15 -4184 (|#3| |#2|)) (-15 -1435 (|#3| |#2|)) (-15 -3788 (|#3| |#2|)))
+((-3592 ((|#2| (-1277 |#1|)) 45)) (-3566 ((|#2| |#2| |#1|) 61)) (-4346 ((|#2| |#2| |#1|) 53)) (-2261 ((|#2| |#2|) 49)) (-2917 (((-112) |#2|) 36)) (-3001 (((-650 |#2|) (-928) (-424 |#2|)) 24)) (-3983 ((|#2| (-928) (-424 |#2|)) 28)) (-3172 (((-743 (-777)) (-424 |#2|)) 33)))
+(((-450 |#1| |#2|) (-10 -7 (-15 -2917 ((-112) |#2|)) (-15 -3592 (|#2| (-1277 |#1|))) (-15 -2261 (|#2| |#2|)) (-15 -4346 (|#2| |#2| |#1|)) (-15 -3566 (|#2| |#2| |#1|)) (-15 -3172 ((-743 (-777)) (-424 |#2|))) (-15 -3983 (|#2| (-928) (-424 |#2|))) (-15 -3001 ((-650 |#2|) (-928) (-424 |#2|)))) (-1058) (-1253 |#1|)) (T -450))
+((-3001 (*1 *2 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-424 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-1058)) (-5 *2 (-650 *6)) (-5 *1 (-450 *5 *6)))) (-3983 (*1 *2 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1253 *5)) (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))) (-3172 (*1 *2 *3) (-12 (-5 *3 (-424 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-1058)) (-5 *2 (-743 (-777))) (-5 *1 (-450 *4 *5)))) (-3566 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-4346 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-2261 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-3592 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-1058)) (-4 *2 (-1253 *4)) (-5 *1 (-450 *4 *2)))) (-2917 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-450 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2917 ((-112) |#2|)) (-15 -3592 (|#2| (-1277 |#1|))) (-15 -2261 (|#2| |#2|)) (-15 -4346 (|#2| |#2| |#1|)) (-15 -3566 (|#2| |#2| |#1|)) (-15 -3172 ((-743 (-777)) (-424 |#2|))) (-15 -3983 (|#2| (-928) (-424 |#2|))) (-15 -3001 ((-650 |#2|) (-928) (-424 |#2|))))
+((-3967 (((-777)) 59)) (-1884 (((-777)) 29 (|has| |#1| (-410))) (((-777) (-777)) 28 (|has| |#1| (-410)))) (-3568 (((-570) |#1|) 25 (|has| |#1| (-410)))) (-3564 (((-570) |#1|) 27 (|has| |#1| (-410)))) (-3655 (((-777)) 58) (((-777) (-777)) 57)) (-1329 ((|#1| (-777) (-570)) 37)) (-1989 (((-1282)) 61)))
+(((-451 |#1|) (-10 -7 (-15 -1329 (|#1| (-777) (-570))) (-15 -3655 ((-777) (-777))) (-15 -3655 ((-777))) (-15 -3967 ((-777))) (-15 -1989 ((-1282))) (IF (|has| |#1| (-410)) (PROGN (-15 -3564 ((-570) |#1|)) (-15 -3568 ((-570) |#1|)) (-15 -1884 ((-777) (-777))) (-15 -1884 ((-777)))) |%noBranch|)) (-1058)) (T -451))
+((-1884 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-1884 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3568 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3564 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-1989 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-3967 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-3655 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-3655 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-1329 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
+(-10 -7 (-15 -1329 (|#1| (-777) (-570))) (-15 -3655 ((-777) (-777))) (-15 -3655 ((-777))) (-15 -3967 ((-777))) (-15 -1989 ((-1282))) (IF (|has| |#1| (-410)) (PROGN (-15 -3564 ((-570) |#1|)) (-15 -3568 ((-570) |#1|)) (-15 -1884 ((-777) (-777))) (-15 -1884 ((-777)))) |%noBranch|))
+((-3780 (((-650 (-570)) (-570)) 76)) (-4037 (((-112) (-171 (-570))) 82)) (-3739 (((-424 (-171 (-570))) (-171 (-570))) 75)))
+(((-452) (-10 -7 (-15 -3739 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -3780 ((-650 (-570)) (-570))) (-15 -4037 ((-112) (-171 (-570)))))) (T -452))
+((-4037 (*1 *2 *3) (-12 (-5 *3 (-171 (-570))) (-5 *2 (-112)) (-5 *1 (-452)))) (-3780 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))) (-3739 (*1 *2 *3) (-12 (-5 *2 (-424 (-171 (-570)))) (-5 *1 (-452)) (-5 *3 (-171 (-570))))))
+(-10 -7 (-15 -3739 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -3780 ((-650 (-570)) (-570))) (-15 -4037 ((-112) (-171 (-570)))))
+((-1583 ((|#4| |#4| (-650 |#4|)) 82)) (-4081 (((-650 |#4|) (-650 |#4|) (-1168) (-1168)) 22) (((-650 |#4|) (-650 |#4|) (-1168)) 21) (((-650 |#4|) (-650 |#4|)) 13)))
+(((-453 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1583 (|#4| |#4| (-650 |#4|))) (-15 -4081 ((-650 |#4|) (-650 |#4|))) (-15 -4081 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -4081 ((-650 |#4|) (-650 |#4|) (-1168) (-1168)))) (-311) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -453))
+((-4081 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *7)))) (-4081 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *7)))) (-4081 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-453 *3 *4 *5 *6)))) (-1583 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *2)))))
+(-10 -7 (-15 -1583 (|#4| |#4| (-650 |#4|))) (-15 -4081 ((-650 |#4|) (-650 |#4|))) (-15 -4081 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -4081 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))))
+((-2936 (((-650 (-650 |#4|)) (-650 |#4|) (-112)) 89) (((-650 (-650 |#4|)) (-650 |#4|)) 88) (((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112)) 82) (((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|)) 83)) (-3475 (((-650 (-650 |#4|)) (-650 |#4|) (-112)) 55) (((-650 (-650 |#4|)) (-650 |#4|)) 77)))
+(((-454 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3475 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3475 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|) (-112)))) (-13 (-311) (-148)) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -454))
+((-2936 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8))) (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))) (-2936 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2936 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8))) (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))) (-2936 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-3475 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8))) (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))) (-3475 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
+(-10 -7 (-15 -3475 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3475 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -2936 ((-650 (-650 |#4|)) (-650 |#4|) (-112))))
+((-4221 (((-777) |#4|) 12)) (-2828 (((-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|)))) 39)) (-4231 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 49)) (-3668 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 52)) (-1464 ((|#4| |#4| (-650 |#4|)) 54)) (-4120 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|)) 96)) (-1736 (((-1282) |#4|) 59)) (-3256 (((-1282) (-650 |#4|)) 69)) (-3143 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570)) 66)) (-3456 (((-1282) (-570)) 112)) (-2065 (((-650 |#4|) (-650 |#4|)) 104)) (-3613 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|)) |#4| (-777)) 31)) (-1629 (((-570) |#4|) 109)) (-3308 ((|#4| |#4|) 37)) (-4006 (((-650 |#4|) (-650 |#4|) (-570) (-570)) 74)) (-3247 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570)) 125)) (-3844 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 20)) (-4215 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 78)) (-3650 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 76)) (-2270 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 47)) (-2806 (((-112) |#2| |#2|) 75)) (-1619 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 48)) (-1750 (((-112) |#2| |#2| |#2| |#2|) 80)) (-1770 ((|#4| |#4| (-650 |#4|)) 97)))
+(((-455 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1770 (|#4| |#4| (-650 |#4|))) (-15 -1464 (|#4| |#4| (-650 |#4|))) (-15 -4006 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -4215 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2806 ((-112) |#2| |#2|)) (-15 -1750 ((-112) |#2| |#2| |#2| |#2|)) (-15 -1619 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2270 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3650 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4120 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -3308 (|#4| |#4|)) (-15 -2828 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|))))) (-15 -3668 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4231 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2065 ((-650 |#4|) (-650 |#4|))) (-15 -1629 ((-570) |#4|)) (-15 -1736 ((-1282) |#4|)) (-15 -3143 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3247 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -3256 ((-1282) (-650 |#4|))) (-15 -3456 ((-1282) (-570))) (-15 -3844 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3613 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|)) |#4| (-777))) (-15 -4221 ((-777) |#4|))) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -455))
+((-4221 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777)) (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-3613 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -4239 *4))) (-5 *5 (-777)) (-4 *4 (-956 *6 *7 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-455 *6 *7 *8 *4)))) (-3844 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))) (-3456 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1282)) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-3256 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1282)) (-5 *1 (-455 *4 *5 *6 *7)))) (-3247 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *4)))) (-3143 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *4)))) (-1736 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1282)) (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-1629 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-570)) (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-2065 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))) (-4231 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))) (-3668 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-799)) (-4 *2 (-956 *4 *5 *6)) (-5 *1 (-455 *4 *5 *6 *2)) (-4 *4 (-458)) (-4 *6 (-856)))) (-2828 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 *3)))) (-5 *4 (-777)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *3)))) (-3308 (*1 *2 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))) (-4120 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-455 *5 *6 *7 *3)))) (-3650 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-777)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-799)) (-4 *6 (-956 *4 *3 *5)) (-4 *4 (-458)) (-4 *5 (-856)) (-5 *1 (-455 *4 *3 *5 *6)))) (-2270 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))) (-1619 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-799)) (-4 *3 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *3)))) (-1750 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))) (-2806 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))) (-4215 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))) (-4006 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *7)))) (-1464 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))) (-1770 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))))
+(-10 -7 (-15 -1770 (|#4| |#4| (-650 |#4|))) (-15 -1464 (|#4| |#4| (-650 |#4|))) (-15 -4006 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -4215 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2806 ((-112) |#2| |#2|)) (-15 -1750 ((-112) |#2| |#2| |#2| |#2|)) (-15 -1619 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2270 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3650 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4120 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -3308 (|#4| |#4|)) (-15 -2828 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|))))) (-15 -3668 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4231 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2065 ((-650 |#4|) (-650 |#4|))) (-15 -1629 ((-570) |#4|)) (-15 -1736 ((-1282) |#4|)) (-15 -3143 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3247 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -3256 ((-1282) (-650 |#4|))) (-15 -3456 ((-1282) (-570))) (-15 -3844 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3613 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -4239 |#4|)) |#4| (-777))) (-15 -4221 ((-777) |#4|)))
+((-2631 ((|#4| |#4| (-650 |#4|)) 20 (|has| |#1| (-368)))) (-4013 (((-650 |#4|) (-650 |#4|) (-1168) (-1168)) 46) (((-650 |#4|) (-650 |#4|) (-1168)) 45) (((-650 |#4|) (-650 |#4|)) 34)))
+(((-456 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4013 ((-650 |#4|) (-650 |#4|))) (-15 -4013 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -4013 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -2631 (|#4| |#4| (-650 |#4|))) |%noBranch|)) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -456))
+((-2631 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-368)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-456 *4 *5 *6 *2)))) (-4013 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-456 *4 *5 *6 *7)))) (-4013 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-456 *4 *5 *6 *7)))) (-4013 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-456 *3 *4 *5 *6)))))
+(-10 -7 (-15 -4013 ((-650 |#4|) (-650 |#4|))) (-15 -4013 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -4013 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -2631 (|#4| |#4| (-650 |#4|))) |%noBranch|))
+((-1847 (($ $ $) 14) (($ (-650 $)) 21)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 46)) (-1874 (($ $ $) NIL) (($ (-650 $)) 22)))
+(((-457 |#1|) (-10 -8 (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1847 (|#1| (-650 |#1|))) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|))) (-458)) (T -457))
+NIL
+(-10 -8 (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1847 (|#1| (-650 |#1|))) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -1874 (|#1| |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2406 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-458) (-141)) (T -458))
-((-1874 (*1 *1 *1 *1) (-4 *1 (-458))) (-1874 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-1845 (*1 *1 *1 *1) (-4 *1 (-458))) (-1845 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-3450 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-458)))))
-(-13 (-562) (-10 -8 (-15 -1874 ($ $ $)) (-15 -1874 ($ (-650 $))) (-15 -1845 ($ $ $)) (-15 -1845 ($ (-650 $))) (-15 -3450 ((-1182 $) (-1182 $) (-1182 $)))))
+((-1874 (*1 *1 *1 *1) (-4 *1 (-458))) (-1874 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-1847 (*1 *1 *1 *1) (-4 *1 (-458))) (-1847 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-2092 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-458)))))
+(-13 (-562) (-10 -8 (-15 -1874 ($ $ $)) (-15 -1874 ($ (-650 $))) (-15 -1847 ($ $ $)) (-15 -1847 ($ (-650 $))) (-15 -2092 ((-1182 $) (-1182 $) (-1182 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1733 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-1759 (((-1276 (-695 (-413 (-959 |#1|)))) (-1276 $)) NIL) (((-1276 (-695 (-413 (-959 |#1|))))) NIL)) (-2201 (((-1276 $)) NIL)) (-2450 (($) NIL T CONST)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL)) (-1822 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-2893 (((-695 (-413 (-959 |#1|))) (-1276 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-4361 (((-413 (-959 |#1|)) $) NIL)) (-2520 (((-695 (-413 (-959 |#1|))) $ (-1276 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-1535 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3065 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 92 (|has| |#1| (-562)))) (-3937 (($ $ (-928)) NIL)) (-3602 (((-413 (-959 |#1|)) $) NIL)) (-3929 (((-1182 (-413 (-959 |#1|))) $) 90 (|has| (-413 (-959 |#1|)) (-562)))) (-4290 (((-413 (-959 |#1|)) (-1276 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-1458 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-3161 (((-112)) NIL)) (-2049 (($ (-1276 (-413 (-959 |#1|))) (-1276 $)) 116) (($ (-1276 (-413 (-959 |#1|)))) NIL)) (-3413 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3934 (((-928)) NIL)) (-1460 (((-112)) NIL)) (-3388 (($ $ (-928)) NIL)) (-3060 (((-112)) NIL)) (-3207 (((-112)) NIL)) (-3149 (((-112)) NIL)) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL)) (-2546 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-1401 (((-695 (-413 (-959 |#1|))) (-1276 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-4395 (((-413 (-959 |#1|)) $) NIL)) (-3215 (((-695 (-413 (-959 |#1|))) $ (-1276 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-2168 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-4004 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 91 (|has| |#1| (-562)))) (-2247 (($ $ (-928)) NIL)) (-3386 (((-413 (-959 |#1|)) $) NIL)) (-1395 (((-1182 (-413 (-959 |#1|))) $) 87 (|has| (-413 (-959 |#1|)) (-562)))) (-2191 (((-413 (-959 |#1|)) (-1276 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-4265 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-2455 (((-112)) NIL)) (-1903 (((-1168) $) NIL)) (-3641 (((-112)) NIL)) (-1482 (((-112)) NIL)) (-3204 (((-112)) NIL)) (-3479 (((-1129) $) NIL)) (-3444 (((-413 (-959 |#1|)) $ $) 78 (|has| |#1| (-562)))) (-2891 (((-413 (-959 |#1|)) $) 102 (|has| |#1| (-562)))) (-1660 (((-413 (-959 |#1|)) $) 106 (|has| |#1| (-562)))) (-1501 (((-1182 (-413 (-959 |#1|))) $) 96 (|has| |#1| (-562)))) (-1850 (((-413 (-959 |#1|))) 79 (|has| |#1| (-562)))) (-1714 (((-413 (-959 |#1|)) $ $) 71 (|has| |#1| (-562)))) (-3003 (((-413 (-959 |#1|)) $) 101 (|has| |#1| (-562)))) (-1551 (((-413 (-959 |#1|)) $) 105 (|has| |#1| (-562)))) (-2490 (((-1182 (-413 (-959 |#1|))) $) 95 (|has| |#1| (-562)))) (-2707 (((-413 (-959 |#1|))) 75 (|has| |#1| (-562)))) (-1955 (($) 112) (($ (-1186)) 120) (($ (-1276 (-1186))) 119) (($ (-1276 $)) 107) (($ (-1186) (-1276 $)) 118) (($ (-1276 (-1186)) (-1276 $)) 117)) (-1687 (((-112)) NIL)) (-1876 (((-413 (-959 |#1|)) $ (-570)) NIL)) (-1807 (((-1276 (-413 (-959 |#1|))) $ (-1276 $)) 109) (((-695 (-413 (-959 |#1|))) (-1276 $) (-1276 $)) NIL) (((-1276 (-413 (-959 |#1|))) $) 45) (((-695 (-413 (-959 |#1|))) (-1276 $)) NIL)) (-1416 (((-1276 (-413 (-959 |#1|))) $) NIL) (($ (-1276 (-413 (-959 |#1|)))) 42)) (-3824 (((-650 (-959 (-413 (-959 |#1|)))) (-1276 $)) NIL) (((-650 (-959 (-413 (-959 |#1|))))) NIL) (((-650 (-959 |#1|)) (-1276 $)) 110 (|has| |#1| (-562))) (((-650 (-959 |#1|))) 111 (|has| |#1| (-562)))) (-3688 (($ $ $) NIL)) (-4068 (((-112)) NIL)) (-3735 (((-868) $) NIL) (($ (-1276 (-413 (-959 |#1|)))) NIL)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) 67)) (-4365 (((-650 (-1276 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3183 (($ $ $ $) NIL)) (-2170 (((-112)) NIL)) (-3381 (($ (-695 (-413 (-959 |#1|))) $) NIL)) (-1960 (($ $ $) NIL)) (-4213 (((-112)) NIL)) (-3987 (((-112)) NIL)) (-3463 (((-112)) NIL)) (-1812 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) 108)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 63) (($ $ (-413 (-959 |#1|))) NIL) (($ (-413 (-959 |#1|)) $) NIL) (($ (-1151 |#2| (-413 (-959 |#1|))) $) NIL)))
-(((-459 |#1| |#2| |#3| |#4|) (-13 (-423 (-413 (-959 |#1|))) (-654 (-1151 |#2| (-413 (-959 |#1|)))) (-10 -8 (-15 -3735 ($ (-1276 (-413 (-959 |#1|))))) (-15 -1396 ((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed"))) (-15 -4352 ((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed"))) (-15 -1955 ($)) (-15 -1955 ($ (-1186))) (-15 -1955 ($ (-1276 (-1186)))) (-15 -1955 ($ (-1276 $))) (-15 -1955 ($ (-1186) (-1276 $))) (-15 -1955 ($ (-1276 (-1186)) (-1276 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -4004 ((-1182 (-413 (-959 |#1|))))) (-15 -2490 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3003 ((-413 (-959 |#1|)) $)) (-15 -1551 ((-413 (-959 |#1|)) $)) (-15 -3065 ((-1182 (-413 (-959 |#1|))))) (-15 -1501 ((-1182 (-413 (-959 |#1|))) $)) (-15 -2891 ((-413 (-959 |#1|)) $)) (-15 -1660 ((-413 (-959 |#1|)) $)) (-15 -1714 ((-413 (-959 |#1|)) $ $)) (-15 -2707 ((-413 (-959 |#1|)))) (-15 -3444 ((-413 (-959 |#1|)) $ $)) (-15 -1850 ((-413 (-959 |#1|)))) (-15 -3824 ((-650 (-959 |#1|)) (-1276 $))) (-15 -3824 ((-650 (-959 |#1|))))) |%noBranch|))) (-174) (-928) (-650 (-1186)) (-1276 (-695 |#1|))) (T -459))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1276 (-413 (-959 *3)))) (-4 *3 (-174)) (-14 *6 (-1276 (-695 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))))) (-1396 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -2331 (-650 (-459 *3 *4 *5 *6))))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-4352 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -2331 (-650 (-459 *3 *4 *5 *6))))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1955 (*1 *1) (-12 (-5 *1 (-459 *2 *3 *4 *5)) (-4 *2 (-174)) (-14 *3 (-928)) (-14 *4 (-650 (-1186))) (-14 *5 (-1276 (-695 *2))))) (-1955 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 *2)) (-14 *6 (-1276 (-695 *3))))) (-1955 (*1 *1 *2) (-12 (-5 *2 (-1276 (-1186))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1955 (*1 *1 *2) (-12 (-5 *2 (-1276 (-459 *3 *4 *5 *6))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1955 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-459 *4 *5 *6 *7))) (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928)) (-14 *6 (-650 *2)) (-14 *7 (-1276 (-695 *4))))) (-1955 (*1 *1 *2 *3) (-12 (-5 *2 (-1276 (-1186))) (-5 *3 (-1276 (-459 *4 *5 *6 *7))) (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928)) (-14 *6 (-650 (-1186))) (-14 *7 (-1276 (-695 *4))))) (-4004 (*1 *2) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-2490 (*1 *2 *1) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-3003 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1551 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-3065 (*1 *2) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1501 (*1 *2 *1) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-2891 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1660 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1714 (*1 *2 *1 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-2707 (*1 *2) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-3444 (*1 *2 *1 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-1850 (*1 *2) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))) (-3824 (*1 *2 *3) (-12 (-5 *3 (-1276 (-459 *4 *5 *6 *7))) (-5 *2 (-650 (-959 *4))) (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-562)) (-4 *4 (-174)) (-14 *5 (-928)) (-14 *6 (-650 (-1186))) (-14 *7 (-1276 (-695 *4))))) (-3824 (*1 *2) (-12 (-5 *2 (-650 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
-(-13 (-423 (-413 (-959 |#1|))) (-654 (-1151 |#2| (-413 (-959 |#1|)))) (-10 -8 (-15 -3735 ($ (-1276 (-413 (-959 |#1|))))) (-15 -1396 ((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed"))) (-15 -4352 ((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed"))) (-15 -1955 ($)) (-15 -1955 ($ (-1186))) (-15 -1955 ($ (-1276 (-1186)))) (-15 -1955 ($ (-1276 $))) (-15 -1955 ($ (-1186) (-1276 $))) (-15 -1955 ($ (-1276 (-1186)) (-1276 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -4004 ((-1182 (-413 (-959 |#1|))))) (-15 -2490 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3003 ((-413 (-959 |#1|)) $)) (-15 -1551 ((-413 (-959 |#1|)) $)) (-15 -3065 ((-1182 (-413 (-959 |#1|))))) (-15 -1501 ((-1182 (-413 (-959 |#1|))) $)) (-15 -2891 ((-413 (-959 |#1|)) $)) (-15 -1660 ((-413 (-959 |#1|)) $)) (-15 -1714 ((-413 (-959 |#1|)) $ $)) (-15 -2707 ((-413 (-959 |#1|)))) (-15 -3444 ((-413 (-959 |#1|)) $ $)) (-15 -1850 ((-413 (-959 |#1|)))) (-15 -3824 ((-650 (-959 |#1|)) (-1276 $))) (-15 -3824 ((-650 (-959 |#1|))))) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 18)) (-1716 (((-650 (-870 |#1|)) $) 90)) (-3703 (((-1182 $) $ (-870 |#1|)) 55) (((-1182 |#2|) $) 140)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3171 (($ $) NIL (|has| |#2| (-562)))) (-2720 (((-112) $) NIL (|has| |#2| (-562)))) (-3462 (((-777) $) 27) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2222 (($ $) NIL (|has| |#2| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#2| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) 53) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) 51) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-1939 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-2429 (($ $ (-650 (-570))) 96)) (-1890 (($ $) 83)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#2| (-916)))) (-3007 (($ $ |#2| |#3| $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) 68)) (-1704 (($ (-1182 |#2|) (-870 |#1|)) 145) (($ (-1182 $) (-870 |#1|)) 61)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) 71)) (-3872 (($ |#2| |#3|) 38) (($ $ (-870 |#1|) (-777)) 40) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-870 |#1|)) NIL)) (-4341 ((|#3| $) NIL) (((-777) $ (-870 |#1|)) 59) (((-650 (-777)) $ (-650 (-870 |#1|))) 66)) (-4414 (($ (-1 |#3| |#3|) $) NIL)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3382 (((-3 (-870 |#1|) "failed") $) 48)) (-1855 (($ $) NIL)) (-1864 ((|#2| $) 50)) (-1845 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -1907 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) 49)) (-1842 ((|#2| $) 138)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) 151 (|has| |#2| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) 103) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) 109) (($ $ (-870 |#1|) $) 101) (($ $ (-650 (-870 |#1|)) (-650 $)) 127)) (-2998 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) 62) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1601 ((|#3| $) 82) (((-777) $ (-870 |#1|)) 45) (((-650 (-777)) $ (-650 (-870 |#1|))) 65)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3030 ((|#2| $) 147 (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) 175) (($ (-570)) NIL) (($ |#2|) 102) (($ (-870 |#1|)) 42) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ |#3|) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1812 (($) 22 T CONST)) (-1823 (($) 31 T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) 79 (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 133)) (** (($ $ (-928)) NIL) (($ $ (-777)) 131)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 39) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) 78) (($ $ |#2|) NIL)))
-(((-460 |#1| |#2| |#3|) (-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -2429 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058) (-240 (-2426 |#1|) (-777))) (T -460))
-((-2429 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-14 *3 (-650 (-1186))) (-5 *1 (-460 *3 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-240 (-2426 *3) (-777))))))
-(-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -2429 ($ $ (-650 (-570))))))
-((-3027 (((-112) |#1| (-650 |#2|)) 93)) (-3625 (((-3 (-1276 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|)) 102)) (-1832 (((-3 (-650 |#2|) "failed") |#2| |#1| (-1276 (-650 |#2|))) 104)) (-4052 ((|#2| |#2| |#1|) 35)) (-1562 (((-777) |#2| (-650 |#2|)) 26)))
-(((-461 |#1| |#2|) (-10 -7 (-15 -4052 (|#2| |#2| |#1|)) (-15 -1562 ((-777) |#2| (-650 |#2|))) (-15 -3625 ((-3 (-1276 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -1832 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1276 (-650 |#2|)))) (-15 -3027 ((-112) |#1| (-650 |#2|)))) (-311) (-1252 |#1|)) (T -461))
-((-3027 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *5)) (-4 *5 (-1252 *3)) (-4 *3 (-311)) (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))) (-1832 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1276 (-650 *3))) (-4 *4 (-311)) (-5 *2 (-650 *3)) (-5 *1 (-461 *4 *3)) (-4 *3 (-1252 *4)))) (-3625 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-311)) (-4 *6 (-1252 *4)) (-5 *2 (-1276 (-650 *6))) (-5 *1 (-461 *4 *6)) (-5 *5 (-650 *6)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-311)) (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))) (-4052 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-461 *3 *2)) (-4 *2 (-1252 *3)))))
-(-10 -7 (-15 -4052 (|#2| |#2| |#1|)) (-15 -1562 ((-777) |#2| (-650 |#2|))) (-15 -3625 ((-3 (-1276 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -1832 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1276 (-650 |#2|)))) (-15 -3027 ((-112) |#1| (-650 |#2|))))
-((-3738 (((-424 |#5|) |#5|) 24)))
-(((-462 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3738 ((-424 |#5|) |#5|))) (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186))))) (-799) (-562) (-562) (-956 |#4| |#2| |#1|)) (T -462))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *5 (-799)) (-4 *7 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-462 *4 *5 *6 *7 *3)) (-4 *6 (-562)) (-4 *3 (-956 *7 *5 *4)))))
-(-10 -7 (-15 -3738 ((-424 |#5|) |#5|)))
-((-2373 ((|#3|) 38)) (-3450 (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 34)))
-(((-463 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3450 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -2373 (|#3|))) (-799) (-856) (-916) (-956 |#3| |#1| |#2|)) (T -463))
-((-2373 (*1 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-916)) (-5 *1 (-463 *3 *4 *2 *5)) (-4 *5 (-956 *2 *3 *4)))) (-3450 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-916)) (-5 *1 (-463 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3450 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -2373 (|#3|)))
-((-3738 (((-424 (-1182 |#1|)) (-1182 |#1|)) 43)))
-(((-464 |#1|) (-10 -7 (-15 -3738 ((-424 (-1182 |#1|)) (-1182 |#1|)))) (-311)) (T -464))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 (-1182 *4))) (-5 *1 (-464 *4)) (-5 *3 (-1182 *4)))))
-(-10 -7 (-15 -3738 ((-424 (-1182 |#1|)) (-1182 |#1|))))
-((-1781 (((-52) |#2| (-1186) (-298 |#2|) (-1243 (-777))) 44) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-777))) 43) (((-52) |#2| (-1186) (-298 |#2|)) 36) (((-52) (-1 |#2| (-570)) (-298 |#2|)) 29)) (-3254 (((-52) |#2| (-1186) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570))) 88) (((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570))) 87) (((-52) |#2| (-1186) (-298 |#2|) (-1243 (-570))) 86) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-570))) 85) (((-52) |#2| (-1186) (-298 |#2|)) 80) (((-52) (-1 |#2| (-570)) (-298 |#2|)) 79)) (-1804 (((-52) |#2| (-1186) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570))) 74) (((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570))) 72)) (-1791 (((-52) |#2| (-1186) (-298 |#2|) (-1243 (-570))) 51) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-570))) 50)))
-(((-465 |#1| |#2|) (-10 -7 (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-777)))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-777)))) (-15 -1791 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-570)))) (-15 -1791 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-570)))) (-15 -1804 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))) (-15 -1804 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))) (-15 -3254 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3254 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3254 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-570)))) (-15 -3254 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-570)))) (-15 -3254 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))) (-15 -3254 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570))))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -465))
-((-3254 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-413 (-570)))) (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *8))) (-4 *8 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *8 *3)))) (-3254 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-413 (-570)))) (-5 *4 (-298 *8)) (-5 *5 (-1243 (-413 (-570)))) (-5 *6 (-413 (-570))) (-4 *8 (-13 (-27) (-1211) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *8)))) (-3254 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *3)))) (-3254 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1243 (-570))) (-4 *7 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *7)))) (-3254 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *3)))) (-3254 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-570))) (-5 *4 (-298 *6)) (-4 *6 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *5 *6)))) (-1804 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-413 (-570)))) (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *8))) (-4 *8 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *8 *3)))) (-1804 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-413 (-570)))) (-5 *4 (-298 *8)) (-5 *5 (-1243 (-413 (-570)))) (-5 *6 (-413 (-570))) (-4 *8 (-13 (-27) (-1211) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *8)))) (-1791 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *3)))) (-1791 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1243 (-570))) (-4 *7 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *7)))) (-1781 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-777))) (-4 *3 (-13 (-27) (-1211) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *3)))) (-1781 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1243 (-777))) (-4 *7 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *7)))) (-1781 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *3)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-570))) (-5 *4 (-298 *6)) (-4 *6 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *5 *6)))))
-(-10 -7 (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-777)))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-777)))) (-15 -1791 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-570)))) (-15 -1791 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-570)))) (-15 -1804 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))) (-15 -1804 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))) (-15 -3254 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3254 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3254 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1243 (-570)))) (-15 -3254 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-570)))) (-15 -3254 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))) (-15 -3254 ((-52) |#2| (-1186) (-298 |#2|) (-1243 (-413 (-570))) (-413 (-570)))))
-((-4052 ((|#2| |#2| |#1|) 15)) (-3093 (((-650 |#2|) |#2| (-650 |#2|) |#1| (-928)) 82)) (-3603 (((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928)) 72)))
-(((-466 |#1| |#2|) (-10 -7 (-15 -3603 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -3093 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -4052 (|#2| |#2| |#1|))) (-311) (-1252 |#1|)) (T -466))
-((-4052 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-466 *3 *2)) (-4 *2 (-1252 *3)))) (-3093 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-650 *3)) (-5 *5 (-928)) (-4 *3 (-1252 *4)) (-4 *4 (-311)) (-5 *1 (-466 *4 *3)))) (-3603 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-928)) (-4 *5 (-311)) (-4 *3 (-1252 *5)) (-5 *2 (-2 (|:| |plist| (-650 *3)) (|:| |modulo| *5))) (-5 *1 (-466 *5 *3)) (-5 *4 (-650 *3)))))
-(-10 -7 (-15 -3603 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -3093 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -4052 (|#2| |#2| |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 28)) (-3561 (($ |#3|) 25)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1890 (($ $) 32)) (-2958 (($ |#2| |#4| $) 33)) (-3872 (($ |#2| (-719 |#3| |#4| |#5|)) 24)) (-1855 (((-719 |#3| |#4| |#5|) $) 15)) (-3307 ((|#3| $) 19)) (-4056 ((|#4| $) 17)) (-1864 ((|#2| $) 29)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3109 (($ |#2| |#3| |#4|) 26)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 36 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 34)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-467 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-723 |#6|) (-723 |#2|) (-10 -8 (-15 -1864 (|#2| $)) (-15 -1855 ((-719 |#3| |#4| |#5|) $)) (-15 -4056 (|#4| $)) (-15 -3307 (|#3| $)) (-15 -1890 ($ $)) (-15 -3872 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -3561 ($ |#3|)) (-15 -3109 ($ |#2| |#3| |#4|)) (-15 -2958 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-650 (-1186)) (-174) (-856) (-240 (-2426 |#1|) (-777)) (-1 (-112) (-2 (|:| -2159 |#3|) (|:| -1907 |#4|)) (-2 (|:| -2159 |#3|) (|:| -1907 |#4|))) (-956 |#2| |#4| (-870 |#1|))) (T -467))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2426 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *6)) (-2 (|:| -2159 *5) (|:| -1907 *6)))) (-5 *1 (-467 *3 *4 *5 *6 *7 *2)) (-4 *5 (-856)) (-4 *2 (-956 *4 *6 (-870 *3))))) (-1864 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2426 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2159 *4) (|:| -1907 *5)) (-2 (|:| -2159 *4) (|:| -1907 *5)))) (-4 *2 (-174)) (-5 *1 (-467 *3 *2 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *2 *5 (-870 *3))))) (-1855 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2426 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *6)) (-2 (|:| -2159 *5) (|:| -1907 *6)))) (-5 *2 (-719 *5 *6 *7)) (-5 *1 (-467 *3 *4 *5 *6 *7 *8)) (-4 *5 (-856)) (-4 *8 (-956 *4 *6 (-870 *3))))) (-4056 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-14 *6 (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *2)) (-2 (|:| -2159 *5) (|:| -1907 *2)))) (-4 *2 (-240 (-2426 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7)) (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))) (-3307 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2426 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *5)) (-2 (|:| -2159 *2) (|:| -1907 *5)))) (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1890 (*1 *1 *1) (-12 (-14 *2 (-650 (-1186))) (-4 *3 (-174)) (-4 *5 (-240 (-2426 *2) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2159 *4) (|:| -1907 *5)) (-2 (|:| -2159 *4) (|:| -1907 *5)))) (-5 *1 (-467 *2 *3 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *3 *5 (-870 *2))))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-719 *5 *6 *7)) (-4 *5 (-856)) (-4 *6 (-240 (-2426 *4) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *6)) (-2 (|:| -2159 *5) (|:| -1907 *6)))) (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-5 *1 (-467 *4 *2 *5 *6 *7 *8)) (-4 *8 (-956 *2 *6 (-870 *4))))) (-3561 (*1 *1 *2) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2426 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *5)) (-2 (|:| -2159 *2) (|:| -1907 *5)))) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *2 (-856)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-3109 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174)) (-4 *4 (-240 (-2426 *5) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2159 *3) (|:| -1907 *4)) (-2 (|:| -2159 *3) (|:| -1907 *4)))) (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856)) (-4 *7 (-956 *2 *4 (-870 *5))))) (-2958 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-4 *3 (-240 (-2426 *4) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *3)) (-2 (|:| -2159 *5) (|:| -1907 *3)))) (-5 *1 (-467 *4 *2 *5 *3 *6 *7)) (-4 *5 (-856)) (-4 *7 (-956 *2 *3 (-870 *4))))))
-(-13 (-723 |#6|) (-723 |#2|) (-10 -8 (-15 -1864 (|#2| $)) (-15 -1855 ((-719 |#3| |#4| |#5|) $)) (-15 -4056 (|#4| $)) (-15 -3307 (|#3| $)) (-15 -1890 ($ $)) (-15 -3872 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -3561 ($ |#3|)) (-15 -3109 ($ |#2| |#3| |#4|)) (-15 -2958 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-3078 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 39)))
-(((-468 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3078 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-1047 (-413 (-570))) (-368) (-10 -8 (-15 -3735 ($ |#4|)) (-15 -4398 (|#4| $)) (-15 -4412 (|#4| $))))) (T -468))
-((-3078 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-856)) (-4 *5 (-799)) (-4 *6 (-562)) (-4 *7 (-956 *6 *5 *3)) (-5 *1 (-468 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1047 (-413 (-570))) (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))))
-(-10 -7 (-15 -3078 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-2416 (((-112) $ $) NIL)) (-1716 (((-650 |#3|) $) 41)) (-3418 (((-112) $) NIL)) (-1536 (((-112) $) NIL (|has| |#1| (-562)))) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1424 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-3809 (((-112) $) NIL (|has| |#1| (-562)))) (-2730 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1905 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2374 (((-112) $) NIL (|has| |#1| (-562)))) (-3742 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 49)) (-3080 (($ (-650 |#4|)) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-1702 (($ |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4448)))) (-2836 (((-650 |#4|) $) 18 (|has| $ (-6 -4448)))) (-2711 ((|#3| $) 47)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#4|) $) 14 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 21)) (-3727 (((-650 |#3|) $) NIL)) (-1844 (((-112) |#3| $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3479 (((-1129) $) NIL)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1671 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 39)) (-3743 (($) 17)) (-3486 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) 16)) (-1416 (((-542) $) NIL (|has| |#4| (-620 (-542)))) (($ (-650 |#4|)) 51)) (-3748 (($ (-650 |#4|)) 13)) (-4280 (($ $ |#3|) NIL)) (-2185 (($ $ |#3|) NIL)) (-1332 (($ $ |#3|) NIL)) (-3735 (((-868) $) 38) (((-650 |#4|) $) 50)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 30)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-469 |#1| |#2| |#3| |#4|) (-13 (-985 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1416 ($ (-650 |#4|))) (-6 -4448) (-6 -4449))) (-1058) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -469))
-((-1416 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-469 *3 *4 *5 *6)))))
-(-13 (-985 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1416 ($ (-650 |#4|))) (-6 -4448) (-6 -4449)))
-((-1812 (($) 11)) (-1823 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-470 |#1| |#2| |#3|) (-10 -8 (-15 -1823 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1812 (|#1|))) (-471 |#2| |#3|) (-174) (-23)) (T -470))
-NIL
-(-10 -8 (-15 -1823 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1812 (|#1|)))
-((-2416 (((-112) $ $) 7)) (-4378 (((-3 |#1| "failed") $) 27)) (-3080 ((|#1| $) 28)) (-2213 (($ $ $) 24)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1601 ((|#2| $) 20)) (-3735 (((-868) $) 12) (($ |#1|) 26)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 25 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 16) (($ $ $) 14)) (-2954 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2101 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2303 (((-1277 (-695 (-413 (-959 |#1|)))) (-1277 $)) NIL) (((-1277 (-695 (-413 (-959 |#1|))))) NIL)) (-3016 (((-1277 $)) NIL)) (-3761 (($) NIL T CONST)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL)) (-1679 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3649 (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-2893 (((-413 (-959 |#1|)) $) NIL)) (-3129 (((-695 (-413 (-959 |#1|))) $ (-1277 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-3860 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-2693 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 92 (|has| |#1| (-562)))) (-4333 (($ $ (-928)) NIL)) (-4191 (((-413 (-959 |#1|)) $) NIL)) (-4255 (((-1182 (-413 (-959 |#1|))) $) 90 (|has| (-413 (-959 |#1|)) (-562)))) (-3497 (((-413 (-959 |#1|)) (-1277 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-4339 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-4362 (((-112)) NIL)) (-2125 (($ (-1277 (-413 (-959 |#1|))) (-1277 $)) 116) (($ (-1277 (-413 (-959 |#1|)))) NIL)) (-2937 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3933 (((-928)) NIL)) (-4356 (((-112)) NIL)) (-2710 (($ $ (-928)) NIL)) (-2637 (((-112)) NIL)) (-1734 (((-112)) NIL)) (-2335 (((-112)) NIL)) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL)) (-3394 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-1883 (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-2078 (((-413 (-959 |#1|)) $) NIL)) (-1806 (((-695 (-413 (-959 |#1|))) $ (-1277 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-3984 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-2508 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 91 (|has| |#1| (-562)))) (-3548 (($ $ (-928)) NIL)) (-2688 (((-413 (-959 |#1|)) $) NIL)) (-4272 (((-1182 (-413 (-959 |#1|))) $) 87 (|has| (-413 (-959 |#1|)) (-562)))) (-4219 (((-413 (-959 |#1|)) (-1277 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-3231 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-3809 (((-112)) NIL)) (-4268 (((-1168) $) NIL)) (-3303 (((-112)) NIL)) (-1493 (((-112)) NIL)) (-1694 (((-112)) NIL)) (-3479 (((-1129) $) NIL)) (-2052 (((-413 (-959 |#1|)) $ $) 78 (|has| |#1| (-562)))) (-3628 (((-413 (-959 |#1|)) $) 102 (|has| |#1| (-562)))) (-2587 (((-413 (-959 |#1|)) $) 106 (|has| |#1| (-562)))) (-1683 (((-1182 (-413 (-959 |#1|))) $) 96 (|has| |#1| (-562)))) (-3772 (((-413 (-959 |#1|))) 79 (|has| |#1| (-562)))) (-1973 (((-413 (-959 |#1|)) $ $) 71 (|has| |#1| (-562)))) (-3338 (((-413 (-959 |#1|)) $) 101 (|has| |#1| (-562)))) (-4026 (((-413 (-959 |#1|)) $) 105 (|has| |#1| (-562)))) (-4149 (((-1182 (-413 (-959 |#1|))) $) 95 (|has| |#1| (-562)))) (-2416 (((-413 (-959 |#1|))) 75 (|has| |#1| (-562)))) (-3563 (($) 112) (($ (-1186)) 120) (($ (-1277 (-1186))) 119) (($ (-1277 $)) 107) (($ (-1186) (-1277 $)) 118) (($ (-1277 (-1186)) (-1277 $)) 117)) (-2851 (((-112)) NIL)) (-1877 (((-413 (-959 |#1|)) $ (-570)) NIL)) (-1533 (((-1277 (-413 (-959 |#1|))) $ (-1277 $)) 109) (((-695 (-413 (-959 |#1|))) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 (-959 |#1|))) $) 45) (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL)) (-1417 (((-1277 (-413 (-959 |#1|))) $) NIL) (($ (-1277 (-413 (-959 |#1|)))) 42)) (-1334 (((-650 (-959 (-413 (-959 |#1|)))) (-1277 $)) NIL) (((-650 (-959 (-413 (-959 |#1|))))) NIL) (((-650 (-959 |#1|)) (-1277 $)) 110 (|has| |#1| (-562))) (((-650 (-959 |#1|))) 111 (|has| |#1| (-562)))) (-2522 (($ $ $) NIL)) (-2024 (((-112)) NIL)) (-3735 (((-868) $) NIL) (($ (-1277 (-413 (-959 |#1|)))) NIL)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) 67)) (-2934 (((-650 (-1277 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-1483 (($ $ $ $) NIL)) (-4004 (((-112)) NIL)) (-3381 (($ (-695 (-413 (-959 |#1|))) $) NIL)) (-3619 (($ $ $) NIL)) (-4015 (((-112)) NIL)) (-3596 (((-112)) NIL)) (-2208 (((-112)) NIL)) (-1814 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) 108)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 63) (($ $ (-413 (-959 |#1|))) NIL) (($ (-413 (-959 |#1|)) $) NIL) (($ (-1151 |#2| (-413 (-959 |#1|))) $) NIL)))
+(((-459 |#1| |#2| |#3| |#4|) (-13 (-423 (-413 (-959 |#1|))) (-654 (-1151 |#2| (-413 (-959 |#1|)))) (-10 -8 (-15 -3735 ($ (-1277 (-413 (-959 |#1|))))) (-15 -4282 ((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed"))) (-15 -2830 ((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed"))) (-15 -3563 ($)) (-15 -3563 ($ (-1186))) (-15 -3563 ($ (-1277 (-1186)))) (-15 -3563 ($ (-1277 $))) (-15 -3563 ($ (-1186) (-1277 $))) (-15 -3563 ($ (-1277 (-1186)) (-1277 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -2508 ((-1182 (-413 (-959 |#1|))))) (-15 -4149 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3338 ((-413 (-959 |#1|)) $)) (-15 -4026 ((-413 (-959 |#1|)) $)) (-15 -2693 ((-1182 (-413 (-959 |#1|))))) (-15 -1683 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3628 ((-413 (-959 |#1|)) $)) (-15 -2587 ((-413 (-959 |#1|)) $)) (-15 -1973 ((-413 (-959 |#1|)) $ $)) (-15 -2416 ((-413 (-959 |#1|)))) (-15 -2052 ((-413 (-959 |#1|)) $ $)) (-15 -3772 ((-413 (-959 |#1|)))) (-15 -1334 ((-650 (-959 |#1|)) (-1277 $))) (-15 -1334 ((-650 (-959 |#1|))))) |%noBranch|))) (-174) (-928) (-650 (-1186)) (-1277 (-695 |#1|))) (T -459))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 *3)))) (-4 *3 (-174)) (-14 *6 (-1277 (-695 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))))) (-4282 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -2003 (-650 (-459 *3 *4 *5 *6))))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-2830 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -2003 (-650 (-459 *3 *4 *5 *6))))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-3563 (*1 *1) (-12 (-5 *1 (-459 *2 *3 *4 *5)) (-4 *2 (-174)) (-14 *3 (-928)) (-14 *4 (-650 (-1186))) (-14 *5 (-1277 (-695 *2))))) (-3563 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 *2)) (-14 *6 (-1277 (-695 *3))))) (-3563 (*1 *1 *2) (-12 (-5 *2 (-1277 (-1186))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-3563 (*1 *1 *2) (-12 (-5 *2 (-1277 (-459 *3 *4 *5 *6))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-3563 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-459 *4 *5 *6 *7))) (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928)) (-14 *6 (-650 *2)) (-14 *7 (-1277 (-695 *4))))) (-3563 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 (-1186))) (-5 *3 (-1277 (-459 *4 *5 *6 *7))) (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928)) (-14 *6 (-650 (-1186))) (-14 *7 (-1277 (-695 *4))))) (-2508 (*1 *2) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-4149 (*1 *2 *1) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-3338 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-4026 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-2693 (*1 *2) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-1683 (*1 *2 *1) (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-3628 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-2587 (*1 *2 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-1973 (*1 *2 *1 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-2416 (*1 *2) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-2052 (*1 *2 *1 *1) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-3772 (*1 *2) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))) (-1334 (*1 *2 *3) (-12 (-5 *3 (-1277 (-459 *4 *5 *6 *7))) (-5 *2 (-650 (-959 *4))) (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-562)) (-4 *4 (-174)) (-14 *5 (-928)) (-14 *6 (-650 (-1186))) (-14 *7 (-1277 (-695 *4))))) (-1334 (*1 *2) (-12 (-5 *2 (-650 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(-13 (-423 (-413 (-959 |#1|))) (-654 (-1151 |#2| (-413 (-959 |#1|)))) (-10 -8 (-15 -3735 ($ (-1277 (-413 (-959 |#1|))))) (-15 -4282 ((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed"))) (-15 -2830 ((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed"))) (-15 -3563 ($)) (-15 -3563 ($ (-1186))) (-15 -3563 ($ (-1277 (-1186)))) (-15 -3563 ($ (-1277 $))) (-15 -3563 ($ (-1186) (-1277 $))) (-15 -3563 ($ (-1277 (-1186)) (-1277 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -2508 ((-1182 (-413 (-959 |#1|))))) (-15 -4149 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3338 ((-413 (-959 |#1|)) $)) (-15 -4026 ((-413 (-959 |#1|)) $)) (-15 -2693 ((-1182 (-413 (-959 |#1|))))) (-15 -1683 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3628 ((-413 (-959 |#1|)) $)) (-15 -2587 ((-413 (-959 |#1|)) $)) (-15 -1973 ((-413 (-959 |#1|)) $ $)) (-15 -2416 ((-413 (-959 |#1|)))) (-15 -2052 ((-413 (-959 |#1|)) $ $)) (-15 -3772 ((-413 (-959 |#1|)))) (-15 -1334 ((-650 (-959 |#1|)) (-1277 $))) (-15 -1334 ((-650 (-959 |#1|))))) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 18)) (-1713 (((-650 (-870 |#1|)) $) 90)) (-3702 (((-1182 $) $ (-870 |#1|)) 55) (((-1182 |#2|) $) 140)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-1345 (($ $) NIL (|has| |#2| (-562)))) (-1372 (((-112) $) NIL (|has| |#2| (-562)))) (-2200 (((-777) $) 27) (((-777) $ (-650 (-870 |#1|))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3252 (($ $) NIL (|has| |#2| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) 53) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) 51) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3383 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1727 (($ $ (-650 (-570))) 96)) (-1891 (($ $) 83)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#2| (-916)))) (-3382 (($ $ |#2| |#3| $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) 68)) (-1705 (($ (-1182 |#2|) (-870 |#1|)) 145) (($ (-1182 $) (-870 |#1|)) 61)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) 71)) (-3872 (($ |#2| |#3|) 38) (($ $ (-870 |#1|) (-777)) 40) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-870 |#1|)) NIL)) (-2730 ((|#3| $) NIL) (((-777) $ (-870 |#1|)) 59) (((-650 (-777)) $ (-650 (-870 |#1|))) 66)) (-2206 (($ (-1 |#3| |#3|) $) NIL)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-2645 (((-3 (-870 |#1|) "failed") $) 48)) (-1857 (($ $) NIL)) (-1865 ((|#2| $) 50)) (-1847 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3011 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) 49)) (-1846 ((|#2| $) 138)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) 151 (|has| |#2| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) 103) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) 109) (($ $ (-870 |#1|) $) 101) (($ $ (-650 (-870 |#1|)) (-650 $)) 127)) (-3290 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) 62) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3221 ((|#3| $) 82) (((-777) $ (-870 |#1|)) 45) (((-650 (-777)) $ (-650 (-870 |#1|))) 65)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3621 ((|#2| $) 147 (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) 175) (($ (-570)) NIL) (($ |#2|) 102) (($ (-870 |#1|)) 42) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ |#3|) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1814 (($) 22 T CONST)) (-1824 (($) 31 T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) 79 (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 133)) (** (($ $ (-928)) NIL) (($ $ (-777)) 131)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 39) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) 78) (($ $ |#2|) NIL)))
+(((-460 |#1| |#2| |#3|) (-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -1727 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058) (-240 (-2426 |#1|) (-777))) (T -460))
+((-1727 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-14 *3 (-650 (-1186))) (-5 *1 (-460 *3 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-240 (-2426 *3) (-777))))))
+(-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -1727 ($ $ (-650 (-570))))))
+((-3587 (((-112) |#1| (-650 |#2|)) 93)) (-3118 (((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|)) 102)) (-1777 (((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|))) 104)) (-2979 ((|#2| |#2| |#1|) 35)) (-4152 (((-777) |#2| (-650 |#2|)) 26)))
+(((-461 |#1| |#2|) (-10 -7 (-15 -2979 (|#2| |#2| |#1|)) (-15 -4152 ((-777) |#2| (-650 |#2|))) (-15 -3118 ((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -1777 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|)))) (-15 -3587 ((-112) |#1| (-650 |#2|)))) (-311) (-1253 |#1|)) (T -461))
+((-3587 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *5)) (-4 *5 (-1253 *3)) (-4 *3 (-311)) (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))) (-1777 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1277 (-650 *3))) (-4 *4 (-311)) (-5 *2 (-650 *3)) (-5 *1 (-461 *4 *3)) (-4 *3 (-1253 *4)))) (-3118 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-311)) (-4 *6 (-1253 *4)) (-5 *2 (-1277 (-650 *6))) (-5 *1 (-461 *4 *6)) (-5 *5 (-650 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-311)) (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))) (-2979 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-461 *3 *2)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -2979 (|#2| |#2| |#1|)) (-15 -4152 ((-777) |#2| (-650 |#2|))) (-15 -3118 ((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -1777 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|)))) (-15 -3587 ((-112) |#1| (-650 |#2|))))
+((-3739 (((-424 |#5|) |#5|) 24)))
+(((-462 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3739 ((-424 |#5|) |#5|))) (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186))))) (-799) (-562) (-562) (-956 |#4| |#2| |#1|)) (T -462))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *5 (-799)) (-4 *7 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-462 *4 *5 *6 *7 *3)) (-4 *6 (-562)) (-4 *3 (-956 *7 *5 *4)))))
+(-10 -7 (-15 -3739 ((-424 |#5|) |#5|)))
+((-2366 ((|#3|) 38)) (-2092 (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 34)))
+(((-463 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2092 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -2366 (|#3|))) (-799) (-856) (-916) (-956 |#3| |#1| |#2|)) (T -463))
+((-2366 (*1 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-916)) (-5 *1 (-463 *3 *4 *2 *5)) (-4 *5 (-956 *2 *3 *4)))) (-2092 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-916)) (-5 *1 (-463 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2092 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -2366 (|#3|)))
+((-3739 (((-424 (-1182 |#1|)) (-1182 |#1|)) 43)))
+(((-464 |#1|) (-10 -7 (-15 -3739 ((-424 (-1182 |#1|)) (-1182 |#1|)))) (-311)) (T -464))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 (-1182 *4))) (-5 *1 (-464 *4)) (-5 *3 (-1182 *4)))))
+(-10 -7 (-15 -3739 ((-424 (-1182 |#1|)) (-1182 |#1|))))
+((-1781 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777))) 44) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777))) 43) (((-52) |#2| (-1186) (-298 |#2|)) 36) (((-52) (-1 |#2| (-570)) (-298 |#2|)) 29)) (-3253 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 88) (((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 87) (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570))) 86) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570))) 85) (((-52) |#2| (-1186) (-298 |#2|)) 80) (((-52) (-1 |#2| (-570)) (-298 |#2|)) 79)) (-1805 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 74) (((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 72)) (-1793 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570))) 51) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570))) 50)))
+(((-465 |#1| |#2|) (-10 -7 (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777)))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777)))) (-15 -1793 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -1793 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -1805 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -1805 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3253 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3253 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3253 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -3253 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -3253 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3253 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -465))
+((-3253 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-413 (-570)))) (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *8))) (-4 *8 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *8 *3)))) (-3253 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-413 (-570)))) (-5 *4 (-298 *8)) (-5 *5 (-1244 (-413 (-570)))) (-5 *6 (-413 (-570))) (-4 *8 (-13 (-27) (-1212) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *8)))) (-3253 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *3)))) (-3253 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1244 (-570))) (-4 *7 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *7)))) (-3253 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *3)))) (-3253 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-570))) (-5 *4 (-298 *6)) (-4 *6 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *5 *6)))) (-1805 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-413 (-570)))) (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *8))) (-4 *8 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *8 *3)))) (-1805 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-413 (-570)))) (-5 *4 (-298 *8)) (-5 *5 (-1244 (-413 (-570)))) (-5 *6 (-413 (-570))) (-4 *8 (-13 (-27) (-1212) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *8)))) (-1793 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *3)))) (-1793 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1244 (-570))) (-4 *7 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *7)))) (-1781 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-777))) (-4 *3 (-13 (-27) (-1212) (-436 *7))) (-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *7 *3)))) (-1781 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1244 (-777))) (-4 *7 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *7)))) (-1781 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *6 *3)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-570))) (-5 *4 (-298 *6)) (-4 *6 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52)) (-5 *1 (-465 *5 *6)))))
+(-10 -7 (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1781 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777)))) (-15 -1781 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777)))) (-15 -1793 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -1793 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -1805 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -1805 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3253 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3253 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3253 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -3253 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -3253 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3253 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))))
+((-2979 ((|#2| |#2| |#1|) 15)) (-2930 (((-650 |#2|) |#2| (-650 |#2|) |#1| (-928)) 82)) (-4206 (((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928)) 72)))
+(((-466 |#1| |#2|) (-10 -7 (-15 -4206 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -2930 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -2979 (|#2| |#2| |#1|))) (-311) (-1253 |#1|)) (T -466))
+((-2979 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-466 *3 *2)) (-4 *2 (-1253 *3)))) (-2930 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-650 *3)) (-5 *5 (-928)) (-4 *3 (-1253 *4)) (-4 *4 (-311)) (-5 *1 (-466 *4 *3)))) (-4206 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-928)) (-4 *5 (-311)) (-4 *3 (-1253 *5)) (-5 *2 (-2 (|:| |plist| (-650 *3)) (|:| |modulo| *5))) (-5 *1 (-466 *5 *3)) (-5 *4 (-650 *3)))))
+(-10 -7 (-15 -4206 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -2930 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -2979 (|#2| |#2| |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 28)) (-3800 (($ |#3|) 25)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1891 (($ $) 32)) (-4214 (($ |#2| |#4| $) 33)) (-3872 (($ |#2| (-719 |#3| |#4| |#5|)) 24)) (-1857 (((-719 |#3| |#4| |#5|) $) 15)) (-3154 ((|#3| $) 19)) (-3021 ((|#4| $) 17)) (-1865 ((|#2| $) 29)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1978 (($ |#2| |#3| |#4|) 26)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 36 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 34)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-467 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-723 |#6|) (-723 |#2|) (-10 -8 (-15 -1865 (|#2| $)) (-15 -1857 ((-719 |#3| |#4| |#5|) $)) (-15 -3021 (|#4| $)) (-15 -3154 (|#3| $)) (-15 -1891 ($ $)) (-15 -3872 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -3800 ($ |#3|)) (-15 -1978 ($ |#2| |#3| |#4|)) (-15 -4214 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-650 (-1186)) (-174) (-856) (-240 (-2426 |#1|) (-777)) (-1 (-112) (-2 (|:| -2160 |#3|) (|:| -3011 |#4|)) (-2 (|:| -2160 |#3|) (|:| -3011 |#4|))) (-956 |#2| |#4| (-870 |#1|))) (T -467))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2426 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *6)) (-2 (|:| -2160 *5) (|:| -3011 *6)))) (-5 *1 (-467 *3 *4 *5 *6 *7 *2)) (-4 *5 (-856)) (-4 *2 (-956 *4 *6 (-870 *3))))) (-1865 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2426 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2160 *4) (|:| -3011 *5)) (-2 (|:| -2160 *4) (|:| -3011 *5)))) (-4 *2 (-174)) (-5 *1 (-467 *3 *2 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *2 *5 (-870 *3))))) (-1857 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2426 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *6)) (-2 (|:| -2160 *5) (|:| -3011 *6)))) (-5 *2 (-719 *5 *6 *7)) (-5 *1 (-467 *3 *4 *5 *6 *7 *8)) (-4 *5 (-856)) (-4 *8 (-956 *4 *6 (-870 *3))))) (-3021 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-14 *6 (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *2)) (-2 (|:| -2160 *5) (|:| -3011 *2)))) (-4 *2 (-240 (-2426 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7)) (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))) (-3154 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2426 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *5)) (-2 (|:| -2160 *2) (|:| -3011 *5)))) (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1891 (*1 *1 *1) (-12 (-14 *2 (-650 (-1186))) (-4 *3 (-174)) (-4 *5 (-240 (-2426 *2) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2160 *4) (|:| -3011 *5)) (-2 (|:| -2160 *4) (|:| -3011 *5)))) (-5 *1 (-467 *2 *3 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *3 *5 (-870 *2))))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-719 *5 *6 *7)) (-4 *5 (-856)) (-4 *6 (-240 (-2426 *4) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *6)) (-2 (|:| -2160 *5) (|:| -3011 *6)))) (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-5 *1 (-467 *4 *2 *5 *6 *7 *8)) (-4 *8 (-956 *2 *6 (-870 *4))))) (-3800 (*1 *1 *2) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2426 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *5)) (-2 (|:| -2160 *2) (|:| -3011 *5)))) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *2 (-856)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1978 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174)) (-4 *4 (-240 (-2426 *5) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2160 *3) (|:| -3011 *4)) (-2 (|:| -2160 *3) (|:| -3011 *4)))) (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856)) (-4 *7 (-956 *2 *4 (-870 *5))))) (-4214 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-4 *3 (-240 (-2426 *4) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *3)) (-2 (|:| -2160 *5) (|:| -3011 *3)))) (-5 *1 (-467 *4 *2 *5 *3 *6 *7)) (-4 *5 (-856)) (-4 *7 (-956 *2 *3 (-870 *4))))))
+(-13 (-723 |#6|) (-723 |#2|) (-10 -8 (-15 -1865 (|#2| $)) (-15 -1857 ((-719 |#3| |#4| |#5|) $)) (-15 -3021 (|#4| $)) (-15 -3154 (|#3| $)) (-15 -1891 ($ $)) (-15 -3872 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -3800 ($ |#3|)) (-15 -1978 ($ |#2| |#3| |#4|)) (-15 -4214 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-2817 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 39)))
+(((-468 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2817 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-1047 (-413 (-570))) (-368) (-10 -8 (-15 -3735 ($ |#4|)) (-15 -4399 (|#4| $)) (-15 -4413 (|#4| $))))) (T -468))
+((-2817 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-856)) (-4 *5 (-799)) (-4 *6 (-562)) (-4 *7 (-956 *6 *5 *3)) (-5 *1 (-468 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1047 (-413 (-570))) (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
+(-10 -7 (-15 -2817 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-2417 (((-112) $ $) NIL)) (-1713 (((-650 |#3|) $) 41)) (-2977 (((-112) $) NIL)) (-3873 (((-112) $) NIL (|has| |#1| (-562)))) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-1425 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2391 (((-112) $) NIL (|has| |#1| (-562)))) (-1475 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2993 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2376 (((-112) $) NIL (|has| |#1| (-562)))) (-2996 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 49)) (-3080 (($ (-650 |#4|)) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1703 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4449)))) (-2835 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-2451 ((|#3| $) 47)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#4|) $) 14 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 21)) (-2881 (((-650 |#3|) $) NIL)) (-3710 (((-112) |#3| $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3479 (((-1129) $) NIL)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2697 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 39)) (-3006 (($) 17)) (-3490 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) 16)) (-1417 (((-542) $) NIL (|has| |#4| (-620 (-542)))) (($ (-650 |#4|)) 51)) (-3749 (($ (-650 |#4|)) 13)) (-3408 (($ $ |#3|) NIL)) (-4164 (($ $ |#3|) NIL)) (-1842 (($ $ |#3|) NIL)) (-3735 (((-868) $) 38) (((-650 |#4|) $) 50)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 30)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-469 |#1| |#2| |#3| |#4|) (-13 (-985 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1417 ($ (-650 |#4|))) (-6 -4449) (-6 -4450))) (-1058) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -469))
+((-1417 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-469 *3 *4 *5 *6)))))
+(-13 (-985 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1417 ($ (-650 |#4|))) (-6 -4449) (-6 -4450)))
+((-1814 (($) 11)) (-1824 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-470 |#1| |#2| |#3|) (-10 -8 (-15 -1824 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1814 (|#1|))) (-471 |#2| |#3|) (-174) (-23)) (T -470))
+NIL
+(-10 -8 (-15 -1824 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1814 (|#1|)))
+((-2417 (((-112) $ $) 7)) (-4379 (((-3 |#1| "failed") $) 27)) (-3080 ((|#1| $) 28)) (-3144 (($ $ $) 24)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3221 ((|#2| $) 20)) (-3735 (((-868) $) 12) (($ |#1|) 26)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 25 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 16) (($ $ $) 14)) (-2953 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
(((-471 |#1| |#2|) (-141) (-174) (-23)) (T -471))
-((-1823 (*1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2213 (*1 *1 *1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))))
-(-13 (-476 |t#1| |t#2|) (-1047 |t#1|) (-10 -8 (-15 (-1823) ($) -3640) (-15 -2213 ($ $ $))))
+((-1824 (*1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-3144 (*1 *1 *1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))))
+(-13 (-476 |t#1| |t#2|) (-1047 |t#1|) (-10 -8 (-15 (-1824) ($) -3640) (-15 -3144 ($ $ $))))
(((-102) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-476 |#1| |#2|) . T) ((-1047 |#1|) . T) ((-1109) . T))
-((-2023 (((-1276 (-1276 (-570))) (-1276 (-1276 (-570))) (-928)) 28)) (-1931 (((-1276 (-1276 (-570))) (-928)) 23)))
-(((-472) (-10 -7 (-15 -2023 ((-1276 (-1276 (-570))) (-1276 (-1276 (-570))) (-928))) (-15 -1931 ((-1276 (-1276 (-570))) (-928))))) (T -472))
-((-1931 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1276 (-1276 (-570)))) (-5 *1 (-472)))) (-2023 (*1 *2 *2 *3) (-12 (-5 *2 (-1276 (-1276 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
-(-10 -7 (-15 -2023 ((-1276 (-1276 (-570))) (-1276 (-1276 (-570))) (-928))) (-15 -1931 ((-1276 (-1276 (-570))) (-928))))
-((-1693 (((-570) (-570)) 32) (((-570)) 24)) (-2113 (((-570) (-570)) 28) (((-570)) 20)) (-2295 (((-570) (-570)) 30) (((-570)) 22)) (-4047 (((-112) (-112)) 14) (((-112)) 12)) (-2950 (((-112) (-112)) 13) (((-112)) 11)) (-1708 (((-112) (-112)) 26) (((-112)) 17)))
-(((-473) (-10 -7 (-15 -2950 ((-112))) (-15 -4047 ((-112))) (-15 -2950 ((-112) (-112))) (-15 -4047 ((-112) (-112))) (-15 -1708 ((-112))) (-15 -2295 ((-570))) (-15 -2113 ((-570))) (-15 -1693 ((-570))) (-15 -1708 ((-112) (-112))) (-15 -2295 ((-570) (-570))) (-15 -2113 ((-570) (-570))) (-15 -1693 ((-570) (-570))))) (T -473))
-((-1693 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2113 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2295 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-1708 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-1693 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2113 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2295 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-1708 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-4047 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2950 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-4047 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2950 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
-(-10 -7 (-15 -2950 ((-112))) (-15 -4047 ((-112))) (-15 -2950 ((-112) (-112))) (-15 -4047 ((-112) (-112))) (-15 -1708 ((-112))) (-15 -2295 ((-570))) (-15 -2113 ((-570))) (-15 -1693 ((-570))) (-15 -1708 ((-112) (-112))) (-15 -2295 ((-570) (-570))) (-15 -2113 ((-570) (-570))) (-15 -1693 ((-570) (-570))))
-((-2416 (((-112) $ $) NIL)) (-3087 (((-650 (-384)) $) 34) (((-650 (-384)) $ (-650 (-384))) 146)) (-2646 (((-650 (-1103 (-384))) $) 16) (((-650 (-1103 (-384))) $ (-650 (-1103 (-384)))) 142)) (-3461 (((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880))) 58)) (-2763 (((-650 (-650 (-950 (-227)))) $) 137)) (-3214 (((-1281) $ (-950 (-227)) (-880)) 163)) (-3562 (($ $) 136) (($ (-650 (-650 (-950 (-227))))) 149) (($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928))) 148) (($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266))) 150)) (-1903 (((-1168) $) NIL)) (-2013 (((-570) $) 110)) (-3479 (((-1129) $) NIL)) (-2073 (($) 147)) (-2870 (((-650 (-227)) (-650 (-650 (-950 (-227))))) 89)) (-3805 (((-1281) $ (-650 (-950 (-227))) (-880) (-880) (-928)) 155) (((-1281) $ (-950 (-227))) 157) (((-1281) $ (-950 (-227)) (-880) (-880) (-928)) 156)) (-3735 (((-868) $) 169) (($ (-650 (-650 (-950 (-227))))) 164)) (-1859 (((-112) $ $) NIL)) (-2582 (((-1281) $ (-950 (-227))) 162)) (-2872 (((-112) $ $) NIL)))
-(((-474) (-13 (-1109) (-10 -8 (-15 -2073 ($)) (-15 -3562 ($ $)) (-15 -3562 ($ (-650 (-650 (-950 (-227)))))) (-15 -3562 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -3562 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -2763 ((-650 (-650 (-950 (-227)))) $)) (-15 -2013 ((-570) $)) (-15 -2646 ((-650 (-1103 (-384))) $)) (-15 -2646 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3087 ((-650 (-384)) $)) (-15 -3087 ((-650 (-384)) $ (-650 (-384)))) (-15 -3805 ((-1281) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -3805 ((-1281) $ (-950 (-227)))) (-15 -3805 ((-1281) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -2582 ((-1281) $ (-950 (-227)))) (-15 -3214 ((-1281) $ (-950 (-227)) (-880))) (-15 -3735 ($ (-650 (-650 (-950 (-227)))))) (-15 -3735 ((-868) $)) (-15 -3461 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -2870 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))) (T -474))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-474)))) (-2073 (*1 *1) (-5 *1 (-474))) (-3562 (*1 *1 *1) (-5 *1 (-474))) (-3562 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-3562 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *4 (-650 (-928))) (-5 *1 (-474)))) (-3562 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *4 (-650 (-928))) (-5 *5 (-650 (-266))) (-5 *1 (-474)))) (-2763 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-474)))) (-2646 (*1 *2 *1) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-2646 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-3087 (*1 *2 *1) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-3087 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-3805 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *2 (-1281)) (-5 *1 (-474)))) (-3805 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1281)) (-5 *1 (-474)))) (-3805 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *2 (-1281)) (-5 *1 (-474)))) (-2582 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1281)) (-5 *1 (-474)))) (-3214 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1281)) (-5 *1 (-474)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-3461 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *1 (-474)))) (-2870 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227))) (-5 *1 (-474)))))
-(-13 (-1109) (-10 -8 (-15 -2073 ($)) (-15 -3562 ($ $)) (-15 -3562 ($ (-650 (-650 (-950 (-227)))))) (-15 -3562 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -3562 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -2763 ((-650 (-650 (-950 (-227)))) $)) (-15 -2013 ((-570) $)) (-15 -2646 ((-650 (-1103 (-384))) $)) (-15 -2646 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3087 ((-650 (-384)) $)) (-15 -3087 ((-650 (-384)) $ (-650 (-384)))) (-15 -3805 ((-1281) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -3805 ((-1281) $ (-950 (-227)))) (-15 -3805 ((-1281) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -2582 ((-1281) $ (-950 (-227)))) (-15 -3214 ((-1281) $ (-950 (-227)) (-880))) (-15 -3735 ($ (-650 (-650 (-950 (-227)))))) (-15 -3735 ((-868) $)) (-15 -3461 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -2870 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))
+((-1900 (((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928)) 28)) (-3286 (((-1277 (-1277 (-570))) (-928)) 23)))
+(((-472) (-10 -7 (-15 -1900 ((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928))) (-15 -3286 ((-1277 (-1277 (-570))) (-928))))) (T -472))
+((-3286 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 (-570)))) (-5 *1 (-472)))) (-1900 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 (-1277 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
+(-10 -7 (-15 -1900 ((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928))) (-15 -3286 ((-1277 (-1277 (-570))) (-928))))
+((-2915 (((-570) (-570)) 32) (((-570)) 24)) (-1560 (((-570) (-570)) 28) (((-570)) 20)) (-2764 (((-570) (-570)) 30) (((-570)) 22)) (-2929 (((-112) (-112)) 14) (((-112)) 12)) (-4135 (((-112) (-112)) 13) (((-112)) 11)) (-1928 (((-112) (-112)) 26) (((-112)) 17)))
+(((-473) (-10 -7 (-15 -4135 ((-112))) (-15 -2929 ((-112))) (-15 -4135 ((-112) (-112))) (-15 -2929 ((-112) (-112))) (-15 -1928 ((-112))) (-15 -2764 ((-570))) (-15 -1560 ((-570))) (-15 -2915 ((-570))) (-15 -1928 ((-112) (-112))) (-15 -2764 ((-570) (-570))) (-15 -1560 ((-570) (-570))) (-15 -2915 ((-570) (-570))))) (T -473))
+((-2915 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-1560 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2764 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-1928 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2915 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-1560 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2764 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-1928 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2929 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-4135 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2929 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-4135 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(-10 -7 (-15 -4135 ((-112))) (-15 -2929 ((-112))) (-15 -4135 ((-112) (-112))) (-15 -2929 ((-112) (-112))) (-15 -1928 ((-112))) (-15 -2764 ((-570))) (-15 -1560 ((-570))) (-15 -2915 ((-570))) (-15 -1928 ((-112) (-112))) (-15 -2764 ((-570) (-570))) (-15 -1560 ((-570) (-570))) (-15 -2915 ((-570) (-570))))
+((-2417 (((-112) $ $) NIL)) (-3087 (((-650 (-384)) $) 34) (((-650 (-384)) $ (-650 (-384))) 146)) (-1946 (((-650 (-1103 (-384))) $) 16) (((-650 (-1103 (-384))) $ (-650 (-1103 (-384)))) 142)) (-2189 (((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880))) 58)) (-1796 (((-650 (-650 (-950 (-227)))) $) 137)) (-3213 (((-1282) $ (-950 (-227)) (-880)) 163)) (-3810 (($ $) 136) (($ (-650 (-650 (-950 (-227))))) 149) (($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928))) 148) (($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266))) 150)) (-4268 (((-1168) $) NIL)) (-2013 (((-570) $) 110)) (-3479 (((-1129) $) NIL)) (-2336 (($) 147)) (-3427 (((-650 (-227)) (-650 (-650 (-950 (-227))))) 89)) (-2354 (((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928)) 155) (((-1282) $ (-950 (-227))) 157) (((-1282) $ (-950 (-227)) (-880) (-880) (-928)) 156)) (-3735 (((-868) $) 169) (($ (-650 (-650 (-950 (-227))))) 164)) (-3866 (((-112) $ $) NIL)) (-2509 (((-1282) $ (-950 (-227))) 162)) (-2872 (((-112) $ $) NIL)))
+(((-474) (-13 (-1109) (-10 -8 (-15 -2336 ($)) (-15 -3810 ($ $)) (-15 -3810 ($ (-650 (-650 (-950 (-227)))))) (-15 -3810 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -3810 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -1796 ((-650 (-650 (-950 (-227)))) $)) (-15 -2013 ((-570) $)) (-15 -1946 ((-650 (-1103 (-384))) $)) (-15 -1946 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3087 ((-650 (-384)) $)) (-15 -3087 ((-650 (-384)) $ (-650 (-384)))) (-15 -2354 ((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -2354 ((-1282) $ (-950 (-227)))) (-15 -2354 ((-1282) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -2509 ((-1282) $ (-950 (-227)))) (-15 -3213 ((-1282) $ (-950 (-227)) (-880))) (-15 -3735 ($ (-650 (-650 (-950 (-227)))))) (-15 -3735 ((-868) $)) (-15 -2189 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -3427 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))) (T -474))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-474)))) (-2336 (*1 *1) (-5 *1 (-474))) (-3810 (*1 *1 *1) (-5 *1 (-474))) (-3810 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-3810 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *4 (-650 (-928))) (-5 *1 (-474)))) (-3810 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *4 (-650 (-928))) (-5 *5 (-650 (-266))) (-5 *1 (-474)))) (-1796 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-474)))) (-1946 (*1 *2 *1) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-1946 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-3087 (*1 *2 *1) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-3087 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-2354 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-2354 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))) (-2354 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-2509 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))) (-3213 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2189 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *1 (-474)))) (-3427 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227))) (-5 *1 (-474)))))
+(-13 (-1109) (-10 -8 (-15 -2336 ($)) (-15 -3810 ($ $)) (-15 -3810 ($ (-650 (-650 (-950 (-227)))))) (-15 -3810 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -3810 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -1796 ((-650 (-650 (-950 (-227)))) $)) (-15 -2013 ((-570) $)) (-15 -1946 ((-650 (-1103 (-384))) $)) (-15 -1946 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3087 ((-650 (-384)) $)) (-15 -3087 ((-650 (-384)) $ (-650 (-384)))) (-15 -2354 ((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -2354 ((-1282) $ (-950 (-227)))) (-15 -2354 ((-1282) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -2509 ((-1282) $ (-950 (-227)))) (-15 -3213 ((-1282) $ (-950 (-227)) (-880))) (-15 -3735 ($ (-650 (-650 (-950 (-227)))))) (-15 -3735 ((-868) $)) (-15 -2189 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -3427 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))
((-2965 (($ $) NIL) (($ $ $) 11)))
(((-475 |#1| |#2| |#3|) (-10 -8 (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|))) (-476 |#2| |#3|) (-174) (-23)) (T -475))
NIL
(-10 -8 (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1601 ((|#2| $) 20)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 16) (($ $ $) 14)) (-2954 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3221 ((|#2| $) 20)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 16) (($ $ $) 14)) (-2953 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
(((-476 |#1| |#2|) (-141) (-174) (-23)) (T -476))
-((-1601 (*1 *2 *1) (-12 (-4 *1 (-476 *3 *2)) (-4 *3 (-174)) (-4 *2 (-23)))) (-1812 (*1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2965 (*1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2954 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2965 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))))
-(-13 (-1109) (-10 -8 (-15 -1601 (|t#2| $)) (-15 (-1812) ($) -3640) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -2965 ($ $)) (-15 -2954 ($ $ $)) (-15 -2965 ($ $ $))))
+((-3221 (*1 *2 *1) (-12 (-4 *1 (-476 *3 *2)) (-4 *3 (-174)) (-4 *2 (-23)))) (-1814 (*1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2965 (*1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2953 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-2965 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))))
+(-13 (-1109) (-10 -8 (-15 -3221 (|t#2| $)) (-15 (-1814) ($) -3640) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -2965 ($ $)) (-15 -2953 ($ $ $)) (-15 -2965 ($ $ $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3604 (((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|))) 134)) (-2518 (((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 131)) (-2017 (((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 86)))
-(((-477 |#1| |#2| |#3|) (-10 -7 (-15 -2518 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -3604 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2017 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))))) (-650 (-1186)) (-458) (-458)) (T -477))
-((-2017 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-2 (|:| |dpolys| (-650 (-249 *5 *6))) (|:| |coords| (-650 (-570))))) (-5 *1 (-477 *5 *6 *7)) (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))) (-3604 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-650 (-870 *4))) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-477 *4 *5 *6)) (-4 *6 (-458)))) (-2518 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-650 (-650 (-249 *5 *6)))) (-5 *1 (-477 *5 *6 *7)) (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))))
-(-10 -7 (-15 -2518 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -3604 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2017 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))))
-((-3413 (((-3 $ "failed") $) 11)) (-3684 (($ $ $) 23)) (-3688 (($ $ $) 24)) (-2975 (($ $ $) 9)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 22)))
-(((-478 |#1|) (-10 -8 (-15 -3688 (|#1| |#1| |#1|)) (-15 -3684 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-479)) (T -478))
-NIL
-(-10 -8 (-15 -3688 (|#1| |#1| |#1|)) (-15 -3684 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-2450 (($) 19 T CONST)) (-3413 (((-3 $ "failed") $) 16)) (-2081 (((-112) $) 18)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 25)) (-3479 (((-1129) $) 11)) (-3684 (($ $ $) 22)) (-3688 (($ $ $) 21)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1823 (($) 20 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
+((-4216 (((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|))) 134)) (-3108 (((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 131)) (-2939 (((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 86)))
+(((-477 |#1| |#2| |#3|) (-10 -7 (-15 -3108 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -4216 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2939 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))))) (-650 (-1186)) (-458) (-458)) (T -477))
+((-2939 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-2 (|:| |dpolys| (-650 (-249 *5 *6))) (|:| |coords| (-650 (-570))))) (-5 *1 (-477 *5 *6 *7)) (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))) (-4216 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-650 (-870 *4))) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-477 *4 *5 *6)) (-4 *6 (-458)))) (-3108 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-650 (-650 (-249 *5 *6)))) (-5 *1 (-477 *5 *6 *7)) (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))))
+(-10 -7 (-15 -3108 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -4216 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2939 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))))
+((-2937 (((-3 $ "failed") $) 11)) (-2488 (($ $ $) 23)) (-2522 (($ $ $) 24)) (-2975 (($ $ $) 9)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 22)))
+(((-478 |#1|) (-10 -8 (-15 -2522 (|#1| |#1| |#1|)) (-15 -2488 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-479)) (T -478))
+NIL
+(-10 -8 (-15 -2522 (|#1| |#1| |#1|)) (-15 -2488 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
+((-2417 (((-112) $ $) 7)) (-3761 (($) 19 T CONST)) (-2937 (((-3 $ "failed") $) 16)) (-4340 (((-112) $) 18)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 25)) (-3479 (((-1129) $) 11)) (-2488 (($ $ $) 22)) (-2522 (($ $ $) 21)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1824 (($) 20 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
(((-479) (-141)) (T -479))
-((-1825 (*1 *1 *1) (-4 *1 (-479))) (-2975 (*1 *1 *1 *1) (-4 *1 (-479))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-479)) (-5 *2 (-570)))) (-3684 (*1 *1 *1 *1) (-4 *1 (-479))) (-3688 (*1 *1 *1 *1) (-4 *1 (-479))))
-(-13 (-732) (-10 -8 (-15 -1825 ($ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ (-570))) (-6 -4445) (-15 -3684 ($ $ $)) (-15 -3688 ($ $ $))))
+((-1826 (*1 *1 *1) (-4 *1 (-479))) (-2975 (*1 *1 *1 *1) (-4 *1 (-479))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-479)) (-5 *2 (-570)))) (-2488 (*1 *1 *1 *1) (-4 *1 (-479))) (-2522 (*1 *1 *1 *1) (-4 *1 (-479))))
+(-13 (-732) (-10 -8 (-15 -1826 ($ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ (-570))) (-6 -4446) (-15 -2488 ($ $ $)) (-15 -2522 ($ $ $))))
(((-102) . T) ((-619 (-868)) . T) ((-732) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 18)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) 25)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-3555 (($ $) 29 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 35 (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 30 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) NIL)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) 28 (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 14 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $ (-1272 |#2|)) 16)) (-1601 (((-413 (-570)) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1272 |#2|)) NIL) (($ (-1261 |#1| |#2| |#3|)) 9) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 21)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 27)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 26) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-480 |#1| |#2| |#3|) (-13 (-1257 |#1|) (-10 -8 (-15 -3735 ($ (-1272 |#2|))) (-15 -3735 ($ (-1261 |#1| |#2| |#3|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -480))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1261 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-480 *3 *4 *5)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1257 |#1|) (-10 -8 (-15 -3735 ($ (-1272 |#2|))) (-15 -3735 ($ (-1261 |#1| |#2| |#3|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#2| $ |#1| |#2|) 18)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) 19)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) 16)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2760 (((-650 |#1|) $) NIL)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2344 (((-650 |#1|) $) NIL)) (-1354 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-481 |#1| |#2| |#3| |#4|) (-1202 |#1| |#2|) (-1109) (-1109) (-1202 |#1| |#2|) |#2|) (T -481))
-NIL
-(-1202 |#1| |#2|)
-((-2416 (((-112) $ $) NIL)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) NIL)) (-2411 (((-650 $) (-650 |#4|)) NIL)) (-1716 (((-650 |#3|) $) NIL)) (-3418 (((-112) $) NIL)) (-1536 (((-112) $) NIL (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1424 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) NIL)) (-2450 (($) NIL T CONST)) (-3809 (((-112) $) 29 (|has| |#1| (-562)))) (-2730 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1905 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2374 (((-112) $) NIL (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3742 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 45)) (-2561 ((|#4| |#4| $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-1702 (($ |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1808 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) NIL)) (-2836 (((-650 |#4|) $) 18 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2711 ((|#3| $) 38)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#4|) $) 19 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 23)) (-3727 (((-650 |#3|) $) NIL)) (-1844 (((-112) |#3| $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-1728 (((-3 |#4| "failed") $) 42)) (-3185 (((-650 |#4|) $) NIL)) (-1329 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1695 ((|#4| |#4| $) NIL)) (-4122 (((-112) $ $) NIL)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3339 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 40)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3802 (((-3 $ "failed") $ |#4|) 58)) (-1558 (($ $ |#4|) NIL)) (-1671 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 17)) (-3743 (($) 14)) (-1601 (((-777) $) NIL)) (-3486 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) 13)) (-1416 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 22)) (-4280 (($ $ |#3|) 52)) (-2185 (($ $ |#3|) 54)) (-1892 (($ $) NIL)) (-1332 (($ $ |#3|) NIL)) (-3735 (((-868) $) 35) (((-650 |#4|) $) 46)) (-1633 (((-777) $) NIL (|has| |#3| (-373)))) (-1859 (((-112) $ $) NIL)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4368 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) NIL)) (-2663 (((-112) |#3| $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-482 |#1| |#2| |#3| |#4|) (-1219 |#1| |#2| |#3| |#4|) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -482))
-NIL
-(-1219 |#1| |#2| |#3| |#4|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1314 (($) 17)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-1416 (((-384) $) 21) (((-227) $) 24) (((-413 (-1182 (-570))) $) 18) (((-542) $) 53)) (-3735 (((-868) $) 51) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (((-227) $) 23) (((-384) $) 20)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 37 T CONST)) (-1823 (($) 8 T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-483) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))) (-1031) (-619 (-227)) (-619 (-384)) (-620 (-413 (-1182 (-570)))) (-620 (-542)) (-10 -8 (-15 -1314 ($))))) (T -483))
-((-1314 (*1 *1) (-5 *1 (-483))))
-(-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))) (-1031) (-619 (-227)) (-619 (-384)) (-620 (-413 (-1182 (-570)))) (-620 (-542)) (-10 -8 (-15 -1314 ($))))
-((-2416 (((-112) $ $) NIL)) (-2121 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-484) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))) (T -484))
-((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))))
-(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#2| $ |#1| |#2|) 16)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) 20)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) 18)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2760 (((-650 |#1|) $) 13)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2344 (((-650 |#1|) $) NIL)) (-1354 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 19)) (-1876 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 11 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) 15 (|has| $ (-6 -4448)))))
-(((-485 |#1| |#2| |#3|) (-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448))) (-1109) (-1109) (-1168)) (T -485))
-NIL
-(-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448)))
-((-4388 (((-570) (-570) (-570)) 19)) (-2994 (((-112) (-570) (-570) (-570) (-570)) 28)) (-1346 (((-1276 (-650 (-570))) (-777) (-777)) 44)))
-(((-486) (-10 -7 (-15 -4388 ((-570) (-570) (-570))) (-15 -2994 ((-112) (-570) (-570) (-570) (-570))) (-15 -1346 ((-1276 (-650 (-570))) (-777) (-777))))) (T -486))
-((-1346 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1276 (-650 (-570)))) (-5 *1 (-486)))) (-2994 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))) (-4388 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
-(-10 -7 (-15 -4388 ((-570) (-570) (-570))) (-15 -2994 ((-112) (-570) (-570) (-570) (-570))) (-15 -1346 ((-1276 (-650 (-570))) (-777) (-777))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-870 |#1|)) $) NIL)) (-3703 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3171 (($ $) NIL (|has| |#2| (-562)))) (-2720 (((-112) $) NIL (|has| |#2| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2222 (($ $) NIL (|has| |#2| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#2| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-1939 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-2429 (($ $ (-650 (-570))) NIL)) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#2| (-916)))) (-3007 (($ $ |#2| (-488 (-2426 |#1|) (-777)) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#2| (-488 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-870 |#1|)) NIL)) (-4341 (((-488 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-4414 (($ (-1 (-488 (-2426 |#1|) (-777)) (-488 (-2426 |#1|) (-777))) $) NIL)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3382 (((-3 (-870 |#1|) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#2| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -1907 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#2| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) NIL) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) NIL) (($ $ (-870 |#1|) $) NIL) (($ $ (-650 (-870 |#1|)) (-650 $)) NIL)) (-2998 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1601 (((-488 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3030 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-488 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-487 |#1| |#2|) (-13 (-956 |#2| (-488 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2429 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -487))
-((-2429 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-487 *3 *4)) (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
-(-13 (-956 |#2| (-488 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2429 ($ $ (-650 (-570))))))
-((-2416 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4028 (((-112) $) NIL (|has| |#2| (-132)))) (-3561 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3947 (($ $ $) NIL (|has| |#2| (-799)))) (-3596 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#2| (-373)))) (-3140 (((-570) $) NIL (|has| |#2| (-854)))) (-3895 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) NIL (|has| |#2| (-1109)))) (-4177 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-3413 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3336 (($) NIL (|has| |#2| (-373)))) (-3790 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ (-570)) 15)) (-1522 (((-112) $) NIL (|has| |#2| (-854)))) (-2836 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL (|has| |#2| (-732)))) (-2761 (((-112) $) NIL (|has| |#2| (-854)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2849 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#2| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-2159 (($ (-928)) NIL (|has| |#2| (-373)))) (-3479 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3443 ((|#2| $) NIL (|has| (-570) (-856)))) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-2809 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3791 (($ (-1276 |#2|)) NIL)) (-2184 (((-135)) NIL (|has| |#2| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-3486 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1276 |#2|) $) NIL) (($ (-570)) NIL (-2740 (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) NIL (|has| |#2| (-1109))) (((-868) $) NIL (|has| |#2| (-619 (-868))))) (-2744 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-1859 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4368 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1423 (($ $) NIL (|has| |#2| (-854)))) (-1812 (($) NIL (|has| |#2| (-132)) CONST)) (-1823 (($) NIL (|has| |#2| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2872 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2913 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2894 (((-112) $ $) 21 (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-2954 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) NIL (|has| |#2| (-732))) (($ $ |#2|) NIL (|has| |#2| (-732))) (($ |#2| $) NIL (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 18)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) 25)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-3722 (($ $) 29 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 35 (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 30 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) NIL)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) 28 (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 14 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $ (-1273 |#2|)) 16)) (-3221 (((-413 (-570)) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1273 |#2|)) NIL) (($ (-1262 |#1| |#2| |#3|)) 9) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 21)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 27)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 26) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-480 |#1| |#2| |#3|) (-13 (-1258 |#1|) (-10 -8 (-15 -3735 ($ (-1273 |#2|))) (-15 -3735 ($ (-1262 |#1| |#2| |#3|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -480))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1262 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-480 *3 *4 *5)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1258 |#1|) (-10 -8 (-15 -3735 ($ (-1273 |#2|))) (-15 -3735 ($ (-1262 |#1| |#2| |#3|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#2| $ |#1| |#2|) 18)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) 19)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 16)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2761 (((-650 |#1|) $) NIL)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2122 (((-650 |#1|) $) NIL)) (-2083 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-481 |#1| |#2| |#3| |#4|) (-1203 |#1| |#2|) (-1109) (-1109) (-1203 |#1| |#2|) |#2|) (T -481))
+NIL
+(-1203 |#1| |#2|)
+((-2417 (((-112) $ $) NIL)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1556 (((-650 $) (-650 |#4|)) NIL)) (-1713 (((-650 |#3|) $) NIL)) (-2977 (((-112) $) NIL)) (-3873 (((-112) $) NIL (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3870 ((|#4| |#4| $) NIL)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-1425 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3761 (($) NIL T CONST)) (-2391 (((-112) $) 29 (|has| |#1| (-562)))) (-1475 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2993 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2376 (((-112) $) NIL (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2996 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 45)) (-3565 ((|#4| |#4| $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1703 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) NIL)) (-2835 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2451 ((|#3| $) 38)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#4|) $) 19 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 23)) (-2881 (((-650 |#3|) $) NIL)) (-3710 (((-112) |#3| $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-1729 (((-3 |#4| "failed") $) 42)) (-1507 (((-650 |#4|) $) NIL)) (-1810 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1831 ((|#4| |#4| $) NIL)) (-2458 (((-112) $ $) NIL)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3464 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 40)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2329 (((-3 $ "failed") $ |#4|) 58)) (-4102 (($ $ |#4|) NIL)) (-2697 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 17)) (-3006 (($) 14)) (-3221 (((-777) $) NIL)) (-3490 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) 13)) (-1417 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 22)) (-3408 (($ $ |#3|) 52)) (-4164 (($ $ |#3|) 54)) (-4148 (($ $) NIL)) (-1842 (($ $ |#3|) NIL)) (-3735 (((-868) $) 35) (((-650 |#4|) $) 46)) (-3580 (((-777) $) NIL (|has| |#3| (-373)))) (-3866 (((-112) $ $) NIL)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-2964 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) NIL)) (-2048 (((-112) |#3| $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-482 |#1| |#2| |#3| |#4|) (-1220 |#1| |#2| |#3| |#4|) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -482))
+NIL
+(-1220 |#1| |#2| |#3| |#4|)
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-1315 (($) 17)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-1417 (((-384) $) 21) (((-227) $) 24) (((-413 (-1182 (-570))) $) 18) (((-542) $) 53)) (-3735 (((-868) $) 51) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (((-227) $) 23) (((-384) $) 20)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 37 T CONST)) (-1824 (($) 8 T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-483) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))) (-1031) (-619 (-227)) (-619 (-384)) (-620 (-413 (-1182 (-570)))) (-620 (-542)) (-10 -8 (-15 -1315 ($))))) (T -483))
+((-1315 (*1 *1) (-5 *1 (-483))))
+(-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))) (-1031) (-619 (-227)) (-619 (-384)) (-620 (-413 (-1182 (-570)))) (-620 (-542)) (-10 -8 (-15 -1315 ($))))
+((-2417 (((-112) $ $) NIL)) (-2123 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-484) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))) (T -484))
+((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))))
+(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#2| $ |#1| |#2|) 16)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) 20)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 18)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2761 (((-650 |#1|) $) 13)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2122 (((-650 |#1|) $) NIL)) (-2083 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 19)) (-1877 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 11 (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) 15 (|has| $ (-6 -4449)))))
+(((-485 |#1| |#2| |#3|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449))) (-1109) (-1109) (-1168)) (T -485))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449)))
+((-2020 (((-570) (-570) (-570)) 19)) (-3239 (((-112) (-570) (-570) (-570) (-570)) 28)) (-1347 (((-1277 (-650 (-570))) (-777) (-777)) 44)))
+(((-486) (-10 -7 (-15 -2020 ((-570) (-570) (-570))) (-15 -3239 ((-112) (-570) (-570) (-570) (-570))) (-15 -1347 ((-1277 (-650 (-570))) (-777) (-777))))) (T -486))
+((-1347 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1277 (-650 (-570)))) (-5 *1 (-486)))) (-3239 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))) (-2020 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
+(-10 -7 (-15 -2020 ((-570) (-570) (-570))) (-15 -3239 ((-112) (-570) (-570) (-570) (-570))) (-15 -1347 ((-1277 (-650 (-570))) (-777) (-777))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-870 |#1|)) $) NIL)) (-3702 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-1345 (($ $) NIL (|has| |#2| (-562)))) (-1372 (((-112) $) NIL (|has| |#2| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3252 (($ $) NIL (|has| |#2| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3383 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1727 (($ $ (-650 (-570))) NIL)) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#2| (-916)))) (-3382 (($ $ |#2| (-488 (-2426 |#1|) (-777)) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#2| (-488 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-870 |#1|)) NIL)) (-2730 (((-488 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-2206 (($ (-1 (-488 (-2426 |#1|) (-777)) (-488 (-2426 |#1|) (-777))) $) NIL)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-2645 (((-3 (-870 |#1|) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#2| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3011 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#2| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) NIL) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) NIL) (($ $ (-870 |#1|) $) NIL) (($ $ (-650 (-870 |#1|)) (-650 $)) NIL)) (-3290 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3221 (((-488 (-2426 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3621 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-488 (-2426 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-487 |#1| |#2|) (-13 (-956 |#2| (-488 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -1727 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -487))
+((-1727 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-487 *3 *4)) (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
+(-13 (-956 |#2| (-488 (-2426 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -1727 ($ $ (-650 (-570))))))
+((-2417 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2745 (((-112) $) NIL (|has| |#2| (-132)))) (-3800 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3125 (($ $ $) NIL (|has| |#2| (-799)))) (-4119 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#2| (-373)))) (-2249 (((-570) $) NIL (|has| |#2| (-854)))) (-3894 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) NIL (|has| |#2| (-1109)))) (-1836 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-2937 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3336 (($) NIL (|has| |#2| (-373)))) (-3789 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ (-570)) 15)) (-3703 (((-112) $) NIL (|has| |#2| (-854)))) (-2835 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL (|has| |#2| (-732)))) (-1774 (((-112) $) NIL (|has| |#2| (-854)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3201 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#2| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-2160 (($ (-928)) NIL (|has| |#2| (-373)))) (-3479 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3443 ((|#2| $) NIL (|has| (-570) (-856)))) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-4082 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3791 (($ (-1277 |#2|)) NIL)) (-4154 (((-135)) NIL (|has| |#2| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-3490 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1277 |#2|) $) NIL) (($ (-570)) NIL (-2740 (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) NIL (|has| |#2| (-1109))) (((-868) $) NIL (|has| |#2| (-619 (-868))))) (-1609 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-3866 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2964 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1367 (($ $) NIL (|has| |#2| (-854)))) (-1814 (($) NIL (|has| |#2| (-132)) CONST)) (-1824 (($) NIL (|has| |#2| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2872 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2914 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2894 (((-112) $ $) 21 (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-2953 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) NIL (|has| |#2| (-732))) (($ $ |#2|) NIL (|has| |#2| (-732))) (($ |#2| $) NIL (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-488 |#1| |#2|) (-240 |#1| |#2|) (-777) (-799)) (T -488))
NIL
(-240 |#1| |#2|)
-((-2416 (((-112) $ $) NIL)) (-3762 (((-650 (-882)) $) 15)) (-3503 (((-512) $) 13)) (-1903 (((-1168) $) NIL)) (-2571 (($ (-512) (-650 (-882))) 11)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 22) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-489) (-13 (-1092) (-10 -8 (-15 -2571 ($ (-512) (-650 (-882)))) (-15 -3503 ((-512) $)) (-15 -3762 ((-650 (-882)) $))))) (T -489))
-((-2571 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))) (-3503 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-489)))) (-3762 (*1 *2 *1) (-12 (-5 *2 (-650 (-882))) (-5 *1 (-489)))))
-(-13 (-1092) (-10 -8 (-15 -2571 ($ (-512) (-650 (-882)))) (-15 -3503 ((-512) $)) (-15 -3762 ((-650 (-882)) $))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) NIL)) (-2450 (($) NIL T CONST)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2190 (($ $ $) 50)) (-3068 (($ $ $) 49)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3787 ((|#1| $) 40)) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3784 ((|#1| $) 41)) (-2278 (($ |#1| $) 18)) (-4073 (($ (-650 |#1|)) 19)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1899 ((|#1| $) 34)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 11)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 47)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) 29 (|has| $ (-6 -4448)))))
-(((-490 |#1|) (-13 (-977 |#1|) (-10 -8 (-15 -4073 ($ (-650 |#1|))))) (-856)) (T -490))
-((-4073 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
-(-13 (-977 |#1|) (-10 -8 (-15 -4073 ($ (-650 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3529 (($ $) 71)) (-1738 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-2799 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 45)) (-3479 (((-1129) $) NIL)) (-2339 (((-3 |#4| "failed") $) 117)) (-2064 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 81) (($ |#4|) 31) (($ |#1| |#1|) 127) (($ |#1| |#1| (-570)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 140)) (-1386 (((-2 (|:| -4251 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 47)) (-3735 (((-868) $) 110)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 32 T CONST)) (-2872 (((-112) $ $) 121)) (-2965 (($ $) 77) (($ $ $) NIL)) (-2954 (($ $ $) 72)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 78)))
-(((-491 |#1| |#2| |#3| |#4|) (-340 |#1| |#2| |#3| |#4|) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -491))
+((-2417 (((-112) $ $) NIL)) (-3762 (((-650 (-882)) $) 15)) (-3504 (((-512) $) 13)) (-4268 (((-1168) $) NIL)) (-3666 (($ (-512) (-650 (-882))) 11)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 22) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-489) (-13 (-1092) (-10 -8 (-15 -3666 ($ (-512) (-650 (-882)))) (-15 -3504 ((-512) $)) (-15 -3762 ((-650 (-882)) $))))) (T -489))
+((-3666 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))) (-3504 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-489)))) (-3762 (*1 *2 *1) (-12 (-5 *2 (-650 (-882))) (-5 *1 (-489)))))
+(-13 (-1092) (-10 -8 (-15 -3666 ($ (-512) (-650 (-882)))) (-15 -3504 ((-512) $)) (-15 -3762 ((-650 (-882)) $))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) NIL)) (-3761 (($) NIL T CONST)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-4210 (($ $ $) 50)) (-2727 (($ $ $) 49)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2222 ((|#1| $) 40)) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2192 ((|#1| $) 41)) (-2599 (($ |#1| $) 18)) (-2073 (($ (-650 |#1|)) 19)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-4223 ((|#1| $) 34)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 11)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 47)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) 29 (|has| $ (-6 -4449)))))
+(((-490 |#1|) (-13 (-977 |#1|) (-10 -8 (-15 -2073 ($ (-650 |#1|))))) (-856)) (T -490))
+((-2073 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
+(-13 (-977 |#1|) (-10 -8 (-15 -2073 ($ (-650 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3529 (($ $) 71)) (-2139 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-3976 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 45)) (-3479 (((-1129) $) NIL)) (-2340 (((-3 |#4| "failed") $) 117)) (-2248 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 81) (($ |#4|) 31) (($ |#1| |#1|) 127) (($ |#1| |#1| (-570)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 140)) (-1437 (((-2 (|:| -4254 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 47)) (-3735 (((-868) $) 110)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 32 T CONST)) (-2872 (((-112) $ $) 121)) (-2965 (($ $) 77) (($ $ $) NIL)) (-2953 (($ $ $) 72)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 78)))
+(((-491 |#1| |#2| |#3| |#4|) (-340 |#1| |#2| |#3| |#4|) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -491))
NIL
(-340 |#1| |#2| |#3| |#4|)
-((-4317 (((-570) (-650 (-570))) 55)) (-3053 ((|#1| (-650 |#1|)) 96)) (-1706 (((-650 |#1|) (-650 |#1|)) 97)) (-2027 (((-650 |#1|) (-650 |#1|)) 99)) (-1874 ((|#1| (-650 |#1|)) 98)) (-3030 (((-650 (-570)) (-650 |#1|)) 58)))
-(((-492 |#1|) (-10 -7 (-15 -1874 (|#1| (-650 |#1|))) (-15 -3053 (|#1| (-650 |#1|))) (-15 -2027 ((-650 |#1|) (-650 |#1|))) (-15 -1706 ((-650 |#1|) (-650 |#1|))) (-15 -3030 ((-650 (-570)) (-650 |#1|))) (-15 -4317 ((-570) (-650 (-570))))) (-1252 (-570))) (T -492))
-((-4317 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4)) (-4 *4 (-1252 *2)))) (-3030 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1252 (-570))) (-5 *2 (-650 (-570))) (-5 *1 (-492 *4)))) (-1706 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1252 (-570))) (-5 *1 (-492 *3)))) (-2027 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1252 (-570))) (-5 *1 (-492 *3)))) (-3053 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1252 (-570))))) (-1874 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1252 (-570))))))
-(-10 -7 (-15 -1874 (|#1| (-650 |#1|))) (-15 -3053 (|#1| (-650 |#1|))) (-15 -2027 ((-650 |#1|) (-650 |#1|))) (-15 -1706 ((-650 |#1|) (-650 |#1|))) (-15 -3030 ((-650 (-570)) (-650 |#1|))) (-15 -4317 ((-570) (-650 (-570)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-570) $) NIL (|has| (-570) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-570) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| (-570) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-570) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2761 (((-112) $) NIL (|has| (-570) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-570) (-856)))) (-1351 (($ (-1 (-570) (-570)) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-570) (-1161)) CONST)) (-2935 (($ (-413 (-570))) 9)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-3739 (((-570) $) NIL (|has| (-570) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-570) $) NIL)) (-1416 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 16) $) 10)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 (((-570) $) NIL (|has| (-570) (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| (-570) (-826)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2975 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL)))
-(((-493) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 16)) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -2935 ($ (-413 (-570))))))) (T -493))
-((-1965 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))) (-2935 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 16)) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -2935 ($ (-413 (-570))))))
-((-2849 (((-650 |#2|) $) 29)) (-3464 (((-112) |#2| $) 34)) (-1671 (((-112) (-1 (-112) |#2|) $) 24)) (-1730 (($ $ (-650 (-298 |#2|))) 13) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-3486 (((-777) (-1 (-112) |#2|) $) 28) (((-777) |#2| $) 32)) (-3735 (((-868) $) 43)) (-4368 (((-112) (-1 (-112) |#2|) $) 23)) (-2872 (((-112) $ $) 37)) (-2426 (((-777) $) 18)))
-(((-494 |#1| |#2|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#2| |#2|)) (-15 -1730 (|#1| |#1| (-298 |#2|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -3464 ((-112) |#2| |#1|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -2849 ((-650 |#2|) |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|))) (-495 |#2|) (-1226)) (T -494))
-NIL
-(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#2| |#2|)) (-15 -1730 (|#1| |#1| (-298 |#2|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -3464 ((-112) |#2| |#1|)) (-15 -3486 ((-777) |#2| |#1|)) (-15 -2849 ((-650 |#2|) |#1|)) (-15 -3486 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-495 |#1|) (-141) (-1226)) (T -495))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-495 *3)) (-4 *3 (-1226)))) (-3776 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1226)))) (-4368 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4448)) (-4 *1 (-495 *4)) (-4 *4 (-1226)) (-5 *2 (-112)))) (-1671 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4448)) (-4 *1 (-495 *4)) (-4 *4 (-1226)) (-5 *2 (-112)))) (-3486 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4448)) (-4 *1 (-495 *4)) (-4 *4 (-1226)) (-5 *2 (-777)))) (-2836 (*1 *2 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226)) (-5 *2 (-650 *3)))) (-2849 (*1 *2 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226)) (-5 *2 (-650 *3)))) (-3486 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-3464 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-34) (-10 -8 (IF (|has| |t#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |t#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |t#1| (-1109)) (IF (|has| |t#1| (-313 |t#1|)) (-6 (-313 |t#1|)) |%noBranch|) |%noBranch|) (-15 -1351 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4449)) (-15 -3776 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4448)) (PROGN (-15 -4368 ((-112) (-1 (-112) |t#1|) $)) (-15 -1671 ((-112) (-1 (-112) |t#1|) $)) (-15 -3486 ((-777) (-1 (-112) |t#1|) $)) (-15 -2836 ((-650 |t#1|) $)) (-15 -2849 ((-650 |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3486 ((-777) |t#1| $)) (-15 -3464 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
+((-3751 (((-570) (-650 (-570))) 55)) (-2571 ((|#1| (-650 |#1|)) 96)) (-1912 (((-650 |#1|) (-650 |#1|)) 97)) (-1933 (((-650 |#1|) (-650 |#1|)) 99)) (-1874 ((|#1| (-650 |#1|)) 98)) (-3621 (((-650 (-570)) (-650 |#1|)) 58)))
+(((-492 |#1|) (-10 -7 (-15 -1874 (|#1| (-650 |#1|))) (-15 -2571 (|#1| (-650 |#1|))) (-15 -1933 ((-650 |#1|) (-650 |#1|))) (-15 -1912 ((-650 |#1|) (-650 |#1|))) (-15 -3621 ((-650 (-570)) (-650 |#1|))) (-15 -3751 ((-570) (-650 (-570))))) (-1253 (-570))) (T -492))
+((-3751 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4)) (-4 *4 (-1253 *2)))) (-3621 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1253 (-570))) (-5 *2 (-650 (-570))) (-5 *1 (-492 *4)))) (-1912 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))) (-1933 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))) (-2571 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))) (-1874 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))))
+(-10 -7 (-15 -1874 (|#1| (-650 |#1|))) (-15 -2571 (|#1| (-650 |#1|))) (-15 -1933 ((-650 |#1|) (-650 |#1|))) (-15 -1912 ((-650 |#1|) (-650 |#1|))) (-15 -3621 ((-650 (-570)) (-650 |#1|))) (-15 -3751 ((-570) (-650 (-570)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-570) $) NIL (|has| (-570) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-570) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| (-570) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-570) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1774 (((-112) $) NIL (|has| (-570) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-570) (-856)))) (-1352 (($ (-1 (-570) (-570)) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-570) (-1161)) CONST)) (-3977 (($ (-413 (-570))) 9)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-2962 (((-570) $) NIL (|has| (-570) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-570) $) NIL)) (-1417 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 16) $) 10)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 (((-570) $) NIL (|has| (-570) (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| (-570) (-826)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2975 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL)))
+(((-493) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 16)) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -3977 ($ (-413 (-570))))))) (T -493))
+((-2442 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))) (-3977 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 16)) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -3977 ($ (-413 (-570))))))
+((-3201 (((-650 |#2|) $) 29)) (-2218 (((-112) |#2| $) 34)) (-2697 (((-112) (-1 (-112) |#2|) $) 24)) (-1731 (($ $ (-650 (-298 |#2|))) 13) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-3490 (((-777) (-1 (-112) |#2|) $) 28) (((-777) |#2| $) 32)) (-3735 (((-868) $) 43)) (-2964 (((-112) (-1 (-112) |#2|) $) 23)) (-2872 (((-112) $ $) 37)) (-2426 (((-777) $) 18)))
+(((-494 |#1| |#2|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#2| |#2|)) (-15 -1731 (|#1| |#1| (-298 |#2|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -2218 ((-112) |#2| |#1|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3201 ((-650 |#2|) |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|))) (-495 |#2|) (-1227)) (T -494))
+NIL
+(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#2| |#2|)) (-15 -1731 (|#1| |#1| (-298 |#2|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -2218 ((-112) |#2| |#1|)) (-15 -3490 ((-777) |#2| |#1|)) (-15 -3201 ((-650 |#2|) |#1|)) (-15 -3490 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-495 |#1|) (-141) (-1227)) (T -495))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-495 *3)) (-4 *3 (-1227)))) (-3776 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4450)) (-4 *1 (-495 *3)) (-4 *3 (-1227)))) (-2964 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-2697 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-3490 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-777)))) (-2835 (*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-3201 (*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-3490 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-2218 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-34) (-10 -8 (IF (|has| |t#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |t#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |t#1| (-1109)) (IF (|has| |t#1| (-313 |t#1|)) (-6 (-313 |t#1|)) |%noBranch|) |%noBranch|) (-15 -1352 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4450)) (-15 -3776 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4449)) (PROGN (-15 -2964 ((-112) (-1 (-112) |t#1|) $)) (-15 -2697 ((-112) (-1 (-112) |t#1|) $)) (-15 -3490 ((-777) (-1 (-112) |t#1|) $)) (-15 -2835 ((-650 |t#1|) $)) (-15 -3201 ((-650 |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3490 ((-777) |t#1| $)) (-15 -2218 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
((-3735 ((|#1| $) 6) (($ |#1|) 9)))
-(((-496 |#1|) (-141) (-1226)) (T -496))
+(((-496 |#1|) (-141) (-1227)) (T -496))
NIL
(-13 (-619 |t#1|) (-622 |t#1|))
(((-622 |#1|) . T) ((-619 |#1|) . T))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-4175 (($ (-1168)) 8)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (((-1168) $) 12)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)))
-(((-497) (-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -4175 ($ (-1168)))))) (T -497))
-((-4175 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
-(-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -4175 ($ (-1168)))))
-((-2735 (($ $) 15)) (-2712 (($ $) 24)) (-4087 (($ $) 12)) (-4099 (($ $) 10)) (-2746 (($ $) 17)) (-2723 (($ $) 22)))
-(((-498 |#1|) (-10 -8 (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4099 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|))) (-499)) (T -498))
-NIL
-(-10 -8 (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4099 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)))
-((-2735 (($ $) 11)) (-2712 (($ $) 10)) (-4087 (($ $) 9)) (-4099 (($ $) 8)) (-2746 (($ $) 7)) (-2723 (($ $) 6)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1815 (($ (-1168)) 8)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (((-1168) $) 12)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)))
+(((-497) (-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -1815 ($ (-1168)))))) (T -497))
+((-1815 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
+(-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -1815 ($ (-1168)))))
+((-2735 (($ $) 15)) (-2712 (($ $) 24)) (-4087 (($ $) 12)) (-4098 (($ $) 10)) (-2746 (($ $) 17)) (-2723 (($ $) 22)))
+(((-498 |#1|) (-10 -8 (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4098 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|))) (-499)) (T -498))
+NIL
+(-10 -8 (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4098 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)))
+((-2735 (($ $) 11)) (-2712 (($ $) 10)) (-4087 (($ $) 9)) (-4098 (($ $) 8)) (-2746 (($ $) 7)) (-2723 (($ $) 6)))
(((-499) (-141)) (T -499))
-((-2735 (*1 *1 *1) (-4 *1 (-499))) (-2712 (*1 *1 *1) (-4 *1 (-499))) (-4087 (*1 *1 *1) (-4 *1 (-499))) (-4099 (*1 *1 *1) (-4 *1 (-499))) (-2746 (*1 *1 *1) (-4 *1 (-499))) (-2723 (*1 *1 *1) (-4 *1 (-499))))
-(-13 (-10 -8 (-15 -2723 ($ $)) (-15 -2746 ($ $)) (-15 -4099 ($ $)) (-15 -4087 ($ $)) (-15 -2712 ($ $)) (-15 -2735 ($ $))))
-((-3738 (((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)) 54)))
-(((-500 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)))) (-368) (-1252 |#1|) (-13 (-368) (-148) (-730 |#1| |#2|)) (-1252 |#3|)) (T -500))
-((-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368)) (-4 *7 (-13 (-368) (-148) (-730 *5 *6))) (-5 *2 (-424 *3)) (-5 *1 (-500 *5 *6 *7 *3)) (-4 *3 (-1252 *7)))))
-(-10 -7 (-15 -3738 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|))))
-((-2416 (((-112) $ $) NIL)) (-3028 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-1723 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4028 (((-112) $) 39)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2352 (((-112) $ $) 73)) (-3593 (((-650 (-618 $)) $) 50)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4283 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3753 (($ $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-2492 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-4143 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4378 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) 55)) (-2372 (($ $ $) NIL)) (-4177 (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-413 (-570)))) (|:| |vec| (-1276 (-413 (-570))))) (-695 $) (-1276 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3529 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2268 (($ $) NIL) (($ (-650 $)) NIL)) (-4190 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) NIL)) (-2081 (((-112) $) 42)) (-3431 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4398 (((-1134 (-570) (-618 $)) $) 37)) (-2598 (($ $ (-570)) NIL)) (-2610 (((-1182 $) (-1182 $) (-618 $)) 87) (((-1182 $) (-1182 $) (-650 (-618 $))) 62) (($ $ (-618 $)) 76) (($ $ (-650 (-618 $))) 77)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1646 (((-1182 $) (-618 $)) 74 (|has| $ (-1058)))) (-1351 (($ (-1 $ $) (-618 $)) NIL)) (-3399 (((-3 (-618 $) "failed") $) NIL)) (-1845 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) NIL)) (-1360 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-1566 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1825 (($ $) NIL)) (-1434 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3247 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1322 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1730 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL)) (-2272 (((-777) $) NIL)) (-1876 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3760 (($ $) NIL) (($ $ $) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) 36)) (-4412 (((-1134 (-570) (-618 $)) $) 20)) (-2886 (($ $) NIL (|has| $ (-1058)))) (-1416 (((-384) $) 101) (((-227) $) 109) (((-171 (-384)) $) 117)) (-3735 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) 21)) (-2744 (((-777)) NIL T CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-2004 (((-112) (-115)) 93)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 10 T CONST)) (-1823 (($) 22 T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) 24)) (-2975 (($ $ $) 44)) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-413 (-570))) NIL) (($ $ (-570)) 48) (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ $ $) 27) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
-(((-501) (-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4398 ((-1134 (-570) (-618 $)) $)) (-15 -4412 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2352 ((-112) $ $)) (-15 -2610 ((-1182 $) (-1182 $) (-618 $))) (-15 -2610 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2610 ($ $ (-618 $))) (-15 -2610 ($ $ (-650 (-618 $))))))) (T -501))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-4398 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-4412 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-3529 (*1 *1 *1) (-5 *1 (-501))) (-2352 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))) (-2610 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-618 (-501))) (-5 *1 (-501)))) (-2610 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-650 (-618 (-501)))) (-5 *1 (-501)))) (-2610 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-501))) (-5 *1 (-501)))) (-2610 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-501)))) (-5 *1 (-501)))))
-(-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4398 ((-1134 (-570) (-618 $)) $)) (-15 -4412 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2352 ((-112) $ $)) (-15 -2610 ((-1182 $) (-1182 $) (-618 $))) (-15 -2610 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2610 ($ $ (-618 $))) (-15 -2610 ($ $ (-650 (-618 $))))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) |#1|) 47 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 42 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 41)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 21)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 17 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) 44 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 32 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 38)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) 15 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 19)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 46) (($ $ (-1243 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 24)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 11 (|has| $ (-6 -4448)))))
-(((-502 |#1| |#2|) (-19 |#1|) (-1226) (-570)) (T -502))
+((-2735 (*1 *1 *1) (-4 *1 (-499))) (-2712 (*1 *1 *1) (-4 *1 (-499))) (-4087 (*1 *1 *1) (-4 *1 (-499))) (-4098 (*1 *1 *1) (-4 *1 (-499))) (-2746 (*1 *1 *1) (-4 *1 (-499))) (-2723 (*1 *1 *1) (-4 *1 (-499))))
+(-13 (-10 -8 (-15 -2723 ($ $)) (-15 -2746 ($ $)) (-15 -4098 ($ $)) (-15 -4087 ($ $)) (-15 -2712 ($ $)) (-15 -2735 ($ $))))
+((-3739 (((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)) 54)))
+(((-500 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)))) (-368) (-1253 |#1|) (-13 (-368) (-148) (-730 |#1| |#2|)) (-1253 |#3|)) (T -500))
+((-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-4 *7 (-13 (-368) (-148) (-730 *5 *6))) (-5 *2 (-424 *3)) (-5 *1 (-500 *5 *6 *7 *3)) (-4 *3 (-1253 *7)))))
+(-10 -7 (-15 -3739 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|))))
+((-2417 (((-112) $ $) NIL)) (-3598 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-2041 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-2745 (((-112) $) 39)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-2199 (((-112) $ $) 73)) (-3593 (((-650 (-618 $)) $) 50)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4284 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-3754 (($ $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-4170 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-1480 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4379 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3080 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) 55)) (-2372 (($ $ $) NIL)) (-1836 (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-413 (-570)))) (|:| |vec| (-1277 (-413 (-570))))) (-695 $) (-1277 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3529 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-2506 (($ $) NIL) (($ (-650 $)) NIL)) (-1941 (((-650 (-115)) $) NIL)) (-3680 (((-115) (-115)) NIL)) (-4340 (((-112) $) 42)) (-1958 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4399 (((-1134 (-570) (-618 $)) $) 37)) (-2665 (($ $ (-570)) NIL)) (-2771 (((-1182 $) (-1182 $) (-618 $)) 87) (((-1182 $) (-1182 $) (-650 (-618 $))) 62) (($ $ (-618 $)) 76) (($ $ (-650 (-618 $))) 77)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2462 (((-1182 $) (-618 $)) 74 (|has| $ (-1058)))) (-1352 (($ (-1 $ $) (-618 $)) NIL)) (-2814 (((-3 (-618 $) "failed") $) NIL)) (-1847 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3669 (((-650 (-618 $)) $) NIL)) (-1361 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-4198 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1826 (($ $) NIL)) (-1435 (((-777) $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3953 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1739 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1731 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-1186)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-1186) (-1 $ (-650 $))) NIL) (($ $ (-1186) (-1 $ $)) NIL) (($ $ (-650 (-115)) (-650 (-1 $ $))) NIL) (($ $ (-650 (-115)) (-650 (-1 $ (-650 $)))) NIL) (($ $ (-115) (-1 $ (-650 $))) NIL) (($ $ (-115) (-1 $ $)) NIL)) (-2547 (((-777) $) NIL)) (-1877 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-2008 (($ $) NIL) (($ $ $) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) 36)) (-4413 (((-1134 (-570) (-618 $)) $) 20)) (-3597 (($ $) NIL (|has| $ (-1058)))) (-1417 (((-384) $) 101) (((-227) $) 109) (((-171 (-384)) $) 117)) (-3735 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) 21)) (-1609 (((-777)) NIL T CONST)) (-4192 (($ $) NIL) (($ (-650 $)) NIL)) (-2818 (((-112) (-115)) 93)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 10 T CONST)) (-1824 (($) 22 T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) 24)) (-2975 (($ $ $) 44)) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-413 (-570))) NIL) (($ $ (-570)) 48) (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ $ $) 27) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL)))
+(((-501) (-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2199 ((-112) $ $)) (-15 -2771 ((-1182 $) (-1182 $) (-618 $))) (-15 -2771 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2771 ($ $ (-618 $))) (-15 -2771 ($ $ (-650 (-618 $))))))) (T -501))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-4399 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-4413 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-3529 (*1 *1 *1) (-5 *1 (-501))) (-2199 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-618 (-501))) (-5 *1 (-501)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-650 (-618 (-501)))) (-5 *1 (-501)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-501))) (-5 *1 (-501)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-501)))) (-5 *1 (-501)))))
+(-13 (-306) (-27) (-1047 (-570)) (-1047 (-413 (-570))) (-645 (-570)) (-1031) (-645 (-413 (-570))) (-148) (-620 (-171 (-384))) (-235) (-10 -8 (-15 -3735 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3529 ($ $)) (-15 -2199 ((-112) $ $)) (-15 -2771 ((-1182 $) (-1182 $) (-618 $))) (-15 -2771 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2771 ($ $ (-618 $))) (-15 -2771 ($ $ (-650 (-618 $))))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) |#1|) 47 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 42 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 41)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 21)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 17 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) 44 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 32 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 38)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) 15 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 19)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 46) (($ $ (-1244 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 24)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 11 (|has| $ (-6 -4449)))))
+(((-502 |#1| |#2|) (-19 |#1|) (-1227) (-570)) (T -502))
NIL
(-19 |#1|)
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3871 (($ $ (-570) (-502 |#1| |#3|)) NIL)) (-2898 (($ $ (-570) (-502 |#1| |#2|)) NIL)) (-2450 (($) NIL T CONST)) (-2653 (((-502 |#1| |#3|) $ (-570)) NIL)) (-3790 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3712 ((|#1| $ (-570) (-570)) NIL)) (-2836 (((-650 |#1|) $) NIL)) (-3153 (((-777) $) NIL)) (-4286 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-3118 (((-570) $) NIL)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3392 (((-570) $) NIL)) (-1555 (((-570) $) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3541 (((-502 |#1| |#2|) $ (-570)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-503 |#1| |#2| |#3|) (-57 |#1| (-502 |#1| |#3|) (-502 |#1| |#2|)) (-1226) (-570) (-570)) (T -503))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) (-570) |#1|) NIL)) (-1850 (($ $ (-570) (-502 |#1| |#3|)) NIL)) (-3693 (($ $ (-570) (-502 |#1| |#2|)) NIL)) (-3761 (($) NIL T CONST)) (-1991 (((-502 |#1| |#3|) $ (-570)) NIL)) (-3789 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3713 ((|#1| $ (-570) (-570)) NIL)) (-2835 (((-650 |#1|) $) NIL)) (-3155 (((-777) $) NIL)) (-4287 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2055 (((-570) $) NIL)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2755 (((-570) $) NIL)) (-4067 (((-570) $) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-1743 (((-502 |#1| |#2|) $ (-570)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-503 |#1| |#2| |#3|) (-57 |#1| (-502 |#1| |#3|) (-502 |#1| |#2|)) (-1227) (-570) (-570)) (T -503))
NIL
(-57 |#1| (-502 |#1| |#3|) (-502 |#1| |#2|))
-((-1315 (((-650 (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777)) 33)) (-3556 (((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777)) 43)) (-3740 (((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)) 110)))
-(((-504 |#1| |#2| |#3|) (-10 -7 (-15 -3556 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -1315 ((-650 (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -3740 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)))) (-354) (-1252 |#1|) (-1252 |#2|)) (T -504))
-((-3740 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-2 (|:| -2331 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7))))) (-5 *5 (-777)) (-4 *8 (-1252 *7)) (-4 *7 (-1252 *6)) (-4 *6 (-354)) (-5 *2 (-2 (|:| -2331 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7)))) (-5 *1 (-504 *6 *7 *8)))) (-1315 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-2 (|:| -2331 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6))))) (-5 *1 (-504 *5 *6 *7)) (-5 *3 (-2 (|:| -2331 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6)))) (-4 *7 (-1252 *6)))) (-3556 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-777)) (-4 *3 (-354)) (-4 *5 (-1252 *3)) (-5 *2 (-650 (-1182 *3))) (-5 *1 (-504 *3 *5 *6)) (-4 *6 (-1252 *5)))))
-(-10 -7 (-15 -3556 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -1315 ((-650 (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -3740 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777))))
-((-2664 (((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 74)) (-3283 ((|#1| (-695 |#1|) |#1| (-777)) 27)) (-2148 (((-777) (-777) (-777)) 36)) (-1589 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 54)) (-2359 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 62) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 59)) (-2015 ((|#1| (-695 |#1|) (-695 |#1|) |#1| (-570)) 31)) (-3440 ((|#1| (-695 |#1|)) 18)))
-(((-505 |#1| |#2| |#3|) (-10 -7 (-15 -3440 (|#1| (-695 |#1|))) (-15 -3283 (|#1| (-695 |#1|) |#1| (-777))) (-15 -2015 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -2148 ((-777) (-777) (-777))) (-15 -2359 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2359 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -1589 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2664 ((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))))) (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))) (-1252 |#1|) (-415 |#1| |#2|)) (T -505))
-((-2664 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-1589 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2359 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2359 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2148 (*1 *2 *2 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2015 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-570)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *5 (-1252 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-3283 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-777)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-4 *5 (-1252 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-3440 (*1 *2 *3) (-12 (-5 *3 (-695 *2)) (-4 *4 (-1252 *2)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $))))) (-5 *1 (-505 *2 *4 *5)) (-4 *5 (-415 *2 *4)))))
-(-10 -7 (-15 -3440 (|#1| (-695 |#1|))) (-15 -3283 (|#1| (-695 |#1|) |#1| (-777))) (-15 -2015 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -2148 ((-777) (-777) (-777))) (-15 -2359 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2359 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -1589 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2664 ((-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2331 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))))
-((-2416 (((-112) $ $) NIL)) (-2433 (($ $) NIL)) (-1789 (($ $ $) 40)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3239 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-3288 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3895 (((-112) $ (-1243 (-570)) (-112)) NIL (|has| $ (-6 -4449))) (((-112) $ (-570) (-112)) 42 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-1702 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-3529 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-3790 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4449)))) (-3712 (((-112) $ (-570)) NIL)) (-3998 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-2836 (((-650 (-112)) $) NIL (|has| $ (-6 -4448)))) (-1778 (($ $ $) 38)) (-1754 (($ $) NIL)) (-3492 (($ $ $) NIL)) (-4286 (($ (-777) (-112)) 27)) (-2957 (($ $ $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 8 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL)) (-3068 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2849 (((-650 (-112)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL)) (-3776 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-112) (-112) (-112)) $ $) 35) (($ (-1 (-112) (-112)) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-4285 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-112) $) NIL (|has| (-570) (-856)))) (-3321 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1952 (($ $ (-112)) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-112)) (-650 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-298 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-650 (-298 (-112)))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109))))) (-4245 (((-650 (-112)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 28)) (-1876 (($ $ (-1243 (-570))) NIL) (((-112) $ (-570)) 22) (((-112) $ (-570) (-112)) NIL)) (-4320 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-3486 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) 29)) (-1416 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3748 (($ (-650 (-112))) NIL)) (-2439 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3735 (((-868) $) 26)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4448)))) (-1765 (($ $ $) 36)) (-4421 (($ $ $) NIL)) (-3436 (($ $ $) 45)) (-3449 (($ $) 43)) (-3422 (($ $ $) 44)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 30)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 31)) (-4407 (($ $ $) NIL)) (-2426 (((-777) $) 13 (|has| $ (-6 -4448)))))
+((-1656 (((-650 (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777)) 33)) (-3733 (((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777)) 43)) (-2971 (((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)) 110)))
+(((-504 |#1| |#2| |#3|) (-10 -7 (-15 -3733 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -1656 ((-650 (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -2971 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)))) (-354) (-1253 |#1|) (-1253 |#2|)) (T -504))
+((-2971 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-2 (|:| -2003 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7))))) (-5 *5 (-777)) (-4 *8 (-1253 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-354)) (-5 *2 (-2 (|:| -2003 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7)))) (-5 *1 (-504 *6 *7 *8)))) (-1656 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2003 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6))))) (-5 *1 (-504 *5 *6 *7)) (-5 *3 (-2 (|:| -2003 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6)))) (-4 *7 (-1253 *6)))) (-3733 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-777)) (-4 *3 (-354)) (-4 *5 (-1253 *3)) (-5 *2 (-650 (-1182 *3))) (-5 *1 (-504 *3 *5 *6)) (-4 *6 (-1253 *5)))))
+(-10 -7 (-15 -3733 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -1656 ((-650 (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -2971 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777))))
+((-2057 (((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 74)) (-4253 ((|#1| (-695 |#1|) |#1| (-777)) 27)) (-3767 (((-777) (-777) (-777)) 36)) (-3111 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 54)) (-2266 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 62) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 59)) (-2919 ((|#1| (-695 |#1|) (-695 |#1|) |#1| (-570)) 31)) (-2023 ((|#1| (-695 |#1|)) 18)))
+(((-505 |#1| |#2| |#3|) (-10 -7 (-15 -2023 (|#1| (-695 |#1|))) (-15 -4253 (|#1| (-695 |#1|) |#1| (-777))) (-15 -2919 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -3767 ((-777) (-777) (-777))) (-15 -2266 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2266 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -3111 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2057 ((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))))) (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))) (-1253 |#1|) (-415 |#1| |#2|)) (T -505))
+((-2057 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3111 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2266 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2266 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3767 (*1 *2 *2 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2919 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-570)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-4253 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-777)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-2023 (*1 *2 *3) (-12 (-5 *3 (-695 *2)) (-4 *4 (-1253 *2)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $))))) (-5 *1 (-505 *2 *4 *5)) (-4 *5 (-415 *2 *4)))))
+(-10 -7 (-15 -2023 (|#1| (-695 |#1|))) (-15 -4253 (|#1| (-695 |#1|) |#1| (-777))) (-15 -2919 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -3767 ((-777) (-777) (-777))) (-15 -2266 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2266 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -3111 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2057 ((-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -2003 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))))
+((-2417 (((-112) $ $) NIL)) (-2434 (($ $) NIL)) (-1790 (($ $ $) 40)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3885 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-3287 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3894 (((-112) $ (-1244 (-570)) (-112)) NIL (|has| $ (-6 -4450))) (((-112) $ (-570) (-112)) 42 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-1703 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3529 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3789 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4450)))) (-3713 (((-112) $ (-570)) NIL)) (-3998 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-2835 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-1778 (($ $ $) 38)) (-1753 (($ $) NIL)) (-4376 (($ $ $) NIL)) (-4287 (($ (-777) (-112)) 27)) (-4204 (($ $ $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 8 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL)) (-2727 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3201 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL)) (-3776 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-112) (-112) (-112)) $ $) 35) (($ (-1 (-112) (-112)) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-4286 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-112) $) NIL (|has| (-570) (-856)))) (-3281 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-3531 (($ $ (-112)) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-112)) (-650 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-298 (-112))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109)))) (($ $ (-650 (-298 (-112)))) NIL (-12 (|has| (-112) (-313 (-112))) (|has| (-112) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-4348 (((-650 (-112)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 28)) (-1877 (($ $ (-1244 (-570))) NIL) (((-112) $ (-570)) 22) (((-112) $ (-570) (-112)) NIL)) (-4320 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3490 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) 29)) (-1417 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3749 (($ (-650 (-112))) NIL)) (-2439 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3735 (((-868) $) 26)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1765 (($ $ $) 36)) (-4419 (($ $ $) NIL)) (-3436 (($ $ $) 45)) (-3449 (($ $) 43)) (-3422 (($ $ $) 44)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 30)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 31)) (-4404 (($ $ $) NIL)) (-2426 (((-777) $) 13 (|has| $ (-6 -4449)))))
(((-506 |#1|) (-13 (-124) (-10 -8 (-15 -3449 ($ $)) (-15 -3436 ($ $ $)) (-15 -3422 ($ $ $)))) (-570)) (T -506))
((-3449 (*1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))) (-3436 (*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))) (-3422 (*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))))
(-13 (-124) (-10 -8 (-15 -3449 ($ $)) (-15 -3436 ($ $ $)) (-15 -3422 ($ $ $))))
-((-2930 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|)) 35)) (-3219 (((-1182 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1182 |#4|)) 22)) (-1925 (((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|))) 49)) (-3534 (((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|) 58)))
-(((-507 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3219 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -3219 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2930 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -1925 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -3534 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|))) (-1058) (-1252 |#1|) (-1252 |#2|) (-1058)) (T -507))
-((-3534 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *6 (-1252 *5)) (-5 *2 (-1182 (-1182 *7))) (-5 *1 (-507 *5 *6 *4 *7)) (-4 *4 (-1252 *6)))) (-1925 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-695 (-1182 *8))) (-4 *5 (-1058)) (-4 *8 (-1058)) (-4 *6 (-1252 *5)) (-5 *2 (-695 *6)) (-5 *1 (-507 *5 *6 *7 *8)) (-4 *7 (-1252 *6)))) (-2930 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1182 *7)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *2 (-1252 *5)) (-5 *1 (-507 *5 *2 *6 *7)) (-4 *6 (-1252 *2)))) (-3219 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *4 (-1252 *5)) (-5 *2 (-1182 *7)) (-5 *1 (-507 *5 *4 *6 *7)) (-4 *6 (-1252 *4)))) (-3219 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1182 *7)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *2 (-1252 *5)) (-5 *1 (-507 *5 *2 *6 *7)) (-4 *6 (-1252 *2)))))
-(-10 -7 (-15 -3219 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -3219 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2930 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -1925 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -3534 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-2416 (((-112) $ $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2919 (((-1281) $) 25)) (-1876 (((-1168) $ (-1186)) 30)) (-4131 (((-1281) $) 17)) (-3735 (((-868) $) 27) (($ (-1168)) 26)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 9)))
-(((-508) (-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $)) (-15 -3735 ($ (-1168)))))) (T -508))
-((-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1168)) (-5 *1 (-508)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-508)))) (-2919 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-508)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-508)))))
-(-13 (-856) (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $)) (-15 -2919 ((-1281) $)) (-15 -3735 ($ (-1168)))))
-((-2504 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-3643 ((|#1| |#4|) 10)) (-1443 ((|#3| |#4|) 17)))
-(((-509 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3643 (|#1| |#4|)) (-15 -1443 (|#3| |#4|)) (-15 -2504 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-562) (-1001 |#1|) (-378 |#1|) (-378 |#2|)) (T -509))
-((-2504 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-509 *4 *5 *6 *3)) (-4 *6 (-378 *4)) (-4 *3 (-378 *5)))) (-1443 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-4 *2 (-378 *4)) (-5 *1 (-509 *4 *5 *2 *3)) (-4 *3 (-378 *5)))) (-3643 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-509 *2 *4 *5 *3)) (-4 *5 (-378 *2)) (-4 *3 (-378 *4)))))
-(-10 -7 (-15 -3643 (|#1| |#4|)) (-15 -1443 (|#3| |#4|)) (-15 -2504 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-2416 (((-112) $ $) NIL)) (-3668 (((-112) $ (-650 |#3|)) 124) (((-112) $) 125)) (-4028 (((-112) $) 176)) (-2101 (($ $ |#4|) 115) (($ $ |#4| (-650 |#3|)) 119)) (-3585 (((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|)) 169 (|has| |#3| (-620 (-1186))))) (-3331 (($ $ $) 105) (($ $ |#4|) 103)) (-2081 (((-112) $) 175)) (-4224 (($ $) 129)) (-1903 (((-1168) $) NIL)) (-2307 (($ $ $) 97) (($ (-650 $)) 99)) (-2297 (((-112) |#4| $) 127)) (-1698 (((-112) $ $) 82)) (-2799 (($ (-650 |#4|)) 104)) (-3479 (((-1129) $) NIL)) (-4160 (($ (-650 |#4|)) 173)) (-2875 (((-112) $) 174)) (-2475 (($ $) 85)) (-3540 (((-650 |#4|) $) 73)) (-1444 (((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|)) NIL)) (-3221 (((-112) |#4| $) 89)) (-2184 (((-570) $ (-650 |#3|)) 131) (((-570) $) 132)) (-3735 (((-868) $) 172) (($ (-650 |#4|)) 100)) (-1859 (((-112) $ $) NIL)) (-2572 (($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $))) NIL)) (-2872 (((-112) $ $) 84)) (-2954 (($ $ $) 107)) (** (($ $ (-777)) 113)) (* (($ $ $) 111)))
-(((-510 |#1| |#2| |#3| |#4|) (-13 (-1109) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 -2954 ($ $ $)) (-15 -2081 ((-112) $)) (-15 -4028 ((-112) $)) (-15 -3221 ((-112) |#4| $)) (-15 -1698 ((-112) $ $)) (-15 -2297 ((-112) |#4| $)) (-15 -3668 ((-112) $ (-650 |#3|))) (-15 -3668 ((-112) $)) (-15 -2307 ($ $ $)) (-15 -2307 ($ (-650 $))) (-15 -3331 ($ $ $)) (-15 -3331 ($ $ |#4|)) (-15 -2475 ($ $)) (-15 -1444 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -2572 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -2184 ((-570) $ (-650 |#3|))) (-15 -2184 ((-570) $)) (-15 -4224 ($ $)) (-15 -2799 ($ (-650 |#4|))) (-15 -4160 ($ (-650 |#4|))) (-15 -2875 ((-112) $)) (-15 -3540 ((-650 |#4|) $)) (-15 -3735 ($ (-650 |#4|))) (-15 -2101 ($ $ |#4|)) (-15 -2101 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -3585 ((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|))) |%noBranch|))) (-368) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -510))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2954 (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-2081 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-4028 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3221 (*1 *2 *3 *1) (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-1698 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2297 (*1 *2 *3 *1) (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-3668 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-3668 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2307 (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-650 (-510 *3 *4 *5 *6))) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3331 (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-3331 (*1 *1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))) (-2475 (*1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-1444 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *2 (-2 (|:| |mval| (-695 *4)) (|:| |invmval| (-695 *4)) (|:| |genIdeal| (-510 *4 *5 *6 *7)))) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-2572 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-695 *3)) (|:| |invmval| (-695 *3)) (|:| |genIdeal| (-510 *3 *4 *5 *6)))) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2184 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *2 (-570)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-2184 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-4224 (*1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-2799 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))) (-4160 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))) (-2875 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3540 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *6)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))) (-2101 (*1 *1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))) (-2101 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *1 (-510 *4 *5 *6 *2)) (-4 *2 (-956 *4 *5 *6)))) (-3585 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *6 (-620 (-1186))) (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1175 (-650 (-959 *4)) (-650 (-298 (-959 *4))))) (-5 *1 (-510 *4 *5 *6 *7)))))
-(-13 (-1109) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 -2954 ($ $ $)) (-15 -2081 ((-112) $)) (-15 -4028 ((-112) $)) (-15 -3221 ((-112) |#4| $)) (-15 -1698 ((-112) $ $)) (-15 -2297 ((-112) |#4| $)) (-15 -3668 ((-112) $ (-650 |#3|))) (-15 -3668 ((-112) $)) (-15 -2307 ($ $ $)) (-15 -2307 ($ (-650 $))) (-15 -3331 ($ $ $)) (-15 -3331 ($ $ |#4|)) (-15 -2475 ($ $)) (-15 -1444 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -2572 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -2184 ((-570) $ (-650 |#3|))) (-15 -2184 ((-570) $)) (-15 -4224 ($ $)) (-15 -2799 ($ (-650 |#4|))) (-15 -4160 ($ (-650 |#4|))) (-15 -2875 ((-112) $)) (-15 -3540 ((-650 |#4|) $)) (-15 -3735 ($ (-650 |#4|))) (-15 -2101 ($ $ |#4|)) (-15 -2101 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -3585 ((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|))) |%noBranch|)))
-((-1661 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 176)) (-1523 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 177)) (-3421 (((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 129)) (-1552 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) NIL)) (-2932 (((-650 (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 179)) (-2140 (((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-650 (-870 |#1|))) 195)))
-(((-511 |#1| |#2|) (-10 -7 (-15 -1661 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -1523 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -1552 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3421 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -2932 ((-650 (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -2140 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-650 (-870 |#1|))))) (-650 (-1186)) (-777)) (T -511))
-((-2140 (*1 *2 *2 *3) (-12 (-5 *2 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-5 *3 (-650 (-870 *4))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *1 (-511 *4 *5)))) (-2932 (*1 *2 *3) (-12 (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-650 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570)))))) (-5 *1 (-511 *4 *5)) (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))))) (-3421 (*1 *2 *2) (-12 (-5 *2 (-510 (-413 (-570)) (-242 *4 (-777)) (-870 *3) (-249 *3 (-413 (-570))))) (-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-511 *3 *4)))) (-1552 (*1 *2 *3) (-12 (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112)) (-5 *1 (-511 *4 *5)))) (-1523 (*1 *2 *3) (-12 (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112)) (-5 *1 (-511 *4 *5)))) (-1661 (*1 *2 *3) (-12 (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112)) (-5 *1 (-511 *4 *5)))))
-(-10 -7 (-15 -1661 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -1523 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -1552 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3421 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -2932 ((-650 (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -2140 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-650 (-870 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2592 (($) 6)) (-3735 (((-868) $) 12) (((-1186) $) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 8)))
-(((-512) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -2592 ($))))) (T -512))
-((-2592 (*1 *1) (-5 *1 (-512))))
-(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -2592 ($))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2178 ((|#2| $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 12 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) 11) (($ $ $) 35)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21)))
+((-3925 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|)) 35)) (-1849 (((-1182 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1182 |#4|)) 22)) (-3204 (((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|))) 49)) (-1659 (((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|) 58)))
+(((-507 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1849 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -1849 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3925 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -3204 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -1659 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|))) (-1058) (-1253 |#1|) (-1253 |#2|) (-1058)) (T -507))
+((-1659 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *6 (-1253 *5)) (-5 *2 (-1182 (-1182 *7))) (-5 *1 (-507 *5 *6 *4 *7)) (-4 *4 (-1253 *6)))) (-3204 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-695 (-1182 *8))) (-4 *5 (-1058)) (-4 *8 (-1058)) (-4 *6 (-1253 *5)) (-5 *2 (-695 *6)) (-5 *1 (-507 *5 *6 *7 *8)) (-4 *7 (-1253 *6)))) (-3925 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1182 *7)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *2 (-1253 *5)) (-5 *1 (-507 *5 *2 *6 *7)) (-4 *6 (-1253 *2)))) (-1849 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *4 (-1253 *5)) (-5 *2 (-1182 *7)) (-5 *1 (-507 *5 *4 *6 *7)) (-4 *6 (-1253 *4)))) (-1849 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1182 *7)) (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *2 (-1253 *5)) (-5 *1 (-507 *5 *2 *6 *7)) (-4 *6 (-1253 *2)))))
+(-10 -7 (-15 -1849 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -1849 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3925 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -3204 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -1659 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-2417 (((-112) $ $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3807 (((-1282) $) 25)) (-1877 (((-1168) $ (-1186)) 30)) (-4131 (((-1282) $) 17)) (-3735 (((-868) $) 27) (($ (-1168)) 26)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 9)))
+(((-508) (-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $)) (-15 -3735 ($ (-1168)))))) (T -508))
+((-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1168)) (-5 *1 (-508)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))) (-3807 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-508)))))
+(-13 (-856) (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $)) (-15 -3807 ((-1282) $)) (-15 -3735 ($ (-1168)))))
+((-4295 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-3329 ((|#1| |#4|) 10)) (-1537 ((|#3| |#4|) 17)))
+(((-509 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3329 (|#1| |#4|)) (-15 -1537 (|#3| |#4|)) (-15 -4295 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-562) (-1001 |#1|) (-378 |#1|) (-378 |#2|)) (T -509))
+((-4295 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-509 *4 *5 *6 *3)) (-4 *6 (-378 *4)) (-4 *3 (-378 *5)))) (-1537 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-4 *2 (-378 *4)) (-5 *1 (-509 *4 *5 *2 *3)) (-4 *3 (-378 *5)))) (-3329 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-509 *2 *4 *5 *3)) (-4 *5 (-378 *2)) (-4 *3 (-378 *4)))))
+(-10 -7 (-15 -3329 (|#1| |#4|)) (-15 -1537 (|#3| |#4|)) (-15 -4295 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-2417 (((-112) $ $) NIL)) (-3589 (((-112) $ (-650 |#3|)) 124) (((-112) $) 125)) (-2745 (((-112) $) 176)) (-1434 (($ $ |#4|) 115) (($ $ |#4| (-650 |#3|)) 119)) (-4033 (((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|)) 169 (|has| |#3| (-620 (-1186))))) (-3389 (($ $ $) 105) (($ $ |#4|) 103)) (-4340 (((-112) $) 175)) (-4139 (($ $) 129)) (-4268 (((-1168) $) NIL)) (-2885 (($ $ $) 97) (($ (-650 $)) 99)) (-2786 (((-112) |#4| $) 127)) (-1860 (((-112) $ $) 82)) (-3976 (($ (-650 |#4|)) 104)) (-3479 (((-1129) $) NIL)) (-1649 (($ (-650 |#4|)) 173)) (-3478 (((-112) $) 174)) (-4013 (($ $) 85)) (-1728 (((-650 |#4|) $) 73)) (-1543 (((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|)) NIL)) (-3677 (((-112) |#4| $) 89)) (-4154 (((-570) $ (-650 |#3|)) 131) (((-570) $) 132)) (-3735 (((-868) $) 172) (($ (-650 |#4|)) 100)) (-3866 (((-112) $ $) NIL)) (-3676 (($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $))) NIL)) (-2872 (((-112) $ $) 84)) (-2953 (($ $ $) 107)) (** (($ $ (-777)) 113)) (* (($ $ $) 111)))
+(((-510 |#1| |#2| |#3| |#4|) (-13 (-1109) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 -2953 ($ $ $)) (-15 -4340 ((-112) $)) (-15 -2745 ((-112) $)) (-15 -3677 ((-112) |#4| $)) (-15 -1860 ((-112) $ $)) (-15 -2786 ((-112) |#4| $)) (-15 -3589 ((-112) $ (-650 |#3|))) (-15 -3589 ((-112) $)) (-15 -2885 ($ $ $)) (-15 -2885 ($ (-650 $))) (-15 -3389 ($ $ $)) (-15 -3389 ($ $ |#4|)) (-15 -4013 ($ $)) (-15 -1543 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -3676 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -4154 ((-570) $ (-650 |#3|))) (-15 -4154 ((-570) $)) (-15 -4139 ($ $)) (-15 -3976 ($ (-650 |#4|))) (-15 -1649 ($ (-650 |#4|))) (-15 -3478 ((-112) $)) (-15 -1728 ((-650 |#4|) $)) (-15 -3735 ($ (-650 |#4|))) (-15 -1434 ($ $ |#4|)) (-15 -1434 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -4033 ((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|))) |%noBranch|))) (-368) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -510))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2953 (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-4340 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2745 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3677 (*1 *2 *3 *1) (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-1860 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2786 (*1 *2 *3 *1) (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))) (-3589 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-3589 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-2885 (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-650 (-510 *3 *4 *5 *6))) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3389 (*1 *1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-3389 (*1 *1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))) (-4013 (*1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-1543 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *2 (-2 (|:| |mval| (-695 *4)) (|:| |invmval| (-695 *4)) (|:| |genIdeal| (-510 *4 *5 *6 *7)))) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-3676 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-695 *3)) (|:| |invmval| (-695 *3)) (|:| |genIdeal| (-510 *3 *4 *5 *6)))) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-4154 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *2 (-570)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))) (-4154 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-4139 (*1 *1 *1) (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856)) (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))) (-1649 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))) (-3478 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-1728 (*1 *2 *1) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *6)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))) (-1434 (*1 *1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))) (-1434 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799)) (-5 *1 (-510 *4 *5 *6 *2)) (-4 *2 (-956 *4 *5 *6)))) (-4033 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *6 (-620 (-1186))) (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1175 (-650 (-959 *4)) (-650 (-298 (-959 *4))))) (-5 *1 (-510 *4 *5 *6 *7)))))
+(-13 (-1109) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 -2953 ($ $ $)) (-15 -4340 ((-112) $)) (-15 -2745 ((-112) $)) (-15 -3677 ((-112) |#4| $)) (-15 -1860 ((-112) $ $)) (-15 -2786 ((-112) |#4| $)) (-15 -3589 ((-112) $ (-650 |#3|))) (-15 -3589 ((-112) $)) (-15 -2885 ($ $ $)) (-15 -2885 ($ (-650 $))) (-15 -3389 ($ $ $)) (-15 -3389 ($ $ |#4|)) (-15 -4013 ($ $)) (-15 -1543 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -3676 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -4154 ((-570) $ (-650 |#3|))) (-15 -4154 ((-570) $)) (-15 -4139 ($ $)) (-15 -3976 ($ (-650 |#4|))) (-15 -1649 ($ (-650 |#4|))) (-15 -3478 ((-112) $)) (-15 -1728 ((-650 |#4|) $)) (-15 -3735 ($ (-650 |#4|))) (-15 -1434 ($ $ |#4|)) (-15 -1434 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -4033 ((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|))) |%noBranch|)))
+((-2598 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 176)) (-3714 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 177)) (-3421 (((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 129)) (-4037 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) NIL)) (-3946 (((-650 (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 179)) (-3681 (((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-650 (-870 |#1|))) 195)))
+(((-511 |#1| |#2|) (-10 -7 (-15 -2598 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3714 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -4037 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3421 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3946 ((-650 (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3681 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-650 (-870 |#1|))))) (-650 (-1186)) (-777)) (T -511))
+((-3681 (*1 *2 *2 *3) (-12 (-5 *2 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-5 *3 (-650 (-870 *4))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *1 (-511 *4 *5)))) (-3946 (*1 *2 *3) (-12 (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-650 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570)))))) (-5 *1 (-511 *4 *5)) (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))))) (-3421 (*1 *2 *2) (-12 (-5 *2 (-510 (-413 (-570)) (-242 *4 (-777)) (-870 *3) (-249 *3 (-413 (-570))))) (-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-511 *3 *4)))) (-4037 (*1 *2 *3) (-12 (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112)) (-5 *1 (-511 *4 *5)))) (-3714 (*1 *2 *3) (-12 (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112)) (-5 *1 (-511 *4 *5)))) (-2598 (*1 *2 *3) (-12 (-5 *3 (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4) (-249 *4 (-413 (-570))))) (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112)) (-5 *1 (-511 *4 *5)))))
+(-10 -7 (-15 -2598 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3714 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -4037 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3421 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3946 ((-650 (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3681 ((-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))) (-650 (-870 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2594 (($) 6)) (-3735 (((-868) $) 12) (((-1186) $) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 8)))
+(((-512) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -2594 ($))))) (T -512))
+((-2594 (*1 *1) (-5 *1 (-512))))
+(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -2594 ($))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4079 ((|#2| $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 12 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) 11) (($ $ $) 35)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21)))
(((-513 |#1| |#2|) (-13 (-21) (-515 |#1| |#2|)) (-21) (-856)) (T -513))
NIL
(-13 (-21) (-515 |#1| |#2|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 13)) (-2450 (($) NIL T CONST)) (-1890 (($ $) 41)) (-3872 (($ |#1| |#2|) 38)) (-1351 (($ (-1 |#1| |#1|) $) 40)) (-2178 ((|#2| $) NIL)) (-1864 ((|#1| $) 42)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 10 T CONST)) (-2872 (((-112) $ $) NIL)) (-2954 (($ $ $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 36)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 13)) (-3761 (($) NIL T CONST)) (-1891 (($ $) 41)) (-3872 (($ |#1| |#2|) 38)) (-1352 (($ (-1 |#1| |#1|) $) 40)) (-4079 ((|#2| $) NIL)) (-1865 ((|#1| $) 42)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 10 T CONST)) (-2872 (((-112) $ $) NIL)) (-2953 (($ $ $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 36)))
(((-514 |#1| |#2|) (-13 (-23) (-515 |#1| |#2|)) (-23) (-856)) (T -514))
NIL
(-13 (-23) (-515 |#1| |#2|))
-((-2416 (((-112) $ $) 7)) (-1890 (($ $) 14)) (-3872 (($ |#1| |#2|) 17)) (-1351 (($ (-1 |#1| |#1|) $) 18)) (-2178 ((|#2| $) 15)) (-1864 ((|#1| $) 16)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) 7)) (-1891 (($ $) 14)) (-3872 (($ |#1| |#2|) 17)) (-1352 (($ (-1 |#1| |#1|) $) 18)) (-4079 ((|#2| $) 15)) (-1865 ((|#1| $) 16)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-515 |#1| |#2|) (-141) (-1109) (-856)) (T -515))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-515 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-856)))) (-3872 (*1 *1 *2 *3) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))) (-1864 (*1 *2 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1109)))) (-2178 (*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))) (-1890 (*1 *1 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))))
-(-13 (-1109) (-10 -8 (-15 -1351 ($ (-1 |t#1| |t#1|) $)) (-15 -3872 ($ |t#1| |t#2|)) (-15 -1864 (|t#1| $)) (-15 -2178 (|t#2| $)) (-15 -1890 ($ $))))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-515 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-856)))) (-3872 (*1 *1 *2 *3) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1109)))) (-4079 (*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))) (-1891 (*1 *1 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))))
+(-13 (-1109) (-10 -8 (-15 -1352 ($ (-1 |t#1| |t#1|) $)) (-15 -3872 ($ |t#1| |t#2|)) (-15 -1865 (|t#1| $)) (-15 -4079 (|t#2| $)) (-15 -1891 ($ $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2178 ((|#2| $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 22)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4079 ((|#2| $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 22)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
(((-516 |#1| |#2|) (-13 (-798) (-515 |#1| |#2|)) (-798) (-856)) (T -516))
NIL
(-13 (-798) (-515 |#1| |#2|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3947 (($ $ $) 23)) (-3596 (((-3 $ "failed") $ $) 19)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2178 ((|#2| $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3125 (($ $ $) 23)) (-4119 (((-3 $ "failed") $ $) 19)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4079 ((|#2| $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
(((-517 |#1| |#2|) (-13 (-799) (-515 |#1| |#2|)) (-799) (-856)) (T -517))
NIL
(-13 (-799) (-515 |#1| |#2|))
-((-2416 (((-112) $ $) NIL)) (-1890 (($ $) 32)) (-3872 (($ |#1| |#2|) 28)) (-1351 (($ (-1 |#1| |#1|) $) 30)) (-2178 ((|#2| $) 34)) (-1864 ((|#1| $) 33)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 20)))
+((-2417 (((-112) $ $) NIL)) (-1891 (($ $) 32)) (-3872 (($ |#1| |#2|) 28)) (-1352 (($ (-1 |#1| |#1|) $) 30)) (-4079 ((|#2| $) 34)) (-1865 ((|#1| $) 33)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 20)))
(((-518 |#1| |#2|) (-515 |#1| |#2|) (-1109) (-856)) (T -518))
NIL
(-515 |#1| |#2|)
-((-1730 (($ $ (-650 |#2|) (-650 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-519 |#1| |#2| |#3|) (-10 -8 (-15 -1730 (|#1| |#1| |#2| |#3|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#3|)))) (-520 |#2| |#3|) (-1109) (-1226)) (T -519))
-NIL
-(-10 -8 (-15 -1730 (|#1| |#1| |#2| |#3|)) (-15 -1730 (|#1| |#1| (-650 |#2|) (-650 |#3|))))
-((-1730 (($ $ (-650 |#1|) (-650 |#2|)) 7) (($ $ |#1| |#2|) 6)))
-(((-520 |#1| |#2|) (-141) (-1109) (-1226)) (T -520))
-((-1730 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 *5)) (-4 *1 (-520 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1226)))) (-1730 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-520 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1226)))))
-(-13 (-10 -8 (-15 -1730 ($ $ |t#1| |t#2|)) (-15 -1730 ($ $ (-650 |t#1|) (-650 |t#2|)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 17)) (-2230 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $) 19)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777) $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-2530 ((|#1| $ (-570)) 24)) (-2896 ((|#2| $ (-570)) 22)) (-2553 (($ (-1 |#1| |#1|) $) 48)) (-1644 (($ (-1 |#2| |#2|) $) 45)) (-1903 (((-1168) $) NIL)) (-3296 (($ $ $) 55 (|has| |#2| (-798)))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 44) (($ |#1|) NIL)) (-1715 ((|#2| |#1| $) 51)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 11 T CONST)) (-2872 (((-112) $ $) 30)) (-2954 (($ $ $) 28) (($ |#1| $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 37) (($ |#2| |#1|) 32)))
+((-1731 (($ $ (-650 |#2|) (-650 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-519 |#1| |#2| |#3|) (-10 -8 (-15 -1731 (|#1| |#1| |#2| |#3|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#3|)))) (-520 |#2| |#3|) (-1109) (-1227)) (T -519))
+NIL
+(-10 -8 (-15 -1731 (|#1| |#1| |#2| |#3|)) (-15 -1731 (|#1| |#1| (-650 |#2|) (-650 |#3|))))
+((-1731 (($ $ (-650 |#1|) (-650 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(((-520 |#1| |#2|) (-141) (-1109) (-1227)) (T -520))
+((-1731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 *5)) (-4 *1 (-520 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1227)))) (-1731 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-520 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1227)))))
+(-13 (-10 -8 (-15 -1731 ($ $ |t#1| |t#2|)) (-15 -1731 ($ $ (-650 |t#1|) (-650 |t#2|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 17)) (-3345 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))) $) 19)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777) $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3243 ((|#1| $ (-570)) 24)) (-3671 ((|#2| $ (-570)) 22)) (-3484 (($ (-1 |#1| |#1|) $) 48)) (-2445 (($ (-1 |#2| |#2|) $) 45)) (-4268 (((-1168) $) NIL)) (-3046 (($ $ $) 55 (|has| |#2| (-798)))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 44) (($ |#1|) NIL)) (-1983 ((|#2| |#1| $) 51)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 11 T CONST)) (-2872 (((-112) $ $) 30)) (-2953 (($ $ $) 28) (($ |#1| $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 37) (($ |#2| |#1|) 32)))
(((-521 |#1| |#2| |#3|) (-327 |#1| |#2|) (-1109) (-132) |#2|) (T -521))
NIL
(-327 |#1| |#2|)
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-2399 (((-112) (-112)) 32)) (-3895 ((|#1| $ (-570) |#1|) 42 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) |#1|) $) 80)) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-2208 (($ $) 84 (|has| |#1| (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 67)) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3913 (($ $ (-570)) 19)) (-2606 (((-777) $) 13)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 31)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 29 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-2190 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 58)) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) 59) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) 28 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2278 (($ $ $ (-570)) 76) (($ |#1| $ (-570)) 60)) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2666 (($ (-650 |#1|)) 43)) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) 24 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 63)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 21)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 56) (($ $ (-1243 (-570))) NIL)) (-1882 (($ $ (-1243 (-570))) 74) (($ $ (-570)) 68)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) 64 (|has| $ (-6 -4449)))) (-3915 (($ $) 54)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) NIL)) (-2850 (($ $ $) 65) (($ $ |#1|) 62)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) 61) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 22 (|has| $ (-6 -4448)))))
-(((-522 |#1| |#2|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2666 ($ (-650 |#1|))) (-15 -2606 ((-777) $)) (-15 -3913 ($ $ (-570))) (-15 -2399 ((-112) (-112))))) (-1226) (-570)) (T -522))
-((-2666 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-522 *3 *4)) (-14 *4 (-570)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1226)) (-14 *4 (-570)))) (-3913 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1226)) (-14 *4 *2))) (-2399 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1226)) (-14 *4 (-570)))))
-(-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2666 ($ (-650 |#1|))) (-15 -2606 ((-777) $)) (-15 -3913 ($ $ (-570))) (-15 -2399 ((-112) (-112)))))
-((-2416 (((-112) $ $) NIL)) (-3083 (((-1144) $) 11)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1380 (((-1144) $) 13)) (-2387 (((-1144) $) 9)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-523) (-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $)) (-15 -3083 ((-1144) $)) (-15 -1380 ((-1144) $))))) (T -523))
-((-2387 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-3083 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-1380 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
-(-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $)) (-15 -3083 ((-1144) $)) (-15 -1380 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-587 |#1|) (-373)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-587 |#1|) (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-587 |#1|) "failed") $) NIL)) (-3080 (((-587 |#1|) $) NIL)) (-2049 (($ (-1276 (-587 |#1|))) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-587 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-587 |#1|) (-373)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL (|has| (-587 |#1|) (-373)))) (-2036 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-2774 (($ $ (-777)) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-1552 (((-112) $) NIL)) (-3157 (((-928) $) NIL (|has| (-587 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| (-587 |#1|) (-373)))) (-3088 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-2610 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2885 (((-3 $ "failed") $) NIL (|has| (-587 |#1|) (-373)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 (-587 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2367 (((-928) $) NIL (|has| (-587 |#1|) (-373)))) (-3587 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373)))) (-1726 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-1182 (-587 |#1|)) "failed") $ $) NIL (|has| (-587 |#1|) (-373)))) (-3609 (($ $ (-1182 (-587 |#1|))) NIL (|has| (-587 |#1|) (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-587 |#1|) (-373)) CONST)) (-2159 (($ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2339 (($) NIL (|has| (-587 |#1|) (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-587 |#1|) (-373)))) (-3738 (((-424 $) $) NIL)) (-3916 (((-839 (-928))) NIL) (((-928)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-777) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-2184 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-1601 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2886 (((-1182 (-587 |#1|))) NIL)) (-2163 (($) NIL (|has| (-587 |#1|) (-373)))) (-3046 (($) NIL (|has| (-587 |#1|) (-373)))) (-1807 (((-1276 (-587 |#1|)) $) NIL) (((-695 (-587 |#1|)) (-1276 $)) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| (-587 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-587 |#1|)) NIL)) (-1918 (($ $) NIL (|has| (-587 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL) (((-1276 $) (-928)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-587 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-587 |#1|)) NIL) (($ (-587 |#1|) $) NIL)))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-1445 (((-112) (-112)) 32)) (-3894 ((|#1| $ (-570) |#1|) 42 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) |#1|) $) 80)) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3092 (($ $) 84 (|has| |#1| (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 67)) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-4094 (($ $ (-570)) 19)) (-2725 (((-777) $) 13)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 31)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 29 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-4210 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 58)) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) 59) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) 28 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2599 (($ $ $ (-570)) 76) (($ |#1| $ (-570)) 60)) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2076 (($ (-650 |#1|)) 43)) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) 24 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 63)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 21)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 56) (($ $ (-1244 (-570))) NIL)) (-4052 (($ $ (-1244 (-570))) 74) (($ $ (-570)) 68)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) 64 (|has| $ (-6 -4450)))) (-3916 (($ $) 54)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) NIL)) (-3214 (($ $ $) 65) (($ $ |#1|) 62)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) 61) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 22 (|has| $ (-6 -4449)))))
+(((-522 |#1| |#2|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2076 ($ (-650 |#1|))) (-15 -2725 ((-777) $)) (-15 -4094 ($ $ (-570))) (-15 -1445 ((-112) (-112))))) (-1227) (-570)) (T -522))
+((-2076 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-522 *3 *4)) (-14 *4 (-570)))) (-2725 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 (-570)))) (-4094 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 *2))) (-1445 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 (-570)))))
+(-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2076 ($ (-650 |#1|))) (-15 -2725 ((-777) $)) (-15 -4094 ($ $ (-570))) (-15 -1445 ((-112) (-112)))))
+((-2417 (((-112) $ $) NIL)) (-2847 (((-1144) $) 11)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3018 (((-1144) $) 13)) (-2387 (((-1144) $) 9)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-523) (-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $)) (-15 -2847 ((-1144) $)) (-15 -3018 ((-1144) $))))) (T -523))
+((-2387 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-2847 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-3018 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
+(-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $)) (-15 -2847 ((-1144) $)) (-15 -3018 ((-1144) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-587 |#1|) (-373)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL (|has| (-587 |#1|) (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-587 |#1|) "failed") $) NIL)) (-3080 (((-587 |#1|) $) NIL)) (-2125 (($ (-1277 (-587 |#1|))) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-587 |#1|) (-373)))) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-587 |#1|) (-373)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL (|has| (-587 |#1|) (-373)))) (-2006 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-1901 (($ $ (-777)) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373)))) (($ $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-4037 (((-112) $) NIL)) (-4331 (((-928) $) NIL (|has| (-587 |#1|) (-373))) (((-839 (-928)) $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| (-587 |#1|) (-373)))) (-2888 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-2771 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-3584 (((-3 $ "failed") $) NIL (|has| (-587 |#1|) (-373)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 (-587 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2332 (((-928) $) NIL (|has| (-587 |#1|) (-373)))) (-4044 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373)))) (-2070 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-1182 (-587 |#1|)) "failed") $ $) NIL (|has| (-587 |#1|) (-373)))) (-4258 (($ $ (-1182 (-587 |#1|))) NIL (|has| (-587 |#1|) (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-587 |#1|) (-373)) CONST)) (-2160 (($ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2340 (($) NIL (|has| (-587 |#1|) (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-587 |#1|) (-373)))) (-3739 (((-424 $) $) NIL)) (-4118 (((-839 (-928))) NIL) (((-928)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-777) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-4154 (((-135)) NIL)) (-3447 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-3221 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-3597 (((-1182 (-587 |#1|))) NIL)) (-3929 (($) NIL (|has| (-587 |#1|) (-373)))) (-2520 (($) NIL (|has| (-587 |#1|) (-373)))) (-1533 (((-1277 (-587 |#1|)) $) NIL) (((-695 (-587 |#1|)) (-1277 $)) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-587 |#1|) (-373)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-587 |#1|)) NIL)) (-3127 (($ $) NIL (|has| (-587 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2740 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2791 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL) (($ $ (-587 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-587 |#1|)) NIL) (($ (-587 |#1|) $) NIL)))
(((-524 |#1| |#2|) (-333 (-587 |#1|)) (-928) (-928)) (T -524))
NIL
(-333 (-587 |#1|))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) (-570) |#1|) 51)) (-3871 (($ $ (-570) |#4|) NIL)) (-2898 (($ $ (-570) |#5|) NIL)) (-2450 (($) NIL T CONST)) (-2653 ((|#4| $ (-570)) NIL)) (-3790 ((|#1| $ (-570) (-570) |#1|) 50)) (-3712 ((|#1| $ (-570) (-570)) 45)) (-2836 (((-650 |#1|) $) NIL)) (-3153 (((-777) $) 33)) (-4286 (($ (-777) (-777) |#1|) 30)) (-3167 (((-777) $) 38)) (-2742 (((-112) $ (-777)) NIL)) (-3118 (((-570) $) 31)) (-1607 (((-570) $) 32)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3392 (((-570) $) 37)) (-1555 (((-570) $) 39)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) 55 (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 14)) (-3743 (($) 16)) (-1876 ((|#1| $ (-570) (-570)) 48) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3541 ((|#5| $ (-570)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-525 |#1| |#2| |#3| |#4| |#5|) (-57 |#1| |#4| |#5|) (-1226) (-570) (-570) (-378 |#1|) (-378 |#1|)) (T -525))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) (-570) |#1|) 51)) (-1850 (($ $ (-570) |#4|) NIL)) (-3693 (($ $ (-570) |#5|) NIL)) (-3761 (($) NIL T CONST)) (-1991 ((|#4| $ (-570)) NIL)) (-3789 ((|#1| $ (-570) (-570) |#1|) 50)) (-3713 ((|#1| $ (-570) (-570)) 45)) (-2835 (((-650 |#1|) $) NIL)) (-3155 (((-777) $) 33)) (-4287 (($ (-777) (-777) |#1|) 30)) (-3167 (((-777) $) 38)) (-1586 (((-112) $ (-777)) NIL)) (-2055 (((-570) $) 31)) (-3295 (((-570) $) 32)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2755 (((-570) $) 37)) (-4067 (((-570) $) 39)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) 55 (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 14)) (-3006 (($) 16)) (-1877 ((|#1| $ (-570) (-570)) 48) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-1743 ((|#5| $ (-570)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-525 |#1| |#2| |#3| |#4| |#5|) (-57 |#1| |#4| |#5|) (-1227) (-570) (-570) (-378 |#1|) (-378 |#1|)) (T -525))
NIL
(-57 |#1| |#4| |#5|)
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1573 (($ $) NIL)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) 73 (|has| $ (-6 -4449)))) (-4254 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3239 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) 68 (|has| $ (-6 -4449)))) (-3288 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2512 (($ $ $) 23 (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) 21 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4449))) (($ $ "rest" $) 24 (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) |#1|) $) NIL)) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2533 ((|#1| $) NIL)) (-2450 (($) NIL T CONST)) (-2697 (($ $) 28 (|has| $ (-6 -4449)))) (-2258 (($ $) 29)) (-3455 (($ $) 18) (($ $ (-777)) 35)) (-2208 (($ $) 66 (|has| |#1| (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1702 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-2356 (((-112) $) NIL)) (-3998 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-2836 (((-650 |#1|) $) 27 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 31 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-2190 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 69)) (-3068 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 64 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3312 (($ |#1|) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) NIL)) (-1903 (((-1168) $) 62 (|has| |#1| (-1109)))) (-1728 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2278 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4285 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) 13) (($ $ (-777)) NIL)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-3412 (((-112) $) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 12)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) 17)) (-3743 (($) 16)) (-1876 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1243 (-570))) NIL) ((|#1| $ (-570)) NIL) ((|#1| $ (-570) |#1|) NIL)) (-1678 (((-570) $ $) NIL)) (-1882 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-3150 (((-112) $) 39)) (-3146 (($ $) NIL)) (-2839 (($ $) NIL (|has| $ (-6 -4449)))) (-2409 (((-777) $) NIL)) (-2567 (($ $) 44)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) 40)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 26)) (-2850 (($ $ $) 65) (($ $ |#1|) NIL)) (-2439 (($ $ $) NIL) (($ |#1| $) 10) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3735 (((-868) $) 54 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) 58 (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 9 (|has| $ (-6 -4448)))))
-(((-526 |#1| |#2|) (-672 |#1|) (-1226) (-570)) (T -526))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1574 (($ $) NIL)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) 73 (|has| $ (-6 -4450)))) (-4429 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3885 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) 68 (|has| $ (-6 -4450)))) (-3287 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3066 (($ $ $) 23 (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) 21 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4450))) (($ $ "rest" $) 24 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) |#1|) $) NIL)) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2533 ((|#1| $) NIL)) (-3761 (($) NIL T CONST)) (-2347 (($ $) 28 (|has| $ (-6 -4450)))) (-2261 (($ $) 29)) (-3455 (($ $) 18) (($ $ (-777)) 35)) (-3092 (($ $) 66 (|has| |#1| (-1109)))) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1703 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-2237 (((-112) $) NIL)) (-3998 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-2835 (((-650 |#1|) $) 27 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 31 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-4210 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 69)) (-2727 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 64 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3312 (($ |#1|) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) NIL)) (-4268 (((-1168) $) 62 (|has| |#1| (-1109)))) (-1729 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2599 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4286 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) 13) (($ $ (-777)) NIL)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2928 (((-112) $) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 12)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) 17)) (-3006 (($) 16)) (-1877 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) NIL) ((|#1| $ (-570) |#1|) NIL)) (-2763 (((-570) $ $) NIL)) (-4052 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-2345 (((-112) $) 39)) (-2308 (($ $) NIL)) (-3103 (($ $) NIL (|has| $ (-6 -4450)))) (-1535 (((-777) $) NIL)) (-3631 (($ $) 44)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) 40)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 26)) (-3214 (($ $ $) 65) (($ $ |#1|) NIL)) (-2439 (($ $ $) NIL) (($ |#1| $) 10) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3735 (((-868) $) 54 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) 58 (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 9 (|has| $ (-6 -4449)))))
+(((-526 |#1| |#2|) (-672 |#1|) (-1227) (-570)) (T -526))
NIL
(-672 |#1|)
-((-3936 ((|#4| |#4|) 37)) (-3934 (((-777) |#4|) 45)) (-1645 (((-777) |#4|) 46)) (-4239 (((-650 |#3|) |#4|) 56 (|has| |#3| (-6 -4449)))) (-4260 (((-3 |#4| "failed") |#4|) 70)) (-1735 ((|#4| |#4|) 62)) (-3154 ((|#1| |#4|) 61)))
-(((-527 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3936 (|#4| |#4|)) (-15 -3934 ((-777) |#4|)) (-15 -1645 ((-777) |#4|)) (IF (|has| |#3| (-6 -4449)) (-15 -4239 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -3154 (|#1| |#4|)) (-15 -1735 (|#4| |#4|)) (-15 -4260 ((-3 |#4| "failed") |#4|))) (-368) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -527))
-((-4260 (*1 *2 *2) (|partial| -12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-1735 (*1 *2 *2) (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-3154 (*1 *2 *3) (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-368)) (-5 *1 (-527 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5)))) (-4239 (*1 *2 *3) (-12 (|has| *6 (-6 -4449)) (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-650 *6)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-1645 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3934 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3936 (*1 *2 *2) (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
-(-10 -7 (-15 -3936 (|#4| |#4|)) (-15 -3934 ((-777) |#4|)) (-15 -1645 ((-777) |#4|)) (IF (|has| |#3| (-6 -4449)) (-15 -4239 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -3154 (|#1| |#4|)) (-15 -1735 (|#4| |#4|)) (-15 -4260 ((-3 |#4| "failed") |#4|)))
-((-3936 ((|#8| |#4|) 20)) (-4239 (((-650 |#3|) |#4|) 29 (|has| |#7| (-6 -4449)))) (-4260 (((-3 |#8| "failed") |#4|) 23)))
-(((-528 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3936 (|#8| |#4|)) (-15 -4260 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4449)) (-15 -4239 ((-650 |#3|) |#4|)) |%noBranch|)) (-562) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|) (-1001 |#1|) (-378 |#5|) (-378 |#5|) (-693 |#5| |#6| |#7|)) (T -528))
-((-4239 (*1 *2 *3) (-12 (|has| *9 (-6 -4449)) (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *8 (-378 *7)) (-4 *9 (-378 *7)) (-5 *2 (-650 *6)) (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-693 *4 *5 *6)) (-4 *10 (-693 *7 *8 *9)))) (-4260 (*1 *2 *3) (|partial| -12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9)) (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6)) (-4 *8 (-378 *7)) (-4 *9 (-378 *7)))) (-3936 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9)) (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6)) (-4 *8 (-378 *7)) (-4 *9 (-378 *7)))))
-(-10 -7 (-15 -3936 (|#8| |#4|)) (-15 -4260 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4449)) (-15 -4239 ((-650 |#3|) |#4|)) |%noBranch|))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) NIL)) (-4331 (($ $ $) NIL)) (-2841 (($ (-608 |#1| |#3|)) NIL) (($ $) NIL)) (-1813 (((-112) $) NIL)) (-3308 (($ $ (-570) (-570)) 21)) (-1883 (($ $ (-570) (-570)) NIL)) (-2390 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-3357 (($ $) NIL)) (-1837 (((-112) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3954 (($ $ (-570) (-570) $) NIL)) (-3895 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-3871 (($ $ (-570) (-608 |#1| |#3|)) NIL)) (-2898 (($ $ (-570) (-608 |#1| |#2|)) NIL)) (-4124 (($ (-777) |#1|) NIL)) (-2450 (($) NIL T CONST)) (-3936 (($ $) 30 (|has| |#1| (-311)))) (-2653 (((-608 |#1| |#3|) $ (-570)) NIL)) (-3934 (((-777) $) 33 (|has| |#1| (-562)))) (-3790 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3712 ((|#1| $ (-570) (-570)) NIL)) (-2836 (((-650 |#1|) $) NIL)) (-1645 (((-777) $) 35 (|has| |#1| (-562)))) (-4239 (((-650 (-608 |#1| |#2|)) $) 38 (|has| |#1| (-562)))) (-3153 (((-777) $) NIL)) (-4286 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2265 ((|#1| $) 28 (|has| |#1| (-6 (-4450 "*"))))) (-3118 (((-570) $) 10)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3392 (((-570) $) 13)) (-1555 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#1|))) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3747 (((-650 (-650 |#1|)) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4260 (((-3 $ "failed") $) 42 (|has| |#1| (-368)))) (-3855 (($ $ $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-1990 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-3055 (((-112) $) NIL)) (-3154 ((|#1| $) 26 (|has| |#1| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3541 (((-608 |#1| |#2|) $ (-570)) NIL)) (-3735 (($ (-608 |#1| |#2|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3317 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-570) $) NIL) (((-608 |#1| |#2|) $ (-608 |#1| |#2|)) NIL) (((-608 |#1| |#3|) (-608 |#1| |#3|) $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+((-4321 ((|#4| |#4|) 37)) (-3933 (((-777) |#4|) 45)) (-2454 (((-777) |#4|) 46)) (-4296 (((-650 |#3|) |#4|) 56 (|has| |#3| (-6 -4450)))) (-3174 (((-3 |#4| "failed") |#4|) 70)) (-2121 ((|#4| |#4|) 62)) (-2371 ((|#1| |#4|) 61)))
+(((-527 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4321 (|#4| |#4|)) (-15 -3933 ((-777) |#4|)) (-15 -2454 ((-777) |#4|)) (IF (|has| |#3| (-6 -4450)) (-15 -4296 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -2371 (|#1| |#4|)) (-15 -2121 (|#4| |#4|)) (-15 -3174 ((-3 |#4| "failed") |#4|))) (-368) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -527))
+((-3174 (*1 *2 *2) (|partial| -12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-2121 (*1 *2 *2) (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-368)) (-5 *1 (-527 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5)))) (-4296 (*1 *2 *3) (-12 (|has| *6 (-6 -4450)) (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-650 *6)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-2454 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3933 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-4321 (*1 *2 *2) (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(-10 -7 (-15 -4321 (|#4| |#4|)) (-15 -3933 ((-777) |#4|)) (-15 -2454 ((-777) |#4|)) (IF (|has| |#3| (-6 -4450)) (-15 -4296 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -2371 (|#1| |#4|)) (-15 -2121 (|#4| |#4|)) (-15 -3174 ((-3 |#4| "failed") |#4|)))
+((-4321 ((|#8| |#4|) 20)) (-4296 (((-650 |#3|) |#4|) 29 (|has| |#7| (-6 -4450)))) (-3174 (((-3 |#8| "failed") |#4|) 23)))
+(((-528 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4321 (|#8| |#4|)) (-15 -3174 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4450)) (-15 -4296 ((-650 |#3|) |#4|)) |%noBranch|)) (-562) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|) (-1001 |#1|) (-378 |#5|) (-378 |#5|) (-693 |#5| |#6| |#7|)) (T -528))
+((-4296 (*1 *2 *3) (-12 (|has| *9 (-6 -4450)) (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *8 (-378 *7)) (-4 *9 (-378 *7)) (-5 *2 (-650 *6)) (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-693 *4 *5 *6)) (-4 *10 (-693 *7 *8 *9)))) (-3174 (*1 *2 *3) (|partial| -12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9)) (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6)) (-4 *8 (-378 *7)) (-4 *9 (-378 *7)))) (-4321 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9)) (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6)) (-4 *8 (-378 *7)) (-4 *9 (-378 *7)))))
+(-10 -7 (-15 -4321 (|#8| |#4|)) (-15 -3174 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4450)) (-15 -4296 ((-650 |#3|) |#4|)) |%noBranch|))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) NIL)) (-2617 (($ $ $) NIL)) (-3115 (($ (-608 |#1| |#3|)) NIL) (($ $) NIL)) (-1587 (((-112) $) NIL)) (-3166 (($ $ (-570) (-570)) 21)) (-4062 (($ $ (-570) (-570)) NIL)) (-1338 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-3660 (($ $) NIL)) (-3639 (((-112) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3190 (($ $ (-570) (-570) $) NIL)) (-3894 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-1850 (($ $ (-570) (-608 |#1| |#3|)) NIL)) (-3693 (($ $ (-570) (-608 |#1| |#2|)) NIL)) (-2465 (($ (-777) |#1|) NIL)) (-3761 (($) NIL T CONST)) (-4321 (($ $) 30 (|has| |#1| (-311)))) (-1991 (((-608 |#1| |#3|) $ (-570)) NIL)) (-3933 (((-777) $) 33 (|has| |#1| (-562)))) (-3789 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3713 ((|#1| $ (-570) (-570)) NIL)) (-2835 (((-650 |#1|) $) NIL)) (-2454 (((-777) $) 35 (|has| |#1| (-562)))) (-4296 (((-650 (-608 |#1| |#2|)) $) 38 (|has| |#1| (-562)))) (-3155 (((-777) $) NIL)) (-4287 (($ (-777) (-777) |#1|) NIL)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2481 ((|#1| $) 28 (|has| |#1| (-6 (-4451 "*"))))) (-2055 (((-570) $) 10)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2755 (((-570) $) 13)) (-4067 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#1|))) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3037 (((-650 (-650 |#1|)) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3174 (((-3 $ "failed") $) 42 (|has| |#1| (-368)))) (-1664 (($ $ $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2682 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-2593 (((-112) $) NIL)) (-2371 ((|#1| $) 26 (|has| |#1| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-1743 (((-608 |#1| |#2|) $ (-570)) NIL)) (-3735 (($ (-608 |#1| |#2|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3251 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-570) $) NIL) (((-608 |#1| |#2|) $ (-608 |#1| |#2|)) NIL) (((-608 |#1| |#3|) (-608 |#1| |#3|) $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-529 |#1| |#2| |#3|) (-693 |#1| (-608 |#1| |#3|) (-608 |#1| |#2|)) (-1058) (-570) (-570)) (T -529))
NIL
(-693 |#1| (-608 |#1| |#3|) (-608 |#1| |#2|))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-2083 (((-650 (-1225)) $) 13)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL) (($ (-650 (-1225))) 11)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-530) (-13 (-1092) (-10 -8 (-15 -3735 ($ (-650 (-1225)))) (-15 -2083 ((-650 (-1225)) $))))) (T -530))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-530)))) (-2083 (*1 *2 *1) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-530)))))
-(-13 (-1092) (-10 -8 (-15 -3735 ($ (-650 (-1225)))) (-15 -2083 ((-650 (-1225)) $))))
-((-2416 (((-112) $ $) NIL)) (-3342 (((-1144) $) 14)) (-1903 (((-1168) $) NIL)) (-3528 (((-512) $) 11)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 21) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-531) (-13 (-1092) (-10 -8 (-15 -3528 ((-512) $)) (-15 -3342 ((-1144) $))))) (T -531))
-((-3528 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531)))) (-3342 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
-(-13 (-1092) (-10 -8 (-15 -3528 ((-512) $)) (-15 -3342 ((-1144) $))))
-((-2795 (((-697 (-1234)) $) 15)) (-2243 (((-697 (-1232)) $) 38)) (-2851 (((-697 (-1231)) $) 29)) (-3818 (((-697 (-555)) $) 12)) (-3736 (((-697 (-553)) $) 42)) (-3016 (((-697 (-552)) $) 33)) (-4271 (((-777) $ (-129)) 54)))
-(((-532 |#1|) (-10 -8 (-15 -4271 ((-777) |#1| (-129))) (-15 -2243 ((-697 (-1232)) |#1|)) (-15 -3736 ((-697 (-553)) |#1|)) (-15 -2851 ((-697 (-1231)) |#1|)) (-15 -3016 ((-697 (-552)) |#1|)) (-15 -2795 ((-697 (-1234)) |#1|)) (-15 -3818 ((-697 (-555)) |#1|))) (-533)) (T -532))
-NIL
-(-10 -8 (-15 -4271 ((-777) |#1| (-129))) (-15 -2243 ((-697 (-1232)) |#1|)) (-15 -3736 ((-697 (-553)) |#1|)) (-15 -2851 ((-697 (-1231)) |#1|)) (-15 -3016 ((-697 (-552)) |#1|)) (-15 -2795 ((-697 (-1234)) |#1|)) (-15 -3818 ((-697 (-555)) |#1|)))
-((-2795 (((-697 (-1234)) $) 12)) (-2243 (((-697 (-1232)) $) 8)) (-2851 (((-697 (-1231)) $) 10)) (-3818 (((-697 (-555)) $) 13)) (-3736 (((-697 (-553)) $) 9)) (-3016 (((-697 (-552)) $) 11)) (-4271 (((-777) $ (-129)) 7)) (-1527 (((-697 (-130)) $) 14)) (-1866 (($ $) 6)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-4363 (((-650 (-1226)) $) 13)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL) (($ (-650 (-1226))) 11)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-530) (-13 (-1092) (-10 -8 (-15 -3735 ($ (-650 (-1226)))) (-15 -4363 ((-650 (-1226)) $))))) (T -530))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))) (-4363 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))))
+(-13 (-1092) (-10 -8 (-15 -3735 ($ (-650 (-1226)))) (-15 -4363 ((-650 (-1226)) $))))
+((-2417 (((-112) $ $) NIL)) (-3499 (((-1144) $) 14)) (-4268 (((-1168) $) NIL)) (-1602 (((-512) $) 11)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 21) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-531) (-13 (-1092) (-10 -8 (-15 -1602 ((-512) $)) (-15 -3499 ((-1144) $))))) (T -531))
+((-1602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531)))) (-3499 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
+(-13 (-1092) (-10 -8 (-15 -1602 ((-512) $)) (-15 -3499 ((-1144) $))))
+((-3931 (((-697 (-1235)) $) 15)) (-3502 (((-697 (-1233)) $) 38)) (-3224 (((-697 (-1232)) $) 29)) (-2444 (((-697 (-555)) $) 12)) (-2951 (((-697 (-553)) $) 42)) (-3481 (((-697 (-552)) $) 33)) (-3317 (((-777) $ (-129)) 54)))
+(((-532 |#1|) (-10 -8 (-15 -3317 ((-777) |#1| (-129))) (-15 -3502 ((-697 (-1233)) |#1|)) (-15 -2951 ((-697 (-553)) |#1|)) (-15 -3224 ((-697 (-1232)) |#1|)) (-15 -3481 ((-697 (-552)) |#1|)) (-15 -3931 ((-697 (-1235)) |#1|)) (-15 -2444 ((-697 (-555)) |#1|))) (-533)) (T -532))
+NIL
+(-10 -8 (-15 -3317 ((-777) |#1| (-129))) (-15 -3502 ((-697 (-1233)) |#1|)) (-15 -2951 ((-697 (-553)) |#1|)) (-15 -3224 ((-697 (-1232)) |#1|)) (-15 -3481 ((-697 (-552)) |#1|)) (-15 -3931 ((-697 (-1235)) |#1|)) (-15 -2444 ((-697 (-555)) |#1|)))
+((-3931 (((-697 (-1235)) $) 12)) (-3502 (((-697 (-1233)) $) 8)) (-3224 (((-697 (-1232)) $) 10)) (-2444 (((-697 (-555)) $) 13)) (-2951 (((-697 (-553)) $) 9)) (-3481 (((-697 (-552)) $) 11)) (-3317 (((-777) $ (-129)) 7)) (-3765 (((-697 (-130)) $) 14)) (-3924 (($ $) 6)))
(((-533) (-141)) (T -533))
-((-1527 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))) (-3818 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))) (-2795 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1234))))) (-3016 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))) (-2851 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1231))))) (-3736 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))) (-2243 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))) (-4271 (*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(-13 (-175) (-10 -8 (-15 -1527 ((-697 (-130)) $)) (-15 -3818 ((-697 (-555)) $)) (-15 -2795 ((-697 (-1234)) $)) (-15 -3016 ((-697 (-552)) $)) (-15 -2851 ((-697 (-1231)) $)) (-15 -3736 ((-697 (-553)) $)) (-15 -2243 ((-697 (-1232)) $)) (-15 -4271 ((-777) $ (-129)))))
+((-3765 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))) (-2444 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))) (-3931 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1235))))) (-3481 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))) (-3224 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))) (-2951 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))) (-3502 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1233))))) (-3317 (*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
+(-13 (-175) (-10 -8 (-15 -3765 ((-697 (-130)) $)) (-15 -2444 ((-697 (-555)) $)) (-15 -3931 ((-697 (-1235)) $)) (-15 -3481 ((-697 (-552)) $)) (-15 -3224 ((-697 (-1232)) $)) (-15 -2951 ((-697 (-553)) $)) (-15 -3502 ((-697 (-1233)) $)) (-15 -3317 ((-777) $ (-129)))))
(((-175) . T))
-((-2522 (((-1182 |#1|) (-777)) 114)) (-3071 (((-1276 |#1|) (-1276 |#1|) (-928)) 107)) (-1750 (((-1281) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) |#1|) 122)) (-1398 (((-1276 |#1|) (-1276 |#1|) (-777)) 53)) (-3336 (((-1276 |#1|) (-928)) 109)) (-1391 (((-1276 |#1|) (-1276 |#1|) (-570)) 30)) (-3282 (((-1182 |#1|) (-1276 |#1|)) 115)) (-1484 (((-1276 |#1|) (-928)) 135)) (-3088 (((-112) (-1276 |#1|)) 119)) (-2610 (((-1276 |#1|) (-1276 |#1|) (-928)) 99)) (-1638 (((-1182 |#1|) (-1276 |#1|)) 129)) (-2367 (((-928) (-1276 |#1|)) 95)) (-1825 (((-1276 |#1|) (-1276 |#1|)) 38)) (-2159 (((-1276 |#1|) (-928) (-928)) 138)) (-1590 (((-1276 |#1|) (-1276 |#1|) (-1129) (-1129)) 29)) (-3301 (((-1276 |#1|) (-1276 |#1|) (-777) (-1129)) 54)) (-2331 (((-1276 (-1276 |#1|)) (-928)) 134)) (-2975 (((-1276 |#1|) (-1276 |#1|) (-1276 |#1|)) 120)) (** (((-1276 |#1|) (-1276 |#1|) (-570)) 67)) (* (((-1276 |#1|) (-1276 |#1|) (-1276 |#1|)) 31)))
-(((-534 |#1|) (-10 -7 (-15 -1750 ((-1281) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) |#1|)) (-15 -3336 ((-1276 |#1|) (-928))) (-15 -2159 ((-1276 |#1|) (-928) (-928))) (-15 -3282 ((-1182 |#1|) (-1276 |#1|))) (-15 -2522 ((-1182 |#1|) (-777))) (-15 -3301 ((-1276 |#1|) (-1276 |#1|) (-777) (-1129))) (-15 -1398 ((-1276 |#1|) (-1276 |#1|) (-777))) (-15 -1590 ((-1276 |#1|) (-1276 |#1|) (-1129) (-1129))) (-15 -1391 ((-1276 |#1|) (-1276 |#1|) (-570))) (-15 ** ((-1276 |#1|) (-1276 |#1|) (-570))) (-15 * ((-1276 |#1|) (-1276 |#1|) (-1276 |#1|))) (-15 -2975 ((-1276 |#1|) (-1276 |#1|) (-1276 |#1|))) (-15 -2610 ((-1276 |#1|) (-1276 |#1|) (-928))) (-15 -3071 ((-1276 |#1|) (-1276 |#1|) (-928))) (-15 -1825 ((-1276 |#1|) (-1276 |#1|))) (-15 -2367 ((-928) (-1276 |#1|))) (-15 -3088 ((-112) (-1276 |#1|))) (-15 -2331 ((-1276 (-1276 |#1|)) (-928))) (-15 -1484 ((-1276 |#1|) (-928))) (-15 -1638 ((-1182 |#1|) (-1276 |#1|)))) (-354)) (T -534))
-((-1638 (*1 *2 *3) (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-1484 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1276 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1276 (-1276 *4))) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3088 (*1 *2 *3) (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-534 *4)))) (-2367 (*1 *2 *3) (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-928)) (-5 *1 (-534 *4)))) (-1825 (*1 *2 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (-3071 (*1 *2 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2610 (*1 *2 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2975 (*1 *2 *2 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-570)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-1391 (*1 *2 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-570)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-1590 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-1129)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-1398 (*1 *2 *2 *3) (-12 (-5 *2 (-1276 *4)) (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3301 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1276 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354)) (-5 *1 (-534 *5)))) (-2522 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3282 (*1 *2 *3) (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-2159 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1276 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3336 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1276 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-1750 (*1 *2 *3 *4) (-12 (-5 *3 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-1281)) (-5 *1 (-534 *4)))))
-(-10 -7 (-15 -1750 ((-1281) (-1276 (-650 (-2 (|:| -2195 |#1|) (|:| -2159 (-1129))))) |#1|)) (-15 -3336 ((-1276 |#1|) (-928))) (-15 -2159 ((-1276 |#1|) (-928) (-928))) (-15 -3282 ((-1182 |#1|) (-1276 |#1|))) (-15 -2522 ((-1182 |#1|) (-777))) (-15 -3301 ((-1276 |#1|) (-1276 |#1|) (-777) (-1129))) (-15 -1398 ((-1276 |#1|) (-1276 |#1|) (-777))) (-15 -1590 ((-1276 |#1|) (-1276 |#1|) (-1129) (-1129))) (-15 -1391 ((-1276 |#1|) (-1276 |#1|) (-570))) (-15 ** ((-1276 |#1|) (-1276 |#1|) (-570))) (-15 * ((-1276 |#1|) (-1276 |#1|) (-1276 |#1|))) (-15 -2975 ((-1276 |#1|) (-1276 |#1|) (-1276 |#1|))) (-15 -2610 ((-1276 |#1|) (-1276 |#1|) (-928))) (-15 -3071 ((-1276 |#1|) (-1276 |#1|) (-928))) (-15 -1825 ((-1276 |#1|) (-1276 |#1|))) (-15 -2367 ((-928) (-1276 |#1|))) (-15 -3088 ((-112) (-1276 |#1|))) (-15 -2331 ((-1276 (-1276 |#1|)) (-928))) (-15 -1484 ((-1276 |#1|) (-928))) (-15 -1638 ((-1182 |#1|) (-1276 |#1|))))
-((-2795 (((-697 (-1234)) $) NIL)) (-2243 (((-697 (-1232)) $) NIL)) (-2851 (((-697 (-1231)) $) NIL)) (-3818 (((-697 (-555)) $) NIL)) (-3736 (((-697 (-553)) $) NIL)) (-3016 (((-697 (-552)) $) NIL)) (-4271 (((-777) $ (-129)) NIL)) (-1527 (((-697 (-130)) $) 26)) (-3988 (((-1129) $ (-1129)) 31)) (-3998 (((-1129) $) 30)) (-1372 (((-112) $) 20)) (-3914 (($ (-394)) 14) (($ (-1168)) 16)) (-1689 (((-112) $) 27)) (-3735 (((-868) $) 34)) (-1866 (($ $) 28)))
-(((-535) (-13 (-533) (-619 (-868)) (-10 -8 (-15 -3914 ($ (-394))) (-15 -3914 ($ (-1168))) (-15 -1689 ((-112) $)) (-15 -1372 ((-112) $)) (-15 -3998 ((-1129) $)) (-15 -3988 ((-1129) $ (-1129)))))) (T -535))
-((-3914 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))) (-3914 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535)))) (-1689 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-1372 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-3998 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))) (-3988 (*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
-(-13 (-533) (-619 (-868)) (-10 -8 (-15 -3914 ($ (-394))) (-15 -3914 ($ (-1168))) (-15 -1689 ((-112) $)) (-15 -1372 ((-112) $)) (-15 -3998 ((-1129) $)) (-15 -3988 ((-1129) $ (-1129)))))
-((-1371 (((-1 |#1| |#1|) |#1|) 11)) (-4030 (((-1 |#1| |#1|)) 10)))
-(((-536 |#1|) (-10 -7 (-15 -4030 ((-1 |#1| |#1|))) (-15 -1371 ((-1 |#1| |#1|) |#1|))) (-13 (-732) (-25))) (T -536))
-((-1371 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))) (-4030 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
-(-10 -7 (-15 -4030 ((-1 |#1| |#1|))) (-15 -1371 ((-1 |#1| |#1|) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3947 (($ $ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3872 (($ (-777) |#1|) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1351 (($ (-1 (-777) (-777)) $) NIL)) (-2178 ((|#1| $) NIL)) (-1864 (((-777) $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
+((-3149 (((-1182 |#1|) (-777)) 114)) (-3071 (((-1277 |#1|) (-1277 |#1|) (-928)) 107)) (-2244 (((-1282) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) |#1|) 122)) (-3837 (((-1277 |#1|) (-1277 |#1|) (-777)) 53)) (-3336 (((-1277 |#1|) (-928)) 109)) (-3865 (((-1277 |#1|) (-1277 |#1|) (-570)) 30)) (-4239 (((-1182 |#1|) (-1277 |#1|)) 115)) (-1518 (((-1277 |#1|) (-928)) 135)) (-2888 (((-112) (-1277 |#1|)) 119)) (-2771 (((-1277 |#1|) (-1277 |#1|) (-928)) 99)) (-2399 (((-1182 |#1|) (-1277 |#1|)) 129)) (-2332 (((-928) (-1277 |#1|)) 95)) (-1826 (((-1277 |#1|) (-1277 |#1|)) 38)) (-2160 (((-1277 |#1|) (-928) (-928)) 138)) (-3120 (((-1277 |#1|) (-1277 |#1|) (-1129) (-1129)) 29)) (-3091 (((-1277 |#1|) (-1277 |#1|) (-777) (-1129)) 54)) (-2003 (((-1277 (-1277 |#1|)) (-928)) 134)) (-2975 (((-1277 |#1|) (-1277 |#1|) (-1277 |#1|)) 120)) (** (((-1277 |#1|) (-1277 |#1|) (-570)) 67)) (* (((-1277 |#1|) (-1277 |#1|) (-1277 |#1|)) 31)))
+(((-534 |#1|) (-10 -7 (-15 -2244 ((-1282) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) |#1|)) (-15 -3336 ((-1277 |#1|) (-928))) (-15 -2160 ((-1277 |#1|) (-928) (-928))) (-15 -4239 ((-1182 |#1|) (-1277 |#1|))) (-15 -3149 ((-1182 |#1|) (-777))) (-15 -3091 ((-1277 |#1|) (-1277 |#1|) (-777) (-1129))) (-15 -3837 ((-1277 |#1|) (-1277 |#1|) (-777))) (-15 -3120 ((-1277 |#1|) (-1277 |#1|) (-1129) (-1129))) (-15 -3865 ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 ** ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 * ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -2975 ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -2771 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -3071 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -1826 ((-1277 |#1|) (-1277 |#1|))) (-15 -2332 ((-928) (-1277 |#1|))) (-15 -2888 ((-112) (-1277 |#1|))) (-15 -2003 ((-1277 (-1277 |#1|)) (-928))) (-15 -1518 ((-1277 |#1|) (-928))) (-15 -2399 ((-1182 |#1|) (-1277 |#1|)))) (-354)) (T -534))
+((-2399 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-1518 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-2003 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 *4))) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-2888 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-534 *4)))) (-2332 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-928)) (-5 *1 (-534 *4)))) (-1826 (*1 *2 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (-3071 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2975 (*1 *2 *2 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3865 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3120 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1129)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3837 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3091 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1277 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354)) (-5 *1 (-534 *5)))) (-3149 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-4239 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-2160 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3336 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-2244 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-1282)) (-5 *1 (-534 *4)))))
+(-10 -7 (-15 -2244 ((-1282) (-1277 (-650 (-2 (|:| -2196 |#1|) (|:| -2160 (-1129))))) |#1|)) (-15 -3336 ((-1277 |#1|) (-928))) (-15 -2160 ((-1277 |#1|) (-928) (-928))) (-15 -4239 ((-1182 |#1|) (-1277 |#1|))) (-15 -3149 ((-1182 |#1|) (-777))) (-15 -3091 ((-1277 |#1|) (-1277 |#1|) (-777) (-1129))) (-15 -3837 ((-1277 |#1|) (-1277 |#1|) (-777))) (-15 -3120 ((-1277 |#1|) (-1277 |#1|) (-1129) (-1129))) (-15 -3865 ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 ** ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 * ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -2975 ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -2771 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -3071 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -1826 ((-1277 |#1|) (-1277 |#1|))) (-15 -2332 ((-928) (-1277 |#1|))) (-15 -2888 ((-112) (-1277 |#1|))) (-15 -2003 ((-1277 (-1277 |#1|)) (-928))) (-15 -1518 ((-1277 |#1|) (-928))) (-15 -2399 ((-1182 |#1|) (-1277 |#1|))))
+((-3931 (((-697 (-1235)) $) NIL)) (-3502 (((-697 (-1233)) $) NIL)) (-3224 (((-697 (-1232)) $) NIL)) (-2444 (((-697 (-555)) $) NIL)) (-2951 (((-697 (-553)) $) NIL)) (-3481 (((-697 (-552)) $) NIL)) (-3317 (((-777) $ (-129)) NIL)) (-3765 (((-697 (-130)) $) 26)) (-3604 (((-1129) $ (-1129)) 31)) (-3998 (((-1129) $) 30)) (-2935 (((-112) $) 20)) (-4105 (($ (-394)) 14) (($ (-1168)) 16)) (-2873 (((-112) $) 27)) (-3735 (((-868) $) 34)) (-3924 (($ $) 28)))
+(((-535) (-13 (-533) (-619 (-868)) (-10 -8 (-15 -4105 ($ (-394))) (-15 -4105 ($ (-1168))) (-15 -2873 ((-112) $)) (-15 -2935 ((-112) $)) (-15 -3998 ((-1129) $)) (-15 -3604 ((-1129) $ (-1129)))))) (T -535))
+((-4105 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))) (-4105 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535)))) (-2873 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-2935 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-3998 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))) (-3604 (*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
+(-13 (-533) (-619 (-868)) (-10 -8 (-15 -4105 ($ (-394))) (-15 -4105 ($ (-1168))) (-15 -2873 ((-112) $)) (-15 -2935 ((-112) $)) (-15 -3998 ((-1129) $)) (-15 -3604 ((-1129) $ (-1129)))))
+((-1370 (((-1 |#1| |#1|) |#1|) 11)) (-2767 (((-1 |#1| |#1|)) 10)))
+(((-536 |#1|) (-10 -7 (-15 -2767 ((-1 |#1| |#1|))) (-15 -1370 ((-1 |#1| |#1|) |#1|))) (-13 (-732) (-25))) (T -536))
+((-1370 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))) (-2767 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
+(-10 -7 (-15 -2767 ((-1 |#1| |#1|))) (-15 -1370 ((-1 |#1| |#1|) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3125 (($ $ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-3872 (($ (-777) |#1|) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-1352 (($ (-1 (-777) (-777)) $) NIL)) (-4079 ((|#1| $) NIL)) (-1865 (((-777) $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
(((-537 |#1|) (-13 (-799) (-515 (-777) |#1|)) (-856)) (T -537))
NIL
(-13 (-799) (-515 (-777) |#1|))
-((-3933 (((-650 |#2|) (-1182 |#1|) |#3|) 98)) (-3116 (((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|))) 114)) (-3661 (((-1182 |#1|) (-695 |#1|)) 110)))
-(((-538 |#1| |#2| |#3|) (-10 -7 (-15 -3661 ((-1182 |#1|) (-695 |#1|))) (-15 -3933 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -3116 ((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|))))) (-368) (-368) (-13 (-368) (-854))) (T -538))
-((-3116 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *6)) (-5 *5 (-1 (-424 (-1182 *6)) (-1182 *6))) (-4 *6 (-368)) (-5 *2 (-650 (-2 (|:| |outval| *7) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 *7)))))) (-5 *1 (-538 *6 *7 *4)) (-4 *7 (-368)) (-4 *4 (-13 (-368) (-854))))) (-3933 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *5)) (-4 *5 (-368)) (-5 *2 (-650 *6)) (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))) (-3661 (*1 *2 *3) (-12 (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *2 (-1182 *4)) (-5 *1 (-538 *4 *5 *6)) (-4 *5 (-368)) (-4 *6 (-13 (-368) (-854))))))
-(-10 -7 (-15 -3661 ((-1182 |#1|) (-695 |#1|))) (-15 -3933 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -3116 ((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|)))))
-((-3343 (((-697 (-1234)) $ (-1234)) NIL)) (-3510 (((-697 (-555)) $ (-555)) NIL)) (-1609 (((-777) $ (-129)) 39)) (-1784 (((-697 (-130)) $ (-130)) 40)) (-2795 (((-697 (-1234)) $) NIL)) (-2243 (((-697 (-1232)) $) NIL)) (-2851 (((-697 (-1231)) $) NIL)) (-3818 (((-697 (-555)) $) NIL)) (-3736 (((-697 (-553)) $) NIL)) (-3016 (((-697 (-552)) $) NIL)) (-4271 (((-777) $ (-129)) 35)) (-1527 (((-697 (-130)) $) 37)) (-2852 (((-112) $) 27)) (-2996 (((-697 $) (-585) (-961)) 18) (((-697 $) (-497) (-961)) 24)) (-3735 (((-868) $) 48)) (-1866 (($ $) 42)))
-(((-539) (-13 (-773 (-585)) (-619 (-868)) (-10 -8 (-15 -2996 ((-697 $) (-497) (-961)))))) (T -539))
-((-2996 (*1 *2 *3 *4) (-12 (-5 *3 (-497)) (-5 *4 (-961)) (-5 *2 (-697 (-539))) (-5 *1 (-539)))))
-(-13 (-773 (-585)) (-619 (-868)) (-10 -8 (-15 -2996 ((-697 $) (-497) (-961)))))
-((-1981 (((-849 (-570))) 12)) (-1991 (((-849 (-570))) 14)) (-1324 (((-839 (-570))) 9)))
-(((-540) (-10 -7 (-15 -1324 ((-839 (-570)))) (-15 -1981 ((-849 (-570)))) (-15 -1991 ((-849 (-570)))))) (T -540))
-((-1991 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-1981 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-1324 (*1 *2) (-12 (-5 *2 (-839 (-570))) (-5 *1 (-540)))))
-(-10 -7 (-15 -1324 ((-839 (-570)))) (-15 -1981 ((-849 (-570)))) (-15 -1991 ((-849 (-570)))))
-((-2905 (((-542) (-1186)) 15)) (-2948 ((|#1| (-542)) 20)))
-(((-541 |#1|) (-10 -7 (-15 -2905 ((-542) (-1186))) (-15 -2948 (|#1| (-542)))) (-1226)) (T -541))
-((-2948 (*1 *2 *3) (-12 (-5 *3 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1226)))) (-2905 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4)) (-4 *4 (-1226)))))
-(-10 -7 (-15 -2905 ((-542) (-1186))) (-15 -2948 (|#1| (-542))))
-((-2416 (((-112) $ $) NIL)) (-1843 (((-1168) $) 55)) (-3773 (((-112) $) 51)) (-1411 (((-1186) $) 52)) (-2076 (((-112) $) 49)) (-3320 (((-1168) $) 50)) (-1412 (($ (-1168)) 56)) (-2952 (((-112) $) NIL)) (-3974 (((-112) $) NIL)) (-1597 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-3120 (($ $ (-650 (-1186))) 21)) (-2948 (((-52) $) 23)) (-2964 (((-112) $) NIL)) (-1440 (((-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-1703 (($ $ (-650 (-1186)) (-1186)) 73)) (-2165 (((-112) $) NIL)) (-2539 (((-227) $) NIL)) (-4385 (($ $) 44)) (-2600 (((-868) $) NIL)) (-4300 (((-112) $ $) NIL)) (-1876 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3826 (((-650 $) $) 30)) (-4036 (((-1186) (-650 $)) 57)) (-1416 (($ (-1168)) NIL) (($ (-1186)) 19) (($ (-570)) 8) (($ (-227)) 28) (($ (-868)) NIL) (($ (-650 $)) 65) (((-1113) $) 12) (($ (-1113)) 13)) (-2510 (((-1186) (-1186) (-650 $)) 60)) (-3735 (((-868) $) 54)) (-3337 (($ $) 59)) (-3325 (($ $) 58)) (-3005 (($ $ (-650 $)) 66)) (-1859 (((-112) $ $) NIL)) (-3415 (((-112) $) 29)) (-1812 (($) 9 T CONST)) (-1823 (($) 11 T CONST)) (-2872 (((-112) $ $) 74)) (-2975 (($ $ $) 82)) (-2954 (($ $ $) 75)) (** (($ $ (-777)) 81) (($ $ (-570)) 80)) (* (($ $ $) 76)) (-2426 (((-570) $) NIL)))
-(((-542) (-13 (-1112 (-1168) (-1186) (-570) (-227) (-868)) (-620 (-1113)) (-10 -8 (-15 -2948 ((-52) $)) (-15 -1416 ($ (-1113))) (-15 -3005 ($ $ (-650 $))) (-15 -1703 ($ $ (-650 (-1186)) (-1186))) (-15 -3120 ($ $ (-650 (-1186)))) (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 0 ($) -3640) (-15 1 ($) -3640) (-15 -4385 ($ $)) (-15 -1843 ((-1168) $)) (-15 -1412 ($ (-1168))) (-15 -4036 ((-1186) (-650 $))) (-15 -2510 ((-1186) (-1186) (-650 $)))))) (T -542))
-((-2948 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-542)))) (-3005 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))) (-1703 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1186)) (-5 *1 (-542)))) (-3120 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-542)))) (-2954 (*1 *1 *1 *1) (-5 *1 (-542))) (* (*1 *1 *1 *1) (-5 *1 (-542))) (-2975 (*1 *1 *1 *1) (-5 *1 (-542))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-542)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-542)))) (-1812 (*1 *1) (-5 *1 (-542))) (-1823 (*1 *1) (-5 *1 (-542))) (-4385 (*1 *1 *1) (-5 *1 (-542))) (-1843 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-1412 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-4036 (*1 *2 *3) (-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))) (-2510 (*1 *2 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-542))) (-5 *1 (-542)))))
-(-13 (-1112 (-1168) (-1186) (-570) (-227) (-868)) (-620 (-1113)) (-10 -8 (-15 -2948 ((-52) $)) (-15 -1416 ($ (-1113))) (-15 -3005 ($ $ (-650 $))) (-15 -1703 ($ $ (-650 (-1186)) (-1186))) (-15 -3120 ($ $ (-650 (-1186)))) (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 (-1812) ($) -3640) (-15 (-1823) ($) -3640) (-15 -4385 ($ $)) (-15 -1843 ((-1168) $)) (-15 -1412 ($ (-1168))) (-15 -4036 ((-1186) (-650 $))) (-15 -2510 ((-1186) (-1186) (-650 $)))))
-((-3939 ((|#2| |#2|) 17)) (-4415 ((|#2| |#2|) 13)) (-1366 ((|#2| |#2| (-570) (-570)) 20)) (-3775 ((|#2| |#2|) 15)))
-(((-543 |#1| |#2|) (-10 -7 (-15 -4415 (|#2| |#2|)) (-15 -3775 (|#2| |#2|)) (-15 -3939 (|#2| |#2|)) (-15 -1366 (|#2| |#2| (-570) (-570)))) (-13 (-562) (-148)) (-1267 |#1|)) (T -543))
-((-1366 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-543 *4 *2)) (-4 *2 (-1267 *4)))) (-3939 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1267 *3)))) (-3775 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1267 *3)))) (-4415 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1267 *3)))))
-(-10 -7 (-15 -4415 (|#2| |#2|)) (-15 -3775 (|#2| |#2|)) (-15 -3939 (|#2| |#2|)) (-15 -1366 (|#2| |#2| (-570) (-570))))
-((-1363 (((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))) 32)) (-2614 (((-650 |#2|) (-959 |#1|) |#3|) 54) (((-650 |#2|) (-1182 |#1|) |#3|) 53)) (-3379 (((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|) 106)))
-(((-544 |#1| |#2| |#3|) (-10 -7 (-15 -2614 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2614 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -3379 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -1363 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))))) (-458) (-368) (-13 (-368) (-854))) (T -544))
-((-1363 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1186))) (-4 *6 (-368)) (-5 *2 (-650 (-298 (-959 *6)))) (-5 *1 (-544 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-13 (-368) (-854))))) (-3379 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-544 *6 *7 *5)) (-4 *7 (-368)) (-4 *5 (-13 (-368) (-854))))) (-2614 (*1 *2 *3 *4) (-12 (-5 *3 (-959 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6)) (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))) (-2614 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6)) (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))))
-(-10 -7 (-15 -2614 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2614 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -3379 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -1363 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186)))))
-((-4052 ((|#2| |#2| |#1|) 17)) (-4413 ((|#2| (-650 |#2|)) 31)) (-4357 ((|#2| (-650 |#2|)) 52)))
-(((-545 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4413 (|#2| (-650 |#2|))) (-15 -4357 (|#2| (-650 |#2|))) (-15 -4052 (|#2| |#2| |#1|))) (-311) (-1252 |#1|) |#1| (-1 |#1| |#1| (-777))) (T -545))
-((-4052 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-777))) (-5 *1 (-545 *3 *2 *4 *5)) (-4 *2 (-1252 *3)))) (-4357 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-545 *4 *2 *5 *6)) (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))) (-4413 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-545 *4 *2 *5 *6)) (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))))
-(-10 -7 (-15 -4413 (|#2| (-650 |#2|))) (-15 -4357 (|#2| (-650 |#2|))) (-15 -4052 (|#2| |#2| |#1|)))
-((-3738 (((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 89) (((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 214)))
-(((-546 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3738 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -546))
-((-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 (-1182 *7)) (-1182 *7))) (-4 *7 (-13 (-311) (-148))) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *8 (-956 *7 *6 *5)) (-5 *2 (-424 (-1182 *8))) (-5 *1 (-546 *5 *6 *7 *8)) (-5 *3 (-1182 *8)))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 (-1182 *7)) (-1182 *7))) (-4 *7 (-13 (-311) (-148))) (-4 *5 (-856)) (-4 *6 (-799)) (-5 *2 (-424 *3)) (-5 *1 (-546 *5 *6 *7 *3)) (-4 *3 (-956 *7 *6 *5)))))
-(-10 -7 (-15 -3738 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3738 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))))
-((-3939 ((|#4| |#4|) 74)) (-4415 ((|#4| |#4|) 70)) (-1366 ((|#4| |#4| (-570) (-570)) 76)) (-3775 ((|#4| |#4|) 72)))
-(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4415 (|#4| |#4|)) (-15 -3775 (|#4| |#4|)) (-15 -3939 (|#4| |#4|)) (-15 -1366 (|#4| |#4| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1252 |#1|) (-730 |#1| |#2|) (-1267 |#3|)) (T -547))
-((-1366 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3))) (-4 *5 (-1252 *4)) (-4 *6 (-730 *4 *5)) (-5 *1 (-547 *4 *5 *6 *2)) (-4 *2 (-1267 *6)))) (-3939 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1252 *3)) (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1267 *5)))) (-3775 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1252 *3)) (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1267 *5)))) (-4415 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1252 *3)) (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1267 *5)))))
-(-10 -7 (-15 -4415 (|#4| |#4|)) (-15 -3775 (|#4| |#4|)) (-15 -3939 (|#4| |#4|)) (-15 -1366 (|#4| |#4| (-570) (-570))))
-((-3939 ((|#2| |#2|) 27)) (-4415 ((|#2| |#2|) 23)) (-1366 ((|#2| |#2| (-570) (-570)) 29)) (-3775 ((|#2| |#2|) 25)))
-(((-548 |#1| |#2|) (-10 -7 (-15 -4415 (|#2| |#2|)) (-15 -3775 (|#2| |#2|)) (-15 -3939 (|#2| |#2|)) (-15 -1366 (|#2| |#2| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1267 |#1|)) (T -548))
-((-1366 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3))) (-5 *1 (-548 *4 *2)) (-4 *2 (-1267 *4)))) (-3939 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1267 *3)))) (-3775 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1267 *3)))) (-4415 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1267 *3)))))
-(-10 -7 (-15 -4415 (|#2| |#2|)) (-15 -3775 (|#2| |#2|)) (-15 -3939 (|#2| |#2|)) (-15 -1366 (|#2| |#2| (-570) (-570))))
-((-2922 (((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|)) 18) (((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|)) 14) (((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|)) 32)))
-(((-549 |#1| |#2|) (-10 -7 (-15 -2922 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -2922 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -2922 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|)))) (-1058) (-1252 |#1|)) (T -549))
-((-2922 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1252 *4)))) (-2922 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1252 *4)))) (-2922 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-570) "failed") *5)) (-4 *5 (-1058)) (-5 *2 (-570)) (-5 *1 (-549 *5 *3)) (-4 *3 (-1252 *5)))))
-(-10 -7 (-15 -2922 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -2922 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -2922 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|))))
-((-2618 (($ $ $) 84)) (-1790 (((-424 $) $) 52)) (-4378 (((-3 (-570) "failed") $) 64)) (-3080 (((-570) $) 42)) (-2951 (((-3 (-413 (-570)) "failed") $) 79)) (-2085 (((-112) $) 26)) (-3137 (((-413 (-570)) $) 77)) (-1552 (((-112) $) 55)) (-2203 (($ $ $ $) 92)) (-1522 (((-112) $) 17)) (-4390 (($ $ $) 62)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 74)) (-2885 (((-3 $ "failed") $) 69)) (-2584 (($ $) 24)) (-2410 (($ $ $) 90)) (-2314 (($) 65)) (-4061 (($ $) 58)) (-3738 (((-424 $) $) 50)) (-1322 (((-112) $) 15)) (-2272 (((-777) $) 32)) (-3447 (($ $ (-777)) NIL) (($ $) 11)) (-3915 (($ $) 18)) (-1416 (((-570) $) NIL) (((-542) $) 41) (((-899 (-570)) $) 45) (((-384) $) 35) (((-227) $) 38)) (-2744 (((-777)) 9)) (-3047 (((-112) $ $) 21)) (-1397 (($ $ $) 60)))
-(((-550 |#1|) (-10 -8 (-15 -2410 (|#1| |#1| |#1|)) (-15 -2203 (|#1| |#1| |#1| |#1|)) (-15 -2584 (|#1| |#1|)) (-15 -3915 (|#1| |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -2618 (|#1| |#1| |#1|)) (-15 -3047 ((-112) |#1| |#1|)) (-15 -1322 ((-112) |#1|)) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -1416 ((-227) |#1|)) (-15 -1416 ((-384) |#1|)) (-15 -4390 (|#1| |#1| |#1|)) (-15 -4061 (|#1| |#1|)) (-15 -1397 (|#1| |#1| |#1|)) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -1416 ((-570) |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -1522 ((-112) |#1|)) (-15 -2272 ((-777) |#1|)) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -1552 ((-112) |#1|)) (-15 -2744 ((-777)))) (-551)) (T -550))
-((-2744 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-550 *3)) (-4 *3 (-551)))))
-(-10 -8 (-15 -2410 (|#1| |#1| |#1|)) (-15 -2203 (|#1| |#1| |#1| |#1|)) (-15 -2584 (|#1| |#1|)) (-15 -3915 (|#1| |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -2618 (|#1| |#1| |#1|)) (-15 -3047 ((-112) |#1| |#1|)) (-15 -1322 ((-112) |#1|)) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -1416 ((-227) |#1|)) (-15 -1416 ((-384) |#1|)) (-15 -4390 (|#1| |#1| |#1|)) (-15 -4061 (|#1| |#1|)) (-15 -1397 (|#1| |#1| |#1|)) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -1416 ((-570) |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -1522 ((-112) |#1|)) (-15 -2272 ((-777) |#1|)) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -1552 ((-112) |#1|)) (-15 -2744 ((-777))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-2618 (($ $ $) 90)) (-3596 (((-3 $ "failed") $ $) 20)) (-4281 (($ $ $ $) 79)) (-2222 (($ $) 57)) (-1790 (((-424 $) $) 58)) (-4339 (((-112) $ $) 130)) (-3140 (((-570) $) 119)) (-3020 (($ $ $) 93)) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 111)) (-3080 (((-570) $) 112)) (-2372 (($ $ $) 134)) (-4177 (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 109) (((-695 (-570)) (-695 $)) 108)) (-3413 (((-3 $ "failed") $) 37)) (-2951 (((-3 (-413 (-570)) "failed") $) 87)) (-2085 (((-112) $) 89)) (-3137 (((-413 (-570)) $) 88)) (-3336 (($) 86) (($ $) 85)) (-2381 (($ $ $) 133)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 128)) (-1552 (((-112) $) 59)) (-2203 (($ $ $ $) 77)) (-1533 (($ $ $) 91)) (-1522 (((-112) $) 121)) (-4390 (($ $ $) 102)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 105)) (-2081 (((-112) $) 35)) (-3431 (((-112) $) 97)) (-2885 (((-3 $ "failed") $) 99)) (-2761 (((-112) $) 120)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 137)) (-2519 (($ $ $ $) 78)) (-3310 (($ $ $) 122)) (-3787 (($ $ $) 123)) (-2584 (($ $) 81)) (-3788 (($ $) 94)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-2410 (($ $ $) 76)) (-2314 (($) 98 T CONST)) (-3522 (($ $) 83)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-4061 (($ $) 103)) (-3738 (((-424 $) $) 56)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 136) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 135)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 129)) (-1322 (((-112) $) 96)) (-2272 (((-777) $) 131)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 132)) (-3447 (($ $ (-777)) 116) (($ $) 114)) (-2430 (($ $) 82)) (-3915 (($ $) 84)) (-1416 (((-570) $) 113) (((-542) $) 107) (((-899 (-570)) $) 106) (((-384) $) 101) (((-227) $) 100)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 110)) (-2744 (((-777)) 32 T CONST)) (-3047 (((-112) $ $) 92)) (-1397 (($ $ $) 104)) (-1859 (((-112) $ $) 9)) (-4358 (($) 95)) (-1681 (((-112) $ $) 45)) (-1662 (($ $ $ $) 80)) (-1423 (($ $) 118)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-777)) 117) (($ $) 115)) (-2924 (((-112) $ $) 125)) (-2904 (((-112) $ $) 126)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 124)) (-2894 (((-112) $ $) 127)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-4301 (((-650 |#2|) (-1182 |#1|) |#3|) 98)) (-2035 (((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|))) 114)) (-3508 (((-1182 |#1|) (-695 |#1|)) 110)))
+(((-538 |#1| |#2| |#3|) (-10 -7 (-15 -3508 ((-1182 |#1|) (-695 |#1|))) (-15 -4301 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2035 ((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|))))) (-368) (-368) (-13 (-368) (-854))) (T -538))
+((-2035 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *6)) (-5 *5 (-1 (-424 (-1182 *6)) (-1182 *6))) (-4 *6 (-368)) (-5 *2 (-650 (-2 (|:| |outval| *7) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 *7)))))) (-5 *1 (-538 *6 *7 *4)) (-4 *7 (-368)) (-4 *4 (-13 (-368) (-854))))) (-4301 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *5)) (-4 *5 (-368)) (-5 *2 (-650 *6)) (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))) (-3508 (*1 *2 *3) (-12 (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *2 (-1182 *4)) (-5 *1 (-538 *4 *5 *6)) (-4 *5 (-368)) (-4 *6 (-13 (-368) (-854))))))
+(-10 -7 (-15 -3508 ((-1182 |#1|) (-695 |#1|))) (-15 -4301 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2035 ((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|)))))
+((-3512 (((-697 (-1235)) $ (-1235)) NIL)) (-1430 (((-697 (-555)) $ (-555)) NIL)) (-3319 (((-777) $ (-129)) 39)) (-1316 (((-697 (-130)) $ (-130)) 40)) (-3931 (((-697 (-1235)) $) NIL)) (-3502 (((-697 (-1233)) $) NIL)) (-3224 (((-697 (-1232)) $) NIL)) (-2444 (((-697 (-555)) $) NIL)) (-2951 (((-697 (-553)) $) NIL)) (-3481 (((-697 (-552)) $) NIL)) (-3317 (((-777) $ (-129)) 35)) (-3765 (((-697 (-130)) $) 37)) (-3236 (((-112) $) 27)) (-3257 (((-697 $) (-585) (-961)) 18) (((-697 $) (-497) (-961)) 24)) (-3735 (((-868) $) 48)) (-3924 (($ $) 42)))
+(((-539) (-13 (-773 (-585)) (-619 (-868)) (-10 -8 (-15 -3257 ((-697 $) (-497) (-961)))))) (T -539))
+((-3257 (*1 *2 *3 *4) (-12 (-5 *3 (-497)) (-5 *4 (-961)) (-5 *2 (-697 (-539))) (-5 *1 (-539)))))
+(-13 (-773 (-585)) (-619 (-868)) (-10 -8 (-15 -3257 ((-697 $) (-497) (-961)))))
+((-1982 (((-849 (-570))) 12)) (-1992 (((-849 (-570))) 14)) (-1325 (((-839 (-570))) 9)))
+(((-540) (-10 -7 (-15 -1325 ((-839 (-570)))) (-15 -1982 ((-849 (-570)))) (-15 -1992 ((-849 (-570)))))) (T -540))
+((-1992 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-1982 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-1325 (*1 *2) (-12 (-5 *2 (-839 (-570))) (-5 *1 (-540)))))
+(-10 -7 (-15 -1325 ((-839 (-570)))) (-15 -1982 ((-849 (-570)))) (-15 -1992 ((-849 (-570)))))
+((-3652 (((-542) (-1186)) 15)) (-2948 ((|#1| (-542)) 20)))
+(((-541 |#1|) (-10 -7 (-15 -3652 ((-542) (-1186))) (-15 -2948 (|#1| (-542)))) (-1227)) (T -541))
+((-2948 (*1 *2 *3) (-12 (-5 *3 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1227)))) (-3652 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4)) (-4 *4 (-1227)))))
+(-10 -7 (-15 -3652 ((-542) (-1186))) (-15 -2948 (|#1| (-542))))
+((-2417 (((-112) $ $) NIL)) (-3698 (((-1168) $) 55)) (-2107 (((-112) $) 51)) (-1412 (((-1186) $) 52)) (-2362 (((-112) $) 49)) (-3320 (((-1168) $) 50)) (-4369 (($ (-1168)) 56)) (-4159 (((-112) $) NIL)) (-3441 (((-112) $) NIL)) (-3186 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-3121 (($ $ (-650 (-1186))) 21)) (-2948 (((-52) $) 23)) (-4269 (((-112) $) NIL)) (-1441 (((-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-1704 (($ $ (-650 (-1186)) (-1186)) 73)) (-3954 (((-112) $) NIL)) (-2539 (((-227) $) NIL)) (-4385 (($ $) 44)) (-2600 (((-868) $) NIL)) (-4302 (((-112) $ $) NIL)) (-1877 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3827 (((-650 $) $) 30)) (-4041 (((-1186) (-650 $)) 57)) (-1417 (($ (-1168)) NIL) (($ (-1186)) 19) (($ (-570)) 8) (($ (-227)) 28) (($ (-868)) NIL) (($ (-650 $)) 65) (((-1113) $) 12) (($ (-1113)) 13)) (-2510 (((-1186) (-1186) (-650 $)) 60)) (-3735 (((-868) $) 54)) (-3337 (($ $) 59)) (-3325 (($ $) 58)) (-3360 (($ $ (-650 $)) 66)) (-3866 (((-112) $ $) NIL)) (-2946 (((-112) $) 29)) (-1814 (($) 9 T CONST)) (-1824 (($) 11 T CONST)) (-2872 (((-112) $ $) 74)) (-2975 (($ $ $) 82)) (-2953 (($ $ $) 75)) (** (($ $ (-777)) 81) (($ $ (-570)) 80)) (* (($ $ $) 76)) (-2426 (((-570) $) NIL)))
+(((-542) (-13 (-1112 (-1168) (-1186) (-570) (-227) (-868)) (-620 (-1113)) (-10 -8 (-15 -2948 ((-52) $)) (-15 -1417 ($ (-1113))) (-15 -3360 ($ $ (-650 $))) (-15 -1704 ($ $ (-650 (-1186)) (-1186))) (-15 -3121 ($ $ (-650 (-1186)))) (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 0 ($) -3640) (-15 1 ($) -3640) (-15 -4385 ($ $)) (-15 -3698 ((-1168) $)) (-15 -4369 ($ (-1168))) (-15 -4041 ((-1186) (-650 $))) (-15 -2510 ((-1186) (-1186) (-650 $)))))) (T -542))
+((-2948 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-542)))) (-3360 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))) (-1704 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1186)) (-5 *1 (-542)))) (-3121 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-542)))) (-2953 (*1 *1 *1 *1) (-5 *1 (-542))) (* (*1 *1 *1 *1) (-5 *1 (-542))) (-2975 (*1 *1 *1 *1) (-5 *1 (-542))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-542)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-542)))) (-1814 (*1 *1) (-5 *1 (-542))) (-1824 (*1 *1) (-5 *1 (-542))) (-4385 (*1 *1 *1) (-5 *1 (-542))) (-3698 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-4369 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-4041 (*1 *2 *3) (-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))) (-2510 (*1 *2 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-542))) (-5 *1 (-542)))))
+(-13 (-1112 (-1168) (-1186) (-570) (-227) (-868)) (-620 (-1113)) (-10 -8 (-15 -2948 ((-52) $)) (-15 -1417 ($ (-1113))) (-15 -3360 ($ $ (-650 $))) (-15 -1704 ($ $ (-650 (-1186)) (-1186))) (-15 -3121 ($ $ (-650 (-1186)))) (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 (-1814) ($) -3640) (-15 (-1824) ($) -3640) (-15 -4385 ($ $)) (-15 -3698 ((-1168) $)) (-15 -4369 ($ (-1168))) (-15 -4041 ((-1186) (-650 $))) (-15 -2510 ((-1186) (-1186) (-650 $)))))
+((-4354 ((|#2| |#2|) 17)) (-2215 ((|#2| |#2|) 13)) (-3254 ((|#2| |#2| (-570) (-570)) 20)) (-2128 ((|#2| |#2|) 15)))
+(((-543 |#1| |#2|) (-10 -7 (-15 -2215 (|#2| |#2|)) (-15 -2128 (|#2| |#2|)) (-15 -4354 (|#2| |#2|)) (-15 -3254 (|#2| |#2| (-570) (-570)))) (-13 (-562) (-148)) (-1268 |#1|)) (T -543))
+((-3254 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-543 *4 *2)) (-4 *2 (-1268 *4)))) (-4354 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))) (-2128 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))) (-2215 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))))
+(-10 -7 (-15 -2215 (|#2| |#2|)) (-15 -2128 (|#2| |#2|)) (-15 -4354 (|#2| |#2|)) (-15 -3254 (|#2| |#2| (-570) (-570))))
+((-3271 (((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))) 32)) (-2801 (((-650 |#2|) (-959 |#1|) |#3|) 54) (((-650 |#2|) (-1182 |#1|) |#3|) 53)) (-2619 (((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|) 106)))
+(((-544 |#1| |#2| |#3|) (-10 -7 (-15 -2801 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2801 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -2619 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -3271 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))))) (-458) (-368) (-13 (-368) (-854))) (T -544))
+((-3271 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1186))) (-4 *6 (-368)) (-5 *2 (-650 (-298 (-959 *6)))) (-5 *1 (-544 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-13 (-368) (-854))))) (-2619 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-650 (-650 *7))) (-5 *1 (-544 *6 *7 *5)) (-4 *7 (-368)) (-4 *5 (-13 (-368) (-854))))) (-2801 (*1 *2 *3 *4) (-12 (-5 *3 (-959 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6)) (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))) (-2801 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6)) (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))))
+(-10 -7 (-15 -2801 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2801 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -2619 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -3271 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186)))))
+((-2979 ((|#2| |#2| |#1|) 17)) (-2197 ((|#2| (-650 |#2|)) 31)) (-2871 ((|#2| (-650 |#2|)) 52)))
+(((-545 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2197 (|#2| (-650 |#2|))) (-15 -2871 (|#2| (-650 |#2|))) (-15 -2979 (|#2| |#2| |#1|))) (-311) (-1253 |#1|) |#1| (-1 |#1| |#1| (-777))) (T -545))
+((-2979 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-777))) (-5 *1 (-545 *3 *2 *4 *5)) (-4 *2 (-1253 *3)))) (-2871 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-545 *4 *2 *5 *6)) (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))) (-2197 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-545 *4 *2 *5 *6)) (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))))
+(-10 -7 (-15 -2197 (|#2| (-650 |#2|))) (-15 -2871 (|#2| (-650 |#2|))) (-15 -2979 (|#2| |#2| |#1|)))
+((-3739 (((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 89) (((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 214)))
+(((-546 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3739 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -546))
+((-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 (-1182 *7)) (-1182 *7))) (-4 *7 (-13 (-311) (-148))) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *8 (-956 *7 *6 *5)) (-5 *2 (-424 (-1182 *8))) (-5 *1 (-546 *5 *6 *7 *8)) (-5 *3 (-1182 *8)))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 (-1182 *7)) (-1182 *7))) (-4 *7 (-13 (-311) (-148))) (-4 *5 (-856)) (-4 *6 (-799)) (-5 *2 (-424 *3)) (-5 *1 (-546 *5 *6 *7 *3)) (-4 *3 (-956 *7 *6 *5)))))
+(-10 -7 (-15 -3739 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3739 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))))
+((-4354 ((|#4| |#4|) 74)) (-2215 ((|#4| |#4|) 70)) (-3254 ((|#4| |#4| (-570) (-570)) 76)) (-2128 ((|#4| |#4|) 72)))
+(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2215 (|#4| |#4|)) (-15 -2128 (|#4| |#4|)) (-15 -4354 (|#4| |#4|)) (-15 -3254 (|#4| |#4| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1253 |#1|) (-730 |#1| |#2|) (-1268 |#3|)) (T -547))
+((-3254 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3))) (-4 *5 (-1253 *4)) (-4 *6 (-730 *4 *5)) (-5 *1 (-547 *4 *5 *6 *2)) (-4 *2 (-1268 *6)))) (-4354 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1253 *3)) (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1268 *5)))) (-2128 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1253 *3)) (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1268 *5)))) (-2215 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1253 *3)) (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1268 *5)))))
+(-10 -7 (-15 -2215 (|#4| |#4|)) (-15 -2128 (|#4| |#4|)) (-15 -4354 (|#4| |#4|)) (-15 -3254 (|#4| |#4| (-570) (-570))))
+((-4354 ((|#2| |#2|) 27)) (-2215 ((|#2| |#2|) 23)) (-3254 ((|#2| |#2| (-570) (-570)) 29)) (-2128 ((|#2| |#2|) 25)))
+(((-548 |#1| |#2|) (-10 -7 (-15 -2215 (|#2| |#2|)) (-15 -2128 (|#2| |#2|)) (-15 -4354 (|#2| |#2|)) (-15 -3254 (|#2| |#2| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1268 |#1|)) (T -548))
+((-3254 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3))) (-5 *1 (-548 *4 *2)) (-4 *2 (-1268 *4)))) (-4354 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))) (-2128 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))) (-2215 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))))
+(-10 -7 (-15 -2215 (|#2| |#2|)) (-15 -2128 (|#2| |#2|)) (-15 -4354 (|#2| |#2|)) (-15 -3254 (|#2| |#2| (-570) (-570))))
+((-3845 (((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|)) 18) (((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|)) 14) (((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|)) 32)))
+(((-549 |#1| |#2|) (-10 -7 (-15 -3845 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -3845 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -3845 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|)))) (-1058) (-1253 |#1|)) (T -549))
+((-3845 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1253 *4)))) (-3845 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1253 *4)))) (-3845 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-570) "failed") *5)) (-4 *5 (-1058)) (-5 *2 (-570)) (-5 *1 (-549 *5 *3)) (-4 *3 (-1253 *5)))))
+(-10 -7 (-15 -3845 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -3845 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -3845 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|))))
+((-2836 (($ $ $) 84)) (-1378 (((-424 $) $) 52)) (-4379 (((-3 (-570) "failed") $) 64)) (-3080 (((-570) $) 42)) (-4147 (((-3 (-413 (-570)) "failed") $) 79)) (-4373 (((-112) $) 26)) (-2220 (((-413 (-570)) $) 77)) (-4037 (((-112) $) 55)) (-3041 (($ $ $ $) 92)) (-3703 (((-112) $) 17)) (-2039 (($ $ $) 62)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 74)) (-3584 (((-3 $ "failed") $) 69)) (-2581 (($ $) 24)) (-1545 (($ $ $) 90)) (-2315 (($) 65)) (-3072 (($ $) 58)) (-3739 (((-424 $) $) 50)) (-1739 (((-112) $) 15)) (-2547 (((-777) $) 32)) (-3447 (($ $ (-777)) NIL) (($ $) 11)) (-3916 (($ $) 18)) (-1417 (((-570) $) NIL) (((-542) $) 41) (((-899 (-570)) $) 45) (((-384) $) 35) (((-227) $) 38)) (-1609 (((-777)) 9)) (-2528 (((-112) $ $) 21)) (-3829 (($ $ $) 60)))
+(((-550 |#1|) (-10 -8 (-15 -1545 (|#1| |#1| |#1|)) (-15 -3041 (|#1| |#1| |#1| |#1|)) (-15 -2581 (|#1| |#1|)) (-15 -3916 (|#1| |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -2836 (|#1| |#1| |#1|)) (-15 -2528 ((-112) |#1| |#1|)) (-15 -1739 ((-112) |#1|)) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -1417 ((-227) |#1|)) (-15 -1417 ((-384) |#1|)) (-15 -2039 (|#1| |#1| |#1|)) (-15 -3072 (|#1| |#1|)) (-15 -3829 (|#1| |#1| |#1|)) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -1417 ((-570) |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3703 ((-112) |#1|)) (-15 -2547 ((-777) |#1|)) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -4037 ((-112) |#1|)) (-15 -1609 ((-777)))) (-551)) (T -550))
+((-1609 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-550 *3)) (-4 *3 (-551)))))
+(-10 -8 (-15 -1545 (|#1| |#1| |#1|)) (-15 -3041 (|#1| |#1| |#1| |#1|)) (-15 -2581 (|#1| |#1|)) (-15 -3916 (|#1| |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -2836 (|#1| |#1| |#1|)) (-15 -2528 ((-112) |#1| |#1|)) (-15 -1739 ((-112) |#1|)) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -1417 ((-227) |#1|)) (-15 -1417 ((-384) |#1|)) (-15 -2039 (|#1| |#1| |#1|)) (-15 -3072 (|#1| |#1|)) (-15 -3829 (|#1| |#1| |#1|)) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -1417 ((-570) |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3703 ((-112) |#1|)) (-15 -2547 ((-777) |#1|)) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -4037 ((-112) |#1|)) (-15 -1609 ((-777))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-2836 (($ $ $) 90)) (-4119 (((-3 $ "failed") $ $) 20)) (-3420 (($ $ $ $) 79)) (-3252 (($ $) 57)) (-1378 (((-424 $) $) 58)) (-2707 (((-112) $ $) 130)) (-2249 (((-570) $) 119)) (-3020 (($ $ $) 93)) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 111)) (-3080 (((-570) $) 112)) (-2372 (($ $ $) 134)) (-1836 (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 109) (((-695 (-570)) (-695 $)) 108)) (-2937 (((-3 $ "failed") $) 37)) (-4147 (((-3 (-413 (-570)) "failed") $) 87)) (-4373 (((-112) $) 89)) (-2220 (((-413 (-570)) $) 88)) (-3336 (($) 86) (($ $) 85)) (-2382 (($ $ $) 133)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 128)) (-4037 (((-112) $) 59)) (-3041 (($ $ $ $) 77)) (-3838 (($ $ $) 91)) (-3703 (((-112) $) 121)) (-2039 (($ $ $) 102)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 105)) (-4340 (((-112) $) 35)) (-1958 (((-112) $) 97)) (-3584 (((-3 $ "failed") $) 99)) (-1774 (((-112) $) 120)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 137)) (-3119 (($ $ $ $) 78)) (-3311 (($ $ $) 122)) (-2222 (($ $ $) 123)) (-2581 (($ $) 81)) (-3788 (($ $) 94)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1545 (($ $ $) 76)) (-2315 (($) 98 T CONST)) (-3523 (($ $) 83)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3072 (($ $) 103)) (-3739 (((-424 $) $) 56)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 136) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 135)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 129)) (-1739 (((-112) $) 96)) (-2547 (((-777) $) 131)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 132)) (-3447 (($ $ (-777)) 116) (($ $) 114)) (-2429 (($ $) 82)) (-3916 (($ $) 84)) (-1417 (((-570) $) 113) (((-542) $) 107) (((-899 (-570)) $) 106) (((-384) $) 101) (((-227) $) 100)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 110)) (-1609 (((-777)) 32 T CONST)) (-2528 (((-112) $ $) 92)) (-3829 (($ $ $) 104)) (-3866 (((-112) $ $) 9)) (-4360 (($) 95)) (-2795 (((-112) $ $) 45)) (-2608 (($ $ $ $) 80)) (-1367 (($ $) 118)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-777)) 117) (($ $) 115)) (-2924 (((-112) $ $) 125)) (-2904 (((-112) $ $) 126)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 124)) (-2894 (((-112) $ $) 127)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-551) (-141)) (T -551))
-((-3431 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-1322 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-4358 (*1 *1) (-4 *1 (-551))) (-3788 (*1 *1 *1) (-4 *1 (-551))) (-3020 (*1 *1 *1 *1) (-4 *1 (-551))) (-3047 (*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-1533 (*1 *1 *1 *1) (-4 *1 (-551))) (-2618 (*1 *1 *1 *1) (-4 *1 (-551))) (-2085 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-3137 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-2951 (*1 *2 *1) (|partial| -12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-3336 (*1 *1) (-4 *1 (-551))) (-3336 (*1 *1 *1) (-4 *1 (-551))) (-3915 (*1 *1 *1) (-4 *1 (-551))) (-3522 (*1 *1 *1) (-4 *1 (-551))) (-2430 (*1 *1 *1) (-4 *1 (-551))) (-2584 (*1 *1 *1) (-4 *1 (-551))) (-1662 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-4281 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2519 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2203 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2410 (*1 *1 *1 *1) (-4 *1 (-551))))
-(-13 (-1230) (-311) (-826) (-235) (-620 (-570)) (-1047 (-570)) (-645 (-570)) (-620 (-542)) (-620 (-899 (-570))) (-893 (-570)) (-144) (-1031) (-148) (-1161) (-10 -8 (-15 -3431 ((-112) $)) (-15 -1322 ((-112) $)) (-6 -4447) (-15 -4358 ($)) (-15 -3788 ($ $)) (-15 -3020 ($ $ $)) (-15 -3047 ((-112) $ $)) (-15 -1533 ($ $ $)) (-15 -2618 ($ $ $)) (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $)) (-15 -3336 ($)) (-15 -3336 ($ $)) (-15 -3915 ($ $)) (-15 -3522 ($ $)) (-15 -2430 ($ $)) (-15 -2584 ($ $)) (-15 -1662 ($ $ $ $)) (-15 -4281 ($ $ $ $)) (-15 -2519 ($ $ $ $)) (-15 -2203 ($ $ $ $)) (-15 -2410 ($ $ $)) (-6 -4446)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-144) . T) ((-174) . T) ((-620 (-227)) . T) ((-620 (-384)) . T) ((-620 (-542)) . T) ((-620 (-570)) . T) ((-620 (-899 (-570))) . T) ((-235) . T) ((-294) . T) ((-311) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-645 (-570)) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-826) . T) ((-854) . T) ((-856) . T) ((-893 (-570)) . T) ((-927) . T) ((-1031) . T) ((-1047 (-570)) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) . T) ((-1230) . T))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-552) (-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))) (T -552))
-((-2450 (*1 *1) (-5 *1 (-552))))
-(-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))
+((-1958 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-1739 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-4360 (*1 *1) (-4 *1 (-551))) (-3788 (*1 *1 *1) (-4 *1 (-551))) (-3020 (*1 *1 *1 *1) (-4 *1 (-551))) (-2528 (*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-3838 (*1 *1 *1 *1) (-4 *1 (-551))) (-2836 (*1 *1 *1 *1) (-4 *1 (-551))) (-4373 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-2220 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-4147 (*1 *2 *1) (|partial| -12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-3336 (*1 *1) (-4 *1 (-551))) (-3336 (*1 *1 *1) (-4 *1 (-551))) (-3916 (*1 *1 *1) (-4 *1 (-551))) (-3523 (*1 *1 *1) (-4 *1 (-551))) (-2429 (*1 *1 *1) (-4 *1 (-551))) (-2581 (*1 *1 *1) (-4 *1 (-551))) (-2608 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-3420 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-3119 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-3041 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-1545 (*1 *1 *1 *1) (-4 *1 (-551))))
+(-13 (-1231) (-311) (-826) (-235) (-620 (-570)) (-1047 (-570)) (-645 (-570)) (-620 (-542)) (-620 (-899 (-570))) (-893 (-570)) (-144) (-1031) (-148) (-1161) (-10 -8 (-15 -1958 ((-112) $)) (-15 -1739 ((-112) $)) (-6 -4448) (-15 -4360 ($)) (-15 -3788 ($ $)) (-15 -3020 ($ $ $)) (-15 -2528 ((-112) $ $)) (-15 -3838 ($ $ $)) (-15 -2836 ($ $ $)) (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $)) (-15 -3336 ($)) (-15 -3336 ($ $)) (-15 -3916 ($ $)) (-15 -3523 ($ $)) (-15 -2429 ($ $)) (-15 -2581 ($ $)) (-15 -2608 ($ $ $ $)) (-15 -3420 ($ $ $ $)) (-15 -3119 ($ $ $ $)) (-15 -3041 ($ $ $ $)) (-15 -1545 ($ $ $)) (-6 -4447)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-144) . T) ((-174) . T) ((-620 (-227)) . T) ((-620 (-384)) . T) ((-620 (-542)) . T) ((-620 (-570)) . T) ((-620 (-899 (-570))) . T) ((-235) . T) ((-294) . T) ((-311) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-645 (-570)) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-826) . T) ((-854) . T) ((-856) . T) ((-893 (-570)) . T) ((-927) . T) ((-1031) . T) ((-1047 (-570)) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) . T) ((-1231) . T))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-552) (-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))) (T -552))
+((-3761 (*1 *1) (-5 *1 (-552))))
+(-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 16)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-553) (-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))) (T -553))
-((-2450 (*1 *1) (-5 *1 (-553))))
-(-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-553) (-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))) (T -553))
+((-3761 (*1 *1) (-5 *1 (-553))))
+(-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 32)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-554) (-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))) (T -554))
-((-2450 (*1 *1) (-5 *1 (-554))))
-(-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-554) (-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))) (T -554))
+((-3761 (*1 *1) (-5 *1 (-554))))
+(-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 64)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-555) (-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))) (T -555))
-((-2450 (*1 *1) (-5 *1 (-555))))
-(-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-555) (-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))) (T -555))
+((-3761 (*1 *1) (-5 *1 (-555))))
+(-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 8)))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#2| $ |#1| |#2|) NIL)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) NIL)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2760 (((-650 |#1|) $) NIL)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2344 (((-650 |#1|) $) NIL)) (-1354 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-556 |#1| |#2| |#3|) (-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448))) (-1109) (-1109) (-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448)))) (T -556))
-NIL
-(-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448)))
-((-2094 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))) 50)))
-(((-557 |#1| |#2|) (-10 -7 (-15 -2094 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))))) (-562) (-13 (-27) (-436 |#1|))) (T -557))
-((-2094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-618 *3)) (-5 *5 (-1 (-1182 *3) (-1182 *3))) (-4 *3 (-13 (-27) (-436 *6))) (-4 *6 (-562)) (-5 *2 (-592 *3)) (-5 *1 (-557 *6 *3)))))
-(-10 -7 (-15 -2094 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|)))))
-((-2226 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 218)) (-3141 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 214)) (-2338 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 222)))
-(((-558 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2338 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2226 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3141 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-562) (-1047 (-570))) (-13 (-27) (-436 |#1|)) (-1252 |#2|) (-1252 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -558))
-((-3141 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-27) (-436 *4))) (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *7 (-1252 (-413 *6))) (-5 *1 (-558 *4 *5 *6 *7 *2)) (-4 *2 (-347 *5 *6 *7)))) (-2226 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1252 *6)) (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)))) (-4 *8 (-1252 (-413 *7))) (-5 *2 (-592 *3)) (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))) (-2338 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1252 *6)) (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)))) (-4 *8 (-1252 (-413 *7))) (-5 *2 (-592 *3)) (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))))
-(-10 -7 (-15 -2338 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2226 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3141 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-1836 (((-112) (-570) (-570)) 12)) (-4319 (((-570) (-570)) 7)) (-2341 (((-570) (-570) (-570)) 10)))
-(((-559) (-10 -7 (-15 -4319 ((-570) (-570))) (-15 -2341 ((-570) (-570) (-570))) (-15 -1836 ((-112) (-570) (-570))))) (T -559))
-((-1836 (*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))) (-2341 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))) (-4319 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
-(-10 -7 (-15 -4319 ((-570) (-570))) (-15 -2341 ((-570) (-570) (-570))) (-15 -1836 ((-112) (-570) (-570))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3414 ((|#1| $) 67)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-2735 (($ $) 97)) (-2602 (($ $) 80)) (-3947 ((|#1| $) 68)) (-3596 (((-3 $ "failed") $ $) 20)) (-3753 (($ $) 79)) (-2712 (($ $) 96)) (-2579 (($ $) 81)) (-4087 (($ $) 95)) (-2622 (($ $) 82)) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 75)) (-3080 (((-570) $) 76)) (-3413 (((-3 $ "failed") $) 37)) (-2587 (($ |#1| |#1|) 72)) (-1522 (((-112) $) 66)) (-1314 (($) 107)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 78)) (-2761 (((-112) $) 65)) (-3310 (($ $ $) 113)) (-3787 (($ $ $) 112)) (-2635 (($ $) 104)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-2630 (($ |#1| |#1|) 73) (($ |#1|) 71) (($ (-413 (-570))) 70)) (-1718 ((|#1| $) 69)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2407 (((-3 $ "failed") $ $) 48)) (-4387 (($ $) 105)) (-4099 (($ $) 94)) (-2634 (($ $) 83)) (-2746 (($ $) 93)) (-2611 (($ $) 84)) (-2723 (($ $) 92)) (-2590 (($ $) 85)) (-1570 (((-112) $ |#1|) 64)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 74)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 103)) (-2671 (($ $) 91)) (-1681 (((-112) $ $) 45)) (-4108 (($ $) 102)) (-2647 (($ $) 90)) (-4161 (($ $) 101)) (-2691 (($ $) 89)) (-1509 (($ $) 100)) (-2701 (($ $) 88)) (-4150 (($ $) 99)) (-2681 (($ $) 87)) (-4123 (($ $) 98)) (-2660 (($ $) 86)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 110)) (-2904 (((-112) $ $) 109)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 111)) (-2894 (((-112) $ $) 108)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ $) 106) (($ $ (-413 (-570))) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
-(((-560 |#1|) (-141) (-13 (-410) (-1211))) (T -560))
-((-2630 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))) (-2587 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))) (-2630 (*1 *1 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))) (-2630 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))))) (-1718 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))) (-3947 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))) (-3414 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))) (-1522 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))) (-5 *2 (-112)))) (-2761 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))) (-5 *2 (-112)))) (-1570 (*1 *2 *1 *3) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))) (-5 *2 (-112)))))
-(-13 (-458) (-856) (-1211) (-1011) (-1047 (-570)) (-10 -8 (-6 -3026) (-15 -2630 ($ |t#1| |t#1|)) (-15 -2587 ($ |t#1| |t#1|)) (-15 -2630 ($ |t#1|)) (-15 -2630 ($ (-413 (-570)))) (-15 -1718 (|t#1| $)) (-15 -3947 (|t#1| $)) (-15 -3414 (|t#1| $)) (-15 -1522 ((-112) $)) (-15 -2761 ((-112) $)) (-15 -1570 ((-112) $ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-95) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-288) . T) ((-294) . T) ((-458) . T) ((-499) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-856) . T) ((-1011) . T) ((-1047 (-570)) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1211) . T) ((-1214) . T))
-((-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 9)) (-3171 (($ $) 11)) (-2720 (((-112) $) 20)) (-3413 (((-3 $ "failed") $) 16)) (-1681 (((-112) $ $) 22)))
-(((-561 |#1|) (-10 -8 (-15 -2720 ((-112) |#1|)) (-15 -1681 ((-112) |#1| |#1|)) (-15 -3171 (|#1| |#1|)) (-15 -3732 ((-2 (|:| -1733 |#1|) (|:| -4435 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|))) (-562)) (T -561))
-NIL
-(-10 -8 (-15 -2720 ((-112) |#1|)) (-15 -1681 ((-112) |#1| |#1|)) (-15 -3171 (|#1| |#1|)) (-15 -3732 ((-2 (|:| -1733 |#1|) (|:| -4435 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#2| $ |#1| |#2|) NIL)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2761 (((-650 |#1|) $) NIL)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2122 (((-650 |#1|) $) NIL)) (-2083 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-556 |#1| |#2| |#3|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449))) (-1109) (-1109) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449)))) (T -556))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449)))
+((-1357 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))) 50)))
+(((-557 |#1| |#2|) (-10 -7 (-15 -1357 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))))) (-562) (-13 (-27) (-436 |#1|))) (T -557))
+((-1357 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-618 *3)) (-5 *5 (-1 (-1182 *3) (-1182 *3))) (-4 *3 (-13 (-27) (-436 *6))) (-4 *6 (-562)) (-5 *2 (-592 *3)) (-5 *1 (-557 *6 *3)))))
+(-10 -7 (-15 -1357 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|)))))
+((-3296 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 218)) (-2259 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 214)) (-2071 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 222)))
+(((-558 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2071 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3296 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2259 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-562) (-1047 (-570))) (-13 (-27) (-436 |#1|)) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -558))
+((-2259 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-27) (-436 *4))) (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *7 (-1253 (-413 *6))) (-5 *1 (-558 *4 *5 *6 *7 *2)) (-4 *2 (-347 *5 *6 *7)))) (-3296 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)))) (-4 *8 (-1253 (-413 *7))) (-5 *2 (-592 *3)) (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))) (-2071 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570)))) (-4 *8 (-1253 (-413 *7))) (-5 *2 (-592 *3)) (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))))
+(-10 -7 (-15 -2071 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3296 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2259 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-1811 (((-112) (-570) (-570)) 12)) (-3777 (((-570) (-570)) 7)) (-2091 (((-570) (-570) (-570)) 10)))
+(((-559) (-10 -7 (-15 -3777 ((-570) (-570))) (-15 -2091 ((-570) (-570) (-570))) (-15 -1811 ((-112) (-570) (-570))))) (T -559))
+((-1811 (*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))) (-2091 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))) (-3777 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+(-10 -7 (-15 -3777 ((-570) (-570))) (-15 -2091 ((-570) (-570) (-570))) (-15 -1811 ((-112) (-570) (-570))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3414 ((|#1| $) 67)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-2735 (($ $) 97)) (-2602 (($ $) 80)) (-3125 ((|#1| $) 68)) (-4119 (((-3 $ "failed") $ $) 20)) (-3754 (($ $) 79)) (-2712 (($ $) 96)) (-2579 (($ $) 81)) (-4087 (($ $) 95)) (-2622 (($ $) 82)) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 75)) (-3080 (((-570) $) 76)) (-2937 (((-3 $ "failed") $) 37)) (-2553 (($ |#1| |#1|) 72)) (-3703 (((-112) $) 66)) (-1315 (($) 107)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 78)) (-1774 (((-112) $) 65)) (-3311 (($ $ $) 113)) (-2222 (($ $ $) 112)) (-2635 (($ $) 104)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-2932 (($ |#1| |#1|) 73) (($ |#1|) 71) (($ (-413 (-570))) 70)) (-1993 ((|#1| $) 69)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2406 (((-3 $ "failed") $ $) 48)) (-4388 (($ $) 105)) (-4098 (($ $) 94)) (-2634 (($ $) 83)) (-2746 (($ $) 93)) (-2612 (($ $) 84)) (-2723 (($ $) 92)) (-2590 (($ $) 85)) (-2944 (((-112) $ |#1|) 64)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 74)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 103)) (-2671 (($ $) 91)) (-2795 (((-112) $ $) 45)) (-4112 (($ $) 102)) (-2647 (($ $) 90)) (-4157 (($ $) 101)) (-2691 (($ $) 89)) (-1510 (($ $) 100)) (-2701 (($ $) 88)) (-4150 (($ $) 99)) (-2681 (($ $) 87)) (-4123 (($ $) 98)) (-2660 (($ $) 86)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 110)) (-2904 (((-112) $ $) 109)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 111)) (-2894 (((-112) $ $) 108)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ $) 106) (($ $ (-413 (-570))) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+(((-560 |#1|) (-141) (-13 (-410) (-1212))) (T -560))
+((-2932 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-2553 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-2932 (*1 *1 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-2932 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3125 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3414 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3703 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))) (-1774 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))) (-2944 (*1 *2 *1 *3) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))))
+(-13 (-458) (-856) (-1212) (-1011) (-1047 (-570)) (-10 -8 (-6 -3026) (-15 -2932 ($ |t#1| |t#1|)) (-15 -2553 ($ |t#1| |t#1|)) (-15 -2932 ($ |t#1|)) (-15 -2932 ($ (-413 (-570)))) (-15 -1993 (|t#1| $)) (-15 -3125 (|t#1| $)) (-15 -3414 (|t#1| $)) (-15 -3703 ((-112) $)) (-15 -1774 ((-112) $)) (-15 -2944 ((-112) $ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-95) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-288) . T) ((-294) . T) ((-458) . T) ((-499) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-856) . T) ((-1011) . T) ((-1047 (-570)) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1212) . T) ((-1215) . T))
+((-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 9)) (-1345 (($ $) 11)) (-1372 (((-112) $) 20)) (-2937 (((-3 $ "failed") $) 16)) (-2795 (((-112) $ $) 22)))
+(((-561 |#1|) (-10 -8 (-15 -1372 ((-112) |#1|)) (-15 -2795 ((-112) |#1| |#1|)) (-15 -1345 (|#1| |#1|)) (-15 -2921 ((-2 (|:| -2101 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|))) (-562)) (T -561))
+NIL
+(-10 -8 (-15 -1372 ((-112) |#1|)) (-15 -2795 ((-112) |#1| |#1|)) (-15 -1345 (|#1| |#1|)) (-15 -2921 ((-2 (|:| -2101 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-562) (-141)) (T -562))
-((-2407 (*1 *1 *1 *1) (|partial| -4 *1 (-562))) (-3732 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1733 *1) (|:| -4435 *1) (|:| |associate| *1))) (-4 *1 (-562)))) (-3171 (*1 *1 *1) (-4 *1 (-562))) (-1681 (*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))) (-2720 (*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
-(-13 (-174) (-38 $) (-294) (-10 -8 (-15 -2407 ((-3 $ "failed") $ $)) (-15 -3732 ((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $)) (-15 -3171 ($ $)) (-15 -1681 ((-112) $ $)) (-15 -2720 ((-112) $))))
+((-2406 (*1 *1 *1 *1) (|partial| -4 *1 (-562))) (-2921 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2101 *1) (|:| -4436 *1) (|:| |associate| *1))) (-4 *1 (-562)))) (-1345 (*1 *1 *1) (-4 *1 (-562))) (-2795 (*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))) (-1372 (*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
+(-13 (-174) (-38 $) (-294) (-10 -8 (-15 -2406 ((-3 $ "failed") $ $)) (-15 -2921 ((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $)) (-15 -1345 ($ $)) (-15 -2795 ((-112) $ $)) (-15 -1372 ((-112) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1485 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|)) 38)) (-2070 (((-592 |#2|) |#2| (-1186)) 63)) (-1532 (((-3 |#2| "failed") |#2| (-1186)) 156)) (-4075 (((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|))) 159)) (-2626 (((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|) 41)))
-(((-563 |#1| |#2|) (-10 -7 (-15 -2626 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -1485 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -1532 ((-3 |#2| "failed") |#2| (-1186))) (-15 -2070 ((-592 |#2|) |#2| (-1186))) (-15 -4075 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|))))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -563))
-((-4075 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1186)) (-5 *6 (-650 (-618 *3))) (-5 *5 (-618 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *7))) (-4 *7 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3))) (-5 *1 (-563 *7 *3)))) (-2070 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-563 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-1532 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-563 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))) (-1485 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-563 *6 *3)))) (-2626 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
-(-10 -7 (-15 -2626 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -1485 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -1532 ((-3 |#2| "failed") |#2| (-1186))) (-15 -2070 ((-592 |#2|) |#2| (-1186))) (-15 -4075 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|)))))
-((-1790 (((-424 |#1|) |#1|) 19)) (-3738 (((-424 |#1|) |#1|) 34)) (-1665 (((-3 |#1| "failed") |#1|) 51)) (-3697 (((-424 |#1|) |#1|) 64)))
-(((-564 |#1|) (-10 -7 (-15 -3738 ((-424 |#1|) |#1|)) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -3697 ((-424 |#1|) |#1|)) (-15 -1665 ((-3 |#1| "failed") |#1|))) (-551)) (T -564))
-((-1665 (*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))) (-3697 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-1790 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-3738 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
-(-10 -7 (-15 -3738 ((-424 |#1|) |#1|)) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -3697 ((-424 |#1|) |#1|)) (-15 -1665 ((-3 |#1| "failed") |#1|)))
-((-1871 (($) 9)) (-1625 (((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 34)) (-2760 (((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 31)) (-2278 (($ (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) 28)) (-2848 (($ (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) 26)) (-2223 (((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 38)) (-4245 (((-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) 36)) (-1829 (((-1281)) 11)))
-(((-565) (-10 -8 (-15 -1871 ($)) (-15 -1829 ((-1281))) (-15 -2760 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -2848 ($ (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -2278 ($ (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1625 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4245 ((-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2223 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -565))
-((-2223 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-565)))) (-4245 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-565)))) (-1625 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-565)))) (-2278 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) (-5 *1 (-565)))) (-2848 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-565)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-5 *1 (-565)))) (-1829 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-565)))) (-1871 (*1 *1) (-5 *1 (-565))))
-(-10 -8 (-15 -1871 ($)) (-15 -1829 ((-1281))) (-15 -2760 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -2848 ($ (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -2278 ($ (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1625 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4245 ((-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2223 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3758 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-3703 (((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|)) 35)) (-1769 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 105) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|)) 115)) (-2046 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 85) (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|)) 55)) (-4015 (((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|))) 92) (((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|)) 114)) (-3107 (((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 110) (((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|)) 116)) (-3999 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 135 (|has| |#3| (-662 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|)) 134 (|has| |#3| (-662 |#2|)))) (-1704 ((|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|) 53)) (-3516 (((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|)) 34)))
-(((-566 |#1| |#2| |#3|) (-10 -7 (-15 -2046 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -2046 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -4015 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -4015 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1769 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -1769 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3107 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -3107 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3703 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1704 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3516 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3999 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3999 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))) (-13 (-436 |#1|) (-27) (-1211)) (-1109)) (T -566))
-((-3999 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-618 *4)) (-5 *6 (-413 (-1182 *4))) (-4 *4 (-13 (-436 *7) (-27) (-1211))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3999 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-618 *4)) (-5 *6 (-1182 *4)) (-4 *4 (-13 (-436 *7) (-27) (-1211))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3516 (*1 *2 *3 *4) (-12 (-5 *4 (-618 *6)) (-4 *6 (-13 (-436 *5) (-27) (-1211))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-1182 (-413 (-1182 *6)))) (-5 *1 (-566 *5 *6 *7)) (-5 *3 (-1182 *6)) (-4 *7 (-1109)))) (-1704 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1182 (-413 (-1182 *2)))) (-5 *4 (-618 *2)) (-4 *2 (-13 (-436 *5) (-27) (-1211))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-566 *5 *2 *6)) (-4 *6 (-1109)))) (-3703 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-1182 (-413 (-1182 *3)))) (-5 *1 (-566 *6 *3 *7)) (-5 *5 (-1182 *3)) (-4 *7 (-1109)))) (-3107 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-618 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-5 *5 (-413 (-1182 *2))) (-4 *2 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109)))) (-3107 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-618 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-5 *5 (-1182 *2)) (-4 *2 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109)))) (-1769 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-5 *6 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *7) (-27) (-1211))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109)))) (-1769 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-5 *6 (-1182 *3)) (-4 *3 (-13 (-436 *7) (-27) (-1211))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109)))) (-4015 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-4015 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2046 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2046 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
-(-10 -7 (-15 -2046 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -2046 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -4015 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -4015 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1769 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -1769 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3107 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -3107 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3703 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1704 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3516 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3999 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3999 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))))) |%noBranch|))
-((-4377 (((-570) (-570) (-777)) 90)) (-3276 (((-570) (-570)) 88)) (-3233 (((-570) (-570)) 86)) (-3289 (((-570) (-570)) 92)) (-3199 (((-570) (-570) (-570)) 70)) (-2215 (((-570) (-570) (-570)) 67)) (-1538 (((-413 (-570)) (-570)) 30)) (-2182 (((-570) (-570)) 36)) (-3611 (((-570) (-570)) 79)) (-2032 (((-570) (-570)) 51)) (-3687 (((-650 (-570)) (-570)) 85)) (-3740 (((-570) (-570) (-570) (-570) (-570)) 63)) (-2193 (((-413 (-570)) (-570)) 60)))
-(((-567) (-10 -7 (-15 -2193 ((-413 (-570)) (-570))) (-15 -3740 ((-570) (-570) (-570) (-570) (-570))) (-15 -3687 ((-650 (-570)) (-570))) (-15 -2032 ((-570) (-570))) (-15 -3611 ((-570) (-570))) (-15 -2182 ((-570) (-570))) (-15 -1538 ((-413 (-570)) (-570))) (-15 -2215 ((-570) (-570) (-570))) (-15 -3199 ((-570) (-570) (-570))) (-15 -3289 ((-570) (-570))) (-15 -3233 ((-570) (-570))) (-15 -3276 ((-570) (-570))) (-15 -4377 ((-570) (-570) (-777))))) (T -567))
-((-4377 (*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))) (-3276 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3233 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3289 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3199 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2215 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-1538 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-2182 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3611 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2032 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3687 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-3740 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2193 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
-(-10 -7 (-15 -2193 ((-413 (-570)) (-570))) (-15 -3740 ((-570) (-570) (-570) (-570) (-570))) (-15 -3687 ((-650 (-570)) (-570))) (-15 -2032 ((-570) (-570))) (-15 -3611 ((-570) (-570))) (-15 -2182 ((-570) (-570))) (-15 -1538 ((-413 (-570)) (-570))) (-15 -2215 ((-570) (-570) (-570))) (-15 -3199 ((-570) (-570) (-570))) (-15 -3289 ((-570) (-570))) (-15 -3233 ((-570) (-570))) (-15 -3276 ((-570) (-570))) (-15 -4377 ((-570) (-570) (-777))))
-((-2322 (((-2 (|:| |answer| |#4|) (|:| -2575 |#4|)) |#4| (-1 |#2| |#2|)) 56)))
-(((-568 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2322 ((-2 (|:| |answer| |#4|) (|:| -2575 |#4|)) |#4| (-1 |#2| |#2|)))) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -568))
-((-2322 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368)) (-4 *7 (-1252 (-413 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -2575 *3))) (-5 *1 (-568 *5 *6 *7 *3)) (-4 *3 (-347 *5 *6 *7)))))
-(-10 -7 (-15 -2322 ((-2 (|:| |answer| |#4|) (|:| -2575 |#4|)) |#4| (-1 |#2| |#2|))))
-((-2322 (((-2 (|:| |answer| (-413 |#2|)) (|:| -2575 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 18)))
-(((-569 |#1| |#2|) (-10 -7 (-15 -2322 ((-2 (|:| |answer| (-413 |#2|)) (|:| -2575 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1252 |#1|)) (T -569))
-((-2322 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |answer| (-413 *6)) (|:| -2575 (-413 *6)) (|:| |specpart| (-413 *6)) (|:| |polypart| *6))) (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
-(-10 -7 (-15 -2322 ((-2 (|:| |answer| (-413 |#2|)) (|:| -2575 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 30)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 97)) (-3171 (($ $) 98)) (-2720 (((-112) $) NIL)) (-2618 (($ $ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4281 (($ $ $ $) 52)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL)) (-3020 (($ $ $) 92)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL)) (-3080 (((-570) $) NIL)) (-2372 (($ $ $) 54)) (-4177 (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 77) (((-695 (-570)) (-695 $)) 73)) (-3413 (((-3 $ "failed") $) 94)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL)) (-2085 (((-112) $) NIL)) (-3137 (((-413 (-570)) $) NIL)) (-3336 (($) 79) (($ $) 80)) (-2381 (($ $ $) 91)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2203 (($ $ $ $) NIL)) (-1533 (($ $ $) 70)) (-1522 (((-112) $) NIL)) (-4390 (($ $ $) NIL)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-2081 (((-112) $) 34)) (-3431 (((-112) $) 86)) (-2885 (((-3 $ "failed") $) NIL)) (-2761 (((-112) $) 43)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2519 (($ $ $ $) 55)) (-3310 (($ $ $) 88)) (-3787 (($ $ $) 87)) (-2584 (($ $) NIL)) (-3788 (($ $) 49)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) 69)) (-2410 (($ $ $) NIL)) (-2314 (($) NIL T CONST)) (-3522 (($ $) 38)) (-3479 (((-1129) $) 42)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 129)) (-1874 (($ $ $) 95) (($ (-650 $)) NIL)) (-4061 (($ $) NIL)) (-3738 (((-424 $) $) 115)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-2407 (((-3 $ "failed") $ $) 113)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1322 (((-112) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 90)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-2430 (($ $) 40)) (-3915 (($ $) 36)) (-1416 (((-570) $) 48) (((-542) $) 64) (((-899 (-570)) $) NIL) (((-384) $) 58) (((-227) $) 61) (((-1168) $) 66)) (-3735 (((-868) $) 46) (($ (-570)) 47) (($ $) NIL) (($ (-570)) 47)) (-2744 (((-777)) NIL T CONST)) (-3047 (((-112) $ $) NIL)) (-1397 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-4358 (($) 35)) (-1681 (((-112) $ $) NIL)) (-1662 (($ $ $ $) 51)) (-1423 (($ $) 78)) (-1812 (($) 6 T CONST)) (-1823 (($) 31 T CONST)) (-2892 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1281) (-828) $) 28) (((-1281) (-828) $ (-112)) 29)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2924 (((-112) $ $) 50)) (-2904 (((-112) $ $) 81)) (-2872 (((-112) $ $) 33)) (-2913 (((-112) $ $) 83)) (-2894 (((-112) $ $) 10)) (-2965 (($ $) 16) (($ $ $) 39)) (-2954 (($ $ $) 37)) (** (($ $ (-928)) NIL) (($ $ (-777)) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 84) (($ $ $) 53)))
-(((-570) (-13 (-551) (-620 (-1168)) (-834) (-10 -7 (-6 -4435) (-6 -4440) (-6 -4436) (-6 -4430)))) (T -570))
-NIL
-(-13 (-551) (-620 (-1168)) (-834) (-10 -7 (-6 -4435) (-6 -4440) (-6 -4436) (-6 -4430)))
-((-1788 (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072)) 119) (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775)) 121)) (-3555 (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186)) 197) (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168)) 196) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072)) 201) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384)) 202) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384)) 203) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384))))) 204) (((-1044) (-320 (-384)) (-1103 (-849 (-384)))) 192) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384)) 191) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384)) 187) (((-1044) (-775)) 179) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072)) 186)))
-(((-571) (-10 -7 (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -3555 ((-1044) (-775))) (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -3555 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -3555 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))) (T -571))
-((-3555 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384)))) (-5 *5 (-1186)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384)))) (-5 *5 (-1168)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-1788 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3555 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571)))))
-(-10 -7 (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -3555 ((-1044) (-775))) (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -3555 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -3555 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -3555 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))
-((-3964 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|)) 198)) (-1515 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|)) 99)) (-3564 (((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|) 194)) (-2257 (((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186))) 203)) (-3451 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186)) 212 (|has| |#3| (-662 |#2|)))))
-(((-572 |#1| |#2| |#3|) (-10 -7 (-15 -1515 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -3564 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -3964 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -2257 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -3451 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))) (-13 (-436 |#1|) (-27) (-1211)) (-1109)) (T -572))
-((-3451 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-618 *4)) (-5 *6 (-1186)) (-4 *4 (-13 (-436 *7) (-27) (-1211))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-2257 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-618 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-4 *2 (-13 (-436 *5) (-27) (-1211))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-572 *5 *2 *6)) (-4 *6 (-1109)))) (-3964 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1211))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-572 *6 *3 *7)) (-4 *7 (-1109)))) (-3564 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *5) (-27) (-1211))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3))) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))) (-1515 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *5) (-27) (-1211))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
-(-10 -7 (-15 -1515 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -3564 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -3964 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -2257 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -3451 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2331 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186))) |%noBranch|))
-((-2224 (((-2 (|:| -3385 |#2|) (|:| |nconst| |#2|)) |#2| (-1186)) 64)) (-1583 (((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|)) 175 (-12 (|has| |#2| (-1148)) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-893 (-570))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)) 154 (-12 (|has| |#2| (-635)) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-893 (-570)))))) (-3124 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)) 156 (-12 (|has| |#2| (-635)) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-893 (-570)))))))
-(((-573 |#1| |#2|) (-10 -7 (-15 -2224 ((-2 (|:| -3385 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -3124 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -1583 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -1583 ((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-1047 (-570)) (-458) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -573))
-((-1583 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1186)) (-5 *4 (-849 *2)) (-4 *2 (-1148)) (-4 *2 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570))) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *1 (-573 *5 *2)))) (-1583 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570))) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-635)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-3124 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570))) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-635)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-2224 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| -3385 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
-(-10 -7 (-15 -2224 ((-2 (|:| -3385 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -3124 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -1583 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -1583 ((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-1352 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|))) 41)) (-3555 (((-592 (-413 |#2|)) (-413 |#2|)) 28)) (-4062 (((-3 (-413 |#2|) "failed") (-413 |#2|)) 17)) (-1988 (((-3 (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|)) 48)))
-(((-574 |#1| |#2|) (-10 -7 (-15 -3555 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -4062 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -1988 ((-3 (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -1352 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-570))) (-1252 |#1|)) (T -574))
-((-1352 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-650 (-413 *6))) (-5 *3 (-413 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-574 *5 *6)))) (-1988 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| -1400 (-413 *5)) (|:| |coeff| (-413 *5)))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))) (-4062 (*1 *2 *2) (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-13 (-368) (-148) (-1047 (-570)))) (-5 *1 (-574 *3 *4)))) (-3555 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1252 *4)) (-5 *2 (-592 (-413 *5))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))))
-(-10 -7 (-15 -3555 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -4062 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -1988 ((-3 (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -1352 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|)))))
-((-3243 (((-3 (-570) "failed") |#1|) 14)) (-2964 (((-112) |#1|) 13)) (-1440 (((-570) |#1|) 9)))
-(((-575 |#1|) (-10 -7 (-15 -1440 ((-570) |#1|)) (-15 -2964 ((-112) |#1|)) (-15 -3243 ((-3 (-570) "failed") |#1|))) (-1047 (-570))) (T -575))
-((-3243 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))) (-2964 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-575 *3)) (-4 *3 (-1047 (-570))))) (-1440 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
-(-10 -7 (-15 -1440 ((-570) |#1|)) (-15 -2964 ((-112) |#1|)) (-15 -3243 ((-3 (-570) "failed") |#1|)))
-((-1753 (((-3 (-2 (|:| |mainpart| (-413 (-959 |#1|))) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 (-959 |#1|))) (|:| |logand| (-413 (-959 |#1|))))))) "failed") (-413 (-959 |#1|)) (-1186) (-650 (-413 (-959 |#1|)))) 48)) (-4113 (((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186)) 28)) (-1942 (((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186)) 23)) (-2767 (((-3 (-2 (|:| -1400 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))) 35)))
-(((-576 |#1|) (-10 -7 (-15 -4113 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -1942 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -1753 ((-3 (-2 (|:| |mainpart| (-413 (-959 |#1|))) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 (-959 |#1|))) (|:| |logand| (-413 (-959 |#1|))))))) "failed") (-413 (-959 |#1|)) (-1186) (-650 (-413 (-959 |#1|))))) (-15 -2767 ((-3 (-2 (|:| -1400 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))))) (-13 (-562) (-1047 (-570)) (-148))) (T -576))
-((-2767 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-2 (|:| -1400 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5))))) (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))) (-1753 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 (-413 (-959 *6)))) (-5 *3 (-413 (-959 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-576 *6)))) (-1942 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-148))) (-5 *1 (-576 *4)))) (-4113 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-592 (-413 (-959 *5)))) (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))))
-(-10 -7 (-15 -4113 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -1942 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -1753 ((-3 (-2 (|:| |mainpart| (-413 (-959 |#1|))) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 (-959 |#1|))) (|:| |logand| (-413 (-959 |#1|))))))) "failed") (-413 (-959 |#1|)) (-1186) (-650 (-413 (-959 |#1|))))) (-15 -2767 ((-3 (-2 (|:| -1400 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))))
-((-2416 (((-112) $ $) 75)) (-4028 (((-112) $) 48)) (-3414 ((|#1| $) 39)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) 79)) (-2735 (($ $) 139)) (-2602 (($ $) 118)) (-3947 ((|#1| $) 37)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $) NIL)) (-2712 (($ $) 141)) (-2579 (($ $) 114)) (-4087 (($ $) 143)) (-2622 (($ $) 122)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) 93)) (-3080 (((-570) $) 95)) (-3413 (((-3 $ "failed") $) 78)) (-2587 (($ |#1| |#1|) 35)) (-1522 (((-112) $) 44)) (-1314 (($) 104)) (-2081 (((-112) $) 55)) (-2598 (($ $ (-570)) NIL)) (-2761 (((-112) $) 45)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-2635 (($ $) 106)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-2630 (($ |#1| |#1|) 29) (($ |#1|) 34) (($ (-413 (-570))) 92)) (-1718 ((|#1| $) 36)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) 81) (($ (-650 $)) NIL)) (-2407 (((-3 $ "failed") $ $) 80)) (-4387 (($ $) 108)) (-4099 (($ $) 147)) (-2634 (($ $) 120)) (-2746 (($ $) 149)) (-2611 (($ $) 124)) (-2723 (($ $) 145)) (-2590 (($ $) 116)) (-1570 (((-112) $ |#1|) 42)) (-3735 (((-868) $) 100) (($ (-570)) 83) (($ $) NIL) (($ (-570)) 83)) (-2744 (((-777)) 102 T CONST)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) 161)) (-2671 (($ $) 130)) (-1681 (((-112) $ $) NIL)) (-4108 (($ $) 159)) (-2647 (($ $) 126)) (-4161 (($ $) 157)) (-2691 (($ $) 137)) (-1509 (($ $) 155)) (-2701 (($ $) 135)) (-4150 (($ $) 153)) (-2681 (($ $) 132)) (-4123 (($ $) 151)) (-2660 (($ $) 128)) (-1812 (($) 30 T CONST)) (-1823 (($) 10 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 49)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 47)) (-2965 (($ $) 53) (($ $ $) 54)) (-2954 (($ $ $) 52)) (** (($ $ (-928)) 71) (($ $ (-777)) NIL) (($ $ $) 110) (($ $ (-413 (-570))) 163)) (* (($ (-928) $) 66) (($ (-777) $) NIL) (($ (-570) $) 65) (($ $ $) 61)))
-(((-577 |#1|) (-560 |#1|) (-13 (-410) (-1211))) (T -577))
+((-1528 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|)) 38)) (-2307 (((-592 |#2|) |#2| (-1186)) 63)) (-3825 (((-3 |#2| "failed") |#2| (-1186)) 156)) (-2082 (((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|))) 159)) (-2901 (((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|) 41)))
+(((-563 |#1| |#2|) (-10 -7 (-15 -2901 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -1528 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -3825 ((-3 |#2| "failed") |#2| (-1186))) (-15 -2307 ((-592 |#2|) |#2| (-1186))) (-15 -2082 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|))))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -563))
+((-2082 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1186)) (-5 *6 (-650 (-618 *3))) (-5 *5 (-618 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *7))) (-4 *7 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3))) (-5 *1 (-563 *7 *3)))) (-2307 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-563 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-3825 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-563 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))) (-1528 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-563 *6 *3)))) (-2901 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(-10 -7 (-15 -2901 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -1528 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -3825 ((-3 |#2| "failed") |#2| (-1186))) (-15 -2307 ((-592 |#2|) |#2| (-1186))) (-15 -2082 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|)))))
+((-1378 (((-424 |#1|) |#1|) 19)) (-3739 (((-424 |#1|) |#1|) 34)) (-2642 (((-3 |#1| "failed") |#1|) 51)) (-2605 (((-424 |#1|) |#1|) 64)))
+(((-564 |#1|) (-10 -7 (-15 -3739 ((-424 |#1|) |#1|)) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -2605 ((-424 |#1|) |#1|)) (-15 -2642 ((-3 |#1| "failed") |#1|))) (-551)) (T -564))
+((-2642 (*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))) (-2605 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-1378 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-3739 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
+(-10 -7 (-15 -3739 ((-424 |#1|) |#1|)) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -2605 ((-424 |#1|) |#1|)) (-15 -2642 ((-3 |#1| "failed") |#1|)))
+((-3978 (($) 9)) (-1626 (((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 34)) (-2761 (((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 31)) (-2599 (($ (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) 28)) (-3189 (($ (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) 26)) (-2224 (((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 38)) (-4348 (((-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) 36)) (-1740 (((-1282)) 11)))
+(((-565) (-10 -8 (-15 -3978 ($)) (-15 -1740 ((-1282))) (-15 -2761 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -3189 ($ (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -2599 ($ (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1626 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4348 ((-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2224 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -565))
+((-2224 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-565)))) (-4348 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-565)))) (-1626 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-565)))) (-2599 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) (-5 *1 (-565)))) (-3189 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-565)))) (-2761 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-5 *1 (-565)))) (-1740 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-565)))) (-3978 (*1 *1) (-5 *1 (-565))))
+(-10 -8 (-15 -3978 ($)) (-15 -1740 ((-1282))) (-15 -2761 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -3189 ($ (-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -2599 ($ (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1626 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4348 ((-650 (-2 (|:| -2013 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2224 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1166 (-227))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1990 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-3702 (((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|)) 35)) (-4303 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 105) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|)) 115)) (-2096 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 85) (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|)) 55)) (-2601 (((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|))) 92) (((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|)) 114)) (-1960 (((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 110) (((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|)) 116)) (-3706 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 135 (|has| |#3| (-662 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|)) 134 (|has| |#3| (-662 |#2|)))) (-1705 ((|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|) 53)) (-3514 (((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|)) 34)))
+(((-566 |#1| |#2| |#3|) (-10 -7 (-15 -2096 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -2096 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -2601 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -2601 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -4303 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -4303 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1960 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -1960 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3702 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1705 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3514 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3706 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3706 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))) (-13 (-436 |#1|) (-27) (-1212)) (-1109)) (T -566))
+((-3706 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-618 *4)) (-5 *6 (-413 (-1182 *4))) (-4 *4 (-13 (-436 *7) (-27) (-1212))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3706 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-618 *4)) (-5 *6 (-1182 *4)) (-4 *4 (-13 (-436 *7) (-27) (-1212))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3514 (*1 *2 *3 *4) (-12 (-5 *4 (-618 *6)) (-4 *6 (-13 (-436 *5) (-27) (-1212))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-1182 (-413 (-1182 *6)))) (-5 *1 (-566 *5 *6 *7)) (-5 *3 (-1182 *6)) (-4 *7 (-1109)))) (-1705 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1182 (-413 (-1182 *2)))) (-5 *4 (-618 *2)) (-4 *2 (-13 (-436 *5) (-27) (-1212))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-566 *5 *2 *6)) (-4 *6 (-1109)))) (-3702 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-1182 (-413 (-1182 *3)))) (-5 *1 (-566 *6 *3 *7)) (-5 *5 (-1182 *3)) (-4 *7 (-1109)))) (-1960 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-618 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-5 *5 (-413 (-1182 *2))) (-4 *2 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109)))) (-1960 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-618 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-5 *5 (-1182 *2)) (-4 *2 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109)))) (-4303 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-5 *6 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *7) (-27) (-1212))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109)))) (-4303 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-5 *6 (-1182 *3)) (-4 *3 (-13 (-436 *7) (-27) (-1212))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109)))) (-2601 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2601 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2096 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2096 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
+(-10 -7 (-15 -2096 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -2096 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -2601 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -2601 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -4303 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -4303 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1960 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -1960 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3702 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1705 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3514 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3706 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3706 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))))) |%noBranch|))
+((-3058 (((-570) (-570) (-777)) 90)) (-4209 (((-570) (-570)) 88)) (-3812 (((-570) (-570)) 86)) (-4299 (((-570) (-570)) 92)) (-1652 (((-570) (-570) (-570)) 70)) (-3164 (((-570) (-570) (-570)) 67)) (-3897 (((-413 (-570)) (-570)) 30)) (-4127 (((-570) (-570)) 36)) (-4281 (((-570) (-570)) 79)) (-1969 (((-570) (-570)) 51)) (-2513 (((-650 (-570)) (-570)) 85)) (-2971 (((-570) (-570) (-570) (-570) (-570)) 63)) (-4240 (((-413 (-570)) (-570)) 60)))
+(((-567) (-10 -7 (-15 -4240 ((-413 (-570)) (-570))) (-15 -2971 ((-570) (-570) (-570) (-570) (-570))) (-15 -2513 ((-650 (-570)) (-570))) (-15 -1969 ((-570) (-570))) (-15 -4281 ((-570) (-570))) (-15 -4127 ((-570) (-570))) (-15 -3897 ((-413 (-570)) (-570))) (-15 -3164 ((-570) (-570) (-570))) (-15 -1652 ((-570) (-570) (-570))) (-15 -4299 ((-570) (-570))) (-15 -3812 ((-570) (-570))) (-15 -4209 ((-570) (-570))) (-15 -3058 ((-570) (-570) (-777))))) (T -567))
+((-3058 (*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))) (-4209 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3812 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4299 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-1652 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3164 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3897 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-4127 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4281 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-1969 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2513 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-2971 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4240 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
+(-10 -7 (-15 -4240 ((-413 (-570)) (-570))) (-15 -2971 ((-570) (-570) (-570) (-570) (-570))) (-15 -2513 ((-650 (-570)) (-570))) (-15 -1969 ((-570) (-570))) (-15 -4281 ((-570) (-570))) (-15 -4127 ((-570) (-570))) (-15 -3897 ((-413 (-570)) (-570))) (-15 -3164 ((-570) (-570) (-570))) (-15 -1652 ((-570) (-570) (-570))) (-15 -4299 ((-570) (-570))) (-15 -3812 ((-570) (-570))) (-15 -4209 ((-570) (-570))) (-15 -3058 ((-570) (-570) (-777))))
+((-1923 (((-2 (|:| |answer| |#4|) (|:| -3699 |#4|)) |#4| (-1 |#2| |#2|)) 56)))
+(((-568 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1923 ((-2 (|:| |answer| |#4|) (|:| -3699 |#4|)) |#4| (-1 |#2| |#2|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -568))
+((-1923 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-4 *7 (-1253 (-413 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3699 *3))) (-5 *1 (-568 *5 *6 *7 *3)) (-4 *3 (-347 *5 *6 *7)))))
+(-10 -7 (-15 -1923 ((-2 (|:| |answer| |#4|) (|:| -3699 |#4|)) |#4| (-1 |#2| |#2|))))
+((-1923 (((-2 (|:| |answer| (-413 |#2|)) (|:| -3699 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 18)))
+(((-569 |#1| |#2|) (-10 -7 (-15 -1923 ((-2 (|:| |answer| (-413 |#2|)) (|:| -3699 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -569))
+((-1923 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |answer| (-413 *6)) (|:| -3699 (-413 *6)) (|:| |specpart| (-413 *6)) (|:| |polypart| *6))) (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
+(-10 -7 (-15 -1923 ((-2 (|:| |answer| (-413 |#2|)) (|:| -3699 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 30)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 97)) (-1345 (($ $) 98)) (-1372 (((-112) $) NIL)) (-2836 (($ $ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3420 (($ $ $ $) 52)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL)) (-3020 (($ $ $) 92)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL)) (-3080 (((-570) $) NIL)) (-2372 (($ $ $) 54)) (-1836 (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 77) (((-695 (-570)) (-695 $)) 73)) (-2937 (((-3 $ "failed") $) 94)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL)) (-4373 (((-112) $) NIL)) (-2220 (((-413 (-570)) $) NIL)) (-3336 (($) 79) (($ $) 80)) (-2382 (($ $ $) 91)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3041 (($ $ $ $) NIL)) (-3838 (($ $ $) 70)) (-3703 (((-112) $) NIL)) (-2039 (($ $ $) NIL)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4340 (((-112) $) 34)) (-1958 (((-112) $) 86)) (-3584 (((-3 $ "failed") $) NIL)) (-1774 (((-112) $) 43)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3119 (($ $ $ $) 55)) (-3311 (($ $ $) 88)) (-2222 (($ $ $) 87)) (-2581 (($ $) NIL)) (-3788 (($ $) 49)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) 69)) (-1545 (($ $ $) NIL)) (-2315 (($) NIL T CONST)) (-3523 (($ $) 38)) (-3479 (((-1129) $) 42)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 129)) (-1874 (($ $ $) 95) (($ (-650 $)) NIL)) (-3072 (($ $) NIL)) (-3739 (((-424 $) $) 115)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-2406 (((-3 $ "failed") $ $) 113)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1739 (((-112) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 90)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-2429 (($ $) 40)) (-3916 (($ $) 36)) (-1417 (((-570) $) 48) (((-542) $) 64) (((-899 (-570)) $) NIL) (((-384) $) 58) (((-227) $) 61) (((-1168) $) 66)) (-3735 (((-868) $) 46) (($ (-570)) 47) (($ $) NIL) (($ (-570)) 47)) (-1609 (((-777)) NIL T CONST)) (-2528 (((-112) $ $) NIL)) (-3829 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-4360 (($) 35)) (-2795 (((-112) $ $) NIL)) (-2608 (($ $ $ $) 51)) (-1367 (($ $) 78)) (-1814 (($) 6 T CONST)) (-1824 (($) 31 T CONST)) (-3637 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1282) (-828) $) 28) (((-1282) (-828) $ (-112)) 29)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2924 (((-112) $ $) 50)) (-2904 (((-112) $ $) 81)) (-2872 (((-112) $ $) 33)) (-2914 (((-112) $ $) 83)) (-2894 (((-112) $ $) 10)) (-2965 (($ $) 16) (($ $ $) 39)) (-2953 (($ $ $) 37)) (** (($ $ (-928)) NIL) (($ $ (-777)) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 84) (($ $ $) 53)))
+(((-570) (-13 (-551) (-620 (-1168)) (-834) (-10 -7 (-6 -4436) (-6 -4441) (-6 -4437) (-6 -4431)))) (T -570))
+NIL
+(-13 (-551) (-620 (-1168)) (-834) (-10 -7 (-6 -4436) (-6 -4441) (-6 -4437) (-6 -4431)))
+((-1363 (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072)) 119) (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775)) 121)) (-3722 (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186)) 197) (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168)) 196) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072)) 201) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384)) 202) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384)) 203) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384))))) 204) (((-1044) (-320 (-384)) (-1103 (-849 (-384)))) 192) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384)) 191) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384)) 187) (((-1044) (-775)) 179) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072)) 186)))
+(((-571) (-10 -7 (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -3722 ((-1044) (-775))) (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -3722 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -3722 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))) (T -571))
+((-3722 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384)))) (-5 *5 (-1186)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384)))) (-5 *5 (-1168)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-1363 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-1363 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-3722 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571)))))
+(-10 -7 (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -3722 ((-1044) (-775))) (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -3722 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -3722 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -3722 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))
+((-3323 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|)) 198)) (-3633 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|)) 99)) (-3834 (((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|) 194)) (-3647 (((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186))) 203)) (-2102 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186)) 212 (|has| |#3| (-662 |#2|)))))
+(((-572 |#1| |#2| |#3|) (-10 -7 (-15 -3633 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -3834 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -3323 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -3647 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -2102 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))) (-13 (-436 |#1|) (-27) (-1212)) (-1109)) (T -572))
+((-2102 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-618 *4)) (-5 *6 (-1186)) (-4 *4 (-13 (-436 *7) (-27) (-1212))) (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3647 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-618 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-4 *2 (-13 (-436 *5) (-27) (-1212))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *1 (-572 *5 *2 *6)) (-4 *6 (-1109)))) (-3323 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1212))) (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-572 *6 *3 *7)) (-4 *7 (-1109)))) (-3834 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *5) (-27) (-1212))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3))) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))) (-3633 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *5) (-27) (-1212))) (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570)))) (-5 *2 (-592 *3)) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
+(-10 -7 (-15 -3633 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -3834 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -3323 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -3647 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -2102 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2003 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186))) |%noBranch|))
+((-3265 (((-2 (|:| -2678 |#2|) (|:| |nconst| |#2|)) |#2| (-1186)) 64)) (-3048 (((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|)) 175 (-12 (|has| |#2| (-1148)) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-893 (-570))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)) 154 (-12 (|has| |#2| (-635)) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-893 (-570)))))) (-2105 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)) 156 (-12 (|has| |#2| (-635)) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-893 (-570)))))))
+(((-573 |#1| |#2|) (-10 -7 (-15 -3265 ((-2 (|:| -2678 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -2105 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -3048 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -3048 ((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-1047 (-570)) (-458) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -573))
+((-3048 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1186)) (-5 *4 (-849 *2)) (-4 *2 (-1148)) (-4 *2 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570))) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *1 (-573 *5 *2)))) (-3048 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570))) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-635)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-2105 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570))) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-635)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-3265 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| -2678 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(-10 -7 (-15 -3265 ((-2 (|:| -2678 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -2105 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -3048 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -3048 ((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-3460 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|))) 41)) (-3722 (((-592 (-413 |#2|)) (-413 |#2|)) 28)) (-1968 (((-3 (-413 |#2|) "failed") (-413 |#2|)) 17)) (-2662 (((-3 (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|)) 48)))
+(((-574 |#1| |#2|) (-10 -7 (-15 -3722 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -1968 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -2662 ((-3 (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -3460 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-570))) (-1253 |#1|)) (T -574))
+((-3460 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-650 (-413 *6))) (-5 *3 (-413 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-574 *5 *6)))) (-2662 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -3585 (-413 *5)) (|:| |coeff| (-413 *5)))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))) (-1968 (*1 *2 *2) (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148) (-1047 (-570)))) (-5 *1 (-574 *3 *4)))) (-3722 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4)) (-5 *2 (-592 (-413 *5))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))))
+(-10 -7 (-15 -3722 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -1968 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -2662 ((-3 (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -3460 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|)))))
+((-3920 (((-3 (-570) "failed") |#1|) 14)) (-4269 (((-112) |#1|) 13)) (-1441 (((-570) |#1|) 9)))
+(((-575 |#1|) (-10 -7 (-15 -1441 ((-570) |#1|)) (-15 -4269 ((-112) |#1|)) (-15 -3920 ((-3 (-570) "failed") |#1|))) (-1047 (-570))) (T -575))
+((-3920 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))) (-4269 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-575 *3)) (-4 *3 (-1047 (-570))))) (-1441 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
+(-10 -7 (-15 -1441 ((-570) |#1|)) (-15 -4269 ((-112) |#1|)) (-15 -3920 ((-3 (-570) "failed") |#1|)))
+((-2264 (((-3 (-2 (|:| |mainpart| (-413 (-959 |#1|))) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 (-959 |#1|))) (|:| |logand| (-413 (-959 |#1|))))))) "failed") (-413 (-959 |#1|)) (-1186) (-650 (-413 (-959 |#1|)))) 48)) (-2386 (((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186)) 28)) (-3404 (((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186)) 23)) (-1829 (((-3 (-2 (|:| -3585 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))) 35)))
+(((-576 |#1|) (-10 -7 (-15 -2386 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3404 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -2264 ((-3 (-2 (|:| |mainpart| (-413 (-959 |#1|))) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 (-959 |#1|))) (|:| |logand| (-413 (-959 |#1|))))))) "failed") (-413 (-959 |#1|)) (-1186) (-650 (-413 (-959 |#1|))))) (-15 -1829 ((-3 (-2 (|:| -3585 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))))) (-13 (-562) (-1047 (-570)) (-148))) (T -576))
+((-1829 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-2 (|:| -3585 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5))))) (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))) (-2264 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 (-413 (-959 *6)))) (-5 *3 (-413 (-959 *6))) (-4 *6 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-576 *6)))) (-3404 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-148))) (-5 *1 (-576 *4)))) (-2386 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-592 (-413 (-959 *5)))) (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))))
+(-10 -7 (-15 -2386 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3404 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -2264 ((-3 (-2 (|:| |mainpart| (-413 (-959 |#1|))) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 (-959 |#1|))) (|:| |logand| (-413 (-959 |#1|))))))) "failed") (-413 (-959 |#1|)) (-1186) (-650 (-413 (-959 |#1|))))) (-15 -1829 ((-3 (-2 (|:| -3585 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))))
+((-2417 (((-112) $ $) 75)) (-2745 (((-112) $) 48)) (-3414 ((|#1| $) 39)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) 79)) (-2735 (($ $) 139)) (-2602 (($ $) 118)) (-3125 ((|#1| $) 37)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $) NIL)) (-2712 (($ $) 141)) (-2579 (($ $) 114)) (-4087 (($ $) 143)) (-2622 (($ $) 122)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) 93)) (-3080 (((-570) $) 95)) (-2937 (((-3 $ "failed") $) 78)) (-2553 (($ |#1| |#1|) 35)) (-3703 (((-112) $) 44)) (-1315 (($) 104)) (-4340 (((-112) $) 55)) (-2665 (($ $ (-570)) NIL)) (-1774 (((-112) $) 45)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-2635 (($ $) 106)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-2932 (($ |#1| |#1|) 29) (($ |#1|) 34) (($ (-413 (-570))) 92)) (-1993 ((|#1| $) 36)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) 81) (($ (-650 $)) NIL)) (-2406 (((-3 $ "failed") $ $) 80)) (-4388 (($ $) 108)) (-4098 (($ $) 147)) (-2634 (($ $) 120)) (-2746 (($ $) 149)) (-2612 (($ $) 124)) (-2723 (($ $) 145)) (-2590 (($ $) 116)) (-2944 (((-112) $ |#1|) 42)) (-3735 (((-868) $) 100) (($ (-570)) 83) (($ $) NIL) (($ (-570)) 83)) (-1609 (((-777)) 102 T CONST)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) 161)) (-2671 (($ $) 130)) (-2795 (((-112) $ $) NIL)) (-4112 (($ $) 159)) (-2647 (($ $) 126)) (-4157 (($ $) 157)) (-2691 (($ $) 137)) (-1510 (($ $) 155)) (-2701 (($ $) 135)) (-4150 (($ $) 153)) (-2681 (($ $) 132)) (-4123 (($ $) 151)) (-2660 (($ $) 128)) (-1814 (($) 30 T CONST)) (-1824 (($) 10 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 49)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 47)) (-2965 (($ $) 53) (($ $ $) 54)) (-2953 (($ $ $) 52)) (** (($ $ (-928)) 71) (($ $ (-777)) NIL) (($ $ $) 110) (($ $ (-413 (-570))) 163)) (* (($ (-928) $) 66) (($ (-777) $) NIL) (($ (-570) $) 65) (($ $ $) 61)))
+(((-577 |#1|) (-560 |#1|) (-13 (-410) (-1212))) (T -577))
NIL
(-560 |#1|)
-((-1659 (((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570))) 27)))
-(((-578) (-10 -7 (-15 -1659 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))) (T -578))
-((-1659 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 (-570)))) (-5 *3 (-1182 (-570))) (-5 *1 (-578)))))
-(-10 -7 (-15 -1659 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))
-((-3293 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186)) 19)) (-3566 (((-650 (-618 |#2|)) (-650 |#2|) (-1186)) 23)) (-3923 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|))) 11)) (-3476 ((|#2| |#2| (-1186)) 59 (|has| |#1| (-562)))) (-2474 ((|#2| |#2| (-1186)) 87 (-12 (|has| |#2| (-288)) (|has| |#1| (-458))))) (-4216 (((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186)) 25)) (-4405 (((-618 |#2|) (-650 (-618 |#2|))) 24)) (-2577 (((-592 |#2|) |#2| (-1186) (-1 (-592 |#2|) |#2| (-1186)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) 115 (-12 (|has| |#2| (-288)) (|has| |#2| (-635)) (|has| |#2| (-1047 (-1186))) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-458)) (|has| |#1| (-893 (-570)))))))
-(((-579 |#1| |#2|) (-10 -7 (-15 -3293 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -4405 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -4216 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3923 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3566 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -3476 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -2474 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2577 ((-592 |#2|) |#2| (-1186) (-1 (-592 |#2|) |#2| (-1186)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-1109) (-436 |#1|)) (T -579))
-((-2577 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-592 *3) *3 (-1186))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1186))) (-4 *3 (-288)) (-4 *3 (-635)) (-4 *3 (-1047 *4)) (-4 *3 (-436 *7)) (-5 *4 (-1186)) (-4 *7 (-620 (-899 (-570)))) (-4 *7 (-458)) (-4 *7 (-893 (-570))) (-4 *7 (-1109)) (-5 *2 (-592 *3)) (-5 *1 (-579 *7 *3)))) (-2474 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-458)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *2)) (-4 *2 (-288)) (-4 *2 (-436 *4)))) (-3476 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))) (-3566 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-1186)) (-4 *6 (-436 *5)) (-4 *5 (-1109)) (-5 *2 (-650 (-618 *6))) (-5 *1 (-579 *5 *6)))) (-3923 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109)) (-5 *1 (-579 *3 *4)))) (-4216 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-650 (-618 *6))) (-5 *4 (-1186)) (-5 *2 (-618 *6)) (-4 *6 (-436 *5)) (-4 *5 (-1109)) (-5 *1 (-579 *5 *6)))) (-4405 (*1 *2 *3) (-12 (-5 *3 (-650 (-618 *5))) (-4 *4 (-1109)) (-5 *2 (-618 *5)) (-5 *1 (-579 *4 *5)) (-4 *5 (-436 *4)))) (-3293 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-618 *5))) (-5 *3 (-1186)) (-4 *5 (-436 *4)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *5)))))
-(-10 -7 (-15 -3293 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -4405 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -4216 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3923 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3566 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -3476 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -2474 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2577 ((-592 |#2|) |#2| (-1186) (-1 (-592 |#2|) |#2| (-1186)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-1499 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|)) 201)) (-3205 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|))) 176)) (-3147 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|))) 173)) (-2124 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 164)) (-2758 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 187)) (-3572 (((-3 (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|)) 204)) (-1858 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|)) 207)) (-1961 (((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 88)) (-3704 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 100)) (-2467 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|))) 180)) (-4235 (((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 168)) (-2080 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 191)) (-2010 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|)) 212)))
-(((-580 |#1| |#2|) (-10 -7 (-15 -2758 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -2080 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1499 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -1858 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -2010 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -3205 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -2467 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|)))) (-15 -3572 ((-3 (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -3147 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -2124 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -4235 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1961 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -3704 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-368) (-1252 |#1|)) (T -580))
-((-3704 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-580 *5 *3)))) (-1961 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |ir| (-592 (-413 *6))) (|:| |specpart| (-413 *6)) (|:| |polypart| *6))) (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))) (-4235 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-629 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -4410 *4) (|:| |sol?| (-112))) (-570) *4)) (-4 *4 (-368)) (-4 *5 (-1252 *4)) (-5 *1 (-580 *4 *5)))) (-2124 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -1400 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1252 *4)))) (-3147 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-650 (-413 *7))) (-4 *7 (-1252 *6)) (-5 *3 (-413 *7)) (-4 *6 (-368)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-580 *6 *7)))) (-3572 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -1400 (-413 *6)) (|:| |coeff| (-413 *6)))) (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))) (-2467 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -4410 *7) (|:| |sol?| (-112))) (-570) *7)) (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1252 *7)) (-5 *3 (-413 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-580 *7 *8)))) (-3205 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -1400 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1252 *7)) (-5 *3 (-413 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-580 *7 *8)))) (-2010 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4410 *6) (|:| |sol?| (-112))) (-570) *6)) (-4 *6 (-368)) (-4 *7 (-1252 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -1400 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-1858 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -1400 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-368)) (-4 *7 (-1252 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -1400 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-650 *6) "failed") (-570) *6 *6)) (-4 *6 (-368)) (-4 *7 (-1252 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-2080 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4410 *6) (|:| |sol?| (-112))) (-570) *6)) (-4 *6 (-368)) (-4 *7 (-1252 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-2758 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -1400 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-368)) (-4 *7 (-1252 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(-10 -7 (-15 -2758 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -2080 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1499 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -1858 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -2010 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -3205 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -2467 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|)))) (-15 -3572 ((-3 (-2 (|:| -1400 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -3147 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -2124 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -4235 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1961 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -3704 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-2768 (((-3 |#2| "failed") |#2| (-1186) (-1186)) 10)))
-(((-581 |#1| |#2|) (-10 -7 (-15 -2768 ((-3 |#2| "failed") |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-966) (-1148) (-29 |#1|))) (T -581))
-((-2768 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-581 *4 *2)) (-4 *2 (-13 (-1211) (-966) (-1148) (-29 *4))))))
-(-10 -7 (-15 -2768 ((-3 |#2| "failed") |#2| (-1186) (-1186))))
-((-3343 (((-697 (-1234)) $ (-1234)) 26)) (-3510 (((-697 (-555)) $ (-555)) 25)) (-1609 (((-777) $ (-129)) 27)) (-1784 (((-697 (-130)) $ (-130)) 24)) (-2795 (((-697 (-1234)) $) 12)) (-2243 (((-697 (-1232)) $) 8)) (-2851 (((-697 (-1231)) $) 10)) (-3818 (((-697 (-555)) $) 13)) (-3736 (((-697 (-553)) $) 9)) (-3016 (((-697 (-552)) $) 11)) (-4271 (((-777) $ (-129)) 7)) (-1527 (((-697 (-130)) $) 14)) (-1866 (($ $) 6)))
+((-2576 (((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570))) 27)))
+(((-578) (-10 -7 (-15 -2576 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))) (T -578))
+((-2576 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 (-570)))) (-5 *3 (-1182 (-570))) (-5 *1 (-578)))))
+(-10 -7 (-15 -2576 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))
+((-3030 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186)) 19)) (-3858 (((-650 (-618 |#2|)) (-650 |#2|) (-1186)) 23)) (-3923 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|))) 11)) (-2323 ((|#2| |#2| (-1186)) 59 (|has| |#1| (-562)))) (-4002 ((|#2| |#2| (-1186)) 87 (-12 (|has| |#2| (-288)) (|has| |#1| (-458))))) (-4046 (((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186)) 25)) (-2157 (((-618 |#2|) (-650 (-618 |#2|))) 24)) (-2477 (((-592 |#2|) |#2| (-1186) (-1 (-592 |#2|) |#2| (-1186)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) 115 (-12 (|has| |#2| (-288)) (|has| |#2| (-635)) (|has| |#2| (-1047 (-1186))) (|has| |#1| (-620 (-899 (-570)))) (|has| |#1| (-458)) (|has| |#1| (-893 (-570)))))))
+(((-579 |#1| |#2|) (-10 -7 (-15 -3030 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -2157 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -4046 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3923 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3858 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -2323 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -4002 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2477 ((-592 |#2|) |#2| (-1186) (-1 (-592 |#2|) |#2| (-1186)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-1109) (-436 |#1|)) (T -579))
+((-2477 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-592 *3) *3 (-1186))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1186))) (-4 *3 (-288)) (-4 *3 (-635)) (-4 *3 (-1047 *4)) (-4 *3 (-436 *7)) (-5 *4 (-1186)) (-4 *7 (-620 (-899 (-570)))) (-4 *7 (-458)) (-4 *7 (-893 (-570))) (-4 *7 (-1109)) (-5 *2 (-592 *3)) (-5 *1 (-579 *7 *3)))) (-4002 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-458)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *2)) (-4 *2 (-288)) (-4 *2 (-436 *4)))) (-2323 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))) (-3858 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-1186)) (-4 *6 (-436 *5)) (-4 *5 (-1109)) (-5 *2 (-650 (-618 *6))) (-5 *1 (-579 *5 *6)))) (-3923 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109)) (-5 *1 (-579 *3 *4)))) (-4046 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-650 (-618 *6))) (-5 *4 (-1186)) (-5 *2 (-618 *6)) (-4 *6 (-436 *5)) (-4 *5 (-1109)) (-5 *1 (-579 *5 *6)))) (-2157 (*1 *2 *3) (-12 (-5 *3 (-650 (-618 *5))) (-4 *4 (-1109)) (-5 *2 (-618 *5)) (-5 *1 (-579 *4 *5)) (-4 *5 (-436 *4)))) (-3030 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-618 *5))) (-5 *3 (-1186)) (-4 *5 (-436 *4)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *5)))))
+(-10 -7 (-15 -3030 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -2157 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -4046 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3923 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3858 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -2323 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -4002 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2477 ((-592 |#2|) |#2| (-1186) (-1 (-592 |#2|) |#2| (-1186)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1661 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|)) 201)) (-1707 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|))) 176)) (-2317 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|))) 173)) (-1672 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 164)) (-1748 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 187)) (-3927 (((-3 (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|)) 204)) (-3856 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|)) 207)) (-2403 (((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 88)) (-2674 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 100)) (-3926 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|))) 180)) (-4249 (((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 168)) (-4330 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 191)) (-2877 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|)) 212)))
+(((-580 |#1| |#2|) (-10 -7 (-15 -1748 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4330 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1661 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -3856 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -2877 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -1707 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -3926 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|)))) (-15 -3927 ((-3 (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -2317 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -1672 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -4249 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -2403 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2674 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -580))
+((-2674 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-580 *5 *3)))) (-2403 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |ir| (-592 (-413 *6))) (|:| |specpart| (-413 *6)) (|:| |polypart| *6))) (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))) (-4249 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-629 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -4411 *4) (|:| |sol?| (-112))) (-570) *4)) (-4 *4 (-368)) (-4 *5 (-1253 *4)) (-5 *1 (-580 *4 *5)))) (-1672 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -3585 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1253 *4)))) (-2317 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-650 (-413 *7))) (-4 *7 (-1253 *6)) (-5 *3 (-413 *7)) (-4 *6 (-368)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-580 *6 *7)))) (-3927 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3585 (-413 *6)) (|:| |coeff| (-413 *6)))) (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))) (-3926 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -4411 *7) (|:| |sol?| (-112))) (-570) *7)) (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1253 *7)) (-5 *3 (-413 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-580 *7 *8)))) (-1707 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -3585 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1253 *7)) (-5 *3 (-413 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-580 *7 *8)))) (-2877 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4411 *6) (|:| |sol?| (-112))) (-570) *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -3585 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-3856 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3585 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -3585 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-1661 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-650 *6) "failed") (-570) *6 *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-4330 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4411 *6) (|:| |sol?| (-112))) (-570) *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-1748 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3585 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(-10 -7 (-15 -1748 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4330 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1661 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -3856 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -2877 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -1707 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -3926 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|))))))) (|:| |a0| |#1|)) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|)))) (-15 -3927 ((-3 (-2 (|:| -3585 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -2317 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -1672 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -4249 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4411 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -2403 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2674 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-1839 (((-3 |#2| "failed") |#2| (-1186) (-1186)) 10)))
+(((-581 |#1| |#2|) (-10 -7 (-15 -1839 ((-3 |#2| "failed") |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-1148) (-29 |#1|))) (T -581))
+((-1839 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-581 *4 *2)) (-4 *2 (-13 (-1212) (-966) (-1148) (-29 *4))))))
+(-10 -7 (-15 -1839 ((-3 |#2| "failed") |#2| (-1186) (-1186))))
+((-3512 (((-697 (-1235)) $ (-1235)) 26)) (-1430 (((-697 (-555)) $ (-555)) 25)) (-3319 (((-777) $ (-129)) 27)) (-1316 (((-697 (-130)) $ (-130)) 24)) (-3931 (((-697 (-1235)) $) 12)) (-3502 (((-697 (-1233)) $) 8)) (-3224 (((-697 (-1232)) $) 10)) (-2444 (((-697 (-555)) $) 13)) (-2951 (((-697 (-553)) $) 9)) (-3481 (((-697 (-552)) $) 11)) (-3317 (((-777) $ (-129)) 7)) (-3765 (((-697 (-130)) $) 14)) (-3924 (($ $) 6)))
(((-582) (-141)) (T -582))
NIL
(-13 (-533) (-866))
(((-175) . T) ((-533) . T) ((-866) . T))
-((-3343 (((-697 (-1234)) $ (-1234)) NIL)) (-3510 (((-697 (-555)) $ (-555)) NIL)) (-1609 (((-777) $ (-129)) NIL)) (-1784 (((-697 (-130)) $ (-130)) NIL)) (-2795 (((-697 (-1234)) $) NIL)) (-2243 (((-697 (-1232)) $) NIL)) (-2851 (((-697 (-1231)) $) NIL)) (-3818 (((-697 (-555)) $) NIL)) (-3736 (((-697 (-553)) $) NIL)) (-3016 (((-697 (-552)) $) NIL)) (-4271 (((-777) $ (-129)) NIL)) (-1527 (((-697 (-130)) $) NIL)) (-1372 (((-112) $) NIL)) (-1479 (($ (-394)) 14) (($ (-1168)) 16)) (-3735 (((-868) $) NIL)) (-1866 (($ $) NIL)))
-(((-583) (-13 (-582) (-619 (-868)) (-10 -8 (-15 -1479 ($ (-394))) (-15 -1479 ($ (-1168))) (-15 -1372 ((-112) $))))) (T -583))
-((-1479 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))) (-1479 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583)))) (-1372 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583)))))
-(-13 (-582) (-619 (-868)) (-10 -8 (-15 -1479 ($ (-394))) (-15 -1479 ($ (-1168))) (-15 -1372 ((-112) $))))
-((-2416 (((-112) $ $) NIL)) (-1877 (($) 7 T CONST)) (-1903 (((-1168) $) NIL)) (-4184 (($) 6 T CONST)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15)) (-2267 (($) 9 T CONST)) (-1584 (($) 8 T CONST)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)))
-(((-584) (-13 (-1109) (-10 -8 (-15 -4184 ($) -3640) (-15 -1877 ($) -3640) (-15 -1584 ($) -3640) (-15 -2267 ($) -3640)))) (T -584))
-((-4184 (*1 *1) (-5 *1 (-584))) (-1877 (*1 *1) (-5 *1 (-584))) (-1584 (*1 *1) (-5 *1 (-584))) (-2267 (*1 *1) (-5 *1 (-584))))
-(-13 (-1109) (-10 -8 (-15 -4184 ($) -3640) (-15 -1877 ($) -3640) (-15 -1584 ($) -3640) (-15 -2267 ($) -3640)))
-((-2416 (((-112) $ $) NIL)) (-2888 (((-697 $) (-497)) 21)) (-1903 (((-1168) $) NIL)) (-3373 (($ (-1168)) 14)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 34)) (-4069 (((-215 4 (-130)) $) 24)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 26)))
-(((-585) (-13 (-1109) (-10 -8 (-15 -3373 ($ (-1168))) (-15 -4069 ((-215 4 (-130)) $)) (-15 -2888 ((-697 $) (-497)))))) (T -585))
-((-3373 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))) (-4069 (*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))) (-2888 (*1 *2 *3) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
-(-13 (-1109) (-10 -8 (-15 -3373 ($ (-1168))) (-15 -4069 ((-215 4 (-130)) $)) (-15 -2888 ((-697 $) (-497)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $ (-570)) 77)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3806 (($ (-1182 (-570)) (-570)) 83)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) 68)) (-3716 (($ $) 43)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-3157 (((-777) $) 16)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4323 (((-570)) 37)) (-1342 (((-570) $) 41)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1558 (($ $ (-570)) 24)) (-2407 (((-3 $ "failed") $ $) 73)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) 17)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 74)) (-2784 (((-1166 (-570)) $) 19)) (-3049 (($ $) 26)) (-3735 (((-868) $) 104) (($ (-570)) 63) (($ $) NIL)) (-2744 (((-777)) 15 T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-570) $ (-570)) 46)) (-1812 (($) 44 T CONST)) (-1823 (($) 21 T CONST)) (-2872 (((-112) $ $) 54)) (-2965 (($ $) 62) (($ $ $) 48)) (-2954 (($ $ $) 61)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 64) (($ $ $) 65)))
+((-3512 (((-697 (-1235)) $ (-1235)) NIL)) (-1430 (((-697 (-555)) $ (-555)) NIL)) (-3319 (((-777) $ (-129)) NIL)) (-1316 (((-697 (-130)) $ (-130)) NIL)) (-3931 (((-697 (-1235)) $) NIL)) (-3502 (((-697 (-1233)) $) NIL)) (-3224 (((-697 (-1232)) $) NIL)) (-2444 (((-697 (-555)) $) NIL)) (-2951 (((-697 (-553)) $) NIL)) (-3481 (((-697 (-552)) $) NIL)) (-3317 (((-777) $ (-129)) NIL)) (-3765 (((-697 (-130)) $) NIL)) (-2935 (((-112) $) NIL)) (-1461 (($ (-394)) 14) (($ (-1168)) 16)) (-3735 (((-868) $) NIL)) (-3924 (($ $) NIL)))
+(((-583) (-13 (-582) (-619 (-868)) (-10 -8 (-15 -1461 ($ (-394))) (-15 -1461 ($ (-1168))) (-15 -2935 ((-112) $))))) (T -583))
+((-1461 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))) (-1461 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583)))) (-2935 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583)))))
+(-13 (-582) (-619 (-868)) (-10 -8 (-15 -1461 ($ (-394))) (-15 -1461 ($ (-1168))) (-15 -2935 ((-112) $))))
+((-2417 (((-112) $ $) NIL)) (-1878 (($) 7 T CONST)) (-4268 (((-1168) $) NIL)) (-4186 (($) 6 T CONST)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15)) (-2498 (($) 9 T CONST)) (-3059 (($) 8 T CONST)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)))
+(((-584) (-13 (-1109) (-10 -8 (-15 -4186 ($) -3640) (-15 -1878 ($) -3640) (-15 -3059 ($) -3640) (-15 -2498 ($) -3640)))) (T -584))
+((-4186 (*1 *1) (-5 *1 (-584))) (-1878 (*1 *1) (-5 *1 (-584))) (-3059 (*1 *1) (-5 *1 (-584))) (-2498 (*1 *1) (-5 *1 (-584))))
+(-13 (-1109) (-10 -8 (-15 -4186 ($) -3640) (-15 -1878 ($) -3640) (-15 -3059 ($) -3640) (-15 -2498 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-2889 (((-697 $) (-497)) 21)) (-4268 (((-1168) $) NIL)) (-2556 (($ (-1168)) 14)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 34)) (-2034 (((-215 4 (-130)) $) 24)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 26)))
+(((-585) (-13 (-1109) (-10 -8 (-15 -2556 ($ (-1168))) (-15 -2034 ((-215 4 (-130)) $)) (-15 -2889 ((-697 $) (-497)))))) (T -585))
+((-2556 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))) (-2034 (*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))) (-2889 (*1 *2 *3) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
+(-13 (-1109) (-10 -8 (-15 -2556 ($ (-1168))) (-15 -2034 ((-215 4 (-130)) $)) (-15 -2889 ((-697 $) (-497)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $ (-570)) 77)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2363 (($ (-1182 (-570)) (-570)) 83)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) 68)) (-2778 (($ $) 43)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4331 (((-777) $) 16)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2532 (((-570)) 37)) (-1929 (((-570) $) 41)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-4102 (($ $ (-570)) 24)) (-2406 (((-3 $ "failed") $ $) 73)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) 17)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 74)) (-3819 (((-1166 (-570)) $) 19)) (-2540 (($ $) 26)) (-3735 (((-868) $) 104) (($ (-570)) 63) (($ $) NIL)) (-1609 (((-777)) 15 T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-570) $ (-570)) 46)) (-1814 (($) 44 T CONST)) (-1824 (($) 21 T CONST)) (-2872 (((-112) $ $) 54)) (-2965 (($ $) 62) (($ $ $) 48)) (-2953 (($ $ $) 61)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 64) (($ $ $) 65)))
(((-586 |#1| |#2|) (-875 |#1|) (-570) (-112)) (T -586))
NIL
(-875 |#1|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 30)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-4029 (((-1199 (-928) (-777)) (-570)) 59)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 $ "failed") $) 95)) (-3080 (($ $) 94)) (-2049 (($ (-1276 $)) 93)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 56)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) 44)) (-3336 (($) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) 61)) (-2036 (((-112) $) NIL)) (-2774 (($ $) NIL) (($ $ (-777)) NIL)) (-1552 (((-112) $) NIL)) (-3157 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2081 (((-112) $) NIL)) (-1484 (($) 49 (|has| $ (-373)))) (-3088 (((-112) $) NIL (|has| $ (-373)))) (-2610 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2885 (((-3 $ "failed") $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) 104)) (-2367 (((-928) $) 67)) (-3587 (((-1182 $) $) NIL (|has| $ (-373)))) (-1726 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-3609 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL T CONST)) (-2159 (($ (-928)) 60)) (-2289 (((-112) $) 87)) (-3479 (((-1129) $) NIL)) (-2339 (($) 28 (|has| $ (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 54)) (-3738 (((-424 $) $) NIL)) (-3916 (((-928)) 86) (((-839 (-928))) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-2184 (((-135)) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-1601 (((-928) $) 85) (((-839 (-928)) $) NIL)) (-2886 (((-1182 $)) 102)) (-2163 (($) 66)) (-3046 (($) 50 (|has| $ (-373)))) (-1807 (((-695 $) (-1276 $)) NIL) (((-1276 $) $) 91)) (-1416 (((-570) $) 40)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) 42) (($ $) NIL) (($ (-413 (-570))) NIL)) (-1918 (((-3 $ "failed") $) NIL) (($ $) 105)) (-2744 (((-777)) 51 T CONST)) (-1859 (((-112) $ $) 107)) (-2331 (((-1276 $) (-928)) 97) (((-1276 $)) 96)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) 31 T CONST)) (-1823 (($) 27 T CONST)) (-3741 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 34)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 81) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 30)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2756 (((-1199 (-928) (-777)) (-570)) 59)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 $ "failed") $) 95)) (-3080 (($ $) 94)) (-2125 (($ (-1277 $)) 93)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 56)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) 44)) (-3336 (($) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) 61)) (-2006 (((-112) $) NIL)) (-1901 (($ $) NIL) (($ $ (-777)) NIL)) (-4037 (((-112) $) NIL)) (-4331 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-4340 (((-112) $) NIL)) (-1518 (($) 49 (|has| $ (-373)))) (-2888 (((-112) $) NIL (|has| $ (-373)))) (-2771 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-3584 (((-3 $ "failed") $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) 104)) (-2332 (((-928) $) 67)) (-4044 (((-1182 $) $) NIL (|has| $ (-373)))) (-2070 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-4258 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL T CONST)) (-2160 (($ (-928)) 60)) (-2699 (((-112) $) 87)) (-3479 (((-1129) $) NIL)) (-2340 (($) 28 (|has| $ (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 54)) (-3739 (((-424 $) $) NIL)) (-4118 (((-928)) 86) (((-839 (-928))) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-4154 (((-135)) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-3221 (((-928) $) 85) (((-839 (-928)) $) NIL)) (-3597 (((-1182 $)) 102)) (-3929 (($) 66)) (-2520 (($) 50 (|has| $ (-373)))) (-1533 (((-695 $) (-1277 $)) NIL) (((-1277 $) $) 91)) (-1417 (((-570) $) 40)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) 42) (($ $) NIL) (($ (-413 (-570))) NIL)) (-3127 (((-3 $ "failed") $) NIL) (($ $) 105)) (-1609 (((-777)) 51 T CONST)) (-3866 (((-112) $ $) 107)) (-2003 (((-1277 $) (-928)) 97) (((-1277 $)) 96)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) 31 T CONST)) (-1824 (($) 27 T CONST)) (-2984 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 34)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 81) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
(((-587 |#1|) (-13 (-354) (-333 $) (-620 (-570))) (-928)) (T -587))
NIL
(-13 (-354) (-333 $) (-620 (-570)))
-((-2471 (((-1281) (-1168)) 10)))
-(((-588) (-10 -7 (-15 -2471 ((-1281) (-1168))))) (T -588))
-((-2471 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-588)))))
-(-10 -7 (-15 -2471 ((-1281) (-1168))))
-((-2198 (((-592 |#2|) (-592 |#2|)) 42)) (-1387 (((-650 |#2|) (-592 |#2|)) 44)) (-3132 ((|#2| (-592 |#2|)) 50)))
-(((-589 |#1| |#2|) (-10 -7 (-15 -2198 ((-592 |#2|) (-592 |#2|))) (-15 -1387 ((-650 |#2|) (-592 |#2|))) (-15 -3132 (|#2| (-592 |#2|)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-29 |#1|) (-1211))) (T -589))
-((-3132 (*1 *2 *3) (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-29 *4) (-1211))) (-5 *1 (-589 *4 *2)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))))) (-1387 (*1 *2 *3) (-12 (-5 *3 (-592 *5)) (-4 *5 (-13 (-29 *4) (-1211))) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-650 *5)) (-5 *1 (-589 *4 *5)))) (-2198 (*1 *2 *2) (-12 (-5 *2 (-592 *4)) (-4 *4 (-13 (-29 *3) (-1211))) (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-589 *3 *4)))))
-(-10 -7 (-15 -2198 ((-592 |#2|) (-592 |#2|))) (-15 -1387 ((-650 |#2|) (-592 |#2|))) (-15 -3132 (|#2| (-592 |#2|))))
-((-1351 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|)) 30)))
-(((-590 |#1| |#2|) (-10 -7 (-15 -1351 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1351 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1351 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1351 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-368) (-368)) (T -590))
-((-1351 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-590 *5 *6)))) (-1351 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-368)) (-4 *2 (-368)) (-5 *1 (-590 *5 *2)))) (-1351 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -1400 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-2 (|:| -1400 *6) (|:| |coeff| *6))) (-5 *1 (-590 *5 *6)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-592 *5)) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-592 *6)) (-5 *1 (-590 *5 *6)))))
-(-10 -7 (-15 -1351 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1351 ((-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -1400 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1351 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1351 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3513 (($ (-512) (-603)) 14)) (-2334 (($ (-512) (-603) $) 16)) (-4379 (($ (-512) (-603)) 15)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) 7) (((-1191) $) 6)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-591) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -3513 ($ (-512) (-603))) (-15 -4379 ($ (-512) (-603))) (-15 -2334 ($ (-512) (-603) $))))) (T -591))
-((-3513 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-4379 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-2334 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
-(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -3513 ($ (-512) (-603))) (-15 -4379 ($ (-512) (-603))) (-15 -2334 ($ (-512) (-603) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 76)) (-3080 ((|#1| $) NIL)) (-1400 ((|#1| $) 30)) (-4305 (((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 32)) (-4098 (($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 28)) (-2575 (((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $) 31)) (-1903 (((-1168) $) NIL)) (-2642 (($ |#1| |#1|) 38) (($ |#1| (-1186)) 49 (|has| |#1| (-1047 (-1186))))) (-3479 (((-1129) $) NIL)) (-2401 (((-112) $) 35)) (-3447 ((|#1| $ (-1 |#1| |#1|)) 88) ((|#1| $ (-1186)) 89 (|has| |#1| (-907 (-1186))))) (-3735 (((-868) $) 112) (($ |#1|) 29)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 18 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) 17) (($ $ $) NIL)) (-2954 (($ $ $) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 16) (($ (-413 (-570)) $) 41) (($ $ (-413 (-570))) NIL)))
-(((-592 |#1|) (-13 (-723 (-413 (-570))) (-1047 |#1|) (-10 -8 (-15 -4098 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -1400 (|#1| $)) (-15 -2575 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -4305 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2401 ((-112) $)) (-15 -2642 ($ |#1| |#1|)) (-15 -3447 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3447 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -2642 ($ |#1| (-1186))) |%noBranch|))) (-368)) (T -592))
-((-4098 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *2)) (|:| |logand| (-1182 *2))))) (-5 *4 (-650 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-368)) (-5 *1 (-592 *2)))) (-1400 (*1 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-2575 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *3)) (|:| |logand| (-1182 *3))))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-4305 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-2401 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-2642 (*1 *1 *2 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3447 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3447 (*1 *2 *1 *3) (-12 (-4 *2 (-368)) (-4 *2 (-907 *3)) (-5 *1 (-592 *2)) (-5 *3 (-1186)))) (-2642 (*1 *1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *1 (-592 *2)) (-4 *2 (-1047 *3)) (-4 *2 (-368)))))
-(-13 (-723 (-413 (-570))) (-1047 |#1|) (-10 -8 (-15 -4098 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -1400 (|#1| $)) (-15 -2575 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -4305 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2401 ((-112) $)) (-15 -2642 ($ |#1| |#1|)) (-15 -3447 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3447 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -2642 ($ |#1| (-1186))) |%noBranch|)))
-((-3745 (((-112) |#1|) 16)) (-2877 (((-3 |#1| "failed") |#1|) 14)) (-1623 (((-2 (|:| -4358 |#1|) (|:| -1907 (-777))) |#1|) 39) (((-3 |#1| "failed") |#1| (-777)) 18)) (-1920 (((-112) |#1| (-777)) 19)) (-4186 ((|#1| |#1|) 43)) (-3785 ((|#1| |#1| (-777)) 46)))
-(((-593 |#1|) (-10 -7 (-15 -1920 ((-112) |#1| (-777))) (-15 -1623 ((-3 |#1| "failed") |#1| (-777))) (-15 -1623 ((-2 (|:| -4358 |#1|) (|:| -1907 (-777))) |#1|)) (-15 -3785 (|#1| |#1| (-777))) (-15 -3745 ((-112) |#1|)) (-15 -2877 ((-3 |#1| "failed") |#1|)) (-15 -4186 (|#1| |#1|))) (-551)) (T -593))
-((-4186 (*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-2877 (*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-3745 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-3785 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1623 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4358 *3) (|:| -1907 (-777)))) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-1623 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1920 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
-(-10 -7 (-15 -1920 ((-112) |#1| (-777))) (-15 -1623 ((-3 |#1| "failed") |#1| (-777))) (-15 -1623 ((-2 (|:| -4358 |#1|) (|:| -1907 (-777))) |#1|)) (-15 -3785 (|#1| |#1| (-777))) (-15 -3745 ((-112) |#1|)) (-15 -2877 ((-3 |#1| "failed") |#1|)) (-15 -4186 (|#1| |#1|)))
-((-4416 (((-1182 |#1|) (-928)) 44)))
-(((-594 |#1|) (-10 -7 (-15 -4416 ((-1182 |#1|) (-928)))) (-354)) (T -594))
-((-4416 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4)) (-4 *4 (-354)))))
-(-10 -7 (-15 -4416 ((-1182 |#1|) (-928))))
-((-2198 (((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|)))) 27)) (-3555 (((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186)) 34 (|has| |#1| (-148)))) (-1387 (((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|)))) 19)) (-3975 (((-320 |#1|) (-413 (-959 |#1|)) (-1186)) 32 (|has| |#1| (-148)))) (-3132 (((-320 |#1|) (-592 (-413 (-959 |#1|)))) 21)))
-(((-595 |#1|) (-10 -7 (-15 -2198 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1387 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -3132 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -3555 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3975 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-645 (-570)))) (T -595))
-((-3975 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *5)) (-5 *1 (-595 *5)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (-320 *5) (-650 (-320 *5)))) (-5 *1 (-595 *5)))) (-3132 (*1 *2 *3) (-12 (-5 *3 (-592 (-413 (-959 *4)))) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *4)) (-5 *1 (-595 *4)))) (-1387 (*1 *2 *3) (-12 (-5 *3 (-592 (-413 (-959 *4)))) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-650 (-320 *4))) (-5 *1 (-595 *4)))) (-2198 (*1 *2 *2) (-12 (-5 *2 (-592 (-413 (-959 *3)))) (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-595 *3)))))
-(-10 -7 (-15 -2198 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1387 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -3132 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -3555 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3975 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|))
-((-4237 (((-650 (-695 (-570))) (-650 (-570)) (-650 (-912 (-570)))) 78) (((-650 (-695 (-570))) (-650 (-570))) 79) (((-695 (-570)) (-650 (-570)) (-912 (-570))) 72)) (-1943 (((-777) (-650 (-570))) 69)))
-(((-596) (-10 -7 (-15 -1943 ((-777) (-650 (-570)))) (-15 -4237 ((-695 (-570)) (-650 (-570)) (-912 (-570)))) (-15 -4237 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -4237 ((-650 (-695 (-570))) (-650 (-570)) (-650 (-912 (-570))))))) (T -596))
-((-4237 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-570))) (-5 *4 (-650 (-912 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-4237 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-4237 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-570))) (-5 *4 (-912 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-596)))) (-1943 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-777)) (-5 *1 (-596)))))
-(-10 -7 (-15 -1943 ((-777) (-650 (-570)))) (-15 -4237 ((-695 (-570)) (-650 (-570)) (-912 (-570)))) (-15 -4237 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -4237 ((-650 (-695 (-570))) (-650 (-570)) (-650 (-912 (-570))))))
-((-2633 (((-650 |#5|) |#5| (-112)) 100)) (-1972 (((-112) |#5| (-650 |#5|)) 34)))
-(((-597 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2633 ((-650 |#5|) |#5| (-112))) (-15 -1972 ((-112) |#5| (-650 |#5|)))) (-13 (-311) (-148)) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -597))
-((-1972 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1118 *5 *6 *7 *8)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-597 *5 *6 *7 *8 *3)))) (-2633 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-650 *3)) (-5 *1 (-597 *5 *6 *7 *8 *3)) (-4 *3 (-1118 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2633 ((-650 |#5|) |#5| (-112))) (-15 -1972 ((-112) |#5| (-650 |#5|))))
-((-2416 (((-112) $ $) NIL)) (-2121 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-598) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))) (T -598))
-((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))))
-(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))
-((-2416 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-2229 (($ $) 38)) (-1575 (($ $) NIL)) (-1414 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-2496 (((-112) $ $) 68)) (-2478 (((-112) $ $ (-570)) 62)) (-2198 (((-650 $) $ (-145)) 76) (((-650 $) $ (-142)) 77)) (-4254 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-3239 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-856))))) (-3288 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 (((-145) $ (-570) (-145)) 59 (|has| $ (-6 -4449))) (((-145) $ (-1243 (-570)) (-145)) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-1643 (($ $ (-145)) 81) (($ $ (-142)) 82)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-1766 (($ $ (-1243 (-570)) $) 57)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-1702 (($ (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4448))) (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4448)))) (-3790 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4449)))) (-3712 (((-145) $ (-570)) NIL)) (-2514 (((-112) $ $) 90)) (-3998 (((-570) (-1 (-112) (-145)) $) NIL) (((-570) (-145) $) NIL (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 65 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 63) (((-570) (-142) $ (-570)) 67)) (-2836 (((-650 (-145)) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) (-145)) 9)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 32 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| (-145) (-856)))) (-3068 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-2849 (((-650 (-145)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-4329 (((-570) $) 47 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-145) (-856)))) (-4007 (((-112) $ $ (-145)) 91)) (-4121 (((-777) $ $ (-145)) 88)) (-3776 (($ (-1 (-145) (-145)) $) 37 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-2071 (($ $) 41)) (-3949 (($ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1653 (($ $ (-145)) 78) (($ $ (-142)) 79)) (-1903 (((-1168) $) 43 (|has| (-145) (-1109)))) (-4285 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) 27)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) 87 (|has| (-145) (-1109)))) (-3443 (((-145) $) NIL (|has| (-570) (-856)))) (-3321 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-1952 (($ $ (-145)) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-145)))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-4245 (((-650 (-145)) $) NIL)) (-3329 (((-112) $) 15)) (-3743 (($) 10)) (-1876 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) 69) (($ $ (-1243 (-570))) 25) (($ $ $) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-1806 (($ $ $ (-570)) 84 (|has| $ (-6 -4449)))) (-3915 (($ $) 20)) (-1416 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3748 (($ (-650 (-145))) NIL)) (-2439 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) 19) (($ (-650 $)) 85)) (-3735 (($ (-145)) NIL) (((-868) $) 31 (|has| (-145) (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-4368 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2872 (((-112) $ $) 17 (|has| (-145) (-1109)))) (-2913 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2894 (((-112) $ $) 18 (|has| (-145) (-856)))) (-2426 (((-777) $) 16 (|has| $ (-6 -4448)))))
+((-3970 (((-1282) (-1168)) 10)))
+(((-588) (-10 -7 (-15 -3970 ((-1282) (-1168))))) (T -588))
+((-3970 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-588)))))
+(-10 -7 (-15 -3970 ((-1282) (-1168))))
+((-4289 (((-592 |#2|) (-592 |#2|)) 42)) (-1388 (((-650 |#2|) (-592 |#2|)) 44)) (-2182 ((|#2| (-592 |#2|)) 50)))
+(((-589 |#1| |#2|) (-10 -7 (-15 -4289 ((-592 |#2|) (-592 |#2|))) (-15 -1388 ((-650 |#2|) (-592 |#2|))) (-15 -2182 (|#2| (-592 |#2|)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-29 |#1|) (-1212))) (T -589))
+((-2182 (*1 *2 *3) (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-29 *4) (-1212))) (-5 *1 (-589 *4 *2)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))))) (-1388 (*1 *2 *3) (-12 (-5 *3 (-592 *5)) (-4 *5 (-13 (-29 *4) (-1212))) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-650 *5)) (-5 *1 (-589 *4 *5)))) (-4289 (*1 *2 *2) (-12 (-5 *2 (-592 *4)) (-4 *4 (-13 (-29 *3) (-1212))) (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-589 *3 *4)))))
+(-10 -7 (-15 -4289 ((-592 |#2|) (-592 |#2|))) (-15 -1388 ((-650 |#2|) (-592 |#2|))) (-15 -2182 (|#2| (-592 |#2|))))
+((-1352 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|)) 30)))
+(((-590 |#1| |#2|) (-10 -7 (-15 -1352 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1352 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1352 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1352 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-368) (-368)) (T -590))
+((-1352 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-590 *5 *6)))) (-1352 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-368)) (-4 *2 (-368)) (-5 *1 (-590 *5 *2)))) (-1352 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -3585 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-2 (|:| -3585 *6) (|:| |coeff| *6))) (-5 *1 (-590 *5 *6)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-592 *5)) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-592 *6)) (-5 *1 (-590 *5 *6)))))
+(-10 -7 (-15 -1352 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1352 ((-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3585 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1352 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1352 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1466 (($ (-512) (-603)) 14)) (-2032 (($ (-512) (-603) $) 16)) (-3067 (($ (-512) (-603)) 15)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) 7) (((-1191) $) 6)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-591) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -1466 ($ (-512) (-603))) (-15 -3067 ($ (-512) (-603))) (-15 -2032 ($ (-512) (-603) $))))) (T -591))
+((-1466 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-3067 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-2032 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -1466 ($ (-512) (-603))) (-15 -3067 ($ (-512) (-603))) (-15 -2032 ($ (-512) (-603) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 76)) (-3080 ((|#1| $) NIL)) (-3585 ((|#1| $) 30)) (-3632 (((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 32)) (-2288 (($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 28)) (-3699 (((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $) 31)) (-4268 (((-1168) $) NIL)) (-3024 (($ |#1| |#1|) 38) (($ |#1| (-1186)) 49 (|has| |#1| (-1047 (-1186))))) (-3479 (((-1129) $) NIL)) (-1468 (((-112) $) 35)) (-3447 ((|#1| $ (-1 |#1| |#1|)) 88) ((|#1| $ (-1186)) 89 (|has| |#1| (-907 (-1186))))) (-3735 (((-868) $) 112) (($ |#1|) 29)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 18 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) 17) (($ $ $) NIL)) (-2953 (($ $ $) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 16) (($ (-413 (-570)) $) 41) (($ $ (-413 (-570))) NIL)))
+(((-592 |#1|) (-13 (-723 (-413 (-570))) (-1047 |#1|) (-10 -8 (-15 -2288 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3585 (|#1| $)) (-15 -3699 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -3632 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -1468 ((-112) $)) (-15 -3024 ($ |#1| |#1|)) (-15 -3447 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3447 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -3024 ($ |#1| (-1186))) |%noBranch|))) (-368)) (T -592))
+((-2288 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *2)) (|:| |logand| (-1182 *2))))) (-5 *4 (-650 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-368)) (-5 *1 (-592 *2)))) (-3585 (*1 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3699 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *3)) (|:| |logand| (-1182 *3))))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-3632 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-1468 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-3024 (*1 *1 *2 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3447 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3447 (*1 *2 *1 *3) (-12 (-4 *2 (-368)) (-4 *2 (-907 *3)) (-5 *1 (-592 *2)) (-5 *3 (-1186)))) (-3024 (*1 *1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *1 (-592 *2)) (-4 *2 (-1047 *3)) (-4 *2 (-368)))))
+(-13 (-723 (-413 (-570))) (-1047 |#1|) (-10 -8 (-15 -2288 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3585 (|#1| $)) (-15 -3699 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -3632 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -1468 ((-112) $)) (-15 -3024 ($ |#1| |#1|)) (-15 -3447 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3447 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -3024 ($ |#1| (-1186))) |%noBranch|)))
+((-3013 (((-112) |#1|) 16)) (-3503 (((-3 |#1| "failed") |#1|) 14)) (-3487 (((-2 (|:| -4360 |#1|) (|:| -3011 (-777))) |#1|) 39) (((-3 |#1| "failed") |#1| (-777)) 18)) (-3147 (((-112) |#1| (-777)) 19)) (-1907 ((|#1| |#1|) 43)) (-2204 ((|#1| |#1| (-777)) 46)))
+(((-593 |#1|) (-10 -7 (-15 -3147 ((-112) |#1| (-777))) (-15 -3487 ((-3 |#1| "failed") |#1| (-777))) (-15 -3487 ((-2 (|:| -4360 |#1|) (|:| -3011 (-777))) |#1|)) (-15 -2204 (|#1| |#1| (-777))) (-15 -3013 ((-112) |#1|)) (-15 -3503 ((-3 |#1| "failed") |#1|)) (-15 -1907 (|#1| |#1|))) (-551)) (T -593))
+((-1907 (*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-3503 (*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-3013 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-2204 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-3487 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4360 *3) (|:| -3011 (-777)))) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-3487 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-3147 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+(-10 -7 (-15 -3147 ((-112) |#1| (-777))) (-15 -3487 ((-3 |#1| "failed") |#1| (-777))) (-15 -3487 ((-2 (|:| -4360 |#1|) (|:| -3011 (-777))) |#1|)) (-15 -2204 (|#1| |#1| (-777))) (-15 -3013 ((-112) |#1|)) (-15 -3503 ((-3 |#1| "failed") |#1|)) (-15 -1907 (|#1| |#1|)))
+((-2225 (((-1182 |#1|) (-928)) 44)))
+(((-594 |#1|) (-10 -7 (-15 -2225 ((-1182 |#1|) (-928)))) (-354)) (T -594))
+((-2225 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4)) (-4 *4 (-354)))))
+(-10 -7 (-15 -2225 ((-1182 |#1|) (-928))))
+((-4289 (((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|)))) 27)) (-3722 (((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186)) 34 (|has| |#1| (-148)))) (-1388 (((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|)))) 19)) (-3454 (((-320 |#1|) (-413 (-959 |#1|)) (-1186)) 32 (|has| |#1| (-148)))) (-2182 (((-320 |#1|) (-592 (-413 (-959 |#1|)))) 21)))
+(((-595 |#1|) (-10 -7 (-15 -4289 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1388 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -2182 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -3722 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3454 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-645 (-570)))) (T -595))
+((-3454 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *5)) (-5 *1 (-595 *5)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (-320 *5) (-650 (-320 *5)))) (-5 *1 (-595 *5)))) (-2182 (*1 *2 *3) (-12 (-5 *3 (-592 (-413 (-959 *4)))) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *4)) (-5 *1 (-595 *4)))) (-1388 (*1 *2 *3) (-12 (-5 *3 (-592 (-413 (-959 *4)))) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-650 (-320 *4))) (-5 *1 (-595 *4)))) (-4289 (*1 *2 *2) (-12 (-5 *2 (-592 (-413 (-959 *3)))) (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-595 *3)))))
+(-10 -7 (-15 -4289 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1388 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -2182 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -3722 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3454 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|))
+((-4273 (((-650 (-695 (-570))) (-650 (-570)) (-650 (-912 (-570)))) 78) (((-650 (-695 (-570))) (-650 (-570))) 79) (((-695 (-570)) (-650 (-570)) (-912 (-570))) 72)) (-3416 (((-777) (-650 (-570))) 69)))
+(((-596) (-10 -7 (-15 -3416 ((-777) (-650 (-570)))) (-15 -4273 ((-695 (-570)) (-650 (-570)) (-912 (-570)))) (-15 -4273 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -4273 ((-650 (-695 (-570))) (-650 (-570)) (-650 (-912 (-570))))))) (T -596))
+((-4273 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-570))) (-5 *4 (-650 (-912 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-4273 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-4273 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-570))) (-5 *4 (-912 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-596)))) (-3416 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-777)) (-5 *1 (-596)))))
+(-10 -7 (-15 -3416 ((-777) (-650 (-570)))) (-15 -4273 ((-695 (-570)) (-650 (-570)) (-912 (-570)))) (-15 -4273 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -4273 ((-650 (-695 (-570))) (-650 (-570)) (-650 (-912 (-570))))))
+((-2963 (((-650 |#5|) |#5| (-112)) 100)) (-2501 (((-112) |#5| (-650 |#5|)) 34)))
+(((-597 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2963 ((-650 |#5|) |#5| (-112))) (-15 -2501 ((-112) |#5| (-650 |#5|)))) (-13 (-311) (-148)) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -597))
+((-2501 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1118 *5 *6 *7 *8)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-597 *5 *6 *7 *8 *3)))) (-2963 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-650 *3)) (-5 *1 (-597 *5 *6 *7 *8 *3)) (-4 *3 (-1118 *5 *6 *7 *8)))))
+(-10 -7 (-15 -2963 ((-650 |#5|) |#5| (-112))) (-15 -2501 ((-112) |#5| (-650 |#5|))))
+((-2417 (((-112) $ $) NIL)) (-2123 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-598) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))) (T -598))
+((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))))
+(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))
+((-2417 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-3333 (($ $) 38)) (-2986 (($ $) NIL)) (-4392 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-2496 (((-112) $ $) 68)) (-2478 (((-112) $ $ (-570)) 62)) (-4289 (((-650 $) $ (-145)) 76) (((-650 $) $ (-142)) 77)) (-4429 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-3885 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-145) (-856))))) (-3287 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 (((-145) $ (-570) (-145)) 59 (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-1644 (($ $ (-145)) 81) (($ $ (-142)) 82)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-2356 (($ $ (-1244 (-570)) $) 57)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1703 (($ (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4449))) (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3789 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4450)))) (-3713 (((-145) $ (-570)) NIL)) (-2514 (((-112) $ $) 90)) (-3998 (((-570) (-1 (-112) (-145)) $) NIL) (((-570) (-145) $) NIL (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 65 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 63) (((-570) (-142) $ (-570)) 67)) (-2835 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) (-145)) 9)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 32 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| (-145) (-856)))) (-2727 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-3201 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-2596 (((-570) $) 47 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-145) (-856)))) (-4008 (((-112) $ $ (-145)) 91)) (-4121 (((-777) $ $ (-145)) 88)) (-3776 (($ (-1 (-145) (-145)) $) 37 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-2318 (($ $) 41)) (-3145 (($ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-1651 (($ $ (-145)) 78) (($ $ (-142)) 79)) (-4268 (((-1168) $) 43 (|has| (-145) (-1109)))) (-4286 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) 27)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) 87 (|has| (-145) (-1109)))) (-3443 (((-145) $) NIL (|has| (-570) (-856)))) (-3281 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-3531 (($ $ (-145)) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-145)))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-4348 (((-650 (-145)) $) NIL)) (-3366 (((-112) $) 15)) (-3006 (($) 10)) (-1877 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) 69) (($ $ (-1244 (-570))) 25) (($ $ $) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1523 (($ $ $ (-570)) 84 (|has| $ (-6 -4450)))) (-3916 (($ $) 20)) (-1417 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3749 (($ (-650 (-145))) NIL)) (-2439 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) 19) (($ (-650 $)) 85)) (-3735 (($ (-145)) NIL) (((-868) $) 31 (|has| (-145) (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-2964 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2872 (((-112) $ $) 17 (|has| (-145) (-1109)))) (-2914 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2894 (((-112) $ $) 18 (|has| (-145) (-856)))) (-2426 (((-777) $) 16 (|has| $ (-6 -4449)))))
(((-599 |#1|) (-1153) (-570)) (T -599))
NIL
(-1153)
@@ -2425,1276 +2425,1276 @@ NIL
(((-600 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3202 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|))) (-15 -3202 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|)) (T -600))
((-3202 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-562)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-570)))) (-5 *1 (-600 *5 *4 *6 *3)) (-4 *3 (-956 *6 *5 *4)))) (-3202 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1103 *3)) (-4 *3 (-956 *7 *6 *4)) (-4 *6 (-799)) (-4 *4 (-856)) (-4 *7 (-562)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-570)))) (-5 *1 (-600 *6 *4 *7 *3)))))
(-10 -7 (-15 -3202 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|))) (-15 -3202 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 72)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-570)) 58) (($ $ (-570) (-570)) 59)) (-2230 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 65)) (-2288 (($ $) 110)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4278 (((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570))) 243)) (-3254 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 36)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-4232 (((-112) $) NIL)) (-3157 (((-570) $) 63) (((-570) $ (-570)) 64)) (-2081 (((-112) $) NIL)) (-3553 (($ $ (-928)) 84)) (-3260 (($ (-1 |#1| (-570)) $) 81)) (-1550 (((-112) $) 26)) (-3872 (($ |#1| (-570)) 22) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) 76)) (-3630 (($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 13)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3555 (($ $) 163 (|has| |#1| (-38 (-413 (-570)))))) (-1946 (((-3 $ "failed") $ $ (-112)) 109)) (-1431 (($ $ $) 117)) (-3479 (((-1129) $) NIL)) (-3407 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 15)) (-1634 (((-1035 (-849 (-570))) $) 14)) (-1558 (($ $ (-570)) 47)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-1876 ((|#1| $ (-570)) 62) (($ $ $) NIL (|has| (-570) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) 78 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-1601 (((-570) $) NIL)) (-3049 (($ $) 48)) (-3735 (((-868) $) NIL) (($ (-570)) 29) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 28 (|has| |#1| (-174)))) (-1715 ((|#1| $ (-570)) 61)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) 39 T CONST)) (-2177 ((|#1| $) NIL)) (-1349 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2335 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2688 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2725 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-3076 (($ $) 203 (|has| |#1| (-38 (-413 (-570)))))) (-2300 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3164 (($ $ (-413 (-570))) 179 (|has| |#1| (-38 (-413 (-570)))))) (-1777 (($ $ |#1|) 159 (|has| |#1| (-38 (-413 (-570)))))) (-1979 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-1413 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-3825 (($ $) 205 (|has| |#1| (-38 (-413 (-570)))))) (-2690 (($ $) 177 (|has| |#1| (-38 (-413 (-570)))))) (-2953 (($ $) 201 (|has| |#1| (-38 (-413 (-570)))))) (-2726 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2601 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-4188 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-2106 (($ $) 211 (|has| |#1| (-38 (-413 (-570)))))) (-2882 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-3245 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-3622 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-2811 (($ $) 215 (|has| |#1| (-38 (-413 (-570)))))) (-1343 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2056 (($ $) 217 (|has| |#1| (-38 (-413 (-570)))))) (-1691 (($ $) 193 (|has| |#1| (-38 (-413 (-570)))))) (-1663 (($ $) 213 (|has| |#1| (-38 (-413 (-570)))))) (-4103 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-2649 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-4115 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-3026 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1812 (($) 30 T CONST)) (-1823 (($) 40 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-2872 (((-112) $ $) 74)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) 92) (($ $ $) 73)) (-2954 (($ $ $) 89)) (** (($ $ (-928)) NIL) (($ $ (-777)) 112)) (* (($ (-928) $) 99) (($ (-777) $) 97) (($ (-570) $) 94) (($ $ $) 105) (($ $ |#1|) NIL) (($ |#1| $) 124) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-601 |#1|) (-13 (-1254 |#1| (-570)) (-10 -8 (-15 -3630 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -1634 ((-1035 (-849 (-570))) $)) (-15 -3407 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3254 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -1550 ((-112) $)) (-15 -3260 ($ (-1 |#1| (-570)) $)) (-15 -1946 ((-3 $ "failed") $ $ (-112))) (-15 -2288 ($ $)) (-15 -1431 ($ $ $)) (-15 -4278 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $)) (-15 -1777 ($ $ |#1|)) (-15 -3164 ($ $ (-413 (-570)))) (-15 -1413 ($ $)) (-15 -1979 ($ $)) (-15 -2725 ($ $)) (-15 -4188 ($ $)) (-15 -2335 ($ $)) (-15 -2726 ($ $)) (-15 -2300 ($ $)) (-15 -2690 ($ $)) (-15 -3622 ($ $)) (-15 -4115 ($ $)) (-15 -2882 ($ $)) (-15 -4103 ($ $)) (-15 -1343 ($ $)) (-15 -1691 ($ $)) (-15 -2688 ($ $)) (-15 -2601 ($ $)) (-15 -1349 ($ $)) (-15 -2953 ($ $)) (-15 -3076 ($ $)) (-15 -3825 ($ $)) (-15 -3245 ($ $)) (-15 -2649 ($ $)) (-15 -2106 ($ $)) (-15 -1663 ($ $)) (-15 -2811 ($ $)) (-15 -2056 ($ $))) |%noBranch|))) (-1058)) (T -601))
-((-1550 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3630 (*1 *1 *2 *3) (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *4)))) (-4 *4 (-1058)) (-5 *1 (-601 *4)))) (-1634 (*1 *2 *1) (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3407 (*1 *2 *1) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3254 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-3260 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-1946 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-2288 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-1431 (*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-4278 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *6)))) (-5 *4 (-1035 (-849 (-570)))) (-5 *5 (-1186)) (-5 *7 (-413 (-570))) (-4 *6 (-1058)) (-5 *2 (-868)) (-5 *1 (-601 *6)))) (-3555 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1777 (*1 *1 *1 *2) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1058)))) (-1413 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1979 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2725 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4188 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2335 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2726 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2300 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2690 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3622 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4115 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2882 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4103 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1343 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1691 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2688 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2601 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1349 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2953 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3076 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3825 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3245 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2649 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2106 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1663 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2811 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2056 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(-13 (-1254 |#1| (-570)) (-10 -8 (-15 -3630 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -1634 ((-1035 (-849 (-570))) $)) (-15 -3407 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3254 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -1550 ((-112) $)) (-15 -3260 ($ (-1 |#1| (-570)) $)) (-15 -1946 ((-3 $ "failed") $ $ (-112))) (-15 -2288 ($ $)) (-15 -1431 ($ $ $)) (-15 -4278 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $)) (-15 -1777 ($ $ |#1|)) (-15 -3164 ($ $ (-413 (-570)))) (-15 -1413 ($ $)) (-15 -1979 ($ $)) (-15 -2725 ($ $)) (-15 -4188 ($ $)) (-15 -2335 ($ $)) (-15 -2726 ($ $)) (-15 -2300 ($ $)) (-15 -2690 ($ $)) (-15 -3622 ($ $)) (-15 -4115 ($ $)) (-15 -2882 ($ $)) (-15 -4103 ($ $)) (-15 -1343 ($ $)) (-15 -1691 ($ $)) (-15 -2688 ($ $)) (-15 -2601 ($ $)) (-15 -1349 ($ $)) (-15 -2953 ($ $)) (-15 -3076 ($ $)) (-15 -3825 ($ $)) (-15 -3245 ($ $)) (-15 -2649 ($ $)) (-15 -2106 ($ $)) (-15 -1663 ($ $)) (-15 -2811 ($ $)) (-15 -2056 ($ $))) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 65)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3254 (($ (-1166 |#1|)) 9)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) 48)) (-4232 (((-112) $) 58)) (-3157 (((-777) $) 63) (((-777) $ (-777)) 62)) (-2081 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ $) 50 (|has| |#1| (-562)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-1166 |#1|) $) 29)) (-2744 (((-777)) 57 T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) 10 T CONST)) (-1823 (($) 14 T CONST)) (-2872 (((-112) $ $) 28)) (-2965 (($ $) 36) (($ $ $) 16)) (-2954 (($ $ $) 31)) (** (($ $ (-928)) NIL) (($ $ (-777)) 55)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 40) (($ $ $) 34) (($ $ |#1|) 44) (($ |#1| $) 43) (($ $ (-570)) 42)))
-(((-602 |#1|) (-13 (-1058) (-111 |#1| |#1|) (-10 -8 (-15 -3009 ((-1166 |#1|) $)) (-15 -3254 ($ (-1166 |#1|))) (-15 -4232 ((-112) $)) (-15 -3157 ((-777) $)) (-15 -3157 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|))) (-1058)) (T -602))
-((-3009 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3254 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-602 *3)))) (-4232 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3157 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3157 (*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))))
-(-13 (-1058) (-111 |#1| |#1|) (-10 -8 (-15 -3009 ((-1166 |#1|) $)) (-15 -3254 ($ (-1166 |#1|))) (-15 -4232 ((-112) $)) (-15 -3157 ((-777) $)) (-15 -3157 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-2090 (($) 8 T CONST)) (-2842 (($) 7 T CONST)) (-3423 (($ $ (-650 $)) 16)) (-1903 (((-1168) $) NIL)) (-2619 (($) 6 T CONST)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) 15) (((-1191) $) 10)) (-3258 (($) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-603) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2619 ($) -3640) (-15 -2842 ($) -3640) (-15 -2090 ($) -3640) (-15 -3258 ($) -3640) (-15 -3423 ($ $ (-650 $)))))) (T -603))
-((-2619 (*1 *1) (-5 *1 (-603))) (-2842 (*1 *1) (-5 *1 (-603))) (-2090 (*1 *1) (-5 *1 (-603))) (-3258 (*1 *1) (-5 *1 (-603))) (-3423 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
-(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2619 ($) -3640) (-15 -2842 ($) -3640) (-15 -2090 ($) -3640) (-15 -3258 ($) -3640) (-15 -3423 ($ $ (-650 $)))))
-((-1351 (((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)) 15)))
-(((-604 |#1| |#2|) (-10 -7 (-15 -1351 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)))) (-1226) (-1226)) (T -604))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-607 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-607 *6)) (-5 *1 (-604 *5 *6)))))
-(-10 -7 (-15 -1351 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|))))
-((-1351 (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|)) 20) (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|)) 19) (((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|)) 18)))
-(((-605 |#1| |#2| |#3|) (-10 -7 (-15 -1351 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1351 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1351 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|)))) (-1226) (-1226) (-1226)) (T -605))
-((-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-607 *6)) (-5 *5 (-1166 *7)) (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-1166 *8)) (-5 *1 (-605 *6 *7 *8)))) (-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1166 *6)) (-5 *5 (-607 *7)) (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-1166 *8)) (-5 *1 (-605 *6 *7 *8)))) (-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-607 *6)) (-5 *5 (-607 *7)) (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-607 *8)) (-5 *1 (-605 *6 *7 *8)))))
-(-10 -7 (-15 -1351 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1351 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1351 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|))))
-((-3549 ((|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))) 57)) (-3994 (((-171 |#2|) |#3|) 121)) (-4243 ((|#3| (-171 |#2|)) 46)) (-1614 ((|#2| |#3|) 21)) (-4137 ((|#3| |#2|) 35)))
-(((-606 |#1| |#2| |#3|) (-10 -7 (-15 -4243 (|#3| (-171 |#2|))) (-15 -1614 (|#2| |#3|)) (-15 -4137 (|#3| |#2|)) (-15 -3994 ((-171 |#2|) |#3|)) (-15 -3549 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))))) (-562) (-13 (-436 |#1|) (-1011) (-1211)) (-13 (-436 (-171 |#1|)) (-1011) (-1211))) (T -606))
-((-3549 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-650 (-1186))) (-4 *2 (-13 (-436 (-171 *5)) (-1011) (-1211))) (-4 *5 (-562)) (-5 *1 (-606 *5 *6 *2)) (-4 *6 (-13 (-436 *5) (-1011) (-1211))))) (-3994 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-171 *5)) (-5 *1 (-606 *4 *5 *3)) (-4 *5 (-13 (-436 *4) (-1011) (-1211))) (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1211))))) (-4137 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1211))) (-5 *1 (-606 *4 *3 *2)) (-4 *3 (-13 (-436 *4) (-1011) (-1211))))) (-1614 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 *4) (-1011) (-1211))) (-5 *1 (-606 *4 *2 *3)) (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1211))))) (-4243 (*1 *2 *3) (-12 (-5 *3 (-171 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1211))) (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1211))) (-5 *1 (-606 *4 *5 *2)))))
-(-10 -7 (-15 -4243 (|#3| (-171 |#2|))) (-15 -1614 (|#2| |#3|)) (-15 -4137 (|#3| |#2|)) (-15 -3994 ((-171 |#2|) |#3|)) (-15 -3549 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186)))))
-((-1424 (($ (-1 (-112) |#1|) $) 17)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-1346 (($ (-1 |#1| |#1|) |#1|) 9)) (-1399 (($ (-1 (-112) |#1|) $) 13)) (-1410 (($ (-1 (-112) |#1|) $) 15)) (-3748 (((-1166 |#1|) $) 18)) (-3735 (((-868) $) NIL)))
-(((-607 |#1|) (-13 (-619 (-868)) (-10 -8 (-15 -1351 ($ (-1 |#1| |#1|) $)) (-15 -1399 ($ (-1 (-112) |#1|) $)) (-15 -1410 ($ (-1 (-112) |#1|) $)) (-15 -1424 ($ (-1 (-112) |#1|) $)) (-15 -1346 ($ (-1 |#1| |#1|) |#1|)) (-15 -3748 ((-1166 |#1|) $)))) (-1226)) (T -607))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3)))) (-1399 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3)))) (-1410 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3)))) (-1424 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3)))) (-1346 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3)))) (-3748 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-607 *3)) (-4 *3 (-1226)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -1351 ($ (-1 |#1| |#1|) $)) (-15 -1399 ($ (-1 (-112) |#1|) $)) (-15 -1410 ($ (-1 (-112) |#1|) $)) (-15 -1424 ($ (-1 (-112) |#1|) $)) (-15 -1346 ($ (-1 |#1| |#1|) |#1|)) (-15 -3748 ((-1166 |#1|) $))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777)) NIL (|has| |#1| (-23)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-1374 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2645 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3452 (((-112) $ (-777)) NIL)) (-3788 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-2809 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-2319 (($ $ $) NIL (|has| |#1| (-1058)))) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) NIL)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2954 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-608 |#1| |#2|) (-1274 |#1|) (-1226) (-570)) (T -608))
-NIL
-(-1274 |#1|)
-((-3225 (((-1281) $ |#2| |#2|) 35)) (-2790 ((|#2| $) 23)) (-4329 ((|#2| $) 21)) (-3776 (($ (-1 |#3| |#3|) $) 32)) (-1351 (($ (-1 |#3| |#3|) $) 30)) (-3443 ((|#3| $) 26)) (-1952 (($ $ |#3|) 33)) (-3262 (((-112) |#3| $) 17)) (-4245 (((-650 |#3|) $) 15)) (-1876 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-609 |#1| |#2| |#3|) (-10 -8 (-15 -3225 ((-1281) |#1| |#2| |#2|)) (-15 -1952 (|#1| |#1| |#3|)) (-15 -3443 (|#3| |#1|)) (-15 -2790 (|#2| |#1|)) (-15 -4329 (|#2| |#1|)) (-15 -3262 ((-112) |#3| |#1|)) (-15 -4245 ((-650 |#3|) |#1|)) (-15 -1876 (|#3| |#1| |#2|)) (-15 -1876 (|#3| |#1| |#2| |#3|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1351 (|#1| (-1 |#3| |#3|) |#1|))) (-610 |#2| |#3|) (-1109) (-1226)) (T -609))
-NIL
-(-10 -8 (-15 -3225 ((-1281) |#1| |#2| |#2|)) (-15 -1952 (|#1| |#1| |#3|)) (-15 -3443 (|#3| |#1|)) (-15 -2790 (|#2| |#1|)) (-15 -4329 (|#2| |#1|)) (-15 -3262 ((-112) |#3| |#1|)) (-15 -4245 ((-650 |#3|) |#1|)) (-15 -1876 (|#3| |#1| |#2|)) (-15 -1876 (|#3| |#1| |#2| |#3|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1351 (|#1| (-1 |#3| |#3|) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-3225 (((-1281) $ |#1| |#1|) 41 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4449)))) (-2450 (($) 7 T CONST)) (-3790 ((|#2| $ |#1| |#2|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) 52)) (-2836 (((-650 |#2|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2790 ((|#1| $) 44 (|has| |#1| (-856)))) (-2849 (((-650 |#2|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-4329 ((|#1| $) 45 (|has| |#1| (-856)))) (-3776 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#2| (-1109)))) (-2344 (((-650 |#1|) $) 47)) (-1354 (((-112) |#1| $) 48)) (-3479 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3443 ((|#2| $) 43 (|has| |#1| (-856)))) (-1952 (($ $ |#2|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) 27 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 26 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 24 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#2| $ |#1| |#2|) 51) ((|#2| $ |#1|) 50)) (-3486 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4448))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-4368 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-610 |#1| |#2|) (-141) (-1109) (-1226)) (T -610))
-((-4245 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226)) (-5 *2 (-650 *4)))) (-1354 (*1 *2 *3 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226)) (-5 *2 (-112)))) (-2344 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226)) (-5 *2 (-650 *3)))) (-3262 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-610 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-4329 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1226)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-2790 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1226)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3443 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *3 (-856)) (-4 *2 (-1226)))) (-1952 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226)))) (-3225 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226)) (-5 *2 (-1281)))))
-(-13 (-495 |t#2|) (-292 |t#1| |t#2|) (-10 -8 (-15 -4245 ((-650 |t#2|) $)) (-15 -1354 ((-112) |t#1| $)) (-15 -2344 ((-650 |t#1|) $)) (IF (|has| |t#2| (-1109)) (IF (|has| $ (-6 -4448)) (-15 -3262 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -4329 (|t#1| $)) (-15 -2790 (|t#1| $)) (-15 -3443 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4449)) (PROGN (-15 -1952 ($ $ |t#2|)) (-15 -3225 ((-1281) $ |t#1| |t#1|))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#2| (-1109)) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868)))) ((-290 |#1| |#2|) . T) ((-292 |#1| |#2|) . T) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-495 |#2|) . T) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-1109) |has| |#2| (-1109)) ((-1226) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 72)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-570)) 58) (($ $ (-570) (-570)) 59)) (-3345 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 65)) (-2689 (($ $) 110)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3386 (((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570))) 243)) (-3253 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 36)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-4217 (((-112) $) NIL)) (-4331 (((-570) $) 63) (((-570) $ (-570)) 64)) (-4340 (((-112) $) NIL)) (-1876 (($ $ (-928)) 84)) (-4059 (($ (-1 |#1| (-570)) $) 81)) (-4016 (((-112) $) 26)) (-3872 (($ |#1| (-570)) 22) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) 76)) (-3173 (($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 13)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3722 (($ $) 163 (|has| |#1| (-38 (-413 (-570)))))) (-3457 (((-3 $ "failed") $ $ (-112)) 109)) (-1429 (($ $ $) 117)) (-3479 (((-1129) $) NIL)) (-2884 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 15)) (-2374 (((-1035 (-849 (-570))) $) 14)) (-4102 (($ $ (-570)) 47)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-1877 ((|#1| $ (-570)) 62) (($ $ $) NIL (|has| (-570) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) 78 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-3221 (((-570) $) NIL)) (-2540 (($ $) 48)) (-3735 (((-868) $) NIL) (($ (-570)) 29) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 28 (|has| |#1| (-174)))) (-1983 ((|#1| $ (-570)) 61)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) 39 T CONST)) (-2178 ((|#1| $) NIL)) (-1974 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2043 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2271 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-1423 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-2800 (($ $) 203 (|has| |#1| (-38 (-413 (-570)))))) (-2815 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-4396 (($ $ (-413 (-570))) 179 (|has| |#1| (-38 (-413 (-570)))))) (-4377 (($ $ |#1|) 159 (|has| |#1| (-38 (-413 (-570)))))) (-2572 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-4380 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-1346 (($ $) 205 (|has| |#1| (-38 (-413 (-570)))))) (-2291 (($ $) 177 (|has| |#1| (-38 (-413 (-570)))))) (-4168 (($ $) 201 (|has| |#1| (-38 (-413 (-570)))))) (-1438 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2684 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-1925 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-1494 (($ $) 211 (|has| |#1| (-38 (-413 (-570)))))) (-3551 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-3942 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-3083 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-4106 (($ $) 215 (|has| |#1| (-38 (-413 (-570)))))) (-1937 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2183 (($ $) 217 (|has| |#1| (-38 (-413 (-570)))))) (-2895 (($ $) 193 (|has| |#1| (-38 (-413 (-570)))))) (-2618 (($ $) 213 (|has| |#1| (-38 (-413 (-570)))))) (-2325 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-1954 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2402 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-3026 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1814 (($) 30 T CONST)) (-1824 (($) 40 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-2872 (((-112) $ $) 74)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) 92) (($ $ $) 73)) (-2953 (($ $ $) 89)) (** (($ $ (-928)) NIL) (($ $ (-777)) 112)) (* (($ (-928) $) 99) (($ (-777) $) 97) (($ (-570) $) 94) (($ $ $) 105) (($ $ |#1|) NIL) (($ |#1| $) 124) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-601 |#1|) (-13 (-1255 |#1| (-570)) (-10 -8 (-15 -3173 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -2374 ((-1035 (-849 (-570))) $)) (-15 -2884 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3253 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -4016 ((-112) $)) (-15 -4059 ($ (-1 |#1| (-570)) $)) (-15 -3457 ((-3 $ "failed") $ $ (-112))) (-15 -2689 ($ $)) (-15 -1429 ($ $ $)) (-15 -3386 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $)) (-15 -4377 ($ $ |#1|)) (-15 -4396 ($ $ (-413 (-570)))) (-15 -4380 ($ $)) (-15 -2572 ($ $)) (-15 -1423 ($ $)) (-15 -1925 ($ $)) (-15 -2043 ($ $)) (-15 -1438 ($ $)) (-15 -2815 ($ $)) (-15 -2291 ($ $)) (-15 -3083 ($ $)) (-15 -2402 ($ $)) (-15 -3551 ($ $)) (-15 -2325 ($ $)) (-15 -1937 ($ $)) (-15 -2895 ($ $)) (-15 -2271 ($ $)) (-15 -2684 ($ $)) (-15 -1974 ($ $)) (-15 -4168 ($ $)) (-15 -2800 ($ $)) (-15 -1346 ($ $)) (-15 -3942 ($ $)) (-15 -1954 ($ $)) (-15 -1494 ($ $)) (-15 -2618 ($ $)) (-15 -4106 ($ $)) (-15 -2183 ($ $))) |%noBranch|))) (-1058)) (T -601))
+((-4016 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3173 (*1 *1 *2 *3) (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *4)))) (-4 *4 (-1058)) (-5 *1 (-601 *4)))) (-2374 (*1 *2 *1) (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-2884 (*1 *2 *1) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3253 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-4059 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-3457 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-2689 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-1429 (*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-3386 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *6)))) (-5 *4 (-1035 (-849 (-570)))) (-5 *5 (-1186)) (-5 *7 (-413 (-570))) (-4 *6 (-1058)) (-5 *2 (-868)) (-5 *1 (-601 *6)))) (-3722 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4377 (*1 *1 *1 *2) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4396 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1058)))) (-4380 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2572 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1423 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1925 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2043 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1438 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2815 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2291 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3083 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2402 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3551 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2325 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1937 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2895 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2271 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2684 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1974 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4168 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2800 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1346 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3942 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1954 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1494 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2618 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4106 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2183 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(-13 (-1255 |#1| (-570)) (-10 -8 (-15 -3173 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -2374 ((-1035 (-849 (-570))) $)) (-15 -2884 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3253 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -4016 ((-112) $)) (-15 -4059 ($ (-1 |#1| (-570)) $)) (-15 -3457 ((-3 $ "failed") $ $ (-112))) (-15 -2689 ($ $)) (-15 -1429 ($ $ $)) (-15 -3386 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $)) (-15 -4377 ($ $ |#1|)) (-15 -4396 ($ $ (-413 (-570)))) (-15 -4380 ($ $)) (-15 -2572 ($ $)) (-15 -1423 ($ $)) (-15 -1925 ($ $)) (-15 -2043 ($ $)) (-15 -1438 ($ $)) (-15 -2815 ($ $)) (-15 -2291 ($ $)) (-15 -3083 ($ $)) (-15 -2402 ($ $)) (-15 -3551 ($ $)) (-15 -2325 ($ $)) (-15 -1937 ($ $)) (-15 -2895 ($ $)) (-15 -2271 ($ $)) (-15 -2684 ($ $)) (-15 -1974 ($ $)) (-15 -4168 ($ $)) (-15 -2800 ($ $)) (-15 -1346 ($ $)) (-15 -3942 ($ $)) (-15 -1954 ($ $)) (-15 -1494 ($ $)) (-15 -2618 ($ $)) (-15 -4106 ($ $)) (-15 -2183 ($ $))) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 65)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3253 (($ (-1166 |#1|)) 9)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) 48)) (-4217 (((-112) $) 58)) (-4331 (((-777) $) 63) (((-777) $ (-777)) 62)) (-4340 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ $) 50 (|has| |#1| (-562)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-1166 |#1|) $) 29)) (-1609 (((-777)) 57 T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) 10 T CONST)) (-1824 (($) 14 T CONST)) (-2872 (((-112) $ $) 28)) (-2965 (($ $) 36) (($ $ $) 16)) (-2953 (($ $ $) 31)) (** (($ $ (-928)) NIL) (($ $ (-777)) 55)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 40) (($ $ $) 34) (($ $ |#1|) 44) (($ |#1| $) 43) (($ $ (-570)) 42)))
+(((-602 |#1|) (-13 (-1058) (-111 |#1| |#1|) (-10 -8 (-15 -3405 ((-1166 |#1|) $)) (-15 -3253 ($ (-1166 |#1|))) (-15 -4217 ((-112) $)) (-15 -4331 ((-777) $)) (-15 -4331 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|))) (-1058)) (T -602))
+((-3405 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3253 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-602 *3)))) (-4217 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-4331 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-4331 (*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))))
+(-13 (-1058) (-111 |#1| |#1|) (-10 -8 (-15 -3405 ((-1166 |#1|) $)) (-15 -3253 ($ (-1166 |#1|))) (-15 -4217 ((-112) $)) (-15 -4331 ((-777) $)) (-15 -4331 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-1311 (($) 8 T CONST)) (-3124 (($) 7 T CONST)) (-1905 (($ $ (-650 $)) 16)) (-4268 (((-1168) $) NIL)) (-2848 (($) 6 T CONST)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) 15) (((-1191) $) 10)) (-4038 (($) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-603) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2848 ($) -3640) (-15 -3124 ($) -3640) (-15 -1311 ($) -3640) (-15 -4038 ($) -3640) (-15 -1905 ($ $ (-650 $)))))) (T -603))
+((-2848 (*1 *1) (-5 *1 (-603))) (-3124 (*1 *1) (-5 *1 (-603))) (-1311 (*1 *1) (-5 *1 (-603))) (-4038 (*1 *1) (-5 *1 (-603))) (-1905 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
+(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2848 ($) -3640) (-15 -3124 ($) -3640) (-15 -1311 ($) -3640) (-15 -4038 ($) -3640) (-15 -1905 ($ $ (-650 $)))))
+((-1352 (((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)) 15)))
+(((-604 |#1| |#2|) (-10 -7 (-15 -1352 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)))) (-1227) (-1227)) (T -604))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-607 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-607 *6)) (-5 *1 (-604 *5 *6)))))
+(-10 -7 (-15 -1352 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|))))
+((-1352 (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|)) 20) (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|)) 19) (((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|)) 18)))
+(((-605 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1352 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1352 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|)))) (-1227) (-1227) (-1227)) (T -605))
+((-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-607 *6)) (-5 *5 (-1166 *7)) (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-1166 *8)) (-5 *1 (-605 *6 *7 *8)))) (-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1166 *6)) (-5 *5 (-607 *7)) (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-1166 *8)) (-5 *1 (-605 *6 *7 *8)))) (-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-607 *6)) (-5 *5 (-607 *7)) (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-607 *8)) (-5 *1 (-605 *6 *7 *8)))))
+(-10 -7 (-15 -1352 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1352 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1352 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|))))
+((-1834 ((|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))) 57)) (-3662 (((-171 |#2|) |#3|) 121)) (-4328 ((|#3| (-171 |#2|)) 46)) (-3376 ((|#2| |#3|) 21)) (-1418 ((|#3| |#2|) 35)))
+(((-606 |#1| |#2| |#3|) (-10 -7 (-15 -4328 (|#3| (-171 |#2|))) (-15 -3376 (|#2| |#3|)) (-15 -1418 (|#3| |#2|)) (-15 -3662 ((-171 |#2|) |#3|)) (-15 -1834 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))))) (-562) (-13 (-436 |#1|) (-1011) (-1212)) (-13 (-436 (-171 |#1|)) (-1011) (-1212))) (T -606))
+((-1834 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-650 (-1186))) (-4 *2 (-13 (-436 (-171 *5)) (-1011) (-1212))) (-4 *5 (-562)) (-5 *1 (-606 *5 *6 *2)) (-4 *6 (-13 (-436 *5) (-1011) (-1212))))) (-3662 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-171 *5)) (-5 *1 (-606 *4 *5 *3)) (-4 *5 (-13 (-436 *4) (-1011) (-1212))) (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1212))))) (-1418 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1212))) (-5 *1 (-606 *4 *3 *2)) (-4 *3 (-13 (-436 *4) (-1011) (-1212))))) (-3376 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))) (-5 *1 (-606 *4 *2 *3)) (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1212))))) (-4328 (*1 *2 *3) (-12 (-5 *3 (-171 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1212))) (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1212))) (-5 *1 (-606 *4 *5 *2)))))
+(-10 -7 (-15 -4328 (|#3| (-171 |#2|))) (-15 -3376 (|#2| |#3|)) (-15 -1418 (|#3| |#2|)) (-15 -3662 ((-171 |#2|) |#3|)) (-15 -1834 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186)))))
+((-1425 (($ (-1 (-112) |#1|) $) 17)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1347 (($ (-1 |#1| |#1|) |#1|) 9)) (-1400 (($ (-1 (-112) |#1|) $) 13)) (-1411 (($ (-1 (-112) |#1|) $) 15)) (-3749 (((-1166 |#1|) $) 18)) (-3735 (((-868) $) NIL)))
+(((-607 |#1|) (-13 (-619 (-868)) (-10 -8 (-15 -1352 ($ (-1 |#1| |#1|) $)) (-15 -1400 ($ (-1 (-112) |#1|) $)) (-15 -1411 ($ (-1 (-112) |#1|) $)) (-15 -1425 ($ (-1 (-112) |#1|) $)) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -3749 ((-1166 |#1|) $)))) (-1227)) (T -607))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1400 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1411 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1425 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1347 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-3749 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-607 *3)) (-4 *3 (-1227)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -1352 ($ (-1 |#1| |#1|) $)) (-15 -1400 ($ (-1 (-112) |#1|) $)) (-15 -1411 ($ (-1 (-112) |#1|) $)) (-15 -1425 ($ (-1 (-112) |#1|) $)) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -3749 ((-1166 |#1|) $))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777)) NIL (|has| |#1| (-23)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1375 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1935 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-2113 (((-112) $ (-777)) NIL)) (-3788 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4082 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3000 (($ $ $) NIL (|has| |#1| (-1058)))) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) NIL)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2953 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-608 |#1| |#2|) (-1275 |#1|) (-1227) (-570)) (T -608))
+NIL
+(-1275 |#1|)
+((-3727 (((-1282) $ |#2| |#2|) 35)) (-3888 ((|#2| $) 23)) (-2596 ((|#2| $) 21)) (-3776 (($ (-1 |#3| |#3|) $) 32)) (-1352 (($ (-1 |#3| |#3|) $) 30)) (-3443 ((|#3| $) 26)) (-3531 (($ $ |#3|) 33)) (-4068 (((-112) |#3| $) 17)) (-4348 (((-650 |#3|) $) 15)) (-1877 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-609 |#1| |#2| |#3|) (-10 -8 (-15 -3727 ((-1282) |#1| |#2| |#2|)) (-15 -3531 (|#1| |#1| |#3|)) (-15 -3443 (|#3| |#1|)) (-15 -3888 (|#2| |#1|)) (-15 -2596 (|#2| |#1|)) (-15 -4068 ((-112) |#3| |#1|)) (-15 -4348 ((-650 |#3|) |#1|)) (-15 -1877 (|#3| |#1| |#2|)) (-15 -1877 (|#3| |#1| |#2| |#3|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1352 (|#1| (-1 |#3| |#3|) |#1|))) (-610 |#2| |#3|) (-1109) (-1227)) (T -609))
+NIL
+(-10 -8 (-15 -3727 ((-1282) |#1| |#2| |#2|)) (-15 -3531 (|#1| |#1| |#3|)) (-15 -3443 (|#3| |#1|)) (-15 -3888 (|#2| |#1|)) (-15 -2596 (|#2| |#1|)) (-15 -4068 ((-112) |#3| |#1|)) (-15 -4348 ((-650 |#3|) |#1|)) (-15 -1877 (|#3| |#1| |#2|)) (-15 -1877 (|#3| |#1| |#2| |#3|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1352 (|#1| (-1 |#3| |#3|) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-3727 (((-1282) $ |#1| |#1|) 41 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4450)))) (-3761 (($) 7 T CONST)) (-3789 ((|#2| $ |#1| |#2|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) 52)) (-2835 (((-650 |#2|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3888 ((|#1| $) 44 (|has| |#1| (-856)))) (-3201 (((-650 |#2|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-2596 ((|#1| $) 45 (|has| |#1| (-856)))) (-3776 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#2| (-1109)))) (-2122 (((-650 |#1|) $) 47)) (-2083 (((-112) |#1| $) 48)) (-3479 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3443 ((|#2| $) 43 (|has| |#1| (-856)))) (-3531 (($ $ |#2|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) 27 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 26 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 24 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#2| $ |#1| |#2|) 51) ((|#2| $ |#1|) 50)) (-3490 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4449))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-2964 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-610 |#1| |#2|) (-141) (-1109) (-1227)) (T -610))
+((-4348 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-650 *4)))) (-2083 (*1 *2 *3 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-2122 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-650 *3)))) (-4068 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-610 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2596 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3888 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3443 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *3 (-856)) (-4 *2 (-1227)))) (-3531 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3727 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-1282)))))
+(-13 (-495 |t#2|) (-292 |t#1| |t#2|) (-10 -8 (-15 -4348 ((-650 |t#2|) $)) (-15 -2083 ((-112) |t#1| $)) (-15 -2122 ((-650 |t#1|) $)) (IF (|has| |t#2| (-1109)) (IF (|has| $ (-6 -4449)) (-15 -4068 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -2596 (|t#1| $)) (-15 -3888 (|t#1| $)) (-15 -3443 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3531 ($ $ |t#2|)) (-15 -3727 ((-1282) $ |t#1| |t#1|))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#2| (-1109)) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868)))) ((-290 |#1| |#2|) . T) ((-292 |#1| |#2|) . T) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-495 |#2|) . T) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-1109) |has| |#2| (-1109)) ((-1227) . T))
((-3735 (((-868) $) 19) (($ (-130)) 13) (((-130) $) 14)))
(((-611) (-13 (-619 (-868)) (-496 (-130)))) (T -611))
NIL
(-13 (-619 (-868)) (-496 (-130)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1225) $) 14) (($ (-650 (-1225))) 13)) (-1941 (((-650 (-1225)) $) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-612) (-13 (-1092) (-619 (-1225)) (-10 -8 (-15 -3735 ($ (-650 (-1225)))) (-15 -1941 ((-650 (-1225)) $))))) (T -612))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-612)))) (-1941 (*1 *2 *1) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-612)))))
-(-13 (-1092) (-619 (-1225)) (-10 -8 (-15 -3735 ($ (-650 (-1225)))) (-15 -1941 ((-650 (-1225)) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1733 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-1759 (((-1276 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1276 (-695 |#1|)) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-2201 (((-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-2450 (($) NIL T CONST)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1822 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2893 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-4361 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-2520 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-1535 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3065 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-3937 (($ $ (-928)) NIL)) (-3602 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3929 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4290 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-1458 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-3161 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2049 (($ (-1276 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1276 |#1|) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-3413 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3934 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-1460 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3388 (($ $ (-928)) NIL)) (-3060 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3207 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3149 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2546 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1401 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-4395 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3215 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-2168 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4004 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-2247 (($ $ (-928)) NIL)) (-3386 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1395 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2191 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-4265 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-2455 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1903 (((-1168) $) NIL)) (-3641 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1482 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3204 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3479 (((-1129) $) NIL)) (-1687 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1876 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-1807 (((-695 |#1|) (-1276 $)) NIL (|has| |#2| (-423 |#1|))) (((-1276 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1276 $) (-1276 $)) NIL (|has| |#2| (-372 |#1|))) (((-1276 |#1|) $ (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-1416 (($ (-1276 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1276 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3824 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-3688 (($ $ $) NIL)) (-4068 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3735 (((-868) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL (|has| |#2| (-423 |#1|)))) (-4365 (((-650 (-1276 |#1|))) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3183 (($ $ $ $) NIL)) (-2170 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3381 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-1960 (($ $ $) NIL)) (-4213 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3987 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3463 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1812 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) 24)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1226) $) 14) (($ (-650 (-1226))) 13)) (-1942 (((-650 (-1226)) $) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-612) (-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3735 ($ (-650 (-1226)))) (-15 -1942 ((-650 (-1226)) $))))) (T -612))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))) (-1942 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))))
+(-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3735 ($ (-650 (-1226)))) (-15 -1942 ((-650 (-1226)) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2101 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2303 (((-1277 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1277 (-695 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3016 (((-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3761 (($) NIL T CONST)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1679 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3649 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2893 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3129 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3860 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2693 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-4333 (($ $ (-928)) NIL)) (-4191 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-4255 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3497 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-4339 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-4362 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2125 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1277 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2937 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3933 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-4356 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2710 (($ $ (-928)) NIL)) (-2637 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1734 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2335 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3394 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1883 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2078 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1806 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3984 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2508 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-3548 (($ $ (-928)) NIL)) (-2688 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-4272 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4219 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3231 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-3809 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4268 (((-1168) $) NIL)) (-3303 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1493 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1694 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3479 (((-1129) $) NIL)) (-2851 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1877 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-1533 (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $) (-1277 $)) NIL (|has| |#2| (-372 |#1|))) (((-1277 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1417 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-1334 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2522 (($ $ $) NIL)) (-2024 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3735 (((-868) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL (|has| |#2| (-423 |#1|)))) (-2934 (((-650 (-1277 |#1|))) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1483 (($ $ $ $) NIL)) (-4004 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3381 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3619 (($ $ $) NIL)) (-4015 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3596 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2208 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1814 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) 24)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
(((-613 |#1| |#2|) (-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3735 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|))) (-174) (-750 |#1|)) (T -613))
((-3735 (*1 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-613 *3 *2)) (-4 *2 (-750 *3)))))
(-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3735 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-3560 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) 39)) (-4276 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL) (($) NIL)) (-3225 (((-1281) $ (-1168) (-1168)) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-1168) |#1|) 49)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#1| "failed") (-1168) $) 52)) (-2450 (($) NIL T CONST)) (-2603 (($ $ (-1168)) 25)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109))))) (-2513 (((-3 |#1| "failed") (-1168) $) 53) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (($ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (|has| $ (-6 -4448)))) (-1702 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (($ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109))))) (-3529 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109))))) (-2346 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) 38)) (-3790 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-1168)) NIL)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448))) (((-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-2573 (($ $) 54)) (-1727 (($ (-394)) 23) (($ (-394) (-1168)) 22)) (-3503 (((-394) $) 40)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448))) (((-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (((-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109))))) (-4329 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-2760 (((-650 (-1168)) $) 45)) (-2696 (((-112) (-1168) $) NIL)) (-2564 (((-1168) $) 41)) (-3784 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL)) (-2344 (((-650 (-1168)) $) NIL)) (-1354 (((-112) (-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 ((|#1| $) NIL (|has| (-1168) (-856)))) (-3321 (((-3 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) "failed") (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 43)) (-1876 ((|#1| $ (-1168) |#1|) NIL) ((|#1| $ (-1168)) 48)) (-2271 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL) (($) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (((-777) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL)) (-3735 (((-868) $) 21)) (-1866 (($ $) 26)) (-1859 (((-112) $ $) NIL)) (-2251 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
-(((-614 |#1|) (-13 (-369 (-394) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) (-1202 (-1168) |#1|) (-10 -8 (-6 -4448) (-15 -2573 ($ $)))) (-1109)) (T -614))
-((-2573 (*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109)))))
-(-13 (-369 (-394) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) (-1202 (-1168) |#1|) (-10 -8 (-6 -4448) (-15 -2573 ($ $))))
-((-3464 (((-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) $) 16)) (-2760 (((-650 |#2|) $) 20)) (-2696 (((-112) |#2| $) 12)))
-(((-615 |#1| |#2| |#3|) (-10 -8 (-15 -2760 ((-650 |#2|) |#1|)) (-15 -2696 ((-112) |#2| |#1|)) (-15 -3464 ((-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|))) (-616 |#2| |#3|) (-1109) (-1109)) (T -615))
-NIL
-(-10 -8 (-15 -2760 ((-650 |#2|) |#1|)) (-15 -2696 ((-112) |#2| |#1|)) (-15 -3464 ((-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 56 (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) 62)) (-2450 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 47 (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) 63)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 55 (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 57 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 54 (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 53 (|has| $ (-6 -4448)))) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-2760 (((-650 |#1|) $) 64)) (-2696 (((-112) |#1| $) 65)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 40)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 41)) (-3479 (((-1129) $) 21 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 52)) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 42)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) 27 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 26 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 25 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 24 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-2271 (($) 50) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 49)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 32 (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 51)) (-3735 (((-868) $) 18 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 43)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-3784 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) 39)) (-4276 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL) (($) NIL)) (-3727 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-1168) |#1|) 49)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#1| "failed") (-1168) $) 52)) (-3761 (($) NIL T CONST)) (-2695 (($ $ (-1168)) 25)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109))))) (-3076 (((-3 |#1| "failed") (-1168) $) 53) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (($ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (|has| $ (-6 -4449)))) (-1703 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (($ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109))))) (-3529 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109))))) (-2140 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) 38)) (-3789 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-1168)) NIL)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3687 (($ $) 54)) (-1726 (($ (-394)) 23) (($ (-394) (-1168)) 22)) (-3504 (((-394) $) 40)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (((-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109))))) (-2596 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-2761 (((-650 (-1168)) $) 45)) (-2338 (((-112) (-1168) $) NIL)) (-3600 (((-1168) $) 41)) (-2192 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL)) (-2122 (((-650 (-1168)) $) NIL)) (-2083 (((-112) (-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 ((|#1| $) NIL (|has| (-1168) (-856)))) (-3281 (((-3 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) "failed") (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 43)) (-1877 ((|#1| $ (-1168) |#1|) NIL) ((|#1| $ (-1168)) 48)) (-2535 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL) (($) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (((-777) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL)) (-3735 (((-868) $) 21)) (-3924 (($ $) 26)) (-3866 (((-112) $ $) NIL)) (-3594 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
+(((-614 |#1|) (-13 (-369 (-394) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) (-1203 (-1168) |#1|) (-10 -8 (-6 -4449) (-15 -3687 ($ $)))) (-1109)) (T -614))
+((-3687 (*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109)))))
+(-13 (-369 (-394) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) (-1203 (-1168) |#1|) (-10 -8 (-6 -4449) (-15 -3687 ($ $))))
+((-2218 (((-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) $) 16)) (-2761 (((-650 |#2|) $) 20)) (-2338 (((-112) |#2| $) 12)))
+(((-615 |#1| |#2| |#3|) (-10 -8 (-15 -2761 ((-650 |#2|) |#1|)) (-15 -2338 ((-112) |#2| |#1|)) (-15 -2218 ((-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|))) (-616 |#2| |#3|) (-1109) (-1109)) (T -615))
+NIL
+(-10 -8 (-15 -2761 ((-650 |#2|) |#1|)) (-15 -2338 ((-112) |#2| |#1|)) (-15 -2218 ((-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 56 (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) 62)) (-3761 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 47 (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 63)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 55 (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 57 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 54 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 53 (|has| $ (-6 -4449)))) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-2761 (((-650 |#1|) $) 64)) (-2338 (((-112) |#1| $) 65)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 40)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 41)) (-3479 (((-1129) $) 21 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 52)) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 42)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) 27 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 26 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 25 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 24 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-2535 (($) 50) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 49)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 32 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 51)) (-3735 (((-868) $) 18 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 43)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-616 |#1| |#2|) (-141) (-1109) (-1109)) (T -616))
-((-2696 (*1 *2 *3 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-2760 (*1 *2 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-2513 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2361 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(-13 (-231 (-2 (|:| -2013 |t#1|) (|:| -2223 |t#2|))) (-10 -8 (-15 -2696 ((-112) |t#1| $)) (-15 -2760 ((-650 |t#1|) $)) (-15 -2513 ((-3 |t#2| "failed") |t#1| $)) (-15 -2361 ((-3 |t#2| "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((-102) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) ((-619 (-868)) -2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-495 #0#) . T) ((-520 #0# #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-1109) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) ((-1226) . T))
-((-1934 (((-618 |#2|) |#1|) 17)) (-3535 (((-3 |#1| "failed") (-618 |#2|)) 21)))
-(((-617 |#1| |#2|) (-10 -7 (-15 -1934 ((-618 |#2|) |#1|)) (-15 -3535 ((-3 |#1| "failed") (-618 |#2|)))) (-1109) (-1109)) (T -617))
-((-3535 (*1 *2 *3) (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-617 *2 *4)))) (-1934 (*1 *2 *3) (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
-(-10 -7 (-15 -1934 ((-618 |#2|) |#1|)) (-15 -3535 ((-3 |#1| "failed") (-618 |#2|))))
-((-2416 (((-112) $ $) NIL)) (-2777 (((-3 (-1186) "failed") $) 48)) (-3458 (((-1281) $ (-777)) 24)) (-3998 (((-777) $) 23)) (-3680 (((-115) $) 12)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-1360 (($ (-115) (-650 |#1|) (-777)) 34) (($ (-1186)) 35)) (-1566 (((-112) $ (-115)) 18) (((-112) $ (-1186)) 16)) (-1434 (((-777) $) 20)) (-3479 (((-1129) $) NIL)) (-1416 (((-899 (-570)) $) 96 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 103 (|has| |#1| (-620 (-899 (-384))))) (((-542) $) 89 (|has| |#1| (-620 (-542))))) (-3735 (((-868) $) 73)) (-1859 (((-112) $ $) NIL)) (-3091 (((-650 |#1|) $) 22)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 52)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 54)))
-(((-618 |#1|) (-13 (-133) (-856) (-891 |#1|) (-10 -8 (-15 -3680 ((-115) $)) (-15 -3091 ((-650 |#1|) $)) (-15 -1434 ((-777) $)) (-15 -1360 ($ (-115) (-650 |#1|) (-777))) (-15 -1360 ($ (-1186))) (-15 -2777 ((-3 (-1186) "failed") $)) (-15 -1566 ((-112) $ (-115))) (-15 -1566 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-1109)) (T -618))
-((-3680 (*1 *2 *1) (-12 (-5 *2 (-115)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-3091 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1434 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1360 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-115)) (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-1109)) (-5 *1 (-618 *5)))) (-1360 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-2777 (*1 *2 *1) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1566 (*1 *2 *1 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109)))) (-1566 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109)))))
-(-13 (-133) (-856) (-891 |#1|) (-10 -8 (-15 -3680 ((-115) $)) (-15 -3091 ((-650 |#1|) $)) (-15 -1434 ((-777) $)) (-15 -1360 ($ (-115) (-650 |#1|) (-777))) (-15 -1360 ($ (-1186))) (-15 -2777 ((-3 (-1186) "failed") $)) (-15 -1566 ((-112) $ (-115))) (-15 -1566 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
+((-2338 (*1 *2 *3 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-2761 (*1 *2 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-3076 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2360 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(-13 (-231 (-2 (|:| -2013 |t#1|) (|:| -2224 |t#2|))) (-10 -8 (-15 -2338 ((-112) |t#1| $)) (-15 -2761 ((-650 |t#1|) $)) (-15 -3076 ((-3 |t#2| "failed") |t#1| $)) (-15 -2360 ((-3 |t#2| "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((-102) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) ((-619 (-868)) -2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-495 #0#) . T) ((-520 #0# #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-1109) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) ((-1227) . T))
+((-3326 (((-618 |#2|) |#1|) 17)) (-1668 (((-3 |#1| "failed") (-618 |#2|)) 21)))
+(((-617 |#1| |#2|) (-10 -7 (-15 -3326 ((-618 |#2|) |#1|)) (-15 -1668 ((-3 |#1| "failed") (-618 |#2|)))) (-1109) (-1109)) (T -617))
+((-1668 (*1 *2 *3) (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-617 *2 *4)))) (-3326 (*1 *2 *3) (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
+(-10 -7 (-15 -3326 ((-618 |#2|) |#1|)) (-15 -1668 ((-3 |#1| "failed") (-618 |#2|))))
+((-2417 (((-112) $ $) NIL)) (-3770 (((-3 (-1186) "failed") $) 48)) (-2158 (((-1282) $ (-777)) 24)) (-3998 (((-777) $) 23)) (-3680 (((-115) $) 12)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1361 (($ (-115) (-650 |#1|) (-777)) 34) (($ (-1186)) 35)) (-4198 (((-112) $ (-115)) 18) (((-112) $ (-1186)) 16)) (-1435 (((-777) $) 20)) (-3479 (((-1129) $) NIL)) (-1417 (((-899 (-570)) $) 96 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 103 (|has| |#1| (-620 (-899 (-384))))) (((-542) $) 89 (|has| |#1| (-620 (-542))))) (-3735 (((-868) $) 73)) (-3866 (((-112) $ $) NIL)) (-2909 (((-650 |#1|) $) 22)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 52)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 54)))
+(((-618 |#1|) (-13 (-133) (-856) (-891 |#1|) (-10 -8 (-15 -3680 ((-115) $)) (-15 -2909 ((-650 |#1|) $)) (-15 -1435 ((-777) $)) (-15 -1361 ($ (-115) (-650 |#1|) (-777))) (-15 -1361 ($ (-1186))) (-15 -3770 ((-3 (-1186) "failed") $)) (-15 -4198 ((-112) $ (-115))) (-15 -4198 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-1109)) (T -618))
+((-3680 (*1 *2 *1) (-12 (-5 *2 (-115)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-2909 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1435 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1361 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-115)) (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-1109)) (-5 *1 (-618 *5)))) (-1361 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-3770 (*1 *2 *1) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-4198 (*1 *2 *1 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109)))) (-4198 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109)))))
+(-13 (-133) (-856) (-891 |#1|) (-10 -8 (-15 -3680 ((-115) $)) (-15 -2909 ((-650 |#1|) $)) (-15 -1435 ((-777) $)) (-15 -1361 ($ (-115) (-650 |#1|) (-777))) (-15 -1361 ($ (-1186))) (-15 -3770 ((-3 (-1186) "failed") $)) (-15 -4198 ((-112) $ (-115))) (-15 -4198 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
((-3735 ((|#1| $) 6)))
-(((-619 |#1|) (-141) (-1226)) (T -619))
-((-3735 (*1 *2 *1) (-12 (-4 *1 (-619 *2)) (-4 *2 (-1226)))))
+(((-619 |#1|) (-141) (-1227)) (T -619))
+((-3735 (*1 *2 *1) (-12 (-4 *1 (-619 *2)) (-4 *2 (-1227)))))
(-13 (-10 -8 (-15 -3735 (|t#1| $))))
-((-1416 ((|#1| $) 6)))
-(((-620 |#1|) (-141) (-1226)) (T -620))
-((-1416 (*1 *2 *1) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1226)))))
-(-13 (-10 -8 (-15 -1416 (|t#1| $))))
-((-4333 (((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|)) 15) (((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)) 16)))
-(((-621 |#1| |#2|) (-10 -7 (-15 -4333 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -4333 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|)))) (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570)))) (-1252 |#1|)) (T -621))
-((-4333 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-1182 (-413 *6))) (-5 *1 (-621 *5 *6)) (-5 *3 (-413 *6)))) (-4333 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *2 (-1182 (-413 *5))) (-5 *1 (-621 *4 *5)) (-5 *3 (-413 *5)))))
-(-10 -7 (-15 -4333 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -4333 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|))))
+((-1417 ((|#1| $) 6)))
+(((-620 |#1|) (-141) (-1227)) (T -620))
+((-1417 (*1 *2 *1) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -1417 (|t#1| $))))
+((-2641 (((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|)) 15) (((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)) 16)))
+(((-621 |#1| |#2|) (-10 -7 (-15 -2641 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -2641 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|)))) (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -621))
+((-2641 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-1182 (-413 *6))) (-5 *1 (-621 *5 *6)) (-5 *3 (-413 *6)))) (-2641 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-1182 (-413 *5))) (-5 *1 (-621 *4 *5)) (-5 *3 (-413 *5)))))
+(-10 -7 (-15 -2641 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -2641 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|))))
((-3735 (($ |#1|) 6)))
-(((-622 |#1|) (-141) (-1226)) (T -622))
-((-3735 (*1 *1 *2) (-12 (-4 *1 (-622 *2)) (-4 *2 (-1226)))))
+(((-622 |#1|) (-141) (-1227)) (T -622))
+((-3735 (*1 *1 *2) (-12 (-4 *1 (-622 *2)) (-4 *2 (-1227)))))
(-13 (-10 -8 (-15 -3735 ($ |t#1|))))
-((-2416 (((-112) $ $) NIL)) (-1632 (($) 14 T CONST)) (-2959 (($) 15 T CONST)) (-1778 (($ $ $) 29)) (-1754 (($ $) 27)) (-1903 (((-1168) $) NIL)) (-4165 (($ $ $) 30)) (-3479 (((-1129) $) NIL)) (-1889 (($) 11 T CONST)) (-4066 (($ $ $) 31)) (-3735 (((-868) $) 35)) (-1802 (((-112) $ (|[\|\|]| -1889)) 24) (((-112) $ (|[\|\|]| -1632)) 26) (((-112) $ (|[\|\|]| -2959)) 21)) (-1859 (((-112) $ $) NIL)) (-1765 (($ $ $) 28)) (-2872 (((-112) $ $) 18)))
-(((-623) (-13 (-976) (-10 -8 (-15 -1632 ($) -3640) (-15 -1802 ((-112) $ (|[\|\|]| -1889))) (-15 -1802 ((-112) $ (|[\|\|]| -1632))) (-15 -1802 ((-112) $ (|[\|\|]| -2959)))))) (T -623))
-((-1632 (*1 *1) (-5 *1 (-623))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1889)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1632)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2959)) (-5 *2 (-112)) (-5 *1 (-623)))))
-(-13 (-976) (-10 -8 (-15 -1632 ($) -3640) (-15 -1802 ((-112) $ (|[\|\|]| -1889))) (-15 -1802 ((-112) $ (|[\|\|]| -1632))) (-15 -1802 ((-112) $ (|[\|\|]| -2959)))))
-((-1416 (($ |#1|) 6)))
-(((-624 |#1|) (-141) (-1226)) (T -624))
-((-1416 (*1 *1 *2) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1226)))))
-(-13 (-10 -8 (-15 -1416 ($ |t#1|))))
+((-2417 (((-112) $ $) NIL)) (-1633 (($) 14 T CONST)) (-2959 (($) 15 T CONST)) (-1778 (($ $ $) 29)) (-1753 (($ $) 27)) (-4268 (((-1168) $) NIL)) (-1692 (($ $ $) 30)) (-3479 (((-1129) $) NIL)) (-1890 (($) 11 T CONST)) (-2005 (($ $ $) 31)) (-3735 (((-868) $) 35)) (-1803 (((-112) $ (|[\|\|]| -1890)) 24) (((-112) $ (|[\|\|]| -1633)) 26) (((-112) $ (|[\|\|]| -2959)) 21)) (-3866 (((-112) $ $) NIL)) (-1765 (($ $ $) 28)) (-2872 (((-112) $ $) 18)))
+(((-623) (-13 (-976) (-10 -8 (-15 -1633 ($) -3640) (-15 -1803 ((-112) $ (|[\|\|]| -1890))) (-15 -1803 ((-112) $ (|[\|\|]| -1633))) (-15 -1803 ((-112) $ (|[\|\|]| -2959)))))) (T -623))
+((-1633 (*1 *1) (-5 *1 (-623))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1890)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1633)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2959)) (-5 *2 (-112)) (-5 *1 (-623)))))
+(-13 (-976) (-10 -8 (-15 -1633 ($) -3640) (-15 -1803 ((-112) $ (|[\|\|]| -1890))) (-15 -1803 ((-112) $ (|[\|\|]| -1633))) (-15 -1803 ((-112) $ (|[\|\|]| -2959)))))
+((-1417 (($ |#1|) 6)))
+(((-624 |#1|) (-141) (-1227)) (T -624))
+((-1417 (*1 *1 *2) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -1417 ($ |t#1|))))
((-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10)))
(((-625 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-626 |#2|) (-1058)) (T -625))
NIL
(-10 -8 (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 41)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#1| $) 42)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 41)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#1| $) 42)))
(((-626 |#1|) (-141) (-1058)) (T -626))
((-3735 (*1 *1 *2) (-12 (-4 *1 (-626 *2)) (-4 *2 (-1058)))))
(-13 (-1058) (-654 |t#1|) (-10 -8 (-15 -3735 ($ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3140 (((-570) $) NIL (|has| |#1| (-854)))) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-1522 (((-112) $) NIL (|has| |#1| (-854)))) (-2081 (((-112) $) NIL)) (-4398 ((|#1| $) 13)) (-2761 (((-112) $) NIL (|has| |#1| (-854)))) (-3310 (($ $ $) NIL (|has| |#1| (-854)))) (-3787 (($ $ $) NIL (|has| |#1| (-854)))) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4412 ((|#3| $) 15)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL)) (-2744 (((-777)) 20 T CONST)) (-1859 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| |#1| (-854)))) (-1812 (($) NIL T CONST)) (-1823 (($) 12 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2975 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-627 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4398 (|#1| $)) (-15 -4412 (|#3| $)))) (-38 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -627))
-((-2975 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-627 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-2975 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-627 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-732) *4)))) (-4398 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-38 *3)) (-5 *1 (-627 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-732) *3)))) (-4412 (*1 *2 *1) (-12 (-4 *4 (-174)) (-4 *2 (|SubsetCategory| (-732) *4)) (-5 *1 (-627 *3 *4 *2)) (-4 *3 (-38 *4)))))
-(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4398 (|#1| $)) (-15 -4412 (|#3| $))))
-((-3478 ((|#2| |#2| (-1186) (-1186)) 16)))
-(((-628 |#1| |#2|) (-10 -7 (-15 -3478 (|#2| |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-966) (-29 |#1|))) (T -628))
-((-3478 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-628 *4 *2)) (-4 *2 (-13 (-1211) (-966) (-29 *4))))))
-(-10 -7 (-15 -3478 (|#2| |#2| (-1186) (-1186))))
-((-2416 (((-112) $ $) 64)) (-4028 (((-112) $) 58)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-1333 ((|#1| $) 55)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2105 (((-2 (|:| -3893 $) (|:| -2910 (-413 |#2|))) (-413 |#2|)) 111 (|has| |#1| (-368)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 99) (((-3 |#2| "failed") $) 95)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) 27)) (-3413 (((-3 $ "failed") $) 88)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3157 (((-570) $) 22)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) 40)) (-3872 (($ |#1| (-570)) 24)) (-1864 ((|#1| $) 57)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) 101 (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 116 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ $) 93)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2272 (((-777) $) 115 (|has| |#1| (-368)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 114 (|has| |#1| (-368)))) (-3447 (($ $ (-1 |#2| |#2|)) 75) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-1601 (((-570) $) 38)) (-1416 (((-413 |#2|) $) 47)) (-3735 (((-868) $) 69) (($ (-570)) 35) (($ $) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 34) (($ |#2|) 25)) (-1715 ((|#1| $ (-570)) 72)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 9 T CONST)) (-1823 (($) 14 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2872 (((-112) $ $) 21)) (-2965 (($ $) 51) (($ $ $) NIL)) (-2954 (($ $ $) 90)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 29) (($ $ $) 49)))
-(((-629 |#1| |#2|) (-13 (-233 |#2|) (-562) (-620 (-413 |#2|)) (-417 |#1|) (-1047 |#2|) (-10 -8 (-15 -1550 ((-112) $)) (-15 -1601 ((-570) $)) (-15 -3157 ((-570) $)) (-15 -1890 ($ $)) (-15 -1864 (|#1| $)) (-15 -1333 (|#1| $)) (-15 -1715 (|#1| $ (-570))) (-15 -3872 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -2105 ((-2 (|:| -3893 $) (|:| -2910 (-413 |#2|))) (-413 |#2|)))) |%noBranch|))) (-562) (-1252 |#1|)) (T -629))
-((-1550 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1252 *3)))) (-1601 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1252 *3)))) (-3157 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1252 *3)))) (-1890 (*1 *1 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1252 *2)))) (-1864 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1252 *2)))) (-1333 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1252 *2)))) (-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1252 *2)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1252 *2)))) (-2105 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| -3893 (-629 *4 *5)) (|:| -2910 (-413 *5)))) (-5 *1 (-629 *4 *5)) (-5 *3 (-413 *5)))))
-(-13 (-233 |#2|) (-562) (-620 (-413 |#2|)) (-417 |#1|) (-1047 |#2|) (-10 -8 (-15 -1550 ((-112) $)) (-15 -1601 ((-570) $)) (-15 -3157 ((-570) $)) (-15 -1890 ($ $)) (-15 -1864 (|#1| $)) (-15 -1333 (|#1| $)) (-15 -1715 (|#1| $ (-570))) (-15 -3872 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -2105 ((-2 (|:| -3893 $) (|:| -2910 (-413 |#2|))) (-413 |#2|)))) |%noBranch|)))
-((-2411 (((-650 |#6|) (-650 |#4|) (-112)) 54)) (-1619 ((|#6| |#6|) 48)))
-(((-630 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1619 (|#6| |#6|)) (-15 -2411 ((-650 |#6|) (-650 |#4|) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|) (-1118 |#1| |#2| |#3| |#4|)) (T -630))
-((-2411 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *10)) (-5 *1 (-630 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *10 (-1118 *5 *6 *7 *8)))) (-1619 (*1 *2 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-630 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *2 (-1118 *3 *4 *5 *6)))))
-(-10 -7 (-15 -1619 (|#6| |#6|)) (-15 -2411 ((-650 |#6|) (-650 |#4|) (-112))))
-((-4038 (((-112) |#3| (-777) (-650 |#3|)) 32)) (-2250 (((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1679 (-650 (-2 (|:| |irr| |#4|) (|:| -3465 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)) 73)))
-(((-631 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4038 ((-112) |#3| (-777) (-650 |#3|))) (-15 -2250 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1679 (-650 (-2 (|:| |irr| |#4|) (|:| -3465 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)))) (-856) (-799) (-311) (-956 |#3| |#2| |#1|)) (T -631))
-((-2250 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -1679 (-650 (-2 (|:| |irr| *10) (|:| -3465 (-570))))))) (-5 *6 (-650 *3)) (-5 *7 (-650 *8)) (-4 *8 (-856)) (-4 *3 (-311)) (-4 *10 (-956 *3 *9 *8)) (-4 *9 (-799)) (-5 *2 (-2 (|:| |polfac| (-650 *10)) (|:| |correct| *3) (|:| |corrfact| (-650 (-1182 *3))))) (-5 *1 (-631 *8 *9 *3 *10)) (-5 *4 (-650 (-1182 *3))))) (-4038 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-777)) (-5 *5 (-650 *3)) (-4 *3 (-311)) (-4 *6 (-856)) (-4 *7 (-799)) (-5 *2 (-112)) (-5 *1 (-631 *6 *7 *3 *8)) (-4 *8 (-956 *3 *7 *6)))))
-(-10 -7 (-15 -4038 ((-112) |#3| (-777) (-650 |#3|))) (-15 -2250 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1679 (-650 (-2 (|:| |irr| |#4|) (|:| -3465 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|))))
-((-2416 (((-112) $ $) NIL)) (-2121 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-632) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))) (T -632))
-((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))))
-(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2121 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-2543 (($ $) 77)) (-2635 (((-670 |#1| |#2|) $) 60)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 81)) (-2986 (((-650 (-298 |#2|)) $ $) 42)) (-3479 (((-1129) $) NIL)) (-4387 (($ (-670 |#1| |#2|)) 56)) (-3684 (($ $ $) NIL)) (-3688 (($ $ $) NIL)) (-3735 (((-868) $) 66) (((-1291 |#1| |#2|) $) NIL) (((-1296 |#1| |#2|) $) 74)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 61 T CONST)) (-3227 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) 41)) (-3344 (((-650 (-670 |#1| |#2|)) (-650 |#1|)) 73)) (-2824 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) 46)) (-2872 (((-112) $ $) 62)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 52)))
-(((-633 |#1| |#2| |#3|) (-13 (-479) (-10 -8 (-15 -4387 ($ (-670 |#1| |#2|))) (-15 -2635 ((-670 |#1| |#2|) $)) (-15 -2824 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3735 ((-1291 |#1| |#2|) $)) (-15 -3735 ((-1296 |#1| |#2|) $)) (-15 -2543 ($ $)) (-15 -3039 ((-650 |#1|) $)) (-15 -3344 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -3227 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -2986 ((-650 (-298 |#2|)) $ $)))) (-856) (-13 (-174) (-723 (-413 (-570)))) (-928)) (T -633))
-((-4387 (*1 *1 *2) (-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-5 *1 (-633 *3 *4 *5)) (-14 *5 (-928)))) (-2635 (*1 *2 *1) (-12 (-5 *2 (-670 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-2824 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| (-900 *3)) (|:| |c| *4)))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1291 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1296 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-2543 (*1 *1 *1) (-12 (-5 *1 (-633 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-13 (-174) (-723 (-413 (-570))))) (-14 *4 (-928)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3344 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-670 *4 *5))) (-5 *1 (-633 *4 *5 *6)) (-4 *5 (-13 (-174) (-723 (-413 (-570))))) (-14 *6 (-928)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| (-678 *3)) (|:| |c| *4)))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-2986 (*1 *2 *1 *1) (-12 (-5 *2 (-650 (-298 *4))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))))
-(-13 (-479) (-10 -8 (-15 -4387 ($ (-670 |#1| |#2|))) (-15 -2635 ((-670 |#1| |#2|) $)) (-15 -2824 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3735 ((-1291 |#1| |#2|) $)) (-15 -3735 ((-1296 |#1| |#2|) $)) (-15 -2543 ($ $)) (-15 -3039 ((-650 |#1|) $)) (-15 -3344 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -3227 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -2986 ((-650 (-298 |#2|)) $ $))))
-((-2411 (((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)) 103) (((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112)) 77)) (-3264 (((-112) (-650 (-786 |#1| (-870 |#2|)))) 26)) (-4275 (((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)) 102)) (-2011 (((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112)) 76)) (-2475 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|)))) 30)) (-2918 (((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|)))) 29)))
-(((-634 |#1| |#2|) (-10 -7 (-15 -3264 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2918 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -2475 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2011 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -4275 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -2411 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -2411 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)))) (-458) (-650 (-1186))) (T -634))
-((-2411 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6))))) (-5 *1 (-634 *5 *6)))) (-2411 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-634 *5 *6)))) (-4275 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6))))) (-5 *1 (-634 *5 *6)))) (-2011 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-634 *5 *6)))) (-2475 (*1 *2 *2) (-12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-2918 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-3264 (*1 *2 *3) (-12 (-5 *3 (-650 (-786 *4 (-870 *5)))) (-4 *4 (-458)) (-14 *5 (-650 (-1186))) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
-(-10 -7 (-15 -3264 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2918 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -2475 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2011 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -4275 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -2411 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -2411 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))))
-((-2735 (($ $) 38)) (-2602 (($ $) 21)) (-2712 (($ $) 37)) (-2579 (($ $) 22)) (-4087 (($ $) 36)) (-2622 (($ $) 23)) (-1314 (($) 48)) (-2635 (($ $) 45)) (-4146 (($ $) 17)) (-2642 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)) (-4387 (($ $) 46)) (-2537 (($ $) 15)) (-2568 (($ $) 16)) (-4099 (($ $) 35)) (-2634 (($ $) 24)) (-2746 (($ $) 34)) (-2611 (($ $) 25)) (-2723 (($ $) 33)) (-2590 (($ $) 26)) (-4138 (($ $) 44)) (-2671 (($ $) 32)) (-4108 (($ $) 43)) (-2647 (($ $) 31)) (-4161 (($ $) 42)) (-2691 (($ $) 30)) (-1509 (($ $) 41)) (-2701 (($ $) 29)) (-4150 (($ $) 40)) (-2681 (($ $) 28)) (-4123 (($ $) 39)) (-2660 (($ $) 27)) (-2211 (($ $) 19)) (-2332 (($ $) 20)) (-3456 (($ $) 18)) (** (($ $ $) 47)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2249 (((-570) $) NIL (|has| |#1| (-854)))) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-3703 (((-112) $) NIL (|has| |#1| (-854)))) (-4340 (((-112) $) NIL)) (-4399 ((|#1| $) 13)) (-1774 (((-112) $) NIL (|has| |#1| (-854)))) (-3311 (($ $ $) NIL (|has| |#1| (-854)))) (-2222 (($ $ $) NIL (|has| |#1| (-854)))) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4413 ((|#3| $) 15)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL)) (-1609 (((-777)) 20 T CONST)) (-3866 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| |#1| (-854)))) (-1814 (($) NIL T CONST)) (-1824 (($) 12 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2975 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-627 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $)))) (-38 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -627))
+((-2975 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-627 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-2975 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-627 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-732) *4)))) (-4399 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-38 *3)) (-5 *1 (-627 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-732) *3)))) (-4413 (*1 *2 *1) (-12 (-4 *4 (-174)) (-4 *2 (|SubsetCategory| (-732) *4)) (-5 *1 (-627 *3 *4 *2)) (-4 *3 (-38 *4)))))
+(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $))))
+((-2342 ((|#2| |#2| (-1186) (-1186)) 16)))
+(((-628 |#1| |#2|) (-10 -7 (-15 -2342 (|#2| |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -628))
+((-2342 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-628 *4 *2)) (-4 *2 (-13 (-1212) (-966) (-29 *4))))))
+(-10 -7 (-15 -2342 (|#2| |#2| (-1186) (-1186))))
+((-2417 (((-112) $ $) 64)) (-2745 (((-112) $) 58)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-1853 ((|#1| $) 55)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1484 (((-2 (|:| -3886 $) (|:| -3709 (-413 |#2|))) (-413 |#2|)) 111 (|has| |#1| (-368)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 99) (((-3 |#2| "failed") $) 95)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) 27)) (-2937 (((-3 $ "failed") $) 88)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4331 (((-570) $) 22)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) 40)) (-3872 (($ |#1| (-570)) 24)) (-1865 ((|#1| $) 57)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) 101 (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 116 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ $) 93)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2547 (((-777) $) 115 (|has| |#1| (-368)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 114 (|has| |#1| (-368)))) (-3447 (($ $ (-1 |#2| |#2|)) 75) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-3221 (((-570) $) 38)) (-1417 (((-413 |#2|) $) 47)) (-3735 (((-868) $) 69) (($ (-570)) 35) (($ $) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 34) (($ |#2|) 25)) (-1983 ((|#1| $ (-570)) 72)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 9 T CONST)) (-1824 (($) 14 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2872 (((-112) $ $) 21)) (-2965 (($ $) 51) (($ $ $) NIL)) (-2953 (($ $ $) 90)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 29) (($ $ $) 49)))
+(((-629 |#1| |#2|) (-13 (-233 |#2|) (-562) (-620 (-413 |#2|)) (-417 |#1|) (-1047 |#2|) (-10 -8 (-15 -4016 ((-112) $)) (-15 -3221 ((-570) $)) (-15 -4331 ((-570) $)) (-15 -1891 ($ $)) (-15 -1865 (|#1| $)) (-15 -1853 (|#1| $)) (-15 -1983 (|#1| $ (-570))) (-15 -3872 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -1484 ((-2 (|:| -3886 $) (|:| -3709 (-413 |#2|))) (-413 |#2|)))) |%noBranch|))) (-562) (-1253 |#1|)) (T -629))
+((-4016 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-3221 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-4331 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-1891 (*1 *1 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-1865 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-1853 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-1983 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1253 *2)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1253 *2)))) (-1484 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -3886 (-629 *4 *5)) (|:| -3709 (-413 *5)))) (-5 *1 (-629 *4 *5)) (-5 *3 (-413 *5)))))
+(-13 (-233 |#2|) (-562) (-620 (-413 |#2|)) (-417 |#1|) (-1047 |#2|) (-10 -8 (-15 -4016 ((-112) $)) (-15 -3221 ((-570) $)) (-15 -4331 ((-570) $)) (-15 -1891 ($ $)) (-15 -1865 (|#1| $)) (-15 -1853 (|#1| $)) (-15 -1983 (|#1| $ (-570))) (-15 -3872 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -1484 ((-2 (|:| -3886 $) (|:| -3709 (-413 |#2|))) (-413 |#2|)))) |%noBranch|)))
+((-1556 (((-650 |#6|) (-650 |#4|) (-112)) 54)) (-3437 ((|#6| |#6|) 48)))
+(((-630 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3437 (|#6| |#6|)) (-15 -1556 ((-650 |#6|) (-650 |#4|) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|) (-1118 |#1| |#2| |#3| |#4|)) (T -630))
+((-1556 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *10)) (-5 *1 (-630 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *10 (-1118 *5 *6 *7 *8)))) (-3437 (*1 *2 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-630 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *2 (-1118 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3437 (|#6| |#6|)) (-15 -1556 ((-650 |#6|) (-650 |#4|) (-112))))
+((-2834 (((-112) |#3| (-777) (-650 |#3|)) 32)) (-3579 (((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2773 (-650 (-2 (|:| |irr| |#4|) (|:| -2227 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)) 73)))
+(((-631 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2834 ((-112) |#3| (-777) (-650 |#3|))) (-15 -3579 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2773 (-650 (-2 (|:| |irr| |#4|) (|:| -2227 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)))) (-856) (-799) (-311) (-956 |#3| |#2| |#1|)) (T -631))
+((-3579 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -2773 (-650 (-2 (|:| |irr| *10) (|:| -2227 (-570))))))) (-5 *6 (-650 *3)) (-5 *7 (-650 *8)) (-4 *8 (-856)) (-4 *3 (-311)) (-4 *10 (-956 *3 *9 *8)) (-4 *9 (-799)) (-5 *2 (-2 (|:| |polfac| (-650 *10)) (|:| |correct| *3) (|:| |corrfact| (-650 (-1182 *3))))) (-5 *1 (-631 *8 *9 *3 *10)) (-5 *4 (-650 (-1182 *3))))) (-2834 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-777)) (-5 *5 (-650 *3)) (-4 *3 (-311)) (-4 *6 (-856)) (-4 *7 (-799)) (-5 *2 (-112)) (-5 *1 (-631 *6 *7 *3 *8)) (-4 *8 (-956 *3 *7 *6)))))
+(-10 -7 (-15 -2834 ((-112) |#3| (-777) (-650 |#3|))) (-15 -3579 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2773 (-650 (-2 (|:| |irr| |#4|) (|:| -2227 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|))))
+((-2417 (((-112) $ $) NIL)) (-2123 (((-1144) $) 11)) (-2112 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-632) (-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))) (T -632))
+((-2112 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))))
+(-13 (-1092) (-10 -8 (-15 -2112 ((-1144) $)) (-15 -2123 ((-1144) $))))
+((-2417 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-3374 (($ $) 77)) (-2635 (((-670 |#1| |#2|) $) 60)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 81)) (-3159 (((-650 (-298 |#2|)) $ $) 42)) (-3479 (((-1129) $) NIL)) (-4388 (($ (-670 |#1| |#2|)) 56)) (-2488 (($ $ $) NIL)) (-2522 (($ $ $) NIL)) (-3735 (((-868) $) 66) (((-1292 |#1| |#2|) $) NIL) (((-1297 |#1| |#2|) $) 74)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 61 T CONST)) (-3755 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) 41)) (-3527 (((-650 (-670 |#1| |#2|)) (-650 |#1|)) 73)) (-4256 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) 46)) (-2872 (((-112) $ $) 62)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 52)))
+(((-633 |#1| |#2| |#3|) (-13 (-479) (-10 -8 (-15 -4388 ($ (-670 |#1| |#2|))) (-15 -2635 ((-670 |#1| |#2|) $)) (-15 -4256 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3735 ((-1292 |#1| |#2|) $)) (-15 -3735 ((-1297 |#1| |#2|) $)) (-15 -3374 ($ $)) (-15 -3039 ((-650 |#1|) $)) (-15 -3527 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -3755 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -3159 ((-650 (-298 |#2|)) $ $)))) (-856) (-13 (-174) (-723 (-413 (-570)))) (-928)) (T -633))
+((-4388 (*1 *1 *2) (-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-5 *1 (-633 *3 *4 *5)) (-14 *5 (-928)))) (-2635 (*1 *2 *1) (-12 (-5 *2 (-670 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-4256 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| (-900 *3)) (|:| |c| *4)))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1297 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3374 (*1 *1 *1) (-12 (-5 *1 (-633 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-13 (-174) (-723 (-413 (-570))))) (-14 *4 (-928)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3527 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-670 *4 *5))) (-5 *1 (-633 *4 *5 *6)) (-4 *5 (-13 (-174) (-723 (-413 (-570))))) (-14 *6 (-928)))) (-3755 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| (-678 *3)) (|:| |c| *4)))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))) (-3159 (*1 *2 *1 *1) (-12 (-5 *2 (-650 (-298 *4))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856)) (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))))
+(-13 (-479) (-10 -8 (-15 -4388 ($ (-670 |#1| |#2|))) (-15 -2635 ((-670 |#1| |#2|) $)) (-15 -4256 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3735 ((-1292 |#1| |#2|) $)) (-15 -3735 ((-1297 |#1| |#2|) $)) (-15 -3374 ($ $)) (-15 -3039 ((-650 |#1|) $)) (-15 -3527 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -3755 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -3159 ((-650 (-298 |#2|)) $ $))))
+((-1556 (((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)) 103) (((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112)) 77)) (-4080 (((-112) (-650 (-786 |#1| (-870 |#2|)))) 26)) (-3364 (((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)) 102)) (-2890 (((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112)) 76)) (-4013 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|)))) 30)) (-3798 (((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|)))) 29)))
+(((-634 |#1| |#2|) (-10 -7 (-15 -4080 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -3798 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -4013 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2890 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -3364 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1556 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1556 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)))) (-458) (-650 (-1186))) (T -634))
+((-1556 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6))))) (-5 *1 (-634 *5 *6)))) (-1556 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-634 *5 *6)))) (-3364 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6))))) (-5 *1 (-634 *5 *6)))) (-2890 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-634 *5 *6)))) (-4013 (*1 *2 *2) (-12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-3798 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-4080 (*1 *2 *3) (-12 (-5 *3 (-650 (-786 *4 (-870 *5)))) (-4 *4 (-458)) (-14 *5 (-650 (-1186))) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
+(-10 -7 (-15 -4080 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -3798 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -4013 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2890 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -3364 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1556 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1556 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))))
+((-2735 (($ $) 38)) (-2602 (($ $) 21)) (-2712 (($ $) 37)) (-2579 (($ $) 22)) (-4087 (($ $) 36)) (-2622 (($ $) 23)) (-1315 (($) 48)) (-2635 (($ $) 45)) (-4146 (($ $) 17)) (-3024 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)) (-4388 (($ $) 46)) (-2537 (($ $) 15)) (-2568 (($ $) 16)) (-4098 (($ $) 35)) (-2634 (($ $) 24)) (-2746 (($ $) 34)) (-2612 (($ $) 25)) (-2723 (($ $) 33)) (-2590 (($ $) 26)) (-4137 (($ $) 44)) (-2671 (($ $) 32)) (-4112 (($ $) 43)) (-2647 (($ $) 31)) (-4157 (($ $) 42)) (-2691 (($ $) 30)) (-1510 (($ $) 41)) (-2701 (($ $) 29)) (-4150 (($ $) 40)) (-2681 (($ $) 28)) (-4123 (($ $) 39)) (-2660 (($ $) 27)) (-3122 (($ $) 19)) (-2011 (($ $) 20)) (-2141 (($ $) 18)) (** (($ $ $) 47)))
(((-635) (-141)) (T -635))
-((-2332 (*1 *1 *1) (-4 *1 (-635))) (-2211 (*1 *1 *1) (-4 *1 (-635))) (-3456 (*1 *1 *1) (-4 *1 (-635))) (-4146 (*1 *1 *1) (-4 *1 (-635))) (-2568 (*1 *1 *1) (-4 *1 (-635))) (-2537 (*1 *1 *1) (-4 *1 (-635))))
-(-13 (-966) (-1211) (-10 -8 (-15 -2332 ($ $)) (-15 -2211 ($ $)) (-15 -3456 ($ $)) (-15 -4146 ($ $)) (-15 -2568 ($ $)) (-15 -2537 ($ $))))
-(((-35) . T) ((-95) . T) ((-288) . T) ((-499) . T) ((-966) . T) ((-1211) . T) ((-1214) . T))
-((-3680 (((-115) (-115)) 88)) (-4146 ((|#2| |#2|) 28)) (-2642 ((|#2| |#2| (-1101 |#2|)) 84) ((|#2| |#2| (-1186)) 50)) (-2537 ((|#2| |#2|) 27)) (-2568 ((|#2| |#2|) 29)) (-2004 (((-112) (-115)) 33)) (-2211 ((|#2| |#2|) 24)) (-2332 ((|#2| |#2|) 26)) (-3456 ((|#2| |#2|) 25)))
-(((-636 |#1| |#2|) (-10 -7 (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -2332 (|#2| |#2|)) (-15 -2211 (|#2| |#2|)) (-15 -3456 (|#2| |#2|)) (-15 -4146 (|#2| |#2|)) (-15 -2537 (|#2| |#2|)) (-15 -2568 (|#2| |#2|)) (-15 -2642 (|#2| |#2| (-1186))) (-15 -2642 (|#2| |#2| (-1101 |#2|)))) (-562) (-13 (-436 |#1|) (-1011) (-1211))) (T -636))
-((-2642 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1211))) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)))) (-2642 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1211))))) (-2568 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1211))))) (-2537 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1211))))) (-4146 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1211))))) (-3456 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1211))))) (-2211 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1211))))) (-2332 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1211))))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-636 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011) (-1211))))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-636 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1211))))))
-(-10 -7 (-15 -2004 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -2332 (|#2| |#2|)) (-15 -2211 (|#2| |#2|)) (-15 -3456 (|#2| |#2|)) (-15 -4146 (|#2| |#2|)) (-15 -2537 (|#2| |#2|)) (-15 -2568 (|#2| |#2|)) (-15 -2642 (|#2| |#2| (-1186))) (-15 -2642 (|#2| |#2| (-1101 |#2|))))
-((-2059 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 66)) (-3063 (((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 92)) (-3092 (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 94) (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 93)) (-3268 (((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|))) 137)) (-2979 (((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 107)) (-2444 (((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|))) 147)) (-4179 (((-1276 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|))) 71)) (-4362 (((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 48)) (-1445 (((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 63)) (-3558 (((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 115)))
-(((-637 |#1| |#2|) (-10 -7 (-15 -3268 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -2444 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -3063 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -3092 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -3092 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -4362 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -4179 ((-1276 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -3558 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2979 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1445 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2059 ((-487 |#1| |#2|) (-249 |#1| |#2|)))) (-650 (-1186)) (-458)) (T -637))
-((-2059 (*1 *2 *3) (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-487 *4 *5)) (-5 *1 (-637 *4 *5)))) (-1445 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-249 *4 *5))) (-5 *2 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))) (-2979 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-870 *4)) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))) (-3558 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-249 *5 *6))) (-4 *6 (-458)) (-5 *2 (-249 *5 *6)) (-14 *5 (-650 (-1186))) (-5 *1 (-637 *5 *6)))) (-4179 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-487 *5 *6))) (-5 *3 (-487 *5 *6)) (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-1276 *6)) (-5 *1 (-637 *5 *6)))) (-4362 (*1 *2 *2) (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))) (-3092 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5)) (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6)) (-4 *6 (-458)))) (-3092 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5)) (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6)) (-4 *6 (-458)))) (-3063 (*1 *2 *3) (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-650 (-249 *4 *5))) (-5 *1 (-637 *4 *5)))) (-2444 (*1 *2 *3) (-12 (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-2 (|:| |glbase| (-650 (-249 *4 *5))) (|:| |glval| (-650 (-570))))) (-5 *1 (-637 *4 *5)) (-5 *3 (-650 (-249 *4 *5))))) (-3268 (*1 *2 *3) (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-2 (|:| |gblist| (-650 (-249 *4 *5))) (|:| |gvlist| (-650 (-570))))) (-5 *1 (-637 *4 *5)))))
-(-10 -7 (-15 -3268 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -2444 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -3063 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -3092 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -3092 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -4362 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -4179 ((-1276 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -3558 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2979 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1445 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2059 ((-487 |#1| |#2|) (-249 |#1| |#2|))))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) NIL)) (-3225 (((-1281) $ (-1168) (-1168)) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 (((-52) $ (-1168) (-52)) 16) (((-52) $ (-1186) (-52)) 17)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 (-52) "failed") (-1168) $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109))))) (-2513 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1702 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $ (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (((-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $ (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-3790 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4449)))) (-3712 (((-52) $ (-1168)) NIL)) (-2836 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-650 (-52)) $) NIL (|has| $ (-6 -4448)))) (-2573 (($ $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2849 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-650 (-52)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109))))) (-4329 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-4197 (($ (-394)) 9)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109))))) (-2760 (((-650 (-1168)) $) NIL)) (-2696 (((-112) (-1168) $) NIL)) (-3784 (((-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL)) (-2278 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL)) (-2344 (((-650 (-1168)) $) NIL)) (-1354 (((-112) (-1168) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109))))) (-3443 (((-52) $) NIL (|has| (-1168) (-856)))) (-3321 (((-3 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) "failed") (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL)) (-1952 (($ $ (-52)) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (($ $ (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (($ $ (-650 (-52)) (-650 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-298 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-650 (-298 (-52)))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109))))) (-4245 (((-650 (-52)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 (((-52) $ (-1168)) 14) (((-52) $ (-1168) (-52)) NIL) (((-52) $ (-1186)) 15)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 (-52))) (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-638) (-13 (-1202 (-1168) (-52)) (-10 -8 (-15 -4197 ($ (-394))) (-15 -2573 ($ $)) (-15 -1876 ((-52) $ (-1186))) (-15 -3895 ((-52) $ (-1186) (-52)))))) (T -638))
-((-4197 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-638)))) (-2573 (*1 *1 *1) (-5 *1 (-638))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-52)) (-5 *1 (-638)))) (-3895 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1186)) (-5 *1 (-638)))))
-(-13 (-1202 (-1168) (-52)) (-10 -8 (-15 -4197 ($ (-394))) (-15 -2573 ($ $)) (-15 -1876 ((-52) $ (-1186))) (-15 -3895 ((-52) $ (-1186) (-52)))))
+((-2011 (*1 *1 *1) (-4 *1 (-635))) (-3122 (*1 *1 *1) (-4 *1 (-635))) (-2141 (*1 *1 *1) (-4 *1 (-635))) (-4146 (*1 *1 *1) (-4 *1 (-635))) (-2568 (*1 *1 *1) (-4 *1 (-635))) (-2537 (*1 *1 *1) (-4 *1 (-635))))
+(-13 (-966) (-1212) (-10 -8 (-15 -2011 ($ $)) (-15 -3122 ($ $)) (-15 -2141 ($ $)) (-15 -4146 ($ $)) (-15 -2568 ($ $)) (-15 -2537 ($ $))))
+(((-35) . T) ((-95) . T) ((-288) . T) ((-499) . T) ((-966) . T) ((-1212) . T) ((-1215) . T))
+((-3680 (((-115) (-115)) 88)) (-4146 ((|#2| |#2|) 28)) (-3024 ((|#2| |#2| (-1101 |#2|)) 84) ((|#2| |#2| (-1186)) 50)) (-2537 ((|#2| |#2|) 27)) (-2568 ((|#2| |#2|) 29)) (-2818 (((-112) (-115)) 33)) (-3122 ((|#2| |#2|) 24)) (-2011 ((|#2| |#2|) 26)) (-2141 ((|#2| |#2|) 25)))
+(((-636 |#1| |#2|) (-10 -7 (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -2011 (|#2| |#2|)) (-15 -3122 (|#2| |#2|)) (-15 -2141 (|#2| |#2|)) (-15 -4146 (|#2| |#2|)) (-15 -2537 (|#2| |#2|)) (-15 -2568 (|#2| |#2|)) (-15 -3024 (|#2| |#2| (-1186))) (-15 -3024 (|#2| |#2| (-1101 |#2|)))) (-562) (-13 (-436 |#1|) (-1011) (-1212))) (T -636))
+((-3024 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)))) (-3024 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))))) (-2568 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2537 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-4146 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2141 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-3122 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2011 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-3680 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-636 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011) (-1212))))) (-2818 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-636 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1212))))))
+(-10 -7 (-15 -2818 ((-112) (-115))) (-15 -3680 ((-115) (-115))) (-15 -2011 (|#2| |#2|)) (-15 -3122 (|#2| |#2|)) (-15 -2141 (|#2| |#2|)) (-15 -4146 (|#2| |#2|)) (-15 -2537 (|#2| |#2|)) (-15 -2568 (|#2| |#2|)) (-15 -3024 (|#2| |#2| (-1186))) (-15 -3024 (|#2| |#2| (-1101 |#2|))))
+((-2211 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 66)) (-2673 (((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 92)) (-2920 (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 94) (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 93)) (-4128 (((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|))) 137)) (-3084 (((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 107)) (-1862 (((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|))) 147)) (-1856 (((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|))) 71)) (-2903 (((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 48)) (-1557 (((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 63)) (-3760 (((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 115)))
+(((-637 |#1| |#2|) (-10 -7 (-15 -4128 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -1862 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -2673 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -2920 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -2920 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -2903 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1856 ((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -3760 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -3084 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1557 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2211 ((-487 |#1| |#2|) (-249 |#1| |#2|)))) (-650 (-1186)) (-458)) (T -637))
+((-2211 (*1 *2 *3) (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-487 *4 *5)) (-5 *1 (-637 *4 *5)))) (-1557 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-249 *4 *5))) (-5 *2 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))) (-3084 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-870 *4)) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))) (-3760 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-249 *5 *6))) (-4 *6 (-458)) (-5 *2 (-249 *5 *6)) (-14 *5 (-650 (-1186))) (-5 *1 (-637 *5 *6)))) (-1856 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-487 *5 *6))) (-5 *3 (-487 *5 *6)) (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-1277 *6)) (-5 *1 (-637 *5 *6)))) (-2903 (*1 *2 *2) (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5)) (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6)) (-4 *6 (-458)))) (-2920 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5)) (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6)) (-4 *6 (-458)))) (-2673 (*1 *2 *3) (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-650 (-249 *4 *5))) (-5 *1 (-637 *4 *5)))) (-1862 (*1 *2 *3) (-12 (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-2 (|:| |glbase| (-650 (-249 *4 *5))) (|:| |glval| (-650 (-570))))) (-5 *1 (-637 *4 *5)) (-5 *3 (-650 (-249 *4 *5))))) (-4128 (*1 *2 *3) (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *2 (-2 (|:| |gblist| (-650 (-249 *4 *5))) (|:| |gvlist| (-650 (-570))))) (-5 *1 (-637 *4 *5)))))
+(-10 -7 (-15 -4128 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -1862 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -2673 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -2920 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -2920 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -2903 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1856 ((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -3760 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -3084 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1557 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2211 ((-487 |#1| |#2|) (-249 |#1| |#2|))))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) NIL)) (-3727 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 (((-52) $ (-1168) (-52)) 16) (((-52) $ (-1186) (-52)) 17)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 (-52) "failed") (-1168) $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109))))) (-3076 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1703 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $ (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (((-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $ (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3789 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4450)))) (-3713 (((-52) $ (-1168)) NIL)) (-2835 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-3687 (($ $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3201 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-2596 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-4197 (($ (-394)) 9)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109))))) (-2761 (((-650 (-1168)) $) NIL)) (-2338 (((-112) (-1168) $) NIL)) (-2192 (((-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL)) (-2599 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL)) (-2122 (((-650 (-1168)) $) NIL)) (-2083 (((-112) (-1168) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109))))) (-3443 (((-52) $) NIL (|has| (-1168) (-856)))) (-3281 (((-3 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) "failed") (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL)) (-3531 (($ $ (-52)) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (($ $ (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (($ $ (-650 (-52)) (-650 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-298 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-650 (-298 (-52)))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-4348 (((-650 (-52)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 (((-52) $ (-1168)) 14) (((-52) $ (-1168) (-52)) NIL) (((-52) $ (-1186)) 15)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 (-52))) (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-638) (-13 (-1203 (-1168) (-52)) (-10 -8 (-15 -4197 ($ (-394))) (-15 -3687 ($ $)) (-15 -1877 ((-52) $ (-1186))) (-15 -3894 ((-52) $ (-1186) (-52)))))) (T -638))
+((-4197 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-638)))) (-3687 (*1 *1 *1) (-5 *1 (-638))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-52)) (-5 *1 (-638)))) (-3894 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1186)) (-5 *1 (-638)))))
+(-13 (-1203 (-1168) (-52)) (-10 -8 (-15 -4197 ($ (-394))) (-15 -3687 ($ $)) (-15 -1877 ((-52) $ (-1186))) (-15 -3894 ((-52) $ (-1186) (-52)))))
((-2975 (($ $ |#2|) 10)))
(((-639 |#1| |#2|) (-10 -8 (-15 -2975 (|#1| |#1| |#2|))) (-640 |#2|) (-174)) (T -639))
NIL
(-10 -8 (-15 -2975 (|#1| |#1| |#2|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3748 (($ $ $) 34)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 33 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3749 (($ $ $) 34)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 33 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-640 |#1|) (-141) (-174)) (T -640))
-((-3748 (*1 *1 *1 *1) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174)) (-4 *2 (-368)))))
-(-13 (-723 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3748 ($ $ $)) (IF (|has| |t#1| (-368)) (-15 -2975 ($ $ |t#1|)) |%noBranch|)))
+((-3749 (*1 *1 *1 *1) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174)) (-4 *2 (-368)))))
+(-13 (-723 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3749 ($ $ $)) (IF (|has| |t#1| (-368)) (-15 -2975 ($ $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1733 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-1759 (((-1276 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1276 (-695 |#1|)) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-2201 (((-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-2450 (($) NIL T CONST)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1822 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2893 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-4361 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-2520 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-1535 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3065 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-3937 (($ $ (-928)) NIL)) (-3602 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3929 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4290 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-1458 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-3161 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2049 (($ (-1276 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1276 |#1|) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-3413 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3934 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-1460 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3388 (($ $ (-928)) NIL)) (-3060 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3207 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3149 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2546 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1401 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-4395 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3215 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-2168 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4004 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-2247 (($ $ (-928)) NIL)) (-3386 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1395 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2191 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-4265 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-2455 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1903 (((-1168) $) NIL)) (-3641 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1482 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3204 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3479 (((-1129) $) NIL)) (-1687 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1876 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-1807 (((-695 |#1|) (-1276 $)) NIL (|has| |#2| (-423 |#1|))) (((-1276 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1276 $) (-1276 $)) NIL (|has| |#2| (-372 |#1|))) (((-1276 |#1|) $ (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-1416 (($ (-1276 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1276 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3824 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1276 $)) NIL (|has| |#2| (-372 |#1|)))) (-3688 (($ $ $) NIL)) (-4068 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3735 (((-868) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL (|has| |#2| (-423 |#1|)))) (-4365 (((-650 (-1276 |#1|))) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3183 (($ $ $ $) NIL)) (-2170 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3381 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-1960 (($ $ $) NIL)) (-4213 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3987 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3463 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) 20)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2101 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2303 (((-1277 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1277 (-695 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3016 (((-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3761 (($) NIL T CONST)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1679 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3649 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2893 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3129 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3860 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2693 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-4333 (($ $ (-928)) NIL)) (-4191 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-4255 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3497 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-4339 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-4362 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2125 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1277 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2937 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3933 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-4356 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2710 (($ $ (-928)) NIL)) (-2637 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1734 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2335 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3394 (((-3 $ "failed")) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1883 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2078 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1806 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3984 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2508 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-3548 (($ $ (-928)) NIL)) (-2688 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-4272 (((-1182 |#1|) $) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4219 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3231 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-3809 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4268 (((-1168) $) NIL)) (-3303 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1493 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1694 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3479 (((-1129) $) NIL)) (-2851 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1877 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-1533 (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $) (-1277 $)) NIL (|has| |#2| (-372 |#1|))) (((-1277 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1417 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-1334 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2522 (($ $ $) NIL)) (-2024 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3735 (((-868) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL (|has| |#2| (-423 |#1|)))) (-2934 (((-650 (-1277 |#1|))) NIL (-2740 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1483 (($ $ $ $) NIL)) (-4004 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3381 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3619 (($ $ $) NIL)) (-4015 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3596 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2208 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) 20)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-641 |#1| |#2|) (-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3735 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|))) (-174) (-750 |#1|)) (T -641))
((-3735 (*1 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-641 *3 *2)) (-4 *2 (-750 *3)))))
(-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3735 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|)))
-((-2837 (((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168)) 106) (((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|))) 131)) (-3077 (((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|))) 136)))
-(((-642 |#1| |#2|) (-10 -7 (-15 -2837 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -3077 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -2837 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -642))
-((-2837 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-298 *3)) (-5 *5 (-1168)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-849 *3)) (-5 *1 (-642 *6 *3)))) (-3077 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-298 (-839 *3))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-839 *3)) (-5 *1 (-642 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))) (-2837 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-849 *3))) (-4 *3 (-13 (-27) (-1211) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (-849 *3) (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed")) (|:| |rightHandLimit| (-3 (-849 *3) "failed"))) "failed")) (-5 *1 (-642 *5 *3)))))
-(-10 -7 (-15 -2837 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -3077 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -2837 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168))))
-((-2837 (((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168)) 86) (((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|)))) 20) (((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-849 (-959 |#1|)))) 35)) (-3077 (((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|)))) 23) (((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|)))) 43)))
-(((-643 |#1|) (-10 -7 (-15 -2837 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-849 (-959 |#1|))))) (-15 -2837 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -3077 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -3077 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -2837 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168)))) (-458)) (T -643))
-((-2837 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-298 (-413 (-959 *6)))) (-5 *5 (-1168)) (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-849 *3)) (-5 *1 (-643 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-458)) (-5 *2 (-839 *3)) (-5 *1 (-643 *5)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-839 (-959 *5)))) (-4 *5 (-458)) (-5 *2 (-839 (-413 (-959 *5)))) (-5 *1 (-643 *5)) (-5 *3 (-413 (-959 *5))))) (-2837 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-458)) (-5 *2 (-3 (-849 *3) (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed")) (|:| |rightHandLimit| (-3 (-849 *3) "failed"))) "failed")) (-5 *1 (-643 *5)))) (-2837 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-849 (-959 *5)))) (-4 *5 (-458)) (-5 *2 (-3 (-849 (-413 (-959 *5))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 *5))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 *5))) "failed"))) "failed")) (-5 *1 (-643 *5)) (-5 *3 (-413 (-959 *5))))))
-(-10 -7 (-15 -2837 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-849 (-959 |#1|))))) (-15 -2837 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -3077 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -3077 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -2837 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168))))
-((-4147 (((-3 (-1276 (-413 |#1|)) "failed") (-1276 |#2|) |#2|) 64 (-1754 (|has| |#1| (-368)))) (((-3 (-1276 |#1|) "failed") (-1276 |#2|) |#2|) 49 (|has| |#1| (-368)))) (-2637 (((-112) (-1276 |#2|)) 33)) (-4371 (((-3 (-1276 |#1|) "failed") (-1276 |#2|)) 40)))
-(((-644 |#1| |#2|) (-10 -7 (-15 -2637 ((-112) (-1276 |#2|))) (-15 -4371 ((-3 (-1276 |#1|) "failed") (-1276 |#2|))) (IF (|has| |#1| (-368)) (-15 -4147 ((-3 (-1276 |#1|) "failed") (-1276 |#2|) |#2|)) (-15 -4147 ((-3 (-1276 (-413 |#1|)) "failed") (-1276 |#2|) |#2|)))) (-562) (-645 |#1|)) (T -644))
-((-4147 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 *5)) (-1754 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1276 (-413 *5))) (-5 *1 (-644 *5 *4)))) (-4147 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 *5)) (-4 *5 (-368)) (-4 *5 (-562)) (-5 *2 (-1276 *5)) (-5 *1 (-644 *5 *4)))) (-4371 (*1 *2 *3) (|partial| -12 (-5 *3 (-1276 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562)) (-5 *2 (-1276 *4)) (-5 *1 (-644 *4 *5)))) (-2637 (*1 *2 *3) (-12 (-5 *3 (-1276 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-644 *4 *5)))))
-(-10 -7 (-15 -2637 ((-112) (-1276 |#2|))) (-15 -4371 ((-3 (-1276 |#1|) "failed") (-1276 |#2|))) (IF (|has| |#1| (-368)) (-15 -4147 ((-3 (-1276 |#1|) "failed") (-1276 |#2|) |#2|)) (-15 -4147 ((-3 (-1276 (-413 |#1|)) "failed") (-1276 |#2|) |#2|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-4177 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 39)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-4386 (((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168)) 106) (((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|))) 131)) (-2808 (((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|))) 136)))
+(((-642 |#1| |#2|) (-10 -7 (-15 -4386 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -2808 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -4386 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -642))
+((-4386 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-298 *3)) (-5 *5 (-1168)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-849 *3)) (-5 *1 (-642 *6 *3)))) (-2808 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-298 (-839 *3))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-839 *3)) (-5 *1 (-642 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))) (-4386 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-849 *3))) (-4 *3 (-13 (-27) (-1212) (-436 *5))) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-3 (-849 *3) (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed")) (|:| |rightHandLimit| (-3 (-849 *3) "failed"))) "failed")) (-5 *1 (-642 *5 *3)))))
+(-10 -7 (-15 -4386 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -2808 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -4386 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168))))
+((-4386 (((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168)) 86) (((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|)))) 20) (((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-849 (-959 |#1|)))) 35)) (-2808 (((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|)))) 23) (((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|)))) 43)))
+(((-643 |#1|) (-10 -7 (-15 -4386 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-849 (-959 |#1|))))) (-15 -4386 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -2808 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -2808 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -4386 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168)))) (-458)) (T -643))
+((-4386 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-298 (-413 (-959 *6)))) (-5 *5 (-1168)) (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-849 *3)) (-5 *1 (-643 *6)))) (-2808 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-458)) (-5 *2 (-839 *3)) (-5 *1 (-643 *5)))) (-2808 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-839 (-959 *5)))) (-4 *5 (-458)) (-5 *2 (-839 (-413 (-959 *5)))) (-5 *1 (-643 *5)) (-5 *3 (-413 (-959 *5))))) (-4386 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-458)) (-5 *2 (-3 (-849 *3) (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed")) (|:| |rightHandLimit| (-3 (-849 *3) "failed"))) "failed")) (-5 *1 (-643 *5)))) (-4386 (*1 *2 *3 *4) (-12 (-5 *4 (-298 (-849 (-959 *5)))) (-4 *5 (-458)) (-5 *2 (-3 (-849 (-413 (-959 *5))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 *5))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 *5))) "failed"))) "failed")) (-5 *1 (-643 *5)) (-5 *3 (-413 (-959 *5))))))
+(-10 -7 (-15 -4386 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-849 (-959 |#1|))))) (-15 -4386 ((-3 (-849 (-413 (-959 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-849 (-413 (-959 |#1|))) "failed"))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -2808 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -2808 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -4386 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168))))
+((-1515 (((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|) 64 (-1753 (|has| |#1| (-368)))) (((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|) 49 (|has| |#1| (-368)))) (-2972 (((-112) (-1277 |#2|)) 33)) (-2997 (((-3 (-1277 |#1|) "failed") (-1277 |#2|)) 40)))
+(((-644 |#1| |#2|) (-10 -7 (-15 -2972 ((-112) (-1277 |#2|))) (-15 -2997 ((-3 (-1277 |#1|) "failed") (-1277 |#2|))) (IF (|has| |#1| (-368)) (-15 -1515 ((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|)) (-15 -1515 ((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|)))) (-562) (-645 |#1|)) (T -644))
+((-1515 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 *5)) (-1753 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1277 (-413 *5))) (-5 *1 (-644 *5 *4)))) (-1515 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 *5)) (-4 *5 (-368)) (-4 *5 (-562)) (-5 *2 (-1277 *5)) (-5 *1 (-644 *5 *4)))) (-2997 (*1 *2 *3) (|partial| -12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562)) (-5 *2 (-1277 *4)) (-5 *1 (-644 *4 *5)))) (-2972 (*1 *2 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-644 *4 *5)))))
+(-10 -7 (-15 -2972 ((-112) (-1277 |#2|))) (-15 -2997 ((-3 (-1277 |#1|) "failed") (-1277 |#2|))) (IF (|has| |#1| (-368)) (-15 -1515 ((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|)) (-15 -1515 ((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1836 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 39)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-645 |#1|) (-141) (-1058)) (T -645))
-((-4177 (*1 *2 *3) (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058)) (-5 *2 (-695 *4)))) (-4177 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *1)) (-5 *4 (-1276 *1)) (-4 *1 (-645 *5)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3442 (-695 *5)) (|:| |vec| (-1276 *5)))))))
-(-13 (-1058) (-10 -8 (-15 -4177 ((-695 |t#1|) (-695 $))) (-15 -4177 ((-2 (|:| -3442 (-695 |t#1|)) (|:| |vec| (-1276 |t#1|))) (-695 $) (-1276 $)))))
+((-1836 (*1 *2 *3) (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058)) (-5 *2 (-695 *4)))) (-1836 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *1)) (-5 *4 (-1277 *1)) (-4 *1 (-645 *5)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2042 (-695 *5)) (|:| |vec| (-1277 *5)))))))
+(-13 (-1058) (-10 -8 (-15 -1836 ((-695 |t#1|) (-695 $))) (-15 -1836 ((-2 (|:| -2042 (-695 |t#1|)) (|:| |vec| (-1277 |t#1|))) (-695 $) (-1277 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 16 T CONST)) (-2872 (((-112) $ $) 6)) (* (($ |#1| $) 14) (($ $ |#1|) 19)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 16 T CONST)) (-2872 (((-112) $ $) 6)) (* (($ |#1| $) 14) (($ $ |#1|) 19)))
(((-646 |#1|) (-141) (-1067)) (T -646))
NIL
(-13 (-652 |t#1|) (-1060 |t#1|))
(((-102) . T) ((-619 (-868)) . T) ((-652 |#1|) . T) ((-1060 |#1|) . T) ((-1109) . T))
((-4121 ((|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|) 17) ((|#2| (-650 |#1|) (-650 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|)) 12)))
-(((-647 |#1| |#2|) (-10 -7 (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|)))) (-1109) (-1226)) (T -647))
-((-4121 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1109)) (-4 *2 (-1226)) (-5 *1 (-647 *5 *2)))) (-4121 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-650 *5)) (-5 *4 (-650 *6)) (-4 *5 (-1109)) (-4 *6 (-1226)) (-5 *1 (-647 *5 *6)))) (-4121 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-4 *5 (-1109)) (-4 *2 (-1226)) (-5 *1 (-647 *5 *2)))) (-4121 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 *5)) (-4 *6 (-1109)) (-4 *5 (-1226)) (-5 *2 (-1 *5 *6)) (-5 *1 (-647 *6 *5)))) (-4121 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-4 *5 (-1109)) (-4 *2 (-1226)) (-5 *1 (-647 *5 *2)))) (-4121 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *6)) (-4 *5 (-1109)) (-4 *6 (-1226)) (-5 *2 (-1 *6 *5)) (-5 *1 (-647 *5 *6)))))
+(((-647 |#1| |#2|) (-10 -7 (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|)))) (-1109) (-1227)) (T -647))
+((-4121 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1109)) (-4 *2 (-1227)) (-5 *1 (-647 *5 *2)))) (-4121 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-650 *5)) (-5 *4 (-650 *6)) (-4 *5 (-1109)) (-4 *6 (-1227)) (-5 *1 (-647 *5 *6)))) (-4121 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-4 *5 (-1109)) (-4 *2 (-1227)) (-5 *1 (-647 *5 *2)))) (-4121 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 *5)) (-4 *6 (-1109)) (-4 *5 (-1227)) (-5 *2 (-1 *5 *6)) (-5 *1 (-647 *6 *5)))) (-4121 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-4 *5 (-1109)) (-4 *2 (-1227)) (-5 *1 (-647 *5 *2)))) (-4121 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *6)) (-4 *5 (-1109)) (-4 *6 (-1227)) (-5 *2 (-1 *6 *5)) (-5 *1 (-647 *5 *6)))))
(-10 -7 (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4121 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4121 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|))))
-((-3734 (((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 16)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 18)) (-1351 (((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)) 13)))
-(((-648 |#1| |#2|) (-10 -7 (-15 -3734 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1351 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)))) (-1226) (-1226)) (T -648))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-650 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-650 *6)) (-5 *1 (-648 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-650 *5)) (-4 *5 (-1226)) (-4 *2 (-1226)) (-5 *1 (-648 *5 *2)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-650 *6)) (-4 *6 (-1226)) (-4 *5 (-1226)) (-5 *2 (-650 *5)) (-5 *1 (-648 *6 *5)))))
-(-10 -7 (-15 -3734 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1351 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|))))
-((-1351 (((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)) 21)))
-(((-649 |#1| |#2| |#3|) (-10 -7 (-15 -1351 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)))) (-1226) (-1226) (-1226)) (T -649))
-((-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-650 *6)) (-5 *5 (-650 *7)) (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-650 *8)) (-5 *1 (-649 *6 *7 *8)))))
-(-10 -7 (-15 -1351 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1573 (($ $) NIL)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3239 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3288 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2512 (($ $ $) NIL (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "rest" $) NIL (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-3370 (($ $ $) 37 (|has| |#1| (-1109)))) (-3359 (($ $ $) 41 (|has| |#1| (-1109)))) (-3348 (($ $ $) 44 (|has| |#1| (-1109)))) (-1591 (($ (-1 (-112) |#1|) $) NIL)) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2533 ((|#1| $) NIL)) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3455 (($ $) 23) (($ $ (-777)) NIL)) (-2208 (($ $) NIL (|has| |#1| (-1109)))) (-3480 (($ $) 36 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1702 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-2356 (((-112) $) NIL)) (-3998 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-1739 (((-112) $) 11)) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2995 (($) 9 T CONST)) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-2190 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3068 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 40 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3312 (($ |#1|) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1728 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2278 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4285 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) 20) (($ $ (-777)) NIL)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-3412 (((-112) $) NIL)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) 39)) (-3743 (($) 38)) (-1876 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1243 (-570))) NIL) ((|#1| $ (-570)) 42) ((|#1| $ (-570) |#1|) NIL)) (-1678 (((-570) $ $) NIL)) (-1882 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-3150 (((-112) $) NIL)) (-3146 (($ $) NIL)) (-2839 (($ $) NIL (|has| $ (-6 -4449)))) (-2409 (((-777) $) NIL)) (-2567 (($ $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) 53 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) NIL)) (-3682 (($ |#1| $) 12)) (-2850 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2439 (($ $ $) 35) (($ |#1| $) 43) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1862 (($ $ $) 13)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2892 (((-1168) $) 31 (|has| |#1| (-834))) (((-1168) $ (-112)) 32 (|has| |#1| (-834))) (((-1281) (-828) $) 33 (|has| |#1| (-834))) (((-1281) (-828) $ (-112)) 34 (|has| |#1| (-834)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-650 |#1|) (-13 (-672 |#1|) (-10 -8 (-15 -2995 ($) -3640) (-15 -1739 ((-112) $)) (-15 -3682 ($ |#1| $)) (-15 -1862 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3370 ($ $ $)) (-15 -3359 ($ $ $)) (-15 -3348 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|))) (-1226)) (T -650))
-((-2995 (*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1226)))) (-1739 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1226)))) (-3682 (*1 *1 *2 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1226)))) (-1862 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1226)))) (-3370 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)))) (-3359 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)))) (-3348 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)))))
-(-13 (-672 |#1|) (-10 -8 (-15 -2995 ($) -3640) (-15 -1739 ((-112) $)) (-15 -3682 ($ |#1| $)) (-15 -1862 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3370 ($ $ $)) (-15 -3359 ($ $ $)) (-15 -3348 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11) (($ (-1191)) NIL) (((-1191) $) NIL) ((|#1| $) 8)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2942 (((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 16)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 18)) (-1352 (((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)) 13)))
+(((-648 |#1| |#2|) (-10 -7 (-15 -2942 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1352 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)))) (-1227) (-1227)) (T -648))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-650 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-650 *6)) (-5 *1 (-648 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-650 *5)) (-4 *5 (-1227)) (-4 *2 (-1227)) (-5 *1 (-648 *5 *2)))) (-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-650 *6)) (-4 *6 (-1227)) (-4 *5 (-1227)) (-5 *2 (-650 *5)) (-5 *1 (-648 *6 *5)))))
+(-10 -7 (-15 -2942 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1352 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|))))
+((-1352 (((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)) 21)))
+(((-649 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)))) (-1227) (-1227) (-1227)) (T -649))
+((-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-650 *6)) (-5 *5 (-650 *7)) (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-650 *8)) (-5 *1 (-649 *6 *7 *8)))))
+(-10 -7 (-15 -1352 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1574 (($ $) NIL)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3885 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-3287 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3066 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "rest" $) NIL (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3370 (($ $ $) 37 (|has| |#1| (-1109)))) (-3359 (($ $ $) 41 (|has| |#1| (-1109)))) (-3348 (($ $ $) 44 (|has| |#1| (-1109)))) (-3131 (($ (-1 (-112) |#1|) $) NIL)) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2533 ((|#1| $) NIL)) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3455 (($ $) 23) (($ $ (-777)) NIL)) (-3092 (($ $) NIL (|has| |#1| (-1109)))) (-3480 (($ $) 36 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1703 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-2237 (((-112) $) NIL)) (-3998 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1741 (((-112) $) 11)) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2995 (($) 9 T CONST)) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-4210 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2727 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 40 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3312 (($ |#1|) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1729 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2599 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4286 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) 20) (($ $ (-777)) NIL)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2928 (((-112) $) NIL)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) 39)) (-3006 (($) 38)) (-1877 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) 42) ((|#1| $ (-570) |#1|) NIL)) (-2763 (((-570) $ $) NIL)) (-4052 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4320 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-2345 (((-112) $) NIL)) (-2308 (($ $) NIL)) (-3103 (($ $) NIL (|has| $ (-6 -4450)))) (-1535 (((-777) $) NIL)) (-3631 (($ $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) 53 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) NIL)) (-3682 (($ |#1| $) 12)) (-3214 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2439 (($ $ $) 35) (($ |#1| $) 43) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1863 (($ $ $) 13)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3637 (((-1168) $) 31 (|has| |#1| (-834))) (((-1168) $ (-112)) 32 (|has| |#1| (-834))) (((-1282) (-828) $) 33 (|has| |#1| (-834))) (((-1282) (-828) $ (-112)) 34 (|has| |#1| (-834)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-650 |#1|) (-13 (-672 |#1|) (-10 -8 (-15 -2995 ($) -3640) (-15 -1741 ((-112) $)) (-15 -3682 ($ |#1| $)) (-15 -1863 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3370 ($ $ $)) (-15 -3359 ($ $ $)) (-15 -3348 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|))) (-1227)) (T -650))
+((-2995 (*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-1741 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1227)))) (-3682 (*1 *1 *2 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-1863 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-3370 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))) (-3359 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))) (-3348 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(-13 (-672 |#1|) (-10 -8 (-15 -2995 ($) -3640) (-15 -1741 ((-112) $)) (-15 -3682 ($ |#1| $)) (-15 -1863 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3370 ($ $ $)) (-15 -3359 ($ $ $)) (-15 -3348 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11) (($ (-1191)) NIL) (((-1191) $) NIL) ((|#1| $) 8)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-651 |#1|) (-13 (-1092) (-619 |#1|)) (-1109)) (T -651))
NIL
(-13 (-1092) (-619 |#1|))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 16 T CONST)) (-2872 (((-112) $ $) 6)) (* (($ |#1| $) 14)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 16 T CONST)) (-2872 (((-112) $ $) 6)) (* (($ |#1| $) 14)))
(((-652 |#1|) (-141) (-1067)) (T -652))
-((-1812 (*1 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067)))) (-4028 (*1 *2 *1) (-12 (-4 *1 (-652 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067)))))
-(-13 (-1109) (-10 -8 (-15 (-1812) ($) -3640) (-15 -4028 ((-112) $)) (-15 * ($ |t#1| $))))
+((-1814 (*1 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067)))) (-2745 (*1 *2 *1) (-12 (-4 *1 (-652 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067)))))
+(-13 (-1109) (-10 -8 (-15 (-1814) ($) -3640) (-15 -2745 ((-112) $)) (-15 * ($ |t#1| $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3467 (($ |#1| |#1| $) 46)) (-3594 (((-112) $ (-777)) NIL)) (-1591 (($ (-1 (-112) |#1|) $) 62 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2208 (($ $) 48)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) 59 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 61 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 9 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 37)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3784 ((|#1| $) 50)) (-2278 (($ |#1| $) 29) (($ |#1| $ (-777)) 45)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1899 ((|#1| $) 53)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 23)) (-3743 (($) 28)) (-2157 (((-112) $) 57)) (-4282 (((-650 (-2 (|:| -2223 |#1|) (|:| -3486 (-777)))) $) 69)) (-2271 (($) 26) (($ (-650 |#1|)) 19)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) 66 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 20)) (-1416 (((-542) $) 34 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) NIL)) (-3735 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 24)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 71 (|has| |#1| (-1109)))) (-2426 (((-777) $) 17 (|has| $ (-6 -4448)))))
-(((-653 |#1|) (-13 (-701 |#1|) (-10 -8 (-6 -4448) (-15 -2157 ((-112) $)) (-15 -3467 ($ |#1| |#1| $)))) (-1109)) (T -653))
-((-2157 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))) (-3467 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-1109)))))
-(-13 (-701 |#1|) (-10 -8 (-6 -4448) (-15 -2157 ((-112) $)) (-15 -3467 ($ |#1| |#1| $))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27)))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3467 (($ |#1| |#1| $) 46)) (-4095 (((-112) $ (-777)) NIL)) (-3131 (($ (-1 (-112) |#1|) $) 62 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-3092 (($ $) 48)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) 59 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 61 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 9 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 37)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2192 ((|#1| $) 50)) (-2599 (($ |#1| $) 29) (($ |#1| $ (-777)) 45)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-4223 ((|#1| $) 53)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 23)) (-3006 (($) 28)) (-3875 (((-112) $) 57)) (-3435 (((-650 (-2 (|:| -2224 |#1|) (|:| -3490 (-777)))) $) 69)) (-2535 (($) 26) (($ (-650 |#1|)) 19)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) 66 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 20)) (-1417 (((-542) $) 34 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) NIL)) (-3735 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 24)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 71 (|has| |#1| (-1109)))) (-2426 (((-777) $) 17 (|has| $ (-6 -4449)))))
+(((-653 |#1|) (-13 (-701 |#1|) (-10 -8 (-6 -4449) (-15 -3875 ((-112) $)) (-15 -3467 ($ |#1| |#1| $)))) (-1109)) (T -653))
+((-3875 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))) (-3467 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-1109)))))
+(-13 (-701 |#1|) (-10 -8 (-6 -4449) (-15 -3875 ((-112) $)) (-15 -3467 ($ |#1| |#1| $))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27)))
(((-654 |#1|) (-141) (-1067)) (T -654))
NIL
(-13 (-21) (-652 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777) $) 17)) (-1356 (($ $ |#1|) 69)) (-2697 (($ $) 39)) (-2258 (($ $) 37)) (-4378 (((-3 |#1| "failed") $) 61)) (-3080 ((|#1| $) NIL)) (-3175 (($ |#1| |#2| $) 79) (($ $ $) 81)) (-1559 (((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570)) 56)) (-2530 ((|#1| $ (-570)) 35)) (-1519 ((|#2| $ (-570)) 34)) (-2553 (($ (-1 |#1| |#1|) $) 41)) (-1381 (($ (-1 |#2| |#2|) $) 47)) (-1500 (($) 11)) (-4391 (($ |#1| |#2|) 24)) (-2091 (($ (-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|)))) 25)) (-3767 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $) 14)) (-1775 (($ |#1| $) 71)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2859 (((-112) $ $) 76)) (-3735 (((-868) $) 21) (($ |#1|) 18)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 27)))
-(((-655 |#1| |#2| |#3|) (-13 (-1109) (-1047 |#1|) (-10 -8 (-15 -1559 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -3767 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $)) (-15 -4391 ($ |#1| |#2|)) (-15 -2091 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))))) (-15 -1519 (|#2| $ (-570))) (-15 -2530 (|#1| $ (-570))) (-15 -2258 ($ $)) (-15 -2697 ($ $)) (-15 -3403 ((-777) $)) (-15 -1500 ($)) (-15 -1356 ($ $ |#1|)) (-15 -1775 ($ |#1| $)) (-15 -3175 ($ |#1| |#2| $)) (-15 -3175 ($ $ $)) (-15 -2859 ((-112) $ $)) (-15 -1381 ($ (-1 |#2| |#2|) $)) (-15 -2553 ($ (-1 |#1| |#1|) $)))) (-1109) (-23) |#2|) (T -655))
-((-1559 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-868) (-868) (-868))) (-5 *4 (-570)) (-5 *2 (-868)) (-5 *1 (-655 *5 *6 *7)) (-4 *5 (-1109)) (-4 *6 (-23)) (-14 *7 *6))) (-3767 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4)))) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-4391 (*1 *1 *2 *3) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2091 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4)))) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)))) (-1519 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-23)) (-5 *1 (-655 *4 *2 *5)) (-4 *4 (-1109)) (-14 *5 *2))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-1109)) (-5 *1 (-655 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2258 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2697 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3403 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-1500 (*1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-1356 (*1 *1 *1 *2) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-1775 (*1 *1 *2 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3175 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3175 (*1 *1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2859 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-1381 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)))) (-2553 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-655 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1109) (-1047 |#1|) (-10 -8 (-15 -1559 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -3767 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $)) (-15 -4391 ($ |#1| |#2|)) (-15 -2091 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))))) (-15 -1519 (|#2| $ (-570))) (-15 -2530 (|#1| $ (-570))) (-15 -2258 ($ $)) (-15 -2697 ($ $)) (-15 -3403 ((-777) $)) (-15 -1500 ($)) (-15 -1356 ($ $ |#1|)) (-15 -1775 ($ |#1| $)) (-15 -3175 ($ |#1| |#2| $)) (-15 -3175 ($ $ $)) (-15 -2859 ((-112) $ $)) (-15 -1381 ($ (-1 |#2| |#2|) $)) (-15 -2553 ($ (-1 |#1| |#1|) $))))
-((-4329 (((-570) $) 31)) (-4285 (($ |#2| $ (-570)) 27) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) 12)) (-1354 (((-112) (-570) $) 18)) (-2439 (($ $ |#2|) 24) (($ |#2| $) 25) (($ $ $) NIL) (($ (-650 $)) NIL)))
-(((-656 |#1| |#2|) (-10 -8 (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -4329 ((-570) |#1|)) (-15 -2344 ((-650 (-570)) |#1|)) (-15 -1354 ((-112) (-570) |#1|))) (-657 |#2|) (-1226)) (T -656))
-NIL
-(-10 -8 (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -4329 ((-570) |#1|)) (-15 -2344 ((-650 (-570)) |#1|)) (-15 -1354 ((-112) (-570) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 52)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1952 (($ $ |#1|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1243 (-570))) 64)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-657 |#1|) (-141) (-1226)) (T -657))
-((-4286 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-2439 (*1 *1 *1 *2) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1226)))) (-2439 (*1 *1 *2 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1226)))) (-2439 (*1 *1 *1 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1226)))) (-2439 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-1351 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-1243 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-4320 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-4320 (*1 *1 *1 *2) (-12 (-5 *2 (-1243 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-4285 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-657 *2)) (-4 *2 (-1226)))) (-4285 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1226)))) (-3895 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1243 (-570))) (|has| *1 (-6 -4449)) (-4 *1 (-657 *2)) (-4 *2 (-1226)))))
-(-13 (-610 (-570) |t#1|) (-152 |t#1|) (-10 -8 (-15 -4286 ($ (-777) |t#1|)) (-15 -2439 ($ $ |t#1|)) (-15 -2439 ($ |t#1| $)) (-15 -2439 ($ $ $)) (-15 -2439 ($ (-650 $))) (-15 -1351 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1876 ($ $ (-1243 (-570)))) (-15 -4320 ($ $ (-570))) (-15 -4320 ($ $ (-1243 (-570)))) (-15 -4285 ($ |t#1| $ (-570))) (-15 -4285 ($ $ $ (-570))) (IF (|has| $ (-6 -4449)) (-15 -3895 (|t#1| $ (-1243 (-570)) |t#1|)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-1654 (((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|)) 174) (((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) "failed") |#3| |#2| (-1186)) 44)))
-(((-658 |#1| |#2| |#3|) (-10 -7 (-15 -1654 ((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -1654 ((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1211) (-966)) (-662 |#2|)) (T -658))
-((-1654 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *2)) (-4 *2 (-13 (-29 *6) (-1211) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-658 *6 *2 *3)) (-4 *3 (-662 *2)))) (-1654 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1186)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-4 *4 (-13 (-29 *6) (-1211) (-966))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2331 (-650 *4)))) (-5 *1 (-658 *6 *4 *3)) (-4 *3 (-662 *4)))))
-(-10 -7 (-15 -1654 ((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -1654 ((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3390 (($ $) NIL (|has| |#1| (-368)))) (-4005 (($ $ $) NIL (|has| |#1| (-368)))) (-4011 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3218 (($ $ $) NIL (|has| |#1| (-368)))) (-2454 (($ $ $) NIL (|has| |#1| (-368)))) (-2580 (($ $ $) NIL (|has| |#1| (-368)))) (-4220 (($ $ $) NIL (|has| |#1| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-3181 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458)))) (-2081 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-4341 (((-777) $) NIL)) (-1433 (($ $ $) NIL (|has| |#1| (-368)))) (-4248 (($ $ $) NIL (|has| |#1| (-368)))) (-1422 (($ $ $) NIL (|has| |#1| (-368)))) (-3582 (($ $ $) NIL (|has| |#1| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2235 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1876 ((|#1| $ |#1|) NIL)) (-3957 (($ $ $) NIL (|has| |#1| (-368)))) (-1601 (((-777) $) NIL)) (-3030 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) NIL)) (-1478 (($ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777) $) 17)) (-3241 (($ $ |#1|) 69)) (-2347 (($ $) 39)) (-2261 (($ $) 37)) (-4379 (((-3 |#1| "failed") $) 61)) (-3080 ((|#1| $) NIL)) (-3175 (($ |#1| |#2| $) 79) (($ $ $) 81)) (-4114 (((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570)) 56)) (-3243 ((|#1| $ (-570)) 35)) (-3670 ((|#2| $ (-570)) 34)) (-3484 (($ (-1 |#1| |#1|) $) 41)) (-3031 (($ (-1 |#2| |#2|) $) 47)) (-1673 (($) 11)) (-2049 (($ |#1| |#2|) 24)) (-1321 (($ (-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|)))) 25)) (-2047 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))) $) 14)) (-4355 (($ |#1| $) 71)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3310 (((-112) $ $) 76)) (-3735 (((-868) $) 21) (($ |#1|) 18)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 27)))
+(((-655 |#1| |#2| |#3|) (-13 (-1109) (-1047 |#1|) (-10 -8 (-15 -4114 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -2047 ((-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))) $)) (-15 -2049 ($ |#1| |#2|)) (-15 -1321 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))))) (-15 -3670 (|#2| $ (-570))) (-15 -3243 (|#1| $ (-570))) (-15 -2261 ($ $)) (-15 -2347 ($ $)) (-15 -3403 ((-777) $)) (-15 -1673 ($)) (-15 -3241 ($ $ |#1|)) (-15 -4355 ($ |#1| $)) (-15 -3175 ($ |#1| |#2| $)) (-15 -3175 ($ $ $)) (-15 -3310 ((-112) $ $)) (-15 -3031 ($ (-1 |#2| |#2|) $)) (-15 -3484 ($ (-1 |#1| |#1|) $)))) (-1109) (-23) |#2|) (T -655))
+((-4114 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-868) (-868) (-868))) (-5 *4 (-570)) (-5 *2 (-868)) (-5 *1 (-655 *5 *6 *7)) (-4 *5 (-1109)) (-4 *6 (-23)) (-14 *7 *6))) (-2047 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 *4)))) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-2049 (*1 *1 *2 *3) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-1321 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 *4)))) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)))) (-3670 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-23)) (-5 *1 (-655 *4 *2 *5)) (-4 *4 (-1109)) (-14 *5 *2))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-1109)) (-5 *1 (-655 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2261 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2347 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3403 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-1673 (*1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3241 (*1 *1 *1 *2) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-4355 (*1 *1 *2 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3175 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3175 (*1 *1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3310 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-3031 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)))) (-3484 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-655 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1109) (-1047 |#1|) (-10 -8 (-15 -4114 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -2047 ((-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))) $)) (-15 -2049 ($ |#1| |#2|)) (-15 -1321 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4388 |#2|))))) (-15 -3670 (|#2| $ (-570))) (-15 -3243 (|#1| $ (-570))) (-15 -2261 ($ $)) (-15 -2347 ($ $)) (-15 -3403 ((-777) $)) (-15 -1673 ($)) (-15 -3241 ($ $ |#1|)) (-15 -4355 ($ |#1| $)) (-15 -3175 ($ |#1| |#2| $)) (-15 -3175 ($ $ $)) (-15 -3310 ((-112) $ $)) (-15 -3031 ($ (-1 |#2| |#2|) $)) (-15 -3484 ($ (-1 |#1| |#1|) $))))
+((-2596 (((-570) $) 31)) (-4286 (($ |#2| $ (-570)) 27) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) 12)) (-2083 (((-112) (-570) $) 18)) (-2439 (($ $ |#2|) 24) (($ |#2| $) 25) (($ $ $) NIL) (($ (-650 $)) NIL)))
+(((-656 |#1| |#2|) (-10 -8 (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -2596 ((-570) |#1|)) (-15 -2122 ((-650 (-570)) |#1|)) (-15 -2083 ((-112) (-570) |#1|))) (-657 |#2|) (-1227)) (T -656))
+NIL
+(-10 -8 (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -2439 (|#1| (-650 |#1|))) (-15 -2439 (|#1| |#1| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -2596 ((-570) |#1|)) (-15 -2122 ((-650 (-570)) |#1|)) (-15 -2083 ((-112) (-570) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 52)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3531 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-657 |#1|) (-141) (-1227)) (T -657))
+((-4287 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-2439 (*1 *1 *1 *2) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2439 (*1 *1 *2 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2439 (*1 *1 *1 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2439 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-1352 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4320 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4320 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4286 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-4286 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-3894 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1244 (-570))) (|has| *1 (-6 -4450)) (-4 *1 (-657 *2)) (-4 *2 (-1227)))))
+(-13 (-610 (-570) |t#1|) (-152 |t#1|) (-10 -8 (-15 -4287 ($ (-777) |t#1|)) (-15 -2439 ($ $ |t#1|)) (-15 -2439 ($ |t#1| $)) (-15 -2439 ($ $ $)) (-15 -2439 ($ (-650 $))) (-15 -1352 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1877 ($ $ (-1244 (-570)))) (-15 -4320 ($ $ (-570))) (-15 -4320 ($ $ (-1244 (-570)))) (-15 -4286 ($ |t#1| $ (-570))) (-15 -4286 ($ $ $ (-570))) (IF (|has| $ (-6 -4450)) (-15 -3894 (|t#1| $ (-1244 (-570)) |t#1|)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2524 (((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|)) 174) (((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) "failed") |#3| |#2| (-1186)) 44)))
+(((-658 |#1| |#2| |#3|) (-10 -7 (-15 -2524 ((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -2524 ((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966)) (-662 |#2|)) (T -658))
+((-2524 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *2)) (-4 *2 (-13 (-29 *6) (-1212) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-658 *6 *2 *3)) (-4 *3 (-662 *2)))) (-2524 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1186)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-4 *4 (-13 (-29 *6) (-1212) (-966))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2003 (-650 *4)))) (-5 *1 (-658 *6 *4 *3)) (-4 *3 (-662 *4)))))
+(-10 -7 (-15 -2524 ((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -2524 ((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2732 (($ $) NIL (|has| |#1| (-368)))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-2558 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1837 (($ $ $) NIL (|has| |#1| (-368)))) (-3799 (($ $ $) NIL (|has| |#1| (-368)))) (-2493 (($ $ $) NIL (|has| |#1| (-368)))) (-4089 (($ $ $) NIL (|has| |#1| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-1462 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458)))) (-4340 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2730 (((-777) $) NIL)) (-1460 (($ $ $) NIL (|has| |#1| (-368)))) (-4381 (($ $ $) NIL (|has| |#1| (-368)))) (-1354 (($ $ $) NIL (|has| |#1| (-368)))) (-4014 (($ $ $) NIL (|has| |#1| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-3400 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1877 ((|#1| $ |#1|) NIL)) (-3225 (($ $ $) NIL (|has| |#1| (-368)))) (-3221 (((-777) $) NIL)) (-3621 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) NIL)) (-1449 (($ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-659 |#1|) (-662 |#1|) (-235)) (T -659))
NIL
(-662 |#1|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3390 (($ $) NIL (|has| |#1| (-368)))) (-4005 (($ $ $) NIL (|has| |#1| (-368)))) (-4011 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3218 (($ $ $) NIL (|has| |#1| (-368)))) (-2454 (($ $ $) NIL (|has| |#1| (-368)))) (-2580 (($ $ $) NIL (|has| |#1| (-368)))) (-4220 (($ $ $) NIL (|has| |#1| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-3181 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458)))) (-2081 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-4341 (((-777) $) NIL)) (-1433 (($ $ $) NIL (|has| |#1| (-368)))) (-4248 (($ $ $) NIL (|has| |#1| (-368)))) (-1422 (($ $ $) NIL (|has| |#1| (-368)))) (-3582 (($ $ $) NIL (|has| |#1| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2235 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1876 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3957 (($ $ $) NIL (|has| |#1| (-368)))) (-1601 (((-777) $) NIL)) (-3030 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) NIL)) (-1478 (($ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2732 (($ $) NIL (|has| |#1| (-368)))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-2558 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1837 (($ $ $) NIL (|has| |#1| (-368)))) (-3799 (($ $ $) NIL (|has| |#1| (-368)))) (-2493 (($ $ $) NIL (|has| |#1| (-368)))) (-4089 (($ $ $) NIL (|has| |#1| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-1462 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458)))) (-4340 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2730 (((-777) $) NIL)) (-1460 (($ $ $) NIL (|has| |#1| (-368)))) (-4381 (($ $ $) NIL (|has| |#1| (-368)))) (-1354 (($ $ $) NIL (|has| |#1| (-368)))) (-4014 (($ $ $) NIL (|has| |#1| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-3400 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1877 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3225 (($ $ $) NIL (|has| |#1| (-368)))) (-3221 (((-777) $) NIL)) (-3621 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) NIL)) (-1449 (($ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-660 |#1| |#2|) (-13 (-662 |#1|) (-290 |#2| |#2|)) (-235) (-13 (-654 |#1|) (-10 -8 (-15 -3447 ($ $))))) (T -660))
NIL
(-13 (-662 |#1|) (-290 |#2| |#2|))
-((-3390 (($ $) 29)) (-1478 (($ $) 27)) (-2791 (($) 13)))
-(((-661 |#1| |#2|) (-10 -8 (-15 -3390 (|#1| |#1|)) (-15 -1478 (|#1| |#1|)) (-15 -2791 (|#1|))) (-662 |#2|) (-1058)) (T -661))
+((-2732 (($ $) 29)) (-1449 (($ $) 27)) (-2791 (($) 13)))
+(((-661 |#1| |#2|) (-10 -8 (-15 -2732 (|#1| |#1|)) (-15 -1449 (|#1| |#1|)) (-15 -2791 (|#1|))) (-662 |#2|) (-1058)) (T -661))
NIL
-(-10 -8 (-15 -3390 (|#1| |#1|)) (-15 -1478 (|#1| |#1|)) (-15 -2791 (|#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3390 (($ $) 87 (|has| |#1| (-368)))) (-4005 (($ $ $) 89 (|has| |#1| (-368)))) (-4011 (($ $ (-777)) 88 (|has| |#1| (-368)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3218 (($ $ $) 50 (|has| |#1| (-368)))) (-2454 (($ $ $) 51 (|has| |#1| (-368)))) (-2580 (($ $ $) 53 (|has| |#1| (-368)))) (-4220 (($ $ $) 48 (|has| |#1| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 47 (|has| |#1| (-368)))) (-3181 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 52 (|has| |#1| (-368)))) (-4378 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3080 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1890 (($ $) 69)) (-3413 (((-3 $ "failed") $) 37)) (-3543 (($ $) 60 (|has| |#1| (-458)))) (-2081 (((-112) $) 35)) (-3872 (($ |#1| (-777)) 67)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 62 (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63 (|has| |#1| (-562)))) (-4341 (((-777) $) 71)) (-1433 (($ $ $) 57 (|has| |#1| (-368)))) (-4248 (($ $ $) 58 (|has| |#1| (-368)))) (-1422 (($ $ $) 46 (|has| |#1| (-368)))) (-3582 (($ $ $) 55 (|has| |#1| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 54 (|has| |#1| (-368)))) (-2235 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 59 (|has| |#1| (-368)))) (-1864 ((|#1| $) 70)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-1876 ((|#1| $ |#1|) 92)) (-3957 (($ $ $) 86 (|has| |#1| (-368)))) (-1601 (((-777) $) 72)) (-3030 ((|#1| $) 61 (|has| |#1| (-458)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-3009 (((-650 |#1|) $) 66)) (-1715 ((|#1| $ (-777)) 68)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-3381 ((|#1| $ |#1| |#1|) 65)) (-1478 (($ $) 90)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($) 91)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
+(-10 -8 (-15 -2732 (|#1| |#1|)) (-15 -1449 (|#1| |#1|)) (-15 -2791 (|#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2732 (($ $) 87 (|has| |#1| (-368)))) (-2519 (($ $ $) 89 (|has| |#1| (-368)))) (-2558 (($ $ (-777)) 88 (|has| |#1| (-368)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1837 (($ $ $) 50 (|has| |#1| (-368)))) (-3799 (($ $ $) 51 (|has| |#1| (-368)))) (-2493 (($ $ $) 53 (|has| |#1| (-368)))) (-4089 (($ $ $) 48 (|has| |#1| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 47 (|has| |#1| (-368)))) (-1462 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 52 (|has| |#1| (-368)))) (-4379 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3080 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1891 (($ $) 69)) (-2937 (((-3 $ "failed") $) 37)) (-1767 (($ $) 60 (|has| |#1| (-458)))) (-4340 (((-112) $) 35)) (-3872 (($ |#1| (-777)) 67)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 62 (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63 (|has| |#1| (-562)))) (-2730 (((-777) $) 71)) (-1460 (($ $ $) 57 (|has| |#1| (-368)))) (-4381 (($ $ $) 58 (|has| |#1| (-368)))) (-1354 (($ $ $) 46 (|has| |#1| (-368)))) (-4014 (($ $ $) 55 (|has| |#1| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 54 (|has| |#1| (-368)))) (-3400 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 59 (|has| |#1| (-368)))) (-1865 ((|#1| $) 70)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-1877 ((|#1| $ |#1|) 92)) (-3225 (($ $ $) 86 (|has| |#1| (-368)))) (-3221 (((-777) $) 72)) (-3621 ((|#1| $) 61 (|has| |#1| (-458)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-3405 (((-650 |#1|) $) 66)) (-1983 ((|#1| $ (-777)) 68)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-3381 ((|#1| $ |#1| |#1|) 65)) (-1449 (($ $) 90)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($) 91)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
(((-662 |#1|) (-141) (-1058)) (T -662))
-((-2791 (*1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-1478 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-4005 (*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4011 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-662 *3)) (-4 *3 (-1058)) (-4 *3 (-368)))) (-3390 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3957 (*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(-13 (-858 |t#1|) (-290 |t#1| |t#1|) (-10 -8 (-15 -2791 ($)) (-15 -1478 ($ $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -4005 ($ $ $)) (-15 -4011 ($ $ (-777))) (-15 -3390 ($ $)) (-15 -3957 ($ $ $))) |%noBranch|)))
+((-2791 (*1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-1449 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-2519 (*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2558 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-662 *3)) (-4 *3 (-1058)) (-4 *3 (-368)))) (-2732 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3225 (*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(-13 (-858 |t#1|) (-290 |t#1| |t#1|) (-10 -8 (-15 -2791 ($)) (-15 -1449 ($ $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -2519 ($ $ $)) (-15 -2558 ($ $ (-777))) (-15 -2732 ($ $)) (-15 -3225 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-174)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-622 #0=(-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-290 |#1| |#1|) . T) ((-417 |#1|) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) |has| |#1| (-174)) ((-723 |#1|) |has| |#1| (-174)) ((-732) . T) ((-1047 #0#) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-858 |#1|) . T))
-((-2269 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 87 (|has| |#1| (-27)))) (-3738 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 86 (|has| |#1| (-27))) (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 19)))
-(((-663 |#1| |#2|) (-10 -7 (-15 -3738 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3738 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2269 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1252 |#1|)) (T -663))
-((-2269 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *2 (-650 (-659 (-413 *5)))) (-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5))))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *2 (-650 (-659 (-413 *5)))) (-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5))))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-659 (-413 *6)))) (-5 *1 (-663 *5 *6)) (-5 *3 (-659 (-413 *6))))))
-(-10 -7 (-15 -3738 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3738 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2269 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3390 (($ $) NIL (|has| |#1| (-368)))) (-4005 (($ $ $) 28 (|has| |#1| (-368)))) (-4011 (($ $ (-777)) 31 (|has| |#1| (-368)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3218 (($ $ $) NIL (|has| |#1| (-368)))) (-2454 (($ $ $) NIL (|has| |#1| (-368)))) (-2580 (($ $ $) NIL (|has| |#1| (-368)))) (-4220 (($ $ $) NIL (|has| |#1| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-3181 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458)))) (-2081 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-4341 (((-777) $) NIL)) (-1433 (($ $ $) NIL (|has| |#1| (-368)))) (-4248 (($ $ $) NIL (|has| |#1| (-368)))) (-1422 (($ $ $) NIL (|has| |#1| (-368)))) (-3582 (($ $ $) NIL (|has| |#1| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2235 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1876 ((|#1| $ |#1|) 24)) (-3957 (($ $ $) 33 (|has| |#1| (-368)))) (-1601 (((-777) $) NIL)) (-3030 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) 20) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) 23)) (-1478 (($ $) NIL)) (-1812 (($) 21 T CONST)) (-1823 (($) 8 T CONST)) (-2791 (($) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2517 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 87 (|has| |#1| (-27)))) (-3739 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 86 (|has| |#1| (-27))) (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 19)))
+(((-663 |#1| |#2|) (-10 -7 (-15 -3739 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3739 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2517 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -663))
+((-2517 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-659 (-413 *5)))) (-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5))))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-659 (-413 *5)))) (-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5))))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-659 (-413 *6)))) (-5 *1 (-663 *5 *6)) (-5 *3 (-659 (-413 *6))))))
+(-10 -7 (-15 -3739 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3739 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2517 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2732 (($ $) NIL (|has| |#1| (-368)))) (-2519 (($ $ $) 28 (|has| |#1| (-368)))) (-2558 (($ $ (-777)) 31 (|has| |#1| (-368)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1837 (($ $ $) NIL (|has| |#1| (-368)))) (-3799 (($ $ $) NIL (|has| |#1| (-368)))) (-2493 (($ $ $) NIL (|has| |#1| (-368)))) (-4089 (($ $ $) NIL (|has| |#1| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-1462 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458)))) (-4340 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-2730 (((-777) $) NIL)) (-1460 (($ $ $) NIL (|has| |#1| (-368)))) (-4381 (($ $ $) NIL (|has| |#1| (-368)))) (-1354 (($ $ $) NIL (|has| |#1| (-368)))) (-4014 (($ $ $) NIL (|has| |#1| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-3400 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1877 ((|#1| $ |#1|) 24)) (-3225 (($ $ $) 33 (|has| |#1| (-368)))) (-3221 (((-777) $) NIL)) (-3621 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) 20) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) 23)) (-1449 (($ $) NIL)) (-1814 (($) 21 T CONST)) (-1824 (($) 8 T CONST)) (-2791 (($) NIL)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-664 |#1| |#2|) (-662 |#1|) (-1058) (-1 |#1| |#1|)) (T -664))
NIL
(-662 |#1|)
-((-4005 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 70)) (-4011 ((|#2| |#2| (-777) (-1 |#1| |#1|)) 48)) (-3957 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 72)))
-(((-665 |#1| |#2|) (-10 -7 (-15 -4005 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -4011 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -3957 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -665))
-((-3957 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2)) (-4 *2 (-662 *4)))) (-4011 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368)) (-5 *1 (-665 *5 *2)) (-4 *2 (-662 *5)))) (-4005 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2)) (-4 *2 (-662 *4)))))
-(-10 -7 (-15 -4005 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -4011 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -3957 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-4421 (($ $ $) 9)))
-(((-666 |#1|) (-10 -8 (-15 -4421 (|#1| |#1| |#1|))) (-667)) (T -666))
-NIL
-(-10 -8 (-15 -4421 (|#1| |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-2433 (($ $) 10)) (-4421 (($ $ $) 8)) (-2872 (((-112) $ $) 6)) (-4407 (($ $ $) 9)))
+((-2519 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 70)) (-2558 ((|#2| |#2| (-777) (-1 |#1| |#1|)) 48)) (-3225 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 72)))
+(((-665 |#1| |#2|) (-10 -7 (-15 -2519 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2558 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -3225 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -665))
+((-3225 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2)) (-4 *2 (-662 *4)))) (-2558 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368)) (-5 *1 (-665 *5 *2)) (-4 *2 (-662 *5)))) (-2519 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2)) (-4 *2 (-662 *4)))))
+(-10 -7 (-15 -2519 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2558 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -3225 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-4419 (($ $ $) 9)))
+(((-666 |#1|) (-10 -8 (-15 -4419 (|#1| |#1| |#1|))) (-667)) (T -666))
+NIL
+(-10 -8 (-15 -4419 (|#1| |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2434 (($ $) 10)) (-4419 (($ $ $) 8)) (-2872 (((-112) $ $) 6)) (-4404 (($ $ $) 9)))
(((-667) (-141)) (T -667))
-((-2433 (*1 *1 *1) (-4 *1 (-667))) (-4407 (*1 *1 *1 *1) (-4 *1 (-667))) (-4421 (*1 *1 *1 *1) (-4 *1 (-667))))
-(-13 (-102) (-10 -8 (-15 -2433 ($ $)) (-15 -4407 ($ $ $)) (-15 -4421 ($ $ $))))
+((-2434 (*1 *1 *1) (-4 *1 (-667))) (-4404 (*1 *1 *1 *1) (-4 *1 (-667))) (-4419 (*1 *1 *1 *1) (-4 *1 (-667))))
+(-13 (-102) (-10 -8 (-15 -2434 ($ $)) (-15 -4404 ($ $ $)) (-15 -4419 ($ $ $))))
(((-102) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 15)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4398 ((|#1| $) 23)) (-3310 (($ $ $) NIL (|has| |#1| (-797)))) (-3787 (($ $ $) NIL (|has| |#1| (-797)))) (-1903 (((-1168) $) 48)) (-3479 (((-1129) $) NIL)) (-4412 ((|#3| $) 24)) (-3735 (((-868) $) 43)) (-1859 (((-112) $ $) 22)) (-1812 (($) 10 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-797)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-797)))) (-2872 (((-112) $ $) 20)) (-2913 (((-112) $ $) NIL (|has| |#1| (-797)))) (-2894 (((-112) $ $) 26 (|has| |#1| (-797)))) (-2975 (($ $ |#3|) 36) (($ |#1| |#3|) 37)) (-2965 (($ $) 17) (($ $ $) NIL)) (-2954 (($ $ $) 29)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 32) (($ |#2| $) 34) (($ $ |#2|) NIL)))
-(((-668 |#1| |#2| |#3|) (-13 (-723 |#2|) (-10 -8 (IF (|has| |#1| (-797)) (-6 (-797)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4398 (|#1| $)) (-15 -4412 (|#3| $)))) (-723 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -668))
-((-2975 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-2975 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-668 *2 *4 *3)) (-4 *2 (-723 *4)) (-4 *3 (|SubsetCategory| (-732) *4)))) (-4398 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-723 *3)) (-5 *1 (-668 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-732) *3)))) (-4412 (*1 *2 *1) (-12 (-4 *4 (-174)) (-4 *2 (|SubsetCategory| (-732) *4)) (-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4)))))
-(-13 (-723 |#2|) (-10 -8 (IF (|has| |#1| (-797)) (-6 (-797)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4398 (|#1| $)) (-15 -4412 (|#3| $))))
-((-4284 (((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)) 33)))
-(((-669 |#1|) (-10 -7 (-15 -4284 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)))) (-916)) (T -669))
-((-4284 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *4))) (-5 *3 (-1182 *4)) (-4 *4 (-916)) (-5 *1 (-669 *4)))))
-(-10 -7 (-15 -4284 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 84)) (-2464 (($ $ (-777)) 94)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-2477 (((-1300 |#1| |#2|) (-1300 |#1| |#2|) $) 50)) (-4378 (((-3 (-678 |#1|) "failed") $) NIL)) (-3080 (((-678 |#1|) $) NIL)) (-1890 (($ $) 93)) (-3797 (((-777) $) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3278 (($ (-678 |#1|) |#2|) 70)) (-2543 (($ $) 89)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3996 (((-1300 |#1| |#2|) (-1300 |#1| |#2|) $) 49)) (-3864 (((-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1855 (((-678 |#1|) $) NIL)) (-1864 ((|#2| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1730 (($ $ |#1| $) 32) (($ $ (-650 |#1|) (-650 $)) 34)) (-1601 (((-777) $) 91)) (-3748 (($ $ $) 20) (($ (-678 |#1|) (-678 |#1|)) 79) (($ (-678 |#1|) $) 77) (($ $ (-678 |#1|)) 78)) (-3735 (((-868) $) NIL) (($ |#1|) 76) (((-1291 |#1| |#2|) $) 60) (((-1300 |#1| |#2|) $) 43) (($ (-678 |#1|)) 27)) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-678 |#1|)) NIL)) (-1441 ((|#2| (-1300 |#1| |#2|) $) 45)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 23 T CONST)) (-2824 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2045 (((-3 $ "failed") (-1291 |#1| |#2|)) 62)) (-2517 (($ (-678 |#1|)) 14)) (-2872 (((-112) $ $) 46)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) 68) (($ $ $) NIL)) (-2954 (($ $ $) 31)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#2| $) 30) (($ $ |#2|) NIL) (($ |#2| (-678 |#1|)) NIL)))
-(((-670 |#1| |#2|) (-13 (-379 |#1| |#2|) (-387 |#2| (-678 |#1|)) (-10 -8 (-15 -2045 ((-3 $ "failed") (-1291 |#1| |#2|))) (-15 -3748 ($ (-678 |#1|) (-678 |#1|))) (-15 -3748 ($ (-678 |#1|) $)) (-15 -3748 ($ $ (-678 |#1|))))) (-856) (-174)) (T -670))
-((-2045 (*1 *1 *2) (|partial| -12 (-5 *2 (-1291 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-670 *3 *4)))) (-3748 (*1 *1 *2 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3748 (*1 *1 *2 *1) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3748 (*1 *1 *1 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))))
-(-13 (-379 |#1| |#2|) (-387 |#2| (-678 |#1|)) (-10 -8 (-15 -2045 ((-3 $ "failed") (-1291 |#1| |#2|))) (-15 -3748 ($ (-678 |#1|) (-678 |#1|))) (-15 -3748 ($ (-678 |#1|) $)) (-15 -3748 ($ $ (-678 |#1|)))))
-((-4254 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 61)) (-3239 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-1591 (($ (-1 (-112) |#2|) $) 29)) (-2697 (($ $) 67)) (-2208 (($ $) 78)) (-2513 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 43)) (-3529 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 62) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 64)) (-3998 (((-570) |#2| $ (-570)) 75) (((-570) |#2| $) NIL) (((-570) (-1 (-112) |#2|) $) 56)) (-4286 (($ (-777) |#2|) 65)) (-2190 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 31)) (-3068 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-1351 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 66)) (-3312 (($ |#2|) 15)) (-2278 (($ $ $ (-570)) 42) (($ |#2| $ (-570)) 40)) (-3321 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 53)) (-1882 (($ $ (-1243 (-570))) 51) (($ $ (-570)) 44)) (-1806 (($ $ $ (-570)) 74)) (-3915 (($ $) 72)) (-2894 (((-112) $ $) 80)))
-(((-671 |#1| |#2|) (-10 -8 (-15 -3312 (|#1| |#2|)) (-15 -1882 (|#1| |#1| (-570))) (-15 -1882 (|#1| |#1| (-1243 (-570)))) (-15 -2513 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2278 (|#1| |#2| |#1| (-570))) (-15 -2278 (|#1| |#1| |#1| (-570))) (-15 -2190 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1591 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2513 (|#1| |#2| |#1|)) (-15 -2208 (|#1| |#1|)) (-15 -2190 (|#1| |#1| |#1|)) (-15 -3068 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4254 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3068 (|#1| |#1| |#1|)) (-15 -4254 ((-112) |#1|)) (-15 -1806 (|#1| |#1| |#1| (-570))) (-15 -2697 (|#1| |#1|)) (-15 -3239 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3321 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4286 (|#1| (-777) |#2|)) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3915 (|#1| |#1|))) (-672 |#2|) (-1226)) (T -671))
-NIL
-(-10 -8 (-15 -3312 (|#1| |#2|)) (-15 -1882 (|#1| |#1| (-570))) (-15 -1882 (|#1| |#1| (-1243 (-570)))) (-15 -2513 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2278 (|#1| |#2| |#1| (-570))) (-15 -2278 (|#1| |#1| |#1| (-570))) (-15 -2190 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1591 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2513 (|#1| |#2| |#1|)) (-15 -2208 (|#1| |#1|)) (-15 -2190 (|#1| |#1| |#1|)) (-15 -3068 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4254 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -3068 (|#1| |#1| |#1|)) (-15 -4254 ((-112) |#1|)) (-15 -1806 (|#1| |#1| |#1| (-570))) (-15 -2697 (|#1| |#1|)) (-15 -3239 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3321 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4286 (|#1| (-777) |#2|)) (-15 -1351 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3915 (|#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1573 (($ $) 68)) (-3225 (((-1281) $ (-570) (-570)) 98 (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) 53 (|has| $ (-6 -4449)))) (-4254 (((-112) $) 143 (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) 137)) (-3239 (($ $) 147 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1| |#1|) $) 146 (|has| $ (-6 -4449)))) (-3288 (($ $) 142 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) 136)) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-2512 (($ $ $) 57 (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) 55 (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4449))) (($ $ "rest" $) 56 (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 118 (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-1591 (($ (-1 (-112) |#1|) $) 130)) (-1424 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4448)))) (-2533 ((|#1| $) 67)) (-2450 (($) 7 T CONST)) (-2697 (($ $) 145 (|has| $ (-6 -4449)))) (-2258 (($ $) 135)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-2208 (($ $) 132 (|has| |#1| (-1109)))) (-3480 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 131 (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 126)) (-1702 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4448))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3790 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 88)) (-2356 (((-112) $) 84)) (-3998 (((-570) |#1| $ (-570)) 140 (|has| |#1| (-1109))) (((-570) |#1| $) 139 (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) 138)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4286 (($ (-777) |#1|) 109)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 96 (|has| (-570) (-856)))) (-3310 (($ $ $) 148 (|has| |#1| (-856)))) (-2190 (($ $ $) 133 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 129)) (-3068 (($ $ $) 141 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 134)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 95 (|has| (-570) (-856)))) (-3787 (($ $ $) 149 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3312 (($ |#1|) 123)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1728 ((|#1| $) 71) (($ $ (-777)) 69)) (-2278 (($ $ $ (-570)) 128) (($ |#1| $ (-570)) 127)) (-4285 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2344 (((-650 (-570)) $) 93)) (-1354 (((-112) (-570) $) 92)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-1952 (($ $ |#1|) 97 (|has| $ (-6 -4449)))) (-3412 (((-112) $) 85)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 91)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1243 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-1678 (((-570) $ $) 45)) (-1882 (($ $ (-1243 (-570))) 125) (($ $ (-570)) 124)) (-4320 (($ $ (-1243 (-570))) 115) (($ $ (-570)) 114)) (-3150 (((-112) $) 47)) (-3146 (($ $) 63)) (-2839 (($ $) 60 (|has| $ (-6 -4449)))) (-2409 (((-777) $) 64)) (-2567 (($ $) 65)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 144 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 108)) (-2850 (($ $ $) 62) (($ $ |#1|) 61)) (-2439 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 151 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 152 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2913 (((-112) $ $) 150 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 153 (|has| |#1| (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-672 |#1|) (-141) (-1226)) (T -672))
-((-3312 (*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1226)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 15)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4399 ((|#1| $) 23)) (-3311 (($ $ $) NIL (|has| |#1| (-797)))) (-2222 (($ $ $) NIL (|has| |#1| (-797)))) (-4268 (((-1168) $) 48)) (-3479 (((-1129) $) NIL)) (-4413 ((|#3| $) 24)) (-3735 (((-868) $) 43)) (-3866 (((-112) $ $) 22)) (-1814 (($) 10 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-797)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-797)))) (-2872 (((-112) $ $) 20)) (-2914 (((-112) $ $) NIL (|has| |#1| (-797)))) (-2894 (((-112) $ $) 26 (|has| |#1| (-797)))) (-2975 (($ $ |#3|) 36) (($ |#1| |#3|) 37)) (-2965 (($ $) 17) (($ $ $) NIL)) (-2953 (($ $ $) 29)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 32) (($ |#2| $) 34) (($ $ |#2|) NIL)))
+(((-668 |#1| |#2| |#3|) (-13 (-723 |#2|) (-10 -8 (IF (|has| |#1| (-797)) (-6 (-797)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $)))) (-723 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -668))
+((-2975 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-2975 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-668 *2 *4 *3)) (-4 *2 (-723 *4)) (-4 *3 (|SubsetCategory| (-732) *4)))) (-4399 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-723 *3)) (-5 *1 (-668 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-732) *3)))) (-4413 (*1 *2 *1) (-12 (-4 *4 (-174)) (-4 *2 (|SubsetCategory| (-732) *4)) (-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4)))))
+(-13 (-723 |#2|) (-10 -8 (IF (|has| |#1| (-797)) (-6 (-797)) |%noBranch|) (-15 -2975 ($ $ |#3|)) (-15 -2975 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $))))
+((-3448 (((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)) 33)))
+(((-669 |#1|) (-10 -7 (-15 -3448 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)))) (-916)) (T -669))
+((-3448 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *4))) (-5 *3 (-1182 *4)) (-4 *4 (-916)) (-5 *1 (-669 *4)))))
+(-10 -7 (-15 -3448 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 84)) (-3895 (($ $ (-777)) 94)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4034 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 50)) (-4379 (((-3 (-678 |#1|) "failed") $) NIL)) (-3080 (((-678 |#1|) $) NIL)) (-1891 (($ $) 93)) (-2292 (((-777) $) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3278 (($ (-678 |#1|) |#2|) 70)) (-3374 (($ $) 89)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-3684 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 49)) (-1773 (((-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1857 (((-678 |#1|) $) NIL)) (-1865 ((|#2| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1731 (($ $ |#1| $) 32) (($ $ (-650 |#1|) (-650 $)) 34)) (-3221 (((-777) $) 91)) (-3749 (($ $ $) 20) (($ (-678 |#1|) (-678 |#1|)) 79) (($ (-678 |#1|) $) 77) (($ $ (-678 |#1|)) 78)) (-3735 (((-868) $) NIL) (($ |#1|) 76) (((-1292 |#1| |#2|) $) 60) (((-1301 |#1| |#2|) $) 43) (($ (-678 |#1|)) 27)) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-678 |#1|)) NIL)) (-1442 ((|#2| (-1301 |#1| |#2|) $) 45)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 23 T CONST)) (-4256 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2086 (((-3 $ "failed") (-1292 |#1| |#2|)) 62)) (-3097 (($ (-678 |#1|)) 14)) (-2872 (((-112) $ $) 46)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) 68) (($ $ $) NIL)) (-2953 (($ $ $) 31)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#2| $) 30) (($ $ |#2|) NIL) (($ |#2| (-678 |#1|)) NIL)))
+(((-670 |#1| |#2|) (-13 (-379 |#1| |#2|) (-387 |#2| (-678 |#1|)) (-10 -8 (-15 -2086 ((-3 $ "failed") (-1292 |#1| |#2|))) (-15 -3749 ($ (-678 |#1|) (-678 |#1|))) (-15 -3749 ($ (-678 |#1|) $)) (-15 -3749 ($ $ (-678 |#1|))))) (-856) (-174)) (T -670))
+((-2086 (*1 *1 *2) (|partial| -12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-670 *3 *4)))) (-3749 (*1 *1 *2 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3749 (*1 *1 *2 *1) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3749 (*1 *1 *1 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))))
+(-13 (-379 |#1| |#2|) (-387 |#2| (-678 |#1|)) (-10 -8 (-15 -2086 ((-3 $ "failed") (-1292 |#1| |#2|))) (-15 -3749 ($ (-678 |#1|) (-678 |#1|))) (-15 -3749 ($ (-678 |#1|) $)) (-15 -3749 ($ $ (-678 |#1|)))))
+((-4429 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 61)) (-3885 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3131 (($ (-1 (-112) |#2|) $) 29)) (-2347 (($ $) 67)) (-3092 (($ $) 78)) (-3076 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 43)) (-3529 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 62) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 64)) (-3998 (((-570) |#2| $ (-570)) 75) (((-570) |#2| $) NIL) (((-570) (-1 (-112) |#2|) $) 56)) (-4287 (($ (-777) |#2|) 65)) (-4210 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 31)) (-2727 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-1352 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 66)) (-3312 (($ |#2|) 15)) (-2599 (($ $ $ (-570)) 42) (($ |#2| $ (-570)) 40)) (-3281 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 53)) (-4052 (($ $ (-1244 (-570))) 51) (($ $ (-570)) 44)) (-1523 (($ $ $ (-570)) 74)) (-3916 (($ $) 72)) (-2894 (((-112) $ $) 80)))
+(((-671 |#1| |#2|) (-10 -8 (-15 -3312 (|#1| |#2|)) (-15 -4052 (|#1| |#1| (-570))) (-15 -4052 (|#1| |#1| (-1244 (-570)))) (-15 -3076 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2599 (|#1| |#2| |#1| (-570))) (-15 -2599 (|#1| |#1| |#1| (-570))) (-15 -4210 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3131 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3076 (|#1| |#2| |#1|)) (-15 -3092 (|#1| |#1|)) (-15 -4210 (|#1| |#1| |#1|)) (-15 -2727 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4429 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -2727 (|#1| |#1| |#1|)) (-15 -4429 ((-112) |#1|)) (-15 -1523 (|#1| |#1| |#1| (-570))) (-15 -2347 (|#1| |#1|)) (-15 -3885 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3885 (|#1| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3281 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4287 (|#1| (-777) |#2|)) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3916 (|#1| |#1|))) (-672 |#2|) (-1227)) (T -671))
+NIL
+(-10 -8 (-15 -3312 (|#1| |#2|)) (-15 -4052 (|#1| |#1| (-570))) (-15 -4052 (|#1| |#1| (-1244 (-570)))) (-15 -3076 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2599 (|#1| |#2| |#1| (-570))) (-15 -2599 (|#1| |#1| |#1| (-570))) (-15 -4210 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3131 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3076 (|#1| |#2| |#1|)) (-15 -3092 (|#1| |#1|)) (-15 -4210 (|#1| |#1| |#1|)) (-15 -2727 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4429 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3998 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -3998 ((-570) |#2| |#1|)) (-15 -3998 ((-570) |#2| |#1| (-570))) (-15 -2727 (|#1| |#1| |#1|)) (-15 -4429 ((-112) |#1|)) (-15 -1523 (|#1| |#1| |#1| (-570))) (-15 -2347 (|#1| |#1|)) (-15 -3885 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3885 (|#1| |#1|)) (-15 -2894 ((-112) |#1| |#1|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3529 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3281 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4287 (|#1| (-777) |#2|)) (-15 -1352 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3916 (|#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1574 (($ $) 68)) (-3727 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4429 (((-112) $) 143 (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) 137)) (-3885 (($ $) 147 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450)))) (($ (-1 (-112) |#1| |#1|) $) 146 (|has| $ (-6 -4450)))) (-3287 (($ $) 142 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) 136)) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3066 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4450))) (($ $ "rest" $) 56 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 118 (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-3131 (($ (-1 (-112) |#1|) $) 130)) (-1425 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4449)))) (-2533 ((|#1| $) 67)) (-3761 (($) 7 T CONST)) (-2347 (($ $) 145 (|has| $ (-6 -4450)))) (-2261 (($ $) 135)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-3092 (($ $) 132 (|has| |#1| (-1109)))) (-3480 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 131 (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 126)) (-1703 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4449))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3789 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 88)) (-2237 (((-112) $) 84)) (-3998 (((-570) |#1| $ (-570)) 140 (|has| |#1| (-1109))) (((-570) |#1| $) 139 (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) 138)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4287 (($ (-777) |#1|) 109)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 96 (|has| (-570) (-856)))) (-3311 (($ $ $) 148 (|has| |#1| (-856)))) (-4210 (($ $ $) 133 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 129)) (-2727 (($ $ $) 141 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 134)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 95 (|has| (-570) (-856)))) (-2222 (($ $ $) 149 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3312 (($ |#1|) 123)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1729 ((|#1| $) 71) (($ $ (-777)) 69)) (-2599 (($ $ $ (-570)) 128) (($ |#1| $ (-570)) 127)) (-4286 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2122 (((-650 (-570)) $) 93)) (-2083 (((-112) (-570) $) 92)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-3531 (($ $ |#1|) 97 (|has| $ (-6 -4450)))) (-2928 (((-112) $) 85)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 91)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-2763 (((-570) $ $) 45)) (-4052 (($ $ (-1244 (-570))) 125) (($ $ (-570)) 124)) (-4320 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-2345 (((-112) $) 47)) (-2308 (($ $) 63)) (-3103 (($ $) 60 (|has| $ (-6 -4450)))) (-1535 (((-777) $) 64)) (-3631 (($ $) 65)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 144 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 108)) (-3214 (($ $ $) 62) (($ $ |#1|) 61)) (-2439 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 151 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 152 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2914 (((-112) $ $) 150 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 153 (|has| |#1| (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-672 |#1|) (-141) (-1227)) (T -672))
+((-3312 (*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1227)))))
(-13 (-1158 |t#1|) (-378 |t#1|) (-286 |t#1|) (-10 -8 (-15 -3312 ($ |t#1|))))
-(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-286 |#1|) . T) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1019 |#1|) . T) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1158 |#1|) . T) ((-1226) . T) ((-1264 |#1|) . T))
-((-1654 (((-650 (-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|))))) (-650 (-650 |#1|)) (-650 (-1276 |#1|))) 22) (((-650 (-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|))))) (-695 |#1|) (-650 (-1276 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-650 (-650 |#1|)) (-1276 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-695 |#1|) (-1276 |#1|)) 14)) (-3934 (((-777) (-695 |#1|) (-1276 |#1|)) 30)) (-1974 (((-3 (-1276 |#1|) "failed") (-695 |#1|) (-1276 |#1|)) 24)) (-2216 (((-112) (-695 |#1|) (-1276 |#1|)) 27)))
-(((-673 |#1|) (-10 -7 (-15 -1654 ((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-695 |#1|) (-1276 |#1|))) (-15 -1654 ((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-650 (-650 |#1|)) (-1276 |#1|))) (-15 -1654 ((-650 (-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|))))) (-695 |#1|) (-650 (-1276 |#1|)))) (-15 -1654 ((-650 (-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|))))) (-650 (-650 |#1|)) (-650 (-1276 |#1|)))) (-15 -1974 ((-3 (-1276 |#1|) "failed") (-695 |#1|) (-1276 |#1|))) (-15 -2216 ((-112) (-695 |#1|) (-1276 |#1|))) (-15 -3934 ((-777) (-695 |#1|) (-1276 |#1|)))) (-368)) (T -673))
-((-3934 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)) (-4 *5 (-368)) (-5 *2 (-777)) (-5 *1 (-673 *5)))) (-2216 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)) (-4 *5 (-368)) (-5 *2 (-112)) (-5 *1 (-673 *5)))) (-1974 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1276 *4)) (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *1 (-673 *4)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1276 *5) "failed")) (|:| -2331 (-650 (-1276 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1276 *5))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1276 *5) "failed")) (|:| -2331 (-650 (-1276 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1276 *5))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1276 *5) "failed")) (|:| -2331 (-650 (-1276 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1276 *5)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1276 *5) "failed")) (|:| -2331 (-650 (-1276 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1276 *5)))))
-(-10 -7 (-15 -1654 ((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-695 |#1|) (-1276 |#1|))) (-15 -1654 ((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-650 (-650 |#1|)) (-1276 |#1|))) (-15 -1654 ((-650 (-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|))))) (-695 |#1|) (-650 (-1276 |#1|)))) (-15 -1654 ((-650 (-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|))))) (-650 (-650 |#1|)) (-650 (-1276 |#1|)))) (-15 -1974 ((-3 (-1276 |#1|) "failed") (-695 |#1|) (-1276 |#1|))) (-15 -2216 ((-112) (-695 |#1|) (-1276 |#1|))) (-15 -3934 ((-777) (-695 |#1|) (-1276 |#1|))))
-((-1654 (((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|)))) |#4| (-650 |#3|)) 66) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|))) |#4| |#3|) 60)) (-3934 (((-777) |#4| |#3|) 18)) (-1974 (((-3 |#3| "failed") |#4| |#3|) 21)) (-2216 (((-112) |#4| |#3|) 14)))
-(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1654 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|))) |#4| |#3|)) (-15 -1654 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -1974 ((-3 |#3| "failed") |#4| |#3|)) (-15 -2216 ((-112) |#4| |#3|)) (-15 -3934 ((-777) |#4| |#3|))) (-368) (-13 (-378 |#1|) (-10 -7 (-6 -4449))) (-13 (-378 |#1|) (-10 -7 (-6 -4449))) (-693 |#1| |#2| |#3|)) (T -674))
-((-3934 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-5 *2 (-777)) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-2216 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-5 *2 (-112)) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-1974 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-368)) (-4 *5 (-13 (-378 *4) (-10 -7 (-6 -4449)))) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))) (-5 *1 (-674 *4 *5 *2 *3)) (-4 *3 (-693 *4 *5 *2)))) (-1654 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-4 *7 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-5 *2 (-650 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2331 (-650 *7))))) (-5 *1 (-674 *5 *6 *7 *3)) (-5 *4 (-650 *7)) (-4 *3 (-693 *5 *6 *7)))) (-1654 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
-(-10 -7 (-15 -1654 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|))) |#4| |#3|)) (-15 -1654 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -1974 ((-3 |#3| "failed") |#4| |#3|)) (-15 -2216 ((-112) |#4| |#3|)) (-15 -3934 ((-777) |#4| |#3|)))
-((-1936 (((-2 (|:| |particular| (-3 (-1276 (-413 |#4|)) "failed")) (|:| -2331 (-650 (-1276 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)) 52)))
-(((-675 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1936 ((-2 (|:| |particular| (-3 (-1276 (-413 |#4|)) "failed")) (|:| -2331 (-650 (-1276 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)))) (-562) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -675))
-((-1936 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *7)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-5 *2 (-2 (|:| |particular| (-3 (-1276 (-413 *8)) "failed")) (|:| -2331 (-650 (-1276 (-413 *8)))))) (-5 *1 (-675 *5 *6 *7 *8)))))
-(-10 -7 (-15 -1936 ((-2 (|:| |particular| (-3 (-1276 (-413 |#4|)) "failed")) (|:| -2331 (-650 (-1276 (-413 |#4|))))) (-650 |#4|) (-650 |#3|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1733 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3071 ((|#2| $) NIL)) (-1813 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-1759 (((-1276 (-695 |#2|))) NIL) (((-1276 (-695 |#2|)) (-1276 $)) NIL)) (-1837 (((-112) $) NIL)) (-2201 (((-1276 $)) 44)) (-3594 (((-112) $ (-777)) NIL)) (-4124 (($ |#2|) NIL)) (-2450 (($) NIL T CONST)) (-3936 (($ $) NIL (|has| |#2| (-311)))) (-2653 (((-242 |#1| |#2|) $ (-570)) NIL)) (-4352 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-1822 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-2893 (((-695 |#2|)) NIL) (((-695 |#2|) (-1276 $)) NIL)) (-4361 ((|#2| $) NIL)) (-2520 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1276 $)) NIL)) (-1535 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-3065 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-3937 (($ $ (-928)) NIL)) (-3602 ((|#2| $) NIL)) (-3929 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-4290 ((|#2|) NIL) ((|#2| (-1276 $)) NIL)) (-1458 (((-1182 |#2|) $) NIL)) (-3161 (((-112)) NIL)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-2049 (($ (-1276 |#2|)) NIL) (($ (-1276 |#2|) (-1276 $)) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3934 (((-777) $) NIL (|has| |#2| (-562))) (((-928)) 45)) (-3712 ((|#2| $ (-570) (-570)) NIL)) (-1460 (((-112)) NIL)) (-3388 (($ $ (-928)) NIL)) (-2836 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL)) (-1645 (((-777) $) NIL (|has| |#2| (-562)))) (-4239 (((-650 (-242 |#1| |#2|)) $) NIL (|has| |#2| (-562)))) (-3153 (((-777) $) NIL)) (-3060 (((-112)) NIL)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2265 ((|#2| $) NIL (|has| |#2| (-6 (-4450 "*"))))) (-3118 (((-570) $) NIL)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3392 (((-570) $) NIL)) (-1555 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#2|))) NIL)) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3747 (((-650 (-650 |#2|)) $) NIL)) (-3207 (((-112)) NIL)) (-3149 (((-112)) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1396 (((-3 (-2 (|:| |particular| $) (|:| -2331 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-2546 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-1401 (((-695 |#2|)) NIL) (((-695 |#2|) (-1276 $)) NIL)) (-4395 ((|#2| $) NIL)) (-3215 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1276 $)) NIL)) (-2168 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-4004 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-2247 (($ $ (-928)) NIL)) (-3386 ((|#2| $) NIL)) (-1395 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-2191 ((|#2|) NIL) ((|#2| (-1276 $)) NIL)) (-4265 (((-1182 |#2|) $) NIL)) (-2455 (((-112)) NIL)) (-1903 (((-1168) $) NIL)) (-3641 (((-112)) NIL)) (-1482 (((-112)) NIL)) (-3204 (((-112)) NIL)) (-4260 (((-3 $ "failed") $) NIL (|has| |#2| (-368)))) (-3479 (((-1129) $) NIL)) (-1687 (((-112)) NIL)) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-1671 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) 30) ((|#2| $ (-570)) NIL)) (-3447 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-3440 ((|#2| $) NIL)) (-1990 (($ (-650 |#2|)) NIL)) (-3055 (((-112) $) NIL)) (-2640 (((-242 |#1| |#2|) $) NIL)) (-3154 ((|#2| $) NIL (|has| |#2| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3915 (($ $) NIL)) (-1807 (((-695 |#2|) (-1276 $)) NIL) (((-1276 |#2|) $) NIL) (((-695 |#2|) (-1276 $) (-1276 $)) NIL) (((-1276 |#2|) $ (-1276 $)) 33)) (-1416 (($ (-1276 |#2|)) NIL) (((-1276 |#2|) $) NIL)) (-3824 (((-650 (-959 |#2|))) NIL) (((-650 (-959 |#2|)) (-1276 $)) NIL)) (-3688 (($ $ $) NIL)) (-4068 (((-112)) NIL)) (-3541 (((-242 |#1| |#2|) $ (-570)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) 43)) (-4365 (((-650 (-1276 |#2|))) NIL (|has| |#2| (-562)))) (-3183 (($ $ $ $) NIL)) (-2170 (((-112)) NIL)) (-3381 (($ (-695 |#2|) $) NIL)) (-4368 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3317 (((-112) $) NIL)) (-1960 (($ $ $) NIL)) (-4213 (((-112)) NIL)) (-3987 (((-112)) NIL)) (-3463 (((-112)) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#2| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-242 |#1| |#2|) $ (-242 |#1| |#2|)) NIL) (((-242 |#1| |#2|) (-242 |#1| |#2|) $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-286 |#1|) . T) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1019 |#1|) . T) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1158 |#1|) . T) ((-1227) . T) ((-1265 |#1|) . T))
+((-2524 (((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|))) 22) (((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)) 14)) (-3933 (((-777) (-695 |#1|) (-1277 |#1|)) 30)) (-2521 (((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|)) 24)) (-3177 (((-112) (-695 |#1|) (-1277 |#1|)) 27)))
+(((-673 |#1|) (-10 -7 (-15 -2524 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))) (-15 -2524 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|))) (-15 -2524 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|)))) (-15 -2524 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|)))) (-15 -2521 ((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|))) (-15 -3177 ((-112) (-695 |#1|) (-1277 |#1|))) (-15 -3933 ((-777) (-695 |#1|) (-1277 |#1|)))) (-368)) (T -673))
+((-3933 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-5 *2 (-777)) (-5 *1 (-673 *5)))) (-3177 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-5 *2 (-112)) (-5 *1 (-673 *5)))) (-2521 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1277 *4)) (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *1 (-673 *4)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -2003 (-650 (-1277 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -2003 (-650 (-1277 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -2003 (-650 (-1277 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1277 *5)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -2003 (-650 (-1277 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1277 *5)))))
+(-10 -7 (-15 -2524 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))) (-15 -2524 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|))) (-15 -2524 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|)))) (-15 -2524 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|)))) (-15 -2521 ((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|))) (-15 -3177 ((-112) (-695 |#1|) (-1277 |#1|))) (-15 -3933 ((-777) (-695 |#1|) (-1277 |#1|))))
+((-2524 (((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|)))) |#4| (-650 |#3|)) 66) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|))) |#4| |#3|) 60)) (-3933 (((-777) |#4| |#3|) 18)) (-2521 (((-3 |#3| "failed") |#4| |#3|) 21)) (-3177 (((-112) |#4| |#3|) 14)))
+(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2524 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|))) |#4| |#3|)) (-15 -2524 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -2521 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3177 ((-112) |#4| |#3|)) (-15 -3933 ((-777) |#4| |#3|))) (-368) (-13 (-378 |#1|) (-10 -7 (-6 -4450))) (-13 (-378 |#1|) (-10 -7 (-6 -4450))) (-693 |#1| |#2| |#3|)) (T -674))
+((-3933 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-5 *2 (-777)) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-3177 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-5 *2 (-112)) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-2521 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-368)) (-4 *5 (-13 (-378 *4) (-10 -7 (-6 -4450)))) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))) (-5 *1 (-674 *4 *5 *2 *3)) (-4 *3 (-693 *4 *5 *2)))) (-2524 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-4 *7 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-5 *2 (-650 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2003 (-650 *7))))) (-5 *1 (-674 *5 *6 *7 *3)) (-5 *4 (-650 *7)) (-4 *3 (-693 *5 *6 *7)))) (-2524 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
+(-10 -7 (-15 -2524 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|))) |#4| |#3|)) (-15 -2524 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -2521 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3177 ((-112) |#4| |#3|)) (-15 -3933 ((-777) |#4| |#3|)))
+((-3349 (((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -2003 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)) 52)))
+(((-675 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3349 ((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -2003 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)))) (-562) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -675))
+((-3349 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *7)) (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 (-413 *8)) "failed")) (|:| -2003 (-650 (-1277 (-413 *8)))))) (-5 *1 (-675 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3349 ((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -2003 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2101 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3071 ((|#2| $) NIL)) (-1587 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2303 (((-1277 (-695 |#2|))) NIL) (((-1277 (-695 |#2|)) (-1277 $)) NIL)) (-3639 (((-112) $) NIL)) (-3016 (((-1277 $)) 44)) (-4095 (((-112) $ (-777)) NIL)) (-2465 (($ |#2|) NIL)) (-3761 (($) NIL T CONST)) (-4321 (($ $) NIL (|has| |#2| (-311)))) (-1991 (((-242 |#1| |#2|) $ (-570)) NIL)) (-2830 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-1679 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3649 (((-695 |#2|)) NIL) (((-695 |#2|) (-1277 $)) NIL)) (-2893 ((|#2| $) NIL)) (-3129 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1277 $)) NIL)) (-3860 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-2693 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-4333 (($ $ (-928)) NIL)) (-4191 ((|#2| $) NIL)) (-4255 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-3497 ((|#2|) NIL) ((|#2| (-1277 $)) NIL)) (-4339 (((-1182 |#2|) $) NIL)) (-4362 (((-112)) NIL)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-2125 (($ (-1277 |#2|)) NIL) (($ (-1277 |#2|) (-1277 $)) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3933 (((-777) $) NIL (|has| |#2| (-562))) (((-928)) 45)) (-3713 ((|#2| $ (-570) (-570)) NIL)) (-4356 (((-112)) NIL)) (-2710 (($ $ (-928)) NIL)) (-2835 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL)) (-2454 (((-777) $) NIL (|has| |#2| (-562)))) (-4296 (((-650 (-242 |#1| |#2|)) $) NIL (|has| |#2| (-562)))) (-3155 (((-777) $) NIL)) (-2637 (((-112)) NIL)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2481 ((|#2| $) NIL (|has| |#2| (-6 (-4451 "*"))))) (-2055 (((-570) $) NIL)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2755 (((-570) $) NIL)) (-4067 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#2|))) NIL)) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3037 (((-650 (-650 |#2|)) $) NIL)) (-1734 (((-112)) NIL)) (-2335 (((-112)) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4282 (((-3 (-2 (|:| |particular| $) (|:| -2003 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-3394 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-1883 (((-695 |#2|)) NIL) (((-695 |#2|) (-1277 $)) NIL)) (-2078 ((|#2| $) NIL)) (-1806 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1277 $)) NIL)) (-3984 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-2508 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-3548 (($ $ (-928)) NIL)) (-2688 ((|#2| $) NIL)) (-4272 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-4219 ((|#2|) NIL) ((|#2| (-1277 $)) NIL)) (-3231 (((-1182 |#2|) $) NIL)) (-3809 (((-112)) NIL)) (-4268 (((-1168) $) NIL)) (-3303 (((-112)) NIL)) (-1493 (((-112)) NIL)) (-1694 (((-112)) NIL)) (-3174 (((-3 $ "failed") $) NIL (|has| |#2| (-368)))) (-3479 (((-1129) $) NIL)) (-2851 (((-112)) NIL)) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-2697 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) 30) ((|#2| $ (-570)) NIL)) (-3447 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2023 ((|#2| $) NIL)) (-2682 (($ (-650 |#2|)) NIL)) (-2593 (((-112) $) NIL)) (-3005 (((-242 |#1| |#2|) $) NIL)) (-2371 ((|#2| $) NIL (|has| |#2| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3916 (($ $) NIL)) (-1533 (((-695 |#2|) (-1277 $)) NIL) (((-1277 |#2|) $) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $ (-1277 $)) 33)) (-1417 (($ (-1277 |#2|)) NIL) (((-1277 |#2|) $) NIL)) (-1334 (((-650 (-959 |#2|))) NIL) (((-650 (-959 |#2|)) (-1277 $)) NIL)) (-2522 (($ $ $) NIL)) (-2024 (((-112)) NIL)) (-1743 (((-242 |#1| |#2|) $ (-570)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) 43)) (-2934 (((-650 (-1277 |#2|))) NIL (|has| |#2| (-562)))) (-1483 (($ $ $ $) NIL)) (-4004 (((-112)) NIL)) (-3381 (($ (-695 |#2|) $) NIL)) (-2964 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3251 (((-112) $) NIL)) (-3619 (($ $ $) NIL)) (-4015 (((-112)) NIL)) (-3596 (((-112)) NIL)) (-2208 (((-112)) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#2| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-242 |#1| |#2|) $ (-242 |#1| |#2|)) NIL) (((-242 |#1| |#2|) (-242 |#1| |#2|) $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-676 |#1| |#2|) (-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-423 |#2|)) (-928) (-174)) (T -676))
NIL
(-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-423 |#2|))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2788 (((-650 (-1144)) $) 10)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-677) (-13 (-1092) (-10 -8 (-15 -2788 ((-650 (-1144)) $))))) (T -677))
-((-2788 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-677)))))
-(-13 (-1092) (-10 -8 (-15 -2788 ((-650 (-1144)) $))))
-((-2416 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) NIL)) (-4410 (($ $) 62)) (-1390 (((-112) $) NIL)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-2308 (((-3 $ "failed") (-825 |#1|)) 27)) (-4392 (((-112) (-825 |#1|)) 17)) (-2987 (($ (-825 |#1|)) 28)) (-3352 (((-112) $ $) 36)) (-3788 (((-928) $) 43)) (-4397 (($ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3738 (((-650 $) (-825 |#1|)) 19)) (-3735 (((-868) $) 51) (($ |#1|) 40) (((-825 |#1|) $) 47) (((-683 |#1|) $) 52)) (-1859 (((-112) $ $) NIL)) (-2771 (((-59 (-650 $)) (-650 |#1|) (-928)) 67)) (-1608 (((-650 $) (-650 |#1|) (-928)) 72)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 63)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 46)))
-(((-678 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 -1390 ((-112) $)) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -3788 ((-928) $)) (-15 -3352 ((-112) $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ((-683 |#1|) $)) (-15 -3738 ((-650 $) (-825 |#1|))) (-15 -4392 ((-112) (-825 |#1|))) (-15 -2987 ($ (-825 |#1|))) (-15 -2308 ((-3 $ "failed") (-825 |#1|))) (-15 -3039 ((-650 |#1|) $)) (-15 -2771 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -1608 ((-650 $) (-650 |#1|) (-928))))) (-856)) (T -678))
-((-1390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-4397 (*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856)))) (-4410 (*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3352 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-683 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3738 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-678 *4))) (-5 *1 (-678 *4)))) (-4392 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112)) (-5 *1 (-678 *4)))) (-2987 (*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-2308 (*1 *1 *2) (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-2771 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856)) (-5 *2 (-59 (-650 (-678 *5)))) (-5 *1 (-678 *5)))) (-1608 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856)) (-5 *2 (-650 (-678 *5))) (-5 *1 (-678 *5)))))
-(-13 (-856) (-1047 |#1|) (-10 -8 (-15 -1390 ((-112) $)) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -3788 ((-928) $)) (-15 -3352 ((-112) $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ((-683 |#1|) $)) (-15 -3738 ((-650 $) (-825 |#1|))) (-15 -4392 ((-112) (-825 |#1|))) (-15 -2987 ($ (-825 |#1|))) (-15 -2308 ((-3 $ "failed") (-825 |#1|))) (-15 -3039 ((-650 |#1|) $)) (-15 -2771 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -1608 ((-650 $) (-650 |#1|) (-928)))))
-((-2195 ((|#2| $) 103)) (-1573 (($ $) 124)) (-3594 (((-112) $ (-777)) 35)) (-3455 (($ $) 112) (($ $ (-777)) 115)) (-2356 (((-112) $) 125)) (-3457 (((-650 $) $) 99)) (-1457 (((-112) $ $) 95)) (-2742 (((-112) $ (-777)) 33)) (-2790 (((-570) $) 69)) (-4329 (((-570) $) 68)) (-3452 (((-112) $ (-777)) 31)) (-3873 (((-112) $) 101)) (-1728 ((|#2| $) 116) (($ $ (-777)) 120)) (-4285 (($ $ $ (-570)) 86) (($ |#2| $ (-570)) 85)) (-2344 (((-650 (-570)) $) 67)) (-1354 (((-112) (-570) $) 61)) (-3443 ((|#2| $) NIL) (($ $ (-777)) 111)) (-1558 (($ $ (-570)) 128)) (-3412 (((-112) $) 127)) (-1671 (((-112) (-1 (-112) |#2|) $) 44)) (-4245 (((-650 |#2|) $) 48)) (-1876 ((|#2| $ "value") NIL) ((|#2| $ "first") 110) (($ $ "rest") 114) ((|#2| $ "last") 123) (($ $ (-1243 (-570))) 82) ((|#2| $ (-570)) 59) ((|#2| $ (-570) |#2|) 60)) (-1678 (((-570) $ $) 94)) (-4320 (($ $ (-1243 (-570))) 81) (($ $ (-570)) 75)) (-3150 (((-112) $) 90)) (-3146 (($ $) 108)) (-2409 (((-777) $) 107)) (-2567 (($ $) 106)) (-3748 (($ (-650 |#2|)) 55)) (-3049 (($ $) 129)) (-3129 (((-650 $) $) 93)) (-2016 (((-112) $ $) 92)) (-4368 (((-112) (-1 (-112) |#2|) $) 43)) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 41)))
-(((-679 |#1| |#2|) (-10 -8 (-15 -3049 (|#1| |#1|)) (-15 -1558 (|#1| |#1| (-570))) (-15 -2356 ((-112) |#1|)) (-15 -3412 ((-112) |#1|)) (-15 -1876 (|#2| |#1| (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570))) (-15 -4245 ((-650 |#2|) |#1|)) (-15 -1354 ((-112) (-570) |#1|)) (-15 -2344 ((-650 (-570)) |#1|)) (-15 -4329 ((-570) |#1|)) (-15 -2790 ((-570) |#1|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1243 (-570)))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -3146 (|#1| |#1|)) (-15 -2409 ((-777) |#1|)) (-15 -2567 (|#1| |#1|)) (-15 -1573 (|#1| |#1|)) (-15 -1728 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "last")) (-15 -1728 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1876 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -3443 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -1457 ((-112) |#1| |#1|)) (-15 -2016 ((-112) |#1| |#1|)) (-15 -1678 ((-570) |#1| |#1|)) (-15 -3150 ((-112) |#1|)) (-15 -1876 (|#2| |#1| "value")) (-15 -2195 (|#2| |#1|)) (-15 -3873 ((-112) |#1|)) (-15 -3457 ((-650 |#1|) |#1|)) (-15 -3129 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777)))) (-680 |#2|) (-1226)) (T -679))
-NIL
-(-10 -8 (-15 -3049 (|#1| |#1|)) (-15 -1558 (|#1| |#1| (-570))) (-15 -2356 ((-112) |#1|)) (-15 -3412 ((-112) |#1|)) (-15 -1876 (|#2| |#1| (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570))) (-15 -4245 ((-650 |#2|) |#1|)) (-15 -1354 ((-112) (-570) |#1|)) (-15 -2344 ((-650 (-570)) |#1|)) (-15 -4329 ((-570) |#1|)) (-15 -2790 ((-570) |#1|)) (-15 -3748 (|#1| (-650 |#2|))) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1243 (-570)))) (-15 -4285 (|#1| |#2| |#1| (-570))) (-15 -4285 (|#1| |#1| |#1| (-570))) (-15 -3146 (|#1| |#1|)) (-15 -2409 ((-777) |#1|)) (-15 -2567 (|#1| |#1|)) (-15 -1573 (|#1| |#1|)) (-15 -1728 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "last")) (-15 -1728 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1876 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -3443 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -1457 ((-112) |#1| |#1|)) (-15 -2016 ((-112) |#1| |#1|)) (-15 -1678 ((-570) |#1| |#1|)) (-15 -3150 ((-112) |#1|)) (-15 -1876 (|#2| |#1| "value")) (-15 -2195 (|#2| |#1|)) (-15 -3873 ((-112) |#1|)) (-15 -3457 ((-650 |#1|) |#1|)) (-15 -3129 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -1671 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777))))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1573 (($ $) 68)) (-3225 (((-1281) $ (-570) (-570)) 98 (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) 53 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-2512 (($ $ $) 57 (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) 55 (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4449))) (($ $ "rest" $) 56 (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 118 (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 103)) (-2533 ((|#1| $) 67)) (-2450 (($) 7 T CONST)) (-3210 (($ $) 125)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-3480 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 104)) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3790 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 88)) (-2356 (((-112) $) 84)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2323 (((-777) $) 124)) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4286 (($ (-777) |#1|) 109)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 96 (|has| (-570) (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 95 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-3145 (($ $) 127)) (-1453 (((-112) $) 128)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1728 ((|#1| $) 71) (($ $ (-777)) 69)) (-4285 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2344 (((-650 (-570)) $) 93)) (-1354 (((-112) (-570) $) 92)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3490 ((|#1| $) 126)) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-1952 (($ $ |#1|) 97 (|has| $ (-6 -4449)))) (-1558 (($ $ (-570)) 123)) (-3412 (((-112) $) 85)) (-3279 (((-112) $) 129)) (-4105 (((-112) $) 130)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 91)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1243 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-1678 (((-570) $ $) 45)) (-4320 (($ $ (-1243 (-570))) 115) (($ $ (-570)) 114)) (-3150 (((-112) $) 47)) (-3146 (($ $) 63)) (-2839 (($ $) 60 (|has| $ (-6 -4449)))) (-2409 (((-777) $) 64)) (-2567 (($ $) 65)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 108)) (-2850 (($ $ $) 62 (|has| $ (-6 -4449))) (($ $ |#1|) 61 (|has| $ (-6 -4449)))) (-2439 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3049 (($ $) 122)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-680 |#1|) (-141) (-1226)) (T -680))
-((-1702 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1226)))) (-1424 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1226)))) (-4105 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))) (-3279 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))) (-1453 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))) (-3145 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))) (-3490 (*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))) (-3210 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))) (-2323 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))) (-1558 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-680 *3)) (-4 *3 (-1226)))) (-3049 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))))
-(-13 (-1158 |t#1|) (-10 -8 (-15 -1702 ($ (-1 (-112) |t#1|) $)) (-15 -1424 ($ (-1 (-112) |t#1|) $)) (-15 -4105 ((-112) $)) (-15 -3279 ((-112) $)) (-15 -1453 ((-112) $)) (-15 -3145 ($ $)) (-15 -3490 (|t#1| $)) (-15 -3210 ($ $)) (-15 -2323 ((-777) $)) (-15 -1558 ($ $ (-570))) (-15 -3049 ($ $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1158 |#1|) . T) ((-1226) . T) ((-1264 |#1|) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1456 (($ (-777) (-777) (-777)) 55 (|has| |#1| (-1058)))) (-3594 (((-112) $ (-777)) NIL)) (-2279 ((|#1| $ (-777) (-777) (-777) |#1|) 49)) (-2450 (($) NIL T CONST)) (-3175 (($ $ $) 60 (|has| |#1| (-1058)))) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3042 (((-1276 (-777)) $) 12)) (-2019 (($ (-1186) $ $) 37)) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2638 (($ (-777)) 57 (|has| |#1| (-1058)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-777) (-777) (-777)) 46)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3748 (($ (-650 (-650 (-650 |#1|)))) 70)) (-3735 (($ (-965 (-965 (-965 |#1|)))) 23) (((-965 (-965 (-965 |#1|))) $) 19) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-681 |#1|) (-13 (-495 |#1|) (-10 -8 (IF (|has| |#1| (-1058)) (PROGN (-15 -1456 ($ (-777) (-777) (-777))) (-15 -2638 ($ (-777))) (-15 -3175 ($ $ $))) |%noBranch|) (-15 -3748 ($ (-650 (-650 (-650 |#1|))))) (-15 -1876 (|#1| $ (-777) (-777) (-777))) (-15 -2279 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3735 ($ (-965 (-965 (-965 |#1|))))) (-15 -3735 ((-965 (-965 (-965 |#1|))) $)) (-15 -2019 ($ (-1186) $ $)) (-15 -3042 ((-1276 (-777)) $)))) (-1109)) (T -681))
-((-1456 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-2638 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-3175 (*1 *1 *1 *1) (-12 (-5 *1 (-681 *2)) (-4 *2 (-1058)) (-4 *2 (-1109)))) (-3748 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-650 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-1876 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-2279 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-2019 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-3042 (*1 *2 *1) (-12 (-5 *2 (-1276 (-777))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
-(-13 (-495 |#1|) (-10 -8 (IF (|has| |#1| (-1058)) (PROGN (-15 -1456 ($ (-777) (-777) (-777))) (-15 -2638 ($ (-777))) (-15 -3175 ($ $ $))) |%noBranch|) (-15 -3748 ($ (-650 (-650 (-650 |#1|))))) (-15 -1876 (|#1| $ (-777) (-777) (-777))) (-15 -2279 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3735 ($ (-965 (-965 (-965 |#1|))))) (-15 -3735 ((-965 (-965 (-965 |#1|))) $)) (-15 -2019 ($ (-1186) $ $)) (-15 -3042 ((-1276 (-777)) $))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3393 (((-489) $) 10)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-1144) $) 12)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-682) (-13 (-1092) (-10 -8 (-15 -3393 ((-489) $)) (-15 -3517 ((-1144) $))))) (T -682))
-((-3393 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-682)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-682)))))
-(-13 (-1092) (-10 -8 (-15 -3393 ((-489) $)) (-15 -3517 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) 15)) (-4410 (($ $) 19)) (-1390 (((-112) $) 20)) (-4378 (((-3 |#1| "failed") $) 23)) (-3080 ((|#1| $) 21)) (-3455 (($ $) 37)) (-2543 (($ $) 25)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-3352 (((-112) $ $) 47)) (-3788 (((-928) $) 40)) (-4397 (($ $) 18)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 ((|#1| $) 36)) (-3735 (((-868) $) 32) (($ |#1|) 24) (((-825 |#1|) $) 28)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 13)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 44)) (* (($ $ $) 35)))
-(((-683 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3443 (|#1| $)) (-15 -4397 ($ $)) (-15 -3788 ((-928) $)) (-15 -3352 ((-112) $ $)) (-15 -2543 ($ $)) (-15 -3455 ($ $)) (-15 -1390 ((-112) $)) (-15 -4410 ($ $)) (-15 -3039 ((-650 |#1|) $)))) (-856)) (T -683))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3443 (*1 *2 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-4397 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3352 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-2543 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3455 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-4410 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))))
-(-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3443 (|#1| $)) (-15 -4397 ($ $)) (-15 -3788 ((-928) $)) (-15 -3352 ((-112) $ $)) (-15 -2543 ($ $)) (-15 -3455 ($ $)) (-15 -1390 ((-112) $)) (-15 -4410 ($ $)) (-15 -3039 ((-650 |#1|) $))))
-((-4272 ((|#1| (-1 |#1| (-777) |#1|) (-777) |#1|) 14)) (-4310 ((|#1| (-1 |#1| |#1|) (-777) |#1|) 12)))
-(((-684 |#1|) (-10 -7 (-15 -4310 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -4272 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|))) (-1109)) (T -684))
-((-4272 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-777) *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))) (-4310 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))))
-(-10 -7 (-15 -4310 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -4272 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|)))
-((-4083 ((|#2| |#1| |#2|) 9)) (-4074 ((|#1| |#1| |#2|) 8)))
-(((-685 |#1| |#2|) (-10 -7 (-15 -4074 (|#1| |#1| |#2|)) (-15 -4083 (|#2| |#1| |#2|))) (-1109) (-1109)) (T -685))
-((-4083 (*1 *2 *3 *2) (-12 (-5 *1 (-685 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4074 (*1 *2 *2 *3) (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -4074 (|#1| |#1| |#2|)) (-15 -4083 (|#2| |#1| |#2|)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3864 (((-650 (-1144)) $) 10)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-677) (-13 (-1092) (-10 -8 (-15 -3864 ((-650 (-1144)) $))))) (T -677))
+((-3864 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-677)))))
+(-13 (-1092) (-10 -8 (-15 -3864 ((-650 (-1144)) $))))
+((-2417 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) NIL)) (-4411 (($ $) 62)) (-3771 (((-112) $) NIL)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-2896 (((-3 $ "failed") (-825 |#1|)) 27)) (-2059 (((-112) (-825 |#1|)) 17)) (-3171 (($ (-825 |#1|)) 28)) (-3605 (((-112) $ $) 36)) (-3788 (((-928) $) 43)) (-4398 (($ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3739 (((-650 $) (-825 |#1|)) 19)) (-3735 (((-868) $) 51) (($ |#1|) 40) (((-825 |#1|) $) 47) (((-683 |#1|) $) 52)) (-3866 (((-112) $ $) NIL)) (-1870 (((-59 (-650 $)) (-650 |#1|) (-928)) 67)) (-3307 (((-650 $) (-650 |#1|) (-928)) 72)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 63)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 46)))
+(((-678 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 -3771 ((-112) $)) (-15 -4398 ($ $)) (-15 -4411 ($ $)) (-15 -3788 ((-928) $)) (-15 -3605 ((-112) $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ((-683 |#1|) $)) (-15 -3739 ((-650 $) (-825 |#1|))) (-15 -2059 ((-112) (-825 |#1|))) (-15 -3171 ($ (-825 |#1|))) (-15 -2896 ((-3 $ "failed") (-825 |#1|))) (-15 -3039 ((-650 |#1|) $)) (-15 -1870 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -3307 ((-650 $) (-650 |#1|) (-928))))) (-856)) (T -678))
+((-3771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-4398 (*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856)))) (-4411 (*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3605 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-683 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3739 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-678 *4))) (-5 *1 (-678 *4)))) (-2059 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112)) (-5 *1 (-678 *4)))) (-3171 (*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-2896 (*1 *1 *2) (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-1870 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856)) (-5 *2 (-59 (-650 (-678 *5)))) (-5 *1 (-678 *5)))) (-3307 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856)) (-5 *2 (-650 (-678 *5))) (-5 *1 (-678 *5)))))
+(-13 (-856) (-1047 |#1|) (-10 -8 (-15 -3771 ((-112) $)) (-15 -4398 ($ $)) (-15 -4411 ($ $)) (-15 -3788 ((-928) $)) (-15 -3605 ((-112) $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ((-683 |#1|) $)) (-15 -3739 ((-650 $) (-825 |#1|))) (-15 -2059 ((-112) (-825 |#1|))) (-15 -3171 ($ (-825 |#1|))) (-15 -2896 ((-3 $ "failed") (-825 |#1|))) (-15 -3039 ((-650 |#1|) $)) (-15 -1870 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -3307 ((-650 $) (-650 |#1|) (-928)))))
+((-2196 ((|#2| $) 103)) (-1574 (($ $) 124)) (-4095 (((-112) $ (-777)) 35)) (-3455 (($ $) 112) (($ $ (-777)) 115)) (-2237 (((-112) $) 125)) (-2150 (((-650 $) $) 99)) (-4329 (((-112) $ $) 95)) (-1586 (((-112) $ (-777)) 33)) (-3888 (((-570) $) 69)) (-2596 (((-570) $) 68)) (-2113 (((-112) $ (-777)) 31)) (-1859 (((-112) $) 101)) (-1729 ((|#2| $) 116) (($ $ (-777)) 120)) (-4286 (($ $ $ (-570)) 86) (($ |#2| $ (-570)) 85)) (-2122 (((-650 (-570)) $) 67)) (-2083 (((-112) (-570) $) 61)) (-3443 ((|#2| $) NIL) (($ $ (-777)) 111)) (-4102 (($ $ (-570)) 128)) (-2928 (((-112) $) 127)) (-2697 (((-112) (-1 (-112) |#2|) $) 44)) (-4348 (((-650 |#2|) $) 48)) (-1877 ((|#2| $ "value") NIL) ((|#2| $ "first") 110) (($ $ "rest") 114) ((|#2| $ "last") 123) (($ $ (-1244 (-570))) 82) ((|#2| $ (-570)) 59) ((|#2| $ (-570) |#2|) 60)) (-2763 (((-570) $ $) 94)) (-4320 (($ $ (-1244 (-570))) 81) (($ $ (-570)) 75)) (-2345 (((-112) $) 90)) (-2308 (($ $) 108)) (-1535 (((-777) $) 107)) (-3631 (($ $) 106)) (-3749 (($ (-650 |#2|)) 55)) (-2540 (($ $) 129)) (-2153 (((-650 $) $) 93)) (-2931 (((-112) $ $) 92)) (-2964 (((-112) (-1 (-112) |#2|) $) 43)) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 41)))
+(((-679 |#1| |#2|) (-10 -8 (-15 -2540 (|#1| |#1|)) (-15 -4102 (|#1| |#1| (-570))) (-15 -2237 ((-112) |#1|)) (-15 -2928 ((-112) |#1|)) (-15 -1877 (|#2| |#1| (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570))) (-15 -4348 ((-650 |#2|) |#1|)) (-15 -2083 ((-112) (-570) |#1|)) (-15 -2122 ((-650 (-570)) |#1|)) (-15 -2596 ((-570) |#1|)) (-15 -3888 ((-570) |#1|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1244 (-570)))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -2308 (|#1| |#1|)) (-15 -1535 ((-777) |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -1729 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "last")) (-15 -1729 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1877 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -3443 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -4329 ((-112) |#1| |#1|)) (-15 -2931 ((-112) |#1| |#1|)) (-15 -2763 ((-570) |#1| |#1|)) (-15 -2345 ((-112) |#1|)) (-15 -1877 (|#2| |#1| "value")) (-15 -2196 (|#2| |#1|)) (-15 -1859 ((-112) |#1|)) (-15 -2150 ((-650 |#1|) |#1|)) (-15 -2153 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777)))) (-680 |#2|) (-1227)) (T -679))
+NIL
+(-10 -8 (-15 -2540 (|#1| |#1|)) (-15 -4102 (|#1| |#1| (-570))) (-15 -2237 ((-112) |#1|)) (-15 -2928 ((-112) |#1|)) (-15 -1877 (|#2| |#1| (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570))) (-15 -4348 ((-650 |#2|) |#1|)) (-15 -2083 ((-112) (-570) |#1|)) (-15 -2122 ((-650 (-570)) |#1|)) (-15 -2596 ((-570) |#1|)) (-15 -3888 ((-570) |#1|)) (-15 -3749 (|#1| (-650 |#2|))) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -4320 (|#1| |#1| (-570))) (-15 -4320 (|#1| |#1| (-1244 (-570)))) (-15 -4286 (|#1| |#2| |#1| (-570))) (-15 -4286 (|#1| |#1| |#1| (-570))) (-15 -2308 (|#1| |#1|)) (-15 -1535 ((-777) |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -1729 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "last")) (-15 -1729 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1877 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -3443 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -4329 ((-112) |#1| |#1|)) (-15 -2931 ((-112) |#1| |#1|)) (-15 -2763 ((-570) |#1| |#1|)) (-15 -2345 ((-112) |#1|)) (-15 -1877 (|#2| |#1| "value")) (-15 -2196 (|#2| |#1|)) (-15 -1859 ((-112) |#1|)) (-15 -2150 ((-650 |#1|) |#1|)) (-15 -2153 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2697 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1574 (($ $) 68)) (-3727 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3066 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4450))) (($ $ "rest" $) 56 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 118 (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 103)) (-2533 ((|#1| $) 67)) (-3761 (($) 7 T CONST)) (-1759 (($ $) 125)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-3480 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 104)) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3789 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 88)) (-2237 (((-112) $) 84)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1930 (((-777) $) 124)) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4287 (($ (-777) |#1|) 109)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 96 (|has| (-570) (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 95 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-2298 (($ $) 127)) (-4285 (((-112) $) 128)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1729 ((|#1| $) 71) (($ $ (-777)) 69)) (-4286 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2122 (((-650 (-570)) $) 93)) (-2083 (((-112) (-570) $) 92)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2420 ((|#1| $) 126)) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-3531 (($ $ |#1|) 97 (|has| $ (-6 -4450)))) (-4102 (($ $ (-570)) 123)) (-2928 (((-112) $) 85)) (-4220 (((-112) $) 129)) (-2334 (((-112) $) 130)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 91)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-2763 (((-570) $ $) 45)) (-4320 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-2345 (((-112) $) 47)) (-2308 (($ $) 63)) (-3103 (($ $) 60 (|has| $ (-6 -4450)))) (-1535 (((-777) $) 64)) (-3631 (($ $) 65)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 108)) (-3214 (($ $ $) 62 (|has| $ (-6 -4450))) (($ $ |#1|) 61 (|has| $ (-6 -4450)))) (-2439 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-2540 (($ $) 122)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-680 |#1|) (-141) (-1227)) (T -680))
+((-1703 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-1425 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-2334 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-4220 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-4285 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2298 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-2420 (*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-1759 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-1930 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-4102 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-2540 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(-13 (-1158 |t#1|) (-10 -8 (-15 -1703 ($ (-1 (-112) |t#1|) $)) (-15 -1425 ($ (-1 (-112) |t#1|) $)) (-15 -2334 ((-112) $)) (-15 -4220 ((-112) $)) (-15 -4285 ((-112) $)) (-15 -2298 ($ $)) (-15 -2420 (|t#1| $)) (-15 -1759 ($ $)) (-15 -1930 ((-777) $)) (-15 -4102 ($ $ (-570))) (-15 -2540 ($ $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1158 |#1|) . T) ((-1227) . T) ((-1265 |#1|) . T))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4319 (($ (-777) (-777) (-777)) 55 (|has| |#1| (-1058)))) (-4095 (((-112) $ (-777)) NIL)) (-2609 ((|#1| $ (-777) (-777) (-777) |#1|) 49)) (-3761 (($) NIL T CONST)) (-3175 (($ $ $) 60 (|has| |#1| (-1058)))) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2484 (((-1277 (-777)) $) 12)) (-2960 (($ (-1186) $ $) 37)) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2983 (($ (-777)) 57 (|has| |#1| (-1058)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-777) (-777) (-777)) 46)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3749 (($ (-650 (-650 (-650 |#1|)))) 70)) (-3735 (($ (-965 (-965 (-965 |#1|)))) 23) (((-965 (-965 (-965 |#1|))) $) 19) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-681 |#1|) (-13 (-495 |#1|) (-10 -8 (IF (|has| |#1| (-1058)) (PROGN (-15 -4319 ($ (-777) (-777) (-777))) (-15 -2983 ($ (-777))) (-15 -3175 ($ $ $))) |%noBranch|) (-15 -3749 ($ (-650 (-650 (-650 |#1|))))) (-15 -1877 (|#1| $ (-777) (-777) (-777))) (-15 -2609 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3735 ($ (-965 (-965 (-965 |#1|))))) (-15 -3735 ((-965 (-965 (-965 |#1|))) $)) (-15 -2960 ($ (-1186) $ $)) (-15 -2484 ((-1277 (-777)) $)))) (-1109)) (T -681))
+((-4319 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-2983 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-3175 (*1 *1 *1 *1) (-12 (-5 *1 (-681 *2)) (-4 *2 (-1058)) (-4 *2 (-1109)))) (-3749 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-650 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-1877 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-2609 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-2960 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-2484 (*1 *2 *1) (-12 (-5 *2 (-1277 (-777))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
+(-13 (-495 |#1|) (-10 -8 (IF (|has| |#1| (-1058)) (PROGN (-15 -4319 ($ (-777) (-777) (-777))) (-15 -2983 ($ (-777))) (-15 -3175 ($ $ $))) |%noBranch|) (-15 -3749 ($ (-650 (-650 (-650 |#1|))))) (-15 -1877 (|#1| $ (-777) (-777) (-777))) (-15 -2609 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3735 ($ (-965 (-965 (-965 |#1|))))) (-15 -3735 ((-965 (-965 (-965 |#1|))) $)) (-15 -2960 ($ (-1186) $ $)) (-15 -2484 ((-1277 (-777)) $))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-2765 (((-489) $) 10)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-1144) $) 12)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-682) (-13 (-1092) (-10 -8 (-15 -2765 ((-489) $)) (-15 -3515 ((-1144) $))))) (T -682))
+((-2765 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-682)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-682)))))
+(-13 (-1092) (-10 -8 (-15 -2765 ((-489) $)) (-15 -3515 ((-1144) $))))
+((-2417 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) 15)) (-4411 (($ $) 19)) (-3771 (((-112) $) 20)) (-4379 (((-3 |#1| "failed") $) 23)) (-3080 ((|#1| $) 21)) (-3455 (($ $) 37)) (-3374 (($ $) 25)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-3605 (((-112) $ $) 47)) (-3788 (((-928) $) 40)) (-4398 (($ $) 18)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 ((|#1| $) 36)) (-3735 (((-868) $) 32) (($ |#1|) 24) (((-825 |#1|) $) 28)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 13)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 44)) (* (($ $ $) 35)))
+(((-683 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3443 (|#1| $)) (-15 -4398 ($ $)) (-15 -3788 ((-928) $)) (-15 -3605 ((-112) $ $)) (-15 -3374 ($ $)) (-15 -3455 ($ $)) (-15 -3771 ((-112) $)) (-15 -4411 ($ $)) (-15 -3039 ((-650 |#1|) $)))) (-856)) (T -683))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3443 (*1 *2 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-4398 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3605 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3374 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3455 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-4411 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))))
+(-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3735 ((-825 |#1|) $)) (-15 -3443 (|#1| $)) (-15 -4398 ($ $)) (-15 -3788 ((-928) $)) (-15 -3605 ((-112) $ $)) (-15 -3374 ($ $)) (-15 -3455 ($ $)) (-15 -3771 ((-112) $)) (-15 -4411 ($ $)) (-15 -3039 ((-650 |#1|) $))))
+((-3330 ((|#1| (-1 |#1| (-777) |#1|) (-777) |#1|) 14)) (-4311 ((|#1| (-1 |#1| |#1|) (-777) |#1|) 12)))
+(((-684 |#1|) (-10 -7 (-15 -4311 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -3330 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|))) (-1109)) (T -684))
+((-3330 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-777) *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))) (-4311 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))))
+(-10 -7 (-15 -4311 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -3330 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|)))
+((-4085 ((|#2| |#1| |#2|) 9)) (-4072 ((|#1| |#1| |#2|) 8)))
+(((-685 |#1| |#2|) (-10 -7 (-15 -4072 (|#1| |#1| |#2|)) (-15 -4085 (|#2| |#1| |#2|))) (-1109) (-1109)) (T -685))
+((-4085 (*1 *2 *3 *2) (-12 (-5 *1 (-685 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4072 (*1 *2 *2 *3) (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -4072 (|#1| |#1| |#2|)) (-15 -4085 (|#2| |#1| |#2|)))
((-3263 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
(((-686 |#1| |#2| |#3|) (-10 -7 (-15 -3263 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1109) (-1109) (-1109)) (T -686))
((-3263 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)) (-5 *1 (-686 *5 *6 *2)))))
(-10 -7 (-15 -3263 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-3814 (((-1225) $) 21)) (-3756 (((-650 (-1225)) $) 19)) (-2024 (($ (-650 (-1225)) (-1225)) 14)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 29) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1225) $) 22) (($ (-1127)) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-687) (-13 (-1092) (-619 (-1225)) (-10 -8 (-15 -3735 ($ (-1127))) (-15 -2024 ($ (-650 (-1225)) (-1225))) (-15 -3756 ((-650 (-1225)) $)) (-15 -3814 ((-1225) $))))) (T -687))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1127)) (-5 *1 (-687)))) (-2024 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1225))) (-5 *3 (-1225)) (-5 *1 (-687)))) (-3756 (*1 *2 *1) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-687)))) (-3814 (*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-687)))))
-(-13 (-1092) (-619 (-1225)) (-10 -8 (-15 -3735 ($ (-1127))) (-15 -2024 ($ (-650 (-1225)) (-1225))) (-15 -3756 ((-650 (-1225)) $)) (-15 -3814 ((-1225) $))))
-((-4272 (((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)) 29)) (-2695 (((-1 |#1|) |#1|) 8)) (-4251 ((|#1| |#1|) 23)) (-2371 (((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570)) 22) ((|#1| (-1 |#1| |#1|)) 11)) (-3735 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-777)) 26)))
-(((-688 |#1|) (-10 -7 (-15 -2695 ((-1 |#1|) |#1|)) (-15 -3735 ((-1 |#1|) |#1|)) (-15 -2371 (|#1| (-1 |#1| |#1|))) (-15 -2371 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4251 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -4272 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)))) (-1109)) (T -688))
-((-4272 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-777) *3)) (-4 *3 (-1109)) (-5 *1 (-688 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *4 (-1109)) (-5 *1 (-688 *4)))) (-4251 (*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-650 *5) (-650 *5))) (-5 *4 (-570)) (-5 *2 (-650 *5)) (-5 *1 (-688 *5)) (-4 *5 (-1109)))) (-2371 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))) (-2695 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -2695 ((-1 |#1|) |#1|)) (-15 -3735 ((-1 |#1|) |#1|)) (-15 -2371 (|#1| (-1 |#1| |#1|))) (-15 -2371 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4251 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -4272 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|))))
-((-4128 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-1688 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-3640 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-3385 (((-1 |#2| |#1|) |#2|) 11)))
-(((-689 |#1| |#2|) (-10 -7 (-15 -3385 ((-1 |#2| |#1|) |#2|)) (-15 -1688 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3640 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -4128 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1109) (-1109)) (T -689))
-((-4128 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)))) (-3640 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)) (-4 *4 (-1109)))) (-1688 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-5 *2 (-1 *5)) (-5 *1 (-689 *4 *5)))) (-3385 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -3385 ((-1 |#2| |#1|) |#2|)) (-15 -1688 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3640 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -4128 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-2392 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-3228 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2000 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-1736 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-2035 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-690 |#1| |#2| |#3|) (-10 -7 (-15 -3228 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2000 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -1736 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2035 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2392 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1109) (-1109) (-1109)) (T -690))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-1 *7 *5)) (-5 *1 (-690 *5 *6 *7)))) (-2392 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-690 *4 *5 *6)))) (-2035 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *4 (-1109)))) (-1736 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *5 (-1109)))) (-2000 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *4 *5 *6)))) (-3228 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1109)) (-4 *4 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *5 *4 *6)))))
-(-10 -7 (-15 -3228 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2000 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -1736 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2035 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2392 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-3529 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-1351 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-691 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1351 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1351 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3529 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1058) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|) (-1058) (-378 |#5|) (-378 |#5|) (-693 |#5| |#6| |#7|)) (T -691))
-((-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1058)) (-4 *2 (-1058)) (-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *8 (-378 *2)) (-4 *9 (-378 *2)) (-5 *1 (-691 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-693 *5 *6 *7)) (-4 *10 (-693 *2 *8 *9)))) (-1351 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1058)) (-4 *8 (-1058)) (-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *2 (-693 *8 *9 *10)) (-5 *1 (-691 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-693 *5 *6 *7)) (-4 *9 (-378 *8)) (-4 *10 (-378 *8)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1058)) (-4 *8 (-1058)) (-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *2 (-693 *8 *9 *10)) (-5 *1 (-691 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-693 *5 *6 *7)) (-4 *9 (-378 *8)) (-4 *10 (-378 *8)))))
-(-10 -7 (-15 -1351 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1351 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3529 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-3397 (($ (-777) (-777)) 43)) (-4331 (($ $ $) 71)) (-2841 (($ |#3|) 66) (($ $) 67)) (-1813 (((-112) $) 38)) (-3308 (($ $ (-570) (-570)) 82)) (-1883 (($ $ (-570) (-570)) 83)) (-2390 (($ $ (-570) (-570) (-570) (-570)) 88)) (-3357 (($ $) 69)) (-1837 (((-112) $) 15)) (-3954 (($ $ (-570) (-570) $) 89)) (-3895 ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) 87)) (-4124 (($ (-777) |#2|) 53)) (-2427 (($ (-650 (-650 |#2|))) 51)) (-3747 (((-650 (-650 |#2|)) $) 78)) (-3855 (($ $ $) 70)) (-2407 (((-3 $ "failed") $ |#2|) 121)) (-1876 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-1990 (($ (-650 |#2|)) 54) (($ (-650 $)) 56)) (-3055 (((-112) $) 28)) (-3735 (($ |#4|) 61) (((-868) $) NIL)) (-3317 (((-112) $) 40)) (-2975 (($ $ |#2|) 123)) (-2965 (($ $ $) 93) (($ $) 96)) (-2954 (($ $ $) 91)) (** (($ $ (-777)) 110) (($ $ (-570)) 128)) (* (($ $ $) 102) (($ |#2| $) 98) (($ $ |#2|) 99) (($ (-570) $) 101) ((|#4| $ |#4|) 114) ((|#3| |#3| $) 118)))
-(((-692 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#2|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-777))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -3954 (|#1| |#1| (-570) (-570) |#1|)) (-15 -2390 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -1883 (|#1| |#1| (-570) (-570))) (-15 -3308 (|#1| |#1| (-570) (-570))) (-15 -3895 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1876 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -3747 ((-650 (-650 |#2|)) |#1|)) (-15 -4331 (|#1| |#1| |#1|)) (-15 -3855 (|#1| |#1| |#1|)) (-15 -3357 (|#1| |#1|)) (-15 -2841 (|#1| |#1|)) (-15 -2841 (|#1| |#3|)) (-15 -3735 (|#1| |#4|)) (-15 -1990 (|#1| (-650 |#1|))) (-15 -1990 (|#1| (-650 |#2|))) (-15 -4124 (|#1| (-777) |#2|)) (-15 -2427 (|#1| (-650 (-650 |#2|)))) (-15 -3397 (|#1| (-777) (-777))) (-15 -3317 ((-112) |#1|)) (-15 -1813 ((-112) |#1|)) (-15 -3055 ((-112) |#1|)) (-15 -1837 ((-112) |#1|)) (-15 -3895 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) (-570)))) (-693 |#2| |#3| |#4|) (-1058) (-378 |#2|) (-378 |#2|)) (T -692))
-NIL
-(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#2|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-777))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -3954 (|#1| |#1| (-570) (-570) |#1|)) (-15 -2390 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -1883 (|#1| |#1| (-570) (-570))) (-15 -3308 (|#1| |#1| (-570) (-570))) (-15 -3895 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1876 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -3747 ((-650 (-650 |#2|)) |#1|)) (-15 -4331 (|#1| |#1| |#1|)) (-15 -3855 (|#1| |#1| |#1|)) (-15 -3357 (|#1| |#1|)) (-15 -2841 (|#1| |#1|)) (-15 -2841 (|#1| |#3|)) (-15 -3735 (|#1| |#4|)) (-15 -1990 (|#1| (-650 |#1|))) (-15 -1990 (|#1| (-650 |#2|))) (-15 -4124 (|#1| (-777) |#2|)) (-15 -2427 (|#1| (-650 (-650 |#2|)))) (-15 -3397 (|#1| (-777) (-777))) (-15 -3317 ((-112) |#1|)) (-15 -1813 ((-112) |#1|)) (-15 -3055 ((-112) |#1|)) (-15 -1837 ((-112) |#1|)) (-15 -3895 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) (-570))))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) 98)) (-4331 (($ $ $) 88)) (-2841 (($ |#2|) 92) (($ $) 91)) (-1813 (((-112) $) 100)) (-3308 (($ $ (-570) (-570)) 84)) (-1883 (($ $ (-570) (-570)) 83)) (-2390 (($ $ (-570) (-570) (-570) (-570)) 82)) (-3357 (($ $) 90)) (-1837 (((-112) $) 102)) (-3594 (((-112) $ (-777)) 8)) (-3954 (($ $ (-570) (-570) $) 81)) (-3895 ((|#1| $ (-570) (-570) |#1|) 45) (($ $ (-650 (-570)) (-650 (-570)) $) 85)) (-3871 (($ $ (-570) |#2|) 43)) (-2898 (($ $ (-570) |#3|) 42)) (-4124 (($ (-777) |#1|) 96)) (-2450 (($) 7 T CONST)) (-3936 (($ $) 68 (|has| |#1| (-311)))) (-2653 ((|#2| $ (-570)) 47)) (-3934 (((-777) $) 67 (|has| |#1| (-562)))) (-3790 ((|#1| $ (-570) (-570) |#1|) 44)) (-3712 ((|#1| $ (-570) (-570)) 49)) (-2836 (((-650 |#1|) $) 31)) (-1645 (((-777) $) 66 (|has| |#1| (-562)))) (-4239 (((-650 |#3|) $) 65 (|has| |#1| (-562)))) (-3153 (((-777) $) 52)) (-4286 (($ (-777) (-777) |#1|) 58)) (-3167 (((-777) $) 51)) (-2742 (((-112) $ (-777)) 9)) (-2265 ((|#1| $) 63 (|has| |#1| (-6 (-4450 "*"))))) (-3118 (((-570) $) 56)) (-1607 (((-570) $) 54)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3392 (((-570) $) 55)) (-1555 (((-570) $) 53)) (-2427 (($ (-650 (-650 |#1|))) 97)) (-3776 (($ (-1 |#1| |#1|) $) 35)) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3747 (((-650 (-650 |#1|)) $) 87)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4260 (((-3 $ "failed") $) 62 (|has| |#1| (-368)))) (-3855 (($ $ $) 89)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) 57)) (-2407 (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-562)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-1990 (($ (-650 |#1|)) 95) (($ (-650 $)) 94)) (-3055 (((-112) $) 101)) (-3154 ((|#1| $) 64 (|has| |#1| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3541 ((|#3| $ (-570)) 46)) (-3735 (($ |#3|) 93) (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-3317 (((-112) $) 99)) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) 69 (|has| |#1| (-368)))) (-2965 (($ $ $) 79) (($ $) 78)) (-2954 (($ $ $) 80)) (** (($ $ (-777)) 71) (($ $ (-570)) 61 (|has| |#1| (-368)))) (* (($ $ $) 77) (($ |#1| $) 76) (($ $ |#1|) 75) (($ (-570) $) 74) ((|#3| $ |#3|) 73) ((|#2| |#2| $) 72)) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-3816 (((-1226) $) 21)) (-3756 (((-650 (-1226)) $) 19)) (-1908 (($ (-650 (-1226)) (-1226)) 14)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 29) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1226) $) 22) (($ (-1127)) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-687) (-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3735 ($ (-1127))) (-15 -1908 ($ (-650 (-1226)) (-1226))) (-15 -3756 ((-650 (-1226)) $)) (-15 -3816 ((-1226) $))))) (T -687))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1127)) (-5 *1 (-687)))) (-1908 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1226))) (-5 *3 (-1226)) (-5 *1 (-687)))) (-3756 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-687)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-687)))))
+(-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3735 ($ (-1127))) (-15 -1908 ($ (-650 (-1226)) (-1226))) (-15 -3756 ((-650 (-1226)) $)) (-15 -3816 ((-1226) $))))
+((-3330 (((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)) 29)) (-2328 (((-1 |#1|) |#1|) 8)) (-4254 ((|#1| |#1|) 23)) (-2357 (((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570)) 22) ((|#1| (-1 |#1| |#1|)) 11)) (-3735 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-777)) 26)))
+(((-688 |#1|) (-10 -7 (-15 -2328 ((-1 |#1|) |#1|)) (-15 -3735 ((-1 |#1|) |#1|)) (-15 -2357 (|#1| (-1 |#1| |#1|))) (-15 -2357 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4254 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -3330 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)))) (-1109)) (T -688))
+((-3330 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-777) *3)) (-4 *3 (-1109)) (-5 *1 (-688 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *4 (-1109)) (-5 *1 (-688 *4)))) (-4254 (*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-2357 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-650 *5) (-650 *5))) (-5 *4 (-570)) (-5 *2 (-650 *5)) (-5 *1 (-688 *5)) (-4 *5 (-1109)))) (-2357 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))) (-2328 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -2328 ((-1 |#1|) |#1|)) (-15 -3735 ((-1 |#1|) |#1|)) (-15 -2357 (|#1| (-1 |#1| |#1|))) (-15 -2357 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4254 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -3330 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|))))
+((-1330 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-2862 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-3640 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2678 (((-1 |#2| |#1|) |#2|) 11)))
+(((-689 |#1| |#2|) (-10 -7 (-15 -2678 ((-1 |#2| |#1|) |#2|)) (-15 -2862 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3640 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -1330 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1109) (-1109)) (T -689))
+((-1330 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)))) (-3640 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)) (-4 *4 (-1109)))) (-2862 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-5 *2 (-1 *5)) (-5 *1 (-689 *4 *5)))) (-2678 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -2678 ((-1 |#2| |#1|) |#2|)) (-15 -2862 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3640 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -1330 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-1364 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-3768 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2777 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2130 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-1997 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-690 |#1| |#2| |#3|) (-10 -7 (-15 -3768 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2777 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2130 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1997 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1364 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1109) (-1109) (-1109)) (T -690))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-1 *7 *5)) (-5 *1 (-690 *5 *6 *7)))) (-1364 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-690 *4 *5 *6)))) (-1997 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *4 (-1109)))) (-2130 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *5 (-1109)))) (-2777 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *4 *5 *6)))) (-3768 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1109)) (-4 *4 (-1109)) (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *5 *4 *6)))))
+(-10 -7 (-15 -3768 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2777 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2130 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1997 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1364 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-3529 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-1352 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-691 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1352 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1352 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3529 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1058) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|) (-1058) (-378 |#5|) (-378 |#5|) (-693 |#5| |#6| |#7|)) (T -691))
+((-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1058)) (-4 *2 (-1058)) (-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *8 (-378 *2)) (-4 *9 (-378 *2)) (-5 *1 (-691 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-693 *5 *6 *7)) (-4 *10 (-693 *2 *8 *9)))) (-1352 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1058)) (-4 *8 (-1058)) (-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *2 (-693 *8 *9 *10)) (-5 *1 (-691 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-693 *5 *6 *7)) (-4 *9 (-378 *8)) (-4 *10 (-378 *8)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1058)) (-4 *8 (-1058)) (-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *2 (-693 *8 *9 *10)) (-5 *1 (-691 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-693 *5 *6 *7)) (-4 *9 (-378 *8)) (-4 *10 (-378 *8)))))
+(-10 -7 (-15 -1352 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1352 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3529 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-3397 (($ (-777) (-777)) 43)) (-2617 (($ $ $) 71)) (-3115 (($ |#3|) 66) (($ $) 67)) (-1587 (((-112) $) 38)) (-3166 (($ $ (-570) (-570)) 82)) (-4062 (($ $ (-570) (-570)) 83)) (-1338 (($ $ (-570) (-570) (-570) (-570)) 88)) (-3660 (($ $) 69)) (-3639 (((-112) $) 15)) (-3190 (($ $ (-570) (-570) $) 89)) (-3894 ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) 87)) (-2465 (($ (-777) |#2|) 53)) (-2427 (($ (-650 (-650 |#2|))) 51)) (-3037 (((-650 (-650 |#2|)) $) 78)) (-1664 (($ $ $) 70)) (-2406 (((-3 $ "failed") $ |#2|) 121)) (-1877 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-2682 (($ (-650 |#2|)) 54) (($ (-650 $)) 56)) (-2593 (((-112) $) 28)) (-3735 (($ |#4|) 61) (((-868) $) NIL)) (-3251 (((-112) $) 40)) (-2975 (($ $ |#2|) 123)) (-2965 (($ $ $) 93) (($ $) 96)) (-2953 (($ $ $) 91)) (** (($ $ (-777)) 110) (($ $ (-570)) 128)) (* (($ $ $) 102) (($ |#2| $) 98) (($ $ |#2|) 99) (($ (-570) $) 101) ((|#4| $ |#4|) 114) ((|#3| |#3| $) 118)))
+(((-692 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#2|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-777))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3190 (|#1| |#1| (-570) (-570) |#1|)) (-15 -1338 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -4062 (|#1| |#1| (-570) (-570))) (-15 -3166 (|#1| |#1| (-570) (-570))) (-15 -3894 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1877 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -3037 ((-650 (-650 |#2|)) |#1|)) (-15 -2617 (|#1| |#1| |#1|)) (-15 -1664 (|#1| |#1| |#1|)) (-15 -3660 (|#1| |#1|)) (-15 -3115 (|#1| |#1|)) (-15 -3115 (|#1| |#3|)) (-15 -3735 (|#1| |#4|)) (-15 -2682 (|#1| (-650 |#1|))) (-15 -2682 (|#1| (-650 |#2|))) (-15 -2465 (|#1| (-777) |#2|)) (-15 -2427 (|#1| (-650 (-650 |#2|)))) (-15 -3397 (|#1| (-777) (-777))) (-15 -3251 ((-112) |#1|)) (-15 -1587 ((-112) |#1|)) (-15 -2593 ((-112) |#1|)) (-15 -3639 ((-112) |#1|)) (-15 -3894 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) (-570)))) (-693 |#2| |#3| |#4|) (-1058) (-378 |#2|) (-378 |#2|)) (T -692))
+NIL
+(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2975 (|#1| |#1| |#2|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-777))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3190 (|#1| |#1| (-570) (-570) |#1|)) (-15 -1338 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -4062 (|#1| |#1| (-570) (-570))) (-15 -3166 (|#1| |#1| (-570) (-570))) (-15 -3894 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1877 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -3037 ((-650 (-650 |#2|)) |#1|)) (-15 -2617 (|#1| |#1| |#1|)) (-15 -1664 (|#1| |#1| |#1|)) (-15 -3660 (|#1| |#1|)) (-15 -3115 (|#1| |#1|)) (-15 -3115 (|#1| |#3|)) (-15 -3735 (|#1| |#4|)) (-15 -2682 (|#1| (-650 |#1|))) (-15 -2682 (|#1| (-650 |#2|))) (-15 -2465 (|#1| (-777) |#2|)) (-15 -2427 (|#1| (-650 (-650 |#2|)))) (-15 -3397 (|#1| (-777) (-777))) (-15 -3251 ((-112) |#1|)) (-15 -1587 ((-112) |#1|)) (-15 -2593 ((-112) |#1|)) (-15 -3639 ((-112) |#1|)) (-15 -3894 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) (-570))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) 98)) (-2617 (($ $ $) 88)) (-3115 (($ |#2|) 92) (($ $) 91)) (-1587 (((-112) $) 100)) (-3166 (($ $ (-570) (-570)) 84)) (-4062 (($ $ (-570) (-570)) 83)) (-1338 (($ $ (-570) (-570) (-570) (-570)) 82)) (-3660 (($ $) 90)) (-3639 (((-112) $) 102)) (-4095 (((-112) $ (-777)) 8)) (-3190 (($ $ (-570) (-570) $) 81)) (-3894 ((|#1| $ (-570) (-570) |#1|) 45) (($ $ (-650 (-570)) (-650 (-570)) $) 85)) (-1850 (($ $ (-570) |#2|) 43)) (-3693 (($ $ (-570) |#3|) 42)) (-2465 (($ (-777) |#1|) 96)) (-3761 (($) 7 T CONST)) (-4321 (($ $) 68 (|has| |#1| (-311)))) (-1991 ((|#2| $ (-570)) 47)) (-3933 (((-777) $) 67 (|has| |#1| (-562)))) (-3789 ((|#1| $ (-570) (-570) |#1|) 44)) (-3713 ((|#1| $ (-570) (-570)) 49)) (-2835 (((-650 |#1|) $) 31)) (-2454 (((-777) $) 66 (|has| |#1| (-562)))) (-4296 (((-650 |#3|) $) 65 (|has| |#1| (-562)))) (-3155 (((-777) $) 52)) (-4287 (($ (-777) (-777) |#1|) 58)) (-3167 (((-777) $) 51)) (-1586 (((-112) $ (-777)) 9)) (-2481 ((|#1| $) 63 (|has| |#1| (-6 (-4451 "*"))))) (-2055 (((-570) $) 56)) (-3295 (((-570) $) 54)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2755 (((-570) $) 55)) (-4067 (((-570) $) 53)) (-2427 (($ (-650 (-650 |#1|))) 97)) (-3776 (($ (-1 |#1| |#1|) $) 35)) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3037 (((-650 (-650 |#1|)) $) 87)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3174 (((-3 $ "failed") $) 62 (|has| |#1| (-368)))) (-1664 (($ $ $) 89)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) 57)) (-2406 (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-562)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-2682 (($ (-650 |#1|)) 95) (($ (-650 $)) 94)) (-2593 (((-112) $) 101)) (-2371 ((|#1| $) 64 (|has| |#1| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1743 ((|#3| $ (-570)) 46)) (-3735 (($ |#3|) 93) (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3251 (((-112) $) 99)) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) 69 (|has| |#1| (-368)))) (-2965 (($ $ $) 79) (($ $) 78)) (-2953 (($ $ $) 80)) (** (($ $ (-777)) 71) (($ $ (-570)) 61 (|has| |#1| (-368)))) (* (($ $ $) 77) (($ |#1| $) 76) (($ $ |#1|) 75) (($ (-570) $) 74) ((|#3| $ |#3|) 73) ((|#2| |#2| $) 72)) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-693 |#1| |#2| |#3|) (-141) (-1058) (-378 |t#1|) (-378 |t#1|)) (T -693))
-((-1837 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3055 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-1813 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3317 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3397 (*1 *1 *2 *2) (-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-4124 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1990 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1990 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *2)) (-4 *4 (-378 *3)) (-4 *2 (-378 *3)))) (-2841 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *2 *4)) (-4 *2 (-378 *3)) (-4 *4 (-378 *3)))) (-2841 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3357 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3855 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-4331 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3747 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-650 (-650 *3))))) (-1876 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3895 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-650 (-570))) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3308 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1883 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2390 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3954 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2954 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2965 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2965 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-693 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *2 (-378 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-693 *3 *2 *4)) (-4 *3 (-1058)) (-4 *2 (-378 *3)) (-4 *4 (-378 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2407 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-562)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-368)))) (-3936 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-311)))) (-3934 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-777)))) (-1645 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-777)))) (-4239 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-650 *5)))) (-3154 (*1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058)))) (-2265 (*1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058)))) (-4260 (*1 *1 *1) (|partial| -12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-368)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-368)))))
-(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4449) (-6 -4448) (-15 -1837 ((-112) $)) (-15 -3055 ((-112) $)) (-15 -1813 ((-112) $)) (-15 -3317 ((-112) $)) (-15 -3397 ($ (-777) (-777))) (-15 -2427 ($ (-650 (-650 |t#1|)))) (-15 -4124 ($ (-777) |t#1|)) (-15 -1990 ($ (-650 |t#1|))) (-15 -1990 ($ (-650 $))) (-15 -3735 ($ |t#3|)) (-15 -2841 ($ |t#2|)) (-15 -2841 ($ $)) (-15 -3357 ($ $)) (-15 -3855 ($ $ $)) (-15 -4331 ($ $ $)) (-15 -3747 ((-650 (-650 |t#1|)) $)) (-15 -1876 ($ $ (-650 (-570)) (-650 (-570)))) (-15 -3895 ($ $ (-650 (-570)) (-650 (-570)) $)) (-15 -3308 ($ $ (-570) (-570))) (-15 -1883 ($ $ (-570) (-570))) (-15 -2390 ($ $ (-570) (-570) (-570) (-570))) (-15 -3954 ($ $ (-570) (-570) $)) (-15 -2954 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -2965 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-570) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-777))) (IF (|has| |t#1| (-562)) (-15 -2407 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -2975 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-311)) (-15 -3936 ($ $)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -3934 ((-777) $)) (-15 -1645 ((-777) $)) (-15 -4239 ((-650 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4450 "*"))) (PROGN (-15 -3154 (|t#1| $)) (-15 -2265 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -4260 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-57 |#1| |#2| |#3|) . T) ((-1226) . T))
-((-3936 ((|#4| |#4|) 97 (|has| |#1| (-311)))) (-3934 (((-777) |#4|) 125 (|has| |#1| (-562)))) (-1645 (((-777) |#4|) 101 (|has| |#1| (-562)))) (-4239 (((-650 |#3|) |#4|) 108 (|has| |#1| (-562)))) (-1913 (((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|) 140 (|has| |#1| (-311)))) (-2265 ((|#1| |#4|) 57)) (-3115 (((-3 |#4| "failed") |#4|) 89 (|has| |#1| (-562)))) (-4260 (((-3 |#4| "failed") |#4|) 105 (|has| |#1| (-368)))) (-3121 ((|#4| |#4|) 93 (|has| |#1| (-562)))) (-3526 ((|#4| |#4| |#1| (-570) (-570)) 65)) (-1948 ((|#4| |#4| (-570) (-570)) 60)) (-3514 ((|#4| |#4| |#1| (-570) (-570)) 70)) (-3154 ((|#1| |#4|) 103)) (-1478 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 94 (|has| |#1| (-562)))))
-(((-694 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3154 (|#1| |#4|)) (-15 -2265 (|#1| |#4|)) (-15 -1948 (|#4| |#4| (-570) (-570))) (-15 -3526 (|#4| |#4| |#1| (-570) (-570))) (-15 -3514 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -3934 ((-777) |#4|)) (-15 -1645 ((-777) |#4|)) (-15 -4239 ((-650 |#3|) |#4|)) (-15 -3121 (|#4| |#4|)) (-15 -3115 ((-3 |#4| "failed") |#4|)) (-15 -1478 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -3936 (|#4| |#4|)) (-15 -1913 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -4260 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-174) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -694))
-((-4260 (*1 *2 *2) (|partial| -12 (-4 *3 (-368)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-1913 (*1 *2 *3 *3) (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5)))) (-3936 (*1 *2 *2) (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-1478 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3115 (*1 *2 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-3121 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-4239 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-650 *6)) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-1645 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3934 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3514 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3)) (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2)) (-4 *2 (-693 *3 *5 *6)))) (-3526 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3)) (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2)) (-4 *2 (-693 *3 *5 *6)))) (-1948 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *1 (-694 *4 *5 *6 *2)) (-4 *2 (-693 *4 *5 *6)))) (-2265 (*1 *2 *3) (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174)) (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5)))) (-3154 (*1 *2 *3) (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174)) (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5)))))
-(-10 -7 (-15 -3154 (|#1| |#4|)) (-15 -2265 (|#1| |#4|)) (-15 -1948 (|#4| |#4| (-570) (-570))) (-15 -3526 (|#4| |#4| |#1| (-570) (-570))) (-15 -3514 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -3934 ((-777) |#4|)) (-15 -1645 ((-777) |#4|)) (-15 -4239 ((-650 |#3|) |#4|)) (-15 -3121 (|#4| |#4|)) (-15 -3115 ((-3 |#4| "failed") |#4|)) (-15 -1478 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -3936 (|#4| |#4|)) (-15 -1913 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -4260 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) 64)) (-4331 (($ $ $) NIL)) (-2841 (($ (-1276 |#1|)) NIL) (($ $) NIL)) (-1813 (((-112) $) NIL)) (-3308 (($ $ (-570) (-570)) 22)) (-1883 (($ $ (-570) (-570)) NIL)) (-2390 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-3357 (($ $) NIL)) (-1837 (((-112) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-3954 (($ $ (-570) (-570) $) NIL)) (-3895 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-3871 (($ $ (-570) (-1276 |#1|)) NIL)) (-2898 (($ $ (-570) (-1276 |#1|)) NIL)) (-4124 (($ (-777) |#1|) 37)) (-2450 (($) NIL T CONST)) (-3936 (($ $) 46 (|has| |#1| (-311)))) (-2653 (((-1276 |#1|) $ (-570)) NIL)) (-3934 (((-777) $) 48 (|has| |#1| (-562)))) (-3790 ((|#1| $ (-570) (-570) |#1|) 69)) (-3712 ((|#1| $ (-570) (-570)) NIL)) (-2836 (((-650 |#1|) $) NIL)) (-1645 (((-777) $) 50 (|has| |#1| (-562)))) (-4239 (((-650 (-1276 |#1|)) $) 53 (|has| |#1| (-562)))) (-3153 (((-777) $) 32)) (-4286 (($ (-777) (-777) |#1|) 28)) (-3167 (((-777) $) 33)) (-2742 (((-112) $ (-777)) NIL)) (-2265 ((|#1| $) 44 (|has| |#1| (-6 (-4450 "*"))))) (-3118 (((-570) $) 10)) (-1607 (((-570) $) 11)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3392 (((-570) $) 14)) (-1555 (((-570) $) 65)) (-2427 (($ (-650 (-650 |#1|))) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3747 (((-650 (-650 |#1|)) $) 76)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4260 (((-3 $ "failed") $) 60 (|has| |#1| (-368)))) (-3855 (($ $ $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1952 (($ $ |#1|) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-1990 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL) (($ (-1276 |#1|)) 70)) (-3055 (((-112) $) NIL)) (-3154 ((|#1| $) 42 (|has| |#1| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3541 (((-1276 |#1|) $ (-570)) NIL)) (-3735 (($ (-1276 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3317 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) 38) (($ $ (-570)) 62 (|has| |#1| (-368)))) (* (($ $ $) 24) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-570) $) NIL) (((-1276 |#1|) $ (-1276 |#1|)) NIL) (((-1276 |#1|) (-1276 |#1|) $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-695 |#1|) (-13 (-693 |#1| (-1276 |#1|) (-1276 |#1|)) (-10 -8 (-15 -1990 ($ (-1276 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -4260 ((-3 $ "failed") $)) |%noBranch|))) (-1058)) (T -695))
-((-4260 (*1 *1 *1) (|partial| -12 (-5 *1 (-695 *2)) (-4 *2 (-368)) (-4 *2 (-1058)))) (-1990 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1058)) (-5 *1 (-695 *3)))))
-(-13 (-693 |#1| (-1276 |#1|) (-1276 |#1|)) (-10 -8 (-15 -1990 ($ (-1276 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -4260 ((-3 $ "failed") $)) |%noBranch|)))
-((-3099 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 37)) (-1640 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 34)) (-1814 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777)) 43)) (-1526 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 27)) (-2286 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 31) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 29)) (-4393 (((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|)) 33)) (-2110 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 25)) (** (((-695 |#1|) (-695 |#1|) (-777)) 46)))
-(((-696 |#1|) (-10 -7 (-15 -2110 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1526 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2286 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2286 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4393 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -1640 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -3099 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1814 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777))) (-15 ** ((-695 |#1|) (-695 |#1|) (-777)))) (-1058)) (T -696))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-696 *4)))) (-1814 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-696 *4)))) (-3099 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1640 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-4393 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2286 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2286 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1526 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2110 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(-10 -7 (-15 -2110 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1526 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2286 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2286 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4393 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -1640 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -3099 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1814 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777))) (-15 ** ((-695 |#1|) (-695 |#1|) (-777))))
-((-4378 (((-3 |#1| "failed") $) 18)) (-3080 ((|#1| $) NIL)) (-1594 (($) 7 T CONST)) (-1362 (($ |#1|) 8)) (-3735 (($ |#1|) 16) (((-868) $) 23)) (-1802 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -1594)) 11)) (-3950 ((|#1| $) 15)))
-(((-697 |#1|) (-13 (-1271) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -1362 ($ |#1|)) (-15 -1802 ((-112) $ (|[\|\|]| |#1|))) (-15 -1802 ((-112) $ (|[\|\|]| -1594))) (-15 -3950 (|#1| $)) (-15 -1594 ($) -3640))) (-619 (-868))) (T -697))
-((-1362 (*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-619 (-868))) (-5 *2 (-112)) (-5 *1 (-697 *4)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1594)) (-5 *2 (-112)) (-5 *1 (-697 *4)) (-4 *4 (-619 (-868))))) (-3950 (*1 *2 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1594 (*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
-(-13 (-1271) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -1362 ($ |#1|)) (-15 -1802 ((-112) $ (|[\|\|]| |#1|))) (-15 -1802 ((-112) $ (|[\|\|]| -1594))) (-15 -3950 (|#1| $)) (-15 -1594 ($) -3640)))
-((-1530 ((|#2| |#2| |#4|) 33)) (-2436 (((-695 |#2|) |#3| |#4|) 39)) (-2115 (((-695 |#2|) |#2| |#4|) 38)) (-1667 (((-1276 |#2|) |#2| |#4|) 16)) (-3663 ((|#2| |#3| |#4|) 32)) (-4034 (((-695 |#2|) |#3| |#4| (-777) (-777)) 48)) (-1763 (((-695 |#2|) |#2| |#4| (-777)) 47)))
-(((-698 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1667 ((-1276 |#2|) |#2| |#4|)) (-15 -3663 (|#2| |#3| |#4|)) (-15 -1530 (|#2| |#2| |#4|)) (-15 -2115 ((-695 |#2|) |#2| |#4|)) (-15 -1763 ((-695 |#2|) |#2| |#4| (-777))) (-15 -2436 ((-695 |#2|) |#3| |#4|)) (-15 -4034 ((-695 |#2|) |#3| |#4| (-777) (-777)))) (-1109) (-907 |#1|) (-378 |#2|) (-13 (-378 |#1|) (-10 -7 (-6 -4448)))) (T -698))
-((-4034 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *7 (-907 *6)) (-5 *2 (-695 *7)) (-5 *1 (-698 *6 *7 *3 *4)) (-4 *3 (-378 *7)) (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4448)))))) (-2436 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *6 (-907 *5)) (-5 *2 (-695 *6)) (-5 *1 (-698 *5 *6 *3 *4)) (-4 *3 (-378 *6)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))) (-1763 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *3 (-907 *6)) (-5 *2 (-695 *3)) (-5 *1 (-698 *6 *3 *7 *4)) (-4 *7 (-378 *3)) (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4448)))))) (-2115 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-695 *3)) (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))) (-1530 (*1 *2 *2 *3) (-12 (-4 *4 (-1109)) (-4 *2 (-907 *4)) (-5 *1 (-698 *4 *2 *5 *3)) (-4 *5 (-378 *2)) (-4 *3 (-13 (-378 *4) (-10 -7 (-6 -4448)))))) (-3663 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *2 (-907 *5)) (-5 *1 (-698 *5 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))) (-1667 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-1276 *3)) (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))))
-(-10 -7 (-15 -1667 ((-1276 |#2|) |#2| |#4|)) (-15 -3663 (|#2| |#3| |#4|)) (-15 -1530 (|#2| |#2| |#4|)) (-15 -2115 ((-695 |#2|) |#2| |#4|)) (-15 -1763 ((-695 |#2|) |#2| |#4| (-777))) (-15 -2436 ((-695 |#2|) |#3| |#4|)) (-15 -4034 ((-695 |#2|) |#3| |#4| (-777) (-777))))
-((-2504 (((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)) 20)) (-3643 ((|#1| (-695 |#2|)) 9)) (-1443 (((-695 |#1|) (-695 |#2|)) 18)))
-(((-699 |#1| |#2|) (-10 -7 (-15 -3643 (|#1| (-695 |#2|))) (-15 -1443 ((-695 |#1|) (-695 |#2|))) (-15 -2504 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)))) (-562) (-1001 |#1|)) (T -699))
-((-2504 (*1 *2 *3) (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |num| (-695 *4)) (|:| |den| *4))) (-5 *1 (-699 *4 *5)))) (-1443 (*1 *2 *3) (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562)) (-5 *2 (-695 *4)) (-5 *1 (-699 *4 *5)))) (-3643 (*1 *2 *3) (-12 (-5 *3 (-695 *4)) (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-699 *2 *4)))))
-(-10 -7 (-15 -3643 (|#1| (-695 |#2|))) (-15 -1443 ((-695 |#1|) (-695 |#2|))) (-15 -2504 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2945 (((-695 (-705))) NIL) (((-695 (-705)) (-1276 $)) NIL)) (-3071 (((-705) $) NIL)) (-2735 (($ $) NIL (|has| (-705) (-1211)))) (-2602 (($ $) NIL (|has| (-705) (-1211)))) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-705) (-354)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-2222 (($ $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-1790 (((-424 $) $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-3753 (($ $) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1211))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-4339 (((-112) $ $) NIL (|has| (-705) (-311)))) (-3403 (((-777)) NIL (|has| (-705) (-373)))) (-2712 (($ $) NIL (|has| (-705) (-1211)))) (-2579 (($ $) NIL (|has| (-705) (-1211)))) (-4087 (($ $) NIL (|has| (-705) (-1211)))) (-2622 (($ $) NIL (|has| (-705) (-1211)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-705) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-3080 (((-570) $) NIL) (((-705) $) NIL) (((-413 (-570)) $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-2049 (($ (-1276 (-705))) NIL) (($ (-1276 (-705)) (-1276 $)) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-705) (-354)))) (-2372 (($ $ $) NIL (|has| (-705) (-311)))) (-2710 (((-695 (-705)) $) NIL) (((-695 (-705)) $ (-1276 $)) NIL)) (-4177 (((-695 (-705)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-705))) (|:| |vec| (-1276 (-705)))) (-695 $) (-1276 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-705) (-645 (-570)))) (((-695 (-570)) (-695 $)) NIL (|has| (-705) (-645 (-570))))) (-3529 (((-3 $ "failed") (-413 (-1182 (-705)))) NIL (|has| (-705) (-368))) (($ (-1182 (-705))) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3765 (((-705) $) 29)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-551)))) (-2085 (((-112) $) NIL (|has| (-705) (-551)))) (-3137 (((-413 (-570)) $) NIL (|has| (-705) (-551)))) (-3934 (((-928)) NIL)) (-3336 (($) NIL (|has| (-705) (-373)))) (-2381 (($ $ $) NIL (|has| (-705) (-311)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| (-705) (-311)))) (-2493 (($) NIL (|has| (-705) (-354)))) (-2036 (((-112) $) NIL (|has| (-705) (-354)))) (-2774 (($ $) NIL (|has| (-705) (-354))) (($ $ (-777)) NIL (|has| (-705) (-354)))) (-1552 (((-112) $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-2817 (((-2 (|:| |r| (-705)) (|:| |phi| (-705))) $) NIL (-12 (|has| (-705) (-1069)) (|has| (-705) (-1211))))) (-1314 (($) NIL (|has| (-705) (-1211)))) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-705) (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-705) (-893 (-570))))) (-3157 (((-839 (-928)) $) NIL (|has| (-705) (-354))) (((-928) $) NIL (|has| (-705) (-354)))) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1211))))) (-2610 (((-705) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| (-705) (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-1638 (((-1182 (-705)) $) NIL (|has| (-705) (-368)))) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1351 (($ (-1 (-705) (-705)) $) NIL)) (-2367 (((-928) $) NIL (|has| (-705) (-373)))) (-2635 (($ $) NIL (|has| (-705) (-1211)))) (-3516 (((-1182 (-705)) $) NIL)) (-1845 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| (-705) (-368)))) (-2314 (($) NIL (|has| (-705) (-354)) CONST)) (-2159 (($ (-928)) NIL (|has| (-705) (-373)))) (-2500 (($) NIL)) (-3779 (((-705) $) 31)) (-3479 (((-1129) $) NIL)) (-2339 (($) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-705) (-311)))) (-1874 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-705) (-354)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3738 (((-424 $) $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-705) (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| (-705) (-311)))) (-2407 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-705)) NIL (|has| (-705) (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-4387 (($ $) NIL (|has| (-705) (-1211)))) (-1730 (($ $ (-1186) (-705)) NIL (|has| (-705) (-520 (-1186) (-705)))) (($ $ (-650 (-1186)) (-650 (-705))) NIL (|has| (-705) (-520 (-1186) (-705)))) (($ $ (-650 (-298 (-705)))) NIL (|has| (-705) (-313 (-705)))) (($ $ (-298 (-705))) NIL (|has| (-705) (-313 (-705)))) (($ $ (-705) (-705)) NIL (|has| (-705) (-313 (-705)))) (($ $ (-650 (-705)) (-650 (-705))) NIL (|has| (-705) (-313 (-705))))) (-2272 (((-777) $) NIL (|has| (-705) (-311)))) (-1876 (($ $ (-705)) NIL (|has| (-705) (-290 (-705) (-705))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| (-705) (-311)))) (-2998 (((-705)) NIL) (((-705) (-1276 $)) NIL)) (-2845 (((-3 (-777) "failed") $ $) NIL (|has| (-705) (-354))) (((-777) $) NIL (|has| (-705) (-354)))) (-3447 (($ $ (-1 (-705) (-705))) NIL) (($ $ (-1 (-705) (-705)) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-777)) NIL (|has| (-705) (-235))) (($ $) NIL (|has| (-705) (-235)))) (-4399 (((-695 (-705)) (-1276 $) (-1 (-705) (-705))) NIL (|has| (-705) (-368)))) (-2886 (((-1182 (-705))) NIL)) (-4099 (($ $) NIL (|has| (-705) (-1211)))) (-2634 (($ $) NIL (|has| (-705) (-1211)))) (-2163 (($) NIL (|has| (-705) (-354)))) (-2746 (($ $) NIL (|has| (-705) (-1211)))) (-2611 (($ $) NIL (|has| (-705) (-1211)))) (-2723 (($ $) NIL (|has| (-705) (-1211)))) (-2590 (($ $) NIL (|has| (-705) (-1211)))) (-1807 (((-695 (-705)) (-1276 $)) NIL) (((-1276 (-705)) $) NIL) (((-695 (-705)) (-1276 $) (-1276 $)) NIL) (((-1276 (-705)) $ (-1276 $)) NIL)) (-1416 (((-542) $) NIL (|has| (-705) (-620 (-542)))) (((-171 (-227)) $) NIL (|has| (-705) (-1031))) (((-171 (-384)) $) NIL (|has| (-705) (-1031))) (((-899 (-384)) $) NIL (|has| (-705) (-620 (-899 (-384))))) (((-899 (-570)) $) NIL (|has| (-705) (-620 (-899 (-570))))) (($ (-1182 (-705))) NIL) (((-1182 (-705)) $) NIL) (($ (-1276 (-705))) NIL) (((-1276 (-705)) $) NIL)) (-3684 (($ $) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-354))))) (-3035 (($ (-705) (-705)) 12)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-705)) NIL) (($ (-171 (-384))) 13) (($ (-171 (-570))) 19) (($ (-171 (-705))) 28) (($ (-171 (-707))) 25) (((-171 (-384)) $) 33) (($ (-413 (-570))) NIL (-2740 (|has| (-705) (-1047 (-413 (-570)))) (|has| (-705) (-368))))) (-1918 (($ $) NIL (|has| (-705) (-354))) (((-3 $ "failed") $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-146))))) (-3674 (((-1182 (-705)) $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL)) (-4138 (($ $) NIL (|has| (-705) (-1211)))) (-2671 (($ $) NIL (|has| (-705) (-1211)))) (-1681 (((-112) $ $) NIL)) (-4108 (($ $) NIL (|has| (-705) (-1211)))) (-2647 (($ $) NIL (|has| (-705) (-1211)))) (-4161 (($ $) NIL (|has| (-705) (-1211)))) (-2691 (($ $) NIL (|has| (-705) (-1211)))) (-3091 (((-705) $) NIL (|has| (-705) (-1211)))) (-1509 (($ $) NIL (|has| (-705) (-1211)))) (-2701 (($ $) NIL (|has| (-705) (-1211)))) (-4150 (($ $) NIL (|has| (-705) (-1211)))) (-2681 (($ $) NIL (|has| (-705) (-1211)))) (-4123 (($ $) NIL (|has| (-705) (-1211)))) (-2660 (($ $) NIL (|has| (-705) (-1211)))) (-1423 (($ $) NIL (|has| (-705) (-1069)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-1 (-705) (-705))) NIL) (($ $ (-1 (-705) (-705)) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-777)) NIL (|has| (-705) (-235))) (($ $) NIL (|has| (-705) (-235)))) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| (-705) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ $) NIL (|has| (-705) (-1211))) (($ $ (-413 (-570))) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1211)))) (($ $ (-570)) NIL (|has| (-705) (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ (-705) $) NIL) (($ $ (-705)) NIL) (($ (-413 (-570)) $) NIL (|has| (-705) (-368))) (($ $ (-413 (-570))) NIL (|has| (-705) (-368)))))
+((-3639 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-2593 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-1587 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3251 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3397 (*1 *1 *2 *2) (-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2465 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2682 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2682 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *2)) (-4 *4 (-378 *3)) (-4 *2 (-378 *3)))) (-3115 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *2 *4)) (-4 *2 (-378 *3)) (-4 *4 (-378 *3)))) (-3115 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3660 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-1664 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2617 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3037 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-650 (-650 *3))))) (-1877 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3894 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-650 (-570))) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3166 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-4062 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-1338 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-3190 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2953 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2965 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2965 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-693 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *2 (-378 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-693 *3 *2 *4)) (-4 *3 (-1058)) (-4 *2 (-378 *3)) (-4 *4 (-378 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))) (-2406 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-562)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-368)))) (-4321 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-311)))) (-3933 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-777)))) (-2454 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-777)))) (-4296 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-650 *5)))) (-2371 (*1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058)))) (-2481 (*1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058)))) (-3174 (*1 *1 *1) (|partial| -12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-368)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-4 *3 (-368)))))
+(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -3639 ((-112) $)) (-15 -2593 ((-112) $)) (-15 -1587 ((-112) $)) (-15 -3251 ((-112) $)) (-15 -3397 ($ (-777) (-777))) (-15 -2427 ($ (-650 (-650 |t#1|)))) (-15 -2465 ($ (-777) |t#1|)) (-15 -2682 ($ (-650 |t#1|))) (-15 -2682 ($ (-650 $))) (-15 -3735 ($ |t#3|)) (-15 -3115 ($ |t#2|)) (-15 -3115 ($ $)) (-15 -3660 ($ $)) (-15 -1664 ($ $ $)) (-15 -2617 ($ $ $)) (-15 -3037 ((-650 (-650 |t#1|)) $)) (-15 -1877 ($ $ (-650 (-570)) (-650 (-570)))) (-15 -3894 ($ $ (-650 (-570)) (-650 (-570)) $)) (-15 -3166 ($ $ (-570) (-570))) (-15 -4062 ($ $ (-570) (-570))) (-15 -1338 ($ $ (-570) (-570) (-570) (-570))) (-15 -3190 ($ $ (-570) (-570) $)) (-15 -2953 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -2965 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-570) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-777))) (IF (|has| |t#1| (-562)) (-15 -2406 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -2975 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-311)) (-15 -4321 ($ $)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -3933 ((-777) $)) (-15 -2454 ((-777) $)) (-15 -4296 ((-650 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4451 "*"))) (PROGN (-15 -2371 (|t#1| $)) (-15 -2481 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -3174 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-57 |#1| |#2| |#3|) . T) ((-1227) . T))
+((-4321 ((|#4| |#4|) 97 (|has| |#1| (-311)))) (-3933 (((-777) |#4|) 125 (|has| |#1| (-562)))) (-2454 (((-777) |#4|) 101 (|has| |#1| (-562)))) (-4296 (((-650 |#3|) |#4|) 108 (|has| |#1| (-562)))) (-3073 (((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|) 140 (|has| |#1| (-311)))) (-2481 ((|#1| |#4|) 57)) (-2026 (((-3 |#4| "failed") |#4|) 89 (|has| |#1| (-562)))) (-3174 (((-3 |#4| "failed") |#4|) 105 (|has| |#1| (-368)))) (-2075 ((|#4| |#4|) 93 (|has| |#1| (-562)))) (-1577 ((|#4| |#4| |#1| (-570) (-570)) 65)) (-3482 ((|#4| |#4| (-570) (-570)) 60)) (-1479 ((|#4| |#4| |#1| (-570) (-570)) 70)) (-2371 ((|#1| |#4|) 103)) (-1449 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 94 (|has| |#1| (-562)))))
+(((-694 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2371 (|#1| |#4|)) (-15 -2481 (|#1| |#4|)) (-15 -3482 (|#4| |#4| (-570) (-570))) (-15 -1577 (|#4| |#4| |#1| (-570) (-570))) (-15 -1479 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -3933 ((-777) |#4|)) (-15 -2454 ((-777) |#4|)) (-15 -4296 ((-650 |#3|) |#4|)) (-15 -2075 (|#4| |#4|)) (-15 -2026 ((-3 |#4| "failed") |#4|)) (-15 -1449 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -4321 (|#4| |#4|)) (-15 -3073 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3174 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-174) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -694))
+((-3174 (*1 *2 *2) (|partial| -12 (-4 *3 (-368)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-3073 (*1 *2 *3 *3) (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5)))) (-4321 (*1 *2 *2) (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-1449 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-2026 (*1 *2 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-2075 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-4296 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-650 *6)) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-2454 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3933 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-1479 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3)) (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2)) (-4 *2 (-693 *3 *5 *6)))) (-1577 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3)) (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2)) (-4 *2 (-693 *3 *5 *6)))) (-3482 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-174)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *1 (-694 *4 *5 *6 *2)) (-4 *2 (-693 *4 *5 *6)))) (-2481 (*1 *2 *3) (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174)) (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5)))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174)) (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5)))))
+(-10 -7 (-15 -2371 (|#1| |#4|)) (-15 -2481 (|#1| |#4|)) (-15 -3482 (|#4| |#4| (-570) (-570))) (-15 -1577 (|#4| |#4| |#1| (-570) (-570))) (-15 -1479 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -3933 ((-777) |#4|)) (-15 -2454 ((-777) |#4|)) (-15 -4296 ((-650 |#3|) |#4|)) (-15 -2075 (|#4| |#4|)) (-15 -2026 ((-3 |#4| "failed") |#4|)) (-15 -1449 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -4321 (|#4| |#4|)) (-15 -3073 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3174 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777) (-777)) 64)) (-2617 (($ $ $) NIL)) (-3115 (($ (-1277 |#1|)) NIL) (($ $) NIL)) (-1587 (((-112) $) NIL)) (-3166 (($ $ (-570) (-570)) 22)) (-4062 (($ $ (-570) (-570)) NIL)) (-1338 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-3660 (($ $) NIL)) (-3639 (((-112) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3190 (($ $ (-570) (-570) $) NIL)) (-3894 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-1850 (($ $ (-570) (-1277 |#1|)) NIL)) (-3693 (($ $ (-570) (-1277 |#1|)) NIL)) (-2465 (($ (-777) |#1|) 37)) (-3761 (($) NIL T CONST)) (-4321 (($ $) 46 (|has| |#1| (-311)))) (-1991 (((-1277 |#1|) $ (-570)) NIL)) (-3933 (((-777) $) 48 (|has| |#1| (-562)))) (-3789 ((|#1| $ (-570) (-570) |#1|) 69)) (-3713 ((|#1| $ (-570) (-570)) NIL)) (-2835 (((-650 |#1|) $) NIL)) (-2454 (((-777) $) 50 (|has| |#1| (-562)))) (-4296 (((-650 (-1277 |#1|)) $) 53 (|has| |#1| (-562)))) (-3155 (((-777) $) 32)) (-4287 (($ (-777) (-777) |#1|) 28)) (-3167 (((-777) $) 33)) (-1586 (((-112) $ (-777)) NIL)) (-2481 ((|#1| $) 44 (|has| |#1| (-6 (-4451 "*"))))) (-2055 (((-570) $) 10)) (-3295 (((-570) $) 11)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2755 (((-570) $) 14)) (-4067 (((-570) $) 65)) (-2427 (($ (-650 (-650 |#1|))) NIL)) (-3776 (($ (-1 |#1| |#1|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3037 (((-650 (-650 |#1|)) $) 76)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3174 (((-3 $ "failed") $) 60 (|has| |#1| (-368)))) (-1664 (($ $ $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3531 (($ $ |#1|) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2682 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL) (($ (-1277 |#1|)) 70)) (-2593 (((-112) $) NIL)) (-2371 ((|#1| $) 42 (|has| |#1| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-1743 (((-1277 |#1|) $ (-570)) NIL)) (-3735 (($ (-1277 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3251 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $ $) NIL) (($ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) 38) (($ $ (-570)) 62 (|has| |#1| (-368)))) (* (($ $ $) 24) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-570) $) NIL) (((-1277 |#1|) $ (-1277 |#1|)) NIL) (((-1277 |#1|) (-1277 |#1|) $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-695 |#1|) (-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 -2682 ($ (-1277 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3174 ((-3 $ "failed") $)) |%noBranch|))) (-1058)) (T -695))
+((-3174 (*1 *1 *1) (|partial| -12 (-5 *1 (-695 *2)) (-4 *2 (-368)) (-4 *2 (-1058)))) (-2682 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-695 *3)))))
+(-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 -2682 ($ (-1277 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3174 ((-3 $ "failed") $)) |%noBranch|)))
+((-1892 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 37)) (-2418 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 34)) (-1600 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777)) 43)) (-3753 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 27)) (-2669 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 31) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 29)) (-2069 (((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|)) 33)) (-1539 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 25)) (** (((-695 |#1|) (-695 |#1|) (-777)) 46)))
+(((-696 |#1|) (-10 -7 (-15 -1539 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3753 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2669 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2669 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2069 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -2418 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -1892 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1600 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777))) (-15 ** ((-695 |#1|) (-695 |#1|) (-777)))) (-1058)) (T -696))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-696 *4)))) (-1600 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-696 *4)))) (-1892 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2418 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2069 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2669 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2669 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-3753 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1539 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(-10 -7 (-15 -1539 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3753 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2669 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2669 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2069 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -2418 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -1892 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1600 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777))) (-15 ** ((-695 |#1|) (-695 |#1|) (-777))))
+((-4379 (((-3 |#1| "failed") $) 18)) (-3080 ((|#1| $) NIL)) (-1594 (($) 7 T CONST)) (-2991 (($ |#1|) 8)) (-3735 (($ |#1|) 16) (((-868) $) 23)) (-1803 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -1594)) 11)) (-3950 ((|#1| $) 15)))
+(((-697 |#1|) (-13 (-1272) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -2991 ($ |#1|)) (-15 -1803 ((-112) $ (|[\|\|]| |#1|))) (-15 -1803 ((-112) $ (|[\|\|]| -1594))) (-15 -3950 (|#1| $)) (-15 -1594 ($) -3640))) (-619 (-868))) (T -697))
+((-2991 (*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-619 (-868))) (-5 *2 (-112)) (-5 *1 (-697 *4)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1594)) (-5 *2 (-112)) (-5 *1 (-697 *4)) (-4 *4 (-619 (-868))))) (-3950 (*1 *2 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1594 (*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+(-13 (-1272) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -2991 ($ |#1|)) (-15 -1803 ((-112) $ (|[\|\|]| |#1|))) (-15 -1803 ((-112) $ (|[\|\|]| -1594))) (-15 -3950 (|#1| $)) (-15 -1594 ($) -3640)))
+((-3802 ((|#2| |#2| |#4|) 33)) (-1788 (((-695 |#2|) |#3| |#4|) 39)) (-1584 (((-695 |#2|) |#2| |#4|) 38)) (-2667 (((-1277 |#2|) |#2| |#4|) 16)) (-3533 ((|#2| |#3| |#4|) 32)) (-2807 (((-695 |#2|) |#3| |#4| (-777) (-777)) 48)) (-2339 (((-695 |#2|) |#2| |#4| (-777)) 47)))
+(((-698 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2667 ((-1277 |#2|) |#2| |#4|)) (-15 -3533 (|#2| |#3| |#4|)) (-15 -3802 (|#2| |#2| |#4|)) (-15 -1584 ((-695 |#2|) |#2| |#4|)) (-15 -2339 ((-695 |#2|) |#2| |#4| (-777))) (-15 -1788 ((-695 |#2|) |#3| |#4|)) (-15 -2807 ((-695 |#2|) |#3| |#4| (-777) (-777)))) (-1109) (-907 |#1|) (-378 |#2|) (-13 (-378 |#1|) (-10 -7 (-6 -4449)))) (T -698))
+((-2807 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *7 (-907 *6)) (-5 *2 (-695 *7)) (-5 *1 (-698 *6 *7 *3 *4)) (-4 *3 (-378 *7)) (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4449)))))) (-1788 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *6 (-907 *5)) (-5 *2 (-695 *6)) (-5 *1 (-698 *5 *6 *3 *4)) (-4 *3 (-378 *6)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))) (-2339 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *3 (-907 *6)) (-5 *2 (-695 *3)) (-5 *1 (-698 *6 *3 *7 *4)) (-4 *7 (-378 *3)) (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4449)))))) (-1584 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-695 *3)) (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))) (-3802 (*1 *2 *2 *3) (-12 (-4 *4 (-1109)) (-4 *2 (-907 *4)) (-5 *1 (-698 *4 *2 *5 *3)) (-4 *5 (-378 *2)) (-4 *3 (-13 (-378 *4) (-10 -7 (-6 -4449)))))) (-3533 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *2 (-907 *5)) (-5 *1 (-698 *5 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))) (-2667 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-1277 *3)) (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))))
+(-10 -7 (-15 -2667 ((-1277 |#2|) |#2| |#4|)) (-15 -3533 (|#2| |#3| |#4|)) (-15 -3802 (|#2| |#2| |#4|)) (-15 -1584 ((-695 |#2|) |#2| |#4|)) (-15 -2339 ((-695 |#2|) |#2| |#4| (-777))) (-15 -1788 ((-695 |#2|) |#3| |#4|)) (-15 -2807 ((-695 |#2|) |#3| |#4| (-777) (-777))))
+((-4295 (((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)) 20)) (-3329 ((|#1| (-695 |#2|)) 9)) (-1537 (((-695 |#1|) (-695 |#2|)) 18)))
+(((-699 |#1| |#2|) (-10 -7 (-15 -3329 (|#1| (-695 |#2|))) (-15 -1537 ((-695 |#1|) (-695 |#2|))) (-15 -4295 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)))) (-562) (-1001 |#1|)) (T -699))
+((-4295 (*1 *2 *3) (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |num| (-695 *4)) (|:| |den| *4))) (-5 *1 (-699 *4 *5)))) (-1537 (*1 *2 *3) (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562)) (-5 *2 (-695 *4)) (-5 *1 (-699 *4 *5)))) (-3329 (*1 *2 *3) (-12 (-5 *3 (-695 *4)) (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-699 *2 *4)))))
+(-10 -7 (-15 -3329 (|#1| (-695 |#2|))) (-15 -1537 ((-695 |#1|) (-695 |#2|))) (-15 -4295 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4084 (((-695 (-705))) NIL) (((-695 (-705)) (-1277 $)) NIL)) (-3071 (((-705) $) NIL)) (-2735 (($ $) NIL (|has| (-705) (-1212)))) (-2602 (($ $) NIL (|has| (-705) (-1212)))) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-705) (-354)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3252 (($ $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-1378 (((-424 $) $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-3754 (($ $) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-2707 (((-112) $ $) NIL (|has| (-705) (-311)))) (-3403 (((-777)) NIL (|has| (-705) (-373)))) (-2712 (($ $) NIL (|has| (-705) (-1212)))) (-2579 (($ $) NIL (|has| (-705) (-1212)))) (-4087 (($ $) NIL (|has| (-705) (-1212)))) (-2622 (($ $) NIL (|has| (-705) (-1212)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-705) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-3080 (((-570) $) NIL) (((-705) $) NIL) (((-413 (-570)) $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-2125 (($ (-1277 (-705))) NIL) (($ (-1277 (-705)) (-1277 $)) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-705) (-354)))) (-2372 (($ $ $) NIL (|has| (-705) (-311)))) (-2443 (((-695 (-705)) $) NIL) (((-695 (-705)) $ (-1277 $)) NIL)) (-1836 (((-695 (-705)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-705))) (|:| |vec| (-1277 (-705)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-705) (-645 (-570)))) (((-695 (-570)) (-695 $)) NIL (|has| (-705) (-645 (-570))))) (-3529 (((-3 $ "failed") (-413 (-1182 (-705)))) NIL (|has| (-705) (-368))) (($ (-1182 (-705))) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3766 (((-705) $) 29)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-551)))) (-4373 (((-112) $) NIL (|has| (-705) (-551)))) (-2220 (((-413 (-570)) $) NIL (|has| (-705) (-551)))) (-3933 (((-928)) NIL)) (-3336 (($) NIL (|has| (-705) (-373)))) (-2382 (($ $ $) NIL (|has| (-705) (-311)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| (-705) (-311)))) (-4181 (($) NIL (|has| (-705) (-354)))) (-2006 (((-112) $) NIL (|has| (-705) (-354)))) (-1901 (($ $) NIL (|has| (-705) (-354))) (($ $ (-777)) NIL (|has| (-705) (-354)))) (-4037 (((-112) $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-4177 (((-2 (|:| |r| (-705)) (|:| |phi| (-705))) $) NIL (-12 (|has| (-705) (-1069)) (|has| (-705) (-1212))))) (-1315 (($) NIL (|has| (-705) (-1212)))) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-705) (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-705) (-893 (-570))))) (-4331 (((-839 (-928)) $) NIL (|has| (-705) (-354))) (((-928) $) NIL (|has| (-705) (-354)))) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212))))) (-2771 (((-705) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| (-705) (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-2399 (((-1182 (-705)) $) NIL (|has| (-705) (-368)))) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-1352 (($ (-1 (-705) (-705)) $) NIL)) (-2332 (((-928) $) NIL (|has| (-705) (-373)))) (-2635 (($ $) NIL (|has| (-705) (-1212)))) (-3514 (((-1182 (-705)) $) NIL)) (-1847 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| (-705) (-368)))) (-2315 (($) NIL (|has| (-705) (-354)) CONST)) (-2160 (($ (-928)) NIL (|has| (-705) (-373)))) (-4246 (($) NIL)) (-3779 (((-705) $) 31)) (-3479 (((-1129) $) NIL)) (-2340 (($) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-705) (-311)))) (-1874 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-705) (-354)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3739 (((-424 $) $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-705) (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| (-705) (-311)))) (-2406 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-705)) NIL (|has| (-705) (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-4388 (($ $) NIL (|has| (-705) (-1212)))) (-1731 (($ $ (-1186) (-705)) NIL (|has| (-705) (-520 (-1186) (-705)))) (($ $ (-650 (-1186)) (-650 (-705))) NIL (|has| (-705) (-520 (-1186) (-705)))) (($ $ (-650 (-298 (-705)))) NIL (|has| (-705) (-313 (-705)))) (($ $ (-298 (-705))) NIL (|has| (-705) (-313 (-705)))) (($ $ (-705) (-705)) NIL (|has| (-705) (-313 (-705)))) (($ $ (-650 (-705)) (-650 (-705))) NIL (|has| (-705) (-313 (-705))))) (-2547 (((-777) $) NIL (|has| (-705) (-311)))) (-1877 (($ $ (-705)) NIL (|has| (-705) (-290 (-705) (-705))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| (-705) (-311)))) (-3290 (((-705)) NIL) (((-705) (-1277 $)) NIL)) (-3156 (((-3 (-777) "failed") $ $) NIL (|has| (-705) (-354))) (((-777) $) NIL (|has| (-705) (-354)))) (-3447 (($ $ (-1 (-705) (-705))) NIL) (($ $ (-1 (-705) (-705)) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-777)) NIL (|has| (-705) (-235))) (($ $) NIL (|has| (-705) (-235)))) (-2100 (((-695 (-705)) (-1277 $) (-1 (-705) (-705))) NIL (|has| (-705) (-368)))) (-3597 (((-1182 (-705))) NIL)) (-4098 (($ $) NIL (|has| (-705) (-1212)))) (-2634 (($ $) NIL (|has| (-705) (-1212)))) (-3929 (($) NIL (|has| (-705) (-354)))) (-2746 (($ $) NIL (|has| (-705) (-1212)))) (-2612 (($ $) NIL (|has| (-705) (-1212)))) (-2723 (($ $) NIL (|has| (-705) (-1212)))) (-2590 (($ $) NIL (|has| (-705) (-1212)))) (-1533 (((-695 (-705)) (-1277 $)) NIL) (((-1277 (-705)) $) NIL) (((-695 (-705)) (-1277 $) (-1277 $)) NIL) (((-1277 (-705)) $ (-1277 $)) NIL)) (-1417 (((-542) $) NIL (|has| (-705) (-620 (-542)))) (((-171 (-227)) $) NIL (|has| (-705) (-1031))) (((-171 (-384)) $) NIL (|has| (-705) (-1031))) (((-899 (-384)) $) NIL (|has| (-705) (-620 (-899 (-384))))) (((-899 (-570)) $) NIL (|has| (-705) (-620 (-899 (-570))))) (($ (-1182 (-705))) NIL) (((-1182 (-705)) $) NIL) (($ (-1277 (-705))) NIL) (((-1277 (-705)) $) NIL)) (-2488 (($ $) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-354))))) (-3035 (($ (-705) (-705)) 12)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-705)) NIL) (($ (-171 (-384))) 13) (($ (-171 (-570))) 19) (($ (-171 (-705))) 28) (($ (-171 (-707))) 25) (((-171 (-384)) $) 33) (($ (-413 (-570))) NIL (-2740 (|has| (-705) (-1047 (-413 (-570)))) (|has| (-705) (-368))))) (-3127 (($ $) NIL (|has| (-705) (-354))) (((-3 $ "failed") $) NIL (-2740 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-146))))) (-3641 (((-1182 (-705)) $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL)) (-4137 (($ $) NIL (|has| (-705) (-1212)))) (-2671 (($ $) NIL (|has| (-705) (-1212)))) (-2795 (((-112) $ $) NIL)) (-4112 (($ $) NIL (|has| (-705) (-1212)))) (-2647 (($ $) NIL (|has| (-705) (-1212)))) (-4157 (($ $) NIL (|has| (-705) (-1212)))) (-2691 (($ $) NIL (|has| (-705) (-1212)))) (-2909 (((-705) $) NIL (|has| (-705) (-1212)))) (-1510 (($ $) NIL (|has| (-705) (-1212)))) (-2701 (($ $) NIL (|has| (-705) (-1212)))) (-4150 (($ $) NIL (|has| (-705) (-1212)))) (-2681 (($ $) NIL (|has| (-705) (-1212)))) (-4123 (($ $) NIL (|has| (-705) (-1212)))) (-2660 (($ $) NIL (|has| (-705) (-1212)))) (-1367 (($ $) NIL (|has| (-705) (-1069)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-1 (-705) (-705))) NIL) (($ $ (-1 (-705) (-705)) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-1186)) NIL (|has| (-705) (-907 (-1186)))) (($ $ (-777)) NIL (|has| (-705) (-235))) (($ $) NIL (|has| (-705) (-235)))) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| (-705) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ $) NIL (|has| (-705) (-1212))) (($ $ (-413 (-570))) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212)))) (($ $ (-570)) NIL (|has| (-705) (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ (-705) $) NIL) (($ $ (-705)) NIL) (($ (-413 (-570)) $) NIL (|has| (-705) (-368))) (($ $ (-413 (-570))) NIL (|has| (-705) (-368)))))
(((-700) (-13 (-393) (-167 (-705)) (-10 -8 (-15 -3735 ($ (-171 (-384)))) (-15 -3735 ($ (-171 (-570)))) (-15 -3735 ($ (-171 (-705)))) (-15 -3735 ($ (-171 (-707)))) (-15 -3735 ((-171 (-384)) $))))) (T -700))
((-3735 (*1 *1 *2) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-700)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-171 (-570))) (-5 *1 (-700)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-171 (-705))) (-5 *1 (-700)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-171 (-707))) (-5 *1 (-700)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-700)))))
(-13 (-393) (-167 (-705)) (-10 -8 (-15 -3735 ($ (-171 (-384)))) (-15 -3735 ($ (-171 (-570)))) (-15 -3735 ($ (-171 (-705)))) (-15 -3735 ($ (-171 (-707)))) (-15 -3735 ((-171 (-384)) $))))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-1591 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2208 (($ $) 63)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-4282 (((-650 (-2 (|:| -2223 |#1|) (|:| -3486 (-777)))) $) 62)) (-2271 (($) 50) (($ (-650 |#1|)) 49)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3131 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3092 (($ $) 63)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3435 (((-650 (-2 (|:| -2224 |#1|) (|:| -3490 (-777)))) $) 62)) (-2535 (($) 50) (($ (-650 |#1|)) 49)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-701 |#1|) (-141) (-1109)) (T -701))
-((-2278 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-2208 (*1 *1 *1) (-12 (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-4282 (*1 *2 *1) (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| -2223 *3) (|:| -3486 (-777))))))))
-(-13 (-237 |t#1|) (-10 -8 (-15 -2278 ($ |t#1| $ (-777))) (-15 -2208 ($ $)) (-15 -4282 ((-650 (-2 (|:| -2223 |t#1|) (|:| -3486 (-777)))) $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-1492 (((-650 |#1|) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))) (-570)) 65)) (-1365 ((|#1| |#1| (-570)) 62)) (-1874 ((|#1| |#1| |#1| (-570)) 46)) (-3738 (((-650 |#1|) |#1| (-570)) 49)) (-3724 ((|#1| |#1| (-570) |#1| (-570)) 40)) (-3127 (((-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))) |#1| (-570)) 61)))
-(((-702 |#1|) (-10 -7 (-15 -1874 (|#1| |#1| |#1| (-570))) (-15 -1365 (|#1| |#1| (-570))) (-15 -3738 ((-650 |#1|) |#1| (-570))) (-15 -3127 ((-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))) |#1| (-570))) (-15 -1492 ((-650 |#1|) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))) (-570))) (-15 -3724 (|#1| |#1| (-570) |#1| (-570)))) (-1252 (-570))) (T -702))
-((-3724 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1252 *3)))) (-1492 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| -3738 *5) (|:| -1601 (-570))))) (-5 *4 (-570)) (-4 *5 (-1252 *4)) (-5 *2 (-650 *5)) (-5 *1 (-702 *5)))) (-3127 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3738 *3) (|:| -1601 *4)))) (-5 *1 (-702 *3)) (-4 *3 (-1252 *4)))) (-3738 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 *3)) (-5 *1 (-702 *3)) (-4 *3 (-1252 *4)))) (-1365 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1252 *3)))) (-1874 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1252 *3)))))
-(-10 -7 (-15 -1874 (|#1| |#1| |#1| (-570))) (-15 -1365 (|#1| |#1| (-570))) (-15 -3738 ((-650 |#1|) |#1| (-570))) (-15 -3127 ((-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))) |#1| (-570))) (-15 -1492 ((-650 |#1|) (-650 (-2 (|:| -3738 |#1|) (|:| -1601 (-570)))) (-570))) (-15 -3724 (|#1| |#1| (-570) |#1| (-570))))
-((-1872 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 17)) (-2321 (((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 56) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 58) (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 60)) (-1595 (((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266))) NIL)) (-3435 (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 61)))
-(((-703) (-10 -7 (-15 -2321 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2321 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2321 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3435 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1595 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1872 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -703))
-((-1872 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1 (-227) (-227) (-227) (-227))) (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *1 (-703)))) (-1595 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))) (-3435 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined")) (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))) (-2321 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-227))) (-5 *5 (-650 (-266))) (-5 *1 (-703)))) (-2321 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-227))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))) (-2321 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined")) (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))))
-(-10 -7 (-15 -2321 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2321 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2321 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3435 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1595 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1872 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
-((-3738 (((-424 (-1182 |#4|)) (-1182 |#4|)) 86) (((-424 |#4|) |#4|) 269)))
-(((-704 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 |#4|) |#4|)) (-15 -3738 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-354) (-956 |#3| |#2| |#1|)) (T -704))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-354)) (-4 *7 (-956 *6 *5 *4)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-704 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-704 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
-(-10 -7 (-15 -3738 ((-424 |#4|) |#4|)) (-15 -3738 ((-424 (-1182 |#4|)) (-1182 |#4|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 97)) (-3303 (((-570) $) 34)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3316 (($ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3753 (($ $) NIL)) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL)) (-2450 (($) NIL T CONST)) (-3670 (($ $) NIL)) (-4378 (((-3 (-570) "failed") $) 85) (((-3 (-413 (-570)) "failed") $) 28) (((-3 (-384) "failed") $) 82)) (-3080 (((-570) $) 87) (((-413 (-570)) $) 79) (((-384) $) 80)) (-2372 (($ $ $) 109)) (-3413 (((-3 $ "failed") $) 100)) (-2381 (($ $ $) 108)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-3430 (((-928)) 89) (((-928) (-928)) 88)) (-1522 (((-112) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3157 (((-570) $) NIL)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL)) (-2610 (($ $) NIL)) (-2761 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1403 (((-570) (-570)) 94) (((-570)) 95)) (-3310 (($ $ $) NIL) (($) NIL (-12 (-1754 (|has| $ (-6 -4431))) (-1754 (|has| $ (-6 -4439)))))) (-4211 (((-570) (-570)) 92) (((-570)) 93)) (-3787 (($ $ $) NIL) (($) NIL (-12 (-1754 (|has| $ (-6 -4431))) (-1754 (|has| $ (-6 -4439)))))) (-2972 (((-570) $) 17)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 104)) (-3690 (((-928) (-570)) NIL (|has| $ (-6 -4439)))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL)) (-3739 (($ $) NIL)) (-2539 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) 105)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1907 (((-570) $) 24)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 107)) (-2784 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4439)))) (-4173 (((-928) (-570)) NIL (|has| $ (-6 -4439)))) (-1416 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) NIL)) (-3735 (((-868) $) 63) (($ (-570)) 75) (($ $) NIL) (($ (-413 (-570))) 78) (($ (-570)) 75) (($ (-413 (-570))) 78) (($ (-384)) 72) (((-384) $) 61) (($ (-707)) 66)) (-2744 (((-777)) 119 T CONST)) (-2414 (($ (-570) (-570) (-928)) 54)) (-3754 (($ $) NIL)) (-3804 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4439)))) (-1859 (((-112) $ $) NIL)) (-4358 (((-928)) 91) (((-928) (-928)) 90)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL)) (-1812 (($) 37 T CONST)) (-1823 (($) 18 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 96)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 118)) (-2975 (($ $ $) 77)) (-2965 (($ $) 115) (($ $ $) 116)) (-2954 (($ $ $) 114)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 110) (($ $ $) 101) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-705) (-13 (-410) (-393) (-368) (-1047 (-384)) (-1047 (-413 (-570))) (-148) (-10 -8 (-15 -3430 ((-928) (-928))) (-15 -3430 ((-928))) (-15 -4358 ((-928) (-928))) (-15 -4211 ((-570) (-570))) (-15 -4211 ((-570))) (-15 -1403 ((-570) (-570))) (-15 -1403 ((-570))) (-15 -3735 ((-384) $)) (-15 -3735 ($ (-707))) (-15 -2972 ((-570) $)) (-15 -1907 ((-570) $)) (-15 -2414 ($ (-570) (-570) (-928)))))) (T -705))
-((-1907 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-2972 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3430 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-3430 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4358 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4211 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-4211 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-1403 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-1403 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-384)) (-5 *1 (-705)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-707)) (-5 *1 (-705)))) (-2414 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-5 *1 (-705)))))
-(-13 (-410) (-393) (-368) (-1047 (-384)) (-1047 (-413 (-570))) (-148) (-10 -8 (-15 -3430 ((-928) (-928))) (-15 -3430 ((-928))) (-15 -4358 ((-928) (-928))) (-15 -4211 ((-570) (-570))) (-15 -4211 ((-570))) (-15 -1403 ((-570) (-570))) (-15 -1403 ((-570))) (-15 -3735 ((-384) $)) (-15 -3735 ($ (-707))) (-15 -2972 ((-570) $)) (-15 -1907 ((-570) $)) (-15 -2414 ($ (-570) (-570) (-928)))))
-((-3877 (((-695 |#1|) (-695 |#1|) |#1| |#1|) 88)) (-3936 (((-695 |#1|) (-695 |#1|) |#1|) 67)) (-1428 (((-695 |#1|) (-695 |#1|) |#1|) 89)) (-3771 (((-695 |#1|) (-695 |#1|)) 68)) (-1913 (((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|) 87)))
-(((-706 |#1|) (-10 -7 (-15 -3771 ((-695 |#1|) (-695 |#1|))) (-15 -3936 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -1428 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3877 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -1913 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|))) (-311)) (T -706))
-((-1913 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-706 *3)) (-4 *3 (-311)))) (-3877 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-1428 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-3936 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-3771 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(-10 -7 (-15 -3771 ((-695 |#1|) (-695 |#1|))) (-15 -3936 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -1428 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3877 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -1913 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2618 (($ $ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4281 (($ $ $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL)) (-3020 (($ $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) 31)) (-3080 (((-570) $) 29)) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL)) (-2085 (((-112) $) NIL)) (-3137 (((-413 (-570)) $) NIL)) (-3336 (($ $) NIL) (($) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2203 (($ $ $ $) NIL)) (-1533 (($ $ $) NIL)) (-1522 (((-112) $) NIL)) (-4390 (($ $ $) NIL)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-2081 (((-112) $) NIL)) (-3431 (((-112) $) NIL)) (-2885 (((-3 $ "failed") $) NIL)) (-2761 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2519 (($ $ $ $) NIL)) (-3310 (($ $ $) NIL)) (-4009 (((-928) (-928)) 10) (((-928)) 9)) (-3787 (($ $ $) NIL)) (-2584 (($ $) NIL)) (-3788 (($ $) NIL)) (-1845 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-2410 (($ $ $) NIL)) (-2314 (($) NIL T CONST)) (-3522 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4061 (($ $) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1322 (((-112) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL) (($ $ (-777)) NIL)) (-2430 (($ $) NIL)) (-3915 (($ $) NIL)) (-1416 (((-227) $) NIL) (((-384) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (((-570) $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) 28) (($ $) NIL) (($ (-570)) 28) (((-320 $) (-320 (-570))) 18)) (-2744 (((-777)) NIL T CONST)) (-3047 (((-112) $ $) NIL)) (-1397 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-4358 (($) NIL)) (-1681 (((-112) $ $) NIL)) (-1662 (($ $ $ $) NIL)) (-1423 (($ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL) (($ $ (-777)) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
-(((-707) (-13 (-393) (-551) (-10 -8 (-15 -4009 ((-928) (-928))) (-15 -4009 ((-928))) (-15 -3735 ((-320 $) (-320 (-570))))))) (T -707))
-((-4009 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-4009 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-320 (-570))) (-5 *2 (-320 (-707))) (-5 *1 (-707)))))
-(-13 (-393) (-551) (-10 -8 (-15 -4009 ((-928) (-928))) (-15 -4009 ((-928))) (-15 -3735 ((-320 $) (-320 (-570))))))
-((-3678 (((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)) 19)) (-3647 (((-1 |#4| |#2| |#3|) (-1186)) 12)))
-(((-708 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3647 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -3678 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)))) (-620 (-542)) (-1226) (-1226) (-1226)) (T -708))
-((-3678 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *3 *5 *6 *7)) (-4 *3 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226)) (-4 *7 (-1226)))) (-3647 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *4 *5 *6 *7)) (-4 *4 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226)) (-4 *7 (-1226)))))
-(-10 -7 (-15 -3647 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -3678 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186))))
-((-1677 (((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)) 43) (((-1 (-227) (-227)) |#1| (-1186)) 48)))
-(((-709 |#1|) (-10 -7 (-15 -1677 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -1677 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)))) (-620 (-542))) (T -709))
-((-1677 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))) (-1677 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))))
-(-10 -7 (-15 -1677 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -1677 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186))))
-((-1703 (((-1186) |#1| (-1186) (-650 (-1186))) 10) (((-1186) |#1| (-1186) (-1186) (-1186)) 13) (((-1186) |#1| (-1186) (-1186)) 12) (((-1186) |#1| (-1186)) 11)))
-(((-710 |#1|) (-10 -7 (-15 -1703 ((-1186) |#1| (-1186))) (-15 -1703 ((-1186) |#1| (-1186) (-1186))) (-15 -1703 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1703 ((-1186) |#1| (-1186) (-650 (-1186))))) (-620 (-542))) (T -710))
-((-1703 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1703 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1703 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1703 (*1 *2 *3 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))))
-(-10 -7 (-15 -1703 ((-1186) |#1| (-1186))) (-15 -1703 ((-1186) |#1| (-1186) (-1186))) (-15 -1703 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1703 ((-1186) |#1| (-1186) (-650 (-1186)))))
-((-1493 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
-(((-711 |#1| |#2|) (-10 -7 (-15 -1493 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1226) (-1226)) (T -711))
-((-1493 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-711 *3 *4)) (-4 *3 (-1226)) (-4 *4 (-1226)))))
-(-10 -7 (-15 -1493 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-3101 (((-1 |#3| |#2|) (-1186)) 11)) (-3678 (((-1 |#3| |#2|) |#1| (-1186)) 21)))
-(((-712 |#1| |#2| |#3|) (-10 -7 (-15 -3101 ((-1 |#3| |#2|) (-1186))) (-15 -3678 ((-1 |#3| |#2|) |#1| (-1186)))) (-620 (-542)) (-1226) (-1226)) (T -712))
-((-3678 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *3 *5 *6)) (-4 *3 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226)))) (-3101 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *4 *5 *6)) (-4 *4 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226)))))
-(-10 -7 (-15 -3101 ((-1 |#3| |#2|) (-1186))) (-15 -3678 ((-1 |#3| |#2|) |#1| (-1186))))
-((-4116 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1276 (-650 (-1182 |#3|))) |#3|) 95)) (-2133 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|) 113)) (-2728 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1276 (-650 (-1182 |#3|))) |#3|) 47)))
-(((-713 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2728 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1276 (-650 (-1182 |#3|))) |#3|)) (-15 -2133 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -4116 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1276 (-650 (-1182 |#3|))) |#3|))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -713))
-((-4116 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-650 (-1182 *13))) (-5 *3 (-1182 *13)) (-5 *4 (-650 *12)) (-5 *5 (-650 *10)) (-5 *6 (-650 *13)) (-5 *7 (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| *13))))) (-5 *8 (-650 (-777))) (-5 *9 (-1276 (-650 (-1182 *10)))) (-4 *12 (-856)) (-4 *10 (-311)) (-4 *13 (-956 *10 *11 *12)) (-4 *11 (-799)) (-5 *1 (-713 *11 *12 *10 *13)))) (-2133 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-650 *11)) (-5 *5 (-650 (-1182 *9))) (-5 *6 (-650 *9)) (-5 *7 (-650 *12)) (-5 *8 (-650 (-777))) (-4 *11 (-856)) (-4 *9 (-311)) (-4 *12 (-956 *9 *10 *11)) (-4 *10 (-799)) (-5 *2 (-650 (-1182 *12))) (-5 *1 (-713 *10 *11 *9 *12)) (-5 *3 (-1182 *12)))) (-2728 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-650 (-1182 *11))) (-5 *3 (-1182 *11)) (-5 *4 (-650 *10)) (-5 *5 (-650 *8)) (-5 *6 (-650 (-777))) (-5 *7 (-1276 (-650 (-1182 *8)))) (-4 *10 (-856)) (-4 *8 (-311)) (-4 *11 (-956 *8 *9 *10)) (-4 *9 (-799)) (-5 *1 (-713 *9 *10 *8 *11)))))
-(-10 -7 (-15 -2728 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1276 (-650 (-1182 |#3|))) |#3|)) (-15 -2133 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -4116 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1276 (-650 (-1182 |#3|))) |#3|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1890 (($ $) 48)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-3872 (($ |#1| (-777)) 46)) (-4341 (((-777) $) 50)) (-1864 ((|#1| $) 49)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1601 (((-777) $) 51)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45 (|has| |#1| (-174)))) (-1715 ((|#1| $ (-777)) 47)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 53) (($ |#1| $) 52)))
+((-2599 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-3092 (*1 *1 *1) (-12 (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-3435 (*1 *2 *1) (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| -2224 *3) (|:| -3490 (-777))))))))
+(-13 (-237 |t#1|) (-10 -8 (-15 -2599 ($ |t#1| $ (-777))) (-15 -3092 ($ $)) (-15 -3435 ((-650 (-2 (|:| -2224 |t#1|) (|:| -3490 (-777)))) $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-1606 (((-650 |#1|) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))) (-570)) 65)) (-3232 ((|#1| |#1| (-570)) 62)) (-1874 ((|#1| |#1| |#1| (-570)) 46)) (-3739 (((-650 |#1|) |#1| (-570)) 49)) (-2849 ((|#1| |#1| (-570) |#1| (-570)) 40)) (-2134 (((-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))) |#1| (-570)) 61)))
+(((-702 |#1|) (-10 -7 (-15 -1874 (|#1| |#1| |#1| (-570))) (-15 -3232 (|#1| |#1| (-570))) (-15 -3739 ((-650 |#1|) |#1| (-570))) (-15 -2134 ((-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))) |#1| (-570))) (-15 -1606 ((-650 |#1|) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))) (-570))) (-15 -2849 (|#1| |#1| (-570) |#1| (-570)))) (-1253 (-570))) (T -702))
+((-2849 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))) (-1606 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| -3739 *5) (|:| -3221 (-570))))) (-5 *4 (-570)) (-4 *5 (-1253 *4)) (-5 *2 (-650 *5)) (-5 *1 (-702 *5)))) (-2134 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3739 *3) (|:| -3221 *4)))) (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))) (-3739 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 *3)) (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))) (-3232 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))) (-1874 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -1874 (|#1| |#1| |#1| (-570))) (-15 -3232 (|#1| |#1| (-570))) (-15 -3739 ((-650 |#1|) |#1| (-570))) (-15 -2134 ((-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))) |#1| (-570))) (-15 -1606 ((-650 |#1|) (-650 (-2 (|:| -3739 |#1|) (|:| -3221 (-570)))) (-570))) (-15 -2849 (|#1| |#1| (-570) |#1| (-570))))
+((-3987 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 17)) (-1914 (((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 56) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 58) (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 60)) (-3165 (((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266))) NIL)) (-1985 (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 61)))
+(((-703) (-10 -7 (-15 -1914 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1914 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1914 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1985 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3165 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3987 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -703))
+((-3987 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1 (-227) (-227) (-227) (-227))) (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *1 (-703)))) (-3165 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227))) (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))) (-1985 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined")) (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))) (-1914 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-227))) (-5 *5 (-650 (-266))) (-5 *1 (-703)))) (-1914 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-227))) (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))) (-1914 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined")) (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703)))))
+(-10 -7 (-15 -1914 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1914 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1914 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1985 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3165 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3987 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
+((-3739 (((-424 (-1182 |#4|)) (-1182 |#4|)) 86) (((-424 |#4|) |#4|) 269)))
+(((-704 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 |#4|) |#4|)) (-15 -3739 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-354) (-956 |#3| |#2| |#1|)) (T -704))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-354)) (-4 *7 (-956 *6 *5 *4)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-704 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-704 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
+(-10 -7 (-15 -3739 ((-424 |#4|) |#4|)) (-15 -3739 ((-424 (-1182 |#4|)) (-1182 |#4|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 97)) (-3113 (((-570) $) 34)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3235 (($ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-3754 (($ $) NIL)) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL)) (-3761 (($) NIL T CONST)) (-3601 (($ $) NIL)) (-4379 (((-3 (-570) "failed") $) 85) (((-3 (-413 (-570)) "failed") $) 28) (((-3 (-384) "failed") $) 82)) (-3080 (((-570) $) 87) (((-413 (-570)) $) 79) (((-384) $) 80)) (-2372 (($ $ $) 109)) (-2937 (((-3 $ "failed") $) 100)) (-2382 (($ $ $) 108)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3431 (((-928)) 89) (((-928) (-928)) 88)) (-3703 (((-112) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-4331 (((-570) $) NIL)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL)) (-2771 (($ $) NIL)) (-1774 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1432 (((-570) (-570)) 94) (((-570)) 95)) (-3311 (($ $ $) NIL) (($) NIL (-12 (-1753 (|has| $ (-6 -4432))) (-1753 (|has| $ (-6 -4440)))))) (-3992 (((-570) (-570)) 92) (((-570)) 93)) (-2222 (($ $ $) NIL) (($) NIL (-12 (-1753 (|has| $ (-6 -4432))) (-1753 (|has| $ (-6 -4440)))))) (-2973 (((-570) $) 17)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 104)) (-2542 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL)) (-2962 (($ $) NIL)) (-2539 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) 105)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3011 (((-570) $) 24)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 107)) (-3819 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-1792 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-1417 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) NIL)) (-3735 (((-868) $) 63) (($ (-570)) 75) (($ $) NIL) (($ (-413 (-570))) 78) (($ (-570)) 75) (($ (-413 (-570))) 78) (($ (-384)) 72) (((-384) $) 61) (($ (-707)) 66)) (-1609 (((-777)) 119 T CONST)) (-1589 (($ (-570) (-570) (-928)) 54)) (-1963 (($ $) NIL)) (-2346 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-3866 (((-112) $ $) NIL)) (-4360 (((-928)) 91) (((-928) (-928)) 90)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL)) (-1814 (($) 37 T CONST)) (-1824 (($) 18 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 96)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 118)) (-2975 (($ $ $) 77)) (-2965 (($ $) 115) (($ $ $) 116)) (-2953 (($ $ $) 114)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 110) (($ $ $) 101) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-705) (-13 (-410) (-393) (-368) (-1047 (-384)) (-1047 (-413 (-570))) (-148) (-10 -8 (-15 -3431 ((-928) (-928))) (-15 -3431 ((-928))) (-15 -4360 ((-928) (-928))) (-15 -3992 ((-570) (-570))) (-15 -3992 ((-570))) (-15 -1432 ((-570) (-570))) (-15 -1432 ((-570))) (-15 -3735 ((-384) $)) (-15 -3735 ($ (-707))) (-15 -2973 ((-570) $)) (-15 -3011 ((-570) $)) (-15 -1589 ($ (-570) (-570) (-928)))))) (T -705))
+((-3011 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-2973 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3431 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-3431 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4360 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-3992 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3992 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-1432 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-1432 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-384)) (-5 *1 (-705)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-707)) (-5 *1 (-705)))) (-1589 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-5 *1 (-705)))))
+(-13 (-410) (-393) (-368) (-1047 (-384)) (-1047 (-413 (-570))) (-148) (-10 -8 (-15 -3431 ((-928) (-928))) (-15 -3431 ((-928))) (-15 -4360 ((-928) (-928))) (-15 -3992 ((-570) (-570))) (-15 -3992 ((-570))) (-15 -1432 ((-570) (-570))) (-15 -1432 ((-570))) (-15 -3735 ((-384) $)) (-15 -3735 ($ (-707))) (-15 -2973 ((-570) $)) (-15 -3011 ((-570) $)) (-15 -1589 ($ (-570) (-570) (-928)))))
+((-1895 (((-695 |#1|) (-695 |#1|) |#1| |#1|) 88)) (-4321 (((-695 |#1|) (-695 |#1|) |#1|) 67)) (-1393 (((-695 |#1|) (-695 |#1|) |#1|) 89)) (-2084 (((-695 |#1|) (-695 |#1|)) 68)) (-3073 (((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|) 87)))
+(((-706 |#1|) (-10 -7 (-15 -2084 ((-695 |#1|) (-695 |#1|))) (-15 -4321 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -1393 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -1895 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -3073 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|))) (-311)) (T -706))
+((-3073 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-706 *3)) (-4 *3 (-311)))) (-1895 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-1393 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-4321 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-2084 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(-10 -7 (-15 -2084 ((-695 |#1|) (-695 |#1|))) (-15 -4321 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -1393 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -1895 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -3073 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-2836 (($ $ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3420 (($ $ $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL)) (-3020 (($ $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) 31)) (-3080 (((-570) $) 29)) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL)) (-4373 (((-112) $) NIL)) (-2220 (((-413 (-570)) $) NIL)) (-3336 (($ $) NIL) (($) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3041 (($ $ $ $) NIL)) (-3838 (($ $ $) NIL)) (-3703 (((-112) $) NIL)) (-2039 (($ $ $) NIL)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4340 (((-112) $) NIL)) (-1958 (((-112) $) NIL)) (-3584 (((-3 $ "failed") $) NIL)) (-1774 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3119 (($ $ $ $) NIL)) (-3311 (($ $ $) NIL)) (-2549 (((-928) (-928)) 10) (((-928)) 9)) (-2222 (($ $ $) NIL)) (-2581 (($ $) NIL)) (-3788 (($ $) NIL)) (-1847 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1545 (($ $ $) NIL)) (-2315 (($) NIL T CONST)) (-3523 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3072 (($ $) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1739 (((-112) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL) (($ $ (-777)) NIL)) (-2429 (($ $) NIL)) (-3916 (($ $) NIL)) (-1417 (((-227) $) NIL) (((-384) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (((-570) $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) 28) (($ $) NIL) (($ (-570)) 28) (((-320 $) (-320 (-570))) 18)) (-1609 (((-777)) NIL T CONST)) (-2528 (((-112) $ $) NIL)) (-3829 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-4360 (($) NIL)) (-2795 (((-112) $ $) NIL)) (-2608 (($ $ $ $) NIL)) (-1367 (($ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL) (($ $ (-777)) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+(((-707) (-13 (-393) (-551) (-10 -8 (-15 -2549 ((-928) (-928))) (-15 -2549 ((-928))) (-15 -3735 ((-320 $) (-320 (-570))))))) (T -707))
+((-2549 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-2549 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-320 (-570))) (-5 *2 (-320 (-707))) (-5 *1 (-707)))))
+(-13 (-393) (-551) (-10 -8 (-15 -2549 ((-928) (-928))) (-15 -2549 ((-928))) (-15 -3735 ((-320 $) (-320 (-570))))))
+((-3688 (((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)) 19)) (-3362 (((-1 |#4| |#2| |#3|) (-1186)) 12)))
+(((-708 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3362 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -3688 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)))) (-620 (-542)) (-1227) (-1227) (-1227)) (T -708))
+((-3688 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *3 *5 *6 *7)) (-4 *3 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)) (-4 *7 (-1227)))) (-3362 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *4 *5 *6 *7)) (-4 *4 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)) (-4 *7 (-1227)))))
+(-10 -7 (-15 -3362 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -3688 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186))))
+((-2753 (((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)) 43) (((-1 (-227) (-227)) |#1| (-1186)) 48)))
+(((-709 |#1|) (-10 -7 (-15 -2753 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -2753 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)))) (-620 (-542))) (T -709))
+((-2753 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))) (-2753 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))))
+(-10 -7 (-15 -2753 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -2753 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186))))
+((-1704 (((-1186) |#1| (-1186) (-650 (-1186))) 10) (((-1186) |#1| (-1186) (-1186) (-1186)) 13) (((-1186) |#1| (-1186) (-1186)) 12) (((-1186) |#1| (-1186)) 11)))
+(((-710 |#1|) (-10 -7 (-15 -1704 ((-1186) |#1| (-1186))) (-15 -1704 ((-1186) |#1| (-1186) (-1186))) (-15 -1704 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1704 ((-1186) |#1| (-1186) (-650 (-1186))))) (-620 (-542))) (T -710))
+((-1704 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1704 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1704 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1704 (*1 *2 *3 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))))
+(-10 -7 (-15 -1704 ((-1186) |#1| (-1186))) (-15 -1704 ((-1186) |#1| (-1186) (-1186))) (-15 -1704 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1704 ((-1186) |#1| (-1186) (-650 (-1186)))))
+((-1495 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
+(((-711 |#1| |#2|) (-10 -7 (-15 -1495 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1227) (-1227)) (T -711))
+((-1495 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-711 *3 *4)) (-4 *3 (-1227)) (-4 *4 (-1227)))))
+(-10 -7 (-15 -1495 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
+((-1909 (((-1 |#3| |#2|) (-1186)) 11)) (-3688 (((-1 |#3| |#2|) |#1| (-1186)) 21)))
+(((-712 |#1| |#2| |#3|) (-10 -7 (-15 -1909 ((-1 |#3| |#2|) (-1186))) (-15 -3688 ((-1 |#3| |#2|) |#1| (-1186)))) (-620 (-542)) (-1227) (-1227)) (T -712))
+((-3688 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *3 *5 *6)) (-4 *3 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)))) (-1909 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *4 *5 *6)) (-4 *4 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)))))
+(-10 -7 (-15 -1909 ((-1 |#3| |#2|) (-1186))) (-15 -3688 ((-1 |#3| |#2|) |#1| (-1186))))
+((-2412 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|) 95)) (-1783 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|) 113)) (-1465 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|) 47)))
+(((-713 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1465 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|)) (-15 -1783 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -2412 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -713))
+((-2412 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-650 (-1182 *13))) (-5 *3 (-1182 *13)) (-5 *4 (-650 *12)) (-5 *5 (-650 *10)) (-5 *6 (-650 *13)) (-5 *7 (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| *13))))) (-5 *8 (-650 (-777))) (-5 *9 (-1277 (-650 (-1182 *10)))) (-4 *12 (-856)) (-4 *10 (-311)) (-4 *13 (-956 *10 *11 *12)) (-4 *11 (-799)) (-5 *1 (-713 *11 *12 *10 *13)))) (-1783 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-650 *11)) (-5 *5 (-650 (-1182 *9))) (-5 *6 (-650 *9)) (-5 *7 (-650 *12)) (-5 *8 (-650 (-777))) (-4 *11 (-856)) (-4 *9 (-311)) (-4 *12 (-956 *9 *10 *11)) (-4 *10 (-799)) (-5 *2 (-650 (-1182 *12))) (-5 *1 (-713 *10 *11 *9 *12)) (-5 *3 (-1182 *12)))) (-1465 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-650 (-1182 *11))) (-5 *3 (-1182 *11)) (-5 *4 (-650 *10)) (-5 *5 (-650 *8)) (-5 *6 (-650 (-777))) (-5 *7 (-1277 (-650 (-1182 *8)))) (-4 *10 (-856)) (-4 *8 (-311)) (-4 *11 (-956 *8 *9 *10)) (-4 *9 (-799)) (-5 *1 (-713 *9 *10 *8 *11)))))
+(-10 -7 (-15 -1465 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|)) (-15 -1783 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -2412 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1891 (($ $) 48)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-3872 (($ |#1| (-777)) 46)) (-2730 (((-777) $) 50)) (-1865 ((|#1| $) 49)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3221 (((-777) $) 51)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45 (|has| |#1| (-174)))) (-1983 ((|#1| $ (-777)) 47)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 53) (($ |#1| $) 52)))
(((-714 |#1|) (-141) (-1058)) (T -714))
-((-1601 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-4341 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1864 (*1 *2 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1890 (*1 *1 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058)))))
-(-13 (-1058) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -1601 ((-777) $)) (-15 -4341 ((-777) $)) (-15 -1864 (|t#1| $)) (-15 -1890 ($ $)) (-15 -1715 (|t#1| $ (-777))) (-15 -3872 ($ |t#1| (-777)))))
+((-3221 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2730 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1891 (*1 *1 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1983 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058)))))
+(-13 (-1058) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -3221 ((-777) $)) (-15 -2730 ((-777) $)) (-15 -1865 (|t#1| $)) (-15 -1891 ($ $)) (-15 -1983 (|t#1| $ (-777))) (-15 -3872 ($ |t#1| (-777)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-174)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) |has| |#1| (-174)) ((-723 |#1|) |has| |#1| (-174)) ((-732) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1351 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-715 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1351 (|#6| (-1 |#4| |#1|) |#3|))) (-562) (-1252 |#1|) (-1252 (-413 |#2|)) (-562) (-1252 |#4|) (-1252 (-413 |#5|))) (T -715))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-562)) (-4 *7 (-562)) (-4 *6 (-1252 *5)) (-4 *2 (-1252 (-413 *8))) (-5 *1 (-715 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1252 (-413 *6))) (-4 *8 (-1252 *7)))))
-(-10 -7 (-15 -1351 (|#6| (-1 |#4| |#1|) |#3|)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3483 (((-1168) (-868)) 38)) (-4131 (((-1281) (-1168)) 31)) (-3380 (((-1168) (-868)) 28)) (-3694 (((-1168) (-868)) 29)) (-3735 (((-868) $) NIL) (((-1168) (-868)) 27)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-716) (-13 (-1109) (-10 -7 (-15 -3735 ((-1168) (-868))) (-15 -3380 ((-1168) (-868))) (-15 -3694 ((-1168) (-868))) (-15 -3483 ((-1168) (-868))) (-15 -4131 ((-1281) (-1168)))))) (T -716))
-((-3735 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-3380 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-3694 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-3483 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-4131 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-716)))))
-(-13 (-1109) (-10 -7 (-15 -3735 ((-1168) (-868))) (-15 -3380 ((-1168) (-868))) (-15 -3694 ((-1168) (-868))) (-15 -3483 ((-1168) (-868))) (-15 -4131 ((-1281) (-1168)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-3529 (($ |#1| |#2|) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4323 ((|#2| $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2797 (((-3 $ "failed") $ $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) ((|#1| $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-717 |#1| |#2| |#3| |#4| |#5|) (-13 (-368) (-10 -8 (-15 -4323 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -2797 ((-3 $ "failed") $ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -717))
-((-4323 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-717 *3 *2 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3529 (*1 *1 *2 *3) (-12 (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2797 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(-13 (-368) (-10 -8 (-15 -4323 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -2797 ((-3 $ "failed") $ $))))
-((-2416 (((-112) $ $) 90)) (-4028 (((-112) $) 36)) (-3618 (((-1276 |#1|) $ (-777)) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-3930 (($ (-1182 |#1|)) NIL)) (-3703 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3766 (($ $ $) NIL (|has| |#1| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3403 (((-777)) 56 (|has| |#1| (-373)))) (-2662 (($ $ (-777)) NIL)) (-3008 (($ $ (-777)) NIL)) (-3497 ((|#2| |#2|) 52)) (-2105 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-1939 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) NIL (|has| |#1| (-174)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) 40)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3529 (($ |#2|) 50)) (-3413 (((-3 $ "failed") $) 100)) (-3336 (($) 61 (|has| |#1| (-373)))) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3252 (($ $ $) NIL)) (-1325 (($ $ $) NIL (|has| |#1| (-562)))) (-3369 (((-2 (|:| -1441 |#1|) (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3465 (((-965 $)) 92)) (-3007 (($ $ |#1| (-777) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-3157 (((-777) $ $) NIL (|has| |#1| (-562)))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1704 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-3553 (($ $ (-777)) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 88) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1091)) NIL) (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-4323 ((|#2|) 53)) (-4341 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-4414 (($ (-1 (-777) (-777)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3189 (((-1182 |#1|) $) NIL)) (-3382 (((-3 (-1091) "failed") $) NIL)) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-3516 ((|#2| $) 49)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) 34)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-3781 (((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777)) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-1091)) (|:| -1907 (-777))) "failed") $) NIL)) (-3555 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2314 (($) NIL (|has| |#1| (-1161)) CONST)) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3925 (($ $) 91 (|has| |#1| (-354)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 99 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-4112 (((-3 $ "failed") $ (-777)) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 101 (|has| |#1| (-368)))) (-2998 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1601 (((-777) $) 38) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2863 (((-965 $)) 42)) (-2486 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3735 (((-868) $) 71) (($ (-570)) NIL) (($ |#1|) 68) (($ (-1091)) NIL) (($ |#2|) 78) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) 73) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) 25 T CONST)) (-3446 (((-1276 |#1|) $) 86)) (-3417 (($ (-1276 |#1|)) 60)) (-1823 (($) 8 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1502 (((-1276 |#1|) $) NIL)) (-2872 (((-112) $ $) 79)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) 82) (($ $ $) NIL)) (-2954 (($ $ $) 39)) (** (($ $ (-928)) NIL) (($ $ (-777)) 95)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 67) (($ $ $) 85) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 65) (($ $ |#1|) NIL)))
-(((-718 |#1| |#2|) (-13 (-1252 |#1|) (-622 |#2|) (-10 -8 (-15 -3497 (|#2| |#2|)) (-15 -4323 (|#2|)) (-15 -3529 ($ |#2|)) (-15 -3516 (|#2| $)) (-15 -3446 ((-1276 |#1|) $)) (-15 -3417 ($ (-1276 |#1|))) (-15 -1502 ((-1276 |#1|) $)) (-15 -3465 ((-965 $))) (-15 -2863 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -3925 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|))) (-1058) (-1252 |#1|)) (T -718))
-((-3497 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1252 *3)))) (-4323 (*1 *2) (-12 (-4 *2 (-1252 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-3529 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1252 *3)))) (-3516 (*1 *2 *1) (-12 (-4 *2 (-1252 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-3446 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1276 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1252 *3)))) (-3417 (*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1252 *3)))) (-1502 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1276 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1252 *3)))) (-3465 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1252 *3)))) (-2863 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1252 *3)))) (-3925 (*1 *1 *1) (-12 (-4 *2 (-354)) (-4 *2 (-1058)) (-5 *1 (-718 *2 *3)) (-4 *3 (-1252 *2)))))
-(-13 (-1252 |#1|) (-622 |#2|) (-10 -8 (-15 -3497 (|#2| |#2|)) (-15 -4323 (|#2|)) (-15 -3529 ($ |#2|)) (-15 -3516 (|#2| $)) (-15 -3446 ((-1276 |#1|) $)) (-15 -3417 ($ (-1276 |#1|))) (-15 -1502 ((-1276 |#1|) $)) (-15 -3465 ((-965 $))) (-15 -2863 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -3925 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 ((|#1| $) 13)) (-3479 (((-1129) $) NIL)) (-1907 ((|#2| $) 12)) (-3748 (($ |#1| |#2|) 16)) (-3735 (((-868) $) NIL) (($ (-2 (|:| -2159 |#1|) (|:| -1907 |#2|))) 15) (((-2 (|:| -2159 |#1|) (|:| -1907 |#2|)) $) 14)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 11)))
-(((-719 |#1| |#2| |#3|) (-13 (-856) (-496 (-2 (|:| -2159 |#1|) (|:| -1907 |#2|))) (-10 -8 (-15 -1907 (|#2| $)) (-15 -2159 (|#1| $)) (-15 -3748 ($ |#1| |#2|)))) (-856) (-1109) (-1 (-112) (-2 (|:| -2159 |#1|) (|:| -1907 |#2|)) (-2 (|:| -2159 |#1|) (|:| -1907 |#2|)))) (T -719))
-((-1907 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856)) (-14 *4 (-1 (-112) (-2 (|:| -2159 *3) (|:| -1907 *2)) (-2 (|:| -2159 *3) (|:| -1907 *2)))))) (-2159 (*1 *2 *1) (-12 (-4 *2 (-856)) (-5 *1 (-719 *2 *3 *4)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *3)) (-2 (|:| -2159 *2) (|:| -1907 *3)))))) (-3748 (*1 *1 *2 *3) (-12 (-5 *1 (-719 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *3)) (-2 (|:| -2159 *2) (|:| -1907 *3)))))))
-(-13 (-856) (-496 (-2 (|:| -2159 |#1|) (|:| -1907 |#2|))) (-10 -8 (-15 -1907 (|#2| $)) (-15 -2159 (|#1| $)) (-15 -3748 ($ |#1| |#2|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 66)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 105) (((-3 (-115) "failed") $) 111)) (-3080 ((|#1| $) NIL) (((-115) $) 39)) (-3413 (((-3 $ "failed") $) 106)) (-3700 ((|#2| (-115) |#2|) 93)) (-2081 (((-112) $) NIL)) (-4022 (($ |#1| (-366 (-115))) 14)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3509 (($ $ (-1 |#2| |#2|)) 65)) (-1816 (($ $ (-1 |#2| |#2|)) 44)) (-1876 ((|#2| $ |#2|) 33)) (-1437 ((|#1| |#1|) 121 (|has| |#1| (-174)))) (-3735 (((-868) $) 73) (($ (-570)) 18) (($ |#1|) 17) (($ (-115)) 23)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) 37 T CONST)) (-1859 (((-112) $ $) NIL)) (-1478 (($ $) 115 (|has| |#1| (-174))) (($ $ $) 119 (|has| |#1| (-174)))) (-1812 (($) 21 T CONST)) (-1823 (($) 9 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) 48) (($ $ $) NIL)) (-2954 (($ $ $) 83)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ (-115) (-570)) NIL) (($ $ (-570)) 64)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 114) (($ $ $) 53) (($ |#1| $) 112 (|has| |#1| (-174))) (($ $ |#1|) 113 (|has| |#1| (-174)))))
-(((-720 |#1| |#2|) (-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1478 ($ $)) (-15 -1478 ($ $ $)) (-15 -1437 (|#1| |#1|))) |%noBranch|) (-15 -1816 ($ $ (-1 |#2| |#2|))) (-15 -3509 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3700 (|#2| (-115) |#2|)) (-15 -4022 ($ |#1| (-366 (-115)))))) (-1058) (-654 |#1|)) (T -720))
-((-1478 (*1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1478 (*1 *1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1437 (*1 *2 *2) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1816 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)))) (-3509 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *5)) (-4 *5 (-654 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)) (-4 *4 (-654 *3)))) (-3700 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *2)) (-4 *2 (-654 *4)))) (-4022 (*1 *1 *2 *3) (-12 (-5 *3 (-366 (-115))) (-4 *2 (-1058)) (-5 *1 (-720 *2 *4)) (-4 *4 (-654 *2)))))
-(-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1478 ($ $)) (-15 -1478 ($ $ $)) (-15 -1437 (|#1| |#1|))) |%noBranch|) (-15 -1816 ($ $ (-1 |#2| |#2|))) (-15 -3509 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3700 (|#2| (-115) |#2|)) (-15 -4022 ($ |#1| (-366 (-115))))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 33)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3529 (($ |#1| |#2|) 25)) (-3413 (((-3 $ "failed") $) 51)) (-2081 (((-112) $) 35)) (-4323 ((|#2| $) 12)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 52)) (-3479 (((-1129) $) NIL)) (-2797 (((-3 $ "failed") $ $) 50)) (-3735 (((-868) $) 24) (($ (-570)) 19) ((|#1| $) 13)) (-2744 (((-777)) 28 T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 16 T CONST)) (-1823 (($) 30 T CONST)) (-2872 (((-112) $ $) 41)) (-2965 (($ $) 46) (($ $ $) 40)) (-2954 (($ $ $) 43)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21) (($ $ $) 20)))
-(((-721 |#1| |#2| |#3| |#4| |#5|) (-13 (-1058) (-10 -8 (-15 -4323 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -2797 ((-3 $ "failed") $ $)) (-15 -3413 ((-3 $ "failed") $)) (-15 -1825 ($ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -721))
-((-3413 (*1 *1 *1) (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-4323 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-721 *3 *2 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3529 (*1 *1 *2 *3) (-12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2797 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1825 (*1 *1 *1) (-12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(-13 (-1058) (-10 -8 (-15 -4323 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -2797 ((-3 $ "failed") $ $)) (-15 -3413 ((-3 $ "failed") $)) (-15 -1825 ($ $))))
+((-1352 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-715 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1352 (|#6| (-1 |#4| |#1|) |#3|))) (-562) (-1253 |#1|) (-1253 (-413 |#2|)) (-562) (-1253 |#4|) (-1253 (-413 |#5|))) (T -715))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-562)) (-4 *7 (-562)) (-4 *6 (-1253 *5)) (-4 *2 (-1253 (-413 *8))) (-5 *1 (-715 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1253 (-413 *6))) (-4 *8 (-1253 *7)))))
+(-10 -7 (-15 -1352 (|#6| (-1 |#4| |#1|) |#3|)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2365 (((-1168) (-868)) 38)) (-4131 (((-1282) (-1168)) 31)) (-2632 (((-1168) (-868)) 28)) (-2584 (((-1168) (-868)) 29)) (-3735 (((-868) $) NIL) (((-1168) (-868)) 27)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-716) (-13 (-1109) (-10 -7 (-15 -3735 ((-1168) (-868))) (-15 -2632 ((-1168) (-868))) (-15 -2584 ((-1168) (-868))) (-15 -2365 ((-1168) (-868))) (-15 -4131 ((-1282) (-1168)))))) (T -716))
+((-3735 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-2632 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-2584 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-2365 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-4131 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-716)))))
+(-13 (-1109) (-10 -7 (-15 -3735 ((-1168) (-868))) (-15 -2632 ((-1168) (-868))) (-15 -2584 ((-1168) (-868))) (-15 -2365 ((-1168) (-868))) (-15 -4131 ((-1282) (-1168)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-3529 (($ |#1| |#2|) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2532 ((|#2| $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3955 (((-3 $ "failed") $ $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) ((|#1| $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-717 |#1| |#2| |#3| |#4| |#5|) (-13 (-368) (-10 -8 (-15 -2532 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -3955 ((-3 $ "failed") $ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -717))
+((-2532 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-717 *3 *2 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3529 (*1 *1 *2 *3) (-12 (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3955 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(-13 (-368) (-10 -8 (-15 -2532 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -3955 ((-3 $ "failed") $ $))))
+((-2417 (((-112) $ $) 90)) (-2745 (((-112) $) 36)) (-3056 (((-1277 |#1|) $ (-777)) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-4267 (($ (-1182 |#1|)) NIL)) (-3702 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2037 (($ $ $) NIL (|has| |#1| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3403 (((-777)) 56 (|has| |#1| (-373)))) (-2038 (($ $ (-777)) NIL)) (-3393 (($ $ (-777)) NIL)) (-4426 ((|#2| |#2|) 52)) (-1484 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-3383 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) NIL (|has| |#1| (-174)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) 40)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3529 (($ |#2|) 50)) (-2937 (((-3 $ "failed") $) 100)) (-3336 (($) 61 (|has| |#1| (-373)))) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3996 (($ $ $) NIL)) (-1763 (($ $ $) NIL (|has| |#1| (-562)))) (-2526 (((-2 (|:| -1442 |#1|) (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-2227 (((-965 $)) 92)) (-3382 (($ $ |#1| (-777) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4331 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1705 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-1876 (($ $ (-777)) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 88) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1091)) NIL) (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-2532 ((|#2|) 53)) (-2730 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-2206 (($ (-1 (-777) (-777)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1551 (((-1182 |#1|) $) NIL)) (-2645 (((-3 (-1091) "failed") $) NIL)) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-3514 ((|#2| $) 49)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) 34)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-2166 (((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777)) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-1091)) (|:| -3011 (-777))) "failed") $) NIL)) (-3722 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2315 (($) NIL (|has| |#1| (-1161)) CONST)) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4211 (($ $) 91 (|has| |#1| (-354)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 99 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-2377 (((-3 $ "failed") $ (-777)) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 101 (|has| |#1| (-368)))) (-3290 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3221 (((-777) $) 38) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3358 (((-965 $)) 42)) (-4099 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3735 (((-868) $) 71) (($ (-570)) NIL) (($ |#1|) 68) (($ (-1091)) NIL) (($ |#2|) 78) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) 73) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) 25 T CONST)) (-2072 (((-1277 |#1|) $) 86)) (-2969 (($ (-1277 |#1|)) 60)) (-1824 (($) 8 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1693 (((-1277 |#1|) $) NIL)) (-2872 (((-112) $ $) 79)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) 82) (($ $ $) NIL)) (-2953 (($ $ $) 39)) (** (($ $ (-928)) NIL) (($ $ (-777)) 95)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 67) (($ $ $) 85) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 65) (($ $ |#1|) NIL)))
+(((-718 |#1| |#2|) (-13 (-1253 |#1|) (-622 |#2|) (-10 -8 (-15 -4426 (|#2| |#2|)) (-15 -2532 (|#2|)) (-15 -3529 ($ |#2|)) (-15 -3514 (|#2| $)) (-15 -2072 ((-1277 |#1|) $)) (-15 -2969 ($ (-1277 |#1|))) (-15 -1693 ((-1277 |#1|) $)) (-15 -2227 ((-965 $))) (-15 -3358 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -4211 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|))) (-1058) (-1253 |#1|)) (T -718))
+((-4426 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))) (-2532 (*1 *2) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-3529 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))) (-3514 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-2072 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2969 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-1693 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2227 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-3358 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-4211 (*1 *1 *1) (-12 (-4 *2 (-354)) (-4 *2 (-1058)) (-5 *1 (-718 *2 *3)) (-4 *3 (-1253 *2)))))
+(-13 (-1253 |#1|) (-622 |#2|) (-10 -8 (-15 -4426 (|#2| |#2|)) (-15 -2532 (|#2|)) (-15 -3529 ($ |#2|)) (-15 -3514 (|#2| $)) (-15 -2072 ((-1277 |#1|) $)) (-15 -2969 ($ (-1277 |#1|))) (-15 -1693 ((-1277 |#1|) $)) (-15 -2227 ((-965 $))) (-15 -3358 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -4211 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 ((|#1| $) 13)) (-3479 (((-1129) $) NIL)) (-3011 ((|#2| $) 12)) (-3749 (($ |#1| |#2|) 16)) (-3735 (((-868) $) NIL) (($ (-2 (|:| -2160 |#1|) (|:| -3011 |#2|))) 15) (((-2 (|:| -2160 |#1|) (|:| -3011 |#2|)) $) 14)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 11)))
+(((-719 |#1| |#2| |#3|) (-13 (-856) (-496 (-2 (|:| -2160 |#1|) (|:| -3011 |#2|))) (-10 -8 (-15 -3011 (|#2| $)) (-15 -2160 (|#1| $)) (-15 -3749 ($ |#1| |#2|)))) (-856) (-1109) (-1 (-112) (-2 (|:| -2160 |#1|) (|:| -3011 |#2|)) (-2 (|:| -2160 |#1|) (|:| -3011 |#2|)))) (T -719))
+((-3011 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856)) (-14 *4 (-1 (-112) (-2 (|:| -2160 *3) (|:| -3011 *2)) (-2 (|:| -2160 *3) (|:| -3011 *2)))))) (-2160 (*1 *2 *1) (-12 (-4 *2 (-856)) (-5 *1 (-719 *2 *3 *4)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *3)) (-2 (|:| -2160 *2) (|:| -3011 *3)))))) (-3749 (*1 *1 *2 *3) (-12 (-5 *1 (-719 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *3)) (-2 (|:| -2160 *2) (|:| -3011 *3)))))))
+(-13 (-856) (-496 (-2 (|:| -2160 |#1|) (|:| -3011 |#2|))) (-10 -8 (-15 -3011 (|#2| $)) (-15 -2160 (|#1| $)) (-15 -3749 ($ |#1| |#2|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 66)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 105) (((-3 (-115) "failed") $) 111)) (-3080 ((|#1| $) NIL) (((-115) $) 39)) (-2937 (((-3 $ "failed") $) 106)) (-2640 ((|#2| (-115) |#2|) 93)) (-4340 (((-112) $) NIL)) (-2680 (($ |#1| (-366 (-115))) 14)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1415 (($ $ (-1 |#2| |#2|)) 65)) (-1622 (($ $ (-1 |#2| |#2|)) 44)) (-1877 ((|#2| $ |#2|) 33)) (-1491 ((|#1| |#1|) 121 (|has| |#1| (-174)))) (-3735 (((-868) $) 73) (($ (-570)) 18) (($ |#1|) 17) (($ (-115)) 23)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) 37 T CONST)) (-3866 (((-112) $ $) NIL)) (-1449 (($ $) 115 (|has| |#1| (-174))) (($ $ $) 119 (|has| |#1| (-174)))) (-1814 (($) 21 T CONST)) (-1824 (($) 9 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) 48) (($ $ $) NIL)) (-2953 (($ $ $) 83)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ (-115) (-570)) NIL) (($ $ (-570)) 64)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 114) (($ $ $) 53) (($ |#1| $) 112 (|has| |#1| (-174))) (($ $ |#1|) 113 (|has| |#1| (-174)))))
+(((-720 |#1| |#2|) (-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1449 ($ $)) (-15 -1449 ($ $ $)) (-15 -1491 (|#1| |#1|))) |%noBranch|) (-15 -1622 ($ $ (-1 |#2| |#2|))) (-15 -1415 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -2640 (|#2| (-115) |#2|)) (-15 -2680 ($ |#1| (-366 (-115)))))) (-1058) (-654 |#1|)) (T -720))
+((-1449 (*1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1449 (*1 *1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1491 (*1 *2 *2) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1622 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)))) (-1415 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *5)) (-4 *5 (-654 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)) (-4 *4 (-654 *3)))) (-2640 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *2)) (-4 *2 (-654 *4)))) (-2680 (*1 *1 *2 *3) (-12 (-5 *3 (-366 (-115))) (-4 *2 (-1058)) (-5 *1 (-720 *2 *4)) (-4 *4 (-654 *2)))))
+(-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1449 ($ $)) (-15 -1449 ($ $ $)) (-15 -1491 (|#1| |#1|))) |%noBranch|) (-15 -1622 ($ $ (-1 |#2| |#2|))) (-15 -1415 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -2640 (|#2| (-115) |#2|)) (-15 -2680 ($ |#1| (-366 (-115))))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 33)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3529 (($ |#1| |#2|) 25)) (-2937 (((-3 $ "failed") $) 51)) (-4340 (((-112) $) 35)) (-2532 ((|#2| $) 12)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 52)) (-3479 (((-1129) $) NIL)) (-3955 (((-3 $ "failed") $ $) 50)) (-3735 (((-868) $) 24) (($ (-570)) 19) ((|#1| $) 13)) (-1609 (((-777)) 28 T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 16 T CONST)) (-1824 (($) 30 T CONST)) (-2872 (((-112) $ $) 41)) (-2965 (($ $) 46) (($ $ $) 40)) (-2953 (($ $ $) 43)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21) (($ $ $) 20)))
+(((-721 |#1| |#2| |#3| |#4| |#5|) (-13 (-1058) (-10 -8 (-15 -2532 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -3955 ((-3 $ "failed") $ $)) (-15 -2937 ((-3 $ "failed") $)) (-15 -1826 ($ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -721))
+((-2937 (*1 *1 *1) (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2532 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-721 *3 *2 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3529 (*1 *1 *2 *3) (-12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3955 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1826 (*1 *1 *1) (-12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(-13 (-1058) (-10 -8 (-15 -2532 (|#2| $)) (-15 -3735 (|#1| $)) (-15 -3529 ($ |#1| |#2|)) (-15 -3955 ((-3 $ "failed") $ $)) (-15 -2937 ((-3 $ "failed") $)) (-15 -1826 ($ $))))
((* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
(((-722 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-723 |#2|) (-174)) (T -722))
NIL
(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-723 |#1|) (-141) (-174)) (T -723))
NIL
(-13 (-111 |t#1| |t#1|) (-646 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3020 (($ |#1|) 17) (($ $ |#1|) 20)) (-3944 (($ |#1|) 18) (($ $ |#1|) 21)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2081 (((-112) $) NIL)) (-3371 (($ |#1| |#1| |#1| |#1|) 8)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 16)) (-3479 (((-1129) $) NIL)) (-1730 ((|#1| $ |#1|) 24) (((-839 |#1|) $ (-839 |#1|)) 32)) (-3684 (($ $ $) NIL)) (-3688 (($ $ $) NIL)) (-3735 (((-868) $) 39)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 9 T CONST)) (-2872 (((-112) $ $) 48)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 14)))
-(((-724 |#1|) (-13 (-479) (-10 -8 (-15 -3371 ($ |#1| |#1| |#1| |#1|)) (-15 -3020 ($ |#1|)) (-15 -3944 ($ |#1|)) (-15 -3413 ($)) (-15 -3020 ($ $ |#1|)) (-15 -3944 ($ $ |#1|)) (-15 -3413 ($ $)) (-15 -1730 (|#1| $ |#1|)) (-15 -1730 ((-839 |#1|) $ (-839 |#1|))))) (-368)) (T -724))
-((-3371 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3020 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3944 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3413 (*1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3020 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3944 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3413 (*1 *1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1730 (*1 *2 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1730 (*1 *2 *1 *2) (-12 (-5 *2 (-839 *3)) (-4 *3 (-368)) (-5 *1 (-724 *3)))))
-(-13 (-479) (-10 -8 (-15 -3371 ($ |#1| |#1| |#1| |#1|)) (-15 -3020 ($ |#1|)) (-15 -3944 ($ |#1|)) (-15 -3413 ($)) (-15 -3020 ($ $ |#1|)) (-15 -3944 ($ $ |#1|)) (-15 -3413 ($ $)) (-15 -1730 (|#1| $ |#1|)) (-15 -1730 ((-839 |#1|) $ (-839 |#1|)))))
-((-3937 (($ $ (-928)) 21)) (-2247 (($ $ (-928)) 22)) (** (($ $ (-928)) 10)))
-(((-725 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -2247 (|#1| |#1| (-928))) (-15 -3937 (|#1| |#1| (-928)))) (-726)) (T -725))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -2247 (|#1| |#1| (-928))) (-15 -3937 (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-3937 (($ $ (-928)) 16)) (-2247 (($ $ (-928)) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 17)))
+((-2417 (((-112) $ $) NIL)) (-3020 (($ |#1|) 17) (($ $ |#1|) 20)) (-3094 (($ |#1|) 18) (($ $ |#1|) 21)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-4340 (((-112) $) NIL)) (-2536 (($ |#1| |#1| |#1| |#1|) 8)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 16)) (-3479 (((-1129) $) NIL)) (-1731 ((|#1| $ |#1|) 24) (((-839 |#1|) $ (-839 |#1|)) 32)) (-2488 (($ $ $) NIL)) (-2522 (($ $ $) NIL)) (-3735 (((-868) $) 39)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 9 T CONST)) (-2872 (((-112) $ $) 48)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 14)))
+(((-724 |#1|) (-13 (-479) (-10 -8 (-15 -2536 ($ |#1| |#1| |#1| |#1|)) (-15 -3020 ($ |#1|)) (-15 -3094 ($ |#1|)) (-15 -2937 ($)) (-15 -3020 ($ $ |#1|)) (-15 -3094 ($ $ |#1|)) (-15 -2937 ($ $)) (-15 -1731 (|#1| $ |#1|)) (-15 -1731 ((-839 |#1|) $ (-839 |#1|))))) (-368)) (T -724))
+((-2536 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3020 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3094 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-2937 (*1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3020 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3094 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-2937 (*1 *1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1731 (*1 *2 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1731 (*1 *2 *1 *2) (-12 (-5 *2 (-839 *3)) (-4 *3 (-368)) (-5 *1 (-724 *3)))))
+(-13 (-479) (-10 -8 (-15 -2536 ($ |#1| |#1| |#1| |#1|)) (-15 -3020 ($ |#1|)) (-15 -3094 ($ |#1|)) (-15 -2937 ($)) (-15 -3020 ($ $ |#1|)) (-15 -3094 ($ $ |#1|)) (-15 -2937 ($ $)) (-15 -1731 (|#1| $ |#1|)) (-15 -1731 ((-839 |#1|) $ (-839 |#1|)))))
+((-4333 (($ $ (-928)) 21)) (-3548 (($ $ (-928)) 22)) (** (($ $ (-928)) 10)))
+(((-725 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -3548 (|#1| |#1| (-928))) (-15 -4333 (|#1| |#1| (-928)))) (-726)) (T -725))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -3548 (|#1| |#1| (-928))) (-15 -4333 (|#1| |#1| (-928))))
+((-2417 (((-112) $ $) 7)) (-4333 (($ $ (-928)) 16)) (-3548 (($ $ (-928)) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 17)))
(((-726) (-141)) (T -726))
-((* (*1 *1 *1 *1) (-4 *1 (-726))) (-3937 (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))) (-2247 (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))))
-(-13 (-1109) (-10 -8 (-15 * ($ $ $)) (-15 -3937 ($ $ (-928))) (-15 -2247 ($ $ (-928))) (-15 ** ($ $ (-928)))))
+((* (*1 *1 *1 *1) (-4 *1 (-726))) (-4333 (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))) (-3548 (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))))
+(-13 (-1109) (-10 -8 (-15 * ($ $ $)) (-15 -4333 ($ $ (-928))) (-15 -3548 ($ $ (-928))) (-15 ** ($ $ (-928)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3937 (($ $ (-928)) NIL) (($ $ (-777)) 21)) (-2081 (((-112) $) 10)) (-2247 (($ $ (-928)) NIL) (($ $ (-777)) 22)) (** (($ $ (-928)) NIL) (($ $ (-777)) 16)))
-(((-727 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -2247 (|#1| |#1| (-777))) (-15 -3937 (|#1| |#1| (-777))) (-15 -2081 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -2247 (|#1| |#1| (-928))) (-15 -3937 (|#1| |#1| (-928)))) (-728)) (T -727))
+((-4333 (($ $ (-928)) NIL) (($ $ (-777)) 21)) (-4340 (((-112) $) 10)) (-3548 (($ $ (-928)) NIL) (($ $ (-777)) 22)) (** (($ $ (-928)) NIL) (($ $ (-777)) 16)))
+(((-727 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -3548 (|#1| |#1| (-777))) (-15 -4333 (|#1| |#1| (-777))) (-15 -4340 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -3548 (|#1| |#1| (-928))) (-15 -4333 (|#1| |#1| (-928)))) (-728)) (T -727))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -2247 (|#1| |#1| (-777))) (-15 -3937 (|#1| |#1| (-777))) (-15 -2081 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -2247 (|#1| |#1| (-928))) (-15 -3937 (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-1535 (((-3 $ "failed") $) 18)) (-3937 (($ $ (-928)) 16) (($ $ (-777)) 23)) (-3413 (((-3 $ "failed") $) 20)) (-2081 (((-112) $) 24)) (-2168 (((-3 $ "failed") $) 19)) (-2247 (($ $ (-928)) 15) (($ $ (-777)) 22)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1823 (($) 25 T CONST)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 21)) (* (($ $ $) 17)))
+(-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -3548 (|#1| |#1| (-777))) (-15 -4333 (|#1| |#1| (-777))) (-15 -4340 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -3548 (|#1| |#1| (-928))) (-15 -4333 (|#1| |#1| (-928))))
+((-2417 (((-112) $ $) 7)) (-3860 (((-3 $ "failed") $) 18)) (-4333 (($ $ (-928)) 16) (($ $ (-777)) 23)) (-2937 (((-3 $ "failed") $) 20)) (-4340 (((-112) $) 24)) (-3984 (((-3 $ "failed") $) 19)) (-3548 (($ $ (-928)) 15) (($ $ (-777)) 22)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1824 (($) 25 T CONST)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 21)) (* (($ $ $) 17)))
(((-728) (-141)) (T -728))
-((-1823 (*1 *1) (-4 *1 (-728))) (-2081 (*1 *2 *1) (-12 (-4 *1 (-728)) (-5 *2 (-112)))) (-3937 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-2247 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-3413 (*1 *1 *1) (|partial| -4 *1 (-728))) (-2168 (*1 *1 *1) (|partial| -4 *1 (-728))) (-1535 (*1 *1 *1) (|partial| -4 *1 (-728))))
-(-13 (-726) (-10 -8 (-15 (-1823) ($) -3640) (-15 -2081 ((-112) $)) (-15 -3937 ($ $ (-777))) (-15 -2247 ($ $ (-777))) (-15 ** ($ $ (-777))) (-15 -3413 ((-3 $ "failed") $)) (-15 -2168 ((-3 $ "failed") $)) (-15 -1535 ((-3 $ "failed") $))))
+((-1824 (*1 *1) (-4 *1 (-728))) (-4340 (*1 *2 *1) (-12 (-4 *1 (-728)) (-5 *2 (-112)))) (-4333 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-3548 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-2937 (*1 *1 *1) (|partial| -4 *1 (-728))) (-3984 (*1 *1 *1) (|partial| -4 *1 (-728))) (-3860 (*1 *1 *1) (|partial| -4 *1 (-728))))
+(-13 (-726) (-10 -8 (-15 (-1824) ($) -3640) (-15 -4340 ((-112) $)) (-15 -4333 ($ $ (-777))) (-15 -3548 ($ $ (-777))) (-15 ** ($ $ (-777))) (-15 -2937 ((-3 $ "failed") $)) (-15 -3984 ((-3 $ "failed") $)) (-15 -3860 ((-3 $ "failed") $))))
(((-102) . T) ((-619 (-868)) . T) ((-726) . T) ((-1109) . T))
-((-3403 (((-777)) 42)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 23)) (-3529 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) 52)) (-3413 (((-3 $ "failed") $) 72)) (-3336 (($) 46)) (-2610 ((|#2| $) 21)) (-2339 (($) 18)) (-3447 (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 60) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-4399 (((-695 |#2|) (-1276 $) (-1 |#2| |#2|)) 67)) (-1416 (((-1276 |#2|) $) NIL) (($ (-1276 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3674 ((|#3| $) 39)) (-2331 (((-1276 $)) 36)))
-(((-729 |#1| |#2| |#3|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3336 (|#1|)) (-15 -3403 ((-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -4399 ((-695 |#2|) (-1276 |#1|) (-1 |#2| |#2|))) (-15 -3529 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1416 (|#1| |#3|)) (-15 -3529 (|#1| |#3|)) (-15 -2339 (|#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -1416 (|#3| |#1|)) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -2331 ((-1276 |#1|))) (-15 -3674 (|#3| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|))) (-730 |#2| |#3|) (-174) (-1252 |#2|)) (T -729))
-((-3403 (*1 *2) (-12 (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-777)) (-5 *1 (-729 *3 *4 *5)) (-4 *3 (-730 *4 *5)))))
-(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3336 (|#1|)) (-15 -3403 ((-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -4399 ((-695 |#2|) (-1276 |#1|) (-1 |#2| |#2|))) (-15 -3529 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1416 (|#1| |#3|)) (-15 -3529 (|#1| |#3|)) (-15 -2339 (|#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -1416 (|#3| |#1|)) (-15 -1416 (|#1| (-1276 |#2|))) (-15 -1416 ((-1276 |#2|) |#1|)) (-15 -2331 ((-1276 |#1|))) (-15 -3674 (|#3| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -3413 ((-3 |#1| "failed") |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 102 (|has| |#1| (-368)))) (-3171 (($ $) 103 (|has| |#1| (-368)))) (-2720 (((-112) $) 105 (|has| |#1| (-368)))) (-2945 (((-695 |#1|) (-1276 $)) 53) (((-695 |#1|)) 68)) (-3071 ((|#1| $) 59)) (-4029 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 122 (|has| |#1| (-368)))) (-1790 (((-424 $) $) 123 (|has| |#1| (-368)))) (-4339 (((-112) $ $) 113 (|has| |#1| (-368)))) (-3403 (((-777)) 96 (|has| |#1| (-373)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3080 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-2049 (($ (-1276 |#1|) (-1276 $)) 55) (($ (-1276 |#1|)) 71)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2372 (($ $ $) 117 (|has| |#1| (-368)))) (-2710 (((-695 |#1|) $ (-1276 $)) 60) (((-695 |#1|) $) 66)) (-4177 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3529 (($ |#2|) 166) (((-3 $ "failed") (-413 |#2|)) 163 (|has| |#1| (-368)))) (-3413 (((-3 $ "failed") $) 37)) (-3934 (((-928)) 61)) (-3336 (($) 99 (|has| |#1| (-373)))) (-2381 (($ $ $) 116 (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 111 (|has| |#1| (-368)))) (-2493 (($) 157 (|has| |#1| (-354)))) (-2036 (((-112) $) 158 (|has| |#1| (-354)))) (-2774 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-1552 (((-112) $) 124 (|has| |#1| (-368)))) (-3157 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-2081 (((-112) $) 35)) (-2610 ((|#1| $) 58)) (-2885 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-368)))) (-1638 ((|#2| $) 51 (|has| |#1| (-368)))) (-2367 (((-928) $) 98 (|has| |#1| (-373)))) (-3516 ((|#2| $) 164)) (-1845 (($ (-650 $)) 109 (|has| |#1| (-368))) (($ $ $) 108 (|has| |#1| (-368)))) (-1903 (((-1168) $) 10)) (-1825 (($ $) 125 (|has| |#1| (-368)))) (-2314 (($) 151 (|has| |#1| (-354)) CONST)) (-2159 (($ (-928)) 97 (|has| |#1| (-373)))) (-3479 (((-1129) $) 11)) (-2339 (($) 168)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 107 (|has| |#1| (-368))) (($ $ $) 106 (|has| |#1| (-368)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) 154 (|has| |#1| (-354)))) (-3738 (((-424 $) $) 121 (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 118 (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ $) 101 (|has| |#1| (-368)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-368)))) (-2272 (((-777) $) 114 (|has| |#1| (-368)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 115 (|has| |#1| (-368)))) (-2998 ((|#1| (-1276 $)) 54) ((|#1|) 67)) (-2845 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3447 (($ $) 145 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 143 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 141 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 140 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 139 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 138 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 131 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 130 (|has| |#1| (-368)))) (-4399 (((-695 |#1|) (-1276 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-2886 ((|#2|) 167)) (-2163 (($) 156 (|has| |#1| (-354)))) (-1807 (((-1276 |#1|) $ (-1276 $)) 57) (((-695 |#1|) (-1276 $) (-1276 $)) 56) (((-1276 |#1|) $) 73) (((-695 |#1|) (-1276 $)) 72)) (-1416 (((-1276 |#1|) $) 70) (($ (-1276 |#1|)) 69) ((|#2| $) 179) (($ |#2|) 165)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 153 (|has| |#1| (-354)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ $) 100 (|has| |#1| (-368))) (($ (-413 (-570))) 95 (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-1918 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3674 ((|#2| $) 52)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-2331 (((-1276 $)) 74)) (-1681 (((-112) $ $) 104 (|has| |#1| (-368)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $) 144 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 142 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 137 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 136 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 135 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 134 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 133 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 132 (|has| |#1| (-368)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 129 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 126 (|has| |#1| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-413 (-570)) $) 128 (|has| |#1| (-368))) (($ $ (-413 (-570))) 127 (|has| |#1| (-368)))))
-(((-730 |#1| |#2|) (-141) (-174) (-1252 |t#1|)) (T -730))
-((-2339 (*1 *1) (-12 (-4 *2 (-174)) (-4 *1 (-730 *2 *3)) (-4 *3 (-1252 *2)))) (-2886 (*1 *2) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1252 *3)))) (-3529 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1252 *3)))) (-1416 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1252 *3)))) (-3516 (*1 *2 *1) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1252 *3)))) (-3529 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-368)) (-4 *3 (-174)) (-4 *1 (-730 *3 *4)))) (-4399 (*1 *2 *3 *4) (-12 (-5 *3 (-1276 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368)) (-4 *1 (-730 *5 *6)) (-4 *5 (-174)) (-4 *6 (-1252 *5)) (-5 *2 (-695 *5)))))
-(-13 (-415 |t#1| |t#2|) (-174) (-620 |t#2|) (-417 |t#1|) (-382 |t#1|) (-10 -8 (-15 -2339 ($)) (-15 -2886 (|t#2|)) (-15 -3529 ($ |t#2|)) (-15 -1416 ($ |t#2|)) (-15 -3516 (|t#2| $)) (IF (|has| |t#1| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-368)) (-6 (-233 |t#1|)) (-15 -3529 ((-3 $ "failed") (-413 |t#2|))) (-15 -4399 ((-695 |t#1|) (-1276 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-354)) (-6 (-354)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-102) . T) ((-111 #0# #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#2|) . T) ((-233 |#1|) |has| |#1| (-368)) ((-235) -2740 (|has| |#1| (-354)) (-12 (|has| |#1| (-235)) (|has| |#1| (-368)))) ((-245) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-294) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-311) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-368) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2740 (|has| |#1| (-373)) (|has| |#1| (-354))) ((-354) |has| |#1| (-354)) ((-375 |#1| |#2|) . T) ((-415 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-562) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186)))) ((-927) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-354)) ((-1230) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))))
-((-2450 (($) 11)) (-3413 (((-3 $ "failed") $) 14)) (-2081 (((-112) $) 10)) (** (($ $ (-928)) NIL) (($ $ (-777)) 20)))
-(((-731 |#1|) (-10 -8 (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -2081 ((-112) |#1|)) (-15 -2450 (|#1|)) (-15 ** (|#1| |#1| (-928)))) (-732)) (T -731))
-NIL
-(-10 -8 (-15 -3413 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -2081 ((-112) |#1|)) (-15 -2450 (|#1|)) (-15 ** (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-2450 (($) 19 T CONST)) (-3413 (((-3 $ "failed") $) 16)) (-2081 (((-112) $) 18)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1823 (($) 20 T CONST)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 17)) (* (($ $ $) 15)))
+((-3403 (((-777)) 42)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 23)) (-3529 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) 52)) (-2937 (((-3 $ "failed") $) 72)) (-3336 (($) 46)) (-2771 ((|#2| $) 21)) (-2340 (($) 18)) (-3447 (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 60) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-2100 (((-695 |#2|) (-1277 $) (-1 |#2| |#2|)) 67)) (-1417 (((-1277 |#2|) $) NIL) (($ (-1277 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3641 ((|#3| $) 39)) (-2003 (((-1277 $)) 36)))
+(((-729 |#1| |#2| |#3|) (-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3336 (|#1|)) (-15 -3403 ((-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2100 ((-695 |#2|) (-1277 |#1|) (-1 |#2| |#2|))) (-15 -3529 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1417 (|#1| |#3|)) (-15 -3529 (|#1| |#3|)) (-15 -2340 (|#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -1417 (|#3| |#1|)) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -2003 ((-1277 |#1|))) (-15 -3641 (|#3| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|))) (-730 |#2| |#3|) (-174) (-1253 |#2|)) (T -729))
+((-3403 (*1 *2) (-12 (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-777)) (-5 *1 (-729 *3 *4 *5)) (-4 *3 (-730 *4 *5)))))
+(-10 -8 (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3336 (|#1|)) (-15 -3403 ((-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2100 ((-695 |#2|) (-1277 |#1|) (-1 |#2| |#2|))) (-15 -3529 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1417 (|#1| |#3|)) (-15 -3529 (|#1| |#3|)) (-15 -2340 (|#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -1417 (|#3| |#1|)) (-15 -1417 (|#1| (-1277 |#2|))) (-15 -1417 ((-1277 |#2|) |#1|)) (-15 -2003 ((-1277 |#1|))) (-15 -3641 (|#3| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -2937 ((-3 |#1| "failed") |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 102 (|has| |#1| (-368)))) (-1345 (($ $) 103 (|has| |#1| (-368)))) (-1372 (((-112) $) 105 (|has| |#1| (-368)))) (-4084 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3071 ((|#1| $) 59)) (-2756 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 122 (|has| |#1| (-368)))) (-1378 (((-424 $) $) 123 (|has| |#1| (-368)))) (-2707 (((-112) $ $) 113 (|has| |#1| (-368)))) (-3403 (((-777)) 96 (|has| |#1| (-373)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3080 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-2125 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2372 (($ $ $) 117 (|has| |#1| (-368)))) (-2443 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-1836 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3529 (($ |#2|) 166) (((-3 $ "failed") (-413 |#2|)) 163 (|has| |#1| (-368)))) (-2937 (((-3 $ "failed") $) 37)) (-3933 (((-928)) 61)) (-3336 (($) 99 (|has| |#1| (-373)))) (-2382 (($ $ $) 116 (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 111 (|has| |#1| (-368)))) (-4181 (($) 157 (|has| |#1| (-354)))) (-2006 (((-112) $) 158 (|has| |#1| (-354)))) (-1901 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-4037 (((-112) $) 124 (|has| |#1| (-368)))) (-4331 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-4340 (((-112) $) 35)) (-2771 ((|#1| $) 58)) (-3584 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-368)))) (-2399 ((|#2| $) 51 (|has| |#1| (-368)))) (-2332 (((-928) $) 98 (|has| |#1| (-373)))) (-3514 ((|#2| $) 164)) (-1847 (($ (-650 $)) 109 (|has| |#1| (-368))) (($ $ $) 108 (|has| |#1| (-368)))) (-4268 (((-1168) $) 10)) (-1826 (($ $) 125 (|has| |#1| (-368)))) (-2315 (($) 151 (|has| |#1| (-354)) CONST)) (-2160 (($ (-928)) 97 (|has| |#1| (-373)))) (-3479 (((-1129) $) 11)) (-2340 (($) 168)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 107 (|has| |#1| (-368))) (($ $ $) 106 (|has| |#1| (-368)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) 154 (|has| |#1| (-354)))) (-3739 (((-424 $) $) 121 (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 118 (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ $) 101 (|has| |#1| (-368)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-368)))) (-2547 (((-777) $) 114 (|has| |#1| (-368)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 115 (|has| |#1| (-368)))) (-3290 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-3156 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3447 (($ $) 145 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 143 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 141 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 140 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 139 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 138 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 131 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 130 (|has| |#1| (-368)))) (-2100 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-3597 ((|#2|) 167)) (-3929 (($) 156 (|has| |#1| (-354)))) (-1533 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1417 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69) ((|#2| $) 179) (($ |#2|) 165)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 153 (|has| |#1| (-354)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ $) 100 (|has| |#1| (-368))) (($ (-413 (-570))) 95 (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3127 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3641 ((|#2| $) 52)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2003 (((-1277 $)) 74)) (-2795 (((-112) $ $) 104 (|has| |#1| (-368)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $) 144 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 142 (-2740 (-1765 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 137 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 136 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 135 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 134 (-1765 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 133 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 132 (|has| |#1| (-368)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 129 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 126 (|has| |#1| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-413 (-570)) $) 128 (|has| |#1| (-368))) (($ $ (-413 (-570))) 127 (|has| |#1| (-368)))))
+(((-730 |#1| |#2|) (-141) (-174) (-1253 |t#1|)) (T -730))
+((-2340 (*1 *1) (-12 (-4 *2 (-174)) (-4 *1 (-730 *2 *3)) (-4 *3 (-1253 *2)))) (-3597 (*1 *2) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3529 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3)))) (-1417 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3)))) (-3514 (*1 *2 *1) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3529 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-368)) (-4 *3 (-174)) (-4 *1 (-730 *3 *4)))) (-2100 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368)) (-4 *1 (-730 *5 *6)) (-4 *5 (-174)) (-4 *6 (-1253 *5)) (-5 *2 (-695 *5)))))
+(-13 (-415 |t#1| |t#2|) (-174) (-620 |t#2|) (-417 |t#1|) (-382 |t#1|) (-10 -8 (-15 -2340 ($)) (-15 -3597 (|t#2|)) (-15 -3529 ($ |t#2|)) (-15 -1417 ($ |t#2|)) (-15 -3514 (|t#2| $)) (IF (|has| |t#1| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-368)) (-6 (-233 |t#1|)) (-15 -3529 ((-3 $ "failed") (-413 |t#2|))) (-15 -2100 ((-695 |t#1|) (-1277 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-354)) (-6 (-354)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-102) . T) ((-111 #0# #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#2|) . T) ((-233 |#1|) |has| |#1| (-368)) ((-235) -2740 (|has| |#1| (-354)) (-12 (|has| |#1| (-235)) (|has| |#1| (-368)))) ((-245) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-294) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-311) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-368) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2740 (|has| |#1| (-373)) (|has| |#1| (-354))) ((-354) |has| |#1| (-354)) ((-375 |#1| |#2|) . T) ((-415 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-562) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186)))) ((-927) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-354)) ((-1231) -2740 (|has| |#1| (-354)) (|has| |#1| (-368))))
+((-3761 (($) 11)) (-2937 (((-3 $ "failed") $) 14)) (-4340 (((-112) $) 10)) (** (($ $ (-928)) NIL) (($ $ (-777)) 20)))
+(((-731 |#1|) (-10 -8 (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -4340 ((-112) |#1|)) (-15 -3761 (|#1|)) (-15 ** (|#1| |#1| (-928)))) (-732)) (T -731))
+NIL
+(-10 -8 (-15 -2937 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -4340 ((-112) |#1|)) (-15 -3761 (|#1|)) (-15 ** (|#1| |#1| (-928))))
+((-2417 (((-112) $ $) 7)) (-3761 (($) 19 T CONST)) (-2937 (((-3 $ "failed") $) 16)) (-4340 (((-112) $) 18)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1824 (($) 20 T CONST)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 17)) (* (($ $ $) 15)))
(((-732) (-141)) (T -732))
-((-1823 (*1 *1) (-4 *1 (-732))) (-2450 (*1 *1) (-4 *1 (-732))) (-2081 (*1 *2 *1) (-12 (-4 *1 (-732)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-732)) (-5 *2 (-777)))) (-3413 (*1 *1 *1) (|partial| -4 *1 (-732))))
-(-13 (-1121) (-10 -8 (-15 (-1823) ($) -3640) (-15 -2450 ($) -3640) (-15 -2081 ((-112) $)) (-15 ** ($ $ (-777))) (-15 -3413 ((-3 $ "failed") $))))
+((-1824 (*1 *1) (-4 *1 (-732))) (-3761 (*1 *1) (-4 *1 (-732))) (-4340 (*1 *2 *1) (-12 (-4 *1 (-732)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-732)) (-5 *2 (-777)))) (-2937 (*1 *1 *1) (|partial| -4 *1 (-732))))
+(-13 (-1121) (-10 -8 (-15 (-1824) ($) -3640) (-15 -3761 ($) -3640) (-15 -4340 ((-112) $)) (-15 ** ($ $ (-777))) (-15 -2937 ((-3 $ "failed") $))))
(((-102) . T) ((-619 (-868)) . T) ((-1121) . T) ((-1109) . T))
-((-1345 (((-2 (|:| -3294 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|)) 39)) (-2198 (((-2 (|:| -3294 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3011 ((|#2| (-413 |#2|) (-1 |#2| |#2|)) 13)) (-1386 (((-2 (|:| |poly| |#2|) (|:| -3294 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)) 48)))
-(((-733 |#1| |#2|) (-10 -7 (-15 -2198 ((-2 (|:| -3294 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1345 ((-2 (|:| -3294 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3011 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -1386 ((-2 (|:| |poly| |#2|) (|:| -3294 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1252 |#1|)) (T -733))
-((-1386 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3294 (-413 *6)) (|:| |special| (-413 *6)))) (-5 *1 (-733 *5 *6)) (-5 *3 (-413 *6)))) (-3011 (*1 *2 *3 *4) (-12 (-5 *3 (-413 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1252 *5)) (-5 *1 (-733 *5 *2)) (-4 *5 (-368)))) (-1345 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3294 (-424 *3)) (|:| |special| (-424 *3)))) (-5 *1 (-733 *5 *3)))) (-2198 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3294 *3) (|:| |special| *3))) (-5 *1 (-733 *5 *3)))))
-(-10 -7 (-15 -2198 ((-2 (|:| -3294 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1345 ((-2 (|:| -3294 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3011 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -1386 ((-2 (|:| |poly| |#2|) (|:| -3294 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|))))
-((-3888 ((|#7| (-650 |#5|) |#6|) NIL)) (-1351 ((|#7| (-1 |#5| |#4|) |#6|) 27)))
-(((-734 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1351 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3888 (|#7| (-650 |#5|) |#6|))) (-856) (-799) (-799) (-1058) (-1058) (-956 |#4| |#2| |#1|) (-956 |#5| |#3| |#1|)) (T -734))
-((-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *9)) (-4 *9 (-1058)) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *8 (-1058)) (-4 *2 (-956 *9 *7 *5)) (-5 *1 (-734 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-799)) (-4 *4 (-956 *8 *6 *5)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1058)) (-4 *9 (-1058)) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *2 (-956 *9 *7 *5)) (-5 *1 (-734 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-799)) (-4 *4 (-956 *8 *6 *5)))))
-(-10 -7 (-15 -1351 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3888 (|#7| (-650 |#5|) |#6|)))
-((-1351 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
-(((-735 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1351 (|#7| (-1 |#2| |#1|) |#6|))) (-856) (-856) (-799) (-799) (-1058) (-956 |#5| |#3| |#1|) (-956 |#5| |#4| |#2|)) (T -735))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-856)) (-4 *6 (-856)) (-4 *7 (-799)) (-4 *9 (-1058)) (-4 *2 (-956 *9 *8 *6)) (-5 *1 (-735 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-799)) (-4 *4 (-956 *9 *7 *5)))))
-(-10 -7 (-15 -1351 (|#7| (-1 |#2| |#1|) |#6|)))
-((-3738 (((-424 |#4|) |#4|) 42)))
-(((-736 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186))))) (-311) (-956 (-959 |#3|) |#1| |#2|)) (T -736))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-736 *4 *5 *6 *3)) (-4 *3 (-956 (-959 *6) *4 *5)))))
-(-10 -7 (-15 -3738 ((-424 |#4|) |#4|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-870 |#1|)) $) NIL)) (-3703 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3171 (($ $) NIL (|has| |#2| (-562)))) (-2720 (((-112) $) NIL (|has| |#2| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2222 (($ $) NIL (|has| |#2| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#2| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-1939 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#2| (-916)))) (-3007 (($ $ |#2| (-537 (-870 |#1|)) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#2| (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-870 |#1|)) NIL)) (-4341 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-4414 (($ (-1 (-537 (-870 |#1|)) (-537 (-870 |#1|))) $) NIL)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3382 (((-3 (-870 |#1|) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#2| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -1907 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#2| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) NIL) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) NIL) (($ $ (-870 |#1|) $) NIL) (($ $ (-650 (-870 |#1|)) (-650 $)) NIL)) (-2998 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1601 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3030 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ $) NIL (|has| |#2| (-562))) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+((-1957 (((-2 (|:| -3294 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|)) 39)) (-4289 (((-2 (|:| -3294 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3417 ((|#2| (-413 |#2|) (-1 |#2| |#2|)) 13)) (-1437 (((-2 (|:| |poly| |#2|) (|:| -3294 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)) 48)))
+(((-733 |#1| |#2|) (-10 -7 (-15 -4289 ((-2 (|:| -3294 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1957 ((-2 (|:| -3294 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3417 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -1437 ((-2 (|:| |poly| |#2|) (|:| -3294 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -733))
+((-1437 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3294 (-413 *6)) (|:| |special| (-413 *6)))) (-5 *1 (-733 *5 *6)) (-5 *3 (-413 *6)))) (-3417 (*1 *2 *3 *4) (-12 (-5 *3 (-413 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1253 *5)) (-5 *1 (-733 *5 *2)) (-4 *5 (-368)))) (-1957 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3294 (-424 *3)) (|:| |special| (-424 *3)))) (-5 *1 (-733 *5 *3)))) (-4289 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3294 *3) (|:| |special| *3))) (-5 *1 (-733 *5 *3)))))
+(-10 -7 (-15 -4289 ((-2 (|:| -3294 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1957 ((-2 (|:| -3294 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3417 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -1437 ((-2 (|:| |poly| |#2|) (|:| -3294 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|))))
+((-3889 ((|#7| (-650 |#5|) |#6|) NIL)) (-1352 ((|#7| (-1 |#5| |#4|) |#6|) 27)))
+(((-734 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1352 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3889 (|#7| (-650 |#5|) |#6|))) (-856) (-799) (-799) (-1058) (-1058) (-956 |#4| |#2| |#1|) (-956 |#5| |#3| |#1|)) (T -734))
+((-3889 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *9)) (-4 *9 (-1058)) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *8 (-1058)) (-4 *2 (-956 *9 *7 *5)) (-5 *1 (-734 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-799)) (-4 *4 (-956 *8 *6 *5)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1058)) (-4 *9 (-1058)) (-4 *5 (-856)) (-4 *6 (-799)) (-4 *2 (-956 *9 *7 *5)) (-5 *1 (-734 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-799)) (-4 *4 (-956 *8 *6 *5)))))
+(-10 -7 (-15 -1352 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3889 (|#7| (-650 |#5|) |#6|)))
+((-1352 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
+(((-735 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1352 (|#7| (-1 |#2| |#1|) |#6|))) (-856) (-856) (-799) (-799) (-1058) (-956 |#5| |#3| |#1|) (-956 |#5| |#4| |#2|)) (T -735))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-856)) (-4 *6 (-856)) (-4 *7 (-799)) (-4 *9 (-1058)) (-4 *2 (-956 *9 *8 *6)) (-5 *1 (-735 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-799)) (-4 *4 (-956 *9 *7 *5)))))
+(-10 -7 (-15 -1352 (|#7| (-1 |#2| |#1|) |#6|)))
+((-3739 (((-424 |#4|) |#4|) 42)))
+(((-736 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186))))) (-311) (-956 (-959 |#3|) |#1| |#2|)) (T -736))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-736 *4 *5 *6 *3)) (-4 *3 (-956 (-959 *6) *4 *5)))))
+(-10 -7 (-15 -3739 ((-424 |#4|) |#4|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-870 |#1|)) $) NIL)) (-3702 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-1345 (($ $) NIL (|has| |#2| (-562)))) (-1372 (((-112) $) NIL (|has| |#2| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3252 (($ $) NIL (|has| |#2| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3383 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#2| (-916)))) (-3382 (($ $ |#2| (-537 (-870 |#1|)) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-870 |#1|) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#2| (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-870 |#1|)) NIL)) (-2730 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-2206 (($ (-1 (-537 (-870 |#1|)) (-537 (-870 |#1|))) $) NIL)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-2645 (((-3 (-870 |#1|) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#2| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3011 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#2| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) NIL) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) NIL) (($ $ (-870 |#1|) $) NIL) (($ $ (-650 (-870 |#1|)) (-650 $)) NIL)) (-3290 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3221 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-870 |#1|) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-870 |#1|) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3621 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ $) NIL (|has| |#2| (-562))) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
(((-737 |#1| |#2|) (-956 |#2| (-537 (-870 |#1|)) (-870 |#1|)) (-650 (-1186)) (-1058)) (T -737))
NIL
(-956 |#2| (-537 (-870 |#1|)) (-870 |#1|))
-((-4408 (((-2 (|:| -3947 (-959 |#3|)) (|:| -1718 (-959 |#3|))) |#4|) 14)) (-1919 ((|#4| |#4| |#2|) 33)) (-4084 ((|#4| (-413 (-959 |#3|)) |#2|) 64)) (-2380 ((|#4| (-1182 (-959 |#3|)) |#2|) 77)) (-2263 ((|#4| (-1182 |#4|) |#2|) 51)) (-2423 ((|#4| |#4| |#2|) 54)) (-3738 (((-424 |#4|) |#4|) 40)))
-(((-738 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4408 ((-2 (|:| -3947 (-959 |#3|)) (|:| -1718 (-959 |#3|))) |#4|)) (-15 -2423 (|#4| |#4| |#2|)) (-15 -2263 (|#4| (-1182 |#4|) |#2|)) (-15 -1919 (|#4| |#4| |#2|)) (-15 -2380 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -4084 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3738 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)))) (-562) (-956 (-413 (-959 |#3|)) |#1| |#2|)) (T -738))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))) (-4084 (*1 *2 *3 *4) (-12 (-4 *6 (-562)) (-4 *2 (-956 *3 *5 *4)) (-5 *1 (-738 *5 *4 *6 *2)) (-5 *3 (-413 (-959 *6))) (-4 *5 (-799)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))))) (-2380 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 (-959 *6))) (-4 *6 (-562)) (-4 *2 (-956 (-413 (-959 *6)) *5 *4)) (-5 *1 (-738 *5 *4 *6 *2)) (-4 *5 (-799)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))))) (-1919 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-2263 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *2)) (-4 *2 (-956 (-413 (-959 *6)) *5 *4)) (-5 *1 (-738 *5 *4 *6 *2)) (-4 *5 (-799)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *6 (-562)))) (-2423 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-4408 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-2 (|:| -3947 (-959 *6)) (|:| -1718 (-959 *6)))) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
-(-10 -7 (-15 -4408 ((-2 (|:| -3947 (-959 |#3|)) (|:| -1718 (-959 |#3|))) |#4|)) (-15 -2423 (|#4| |#4| |#2|)) (-15 -2263 (|#4| (-1182 |#4|) |#2|)) (-15 -1919 (|#4| |#4| |#2|)) (-15 -2380 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -4084 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3738 ((-424 |#4|) |#4|)))
-((-3738 (((-424 |#4|) |#4|) 54)))
-(((-739 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 |#4|) |#4|))) (-799) (-856) (-13 (-311) (-148)) (-956 (-413 |#3|) |#1| |#2|)) (T -739))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-13 (-311) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-739 *4 *5 *6 *3)) (-4 *3 (-956 (-413 *6) *4 *5)))))
-(-10 -7 (-15 -3738 ((-424 |#4|) |#4|)))
-((-1351 (((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)) 18)))
-(((-740 |#1| |#2| |#3|) (-10 -7 (-15 -1351 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)))) (-1058) (-1058) (-732)) (T -740))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-741 *5 *7)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *7 (-732)) (-5 *2 (-741 *6 *7)) (-5 *1 (-740 *5 *6 *7)))))
-(-10 -7 (-15 -1351 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 38)) (-2230 (((-650 (-2 (|:| -1441 |#1|) (|:| -3278 |#2|))) $) 39)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777)) 22 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) 78) (((-3 |#1| "failed") $) 81)) (-3080 ((|#2| $) NIL) ((|#1| $) NIL)) (-1890 (($ $) 104 (|has| |#2| (-856)))) (-3413 (((-3 $ "failed") $) 87)) (-3336 (($) 50 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) 72)) (-1435 (((-650 $) $) 54)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| |#2|) 17)) (-1351 (($ (-1 |#1| |#1|) $) 70)) (-2367 (((-928) $) 45 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-1855 ((|#2| $) 103 (|has| |#2| (-856)))) (-1864 ((|#1| $) 102 (|has| |#2| (-856)))) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) 37 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 101) (($ (-570)) 61) (($ |#2|) 57) (($ |#1|) 58) (($ (-650 (-2 (|:| -1441 |#1|) (|:| -3278 |#2|)))) 11)) (-3009 (((-650 |#1|) $) 56)) (-1715 ((|#1| $ |#2|) 117)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 12 T CONST)) (-1823 (($) 46 T CONST)) (-2872 (((-112) $ $) 107)) (-2965 (($ $) 63) (($ $ $) NIL)) (-2954 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 68) (($ $ $) 120) (($ |#1| $) 65 (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
-(((-741 |#1| |#2|) (-13 (-1058) (-1047 |#2|) (-1047 |#1|) (-10 -8 (-15 -3872 ($ |#1| |#2|)) (-15 -1715 (|#1| $ |#2|)) (-15 -3735 ($ (-650 (-2 (|:| -1441 |#1|) (|:| -3278 |#2|))))) (-15 -2230 ((-650 (-2 (|:| -1441 |#1|) (|:| -3278 |#2|))) $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (-15 -1550 ((-112) $)) (-15 -3009 ((-650 |#1|) $)) (-15 -1435 ((-650 $) $)) (-15 -3797 ((-777) $)) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-856)) (PROGN (-15 -1855 (|#2| $)) (-15 -1864 (|#1| $)) (-15 -1890 ($ $))) |%noBranch|))) (-1058) (-732)) (T -741))
-((-3872 (*1 *1 *2 *3) (-12 (-5 *1 (-741 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-732)))) (-1715 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-732)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -1441 *3) (|:| -3278 *4)))) (-4 *3 (-1058)) (-4 *4 (-732)) (-5 *1 (-741 *3 *4)))) (-2230 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -1441 *3) (|:| -3278 *4)))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-741 *3 *4)) (-4 *4 (-732)))) (-1550 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-3009 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1435 (*1 *2 *1) (-12 (-5 *2 (-650 (-741 *3 *4))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-3797 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1855 (*1 *2 *1) (-12 (-4 *2 (-732)) (-4 *2 (-856)) (-5 *1 (-741 *3 *2)) (-4 *3 (-1058)))) (-1864 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *3 (-732)))) (-1890 (*1 *1 *1) (-12 (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1058)) (-4 *3 (-732)))))
-(-13 (-1058) (-1047 |#2|) (-1047 |#1|) (-10 -8 (-15 -3872 ($ |#1| |#2|)) (-15 -1715 (|#1| $ |#2|)) (-15 -3735 ($ (-650 (-2 (|:| -1441 |#1|) (|:| -3278 |#2|))))) (-15 -2230 ((-650 (-2 (|:| -1441 |#1|) (|:| -3278 |#2|))) $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (-15 -1550 ((-112) $)) (-15 -3009 ((-650 |#1|) $)) (-15 -1435 ((-650 $) $)) (-15 -3797 ((-777) $)) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-856)) (PROGN (-15 -1855 (|#2| $)) (-15 -1864 (|#1| $)) (-15 -1890 ($ $))) |%noBranch|)))
-((-2416 (((-112) $ $) 19)) (-3923 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-2704 (($ $ $) 73)) (-1783 (((-112) $ $) 74)) (-3594 (((-112) $ (-777)) 8)) (-4240 (($ (-650 |#1|)) 69) (($) 68)) (-1591 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2208 (($ $) 63)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) 65)) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22)) (-2307 (($ $ $) 70)) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3479 (((-1129) $) 21)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-4282 (((-650 (-2 (|:| -2223 |#1|) (|:| -3486 (-777)))) $) 62)) (-1966 (($ $ |#1|) 72) (($ $ $) 71)) (-2271 (($) 50) (($ (-650 |#1|)) 49)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18)) (-3813 (($ (-650 |#1|)) 67) (($) 66)) (-1859 (((-112) $ $) 23)) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2176 (((-2 (|:| -3125 (-959 |#3|)) (|:| -1993 (-959 |#3|))) |#4|) 14)) (-3137 ((|#4| |#4| |#2|) 33)) (-2162 ((|#4| (-413 (-959 |#3|)) |#2|) 64)) (-4367 ((|#4| (-1182 (-959 |#3|)) |#2|) 77)) (-2463 ((|#4| (-1182 |#4|) |#2|) 51)) (-1681 ((|#4| |#4| |#2|) 54)) (-3739 (((-424 |#4|) |#4|) 40)))
+(((-738 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2176 ((-2 (|:| -3125 (-959 |#3|)) (|:| -1993 (-959 |#3|))) |#4|)) (-15 -1681 (|#4| |#4| |#2|)) (-15 -2463 (|#4| (-1182 |#4|) |#2|)) (-15 -3137 (|#4| |#4| |#2|)) (-15 -4367 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -2162 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3739 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)))) (-562) (-956 (-413 (-959 |#3|)) |#1| |#2|)) (T -738))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))) (-2162 (*1 *2 *3 *4) (-12 (-4 *6 (-562)) (-4 *2 (-956 *3 *5 *4)) (-5 *1 (-738 *5 *4 *6 *2)) (-5 *3 (-413 (-959 *6))) (-4 *5 (-799)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))))) (-4367 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 (-959 *6))) (-4 *6 (-562)) (-4 *2 (-956 (-413 (-959 *6)) *5 *4)) (-5 *1 (-738 *5 *4 *6 *2)) (-4 *5 (-799)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))))) (-3137 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-2463 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *2)) (-4 *2 (-956 (-413 (-959 *6)) *5 *4)) (-5 *1 (-738 *5 *4 *6 *2)) (-4 *5 (-799)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *6 (-562)))) (-1681 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-2176 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-2 (|:| -3125 (-959 *6)) (|:| -1993 (-959 *6)))) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
+(-10 -7 (-15 -2176 ((-2 (|:| -3125 (-959 |#3|)) (|:| -1993 (-959 |#3|))) |#4|)) (-15 -1681 (|#4| |#4| |#2|)) (-15 -2463 (|#4| (-1182 |#4|) |#2|)) (-15 -3137 (|#4| |#4| |#2|)) (-15 -4367 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -2162 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3739 ((-424 |#4|) |#4|)))
+((-3739 (((-424 |#4|) |#4|) 54)))
+(((-739 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 |#4|) |#4|))) (-799) (-856) (-13 (-311) (-148)) (-956 (-413 |#3|) |#1| |#2|)) (T -739))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-13 (-311) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-739 *4 *5 *6 *3)) (-4 *3 (-956 (-413 *6) *4 *5)))))
+(-10 -7 (-15 -3739 ((-424 |#4|) |#4|)))
+((-1352 (((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)) 18)))
+(((-740 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)))) (-1058) (-1058) (-732)) (T -740))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-741 *5 *7)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *7 (-732)) (-5 *2 (-741 *6 *7)) (-5 *1 (-740 *5 *6 *7)))))
+(-10 -7 (-15 -1352 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 38)) (-3345 (((-650 (-2 (|:| -1442 |#1|) (|:| -3278 |#2|))) $) 39)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777)) 22 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) 78) (((-3 |#1| "failed") $) 81)) (-3080 ((|#2| $) NIL) ((|#1| $) NIL)) (-1891 (($ $) 104 (|has| |#2| (-856)))) (-2937 (((-3 $ "failed") $) 87)) (-3336 (($) 50 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) 72)) (-1471 (((-650 $) $) 54)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| |#2|) 17)) (-1352 (($ (-1 |#1| |#1|) $) 70)) (-2332 (((-928) $) 45 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-1857 ((|#2| $) 103 (|has| |#2| (-856)))) (-1865 ((|#1| $) 102 (|has| |#2| (-856)))) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) 37 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 101) (($ (-570)) 61) (($ |#2|) 57) (($ |#1|) 58) (($ (-650 (-2 (|:| -1442 |#1|) (|:| -3278 |#2|)))) 11)) (-3405 (((-650 |#1|) $) 56)) (-1983 ((|#1| $ |#2|) 117)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 12 T CONST)) (-1824 (($) 46 T CONST)) (-2872 (((-112) $ $) 107)) (-2965 (($ $) 63) (($ $ $) NIL)) (-2953 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 68) (($ $ $) 120) (($ |#1| $) 65 (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
+(((-741 |#1| |#2|) (-13 (-1058) (-1047 |#2|) (-1047 |#1|) (-10 -8 (-15 -3872 ($ |#1| |#2|)) (-15 -1983 (|#1| $ |#2|)) (-15 -3735 ($ (-650 (-2 (|:| -1442 |#1|) (|:| -3278 |#2|))))) (-15 -3345 ((-650 (-2 (|:| -1442 |#1|) (|:| -3278 |#2|))) $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (-15 -4016 ((-112) $)) (-15 -3405 ((-650 |#1|) $)) (-15 -1471 ((-650 $) $)) (-15 -2292 ((-777) $)) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-856)) (PROGN (-15 -1857 (|#2| $)) (-15 -1865 (|#1| $)) (-15 -1891 ($ $))) |%noBranch|))) (-1058) (-732)) (T -741))
+((-3872 (*1 *1 *2 *3) (-12 (-5 *1 (-741 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-732)))) (-1983 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-732)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -1442 *3) (|:| -3278 *4)))) (-4 *3 (-1058)) (-4 *4 (-732)) (-5 *1 (-741 *3 *4)))) (-3345 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -1442 *3) (|:| -3278 *4)))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-741 *3 *4)) (-4 *4 (-732)))) (-4016 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-3405 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1471 (*1 *2 *1) (-12 (-5 *2 (-650 (-741 *3 *4))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-2292 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1857 (*1 *2 *1) (-12 (-4 *2 (-732)) (-4 *2 (-856)) (-5 *1 (-741 *3 *2)) (-4 *3 (-1058)))) (-1865 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *3 (-732)))) (-1891 (*1 *1 *1) (-12 (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1058)) (-4 *3 (-732)))))
+(-13 (-1058) (-1047 |#2|) (-1047 |#1|) (-10 -8 (-15 -3872 ($ |#1| |#2|)) (-15 -1983 (|#1| $ |#2|)) (-15 -3735 ($ (-650 (-2 (|:| -1442 |#1|) (|:| -3278 |#2|))))) (-15 -3345 ((-650 (-2 (|:| -1442 |#1|) (|:| -3278 |#2|))) $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (-15 -4016 ((-112) $)) (-15 -3405 ((-650 |#1|) $)) (-15 -1471 ((-650 $) $)) (-15 -2292 ((-777) $)) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-856)) (PROGN (-15 -1857 (|#2| $)) (-15 -1865 (|#1| $)) (-15 -1891 ($ $))) |%noBranch|)))
+((-2417 (((-112) $ $) 19)) (-3923 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-2398 (($ $ $) 73)) (-4425 (((-112) $ $) 74)) (-4095 (((-112) $ (-777)) 8)) (-4241 (($ (-650 |#1|)) 69) (($) 68)) (-3131 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3092 (($ $) 63)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) 65)) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22)) (-2885 (($ $ $) 70)) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3479 (((-1129) $) 21)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3435 (((-650 (-2 (|:| -2224 |#1|) (|:| -3490 (-777)))) $) 62)) (-2449 (($ $ |#1|) 72) (($ $ $) 71)) (-2535 (($) 50) (($ (-650 |#1|)) 49)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18)) (-3813 (($ (-650 |#1|)) 67) (($) 66)) (-3866 (((-112) $ $) 23)) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-742 |#1|) (-141) (-1109)) (T -742))
NIL
(-13 (-701 |t#1|) (-1107 |t#1|))
-(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-701 |#1|) . T) ((-1107 |#1|) . T) ((-1109) . T) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-3923 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 95)) (-2704 (($ $ $) 99)) (-1783 (((-112) $ $) 107)) (-3594 (((-112) $ (-777)) NIL)) (-4240 (($ (-650 |#1|)) 26) (($) 17)) (-1591 (($ (-1 (-112) |#1|) $) 83 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2208 (($ $) 85)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) 70 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 77 (|has| $ (-6 -4448))) (($ |#1| $ (-570)) 75) (($ (-1 (-112) |#1|) $ (-570)) 78)) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (($ |#1| $ (-570)) 80) (($ (-1 (-112) |#1|) $ (-570)) 81)) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 32 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) 106)) (-3605 (($) 15) (($ |#1|) 28) (($ (-650 |#1|)) 23)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) 38)) (-3464 (((-112) |#1| $) 65 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 88 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 89)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-2307 (($ $ $) 97)) (-3784 ((|#1| $) 62)) (-2278 (($ |#1| $) 63) (($ |#1| $ (-777)) 86)) (-3479 (((-1129) $) NIL)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1899 ((|#1| $) 61)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 56)) (-3743 (($) 14)) (-4282 (((-650 (-2 (|:| -2223 |#1|) (|:| -3486 (-777)))) $) 55)) (-1966 (($ $ |#1|) NIL) (($ $ $) 98)) (-2271 (($) 16) (($ (-650 |#1|)) 25)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) 68 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 79)) (-1416 (((-542) $) 36 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 22)) (-3735 (((-868) $) 49)) (-3813 (($ (-650 |#1|)) 27) (($) 18)) (-1859 (((-112) $ $) NIL)) (-2251 (($ (-650 |#1|)) 24)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 103)) (-2426 (((-777) $) 67 (|has| $ (-6 -4448)))))
-(((-743 |#1|) (-13 (-742 |#1|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -3605 ($)) (-15 -3605 ($ |#1|)) (-15 -3605 ($ (-650 |#1|))) (-15 -2849 ((-650 |#1|) $)) (-15 -1702 ($ |#1| $ (-570))) (-15 -1702 ($ (-1 (-112) |#1|) $ (-570))) (-15 -2513 ($ |#1| $ (-570))) (-15 -2513 ($ (-1 (-112) |#1|) $ (-570))))) (-1109)) (T -743))
-((-3605 (*1 *1) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-3605 (*1 *1 *2) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-3605 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-743 *3)))) (-2849 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-743 *3)) (-4 *3 (-1109)))) (-1702 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-1702 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109)) (-5 *1 (-743 *4)))) (-2513 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-2513 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109)) (-5 *1 (-743 *4)))))
-(-13 (-742 |#1|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -3605 ($)) (-15 -3605 ($ |#1|)) (-15 -3605 ($ (-650 |#1|))) (-15 -2849 ((-650 |#1|) $)) (-15 -1702 ($ |#1| $ (-570))) (-15 -1702 ($ (-1 (-112) |#1|) $ (-570))) (-15 -2513 ($ |#1| $ (-570))) (-15 -2513 ($ (-1 (-112) |#1|) $ (-570)))))
-((-3248 (((-1281) (-1168)) 8)))
-(((-744) (-10 -7 (-15 -3248 ((-1281) (-1168))))) (T -744))
-((-3248 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-744)))))
-(-10 -7 (-15 -3248 ((-1281) (-1168))))
-((-1797 (((-650 |#1|) (-650 |#1|) (-650 |#1|)) 15)))
-(((-745 |#1|) (-10 -7 (-15 -1797 ((-650 |#1|) (-650 |#1|) (-650 |#1|)))) (-856)) (T -745))
-((-1797 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
-(-10 -7 (-15 -1797 ((-650 |#1|) (-650 |#1|) (-650 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 |#2|) $) 148)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 141 (|has| |#1| (-562)))) (-3171 (($ $) 140 (|has| |#1| (-562)))) (-2720 (((-112) $) 138 (|has| |#1| (-562)))) (-2735 (($ $) 97 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 80 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) 20)) (-3753 (($ $) 79 (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-4087 (($ $) 95 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) 18 T CONST)) (-1890 (($ $) 132)) (-3413 (((-3 $ "failed") $) 37)) (-3208 (((-959 |#1|) $ (-777)) 110) (((-959 |#1|) $ (-777) (-777)) 109)) (-4232 (((-112) $) 149)) (-1314 (($) 107 (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-777) $ |#2|) 112) (((-777) $ |#2| (-777)) 111)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 78 (|has| |#1| (-38 (-413 (-570)))))) (-1550 (((-112) $) 130)) (-3872 (($ $ (-650 |#2|) (-650 (-537 |#2|))) 147) (($ $ |#2| (-537 |#2|)) 146) (($ |#1| (-537 |#2|)) 131) (($ $ |#2| (-777)) 114) (($ $ (-650 |#2|) (-650 (-777))) 113)) (-1351 (($ (-1 |#1| |#1|) $) 129)) (-2635 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) 127)) (-1864 ((|#1| $) 126)) (-1903 (((-1168) $) 10)) (-3555 (($ $ |#2|) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) 11)) (-1558 (($ $ (-777)) 115)) (-2407 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-4387 (($ $) 105 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (($ $ |#2| $) 123) (($ $ (-650 |#2|) (-650 $)) 122) (($ $ (-650 (-298 $))) 121) (($ $ (-298 $)) 120) (($ $ $ $) 119) (($ $ (-650 $) (-650 $)) 118)) (-3447 (($ $ |#2|) 46) (($ $ (-650 |#2|)) 45) (($ $ |#2| (-777)) 44) (($ $ (-650 |#2|) (-650 (-777))) 43)) (-1601 (((-537 |#2|) $) 128)) (-4099 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 83 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 93 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 84 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 85 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 150)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 145 (|has| |#1| (-174))) (($ $) 143 (|has| |#1| (-562))) (($ (-413 (-570))) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1715 ((|#1| $ (-537 |#2|)) 133) (($ $ |#2| (-777)) 117) (($ $ (-650 |#2|) (-650 (-777))) 116)) (-1918 (((-3 $ "failed") $) 144 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 103 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 91 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) 139 (|has| |#1| (-562)))) (-4108 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 101 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 89 (|has| |#1| (-38 (-413 (-570)))))) (-1509 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 99 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 87 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 86 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ |#2|) 42) (($ $ (-650 |#2|)) 41) (($ $ |#2| (-777)) 40) (($ $ (-650 |#2|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 134 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ $) 106 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 77 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 137 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 136 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 125) (($ $ |#1|) 124)))
+(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-701 |#1|) . T) ((-1107 |#1|) . T) ((-1109) . T) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-3923 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 95)) (-2398 (($ $ $) 99)) (-4425 (((-112) $ $) 107)) (-4095 (((-112) $ (-777)) NIL)) (-4241 (($ (-650 |#1|)) 26) (($) 17)) (-3131 (($ (-1 (-112) |#1|) $) 83 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-3092 (($ $) 85)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) 70 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 77 (|has| $ (-6 -4449))) (($ |#1| $ (-570)) 75) (($ (-1 (-112) |#1|) $ (-570)) 78)) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $ (-570)) 80) (($ (-1 (-112) |#1|) $ (-570)) 81)) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 32 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) 106)) (-4226 (($) 15) (($ |#1|) 28) (($ (-650 |#1|)) 23)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) 38)) (-2218 (((-112) |#1| $) 65 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 88 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 89)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-2885 (($ $ $) 97)) (-2192 ((|#1| $) 62)) (-2599 (($ |#1| $) 63) (($ |#1| $ (-777)) 86)) (-3479 (((-1129) $) NIL)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-4223 ((|#1| $) 61)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 56)) (-3006 (($) 14)) (-3435 (((-650 (-2 (|:| -2224 |#1|) (|:| -3490 (-777)))) $) 55)) (-2449 (($ $ |#1|) NIL) (($ $ $) 98)) (-2535 (($) 16) (($ (-650 |#1|)) 25)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) 68 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 79)) (-1417 (((-542) $) 36 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 22)) (-3735 (((-868) $) 49)) (-3813 (($ (-650 |#1|)) 27) (($) 18)) (-3866 (((-112) $ $) NIL)) (-3594 (($ (-650 |#1|)) 24)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 103)) (-2426 (((-777) $) 67 (|has| $ (-6 -4449)))))
+(((-743 |#1|) (-13 (-742 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -4226 ($)) (-15 -4226 ($ |#1|)) (-15 -4226 ($ (-650 |#1|))) (-15 -3201 ((-650 |#1|) $)) (-15 -1703 ($ |#1| $ (-570))) (-15 -1703 ($ (-1 (-112) |#1|) $ (-570))) (-15 -3076 ($ |#1| $ (-570))) (-15 -3076 ($ (-1 (-112) |#1|) $ (-570))))) (-1109)) (T -743))
+((-4226 (*1 *1) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-4226 (*1 *1 *2) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-4226 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-743 *3)))) (-3201 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-743 *3)) (-4 *3 (-1109)))) (-1703 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-1703 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109)) (-5 *1 (-743 *4)))) (-3076 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-3076 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109)) (-5 *1 (-743 *4)))))
+(-13 (-742 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -4226 ($)) (-15 -4226 ($ |#1|)) (-15 -4226 ($ (-650 |#1|))) (-15 -3201 ((-650 |#1|) $)) (-15 -1703 ($ |#1| $ (-570))) (-15 -1703 ($ (-1 (-112) |#1|) $ (-570))) (-15 -3076 ($ |#1| $ (-570))) (-15 -3076 ($ (-1 (-112) |#1|) $ (-570)))))
+((-3248 (((-1282) (-1168)) 8)))
+(((-744) (-10 -7 (-15 -3248 ((-1282) (-1168))))) (T -744))
+((-3248 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-744)))))
+(-10 -7 (-15 -3248 ((-1282) (-1168))))
+((-1456 (((-650 |#1|) (-650 |#1|) (-650 |#1|)) 15)))
+(((-745 |#1|) (-10 -7 (-15 -1456 ((-650 |#1|) (-650 |#1|) (-650 |#1|)))) (-856)) (T -745))
+((-1456 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
+(-10 -7 (-15 -1456 ((-650 |#1|) (-650 |#1|) (-650 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 |#2|) $) 148)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 141 (|has| |#1| (-562)))) (-1345 (($ $) 140 (|has| |#1| (-562)))) (-1372 (((-112) $) 138 (|has| |#1| (-562)))) (-2735 (($ $) 97 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 80 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) 20)) (-3754 (($ $) 79 (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-4087 (($ $) 95 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) 18 T CONST)) (-1891 (($ $) 132)) (-2937 (((-3 $ "failed") $) 37)) (-3208 (((-959 |#1|) $ (-777)) 110) (((-959 |#1|) $ (-777) (-777)) 109)) (-4217 (((-112) $) 149)) (-1315 (($) 107 (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-777) $ |#2|) 112) (((-777) $ |#2| (-777)) 111)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 78 (|has| |#1| (-38 (-413 (-570)))))) (-4016 (((-112) $) 130)) (-3872 (($ $ (-650 |#2|) (-650 (-537 |#2|))) 147) (($ $ |#2| (-537 |#2|)) 146) (($ |#1| (-537 |#2|)) 131) (($ $ |#2| (-777)) 114) (($ $ (-650 |#2|) (-650 (-777))) 113)) (-1352 (($ (-1 |#1| |#1|) $) 129)) (-2635 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) 127)) (-1865 ((|#1| $) 126)) (-4268 (((-1168) $) 10)) (-3722 (($ $ |#2|) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) 11)) (-4102 (($ $ (-777)) 115)) (-2406 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-4388 (($ $) 105 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (($ $ |#2| $) 123) (($ $ (-650 |#2|) (-650 $)) 122) (($ $ (-650 (-298 $))) 121) (($ $ (-298 $)) 120) (($ $ $ $) 119) (($ $ (-650 $) (-650 $)) 118)) (-3447 (($ $ |#2|) 46) (($ $ (-650 |#2|)) 45) (($ $ |#2| (-777)) 44) (($ $ (-650 |#2|) (-650 (-777))) 43)) (-3221 (((-537 |#2|) $) 128)) (-4098 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 83 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 93 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 84 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 85 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 150)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 145 (|has| |#1| (-174))) (($ $) 143 (|has| |#1| (-562))) (($ (-413 (-570))) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1983 ((|#1| $ (-537 |#2|)) 133) (($ $ |#2| (-777)) 117) (($ $ (-650 |#2|) (-650 (-777))) 116)) (-3127 (((-3 $ "failed") $) 144 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 103 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 91 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) 139 (|has| |#1| (-562)))) (-4112 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 101 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 89 (|has| |#1| (-38 (-413 (-570)))))) (-1510 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 99 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 87 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 86 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ |#2|) 42) (($ $ (-650 |#2|)) 41) (($ $ |#2| (-777)) 40) (($ $ (-650 |#2|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 134 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ $) 106 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 77 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 137 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 136 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 125) (($ $ |#1|) 124)))
(((-746 |#1| |#2|) (-141) (-1058) (-856)) (T -746))
-((-1715 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-1715 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *5)) (-5 *3 (-650 (-777))) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)))) (-1558 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *5)) (-5 *3 (-650 (-777))) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)))) (-3157 (*1 *2 *1 *3) (-12 (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3157 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)))) (-3208 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-3208 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-3555 (*1 *1 *1 *2) (-12 (-4 *1 (-746 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-856)) (-4 *3 (-38 (-413 (-570)))))))
-(-13 (-907 |t#2|) (-982 |t#1| (-537 |t#2|) |t#2|) (-520 |t#2| $) (-313 $) (-10 -8 (-15 -1715 ($ $ |t#2| (-777))) (-15 -1715 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -1558 ($ $ (-777))) (-15 -3872 ($ $ |t#2| (-777))) (-15 -3872 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -3157 ((-777) $ |t#2|)) (-15 -3157 ((-777) $ |t#2| (-777))) (-15 -3208 ((-959 |t#1|) $ (-777))) (-15 -3208 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $ |t#2|)) (-6 (-1011)) (-6 (-1211))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-537 |#2|)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-294) |has| |#1| (-562)) ((-313 $) . T) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-520 |#2| $) . T) ((-520 $ $) . T) ((-562) |has| |#1| (-562)) ((-652 #1#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #1#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-907 |#2|) . T) ((-982 |#1| #0# |#2|) . T) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1211) |has| |#1| (-38 (-413 (-570)))) ((-1214) |has| |#1| (-38 (-413 (-570)))))
-((-3738 (((-424 (-1182 |#4|)) (-1182 |#4|)) 30) (((-424 |#4|) |#4|) 26)))
-(((-747 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 |#4|) |#4|)) (-15 -3738 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -747))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-956 *6 *5 *4)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-747 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-13 (-311) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-747 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
-(-10 -7 (-15 -3738 ((-424 |#4|) |#4|)) (-15 -3738 ((-424 (-1182 |#4|)) (-1182 |#4|))))
-((-3356 (((-424 |#4|) |#4| |#2|) 142)) (-3527 (((-424 |#4|) |#4|) NIL)) (-1790 (((-424 (-1182 |#4|)) (-1182 |#4|)) 127) (((-424 |#4|) |#4|) 52)) (-4340 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3738 (-1182 |#4|)) (|:| -1907 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 81)) (-4351 (((-1182 |#3|) (-1182 |#3|) (-570)) 168)) (-3448 (((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777)) 75)) (-3516 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|)) 79)) (-2793 (((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 27)) (-3058 (((-2 (|:| -3282 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570)) 72)) (-3565 (((-570) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570))))) 164)) (-4364 ((|#4| (-570) (-424 |#4|)) 73)) (-2275 (((-112) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570))))) NIL)))
-(((-748 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1790 ((-424 |#4|) |#4|)) (-15 -1790 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3527 ((-424 |#4|) |#4|)) (-15 -3565 ((-570) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))))) (-15 -3356 ((-424 |#4|) |#4| |#2|)) (-15 -3058 ((-2 (|:| -3282 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -4340 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3738 (-1182 |#4|)) (|:| -1907 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -2793 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -4364 (|#4| (-570) (-424 |#4|))) (-15 -2275 ((-112) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))))) (-15 -3516 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -3448 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -4351 ((-1182 |#3|) (-1182 |#3|) (-570)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -748))
-((-4351 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 *6)) (-5 *3 (-570)) (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-3448 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-4 *7 (-856)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-4 *8 (-311)) (-5 *2 (-650 (-777))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *5 (-777)))) (-3516 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1182 *11)) (-5 *6 (-650 *10)) (-5 *7 (-650 (-777))) (-5 *8 (-650 *11)) (-4 *10 (-856)) (-4 *11 (-311)) (-4 *9 (-799)) (-4 *5 (-956 *11 *9 *10)) (-5 *2 (-650 (-1182 *5))) (-5 *1 (-748 *9 *10 *11 *5)) (-5 *3 (-1182 *5)))) (-2275 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-2 (|:| -3738 (-1182 *6)) (|:| -1907 (-570))))) (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-4364 (*1 *2 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-424 *2)) (-4 *2 (-956 *7 *5 *6)) (-5 *1 (-748 *5 *6 *7 *2)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-311)))) (-2793 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8))) (-4 *7 (-856)) (-4 *8 (-311)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-5 *2 (-2 (|:| |upol| (-1182 *8)) (|:| |Lval| (-650 *8)) (|:| |Lfact| (-650 (-2 (|:| -3738 (-1182 *8)) (|:| -1907 (-570))))) (|:| |ctpol| *8))) (-5 *1 (-748 *6 *7 *8 *9)))) (-4340 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8))) (-4 *7 (-856)) (-4 *8 (-311)) (-4 *6 (-799)) (-4 *9 (-956 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-650 (-2 (|:| -3738 (-1182 *9)) (|:| -1907 (-570))))))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))) (-3058 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-570)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-311)) (-4 *9 (-956 *8 *6 *7)) (-5 *2 (-2 (|:| -3282 (-1182 *9)) (|:| |polval| (-1182 *8)))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))) (-3356 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-748 *5 *4 *6 *3)) (-4 *3 (-956 *6 *5 *4)))) (-3565 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3738 (-1182 *6)) (|:| -1907 (-570))))) (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-3527 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5)))) (-1790 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-748 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-1790 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5)))))
-(-10 -7 (-15 -1790 ((-424 |#4|) |#4|)) (-15 -1790 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3527 ((-424 |#4|) |#4|)) (-15 -3565 ((-570) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))))) (-15 -3356 ((-424 |#4|) |#4| |#2|)) (-15 -3058 ((-2 (|:| -3282 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -4340 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3738 (-1182 |#4|)) (|:| -1907 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -2793 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -4364 (|#4| (-570) (-424 |#4|))) (-15 -2275 ((-112) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))) (-650 (-2 (|:| -3738 (-1182 |#3|)) (|:| -1907 (-570)))))) (-15 -3516 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -3448 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -4351 ((-1182 |#3|) (-1182 |#3|) (-570))))
-((-3388 (($ $ (-928)) 17)))
-(((-749 |#1| |#2|) (-10 -8 (-15 -3388 (|#1| |#1| (-928)))) (-750 |#2|) (-174)) (T -749))
-NIL
-(-10 -8 (-15 -3388 (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3937 (($ $ (-928)) 31)) (-3388 (($ $ (-928)) 38)) (-2247 (($ $ (-928)) 32)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3688 (($ $ $) 28)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-3183 (($ $ $ $) 29)) (-1960 (($ $ $) 27)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-1983 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-1983 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *5)) (-5 *3 (-650 (-777))) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)))) (-4102 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *5)) (-5 *3 (-650 (-777))) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)))) (-4331 (*1 *2 *1 *3) (-12 (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *2 (-777)))) (-4331 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)))) (-3208 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-3208 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-3722 (*1 *1 *1 *2) (-12 (-4 *1 (-746 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-856)) (-4 *3 (-38 (-413 (-570)))))))
+(-13 (-907 |t#2|) (-982 |t#1| (-537 |t#2|) |t#2|) (-520 |t#2| $) (-313 $) (-10 -8 (-15 -1983 ($ $ |t#2| (-777))) (-15 -1983 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -4102 ($ $ (-777))) (-15 -3872 ($ $ |t#2| (-777))) (-15 -3872 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -4331 ((-777) $ |t#2|)) (-15 -4331 ((-777) $ |t#2| (-777))) (-15 -3208 ((-959 |t#1|) $ (-777))) (-15 -3208 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $ |t#2|)) (-6 (-1011)) (-6 (-1212))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-537 |#2|)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-294) |has| |#1| (-562)) ((-313 $) . T) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-520 |#2| $) . T) ((-520 $ $) . T) ((-562) |has| |#1| (-562)) ((-652 #1#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #1#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-907 |#2|) . T) ((-982 |#1| #0# |#2|) . T) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1212) |has| |#1| (-38 (-413 (-570)))) ((-1215) |has| |#1| (-38 (-413 (-570)))))
+((-3739 (((-424 (-1182 |#4|)) (-1182 |#4|)) 30) (((-424 |#4|) |#4|) 26)))
+(((-747 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 |#4|) |#4|)) (-15 -3739 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -747))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-956 *6 *5 *4)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-747 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-13 (-311) (-148))) (-5 *2 (-424 *3)) (-5 *1 (-747 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
+(-10 -7 (-15 -3739 ((-424 |#4|) |#4|)) (-15 -3739 ((-424 (-1182 |#4|)) (-1182 |#4|))))
+((-3648 (((-424 |#4|) |#4| |#2|) 142)) (-1588 (((-424 |#4|) |#4|) NIL)) (-1378 (((-424 (-1182 |#4|)) (-1182 |#4|)) 127) (((-424 |#4|) |#4|) 52)) (-2718 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3739 (-1182 |#4|)) (|:| -3011 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 81)) (-2821 (((-1182 |#3|) (-1182 |#3|) (-570)) 168)) (-2080 (((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777)) 75)) (-3514 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|)) 79)) (-3910 (((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 27)) (-2614 (((-2 (|:| -4239 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570)) 72)) (-3847 (((-570) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570))))) 164)) (-2923 ((|#4| (-570) (-424 |#4|)) 73)) (-2567 (((-112) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570))))) NIL)))
+(((-748 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1378 ((-424 |#4|) |#4|)) (-15 -1378 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -1588 ((-424 |#4|) |#4|)) (-15 -3847 ((-570) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))))) (-15 -3648 ((-424 |#4|) |#4| |#2|)) (-15 -2614 ((-2 (|:| -4239 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -2718 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3739 (-1182 |#4|)) (|:| -3011 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -3910 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -2923 (|#4| (-570) (-424 |#4|))) (-15 -2567 ((-112) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))))) (-15 -3514 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -2080 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -2821 ((-1182 |#3|) (-1182 |#3|) (-570)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -748))
+((-2821 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 *6)) (-5 *3 (-570)) (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-2080 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-4 *7 (-856)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-4 *8 (-311)) (-5 *2 (-650 (-777))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *5 (-777)))) (-3514 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1182 *11)) (-5 *6 (-650 *10)) (-5 *7 (-650 (-777))) (-5 *8 (-650 *11)) (-4 *10 (-856)) (-4 *11 (-311)) (-4 *9 (-799)) (-4 *5 (-956 *11 *9 *10)) (-5 *2 (-650 (-1182 *5))) (-5 *1 (-748 *9 *10 *11 *5)) (-5 *3 (-1182 *5)))) (-2567 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-2 (|:| -3739 (-1182 *6)) (|:| -3011 (-570))))) (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-2923 (*1 *2 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-424 *2)) (-4 *2 (-956 *7 *5 *6)) (-5 *1 (-748 *5 *6 *7 *2)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-311)))) (-3910 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8))) (-4 *7 (-856)) (-4 *8 (-311)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-5 *2 (-2 (|:| |upol| (-1182 *8)) (|:| |Lval| (-650 *8)) (|:| |Lfact| (-650 (-2 (|:| -3739 (-1182 *8)) (|:| -3011 (-570))))) (|:| |ctpol| *8))) (-5 *1 (-748 *6 *7 *8 *9)))) (-2718 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8))) (-4 *7 (-856)) (-4 *8 (-311)) (-4 *6 (-799)) (-4 *9 (-956 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-650 (-2 (|:| -3739 (-1182 *9)) (|:| -3011 (-570))))))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))) (-2614 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-570)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-311)) (-4 *9 (-956 *8 *6 *7)) (-5 *2 (-2 (|:| -4239 (-1182 *9)) (|:| |polval| (-1182 *8)))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))) (-3648 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-748 *5 *4 *6 *3)) (-4 *3 (-956 *6 *5 *4)))) (-3847 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3739 (-1182 *6)) (|:| -3011 (-570))))) (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-1588 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5)))) (-1378 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-748 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-1378 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5)))))
+(-10 -7 (-15 -1378 ((-424 |#4|) |#4|)) (-15 -1378 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -1588 ((-424 |#4|) |#4|)) (-15 -3847 ((-570) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))))) (-15 -3648 ((-424 |#4|) |#4| |#2|)) (-15 -2614 ((-2 (|:| -4239 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -2718 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3739 (-1182 |#4|)) (|:| -3011 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -3910 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -2923 (|#4| (-570) (-424 |#4|))) (-15 -2567 ((-112) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))) (-650 (-2 (|:| -3739 (-1182 |#3|)) (|:| -3011 (-570)))))) (-15 -3514 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -2080 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -2821 ((-1182 |#3|) (-1182 |#3|) (-570))))
+((-2710 (($ $ (-928)) 17)))
+(((-749 |#1| |#2|) (-10 -8 (-15 -2710 (|#1| |#1| (-928)))) (-750 |#2|) (-174)) (T -749))
+NIL
+(-10 -8 (-15 -2710 (|#1| |#1| (-928))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4333 (($ $ (-928)) 31)) (-2710 (($ $ (-928)) 38)) (-3548 (($ $ (-928)) 32)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2522 (($ $ $) 28)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1483 (($ $ $ $) 29)) (-3619 (($ $ $) 27)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-750 |#1|) (-141) (-174)) (T -750))
-((-3388 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
-(-13 (-767) (-723 |t#1|) (-10 -8 (-15 -3388 ($ $ (-928)))))
+((-2710 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
+(-13 (-767) (-723 |t#1|) (-10 -8 (-15 -2710 ($ $ (-928)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-726) . T) ((-767) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-2597 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 25)) (-2883 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 24)))
-(((-751) (-10 -7 (-15 -2883 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -2597 ((-1044) (-695 (-227)) (-570) (-112) (-570))))) (T -751))
-((-2597 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-751)))) (-2883 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-751)))))
-(-10 -7 (-15 -2883 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -2597 ((-1044) (-695 (-227)) (-570) (-112) (-570))))
-((-2532 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) 43)) (-2014 (((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) 39)) (-1586 (((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 32)))
-(((-752) (-10 -7 (-15 -1586 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -2014 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -2532 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))) (T -752))
-((-2532 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1044)) (-5 *1 (-752)))) (-2014 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1044)) (-5 *1 (-752)))) (-1586 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-752)))))
-(-10 -7 (-15 -1586 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -2014 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -2532 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))
-((-1962 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 34)) (-3918 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 33)) (-3627 (((-1044) (-570) (-695 (-227)) (-570)) 32)) (-1611 (((-1044) (-570) (-695 (-227)) (-570)) 31)) (-2856 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 30)) (-2679 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-1980 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-2154 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-1543 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-3777 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-3253 (((-1044) (-570) (-695 (-227)) (-570)) 22)) (-4107 (((-1044) (-570) (-695 (-227)) (-570)) 21)))
-(((-753) (-10 -7 (-15 -4107 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3253 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3777 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1543 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2154 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1980 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2679 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2856 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1611 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3627 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3918 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -1962 ((-1044) (-570) (-570) (-695 (-227)) (-570))))) (T -753))
-((-1962 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3918 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3627 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-1611 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2856 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2679 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-1980 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2154 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-1543 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3777 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3253 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-4107 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))))
-(-10 -7 (-15 -4107 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3253 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3777 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1543 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2154 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1980 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2679 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2856 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1611 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3627 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3918 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -1962 ((-1044) (-570) (-570) (-695 (-227)) (-570))))
-((-4020 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 52)) (-2419 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570)) 51)) (-3315 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 50)) (-1787 (((-1044) (-227) (-227) (-570) (-570) (-570) (-570)) 46)) (-4130 (((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 45)) (-2759 (((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 44)) (-4325 (((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 43)) (-1310 (((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 42)) (-3206 (((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 38)) (-3102 (((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 37)) (-1520 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 33)) (-1370 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 32)))
-(((-754) (-10 -7 (-15 -1370 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1520 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -3102 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -3206 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1310 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -4325 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2759 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -4130 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1787 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -3315 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -2419 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -4020 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))) (T -754))
-((-4020 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2419 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3315 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1787 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-4130 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2759 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-4325 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1310 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3206 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3102 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1520 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1370 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-754)))))
-(-10 -7 (-15 -1370 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1520 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -3102 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -3206 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1310 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -4325 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2759 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -4130 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1787 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -3315 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -2419 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -4020 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))
-((-2040 (((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-4171 (((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))) (-394) (-394)) 69) (((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL)))) 68)) (-1358 (((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG)))) 57)) (-2762 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 50)) (-1996 (((-1044) (-227) (-570) (-570) (-1168) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) 49)) (-3707 (((-1044) (-227) (-570) (-570) (-227) (-1168) (-227) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) 45)) (-1629 (((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 42)) (-1809 (((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) 38)))
-(((-755) (-10 -7 (-15 -1809 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -1629 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -3707 ((-1044) (-227) (-570) (-570) (-227) (-1168) (-227) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -1996 ((-1044) (-227) (-570) (-570) (-1168) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -2762 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -1358 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG))))) (-15 -4171 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))) (-15 -4171 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))) (-394) (-394))) (-15 -2040 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -755))
-((-2040 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-4171 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-394)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-4171 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1358 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-2762 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1996 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-3707 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1629 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1809 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
-(-10 -7 (-15 -1809 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -1629 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -3707 ((-1044) (-227) (-570) (-570) (-227) (-1168) (-227) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -1996 ((-1044) (-227) (-570) (-570) (-1168) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -2762 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -1358 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG))))) (-15 -4171 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))) (-15 -4171 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))) (-394) (-394))) (-15 -2040 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP))))))
-((-2506 (((-1044) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-681 (-227)) (-570)) 45)) (-3968 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) 41)) (-3001 (((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 23)))
-(((-756) (-10 -7 (-15 -3001 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3968 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -2506 ((-1044) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-681 (-227)) (-570))))) (T -756))
-((-2506 (*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4 *4 *6 *4) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-681 (-227))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-756)))) (-3968 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1044)) (-5 *1 (-756)))) (-3001 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-756)))))
-(-10 -7 (-15 -3001 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3968 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -2506 ((-1044) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-681 (-227)) (-570))))
-((-2676 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570)) 35)) (-2089 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570)) 34)) (-2940 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570)) 33)) (-2097 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-3965 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-4149 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570)) 27)) (-2391 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 24)) (-2672 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 23)) (-3086 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 22)) (-3894 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 21)))
-(((-757) (-10 -7 (-15 -3894 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -3086 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2672 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2391 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -4149 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3965 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2097 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2940 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -2089 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2676 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))) (T -757))
-((-2676 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2089 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2940 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227)) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2097 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3965 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-4149 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2391 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2672 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3086 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3894 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))))
-(-10 -7 (-15 -3894 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -3086 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2672 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2391 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -4149 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3965 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2097 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2940 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -2089 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2676 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))
-((-1997 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 45)) (-2608 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570)) 44)) (-4229 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 43)) (-2078 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 42)) (-1486 (((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570)) 41)) (-2931 (((-1044) (-1168) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570)) 40)) (-3546 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570)) 39)) (-2521 (((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570))) 38)) (-1471 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 35)) (-4168 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570)) 34)) (-2255 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570)) 33)) (-3628 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 32)) (-1465 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570)) 31)) (-3990 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570)) 30)) (-4139 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 29)) (-3499 (((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570)) 28)) (-1429 (((-1044) (-570) (-695 (-227)) (-227) (-570)) 24)) (-3673 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 21)))
-(((-758) (-10 -7 (-15 -3673 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1429 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -3499 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -4139 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -3990 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -1465 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -3628 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2255 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -4168 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -1471 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2521 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -3546 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -2931 ((-1044) (-1168) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -1486 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2078 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4229 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2608 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1997 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))) (T -758))
-((-1997 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2608 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4229 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2078 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1486 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2931 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227)) (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3546 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227)) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2521 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227)) (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1471 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4168 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2255 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3628 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1465 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3990 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4139 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3499 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1429 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3673 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))))
-(-10 -7 (-15 -3673 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1429 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -3499 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -4139 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -3990 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -1465 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -3628 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2255 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -4168 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -1471 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2521 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -3546 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -2931 ((-1044) (-1168) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -1486 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2078 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4229 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2608 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1997 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))
-((-1729 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570)) 63)) (-4096 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-112) (-227) (-570) (-227) (-227) (-112) (-227) (-227) (-227) (-227) (-112) (-570) (-570) (-570) (-570) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) 62)) (-2354 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-112) (-112) (-570) (-570) (-695 (-227)) (-695 (-570)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS)))) 58)) (-4140 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570)) 51)) (-2075 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1)))) 50)) (-2187 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2)))) 46)) (-3935 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1)))) 42)) (-1571 (((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) 38)))
-(((-759) (-10 -7 (-15 -1571 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -3935 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -2187 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -2075 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -4140 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -2354 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-112) (-112) (-570) (-570) (-695 (-227)) (-695 (-570)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS))))) (-15 -4096 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-112) (-227) (-570) (-227) (-227) (-112) (-227) (-227) (-227) (-227) (-112) (-570) (-570) (-570) (-570) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -1729 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))) (T -759))
-((-1729 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-4096 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6 *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8 *9) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *6 (-227)) (-5 *7 (-695 (-570))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2354 (*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5 *7 *3 *8) (-12 (-5 *5 (-695 (-227))) (-5 *6 (-112)) (-5 *7 (-695 (-570))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-4140 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2075 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2187 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1044)) (-5 *1 (-759)))) (-3935 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1044)) (-5 *1 (-759)))) (-1571 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))))
-(-10 -7 (-15 -1571 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -3935 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -2187 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -2075 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -4140 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -2354 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-112) (-112) (-570) (-570) (-695 (-227)) (-695 (-570)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS))))) (-15 -4096 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-112) (-227) (-570) (-227) (-227) (-112) (-227) (-227) (-227) (-227) (-112) (-570) (-570) (-570) (-570) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -1729 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))
-((-3589 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 47)) (-3675 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570)) 46)) (-1673 (((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 45)) (-2808 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 40)) (-1327 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570)) 39)) (-3424 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-570)) 36)) (-1798 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570)) 35)) (-3391 (((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570)) 34)) (-2451 (((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570)) 33)) (-3851 (((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570)) 32)))
-(((-760) (-10 -7 (-15 -3851 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -2451 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -3391 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -1798 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -3424 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1327 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -2808 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1673 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3675 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3589 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -760))
-((-3589 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-3675 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1673 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2808 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1327 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-3424 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1798 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-760)))) (-3391 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-650 (-112))) (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *7 (-227)) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2451 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-695 (-570))) (-5 *5 (-112)) (-5 *7 (-695 (-227))) (-5 *3 (-570)) (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-760)))) (-3851 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-650 (-112))) (-5 *7 (-695 (-227))) (-5 *8 (-695 (-570))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-760)))))
-(-10 -7 (-15 -3851 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -2451 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -3391 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -1798 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -3424 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1327 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -2808 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1673 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3675 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3589 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
-((-4040 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 79)) (-3231 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 68)) (-2558 (((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))) (-394)) 56) (((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) 55)) (-3798 (((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 37)) (-1713 (((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570)) 33)) (-2823 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 30)) (-2077 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-2578 (((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-1311 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-3025 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570)) 26)) (-2889 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 25)) (-4234 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-4262 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-2752 (((-1044) (-695 (-227)) (-570) (-570) (-570) (-570)) 22)) (-3962 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 21)))
-(((-761) (-10 -7 (-15 -3962 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2752 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -4262 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4234 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2889 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3025 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1311 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2578 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2077 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2823 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -1713 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -3798 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2558 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))))) (-15 -2558 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))) (-394))) (-15 -3231 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4040 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -761))
-((-4040 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3231 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2558 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-394)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2558 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3798 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1713 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2823 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2077 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2578 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1311 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3025 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2889 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-4234 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-4262 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2752 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3962 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))))
-(-10 -7 (-15 -3962 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2752 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -4262 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4234 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2889 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3025 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1311 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2578 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2077 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2823 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -1713 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -3798 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2558 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))))) (-15 -2558 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))) (-394))) (-15 -3231 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4040 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
-((-1309 (((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) 64)) (-2294 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570)) 60)) (-2135 (((-1044) (-570) (-695 (-227)) (-112) (-227) (-570) (-570) (-570) (-570) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE)))) 59)) (-2652 (((-1044) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570)) 37)) (-4244 (((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570)) 36)) (-2903 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 33)) (-2180 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227))) 32)) (-3657 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570)) 28)) (-2479 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 27)) (-3508 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 26)) (-3699 (((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 22)))
-(((-762) (-10 -7 (-15 -3699 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3508 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2479 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -3657 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -2180 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -2903 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4244 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2652 ((-1044) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -2135 ((-1044) (-570) (-695 (-227)) (-112) (-227) (-570) (-570) (-570) (-570) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE))))) (-15 -2294 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -1309 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))) (T -762))
-((-1309 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2294 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2135 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *6 (-227)) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2652 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-4244 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2903 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2180 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3657 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2479 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3508 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3699 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-762)))))
-(-10 -7 (-15 -3699 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3508 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2479 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -3657 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -2180 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -2903 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4244 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2652 ((-1044) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -2135 ((-1044) (-570) (-695 (-227)) (-112) (-227) (-570) (-570) (-570) (-570) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE))))) (-15 -2294 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -1309 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))
-((-3717 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227))) 29)) (-2074 (((-1044) (-1168) (-570) (-570) (-695 (-227))) 28)) (-2535 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227))) 27)) (-1421 (((-1044) (-570) (-570) (-570) (-695 (-227))) 21)))
-(((-763) (-10 -7 (-15 -1421 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -2535 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -2074 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -3717 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))) (T -763))
-((-3717 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))) (-2074 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))) (-2535 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-763)))) (-1421 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))))
-(-10 -7 (-15 -1421 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -2535 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -2074 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -3717 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))
-((-1504 (((-1044) (-227) (-227) (-227) (-227) (-570)) 62)) (-2420 (((-1044) (-227) (-227) (-227) (-570)) 61)) (-2088 (((-1044) (-227) (-227) (-227) (-570)) 60)) (-3728 (((-1044) (-227) (-227) (-570)) 59)) (-2750 (((-1044) (-227) (-570)) 58)) (-1846 (((-1044) (-227) (-570)) 57)) (-3629 (((-1044) (-227) (-570)) 56)) (-4016 (((-1044) (-227) (-570)) 55)) (-2673 (((-1044) (-227) (-570)) 54)) (-3425 (((-1044) (-227) (-570)) 53)) (-3234 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 52)) (-2340 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 51)) (-3866 (((-1044) (-227) (-570)) 50)) (-2692 (((-1044) (-227) (-570)) 49)) (-3162 (((-1044) (-227) (-570)) 48)) (-3900 (((-1044) (-227) (-570)) 47)) (-3896 (((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570)) 46)) (-1967 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 45)) (-3319 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 44)) (-4225 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 43)) (-2542 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 42)) (-2143 (((-1044) (-227) (-570)) 39)) (-3897 (((-1044) (-227) (-570)) 38)) (-4332 (((-1044) (-227) (-570)) 37)) (-2353 (((-1044) (-227) (-570)) 36)) (-1949 (((-1044) (-227) (-570)) 35)) (-4064 (((-1044) (-227) (-570)) 34)) (-2499 (((-1044) (-227) (-570)) 33)) (-1580 (((-1044) (-227) (-570)) 32)) (-3349 (((-1044) (-227) (-570)) 31)) (-2318 (((-1044) (-227) (-570)) 30)) (-2125 (((-1044) (-227) (-227) (-227) (-570)) 29)) (-4001 (((-1044) (-227) (-570)) 28)) (-2686 (((-1044) (-227) (-570)) 27)) (-3650 (((-1044) (-227) (-570)) 26)) (-1926 (((-1044) (-227) (-570)) 25)) (-1602 (((-1044) (-227) (-570)) 24)) (-3702 (((-1044) (-171 (-227)) (-570)) 21)))
-(((-764) (-10 -7 (-15 -3702 ((-1044) (-171 (-227)) (-570))) (-15 -1602 ((-1044) (-227) (-570))) (-15 -1926 ((-1044) (-227) (-570))) (-15 -3650 ((-1044) (-227) (-570))) (-15 -2686 ((-1044) (-227) (-570))) (-15 -4001 ((-1044) (-227) (-570))) (-15 -2125 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2318 ((-1044) (-227) (-570))) (-15 -3349 ((-1044) (-227) (-570))) (-15 -1580 ((-1044) (-227) (-570))) (-15 -2499 ((-1044) (-227) (-570))) (-15 -4064 ((-1044) (-227) (-570))) (-15 -1949 ((-1044) (-227) (-570))) (-15 -2353 ((-1044) (-227) (-570))) (-15 -4332 ((-1044) (-227) (-570))) (-15 -3897 ((-1044) (-227) (-570))) (-15 -2143 ((-1044) (-227) (-570))) (-15 -2542 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4225 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3319 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -1967 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -3896 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3900 ((-1044) (-227) (-570))) (-15 -3162 ((-1044) (-227) (-570))) (-15 -2692 ((-1044) (-227) (-570))) (-15 -3866 ((-1044) (-227) (-570))) (-15 -2340 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3234 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3425 ((-1044) (-227) (-570))) (-15 -2673 ((-1044) (-227) (-570))) (-15 -4016 ((-1044) (-227) (-570))) (-15 -3629 ((-1044) (-227) (-570))) (-15 -1846 ((-1044) (-227) (-570))) (-15 -2750 ((-1044) (-227) (-570))) (-15 -3728 ((-1044) (-227) (-227) (-570))) (-15 -2088 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2420 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1504 ((-1044) (-227) (-227) (-227) (-227) (-570))))) (T -764))
-((-1504 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2420 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2088 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3728 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2750 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1846 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3629 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4016 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2673 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3425 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3234 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2340 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3866 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2692 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3162 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3900 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3896 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-570)) (-5 *5 (-171 (-227))) (-5 *6 (-1168)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1967 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3319 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4225 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2542 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2143 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3897 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4332 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2353 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1949 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4064 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2499 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1580 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3349 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2318 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2125 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4001 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2686 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3650 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1926 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1602 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3702 (*1 *2 *3 *4) (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(-10 -7 (-15 -3702 ((-1044) (-171 (-227)) (-570))) (-15 -1602 ((-1044) (-227) (-570))) (-15 -1926 ((-1044) (-227) (-570))) (-15 -3650 ((-1044) (-227) (-570))) (-15 -2686 ((-1044) (-227) (-570))) (-15 -4001 ((-1044) (-227) (-570))) (-15 -2125 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2318 ((-1044) (-227) (-570))) (-15 -3349 ((-1044) (-227) (-570))) (-15 -1580 ((-1044) (-227) (-570))) (-15 -2499 ((-1044) (-227) (-570))) (-15 -4064 ((-1044) (-227) (-570))) (-15 -1949 ((-1044) (-227) (-570))) (-15 -2353 ((-1044) (-227) (-570))) (-15 -4332 ((-1044) (-227) (-570))) (-15 -3897 ((-1044) (-227) (-570))) (-15 -2143 ((-1044) (-227) (-570))) (-15 -2542 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4225 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3319 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -1967 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -3896 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3900 ((-1044) (-227) (-570))) (-15 -3162 ((-1044) (-227) (-570))) (-15 -2692 ((-1044) (-227) (-570))) (-15 -3866 ((-1044) (-227) (-570))) (-15 -2340 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3234 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3425 ((-1044) (-227) (-570))) (-15 -2673 ((-1044) (-227) (-570))) (-15 -4016 ((-1044) (-227) (-570))) (-15 -3629 ((-1044) (-227) (-570))) (-15 -1846 ((-1044) (-227) (-570))) (-15 -2750 ((-1044) (-227) (-570))) (-15 -3728 ((-1044) (-227) (-227) (-570))) (-15 -2088 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2420 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1504 ((-1044) (-227) (-227) (-227) (-227) (-570))))
-((-1624 (((-1281)) 20)) (-3718 (((-1168)) 31)) (-1937 (((-1168)) 30)) (-3774 (((-1113) (-1186) (-695 (-570))) 45) (((-1113) (-1186) (-695 (-227))) 41)) (-2084 (((-112)) 19)) (-2188 (((-1168) (-1168)) 34)))
-(((-765) (-10 -7 (-15 -1937 ((-1168))) (-15 -3718 ((-1168))) (-15 -2188 ((-1168) (-1168))) (-15 -3774 ((-1113) (-1186) (-695 (-227)))) (-15 -3774 ((-1113) (-1186) (-695 (-570)))) (-15 -2084 ((-112))) (-15 -1624 ((-1281))))) (T -765))
-((-1624 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-765)))) (-2084 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))) (-3774 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-570))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-3774 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-227))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-2188 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-3718 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-1937 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
-(-10 -7 (-15 -1937 ((-1168))) (-15 -3718 ((-1168))) (-15 -2188 ((-1168) (-1168))) (-15 -3774 ((-1113) (-1186) (-695 (-227)))) (-15 -3774 ((-1113) (-1186) (-695 (-570)))) (-15 -2084 ((-112))) (-15 -1624 ((-1281))))
-((-3688 (($ $ $) 10)) (-3183 (($ $ $ $) 9)) (-1960 (($ $ $) 12)))
-(((-766 |#1|) (-10 -8 (-15 -1960 (|#1| |#1| |#1|)) (-15 -3688 (|#1| |#1| |#1|)) (-15 -3183 (|#1| |#1| |#1| |#1|))) (-767)) (T -766))
-NIL
-(-10 -8 (-15 -1960 (|#1| |#1| |#1|)) (-15 -3688 (|#1| |#1| |#1|)) (-15 -3183 (|#1| |#1| |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3937 (($ $ (-928)) 31)) (-2247 (($ $ (-928)) 32)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3688 (($ $ $) 28)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-3183 (($ $ $ $) 29)) (-1960 (($ $ $) 27)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
+((-2651 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 25)) (-3560 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 24)))
+(((-751) (-10 -7 (-15 -3560 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -2651 ((-1044) (-695 (-227)) (-570) (-112) (-570))))) (T -751))
+((-2651 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-751)))) (-3560 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-751)))))
+(-10 -7 (-15 -3560 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -2651 ((-1044) (-695 (-227)) (-570) (-112) (-570))))
+((-3275 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) 43)) (-2910 (((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) 39)) (-3079 (((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 32)))
+(((-752) (-10 -7 (-15 -3079 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -2910 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -3275 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))) (T -752))
+((-3275 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1044)) (-5 *1 (-752)))) (-2910 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1044)) (-5 *1 (-752)))) (-3079 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-752)))))
+(-10 -7 (-15 -3079 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -2910 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -3275 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))
+((-2413 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 34)) (-4144 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 33)) (-3139 (((-1044) (-570) (-695 (-227)) (-570)) 32)) (-3343 (((-1044) (-570) (-695 (-227)) (-570)) 31)) (-3284 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 30)) (-2195 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-2582 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-3839 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-3952 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-2136 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-4007 (((-1044) (-570) (-695 (-227)) (-570)) 22)) (-2351 (((-1044) (-570) (-695 (-227)) (-570)) 21)))
+(((-753) (-10 -7 (-15 -2351 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -4007 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2136 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3952 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3839 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2582 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2195 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3284 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3343 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3139 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -4144 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2413 ((-1044) (-570) (-570) (-695 (-227)) (-570))))) (T -753))
+((-2413 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-4144 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3139 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3343 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3284 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2195 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2582 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3839 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3952 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2136 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-4007 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2351 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))))
+(-10 -7 (-15 -2351 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -4007 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2136 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3952 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3839 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2582 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2195 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3284 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3343 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3139 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -4144 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2413 ((-1044) (-570) (-570) (-695 (-227)) (-570))))
+((-2659 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 52)) (-1635 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570)) 51)) (-3222 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 50)) (-1349 (((-1044) (-227) (-227) (-570) (-570) (-570) (-570)) 46)) (-1353 (((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 45)) (-1762 (((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 44)) (-2554 (((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 43)) (-1611 (((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 42)) (-1721 (((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 38)) (-1917 (((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 37)) (-3679 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 33)) (-2925 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) 32)))
+(((-754) (-10 -7 (-15 -2925 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -3679 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1917 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1721 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1611 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2554 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1762 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1353 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1349 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -3222 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -1635 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -2659 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))) (T -754))
+((-2659 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1635 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3222 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1349 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1353 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1762 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2554 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1611 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1721 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-1917 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3679 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2925 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *2 (-1044)) (-5 *1 (-754)))))
+(-10 -7 (-15 -2925 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -3679 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1917 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1721 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))) (-15 -1611 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2554 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1762 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1353 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1349 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -3222 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -1635 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -2659 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))
+((-2036 (((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-1768 (((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))) (-394) (-394)) 69) (((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL)))) 68)) (-2980 (((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG)))) 57)) (-1786 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 50)) (-2736 (((-1044) (-227) (-570) (-570) (-1168) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) 49)) (-2703 (((-1044) (-227) (-570) (-570) (-227) (-1168) (-227) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) 45)) (-3547 (((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 42)) (-1554 (((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) 38)))
+(((-755) (-10 -7 (-15 -1554 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -3547 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -2703 ((-1044) (-227) (-570) (-570) (-227) (-1168) (-227) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -2736 ((-1044) (-227) (-570) (-570) (-1168) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -1786 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -2980 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG))))) (-15 -1768 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))) (-15 -1768 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))) (-394) (-394))) (-15 -2036 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -755))
+((-2036 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1768 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-394)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1768 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1044)) (-5 *1 (-755)))) (-2980 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1786 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1044)) (-5 *1 (-755)))) (-2736 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-2703 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-3547 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))) (-1554 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
+(-10 -7 (-15 -1554 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -3547 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -2703 ((-1044) (-227) (-570) (-570) (-227) (-1168) (-227) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -2736 ((-1044) (-227) (-570) (-570) (-1168) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -1786 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -2980 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG))))) (-15 -1768 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))) (-15 -1768 ((-1044) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))) (-394) (-394))) (-15 -2036 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP))))))
+((-4316 (((-1044) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-681 (-227)) (-570)) 45)) (-3368 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) 41)) (-3327 (((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 23)))
+(((-756) (-10 -7 (-15 -3327 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3368 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -4316 ((-1044) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-681 (-227)) (-570))))) (T -756))
+((-4316 (*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4 *4 *6 *4) (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-681 (-227))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-756)))) (-3368 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1044)) (-5 *1 (-756)))) (-3327 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-756)))))
+(-10 -7 (-15 -3327 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3368 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -4316 ((-1044) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-681 (-227)) (-570))))
+((-2165 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570)) 35)) (-4421 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570)) 34)) (-4031 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570)) 33)) (-1397 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-3334 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-1536 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570)) 27)) (-1350 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 24)) (-2127 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 23)) (-2878 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 22)) (-3901 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 21)))
+(((-757) (-10 -7 (-15 -3901 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2878 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2127 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1350 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1536 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3334 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1397 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4031 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -4421 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2165 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))) (T -757))
+((-2165 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-4421 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-4031 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227)) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-1397 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3334 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-1536 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-757)))) (-1350 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2127 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2878 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3901 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))))
+(-10 -7 (-15 -3901 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2878 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2127 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1350 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1536 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3334 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1397 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4031 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -4421 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2165 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))
+((-2748 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 45)) (-2747 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570)) 44)) (-4183 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 43)) (-2379 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 42)) (-1538 (((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570)) 41)) (-3935 (((-1044) (-1168) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570)) 40)) (-1799 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570)) 39)) (-3140 (((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570))) 38)) (-1355 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 35)) (-1730 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570)) 34)) (-3635 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570)) 33)) (-3150 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 32)) (-4420 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570)) 31)) (-3629 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570)) 30)) (-1433 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 29)) (-1328 (((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570)) 28)) (-1404 (((-1044) (-570) (-695 (-227)) (-227) (-570)) 24)) (-3630 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 21)))
+(((-758) (-10 -7 (-15 -3630 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1404 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -1328 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -1433 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -3629 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -4420 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -3150 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3635 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -1730 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -1355 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3140 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -1799 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -3935 ((-1044) (-1168) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -1538 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2379 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4183 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2747 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2748 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))) (T -758))
+((-2748 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2747 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4183 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2379 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1538 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3935 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227)) (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1799 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227)) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3140 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227)) (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1355 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1730 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3635 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3150 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4420 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3629 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1433 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1328 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1404 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3630 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))))
+(-10 -7 (-15 -3630 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1404 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -1328 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -1433 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -3629 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -4420 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -3150 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3635 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -1730 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -1355 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3140 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -1799 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -3935 ((-1044) (-1168) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -1538 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2379 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4183 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2747 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2748 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))
+((-2079 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570)) 63)) (-2267 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-112) (-227) (-570) (-227) (-227) (-112) (-227) (-227) (-227) (-227) (-112) (-570) (-570) (-570) (-570) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) 62)) (-2217 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-112) (-112) (-570) (-570) (-695 (-227)) (-695 (-570)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS)))) 58)) (-1446 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570)) 51)) (-2353 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1)))) 50)) (-4187 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2)))) 46)) (-4313 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1)))) 42)) (-2955 (((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) 38)))
+(((-759) (-10 -7 (-15 -2955 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -4313 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -4187 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -2353 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -1446 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -2217 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-112) (-112) (-570) (-570) (-695 (-227)) (-695 (-570)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS))))) (-15 -2267 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-112) (-227) (-570) (-227) (-227) (-112) (-227) (-227) (-227) (-227) (-112) (-570) (-570) (-570) (-570) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -2079 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))) (T -759))
+((-2079 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2267 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6 *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8 *9) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *6 (-227)) (-5 *7 (-695 (-570))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2217 (*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5 *7 *3 *8) (-12 (-5 *5 (-695 (-227))) (-5 *6 (-112)) (-5 *7 (-695 (-570))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-1446 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2353 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1044)) (-5 *1 (-759)))) (-4187 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1044)) (-5 *1 (-759)))) (-4313 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1044)) (-5 *1 (-759)))) (-2955 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))))
+(-10 -7 (-15 -2955 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -4313 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -4187 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -2353 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -1446 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -2217 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-112) (-112) (-570) (-570) (-695 (-227)) (-695 (-570)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS))))) (-15 -2267 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-112) (-227) (-570) (-227) (-227) (-112) (-227) (-227) (-227) (-227) (-112) (-570) (-570) (-570) (-570) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-570) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -2079 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))
+((-4064 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 47)) (-3654 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570)) 46)) (-2719 (((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 45)) (-4070 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 40)) (-1787 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570)) 39)) (-1915 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-570)) 36)) (-1467 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570)) 35)) (-2743 (((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570)) 34)) (-3774 (((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570)) 33)) (-1631 (((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570)) 32)))
+(((-760) (-10 -7 (-15 -1631 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -3774 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -2743 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -1467 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -1915 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1787 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -4070 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2719 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3654 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -4064 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -760))
+((-4064 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-3654 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2719 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-4070 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1787 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1915 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1467 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2743 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-650 (-112))) (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *7 (-227)) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-760)))) (-3774 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-695 (-570))) (-5 *5 (-112)) (-5 *7 (-695 (-227))) (-5 *3 (-570)) (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-760)))) (-1631 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-650 (-112))) (-5 *7 (-695 (-227))) (-5 *8 (-695 (-570))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-760)))))
+(-10 -7 (-15 -1631 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -3774 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -2743 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -1467 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -1915 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1787 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -4070 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2719 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3654 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -4064 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
+((-2854 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 79)) (-3793 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 68)) (-3544 (((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))) (-394)) 56) (((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) 55)) (-2300 (((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 37)) (-1965 (((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570)) 33)) (-4243 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 30)) (-2370 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-2487 (((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-1621 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-3572 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570)) 26)) (-3607 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 25)) (-4238 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-3196 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-1676 (((-1044) (-695 (-227)) (-570) (-570) (-570) (-570)) 22)) (-3298 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 21)))
+(((-761) (-10 -7 (-15 -3298 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -1676 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -3196 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4238 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3607 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3572 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1621 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2487 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2370 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4243 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -1965 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -2300 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3544 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))))) (-15 -3544 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))) (-394))) (-15 -3793 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2854 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -761))
+((-2854 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3793 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3544 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-394)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3544 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2300 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1965 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-4243 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2370 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2487 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1621 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3572 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3607 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-4238 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3196 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1676 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3298 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))))
+(-10 -7 (-15 -3298 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -1676 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -3196 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4238 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3607 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3572 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1621 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2487 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2370 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4243 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -1965 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -2300 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3544 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))))) (-15 -3544 ((-1044) (-570) (-570) (-227) (-570) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE))) (-394))) (-15 -3793 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2854 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
+((-1598 (((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) 64)) (-2754 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570)) 60)) (-1807 (((-1044) (-570) (-695 (-227)) (-112) (-227) (-570) (-570) (-570) (-570) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE)))) 59)) (-1981 (((-1044) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570)) 37)) (-4338 (((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570)) 36)) (-3638 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 33)) (-4101 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227))) 32)) (-3471 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570)) 28)) (-4045 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 27)) (-1402 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 26)) (-2625 (((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 22)))
+(((-762) (-10 -7 (-15 -2625 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -1402 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -4045 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -3471 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -4101 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -3638 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4338 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1981 ((-1044) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -1807 ((-1044) (-570) (-695 (-227)) (-112) (-227) (-570) (-570) (-570) (-570) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE))))) (-15 -2754 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -1598 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))) (T -762))
+((-1598 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2754 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-1807 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *6 (-227)) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-1981 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-4338 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3638 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-4101 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3471 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-4045 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-1402 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2625 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-762)))))
+(-10 -7 (-15 -2625 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -1402 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -4045 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -3471 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -4101 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -3638 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4338 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1981 ((-1044) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570))) (-15 -1807 ((-1044) (-570) (-695 (-227)) (-112) (-227) (-570) (-570) (-570) (-570) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE))))) (-15 -2754 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -1598 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))
+((-2793 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227))) 29)) (-2344 (((-1044) (-1168) (-570) (-570) (-695 (-227))) 28)) (-3304 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227))) 27)) (-1340 (((-1044) (-570) (-570) (-570) (-695 (-227))) 21)))
+(((-763) (-10 -7 (-15 -1340 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -3304 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -2344 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -2793 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))) (T -763))
+((-2793 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))) (-2344 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))) (-3304 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-763)))) (-1340 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))))
+(-10 -7 (-15 -1340 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -3304 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -2344 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -2793 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))
+((-1719 (((-1044) (-227) (-227) (-227) (-227) (-570)) 62)) (-1648 (((-1044) (-227) (-227) (-227) (-570)) 61)) (-4406 (((-1044) (-227) (-227) (-227) (-570)) 60)) (-2892 (((-1044) (-227) (-227) (-570)) 59)) (-1665 (((-1044) (-227) (-570)) 58)) (-3720 (((-1044) (-227) (-570)) 57)) (-3161 (((-1044) (-227) (-570)) 56)) (-2611 (((-1044) (-227) (-570)) 55)) (-2137 (((-1044) (-227) (-570)) 54)) (-1924 (((-1044) (-227) (-570)) 53)) (-3826 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 52)) (-2081 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 51)) (-1797 (((-1044) (-227) (-570)) 50)) (-2301 (((-1044) (-227) (-570)) 49)) (-4372 (((-1044) (-227) (-570)) 48)) (-3956 (((-1044) (-227) (-570)) 47)) (-3911 (((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570)) 46)) (-2459 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 45)) (-3266 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 44)) (-4151 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 43)) (-3363 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 42)) (-3716 (((-1044) (-227) (-570)) 39)) (-3921 (((-1044) (-227) (-570)) 38)) (-2629 (((-1044) (-227) (-570)) 37)) (-2209 (((-1044) (-227) (-570)) 36)) (-3493 (((-1044) (-227) (-570)) 35)) (-1987 (((-1044) (-227) (-570)) 34)) (-4236 (((-1044) (-227) (-570)) 33)) (-3029 (((-1044) (-227) (-570)) 32)) (-3569 (((-1044) (-227) (-570)) 31)) (-2987 (((-1044) (-227) (-570)) 30)) (-1685 (((-1044) (-227) (-227) (-227) (-570)) 29)) (-3729 (((-1044) (-227) (-570)) 28)) (-2250 (((-1044) (-227) (-570)) 27)) (-3395 (((-1044) (-227) (-570)) 26)) (-3216 (((-1044) (-227) (-570)) 25)) (-3233 (((-1044) (-227) (-570)) 24)) (-2664 (((-1044) (-171 (-227)) (-570)) 21)))
+(((-764) (-10 -7 (-15 -2664 ((-1044) (-171 (-227)) (-570))) (-15 -3233 ((-1044) (-227) (-570))) (-15 -3216 ((-1044) (-227) (-570))) (-15 -3395 ((-1044) (-227) (-570))) (-15 -2250 ((-1044) (-227) (-570))) (-15 -3729 ((-1044) (-227) (-570))) (-15 -1685 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2987 ((-1044) (-227) (-570))) (-15 -3569 ((-1044) (-227) (-570))) (-15 -3029 ((-1044) (-227) (-570))) (-15 -4236 ((-1044) (-227) (-570))) (-15 -1987 ((-1044) (-227) (-570))) (-15 -3493 ((-1044) (-227) (-570))) (-15 -2209 ((-1044) (-227) (-570))) (-15 -2629 ((-1044) (-227) (-570))) (-15 -3921 ((-1044) (-227) (-570))) (-15 -3716 ((-1044) (-227) (-570))) (-15 -3363 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4151 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3266 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -2459 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -3911 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3956 ((-1044) (-227) (-570))) (-15 -4372 ((-1044) (-227) (-570))) (-15 -2301 ((-1044) (-227) (-570))) (-15 -1797 ((-1044) (-227) (-570))) (-15 -2081 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3826 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -1924 ((-1044) (-227) (-570))) (-15 -2137 ((-1044) (-227) (-570))) (-15 -2611 ((-1044) (-227) (-570))) (-15 -3161 ((-1044) (-227) (-570))) (-15 -3720 ((-1044) (-227) (-570))) (-15 -1665 ((-1044) (-227) (-570))) (-15 -2892 ((-1044) (-227) (-227) (-570))) (-15 -4406 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1648 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1719 ((-1044) (-227) (-227) (-227) (-227) (-570))))) (T -764))
+((-1719 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1648 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4406 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2892 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1665 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3720 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3161 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2137 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1924 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3826 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2081 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1797 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2301 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4372 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3956 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3911 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-570)) (-5 *5 (-171 (-227))) (-5 *6 (-1168)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2459 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3266 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4151 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3363 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168)) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3716 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2629 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2209 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3493 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1987 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4236 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3029 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3569 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2987 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1685 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3729 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2250 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3395 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3216 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3233 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2664 (*1 *2 *3 *4) (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(-10 -7 (-15 -2664 ((-1044) (-171 (-227)) (-570))) (-15 -3233 ((-1044) (-227) (-570))) (-15 -3216 ((-1044) (-227) (-570))) (-15 -3395 ((-1044) (-227) (-570))) (-15 -2250 ((-1044) (-227) (-570))) (-15 -3729 ((-1044) (-227) (-570))) (-15 -1685 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2987 ((-1044) (-227) (-570))) (-15 -3569 ((-1044) (-227) (-570))) (-15 -3029 ((-1044) (-227) (-570))) (-15 -4236 ((-1044) (-227) (-570))) (-15 -1987 ((-1044) (-227) (-570))) (-15 -3493 ((-1044) (-227) (-570))) (-15 -2209 ((-1044) (-227) (-570))) (-15 -2629 ((-1044) (-227) (-570))) (-15 -3921 ((-1044) (-227) (-570))) (-15 -3716 ((-1044) (-227) (-570))) (-15 -3363 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4151 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3266 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -2459 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -3911 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3956 ((-1044) (-227) (-570))) (-15 -4372 ((-1044) (-227) (-570))) (-15 -2301 ((-1044) (-227) (-570))) (-15 -1797 ((-1044) (-227) (-570))) (-15 -2081 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3826 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -1924 ((-1044) (-227) (-570))) (-15 -2137 ((-1044) (-227) (-570))) (-15 -2611 ((-1044) (-227) (-570))) (-15 -3161 ((-1044) (-227) (-570))) (-15 -3720 ((-1044) (-227) (-570))) (-15 -1665 ((-1044) (-227) (-570))) (-15 -2892 ((-1044) (-227) (-227) (-570))) (-15 -4406 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1648 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1719 ((-1044) (-227) (-227) (-227) (-227) (-570))))
+((-3500 (((-1282)) 20)) (-2802 (((-1168)) 31)) (-3361 (((-1168)) 30)) (-2118 (((-1113) (-1186) (-695 (-570))) 45) (((-1113) (-1186) (-695 (-227))) 41)) (-2087 (((-112)) 19)) (-4199 (((-1168) (-1168)) 34)))
+(((-765) (-10 -7 (-15 -3361 ((-1168))) (-15 -2802 ((-1168))) (-15 -4199 ((-1168) (-1168))) (-15 -2118 ((-1113) (-1186) (-695 (-227)))) (-15 -2118 ((-1113) (-1186) (-695 (-570)))) (-15 -2087 ((-112))) (-15 -3500 ((-1282))))) (T -765))
+((-3500 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-765)))) (-2087 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))) (-2118 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-570))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-2118 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-227))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-4199 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-2802 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-3361 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(-10 -7 (-15 -3361 ((-1168))) (-15 -2802 ((-1168))) (-15 -4199 ((-1168) (-1168))) (-15 -2118 ((-1113) (-1186) (-695 (-227)))) (-15 -2118 ((-1113) (-1186) (-695 (-570)))) (-15 -2087 ((-112))) (-15 -3500 ((-1282))))
+((-2522 (($ $ $) 10)) (-1483 (($ $ $ $) 9)) (-3619 (($ $ $) 12)))
+(((-766 |#1|) (-10 -8 (-15 -3619 (|#1| |#1| |#1|)) (-15 -2522 (|#1| |#1| |#1|)) (-15 -1483 (|#1| |#1| |#1| |#1|))) (-767)) (T -766))
+NIL
+(-10 -8 (-15 -3619 (|#1| |#1| |#1|)) (-15 -2522 (|#1| |#1| |#1|)) (-15 -1483 (|#1| |#1| |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4333 (($ $ (-928)) 31)) (-3548 (($ $ (-928)) 32)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2522 (($ $ $) 28)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1483 (($ $ $ $) 29)) (-3619 (($ $ $) 27)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
(((-767) (-141)) (T -767))
-((-3183 (*1 *1 *1 *1 *1) (-4 *1 (-767))) (-3688 (*1 *1 *1 *1) (-4 *1 (-767))) (-1960 (*1 *1 *1 *1) (-4 *1 (-767))))
-(-13 (-21) (-726) (-10 -8 (-15 -3183 ($ $ $ $)) (-15 -3688 ($ $ $)) (-15 -1960 ($ $ $))))
+((-1483 (*1 *1 *1 *1 *1) (-4 *1 (-767))) (-2522 (*1 *1 *1 *1) (-4 *1 (-767))) (-3619 (*1 *1 *1 *1) (-4 *1 (-767))))
+(-13 (-21) (-726) (-10 -8 (-15 -1483 ($ $ $ $)) (-15 -2522 ($ $ $)) (-15 -3619 ($ $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-726) . T) ((-1109) . T))
((-3735 (((-868) $) NIL) (($ (-570)) 10)))
(((-768 |#1|) (-10 -8 (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-769)) (T -768))
NIL
(-10 -8 (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1535 (((-3 $ "failed") $) 43)) (-3937 (($ $ (-928)) 31) (($ $ (-777)) 38)) (-3413 (((-3 $ "failed") $) 41)) (-2081 (((-112) $) 37)) (-2168 (((-3 $ "failed") $) 42)) (-2247 (($ $ (-928)) 32) (($ $ (-777)) 39)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3688 (($ $ $) 28)) (-3735 (((-868) $) 12) (($ (-570)) 34)) (-2744 (((-777)) 35 T CONST)) (-1859 (((-112) $ $) 9)) (-3183 (($ $ $ $) 29)) (-1960 (($ $ $) 27)) (-1812 (($) 19 T CONST)) (-1823 (($) 36 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 33) (($ $ (-777)) 40)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-3860 (((-3 $ "failed") $) 43)) (-4333 (($ $ (-928)) 31) (($ $ (-777)) 38)) (-2937 (((-3 $ "failed") $) 41)) (-4340 (((-112) $) 37)) (-3984 (((-3 $ "failed") $) 42)) (-3548 (($ $ (-928)) 32) (($ $ (-777)) 39)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2522 (($ $ $) 28)) (-3735 (((-868) $) 12) (($ (-570)) 34)) (-1609 (((-777)) 35 T CONST)) (-3866 (((-112) $ $) 9)) (-1483 (($ $ $ $) 29)) (-3619 (($ $ $) 27)) (-1814 (($) 19 T CONST)) (-1824 (($) 36 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 33) (($ $ (-777)) 40)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
(((-769) (-141)) (T -769))
-((-2744 (*1 *2) (-12 (-4 *1 (-769)) (-5 *2 (-777)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-769)))))
-(-13 (-767) (-728) (-10 -8 (-15 -2744 ((-777)) -3640) (-15 -3735 ($ (-570)))))
+((-1609 (*1 *2) (-12 (-4 *1 (-769)) (-5 *2 (-777)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-769)))))
+(-13 (-767) (-728) (-10 -8 (-15 -1609 ((-777)) -3640) (-15 -3735 ($ (-570)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-726) . T) ((-728) . T) ((-767) . T) ((-1109) . T))
-((-3654 (((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|) 33)) (-1463 (((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|) 23)) (-3674 (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186)) 20) (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570))))) 19)))
-(((-770 |#1|) (-10 -7 (-15 -3674 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -3674 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -1463 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3654 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|))) (-13 (-368) (-854))) (T -770))
-((-3654 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-2 (|:| |outval| (-171 *4)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 *4))))))) (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))) (-1463 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))) (-3674 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *4 (-1186)) (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *5)) (-4 *5 (-13 (-368) (-854))))) (-3674 (*1 *2 *3) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
-(-10 -7 (-15 -3674 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -3674 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -1463 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3654 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|)))
-((-3484 (((-176 (-570)) |#1|) 27)))
-(((-771 |#1|) (-10 -7 (-15 -3484 ((-176 (-570)) |#1|))) (-410)) (T -771))
-((-3484 (*1 *2 *3) (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410)))))
-(-10 -7 (-15 -3484 ((-176 (-570)) |#1|)))
-((-1433 ((|#1| |#1| |#1|) 28)) (-4248 ((|#1| |#1| |#1|) 27)) (-1422 ((|#1| |#1| |#1|) 38)) (-3582 ((|#1| |#1| |#1|) 34)) (-2235 (((-3 |#1| "failed") |#1| |#1|) 31)) (-2422 (((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|) 26)))
-(((-772 |#1| |#2|) (-10 -7 (-15 -2422 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -4248 (|#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| |#1|)) (-15 -2235 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3582 (|#1| |#1| |#1|)) (-15 -1422 (|#1| |#1| |#1|))) (-714 |#2|) (-368)) (T -772))
-((-1422 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-3582 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-2235 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-1433 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-4248 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-2422 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4)))))
-(-10 -7 (-15 -2422 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -4248 (|#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| |#1|)) (-15 -2235 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3582 (|#1| |#1| |#1|)) (-15 -1422 (|#1| |#1| |#1|)))
-((-3343 (((-697 (-1234)) $ (-1234)) 26)) (-3510 (((-697 (-555)) $ (-555)) 25)) (-1609 (((-777) $ (-129)) 27)) (-1784 (((-697 (-130)) $ (-130)) 24)) (-2795 (((-697 (-1234)) $) 12)) (-2243 (((-697 (-1232)) $) 8)) (-2851 (((-697 (-1231)) $) 10)) (-3818 (((-697 (-555)) $) 13)) (-3736 (((-697 (-553)) $) 9)) (-3016 (((-697 (-552)) $) 11)) (-4271 (((-777) $ (-129)) 7)) (-1527 (((-697 (-130)) $) 14)) (-2852 (((-112) $) 31)) (-2996 (((-697 $) |#1| (-961)) 32)) (-1866 (($ $) 6)))
+((-3445 (((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|) 33)) (-4394 (((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|) 23)) (-3641 (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186)) 20) (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570))))) 19)))
+(((-770 |#1|) (-10 -7 (-15 -3641 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -3641 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -4394 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3445 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|))) (-13 (-368) (-854))) (T -770))
+((-3445 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-2 (|:| |outval| (-171 *4)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 *4))))))) (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))) (-4394 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-171 *4))) (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))) (-3641 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *4 (-1186)) (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *5)) (-4 *5 (-13 (-368) (-854))))) (-3641 (*1 *2 *3) (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
+(-10 -7 (-15 -3641 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -3641 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -4394 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3445 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|)))
+((-2375 (((-176 (-570)) |#1|) 27)))
+(((-771 |#1|) (-10 -7 (-15 -2375 ((-176 (-570)) |#1|))) (-410)) (T -771))
+((-2375 (*1 *2 *3) (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410)))))
+(-10 -7 (-15 -2375 ((-176 (-570)) |#1|)))
+((-1460 ((|#1| |#1| |#1|) 28)) (-4381 ((|#1| |#1| |#1|) 27)) (-1354 ((|#1| |#1| |#1|) 38)) (-4014 ((|#1| |#1| |#1|) 34)) (-3400 (((-3 |#1| "failed") |#1| |#1|) 31)) (-1669 (((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|) 26)))
+(((-772 |#1| |#2|) (-10 -7 (-15 -1669 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -4381 (|#1| |#1| |#1|)) (-15 -1460 (|#1| |#1| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4014 (|#1| |#1| |#1|)) (-15 -1354 (|#1| |#1| |#1|))) (-714 |#2|) (-368)) (T -772))
+((-1354 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-4014 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-3400 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-1460 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-4381 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-1669 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4)))))
+(-10 -7 (-15 -1669 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -4381 (|#1| |#1| |#1|)) (-15 -1460 (|#1| |#1| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4014 (|#1| |#1| |#1|)) (-15 -1354 (|#1| |#1| |#1|)))
+((-3512 (((-697 (-1235)) $ (-1235)) 26)) (-1430 (((-697 (-555)) $ (-555)) 25)) (-3319 (((-777) $ (-129)) 27)) (-1316 (((-697 (-130)) $ (-130)) 24)) (-3931 (((-697 (-1235)) $) 12)) (-3502 (((-697 (-1233)) $) 8)) (-3224 (((-697 (-1232)) $) 10)) (-2444 (((-697 (-555)) $) 13)) (-2951 (((-697 (-553)) $) 9)) (-3481 (((-697 (-552)) $) 11)) (-3317 (((-777) $ (-129)) 7)) (-3765 (((-697 (-130)) $) 14)) (-3236 (((-112) $) 31)) (-3257 (((-697 $) |#1| (-961)) 32)) (-3924 (($ $) 6)))
(((-773 |#1|) (-141) (-1109)) (T -773))
-((-2996 (*1 *2 *3 *4) (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1)) (-4 *1 (-773 *3)))) (-2852 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-582) (-10 -8 (-15 -2996 ((-697 $) |t#1| (-961))) (-15 -2852 ((-112) $))))
+((-3257 (*1 *2 *3 *4) (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1)) (-4 *1 (-773 *3)))) (-3236 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-582) (-10 -8 (-15 -3257 ((-697 $) |t#1| (-961))) (-15 -3236 ((-112) $))))
(((-175) . T) ((-533) . T) ((-582) . T) ((-866) . T))
-((-2196 (((-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)) 71)) (-3223 (((-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) 69)) (-2998 (((-570)) 85)))
-(((-774 |#1| |#2|) (-10 -7 (-15 -2998 ((-570))) (-15 -3223 ((-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -2196 ((-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)))) (-1252 (-570)) (-415 (-570) |#1|)) (T -774))
-((-2196 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-1252 *3)) (-5 *2 (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-774 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3223 (*1 *2) (-12 (-4 *3 (-1252 (-570))) (-5 *2 (-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 (-570) *3)))) (-2998 (*1 *2) (-12 (-4 *3 (-1252 *2)) (-5 *2 (-570)) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 *2 *3)))))
-(-10 -7 (-15 -2998 ((-570))) (-15 -3223 ((-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -2196 ((-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570))))
-((-2416 (((-112) $ $) NIL)) (-3080 (((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $) 21)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 13) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) 18)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-775) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3080 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))) (T -775))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))))
-(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3080 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))
-((-2620 (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))) 18) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186))) 17)) (-1654 (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))) 20) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186))) 19)))
-(((-776 |#1|) (-10 -7 (-15 -2620 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2620 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))))) (-562)) (T -776))
-((-1654 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5)))) (-2620 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-2620 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5)))))
-(-10 -7 (-15 -2620 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2620 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3947 (($ $ $) 10)) (-3596 (((-3 $ "failed") $ $) 15)) (-3020 (($ $ (-570)) 11)) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($ $) NIL)) (-2381 (($ $ $) NIL)) (-2081 (((-112) $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1874 (($ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 6 T CONST)) (-1823 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ $ $) NIL)))
-(((-777) (-13 (-799) (-732) (-10 -8 (-15 -2381 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -1874 ($ $ $)) (-15 -2382 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2407 ((-3 $ "failed") $ $)) (-15 -3020 ($ $ (-570))) (-15 -3336 ($ $)) (-6 (-4450 "*"))))) (T -777))
-((-2381 (*1 *1 *1 *1) (-5 *1 (-777))) (-2372 (*1 *1 *1 *1) (-5 *1 (-777))) (-1874 (*1 *1 *1 *1) (-5 *1 (-777))) (-2382 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3331 (-777)) (|:| -2785 (-777)))) (-5 *1 (-777)))) (-2407 (*1 *1 *1 *1) (|partial| -5 *1 (-777))) (-3020 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-777)))) (-3336 (*1 *1 *1) (-5 *1 (-777))))
-(-13 (-799) (-732) (-10 -8 (-15 -2381 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -1874 ($ $ $)) (-15 -2382 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2407 ((-3 $ "failed") $ $)) (-15 -3020 ($ $ (-570))) (-15 -3336 ($ $)) (-6 (-4450 "*"))))
+((-4265 (((-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)) 71)) (-3705 (((-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) 69)) (-3290 (((-570)) 85)))
+(((-774 |#1| |#2|) (-10 -7 (-15 -3290 ((-570))) (-15 -3705 ((-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -4265 ((-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)))) (-1253 (-570)) (-415 (-570) |#1|)) (T -774))
+((-4265 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-774 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3705 (*1 *2) (-12 (-4 *3 (-1253 (-570))) (-5 *2 (-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 (-570) *3)))) (-3290 (*1 *2) (-12 (-4 *3 (-1253 *2)) (-5 *2 (-570)) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 *2 *3)))))
+(-10 -7 (-15 -3290 ((-570))) (-15 -3705 ((-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -4265 ((-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570))))
+((-2417 (((-112) $ $) NIL)) (-3080 (((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $) 21)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 13) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) 18)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-775) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3080 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))) (T -775))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))))
+(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3735 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3080 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))
+((-2859 (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))) 18) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186))) 17)) (-2524 (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))) 20) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186))) 19)))
+(((-776 |#1|) (-10 -7 (-15 -2859 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2859 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))))) (-562)) (T -776))
+((-2524 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5)))) (-2859 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-2859 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5)))))
+(-10 -7 (-15 -2859 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2859 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3125 (($ $ $) 10)) (-4119 (((-3 $ "failed") $ $) 15)) (-3020 (($ $ (-570)) 11)) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($ $) NIL)) (-2382 (($ $ $) NIL)) (-4340 (((-112) $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1874 (($ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 6 T CONST)) (-1824 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ $ $) NIL)))
+(((-777) (-13 (-799) (-732) (-10 -8 (-15 -2382 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -1874 ($ $ $)) (-15 -4378 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -2406 ((-3 $ "failed") $ $)) (-15 -3020 ($ $ (-570))) (-15 -3336 ($ $)) (-6 (-4451 "*"))))) (T -777))
+((-2382 (*1 *1 *1 *1) (-5 *1 (-777))) (-2372 (*1 *1 *1 *1) (-5 *1 (-777))) (-1874 (*1 *1 *1 *1) (-5 *1 (-777))) (-4378 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3389 (-777)) (|:| -3831 (-777)))) (-5 *1 (-777)))) (-2406 (*1 *1 *1 *1) (|partial| -5 *1 (-777))) (-3020 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-777)))) (-3336 (*1 *1 *1) (-5 *1 (-777))))
+(-13 (-799) (-732) (-10 -8 (-15 -2382 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -1874 ($ $ $)) (-15 -4378 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -2406 ((-3 $ "failed") $ $)) (-15 -3020 ($ $ (-570))) (-15 -3336 ($ $)) (-6 (-4451 "*"))))
((|Integer|) (>= |#1| 0))
-((-1654 (((-3 |#2| "failed") |#2| |#2| (-115) (-1186)) 37)))
-(((-778 |#1| |#2|) (-10 -7 (-15 -1654 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1211) (-966))) (T -778))
-((-1654 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-778 *5 *2)) (-4 *2 (-13 (-29 *5) (-1211) (-966))))))
-(-10 -7 (-15 -1654 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186))))
+((-2524 (((-3 |#2| "failed") |#2| |#2| (-115) (-1186)) 37)))
+(((-778 |#1| |#2|) (-10 -7 (-15 -2524 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -778))
+((-2524 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-778 *5 *2)) (-4 *2 (-13 (-29 *5) (-1212) (-966))))))
+(-10 -7 (-15 -2524 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186))))
((-3735 (((-780) |#1|) 8)))
-(((-779 |#1|) (-10 -7 (-15 -3735 ((-780) |#1|))) (-1226)) (T -779))
-((-3735 (*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1226)))))
+(((-779 |#1|) (-10 -7 (-15 -3735 ((-780) |#1|))) (-1227)) (T -779))
+((-3735 (*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1227)))))
(-10 -7 (-15 -3735 ((-780) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 7)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 7)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)))
(((-780) (-1109)) (T -780))
NIL
(-1109)
-((-2610 ((|#2| |#4|) 35)))
-(((-781 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2610 (|#2| |#4|))) (-458) (-1252 |#1|) (-730 |#1| |#2|) (-1252 |#3|)) (T -781))
-((-2610 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-730 *4 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-781 *4 *2 *5 *3)) (-4 *3 (-1252 *5)))))
-(-10 -7 (-15 -2610 (|#2| |#4|)))
-((-3413 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 57)) (-1824 (((-1281) (-1168) (-1168) |#4| |#5|) 33)) (-1474 ((|#4| |#4| |#5|) 74)) (-4046 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|) 79)) (-2365 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 16)))
-(((-782 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3413 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1474 (|#4| |#4| |#5|)) (-15 -4046 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -1824 ((-1281) (-1168) (-1168) |#4| |#5|)) (-15 -2365 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -782))
-((-2365 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1824 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1168)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *4 (-1074 *6 *7 *8)) (-5 *2 (-1281)) (-5 *1 (-782 *6 *7 *8 *4 *5)) (-4 *5 (-1080 *6 *7 *8 *4)))) (-4046 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1474 (*1 *2 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *2 (-1074 *4 *5 *6)) (-5 *1 (-782 *4 *5 *6 *2 *3)) (-4 *3 (-1080 *4 *5 *6 *2)))) (-3413 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(-10 -7 (-15 -3413 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1474 (|#4| |#4| |#5|)) (-15 -4046 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -1824 ((-1281) (-1168) (-1168) |#4| |#5|)) (-15 -2365 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)))
-((-4378 (((-3 (-1182 (-1182 |#1|)) "failed") |#4|) 53)) (-2438 (((-650 |#4|) |#4|) 24)) (-3741 ((|#4| |#4|) 19)))
-(((-783 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2438 ((-650 |#4|) |#4|)) (-15 -4378 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -3741 (|#4| |#4|))) (-354) (-333 |#1|) (-1252 |#2|) (-1252 |#3|) (-928)) (T -783))
-((-3741 (*1 *2 *2) (-12 (-4 *3 (-354)) (-4 *4 (-333 *3)) (-4 *5 (-1252 *4)) (-5 *1 (-783 *3 *4 *5 *2 *6)) (-4 *2 (-1252 *5)) (-14 *6 (-928)))) (-4378 (*1 *2 *3) (|partial| -12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1252 *5)) (-5 *2 (-1182 (-1182 *4))) (-5 *1 (-783 *4 *5 *6 *3 *7)) (-4 *3 (-1252 *6)) (-14 *7 (-928)))) (-2438 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1252 *5)) (-5 *2 (-650 *3)) (-5 *1 (-783 *4 *5 *6 *3 *7)) (-4 *3 (-1252 *6)) (-14 *7 (-928)))))
-(-10 -7 (-15 -2438 ((-650 |#4|) |#4|)) (-15 -4378 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -3741 (|#4| |#4|)))
-((-1868 (((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|)) 75)) (-2022 (((-650 (-777)) |#1|) 20)))
-(((-784 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1868 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -2022 ((-650 (-777)) |#1|))) (-1252 |#4|) (-799) (-856) (-311) (-956 |#4| |#2| |#3|)) (T -784))
-((-2022 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-650 (-777))) (-5 *1 (-784 *3 *4 *5 *6 *7)) (-4 *3 (-1252 *6)) (-4 *7 (-956 *6 *4 *5)))) (-1868 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1252 *9)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-311)) (-4 *10 (-956 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-650 (-1182 *10))) (|:| |dterm| (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| *10))))) (|:| |nfacts| (-650 *6)) (|:| |nlead| (-650 *10)))) (-5 *1 (-784 *6 *7 *8 *9 *10)) (-5 *3 (-1182 *10)) (-5 *4 (-650 *6)) (-5 *5 (-650 *10)))))
-(-10 -7 (-15 -1868 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -2022 ((-650 (-777)) |#1|)))
-((-2033 (((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|) 31)) (-1472 (((-650 |#1|) (-695 (-413 (-570))) |#1|) 21)) (-3674 (((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186)) 18) (((-959 (-413 (-570))) (-695 (-413 (-570)))) 17)))
-(((-785 |#1|) (-10 -7 (-15 -3674 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -3674 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -1472 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -2033 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|))) (-13 (-368) (-854))) (T -785))
-((-2033 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 (-2 (|:| |outval| *4) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 *4)))))) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))) (-1472 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))) (-3674 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *4 (-1186)) (-5 *2 (-959 (-413 (-570)))) (-5 *1 (-785 *5)) (-4 *5 (-13 (-368) (-854))))) (-3674 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-959 (-413 (-570)))) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))))
-(-10 -7 (-15 -3674 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -3674 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -1472 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -2033 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 36)) (-1716 (((-650 |#2|) $) NIL)) (-3703 (((-1182 $) $ |#2|) NIL) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 |#2|)) NIL)) (-1573 (($ $) 30)) (-1891 (((-112) $ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3766 (($ $ $) 110 (|has| |#1| (-562)))) (-3302 (((-650 $) $ $) 123 (|has| |#1| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-959 (-413 (-570)))) NIL (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))))) (((-3 $ "failed") (-959 (-570))) NIL (-2740 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (((-3 $ "failed") (-959 |#1|)) NIL (-2740 (-12 (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570))))) (-1754 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570))))) (-1754 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-1001 (-570))))))) (((-3 (-1134 |#1| |#2|) "failed") $) 21)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#2| $) NIL) (($ (-959 (-413 (-570)))) NIL (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))))) (($ (-959 (-570))) NIL (-2740 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (($ (-959 |#1|)) NIL (-2740 (-12 (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570))))) (-1754 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570))))) (-1754 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-1001 (-570))))))) (((-1134 |#1| |#2|) $) NIL)) (-1939 (($ $ $ |#2|) NIL (|has| |#1| (-174))) (($ $ $) 121 (|has| |#1| (-562)))) (-1890 (($ $) NIL) (($ $ |#2|) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2914 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3557 (((-112) $) NIL)) (-3369 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 81)) (-1970 (($ $) 136 (|has| |#1| (-458)))) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3574 (($ $) NIL (|has| |#1| (-562)))) (-4187 (($ $) NIL (|has| |#1| (-562)))) (-1930 (($ $ $) 76) (($ $ $ |#2|) NIL)) (-4270 (($ $ $) 79) (($ $ $ |#2|) NIL)) (-3007 (($ $ |#1| (-537 |#2|) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#1| (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#1| (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-2081 (((-112) $) 57)) (-3797 (((-777) $) NIL)) (-3911 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-1978 (($ $ $ $ $) 107 (|has| |#1| (-562)))) (-2711 ((|#2| $) 22)) (-1704 (($ (-1182 |#1|) |#2|) NIL) (($ (-1182 $) |#2|) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 38) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1490 (($ $ $) 63)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#2|) NIL)) (-3411 (((-112) $) NIL)) (-4341 (((-537 |#2|) $) NIL) (((-777) $ |#2|) NIL) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-4059 (((-777) $) 23)) (-4414 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3382 (((-3 |#2| "failed") $) NIL)) (-2719 (($ $) NIL (|has| |#1| (-458)))) (-2151 (($ $) NIL (|has| |#1| (-458)))) (-4383 (((-650 $) $) NIL)) (-4102 (($ $) 39)) (-2599 (($ $) NIL (|has| |#1| (-458)))) (-1722 (((-650 $) $) 43)) (-2117 (($ $) 41)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL) (($ $ |#2|) 48)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1835 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3184 (-777))) $ $) 96)) (-2680 (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $) 78) (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $ |#2|) NIL)) (-3980 (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $) NIL) (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $ |#2|) NIL)) (-1758 (($ $ $) 83) (($ $ $ |#2|) NIL)) (-2632 (($ $ $) 86) (($ $ $ |#2|) NIL)) (-1903 (((-1168) $) NIL)) (-3769 (($ $ $) 125 (|has| |#1| (-562)))) (-2699 (((-650 $) $) 32)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| |#2|) (|:| -1907 (-777))) "failed") $) NIL)) (-1329 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-1695 (($ $ $) NIL)) (-2314 (($ $) 24)) (-4122 (((-112) $ $) NIL)) (-3236 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-3339 (($ $ $) NIL)) (-3393 (($ $) 26)) (-3479 (((-1129) $) NIL)) (-1888 (((-2 (|:| -1874 $) (|:| |coef2| $)) $ $) 116 (|has| |#1| (-562)))) (-4288 (((-2 (|:| -1874 $) (|:| |coef1| $)) $ $) 113 (|has| |#1| (-562)))) (-1834 (((-112) $) 56)) (-1842 ((|#1| $) 58)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 ((|#1| |#1| $) 133 (|has| |#1| (-458))) (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2838 (((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 119 (|has| |#1| (-562)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 98 (|has| |#1| (-562)))) (-3298 (($ $ |#1|) 129 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-3160 (($ $ |#1|) 128 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-650 |#2|) (-650 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-650 |#2|) (-650 $)) NIL)) (-2998 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3447 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1601 (((-537 |#2|) $) NIL) (((-777) $ |#2|) 45) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-3211 (($ $) NIL)) (-1779 (($ $) 35)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| |#1| (-620 (-542))) (|has| |#2| (-620 (-542))))) (($ (-959 (-413 (-570)))) NIL (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))))) (($ (-959 (-570))) NIL (-2740 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1754 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (($ (-959 |#1|)) NIL (|has| |#2| (-620 (-1186)))) (((-1168) $) NIL (-12 (|has| |#1| (-1047 (-570))) (|has| |#2| (-620 (-1186))))) (((-959 |#1|) $) NIL (|has| |#2| (-620 (-1186))))) (-3030 ((|#1| $) 132 (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-959 |#1|) $) NIL (|has| |#2| (-620 (-1186)))) (((-1134 |#1| |#2|) $) 18) (($ (-1134 |#1| |#2|)) 19) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) 47) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) 13 T CONST)) (-3056 (((-3 (-112) "failed") $ $) NIL)) (-1823 (($) 37 T CONST)) (-1995 (($ $ $ $ (-777)) 105 (|has| |#1| (-562)))) (-1884 (($ $ $ (-777)) 104 (|has| |#1| (-562)))) (-2791 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 75)) (-2954 (($ $ $) 85)) (** (($ $ (-928)) NIL) (($ $ (-777)) 70)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 62) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 61) (($ $ |#1|) NIL)))
+((-2771 ((|#2| |#4|) 35)))
+(((-781 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2771 (|#2| |#4|))) (-458) (-1253 |#1|) (-730 |#1| |#2|) (-1253 |#3|)) (T -781))
+((-2771 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-730 *4 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-781 *4 *2 *5 *3)) (-4 *3 (-1253 *5)))))
+(-10 -7 (-15 -2771 (|#2| |#4|)))
+((-2937 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 57)) (-1689 (((-1282) (-1168) (-1168) |#4| |#5|) 33)) (-1396 ((|#4| |#4| |#5|) 74)) (-2918 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|) 79)) (-2314 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 16)))
+(((-782 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2937 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1396 (|#4| |#4| |#5|)) (-15 -2918 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -1689 ((-1282) (-1168) (-1168) |#4| |#5|)) (-15 -2314 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -782))
+((-2314 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1689 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1168)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *4 (-1074 *6 *7 *8)) (-5 *2 (-1282)) (-5 *1 (-782 *6 *7 *8 *4 *5)) (-4 *5 (-1080 *6 *7 *8 *4)))) (-2918 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1396 (*1 *2 *2 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *2 (-1074 *4 *5 *6)) (-5 *1 (-782 *4 *5 *6 *2 *3)) (-4 *3 (-1080 *4 *5 *6 *2)))) (-2937 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(-10 -7 (-15 -2937 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1396 (|#4| |#4| |#5|)) (-15 -2918 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -1689 ((-1282) (-1168) (-1168) |#4| |#5|)) (-15 -2314 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)))
+((-4379 (((-3 (-1182 (-1182 |#1|)) "failed") |#4|) 53)) (-1812 (((-650 |#4|) |#4|) 24)) (-2984 ((|#4| |#4|) 19)))
+(((-783 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1812 ((-650 |#4|) |#4|)) (-15 -4379 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -2984 (|#4| |#4|))) (-354) (-333 |#1|) (-1253 |#2|) (-1253 |#3|) (-928)) (T -783))
+((-2984 (*1 *2 *2) (-12 (-4 *3 (-354)) (-4 *4 (-333 *3)) (-4 *5 (-1253 *4)) (-5 *1 (-783 *3 *4 *5 *2 *6)) (-4 *2 (-1253 *5)) (-14 *6 (-928)))) (-4379 (*1 *2 *3) (|partial| -12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1253 *5)) (-5 *2 (-1182 (-1182 *4))) (-5 *1 (-783 *4 *5 *6 *3 *7)) (-4 *3 (-1253 *6)) (-14 *7 (-928)))) (-1812 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1253 *5)) (-5 *2 (-650 *3)) (-5 *1 (-783 *4 *5 *6 *3 *7)) (-4 *3 (-1253 *6)) (-14 *7 (-928)))))
+(-10 -7 (-15 -1812 ((-650 |#4|) |#4|)) (-15 -4379 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -2984 (|#4| |#4|)))
+((-3947 (((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|)) 75)) (-1893 (((-650 (-777)) |#1|) 20)))
+(((-784 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3947 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -1893 ((-650 (-777)) |#1|))) (-1253 |#4|) (-799) (-856) (-311) (-956 |#4| |#2| |#3|)) (T -784))
+((-1893 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-650 (-777))) (-5 *1 (-784 *3 *4 *5 *6 *7)) (-4 *3 (-1253 *6)) (-4 *7 (-956 *6 *4 *5)))) (-3947 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1253 *9)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-311)) (-4 *10 (-956 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-650 (-1182 *10))) (|:| |dterm| (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| *10))))) (|:| |nfacts| (-650 *6)) (|:| |nlead| (-650 *10)))) (-5 *1 (-784 *6 *7 *8 *9 *10)) (-5 *3 (-1182 *10)) (-5 *4 (-650 *6)) (-5 *5 (-650 *10)))))
+(-10 -7 (-15 -3947 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -1893 ((-650 (-777)) |#1|)))
+((-1979 (((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|) 31)) (-1371 (((-650 |#1|) (-695 (-413 (-570))) |#1|) 21)) (-3641 (((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186)) 18) (((-959 (-413 (-570))) (-695 (-413 (-570)))) 17)))
+(((-785 |#1|) (-10 -7 (-15 -3641 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -3641 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -1371 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -1979 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|))) (-13 (-368) (-854))) (T -785))
+((-1979 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 (-2 (|:| |outval| *4) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 *4)))))) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))) (-1371 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))) (-3641 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *4 (-1186)) (-5 *2 (-959 (-413 (-570)))) (-5 *1 (-785 *5)) (-4 *5 (-13 (-368) (-854))))) (-3641 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-959 (-413 (-570)))) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))))
+(-10 -7 (-15 -3641 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -3641 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -1371 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -1979 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 36)) (-1713 (((-650 |#2|) $) NIL)) (-3702 (((-1182 $) $ |#2|) NIL) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 |#2|)) NIL)) (-1574 (($ $) 30)) (-4136 (((-112) $ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2037 (($ $ $) 110 (|has| |#1| (-562)))) (-3102 (((-650 $) $ $) 123 (|has| |#1| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-959 (-413 (-570)))) NIL (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))))) (((-3 $ "failed") (-959 (-570))) NIL (-2740 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (((-3 $ "failed") (-959 |#1|)) NIL (-2740 (-12 (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570))))) (-1753 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570))))) (-1753 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-1001 (-570))))))) (((-3 (-1134 |#1| |#2|) "failed") $) 21)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#2| $) NIL) (($ (-959 (-413 (-570)))) NIL (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))))) (($ (-959 (-570))) NIL (-2740 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (($ (-959 |#1|)) NIL (-2740 (-12 (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570))))) (-1753 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570))))) (-1753 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-1001 (-570))))))) (((-1134 |#1| |#2|) $) NIL)) (-3383 (($ $ $ |#2|) NIL (|has| |#1| (-174))) (($ $ $) 121 (|has| |#1| (-562)))) (-1891 (($ $) NIL) (($ $ |#2|) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3747 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3748 (((-112) $) NIL)) (-2526 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 81)) (-2486 (($ $) 136 (|has| |#1| (-458)))) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3949 (($ $) NIL (|has| |#1| (-562)))) (-1916 (($ $) NIL (|has| |#1| (-562)))) (-3272 (($ $ $) 76) (($ $ $ |#2|) NIL)) (-3305 (($ $ $) 79) (($ $ $ |#2|) NIL)) (-3382 (($ $ |#1| (-537 |#2|) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#1| (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#1| (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4340 (((-112) $) 57)) (-2292 (((-777) $) NIL)) (-4071 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-2560 (($ $ $ $ $) 107 (|has| |#1| (-562)))) (-2451 ((|#2| $) 22)) (-1705 (($ (-1182 |#1|) |#2|) NIL) (($ (-1182 $) |#2|) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 38) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1581 (($ $ $) 63)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#2|) NIL)) (-2917 (((-112) $) NIL)) (-2730 (((-537 |#2|) $) NIL) (((-777) $ |#2|) NIL) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-3052 (((-777) $) 23)) (-2206 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2645 (((-3 |#2| "failed") $) NIL)) (-1359 (($ $) NIL (|has| |#1| (-458)))) (-3804 (($ $) NIL (|has| |#1| (-458)))) (-3109 (((-650 $) $) NIL)) (-2316 (($ $) 39)) (-2675 (($ $) NIL (|has| |#1| (-458)))) (-2031 (((-650 $) $) 43)) (-1608 (($ $) 41)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL) (($ $ |#2|) 48)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1801 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1496 (-777))) $ $) 96)) (-2205 (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $) 78) (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $ |#2|) NIL)) (-3516 (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $) NIL) (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $ |#2|) NIL)) (-2294 (($ $ $) 83) (($ $ $ |#2|) NIL)) (-2952 (($ $ $) 86) (($ $ $ |#2|) NIL)) (-4268 (((-1168) $) NIL)) (-2068 (($ $ $) 125 (|has| |#1| (-562)))) (-2364 (((-650 $) $) 32)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| |#2|) (|:| -3011 (-777))) "failed") $) NIL)) (-1810 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-1831 (($ $ $) NIL)) (-2315 (($ $) 24)) (-2458 (((-112) $ $) NIL)) (-3851 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-3464 (($ $ $) NIL)) (-2765 (($ $) 26)) (-3479 (((-1129) $) NIL)) (-4122 (((-2 (|:| -1874 $) (|:| |coef2| $)) $ $) 116 (|has| |#1| (-562)))) (-3473 (((-2 (|:| -1874 $) (|:| |coef1| $)) $ $) 113 (|has| |#1| (-562)))) (-1835 (((-112) $) 56)) (-1846 ((|#1| $) 58)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 ((|#1| |#1| $) 133 (|has| |#1| (-458))) (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-3093 (((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 119 (|has| |#1| (-562)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 98 (|has| |#1| (-562)))) (-3070 (($ $ |#1|) 129 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-4352 (($ $ |#1|) 128 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-650 |#2|) (-650 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-650 |#2|) (-650 $)) NIL)) (-3290 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3447 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3221 (((-537 |#2|) $) NIL) (((-777) $ |#2|) 45) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-1771 (($ $) NIL)) (-4389 (($ $) 35)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| |#1| (-620 (-542))) (|has| |#2| (-620 (-542))))) (($ (-959 (-413 (-570)))) NIL (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))))) (($ (-959 (-570))) NIL (-2740 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1753 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (($ (-959 |#1|)) NIL (|has| |#2| (-620 (-1186)))) (((-1168) $) NIL (-12 (|has| |#1| (-1047 (-570))) (|has| |#2| (-620 (-1186))))) (((-959 |#1|) $) NIL (|has| |#2| (-620 (-1186))))) (-3621 ((|#1| $) 132 (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-959 |#1|) $) NIL (|has| |#2| (-620 (-1186)))) (((-1134 |#1| |#2|) $) 18) (($ (-1134 |#1| |#2|)) 19) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) 47) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) 13 T CONST)) (-2603 (((-3 (-112) "failed") $ $) NIL)) (-1824 (($) 37 T CONST)) (-2726 (($ $ $ $ (-777)) 105 (|has| |#1| (-562)))) (-4073 (($ $ $ (-777)) 104 (|has| |#1| (-562)))) (-2791 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 75)) (-2953 (($ $ $) 85)) (** (($ $ (-928)) NIL) (($ $ (-777)) 70)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 62) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 61) (($ $ |#1|) NIL)))
(((-786 |#1| |#2|) (-13 (-1074 |#1| (-537 |#2|) |#2|) (-619 (-1134 |#1| |#2|)) (-1047 (-1134 |#1| |#2|))) (-1058) (-856)) (T -786))
NIL
(-13 (-1074 |#1| (-537 |#2|) |#2|) (-619 (-1134 |#1| |#2|)) (-1047 (-1134 |#1| |#2|)))
-((-1351 (((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)) 13)))
-(((-787 |#1| |#2|) (-10 -7 (-15 -1351 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)))) (-1058) (-1058)) (T -787))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-788 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-788 *6)) (-5 *1 (-787 *5 *6)))))
-(-10 -7 (-15 -1351 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 12)) (-3618 (((-1276 |#1|) $ (-777)) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-3930 (($ (-1182 |#1|)) NIL)) (-3703 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4425 (((-650 $) $ $) 54 (|has| |#1| (-562)))) (-3766 (($ $ $) 50 (|has| |#1| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2662 (($ $ (-777)) NIL)) (-3008 (($ $ (-777)) NIL)) (-2105 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL) (((-3 (-1182 |#1|) "failed") $) 10)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL) (((-1182 |#1|) $) NIL)) (-1939 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 58 (|has| |#1| (-174)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3252 (($ $ $) NIL)) (-1325 (($ $ $) 87 (|has| |#1| (-562)))) (-3369 (((-2 (|:| -1441 |#1|) (|:| -3331 $) (|:| -2785 $)) $ $) 86 (|has| |#1| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-777) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-3157 (((-777) $ $) NIL (|has| |#1| (-562)))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1704 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-3553 (($ $ (-777)) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1490 (($ $ $) 27)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1091)) NIL) (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-4341 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-4414 (($ (-1 (-777) (-777)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3189 (((-1182 |#1|) $) NIL)) (-3382 (((-3 (-1091) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1835 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3184 (-777))) $ $) 37)) (-1408 (($ $ $) 41)) (-2999 (($ $ $) 47)) (-2680 (((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $) 46)) (-1903 (((-1168) $) NIL)) (-3769 (($ $ $) 56 (|has| |#1| (-562)))) (-3781 (((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777)) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-1091)) (|:| -1907 (-777))) "failed") $) NIL)) (-3555 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2314 (($) NIL (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-1888 (((-2 (|:| -1874 $) (|:| |coef2| $)) $ $) 82 (|has| |#1| (-562)))) (-4288 (((-2 (|:| -1874 $) (|:| |coef1| $)) $ $) 78 (|has| |#1| (-562)))) (-2253 (((-2 (|:| -1939 |#1|) (|:| |coef2| $)) $ $) 70 (|has| |#1| (-562)))) (-2501 (((-2 (|:| -1939 |#1|) (|:| |coef1| $)) $ $) 66 (|has| |#1| (-562)))) (-1834 (((-112) $) 13)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-2096 (($ $ (-777) |#1| $) 26)) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2838 (((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 74 (|has| |#1| (-562)))) (-4427 (((-2 (|:| -1939 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 62 (|has| |#1| (-562)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-4112 (((-3 $ "failed") $ (-777)) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-2998 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1601 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2486 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1091)) NIL) (((-1182 |#1|) $) 7) (($ (-1182 |#1|)) 8) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) 28 T CONST)) (-1823 (($) 32 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) 40) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 31) (($ $ |#1|) NIL)))
-(((-788 |#1|) (-13 (-1252 |#1|) (-619 (-1182 |#1|)) (-1047 (-1182 |#1|)) (-10 -8 (-15 -2096 ($ $ (-777) |#1| $)) (-15 -1490 ($ $ $)) (-15 -1835 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3184 (-777))) $ $)) (-15 -1408 ($ $ $)) (-15 -2680 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2999 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -4425 ((-650 $) $ $)) (-15 -3769 ($ $ $)) (-15 -2838 ((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4288 ((-2 (|:| -1874 $) (|:| |coef1| $)) $ $)) (-15 -1888 ((-2 (|:| -1874 $) (|:| |coef2| $)) $ $)) (-15 -4427 ((-2 (|:| -1939 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2501 ((-2 (|:| -1939 |#1|) (|:| |coef1| $)) $ $)) (-15 -2253 ((-2 (|:| -1939 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1058)) (T -788))
-((-2096 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-1490 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-1835 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -3184 (-777)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-1408 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2680 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1441 *3) (|:| |gap| (-777)) (|:| -3331 (-788 *3)) (|:| -2785 (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-2999 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-4425 (*1 *2 *1 *1) (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3769 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-562)) (-4 *2 (-1058)))) (-2838 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-4288 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-1888 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-4427 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1939 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-2501 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1939 *3) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-2253 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1939 *3) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(-13 (-1252 |#1|) (-619 (-1182 |#1|)) (-1047 (-1182 |#1|)) (-10 -8 (-15 -2096 ($ $ (-777) |#1| $)) (-15 -1490 ($ $ $)) (-15 -1835 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3184 (-777))) $ $)) (-15 -1408 ($ $ $)) (-15 -2680 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2999 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -4425 ((-650 $) $ $)) (-15 -3769 ($ $ $)) (-15 -2838 ((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4288 ((-2 (|:| -1874 $) (|:| |coef1| $)) $ $)) (-15 -1888 ((-2 (|:| -1874 $) (|:| |coef2| $)) $ $)) (-15 -4427 ((-2 (|:| -1939 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2501 ((-2 (|:| -1939 |#1|) (|:| |coef1| $)) $ $)) (-15 -2253 ((-2 (|:| -1939 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-4106 ((|#1| (-777) |#1|) 33 (|has| |#1| (-38 (-413 (-570)))))) (-4346 ((|#1| (-777) |#1|) 23)) (-4218 ((|#1| (-777) |#1|) 35 (|has| |#1| (-38 (-413 (-570)))))))
-(((-789 |#1|) (-10 -7 (-15 -4346 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -4218 (|#1| (-777) |#1|)) (-15 -4106 (|#1| (-777) |#1|))) |%noBranch|)) (-174)) (T -789))
-((-4106 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-4218 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-4346 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-174)))))
-(-10 -7 (-15 -4346 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -4218 (|#1| (-777) |#1|)) (-15 -4106 (|#1| (-777) |#1|))) |%noBranch|))
-((-2416 (((-112) $ $) 7)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) 86)) (-2411 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1716 (((-650 |#3|) $) 34)) (-3418 (((-112) $) 27)) (-1536 (((-112) $) 18 (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) 102) (((-112) $) 98)) (-4200 ((|#4| |#4| $) 93)) (-2222 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) 28)) (-3594 (((-112) $ (-777)) 45)) (-1424 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 80)) (-2450 (($) 46 T CONST)) (-3809 (((-112) $) 23 (|has| |#1| (-562)))) (-2730 (((-112) $ $) 25 (|has| |#1| (-562)))) (-1905 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2374 (((-112) $) 26 (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3742 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-2561 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1808 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) 106)) (-2974 (((-112) |#4| $) 137)) (-3333 (((-112) |#4| $) 134)) (-3052 (((-112) |#4| $) 138) (((-112) $) 135)) (-2836 (((-650 |#4|) $) 53 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) 105) (((-112) $) 104)) (-2711 ((|#3| $) 35)) (-2742 (((-112) $ (-777)) 44)) (-2849 (((-650 |#4|) $) 54 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 48)) (-3727 (((-650 |#3|) $) 33)) (-1844 (((-112) |#3| $) 32)) (-3452 (((-112) $ (-777)) 43)) (-1903 (((-1168) $) 10)) (-1796 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3769 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1728 (((-3 |#4| "failed") $) 84)) (-2395 (((-650 $) |#4| $) 130)) (-3235 (((-3 (-112) (-650 $)) |#4| $) 133)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2307 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2731 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3185 (((-650 |#4|) $) 108)) (-1329 (((-112) |#4| $) 100) (((-112) $) 96)) (-1695 ((|#4| |#4| $) 91)) (-4122 (((-112) $ $) 111)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) 101) (((-112) $) 97)) (-3339 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3802 (((-3 $ "failed") $ |#4|) 79)) (-1558 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1671 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) 39)) (-3329 (((-112) $) 42)) (-3743 (($) 41)) (-1601 (((-777) $) 107)) (-3486 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4448)))) (-3915 (($ $) 40)) (-1416 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 61)) (-4280 (($ $ |#3|) 29)) (-2185 (($ $ |#3|) 31)) (-1892 (($ $) 89)) (-1332 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-1633 (((-777) $) 77 (|has| |#3| (-373)))) (-1859 (((-112) $ $) 9)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4194 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4368 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) 82)) (-1985 (((-112) |#4| $) 136)) (-2663 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
+((-1352 (((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)) 13)))
+(((-787 |#1| |#2|) (-10 -7 (-15 -1352 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)))) (-1058) (-1058)) (T -787))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-788 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-788 *6)) (-5 *1 (-787 *5 *6)))))
+(-10 -7 (-15 -1352 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 12)) (-3056 (((-1277 |#1|) $ (-777)) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-4267 (($ (-1182 |#1|)) NIL)) (-3702 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2302 (((-650 $) $ $) 54 (|has| |#1| (-562)))) (-2037 (($ $ $) 50 (|has| |#1| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2038 (($ $ (-777)) NIL)) (-3393 (($ $ (-777)) NIL)) (-1484 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL) (((-3 (-1182 |#1|) "failed") $) 10)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL) (((-1182 |#1|) $) NIL)) (-3383 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 58 (|has| |#1| (-174)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3996 (($ $ $) NIL)) (-1763 (($ $ $) 87 (|has| |#1| (-562)))) (-2526 (((-2 (|:| -1442 |#1|) (|:| -3389 $) (|:| -3831 $)) $ $) 86 (|has| |#1| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-777) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4331 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1705 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-1876 (($ $ (-777)) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1581 (($ $ $) 27)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1091)) NIL) (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-2730 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-2206 (($ (-1 (-777) (-777)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1551 (((-1182 |#1|) $) NIL)) (-2645 (((-3 (-1091) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1801 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1496 (-777))) $ $) 37)) (-4347 (($ $ $) 41)) (-3301 (($ $ $) 47)) (-2205 (((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $) 46)) (-4268 (((-1168) $) NIL)) (-2068 (($ $ $) 56 (|has| |#1| (-562)))) (-2166 (((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777)) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-1091)) (|:| -3011 (-777))) "failed") $) NIL)) (-3722 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2315 (($) NIL (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-4122 (((-2 (|:| -1874 $) (|:| |coef2| $)) $ $) 82 (|has| |#1| (-562)))) (-3473 (((-2 (|:| -1874 $) (|:| |coef1| $)) $ $) 78 (|has| |#1| (-562)))) (-3615 (((-2 (|:| -3383 |#1|) (|:| |coef2| $)) $ $) 70 (|has| |#1| (-562)))) (-4260 (((-2 (|:| -3383 |#1|) (|:| |coef1| $)) $ $) 66 (|has| |#1| (-562)))) (-1835 (((-112) $) 13)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1386 (($ $ (-777) |#1| $) 26)) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-3093 (((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 74 (|has| |#1| (-562)))) (-2321 (((-2 (|:| -3383 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 62 (|has| |#1| (-562)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-2377 (((-3 $ "failed") $ (-777)) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3290 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3221 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-4099 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1091)) NIL) (((-1182 |#1|) $) 7) (($ (-1182 |#1|)) 8) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) 28 T CONST)) (-1824 (($) 32 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) 40) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 31) (($ $ |#1|) NIL)))
+(((-788 |#1|) (-13 (-1253 |#1|) (-619 (-1182 |#1|)) (-1047 (-1182 |#1|)) (-10 -8 (-15 -1386 ($ $ (-777) |#1| $)) (-15 -1581 ($ $ $)) (-15 -1801 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1496 (-777))) $ $)) (-15 -4347 ($ $ $)) (-15 -2205 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -3301 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -2302 ((-650 $) $ $)) (-15 -2068 ($ $ $)) (-15 -3093 ((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3473 ((-2 (|:| -1874 $) (|:| |coef1| $)) $ $)) (-15 -4122 ((-2 (|:| -1874 $) (|:| |coef2| $)) $ $)) (-15 -2321 ((-2 (|:| -3383 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4260 ((-2 (|:| -3383 |#1|) (|:| |coef1| $)) $ $)) (-15 -3615 ((-2 (|:| -3383 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1058)) (T -788))
+((-1386 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-1581 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-1801 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -1496 (-777)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-4347 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2205 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1442 *3) (|:| |gap| (-777)) (|:| -3389 (-788 *3)) (|:| -3831 (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-3301 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2302 (*1 *2 *1 *1) (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-2068 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-562)) (-4 *2 (-1058)))) (-3093 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3473 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-4122 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-2321 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3383 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-4260 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3383 *3) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3615 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3383 *3) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(-13 (-1253 |#1|) (-619 (-1182 |#1|)) (-1047 (-1182 |#1|)) (-10 -8 (-15 -1386 ($ $ (-777) |#1| $)) (-15 -1581 ($ $ $)) (-15 -1801 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1496 (-777))) $ $)) (-15 -4347 ($ $ $)) (-15 -2205 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -3301 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -2302 ((-650 $) $ $)) (-15 -2068 ($ $ $)) (-15 -3093 ((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3473 ((-2 (|:| -1874 $) (|:| |coef1| $)) $ $)) (-15 -4122 ((-2 (|:| -1874 $) (|:| |coef2| $)) $ $)) (-15 -2321 ((-2 (|:| -3383 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4260 ((-2 (|:| -3383 |#1|) (|:| |coef1| $)) $ $)) (-15 -3615 ((-2 (|:| -3383 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-2343 ((|#1| (-777) |#1|) 33 (|has| |#1| (-38 (-413 (-570)))))) (-2784 ((|#1| (-777) |#1|) 23)) (-4066 ((|#1| (-777) |#1|) 35 (|has| |#1| (-38 (-413 (-570)))))))
+(((-789 |#1|) (-10 -7 (-15 -2784 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -4066 (|#1| (-777) |#1|)) (-15 -2343 (|#1| (-777) |#1|))) |%noBranch|)) (-174)) (T -789))
+((-2343 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-4066 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-2784 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-174)))))
+(-10 -7 (-15 -2784 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -4066 (|#1| (-777) |#1|)) (-15 -2343 (|#1| (-777) |#1|))) |%noBranch|))
+((-2417 (((-112) $ $) 7)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) 86)) (-1556 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1713 (((-650 |#3|) $) 34)) (-2977 (((-112) $) 27)) (-3873 (((-112) $) 18 (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) 102) (((-112) $) 98)) (-3870 ((|#4| |#4| $) 93)) (-3252 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) 28)) (-4095 (((-112) $ (-777)) 45)) (-1425 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-3761 (($) 46 T CONST)) (-2391 (((-112) $) 23 (|has| |#1| (-562)))) (-1475 (((-112) $ $) 25 (|has| |#1| (-562)))) (-2993 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2376 (((-112) $) 26 (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2996 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-3565 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) 106)) (-3045 (((-112) |#4| $) 137)) (-3412 (((-112) |#4| $) 134)) (-2561 (((-112) |#4| $) 138) (((-112) $) 135)) (-2835 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) 105) (((-112) $) 104)) (-2451 ((|#3| $) 35)) (-1586 (((-112) $ (-777)) 44)) (-3201 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 48)) (-2881 (((-650 |#3|) $) 33)) (-3710 (((-112) |#3| $) 32)) (-2113 (((-112) $ (-777)) 43)) (-4268 (((-1168) $) 10)) (-1444 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-2068 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1729 (((-3 |#4| "failed") $) 84)) (-1403 (((-650 $) |#4| $) 130)) (-3840 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2885 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1486 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-1507 (((-650 |#4|) $) 108)) (-1810 (((-112) |#4| $) 100) (((-112) $) 96)) (-1831 ((|#4| |#4| $) 91)) (-2458 (((-112) $ $) 111)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) 101) (((-112) $) 97)) (-3464 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2329 (((-3 $ "failed") $ |#4|) 79)) (-4102 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-2697 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) 39)) (-3366 (((-112) $) 42)) (-3006 (($) 41)) (-3221 (((-777) $) 107)) (-3490 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3916 (($ $) 40)) (-1417 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 61)) (-3408 (($ $ |#3|) 29)) (-4164 (($ $ |#3|) 31)) (-4148 (($ $) 89)) (-1842 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3580 (((-777) $) 77 (|has| |#3| (-373)))) (-3866 (((-112) $ $) 9)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-3811 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-2964 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) 82)) (-2626 (((-112) |#4| $) 136)) (-2048 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
(((-790 |#1| |#2| |#3| |#4|) (-141) (-458) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -790))
NIL
(-13 (-1080 |t#1| |t#2| |t#3| |t#4|))
-(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1080 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1219 |#1| |#2| |#3| |#4|) . T) ((-1226) . T))
-((-2363 (((-3 (-384) "failed") (-320 |#1|) (-928)) 62 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-384) "failed") (-320 |#1|)) 54 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-384) "failed") (-413 (-959 |#1|)) (-928)) 41 (|has| |#1| (-562))) (((-3 (-384) "failed") (-413 (-959 |#1|))) 40 (|has| |#1| (-562))) (((-3 (-384) "failed") (-959 |#1|) (-928)) 31 (|has| |#1| (-1058))) (((-3 (-384) "failed") (-959 |#1|)) 30 (|has| |#1| (-1058)))) (-3409 (((-384) (-320 |#1|) (-928)) 99 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-384) (-320 |#1|)) 94 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-384) (-413 (-959 |#1|)) (-928)) 91 (|has| |#1| (-562))) (((-384) (-413 (-959 |#1|))) 90 (|has| |#1| (-562))) (((-384) (-959 |#1|) (-928)) 86 (|has| |#1| (-1058))) (((-384) (-959 |#1|)) 85 (|has| |#1| (-1058))) (((-384) |#1| (-928)) 76) (((-384) |#1|) 22)) (-3518 (((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)) 71 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-320 (-171 |#1|))) 70 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-320 |#1|) (-928)) 63 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-320 |#1|)) 61 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928)) 46 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|)))) 45 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928)) 39 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-413 (-959 |#1|))) 38 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)) 28 (|has| |#1| (-1058))) (((-3 (-171 (-384)) "failed") (-959 |#1|)) 26 (|has| |#1| (-1058))) (((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)) 18 (|has| |#1| (-174))) (((-3 (-171 (-384)) "failed") (-959 (-171 |#1|))) 15 (|has| |#1| (-174)))) (-3645 (((-171 (-384)) (-320 (-171 |#1|)) (-928)) 102 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-320 (-171 |#1|))) 101 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-320 |#1|) (-928)) 100 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-320 |#1|)) 98 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928)) 93 (|has| |#1| (-562))) (((-171 (-384)) (-413 (-959 (-171 |#1|)))) 92 (|has| |#1| (-562))) (((-171 (-384)) (-413 (-959 |#1|)) (-928)) 89 (|has| |#1| (-562))) (((-171 (-384)) (-413 (-959 |#1|))) 88 (|has| |#1| (-562))) (((-171 (-384)) (-959 |#1|) (-928)) 84 (|has| |#1| (-1058))) (((-171 (-384)) (-959 |#1|)) 83 (|has| |#1| (-1058))) (((-171 (-384)) (-959 (-171 |#1|)) (-928)) 78 (|has| |#1| (-174))) (((-171 (-384)) (-959 (-171 |#1|))) 77 (|has| |#1| (-174))) (((-171 (-384)) (-171 |#1|) (-928)) 80 (|has| |#1| (-174))) (((-171 (-384)) (-171 |#1|)) 79 (|has| |#1| (-174))) (((-171 (-384)) |#1| (-928)) 27) (((-171 (-384)) |#1|) 25)))
-(((-791 |#1|) (-10 -7 (-15 -3409 ((-384) |#1|)) (-15 -3409 ((-384) |#1| (-928))) (-15 -3645 ((-171 (-384)) |#1|)) (-15 -3645 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3645 ((-171 (-384)) (-171 |#1|))) (-15 -3645 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3409 ((-384) (-959 |#1|))) (-15 -3409 ((-384) (-959 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 |#1|))) (-15 -3645 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3409 ((-384) (-413 (-959 |#1|)))) (-15 -3409 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3409 ((-384) (-320 |#1|))) (-15 -3409 ((-384) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 |#1|))) (-15 -3645 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -2363 ((-3 (-384) "failed") (-959 |#1|))) (-15 -2363 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -2363 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -2363 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -2363 ((-3 (-384) "failed") (-320 |#1|))) (-15 -2363 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|)) (-620 (-384))) (T -791))
-((-3518 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3518 (*1 *2 *3) (|partial| -12 (-5 *3 (-320 (-171 *4))) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3518 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3518 (*1 *2 *3) (|partial| -12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2363 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-2363 (*1 *2 *3) (|partial| -12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3518 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-413 (-959 (-171 *5)))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3518 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 (-171 *4)))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3518 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3518 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2363 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-2363 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3518 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3518 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2363 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-2363 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3518 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-959 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-174)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3518 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-320 (-171 *4))) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-171 *5)))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 (-171 *4)))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-174)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-171 *5)) (-5 *4 (-928)) (-4 *5 (-174)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-171 *4)) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3645 (*1 *2 *3) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3409 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))) (-3409 (*1 *2 *3) (-12 (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))))
-(-10 -7 (-15 -3409 ((-384) |#1|)) (-15 -3409 ((-384) |#1| (-928))) (-15 -3645 ((-171 (-384)) |#1|)) (-15 -3645 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3645 ((-171 (-384)) (-171 |#1|))) (-15 -3645 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3409 ((-384) (-959 |#1|))) (-15 -3409 ((-384) (-959 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 |#1|))) (-15 -3645 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3409 ((-384) (-413 (-959 |#1|)))) (-15 -3409 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3409 ((-384) (-320 |#1|))) (-15 -3409 ((-384) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 |#1|))) (-15 -3645 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -2363 ((-3 (-384) "failed") (-959 |#1|))) (-15 -2363 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -2363 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -2363 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -2363 ((-3 (-384) "failed") (-320 |#1|))) (-15 -2363 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -3518 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|))
-((-4141 (((-928) (-1168)) 92)) (-4051 (((-3 (-384) "failed") (-1168)) 36)) (-4085 (((-384) (-1168)) 34)) (-2609 (((-928) (-1168)) 63)) (-4002 (((-1168) (-928)) 75)) (-2534 (((-1168) (-928)) 62)))
-(((-792) (-10 -7 (-15 -2534 ((-1168) (-928))) (-15 -2609 ((-928) (-1168))) (-15 -4002 ((-1168) (-928))) (-15 -4141 ((-928) (-1168))) (-15 -4085 ((-384) (-1168))) (-15 -4051 ((-3 (-384) "failed") (-1168))))) (T -792))
-((-4051 (*1 *2 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-4085 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-4141 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-4002 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))) (-2609 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-2534 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
-(-10 -7 (-15 -2534 ((-1168) (-928))) (-15 -2609 ((-928) (-1168))) (-15 -4002 ((-1168) (-928))) (-15 -4141 ((-928) (-1168))) (-15 -4085 ((-384) (-1168))) (-15 -4051 ((-3 (-384) "failed") (-1168))))
-((-2416 (((-112) $ $) 7)) (-2248 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 16) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 14)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 17) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1080 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
+((-2295 (((-3 (-384) "failed") (-320 |#1|) (-928)) 62 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-384) "failed") (-320 |#1|)) 54 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-384) "failed") (-413 (-959 |#1|)) (-928)) 41 (|has| |#1| (-562))) (((-3 (-384) "failed") (-413 (-959 |#1|))) 40 (|has| |#1| (-562))) (((-3 (-384) "failed") (-959 |#1|) (-928)) 31 (|has| |#1| (-1058))) (((-3 (-384) "failed") (-959 |#1|)) 30 (|has| |#1| (-1058)))) (-3409 (((-384) (-320 |#1|) (-928)) 99 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-384) (-320 |#1|)) 94 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-384) (-413 (-959 |#1|)) (-928)) 91 (|has| |#1| (-562))) (((-384) (-413 (-959 |#1|))) 90 (|has| |#1| (-562))) (((-384) (-959 |#1|) (-928)) 86 (|has| |#1| (-1058))) (((-384) (-959 |#1|)) 85 (|has| |#1| (-1058))) (((-384) |#1| (-928)) 76) (((-384) |#1|) 22)) (-1500 (((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)) 71 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-320 (-171 |#1|))) 70 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-320 |#1|) (-928)) 63 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-320 |#1|)) 61 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928)) 46 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|)))) 45 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928)) 39 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-413 (-959 |#1|))) 38 (|has| |#1| (-562))) (((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)) 28 (|has| |#1| (-1058))) (((-3 (-171 (-384)) "failed") (-959 |#1|)) 26 (|has| |#1| (-1058))) (((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)) 18 (|has| |#1| (-174))) (((-3 (-171 (-384)) "failed") (-959 (-171 |#1|))) 15 (|has| |#1| (-174)))) (-3645 (((-171 (-384)) (-320 (-171 |#1|)) (-928)) 102 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-320 (-171 |#1|))) 101 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-320 |#1|) (-928)) 100 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-320 |#1|)) 98 (-12 (|has| |#1| (-562)) (|has| |#1| (-856)))) (((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928)) 93 (|has| |#1| (-562))) (((-171 (-384)) (-413 (-959 (-171 |#1|)))) 92 (|has| |#1| (-562))) (((-171 (-384)) (-413 (-959 |#1|)) (-928)) 89 (|has| |#1| (-562))) (((-171 (-384)) (-413 (-959 |#1|))) 88 (|has| |#1| (-562))) (((-171 (-384)) (-959 |#1|) (-928)) 84 (|has| |#1| (-1058))) (((-171 (-384)) (-959 |#1|)) 83 (|has| |#1| (-1058))) (((-171 (-384)) (-959 (-171 |#1|)) (-928)) 78 (|has| |#1| (-174))) (((-171 (-384)) (-959 (-171 |#1|))) 77 (|has| |#1| (-174))) (((-171 (-384)) (-171 |#1|) (-928)) 80 (|has| |#1| (-174))) (((-171 (-384)) (-171 |#1|)) 79 (|has| |#1| (-174))) (((-171 (-384)) |#1| (-928)) 27) (((-171 (-384)) |#1|) 25)))
+(((-791 |#1|) (-10 -7 (-15 -3409 ((-384) |#1|)) (-15 -3409 ((-384) |#1| (-928))) (-15 -3645 ((-171 (-384)) |#1|)) (-15 -3645 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3645 ((-171 (-384)) (-171 |#1|))) (-15 -3645 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3409 ((-384) (-959 |#1|))) (-15 -3409 ((-384) (-959 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 |#1|))) (-15 -3645 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3409 ((-384) (-413 (-959 |#1|)))) (-15 -3409 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3409 ((-384) (-320 |#1|))) (-15 -3409 ((-384) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 |#1|))) (-15 -3645 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -2295 ((-3 (-384) "failed") (-959 |#1|))) (-15 -2295 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -2295 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -2295 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -2295 ((-3 (-384) "failed") (-320 |#1|))) (-15 -2295 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|)) (-620 (-384))) (T -791))
+((-1500 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-320 (-171 *4))) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-1500 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2295 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-2295 (*1 *2 *3) (|partial| -12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-1500 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-413 (-959 (-171 *5)))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 (-171 *4)))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-1500 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2295 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-2295 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-1500 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2295 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-2295 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-1500 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-959 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-174)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-320 (-171 *4))) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-171 *5)))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 (-171 *4)))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058)) (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-174)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *3 (-171 *5)) (-5 *4 (-928)) (-4 *5 (-174)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-171 *4)) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3645 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3645 (*1 *2 *3) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3409 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))) (-3409 (*1 *2 *3) (-12 (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))))
+(-10 -7 (-15 -3409 ((-384) |#1|)) (-15 -3409 ((-384) |#1| (-928))) (-15 -3645 ((-171 (-384)) |#1|)) (-15 -3645 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3645 ((-171 (-384)) (-171 |#1|))) (-15 -3645 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3409 ((-384) (-959 |#1|))) (-15 -3409 ((-384) (-959 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-959 |#1|))) (-15 -3645 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3409 ((-384) (-413 (-959 |#1|)))) (-15 -3409 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3645 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3645 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3409 ((-384) (-320 |#1|))) (-15 -3409 ((-384) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 |#1|))) (-15 -3645 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3645 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -2295 ((-3 (-384) "failed") (-959 |#1|))) (-15 -2295 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -2295 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -2295 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -2295 ((-3 (-384) "failed") (-320 |#1|))) (-15 -2295 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -1500 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|))
+((-1459 (((-928) (-1168)) 92)) (-2970 (((-3 (-384) "failed") (-1168)) 36)) (-2171 (((-384) (-1168)) 34)) (-2760 (((-928) (-1168)) 63)) (-3742 (((-1168) (-928)) 75)) (-3289 (((-1168) (-928)) 62)))
+(((-792) (-10 -7 (-15 -3289 ((-1168) (-928))) (-15 -2760 ((-928) (-1168))) (-15 -3742 ((-1168) (-928))) (-15 -1459 ((-928) (-1168))) (-15 -2171 ((-384) (-1168))) (-15 -2970 ((-3 (-384) "failed") (-1168))))) (T -792))
+((-2970 (*1 *2 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-2171 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-1459 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-3742 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))) (-2760 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-3289 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+(-10 -7 (-15 -3289 ((-1168) (-928))) (-15 -2760 ((-928) (-1168))) (-15 -3742 ((-1168) (-928))) (-15 -1459 ((-928) (-1168))) (-15 -2171 ((-384) (-1168))) (-15 -2970 ((-3 (-384) "failed") (-1168))))
+((-2417 (((-112) $ $) 7)) (-3558 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 16) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 14)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 17) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-793) (-141)) (T -793))
-((-1788 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-2248 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-1788 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-2248 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
-(-13 (-1109) (-10 -7 (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2248 ((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2248 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)))))
+((-1363 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-3558 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-1363 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-3558 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
+(-13 (-1109) (-10 -7 (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3558 ((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3558 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3133 (((-1281) (-1276 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))) (-384) (-1276 (-384)) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384))) 55) (((-1281) (-1276 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))) (-384) (-1276 (-384)) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384))) 52)) (-4058 (((-1281) (-1276 (-384)) (-570) (-384) (-384) (-570) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384))) 61)) (-3590 (((-1281) (-1276 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384))) 50)) (-2897 (((-1281) (-1276 (-384)) (-570) (-384) (-384) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384))) 63) (((-1281) (-1276 (-384)) (-570) (-384) (-384) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384))) 62)))
-(((-794) (-10 -7 (-15 -2897 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))) (-15 -2897 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)))) (-15 -3590 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))) (-15 -3133 ((-1281) (-1276 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))) (-384) (-1276 (-384)) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))) (-15 -3133 ((-1281) (-1276 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))) (-384) (-1276 (-384)) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)))) (-15 -4058 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-570) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))))) (T -794))
-((-4058 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384))) (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281)) (-5 *1 (-794)))) (-3133 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-570)) (-5 *6 (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384)))) (-5 *7 (-1 (-1281) (-1276 *5) (-1276 *5) (-384))) (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281)) (-5 *1 (-794)))) (-3133 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-570)) (-5 *6 (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384)))) (-5 *7 (-1 (-1281) (-1276 *5) (-1276 *5) (-384))) (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281)) (-5 *1 (-794)))) (-3590 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384))) (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281)) (-5 *1 (-794)))) (-2897 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384))) (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281)) (-5 *1 (-794)))) (-2897 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384))) (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281)) (-5 *1 (-794)))))
-(-10 -7 (-15 -2897 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))) (-15 -2897 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)))) (-15 -3590 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))) (-15 -3133 ((-1281) (-1276 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))) (-384) (-1276 (-384)) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))) (-15 -3133 ((-1281) (-1276 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))) (-384) (-1276 (-384)) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)) (-1276 (-384)))) (-15 -4058 ((-1281) (-1276 (-384)) (-570) (-384) (-384) (-570) (-1 (-1281) (-1276 (-384)) (-1276 (-384)) (-384)))))
-((-3069 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 66)) (-2003 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 42)) (-1430 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 65)) (-4382 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 40)) (-3536 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 64)) (-2657 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 26)) (-3532 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 43)) (-4151 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 41)) (-1557 (((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 39)))
-(((-795) (-10 -7 (-15 -1557 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -4151 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -3532 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2657 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4382 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2003 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3536 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1430 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3069 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))) (T -795))
-((-3069 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1430 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-3536 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2003 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-4382 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2657 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-3532 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-4151 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1557 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))))
-(-10 -7 (-15 -1557 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -4151 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -3532 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2657 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4382 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2003 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3536 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1430 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3069 ((-2 (|:| -2195 (-384)) (|:| -3578 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))
-((-2217 (((-1221 |#1|) |#1| (-227) (-570)) 69)))
-(((-796 |#1|) (-10 -7 (-15 -2217 ((-1221 |#1|) |#1| (-227) (-570)))) (-983)) (T -796))
-((-2217 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-227)) (-5 *5 (-570)) (-5 *2 (-1221 *3)) (-5 *1 (-796 *3)) (-4 *3 (-983)))))
-(-10 -7 (-15 -2217 ((-1221 |#1|) |#1| (-227) (-570))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 25)) (-3596 (((-3 $ "failed") $ $) 27)) (-2450 (($) 24 T CONST)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2965 (($ $ $) 31) (($ $) 30)) (-2954 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29)))
+((-2193 (((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384))) 55) (((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 52)) (-3043 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 61)) (-4075 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 50)) (-3683 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384))) 63) (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 62)))
+(((-794) (-10 -7 (-15 -3683 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3683 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -4075 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -2193 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -2193 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -3043 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))))) (T -794))
+((-3043 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-2193 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-570)) (-5 *6 (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384)))) (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-2193 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-570)) (-5 *6 (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384)))) (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-4075 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-3683 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-3683 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))))
+(-10 -7 (-15 -3683 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3683 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -4075 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -2193 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -2193 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -3043 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))))
+((-2738 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 66)) (-2809 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 42)) (-1419 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 65)) (-3099 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 40)) (-1680 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 64)) (-2009 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 26)) (-1636 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 43)) (-1547 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 41)) (-4090 (((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 39)))
+(((-795) (-10 -7 (-15 -4090 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1547 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1636 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2009 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3099 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2809 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1680 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1419 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2738 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))) (T -795))
+((-2738 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1419 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1680 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2809 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-3099 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2009 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1636 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1547 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-4090 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))))
+(-10 -7 (-15 -4090 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1547 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1636 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2009 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3099 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2809 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1680 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1419 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2738 ((-2 (|:| -2196 (-384)) (|:| -3577 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))
+((-3188 (((-1222 |#1|) |#1| (-227) (-570)) 69)))
+(((-796 |#1|) (-10 -7 (-15 -3188 ((-1222 |#1|) |#1| (-227) (-570)))) (-983)) (T -796))
+((-3188 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-227)) (-5 *5 (-570)) (-5 *2 (-1222 *3)) (-5 *1 (-796 *3)) (-4 *3 (-983)))))
+(-10 -7 (-15 -3188 ((-1222 |#1|) |#1| (-227) (-570))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 25)) (-4119 (((-3 $ "failed") $ $) 27)) (-3761 (($) 24 T CONST)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2965 (($ $ $) 31) (($ $) 30)) (-2953 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29)))
(((-797) (-141)) (T -797))
NIL
(-13 (-801) (-21))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-856) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 25)) (-2450 (($) 24 T CONST)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2954 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 25)) (-3761 (($) 24 T CONST)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2953 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
(((-798) (-141)) (T -798))
NIL
(-13 (-800) (-23))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-800) . T) ((-856) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 25)) (-3947 (($ $ $) 28)) (-3596 (((-3 $ "failed") $ $) 27)) (-2450 (($) 24 T CONST)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2954 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 25)) (-3125 (($ $ $) 28)) (-4119 (((-3 $ "failed") $ $) 27)) (-3761 (($) 24 T CONST)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2953 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
(((-799) (-141)) (T -799))
-((-3947 (*1 *1 *1 *1) (-4 *1 (-799))))
-(-13 (-801) (-10 -8 (-15 -3947 ($ $ $))))
+((-3125 (*1 *1 *1 *1) (-4 *1 (-799))))
+(-13 (-801) (-10 -8 (-15 -3125 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-856) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2954 (($ $ $) 21)) (* (($ (-928) $) 22)))
+((-2417 (((-112) $ $) 7)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2953 (($ $ $) 21)) (* (($ (-928) $) 22)))
(((-800) (-141)) (T -800))
NIL
(-13 (-856) (-25))
(((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-856) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 25)) (-3596 (((-3 $ "failed") $ $) 27)) (-2450 (($) 24 T CONST)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2954 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 25)) (-4119 (((-3 $ "failed") $ $) 27)) (-3761 (($) 24 T CONST)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2953 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
(((-801) (-141)) (T -801))
NIL
(-13 (-798) (-132))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-798) . T) ((-800) . T) ((-856) . T) ((-1109) . T))
-((-4028 (((-112) $) 42)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 43)) (-2951 (((-3 (-413 (-570)) "failed") $) 78)) (-2085 (((-112) $) 72)) (-3137 (((-413 (-570)) $) 76)) (-2610 ((|#2| $) 26)) (-1351 (($ (-1 |#2| |#2|) $) 23)) (-1825 (($ $) 58)) (-1416 (((-542) $) 67)) (-3684 (($ $) 21)) (-3735 (((-868) $) 53) (($ (-570)) 40) (($ |#2|) 38) (($ (-413 (-570))) NIL)) (-2744 (((-777)) 10)) (-1423 ((|#2| $) 71)) (-2872 (((-112) $ $) 30)) (-2894 (((-112) $ $) 69)) (-2965 (($ $) 32) (($ $ $) NIL)) (-2954 (($ $ $) 31)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 33)))
-(((-802 |#1| |#2|) (-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -1423 (|#2| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -3684 (|#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -4028 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-803 |#2|) (-174)) (T -802))
-((-2744 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-802 *3 *4)) (-4 *3 (-803 *4)))))
-(-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -1423 (|#2| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -3684 (|#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -4028 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-3403 (((-777)) 58 (|has| |#1| (-373)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 97 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 94)) (-3080 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 95)) (-3413 (((-3 $ "failed") $) 37)) (-3765 ((|#1| $) 84)) (-2951 (((-3 (-413 (-570)) "failed") $) 71 (|has| |#1| (-551)))) (-2085 (((-112) $) 73 (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) 72 (|has| |#1| (-551)))) (-3336 (($) 61 (|has| |#1| (-373)))) (-2081 (((-112) $) 35)) (-3241 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 75)) (-2610 ((|#1| $) 76)) (-3310 (($ $ $) 67 (|has| |#1| (-856)))) (-3787 (($ $ $) 66 (|has| |#1| (-856)))) (-1351 (($ (-1 |#1| |#1|) $) 86)) (-2367 (((-928) $) 60 (|has| |#1| (-373)))) (-1903 (((-1168) $) 10)) (-1825 (($ $) 70 (|has| |#1| (-368)))) (-2159 (($ (-928)) 59 (|has| |#1| (-373)))) (-1599 ((|#1| $) 81)) (-2137 ((|#1| $) 82)) (-3044 ((|#1| $) 83)) (-2366 ((|#1| $) 77)) (-2470 ((|#1| $) 78)) (-1630 ((|#1| $) 79)) (-4426 ((|#1| $) 80)) (-3479 (((-1129) $) 11)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) 92 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 91 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 90 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 89 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 88 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 87 (|has| |#1| (-520 (-1186) |#1|)))) (-1876 (($ $ |#1|) 93 (|has| |#1| (-290 |#1| |#1|)))) (-1416 (((-542) $) 68 (|has| |#1| (-620 (-542))))) (-3684 (($ $) 85)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 98 (|has| |#1| (-1047 (-413 (-570)))))) (-1918 (((-3 $ "failed") $) 69 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1423 ((|#1| $) 74 (|has| |#1| (-1069)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 64 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 63 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 65 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 62 (|has| |#1| (-856)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-2745 (((-112) $) 42)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 43)) (-4147 (((-3 (-413 (-570)) "failed") $) 78)) (-4373 (((-112) $) 72)) (-2220 (((-413 (-570)) $) 76)) (-2771 ((|#2| $) 26)) (-1352 (($ (-1 |#2| |#2|) $) 23)) (-1826 (($ $) 58)) (-1417 (((-542) $) 67)) (-2488 (($ $) 21)) (-3735 (((-868) $) 53) (($ (-570)) 40) (($ |#2|) 38) (($ (-413 (-570))) NIL)) (-1609 (((-777)) 10)) (-1367 ((|#2| $) 71)) (-2872 (((-112) $ $) 30)) (-2894 (((-112) $ $) 69)) (-2965 (($ $) 32) (($ $ $) NIL)) (-2953 (($ $ $) 31)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 33)))
+(((-802 |#1| |#2|) (-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -1367 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -2488 (|#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -2745 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-803 |#2|) (-174)) (T -802))
+((-1609 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-802 *3 *4)) (-4 *3 (-803 *4)))))
+(-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -1367 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -2488 (|#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -2745 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3403 (((-777)) 58 (|has| |#1| (-373)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 97 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 94)) (-3080 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 95)) (-2937 (((-3 $ "failed") $) 37)) (-3766 ((|#1| $) 84)) (-4147 (((-3 (-413 (-570)) "failed") $) 71 (|has| |#1| (-551)))) (-4373 (((-112) $) 73 (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) 72 (|has| |#1| (-551)))) (-3336 (($) 61 (|has| |#1| (-373)))) (-4340 (((-112) $) 35)) (-3898 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 75)) (-2771 ((|#1| $) 76)) (-3311 (($ $ $) 67 (|has| |#1| (-856)))) (-2222 (($ $ $) 66 (|has| |#1| (-856)))) (-1352 (($ (-1 |#1| |#1|) $) 86)) (-2332 (((-928) $) 60 (|has| |#1| (-373)))) (-4268 (((-1168) $) 10)) (-1826 (($ $) 70 (|has| |#1| (-368)))) (-2160 (($ (-928)) 59 (|has| |#1| (-373)))) (-3198 ((|#1| $) 81)) (-1828 ((|#1| $) 82)) (-2502 ((|#1| $) 83)) (-2324 ((|#1| $) 77)) (-3959 ((|#1| $) 78)) (-3557 ((|#1| $) 79)) (-2311 ((|#1| $) 80)) (-3479 (((-1129) $) 11)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) 92 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 91 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 90 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 89 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 88 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 87 (|has| |#1| (-520 (-1186) |#1|)))) (-1877 (($ $ |#1|) 93 (|has| |#1| (-290 |#1| |#1|)))) (-1417 (((-542) $) 68 (|has| |#1| (-620 (-542))))) (-2488 (($ $) 85)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 98 (|has| |#1| (-1047 (-413 (-570)))))) (-3127 (((-3 $ "failed") $) 69 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1367 ((|#1| $) 74 (|has| |#1| (-1069)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 64 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 63 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 65 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 62 (|has| |#1| (-856)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-803 |#1|) (-141) (-174)) (T -803))
-((-3684 (*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3765 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3044 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2137 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1599 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-4426 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1630 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2470 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2366 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2610 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3241 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1423 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-2085 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-3137 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2951 (*1 *2 *1) (|partial| -12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-1825 (*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-368)))))
-(-13 (-38 |t#1|) (-417 |t#1|) (-343 |t#1|) (-10 -8 (-15 -3684 ($ $)) (-15 -3765 (|t#1| $)) (-15 -3044 (|t#1| $)) (-15 -2137 (|t#1| $)) (-15 -1599 (|t#1| $)) (-15 -4426 (|t#1| $)) (-15 -1630 (|t#1| $)) (-15 -2470 (|t#1| $)) (-15 -2366 (|t#1| $)) (-15 -2610 (|t#1| $)) (-15 -3241 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -1423 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -1825 ($ $)) |%noBranch|)))
+((-2488 (*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3766 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2502 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1828 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3198 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2311 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3959 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2324 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3898 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1367 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-4373 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-2220 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-4147 (*1 *2 *1) (|partial| -12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-1826 (*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-368)))))
+(-13 (-38 |t#1|) (-417 |t#1|) (-343 |t#1|) (-10 -8 (-15 -2488 ($ $)) (-15 -3766 (|t#1| $)) (-15 -2502 (|t#1| $)) (-15 -1828 (|t#1| $)) (-15 -3198 (|t#1| $)) (-15 -2311 (|t#1| $)) (-15 -3557 (|t#1| $)) (-15 -3959 (|t#1| $)) (-15 -2324 (|t#1| $)) (-15 -2771 (|t#1| $)) (-15 -3898 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -1367 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -1826 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0=(-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-373) |has| |#1| (-373)) ((-343 |#1|) . T) ((-417 |#1|) . T) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-732) . T) ((-856) |has| |#1| (-856)) ((-1047 #0#) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1351 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-804 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#3| (-1 |#4| |#2|) |#1|))) (-803 |#2|) (-174) (-803 |#4|) (-174)) (T -804))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-4 *2 (-803 *6)) (-5 *1 (-804 *4 *5 *2 *6)) (-4 *4 (-803 *5)))))
-(-10 -7 (-15 -1351 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-1008 |#1|) "failed") $) 35) (((-3 (-570) "failed") $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 ((|#1| $) NIL) (((-1008 |#1|) $) 33) (((-570) $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-413 (-570)) $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3413 (((-3 $ "failed") $) NIL)) (-3765 ((|#1| $) 16)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-2085 (((-112) $) NIL (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3336 (($) NIL (|has| |#1| (-373)))) (-2081 (((-112) $) NIL)) (-3241 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-1008 |#1|) (-1008 |#1|)) 29)) (-2610 ((|#1| $) NIL)) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-1599 ((|#1| $) 22)) (-2137 ((|#1| $) 20)) (-3044 ((|#1| $) 18)) (-2366 ((|#1| $) 26)) (-2470 ((|#1| $) 25)) (-1630 ((|#1| $) 24)) (-4426 ((|#1| $) 23)) (-3479 (((-1129) $) NIL)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-1876 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3684 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1008 |#1|)) 30) (($ (-413 (-570))) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1423 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1812 (($) 8 T CONST)) (-1823 (($) 12 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-805 |#1|) (-13 (-803 |#1|) (-417 (-1008 |#1|)) (-10 -8 (-15 -3241 ($ (-1008 |#1|) (-1008 |#1|))))) (-174)) (T -805))
-((-3241 (*1 *1 *2 *2) (-12 (-5 *2 (-1008 *3)) (-4 *3 (-174)) (-5 *1 (-805 *3)))))
-(-13 (-803 |#1|) (-417 (-1008 |#1|)) (-10 -8 (-15 -3241 ($ (-1008 |#1|) (-1008 |#1|)))))
-((-2416 (((-112) $ $) 7)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2813 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 14)) (-2872 (((-112) $ $) 6)))
+((-1352 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-804 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#3| (-1 |#4| |#2|) |#1|))) (-803 |#2|) (-174) (-803 |#4|) (-174)) (T -804))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-4 *2 (-803 *6)) (-5 *1 (-804 *4 *5 *2 *6)) (-4 *4 (-803 *5)))))
+(-10 -7 (-15 -1352 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-1008 |#1|) "failed") $) 35) (((-3 (-570) "failed") $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3080 ((|#1| $) NIL) (((-1008 |#1|) $) 33) (((-570) $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-413 (-570)) $) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2937 (((-3 $ "failed") $) NIL)) (-3766 ((|#1| $) 16)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-4373 (((-112) $) NIL (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3336 (($) NIL (|has| |#1| (-373)))) (-4340 (((-112) $) NIL)) (-3898 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-1008 |#1|) (-1008 |#1|)) 29)) (-2771 ((|#1| $) NIL)) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-3198 ((|#1| $) 22)) (-1828 ((|#1| $) 20)) (-2502 ((|#1| $) 18)) (-2324 ((|#1| $) 26)) (-3959 ((|#1| $) 25)) (-3557 ((|#1| $) 24)) (-2311 ((|#1| $) 23)) (-3479 (((-1129) $) NIL)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-1877 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-2488 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1008 |#1|)) 30) (($ (-413 (-570))) NIL (-2740 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1367 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1814 (($) 8 T CONST)) (-1824 (($) 12 T CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-805 |#1|) (-13 (-803 |#1|) (-417 (-1008 |#1|)) (-10 -8 (-15 -3898 ($ (-1008 |#1|) (-1008 |#1|))))) (-174)) (T -805))
+((-3898 (*1 *1 *2 *2) (-12 (-5 *2 (-1008 *3)) (-4 *3 (-174)) (-5 *1 (-805 *3)))))
+(-13 (-803 |#1|) (-417 (-1008 |#1|)) (-10 -8 (-15 -3898 ($ (-1008 |#1|) (-1008 |#1|)))))
+((-2417 (((-112) $ $) 7)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-4130 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 14)) (-2872 (((-112) $ $) 6)))
(((-806) (-141)) (T -806))
-((-1788 (*1 *2 *3 *4) (-12 (-4 *1 (-806)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)))))) (-2813 (*1 *2 *3) (-12 (-4 *1 (-806)) (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-1044)))))
-(-13 (-1109) (-10 -7 (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2813 ((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
+((-1363 (*1 *2 *3 *4) (-12 (-4 *1 (-806)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)))))) (-4130 (*1 *2 *3) (-12 (-4 *1 (-806)) (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-1044)))))
+(-13 (-1109) (-10 -7 (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4130 ((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2445 (((-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#3| |#2| (-1186)) 19)))
-(((-807 |#1| |#2| |#3|) (-10 -7 (-15 -2445 ((-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#3| |#2| (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1211) (-966)) (-662 |#2|)) (T -807))
-((-2445 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1186)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-4 *4 (-13 (-29 *6) (-1211) (-966))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2331 (-650 *4)))) (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
-(-10 -7 (-15 -2445 ((-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#3| |#2| (-1186))))
-((-1654 (((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|)) 28) (((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186)) 18) (((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186)) 24) (((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186)) 26) (((-3 (-650 (-1276 |#2|)) "failed") (-695 |#2|) (-1186)) 37) (((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-695 |#2|) (-1276 |#2|) (-1186)) 35)))
-(((-808 |#1| |#2|) (-10 -7 (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-695 |#2|) (-1276 |#2|) (-1186))) (-15 -1654 ((-3 (-650 (-1276 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -1654 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -1654 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1211) (-966))) (T -808))
-((-1654 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-298 *2)) (-5 *5 (-650 *2)) (-4 *2 (-13 (-29 *6) (-1211) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-808 *6 *2)))) (-1654 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-298 *2)) (-5 *4 (-115)) (-5 *5 (-650 *2)) (-4 *2 (-13 (-29 *6) (-1211) (-966))) (-5 *1 (-808 *6 *2)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))))) (-1654 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-115)) (-5 *5 (-1186)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -2331 (-650 *3))) *3 "failed")) (-5 *1 (-808 *6 *3)) (-4 *3 (-13 (-29 *6) (-1211) (-966))))) (-1654 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1211) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -2331 (-650 *7))) *7 "failed")) (-5 *1 (-808 *6 *7)))) (-1654 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115))) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1211) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-2 (|:| |particular| (-1276 *7)) (|:| -2331 (-650 (-1276 *7))))) (-5 *1 (-808 *6 *7)))) (-1654 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115))) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1211) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-2 (|:| |particular| (-1276 *7)) (|:| -2331 (-650 (-1276 *7))))) (-5 *1 (-808 *6 *7)))) (-1654 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-695 *6)) (-5 *4 (-1186)) (-4 *6 (-13 (-29 *5) (-1211) (-966))) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-1276 *6))) (-5 *1 (-808 *5 *6)))) (-1654 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-695 *7)) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1211) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-2 (|:| |particular| (-1276 *7)) (|:| -2331 (-650 (-1276 *7))))) (-5 *1 (-808 *6 *7)) (-5 *4 (-1276 *7)))))
-(-10 -7 (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-695 |#2|) (-1276 |#2|) (-1186))) (-15 -1654 ((-3 (-650 (-1276 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#2|)) (|:| -2331 (-650 (-1276 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -1654 ((-3 (-2 (|:| |particular| |#2|) (|:| -2331 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -1654 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -1654 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|))))
-((-1938 (($) 9)) (-1639 (((-3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))) "failed") (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 30)) (-2760 (((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 27)) (-2278 (($ (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) 24)) (-2483 (($ (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) 22)) (-2748 (((-1281)) 11)))
-(((-809) (-10 -8 (-15 -1938 ($)) (-15 -2748 ((-1281))) (-15 -2760 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -2483 ($ (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -2278 ($ (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -1639 ((-3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))) "failed") (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -809))
-((-1639 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) (-5 *1 (-809)))) (-2278 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) (-5 *1 (-809)))) (-2483 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-5 *1 (-809)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-5 *1 (-809)))) (-2748 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-809)))) (-1938 (*1 *1) (-5 *1 (-809))))
-(-10 -8 (-15 -1938 ($)) (-15 -2748 ((-1281))) (-15 -2760 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -2483 ($ (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -2278 ($ (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2223 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -1639 ((-3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))) "failed") (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-3744 ((|#2| |#2| (-1186)) 17)) (-3610 ((|#2| |#2| (-1186)) 56)) (-2737 (((-1 |#2| |#2|) (-1186)) 11)))
-(((-810 |#1| |#2|) (-10 -7 (-15 -3744 (|#2| |#2| (-1186))) (-15 -3610 (|#2| |#2| (-1186))) (-15 -2737 ((-1 |#2| |#2|) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1211) (-966))) (T -810))
-((-2737 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-1 *5 *5)) (-5 *1 (-810 *4 *5)) (-4 *5 (-13 (-29 *4) (-1211) (-966))))) (-3610 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1211) (-966))))) (-3744 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1211) (-966))))))
-(-10 -7 (-15 -3744 (|#2| |#2| (-1186))) (-15 -3610 (|#2| |#2| (-1186))) (-15 -2737 ((-1 |#2| |#2|) (-1186))))
-((-1654 (((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384)) 131) (((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384)) 132) (((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384)) 134) (((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384)) 136) (((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384)) 137) (((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384))) 139) (((-1044) (-814) (-1072)) 123) (((-1044) (-814)) 124)) (-1788 (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072)) 83) (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814)) 85)))
-(((-811) (-10 -7 (-15 -1654 ((-1044) (-814))) (-15 -1654 ((-1044) (-814) (-1072))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))) (T -811))
-((-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-1788 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1276 (-320 *4))) (-5 *5 (-650 (-384))) (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1276 (-320 *4))) (-5 *5 (-650 (-384))) (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1276 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1276 (-320 *4))) (-5 *5 (-650 (-384))) (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1276 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1276 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-1654 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1044)) (-5 *1 (-811)))))
-(-10 -7 (-15 -1654 ((-1044) (-814))) (-15 -1654 ((-1044) (-814) (-1072))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -1654 ((-1044) (-1276 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))
-((-2585 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2331 (-650 |#4|))) (-659 |#4|) |#4|) 33)))
-(((-812 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2585 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2331 (-650 |#4|))) (-659 |#4|) |#4|))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -812))
-((-2585 (*1 *2 *3 *4) (-12 (-5 *3 (-659 *4)) (-4 *4 (-347 *5 *6 *7)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-812 *5 *6 *7 *4)))))
-(-10 -7 (-15 -2585 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2331 (-650 |#4|))) (-659 |#4|) |#4|)))
-((-2504 (((-2 (|:| -4300 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))) 53)) (-1340 (((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#4| |#2|) 62) (((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#4|) 61) (((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#3| |#2|) 20) (((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#3|) 21)) (-3265 ((|#2| |#4| |#1|) 63) ((|#2| |#3| |#1|) 28)) (-3676 ((|#2| |#3| (-650 (-413 |#2|))) 111) (((-3 |#2| "failed") |#3| (-413 |#2|)) 107)))
-(((-813 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3676 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -3676 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#3|)) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#3| |#2|)) (-15 -3265 (|#2| |#3| |#1|)) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#4|)) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#4| |#2|)) (-15 -3265 (|#2| |#4| |#1|)) (-15 -2504 ((-2 (|:| -4300 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1252 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -813))
-((-2504 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-2 (|:| -4300 *7) (|:| |rh| (-650 (-413 *6))))) (-5 *1 (-813 *5 *6 *7 *3)) (-5 *4 (-650 (-413 *6))) (-4 *7 (-662 *6)) (-4 *3 (-662 (-413 *6))))) (-3265 (*1 *2 *3 *4) (-12 (-4 *2 (-1252 *4)) (-5 *1 (-813 *4 *2 *5 *3)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-662 *2)) (-4 *3 (-662 (-413 *2))))) (-1340 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1252 *5)) (-5 *2 (-650 (-2 (|:| -2177 *4) (|:| -3428 *4)))) (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4)) (-4 *3 (-662 (-413 *4))))) (-1340 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *2 (-650 (-2 (|:| -2177 *5) (|:| -3428 *5)))) (-5 *1 (-813 *4 *5 *6 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 (-413 *5))))) (-3265 (*1 *2 *3 *4) (-12 (-4 *2 (-1252 *4)) (-5 *1 (-813 *4 *2 *3 *5)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *5 (-662 (-413 *2))))) (-1340 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1252 *5)) (-5 *2 (-650 (-2 (|:| -2177 *4) (|:| -3428 *4)))) (-5 *1 (-813 *5 *4 *3 *6)) (-4 *3 (-662 *4)) (-4 *6 (-662 (-413 *4))))) (-1340 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *2 (-650 (-2 (|:| -2177 *5) (|:| -3428 *5)))) (-5 *1 (-813 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-3676 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-413 *2))) (-4 *2 (-1252 *5)) (-5 *1 (-813 *5 *2 *3 *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *6 (-662 (-413 *2))))) (-3676 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-413 *2)) (-4 *2 (-1252 *5)) (-5 *1 (-813 *5 *2 *3 *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *6 (-662 *4)))))
-(-10 -7 (-15 -3676 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -3676 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#3|)) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#3| |#2|)) (-15 -3265 (|#2| |#3| |#1|)) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#4|)) (-15 -1340 ((-650 (-2 (|:| -2177 |#2|) (|:| -3428 |#2|))) |#4| |#2|)) (-15 -3265 (|#2| |#4| |#1|)) (-15 -2504 ((-2 (|:| -4300 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|)))))
-((-2416 (((-112) $ $) NIL)) (-3080 (((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $) 13)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 12)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-814) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3080 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))) (T -814))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-814)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-814)))))
-(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3080 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))
-((-3808 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4300 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|)) 157)) (-3466 (((-650 (-2 (|:| |poly| |#2|) (|:| -4300 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 54)) (-3597 (((-650 (-2 (|:| |deg| (-777)) (|:| -4300 |#2|))) |#3|) 126)) (-2333 ((|#2| |#3|) 45)) (-1432 (((-650 (-2 (|:| -3640 |#1|) (|:| -4300 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 103)) (-2273 ((|#3| |#3| (-413 |#2|)) 74) ((|#3| |#3| |#2|) 100)))
-(((-815 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2333 (|#2| |#3|)) (-15 -3597 ((-650 (-2 (|:| |deg| (-777)) (|:| -4300 |#2|))) |#3|)) (-15 -1432 ((-650 (-2 (|:| -3640 |#1|) (|:| -4300 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3466 ((-650 (-2 (|:| |poly| |#2|) (|:| -4300 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3808 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4300 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2273 (|#3| |#3| |#2|)) (-15 -2273 (|#3| |#3| (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1252 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -815))
-((-2273 (*1 *2 *2 *3) (-12 (-5 *3 (-413 *5)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *1 (-815 *4 *5 *2 *6)) (-4 *2 (-662 *5)) (-4 *6 (-662 *3)))) (-2273 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-1252 *4)) (-5 *1 (-815 *4 *3 *2 *5)) (-4 *2 (-662 *3)) (-4 *5 (-662 (-413 *3))))) (-3808 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-650 *7) *7 (-1182 *7))) (-5 *5 (-1 (-424 *7) *7)) (-4 *7 (-1252 *6)) (-4 *6 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-5 *2 (-650 (-2 (|:| |frac| (-413 *7)) (|:| -4300 *3)))) (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7)) (-4 *8 (-662 (-413 *7))))) (-3466 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4300 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-1432 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-2 (|:| -3640 *5) (|:| -4300 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-3597 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4300 *5)))) (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-2333 (*1 *2 *3) (-12 (-4 *2 (-1252 *4)) (-5 *1 (-815 *4 *2 *3 *5)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *5 (-662 (-413 *2))))))
-(-10 -7 (-15 -2333 (|#2| |#3|)) (-15 -3597 ((-650 (-2 (|:| |deg| (-777)) (|:| -4300 |#2|))) |#3|)) (-15 -1432 ((-650 (-2 (|:| -3640 |#1|) (|:| -4300 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3466 ((-650 (-2 (|:| |poly| |#2|) (|:| -4300 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3808 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4300 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2273 (|#3| |#3| |#2|)) (-15 -2273 (|#3| |#3| (-413 |#2|))))
-((-1392 (((-2 (|:| -2331 (-650 (-413 |#2|))) (|:| -3442 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|))) 149) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2331 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|)) 148) (((-2 (|:| -2331 (-650 (-413 |#2|))) (|:| -3442 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|))) 143) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2331 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|)) 141)) (-4086 ((|#2| (-660 |#2| (-413 |#2|))) 89) ((|#2| (-659 (-413 |#2|))) 92)))
-(((-816 |#1| |#2|) (-10 -7 (-15 -1392 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2331 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -1392 ((-2 (|:| -2331 (-650 (-413 |#2|))) (|:| -3442 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -1392 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2331 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -1392 ((-2 (|:| -2331 (-650 (-413 |#2|))) (|:| -3442 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -4086 (|#2| (-659 (-413 |#2|)))) (-15 -4086 (|#2| (-660 |#2| (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1252 |#1|)) (T -816))
-((-4086 (*1 *2 *3) (-12 (-5 *3 (-660 *2 (-413 *2))) (-4 *2 (-1252 *4)) (-5 *1 (-816 *4 *2)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))))) (-4086 (*1 *2 *3) (-12 (-5 *3 (-659 (-413 *2))) (-4 *2 (-1252 *4)) (-5 *1 (-816 *4 *2)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))))) (-1392 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| -2331 (-650 (-413 *6))) (|:| -3442 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-1392 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-816 *5 *6)))) (-1392 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| -2331 (-650 (-413 *6))) (|:| -3442 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-1392 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-816 *5 *6)))))
-(-10 -7 (-15 -1392 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2331 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -1392 ((-2 (|:| -2331 (-650 (-413 |#2|))) (|:| -3442 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -1392 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2331 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -1392 ((-2 (|:| -2331 (-650 (-413 |#2|))) (|:| -3442 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -4086 (|#2| (-659 (-413 |#2|)))) (-15 -4086 (|#2| (-660 |#2| (-413 |#2|)))))
-((-2384 (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#1|))) |#5| |#4|) 52)))
-(((-817 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2384 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#1|))) |#5| |#4|))) (-368) (-662 |#1|) (-1252 |#1|) (-730 |#1| |#3|) (-662 |#4|)) (T -817))
-((-2384 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *7 (-1252 *5)) (-4 *4 (-730 *5 *7)) (-5 *2 (-2 (|:| -3442 (-695 *6)) (|:| |vec| (-1276 *5)))) (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
-(-10 -7 (-15 -2384 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#1|))) |#5| |#4|)))
-((-3808 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4300 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 47)) (-1507 (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 171 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|))) 168 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 172 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|))) 170 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|)) 38) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 39) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|)) 36) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 37)) (-3466 (((-650 (-2 (|:| |poly| |#2|) (|:| -4300 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 99)))
-(((-818 |#1| |#2|) (-10 -7 (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -3808 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4300 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3466 ((-650 (-2 (|:| |poly| |#2|) (|:| -4300 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1252 |#1|)) (T -818))
-((-1507 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))) (-1507 (*1 *2 *3) (-12 (-5 *3 (-660 *5 (-413 *5))) (-4 *5 (-1252 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5)))) (-1507 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))) (-1507 (*1 *2 *3) (-12 (-5 *3 (-659 (-413 *5))) (-4 *5 (-1252 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5)))) (-3466 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4300 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-3808 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-2 (|:| |frac| (-413 *6)) (|:| -4300 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-1507 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-660 *7 (-413 *7))) (-5 *4 (-1 (-650 *6) *7)) (-5 *5 (-1 (-424 *7) *7)) (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *7 (-1252 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7)))) (-1507 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))) (-1507 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-659 (-413 *7))) (-5 *4 (-1 (-650 *6) *7)) (-5 *5 (-1 (-424 *7) *7)) (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *7 (-1252 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7)))) (-1507 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))))
-(-10 -7 (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -3808 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4300 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3466 ((-650 (-2 (|:| |poly| |#2|) (|:| -4300 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -1507 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -1507 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|))
-((-2468 (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#1|))) (-695 |#2|) (-1276 |#1|)) 110) (((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1276 |#1|)) (|:| -4300 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1276 |#1|)) 15)) (-2620 (((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-695 |#2|) (-1276 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2331 (-650 |#1|))) |#2| |#1|)) 116)) (-1654 (((-3 (-2 (|:| |particular| (-1276 |#1|)) (|:| -2331 (-695 |#1|))) "failed") (-695 |#1|) (-1276 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed") |#2| |#1|)) 52)))
-(((-819 |#1| |#2|) (-10 -7 (-15 -2468 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1276 |#1|)) (|:| -4300 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1276 |#1|))) (-15 -2468 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#1|))) (-695 |#2|) (-1276 |#1|))) (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#1|)) (|:| -2331 (-695 |#1|))) "failed") (-695 |#1|) (-1276 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -2620 ((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-695 |#2|) (-1276 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2331 (-650 |#1|))) |#2| |#1|)))) (-368) (-662 |#1|)) (T -819))
-((-2620 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2331 (-650 *6))) *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1276 *6) "failed")) (|:| -2331 (-650 (-1276 *6))))) (-5 *1 (-819 *6 *7)) (-5 *4 (-1276 *6)))) (-1654 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -2331 (-650 *6))) "failed") *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-1276 *6)) (|:| -2331 (-695 *6)))) (-5 *1 (-819 *6 *7)) (-5 *3 (-695 *6)) (-5 *4 (-1276 *6)))) (-2468 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-662 *5)) (-5 *2 (-2 (|:| -3442 (-695 *6)) (|:| |vec| (-1276 *5)))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1276 *5)))) (-2468 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| A (-695 *5)) (|:| |eqs| (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1276 *5)) (|:| -4300 *6) (|:| |rh| *5)))))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)) (-4 *6 (-662 *5)))))
-(-10 -7 (-15 -2468 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1276 |#1|)) (|:| -4300 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1276 |#1|))) (-15 -2468 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#1|))) (-695 |#2|) (-1276 |#1|))) (-15 -1654 ((-3 (-2 (|:| |particular| (-1276 |#1|)) (|:| -2331 (-695 |#1|))) "failed") (-695 |#1|) (-1276 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2331 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -2620 ((-2 (|:| |particular| (-3 (-1276 |#1|) "failed")) (|:| -2331 (-650 (-1276 |#1|)))) (-695 |#2|) (-1276 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2331 (-650 |#1|))) |#2| |#1|))))
-((-2472 (((-695 |#1|) (-650 |#1|) (-777)) 14) (((-695 |#1|) (-650 |#1|)) 15)) (-1331 (((-3 (-1276 |#1|) "failed") |#2| |#1| (-650 |#1|)) 39)) (-1974 (((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)) 46)))
-(((-820 |#1| |#2|) (-10 -7 (-15 -2472 ((-695 |#1|) (-650 |#1|))) (-15 -2472 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -1331 ((-3 (-1276 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -1974 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -820))
-((-1974 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-650 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-368)) (-5 *1 (-820 *2 *3)) (-4 *3 (-662 *2)))) (-1331 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-1276 *4)) (-5 *1 (-820 *4 *3)) (-4 *3 (-662 *4)))) (-2472 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-368)) (-5 *2 (-695 *5)) (-5 *1 (-820 *5 *6)) (-4 *6 (-662 *5)))) (-2472 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4)) (-5 *1 (-820 *4 *5)) (-4 *5 (-662 *4)))))
-(-10 -7 (-15 -2472 ((-695 |#1|) (-650 |#1|))) (-15 -2472 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -1331 ((-3 (-1276 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -1974 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4028 (((-112) $) NIL (|has| |#2| (-132)))) (-3561 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3947 (($ $ $) NIL (|has| |#2| (-799)))) (-3596 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#2| (-373)))) (-3140 (((-570) $) NIL (|has| |#2| (-854)))) (-3895 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) NIL (|has| |#2| (-1109)))) (-4177 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-3413 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3336 (($) NIL (|has| |#2| (-373)))) (-3790 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ (-570)) NIL)) (-1522 (((-112) $) NIL (|has| |#2| (-854)))) (-2836 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL (|has| |#2| (-732)))) (-2761 (((-112) $) NIL (|has| |#2| (-854)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2849 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#2| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-2159 (($ (-928)) NIL (|has| |#2| (-373)))) (-3479 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3443 ((|#2| $) NIL (|has| (-570) (-856)))) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-2809 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3791 (($ (-1276 |#2|)) NIL)) (-2184 (((-135)) NIL (|has| |#2| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-3486 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1276 |#2|) $) NIL) (($ (-570)) NIL (-2740 (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) NIL (|has| |#2| (-1109))) (((-868) $) NIL (|has| |#2| (-619 (-868))))) (-2744 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-1859 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4368 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1423 (($ $) NIL (|has| |#2| (-854)))) (-1812 (($) NIL (|has| |#2| (-132)) CONST)) (-1823 (($) NIL (|has| |#2| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2872 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2913 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2894 (((-112) $ $) 11 (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-2954 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) NIL (|has| |#2| (-732))) (($ $ |#2|) NIL (|has| |#2| (-732))) (($ |#2| $) NIL (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-821 |#1| |#2| |#3|) (-240 |#1| |#2|) (-777) (-799) (-1 (-112) (-1276 |#2|) (-1276 |#2|))) (T -821))
+((-1875 (((-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#3| |#2| (-1186)) 19)))
+(((-807 |#1| |#2| |#3|) (-10 -7 (-15 -1875 ((-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#3| |#2| (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966)) (-662 |#2|)) (T -807))
+((-1875 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1186)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-4 *4 (-13 (-29 *6) (-1212) (-966))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2003 (-650 *4)))) (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
+(-10 -7 (-15 -1875 ((-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#3| |#2| (-1186))))
+((-2524 (((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|)) 28) (((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186)) 18) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186)) 24) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186)) 26) (((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186)) 37) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186)) 35)))
+(((-808 |#1| |#2|) (-10 -7 (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186))) (-15 -2524 ((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -2524 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -2524 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -808))
+((-2524 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-298 *2)) (-5 *5 (-650 *2)) (-4 *2 (-13 (-29 *6) (-1212) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-808 *6 *2)))) (-2524 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-298 *2)) (-5 *4 (-115)) (-5 *5 (-650 *2)) (-4 *2 (-13 (-29 *6) (-1212) (-966))) (-5 *1 (-808 *6 *2)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))))) (-2524 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-115)) (-5 *5 (-1186)) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -2003 (-650 *3))) *3 "failed")) (-5 *1 (-808 *6 *3)) (-4 *3 (-13 (-29 *6) (-1212) (-966))))) (-2524 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1212) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -2003 (-650 *7))) *7 "failed")) (-5 *1 (-808 *6 *7)))) (-2524 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115))) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1212) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-2 (|:| |particular| (-1277 *7)) (|:| -2003 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)))) (-2524 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115))) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1212) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-2 (|:| |particular| (-1277 *7)) (|:| -2003 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)))) (-2524 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-695 *6)) (-5 *4 (-1186)) (-4 *6 (-13 (-29 *5) (-1212) (-966))) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-1277 *6))) (-5 *1 (-808 *5 *6)))) (-2524 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-695 *7)) (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1212) (-966))) (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-2 (|:| |particular| (-1277 *7)) (|:| -2003 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)) (-5 *4 (-1277 *7)))))
+(-10 -7 (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186))) (-15 -2524 ((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -2003 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -2524 ((-3 (-2 (|:| |particular| |#2|) (|:| -2003 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -2524 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -2524 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|))))
+((-3371 (($) 9)) (-2409 (((-3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))) "failed") (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 30)) (-2761 (((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 27)) (-2599 (($ (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) 24)) (-4076 (($ (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) 22)) (-1639 (((-1282)) 11)))
+(((-809) (-10 -8 (-15 -3371 ($)) (-15 -1639 ((-1282))) (-15 -2761 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -4076 ($ (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -2599 ($ (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -2409 ((-3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))) "failed") (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -809))
+((-2409 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) (-5 *1 (-809)))) (-2599 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) (-5 *1 (-809)))) (-4076 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-5 *1 (-809)))) (-2761 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-5 *1 (-809)))) (-1639 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-809)))) (-3371 (*1 *1) (-5 *1 (-809))))
+(-10 -8 (-15 -3371 ($)) (-15 -1639 ((-1282))) (-15 -2761 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -4076 ($ (-650 (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -2599 ($ (-2 (|:| -2013 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2224 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -2409 ((-3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))) "failed") (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-3744 ((|#2| |#2| (-1186)) 17)) (-4270 ((|#2| |#2| (-1186)) 56)) (-1541 (((-1 |#2| |#2|) (-1186)) 11)))
+(((-810 |#1| |#2|) (-10 -7 (-15 -3744 (|#2| |#2| (-1186))) (-15 -4270 (|#2| |#2| (-1186))) (-15 -1541 ((-1 |#2| |#2|) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -810))
+((-1541 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-1 *5 *5)) (-5 *1 (-810 *4 *5)) (-4 *5 (-13 (-29 *4) (-1212) (-966))))) (-4270 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1212) (-966))))) (-3744 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1212) (-966))))))
+(-10 -7 (-15 -3744 (|#2| |#2| (-1186))) (-15 -4270 (|#2| |#2| (-1186))) (-15 -1541 ((-1 |#2| |#2|) (-1186))))
+((-2524 (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384)) 131) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384)) 132) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384)) 134) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384)) 136) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384)) 137) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384))) 139) (((-1044) (-814) (-1072)) 123) (((-1044) (-814)) 124)) (-1363 (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072)) 83) (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814)) 85)))
+(((-811) (-10 -7 (-15 -2524 ((-1044) (-814))) (-15 -2524 ((-1044) (-814) (-1072))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))) (T -811))
+((-1363 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-1363 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1277 (-320 *4))) (-5 *5 (-650 (-384))) (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1277 (-320 *4))) (-5 *5 (-650 (-384))) (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1277 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1277 (-320 *4))) (-5 *5 (-650 (-384))) (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1277 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1277 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1044)) (-5 *1 (-811)))))
+(-10 -7 (-15 -2524 ((-1044) (-814))) (-15 -2524 ((-1044) (-814) (-1072))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -2524 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))
+((-2530 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2003 (-650 |#4|))) (-659 |#4|) |#4|) 33)))
+(((-812 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2530 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2003 (-650 |#4|))) (-659 |#4|) |#4|))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -812))
+((-2530 (*1 *2 *3 *4) (-12 (-5 *3 (-659 *4)) (-4 *4 (-347 *5 *6 *7)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-812 *5 *6 *7 *4)))))
+(-10 -7 (-15 -2530 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2003 (-650 |#4|))) (-659 |#4|) |#4|)))
+((-4295 (((-2 (|:| -4302 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))) 53)) (-1913 (((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#4| |#2|) 62) (((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#4|) 61) (((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#3| |#2|) 20) (((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#3|) 21)) (-4091 ((|#2| |#4| |#1|) 63) ((|#2| |#3| |#1|) 28)) (-3667 ((|#2| |#3| (-650 (-413 |#2|))) 111) (((-3 |#2| "failed") |#3| (-413 |#2|)) 107)))
+(((-813 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3667 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -3667 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#3|)) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#3| |#2|)) (-15 -4091 (|#2| |#3| |#1|)) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#4|)) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#4| |#2|)) (-15 -4091 (|#2| |#4| |#1|)) (-15 -4295 ((-2 (|:| -4302 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1253 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -813))
+((-4295 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-2 (|:| -4302 *7) (|:| |rh| (-650 (-413 *6))))) (-5 *1 (-813 *5 *6 *7 *3)) (-5 *4 (-650 (-413 *6))) (-4 *7 (-662 *6)) (-4 *3 (-662 (-413 *6))))) (-4091 (*1 *2 *3 *4) (-12 (-4 *2 (-1253 *4)) (-5 *1 (-813 *4 *2 *5 *3)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-662 *2)) (-4 *3 (-662 (-413 *2))))) (-1913 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2178 *4) (|:| -3428 *4)))) (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4)) (-4 *3 (-662 (-413 *4))))) (-1913 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2178 *5) (|:| -3428 *5)))) (-5 *1 (-813 *4 *5 *6 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 (-413 *5))))) (-4091 (*1 *2 *3 *4) (-12 (-4 *2 (-1253 *4)) (-5 *1 (-813 *4 *2 *3 *5)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *5 (-662 (-413 *2))))) (-1913 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2178 *4) (|:| -3428 *4)))) (-5 *1 (-813 *5 *4 *3 *6)) (-4 *3 (-662 *4)) (-4 *6 (-662 (-413 *4))))) (-1913 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2178 *5) (|:| -3428 *5)))) (-5 *1 (-813 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-3667 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-413 *2))) (-4 *2 (-1253 *5)) (-5 *1 (-813 *5 *2 *3 *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *6 (-662 (-413 *2))))) (-3667 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-413 *2)) (-4 *2 (-1253 *5)) (-5 *1 (-813 *5 *2 *3 *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *6 (-662 *4)))))
+(-10 -7 (-15 -3667 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -3667 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#3|)) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#3| |#2|)) (-15 -4091 (|#2| |#3| |#1|)) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#4|)) (-15 -1913 ((-650 (-2 (|:| -2178 |#2|) (|:| -3428 |#2|))) |#4| |#2|)) (-15 -4091 (|#2| |#4| |#1|)) (-15 -4295 ((-2 (|:| -4302 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|)))))
+((-2417 (((-112) $ $) NIL)) (-3080 (((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $) 13)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 12)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-814) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3080 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))) (T -814))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-814)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-814)))))
+(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3080 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))
+((-2381 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4302 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|)) 157)) (-2236 (((-650 (-2 (|:| |poly| |#2|) (|:| -4302 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 54)) (-4138 (((-650 (-2 (|:| |deg| (-777)) (|:| -4302 |#2|))) |#3|) 126)) (-2022 ((|#2| |#3|) 45)) (-1448 (((-650 (-2 (|:| -3640 |#1|) (|:| -4302 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 103)) (-2557 ((|#3| |#3| (-413 |#2|)) 74) ((|#3| |#3| |#2|) 100)))
+(((-815 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2022 (|#2| |#3|)) (-15 -4138 ((-650 (-2 (|:| |deg| (-777)) (|:| -4302 |#2|))) |#3|)) (-15 -1448 ((-650 (-2 (|:| -3640 |#1|) (|:| -4302 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -2236 ((-650 (-2 (|:| |poly| |#2|) (|:| -4302 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -2381 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4302 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2557 (|#3| |#3| |#2|)) (-15 -2557 (|#3| |#3| (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1253 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -815))
+((-2557 (*1 *2 *2 *3) (-12 (-5 *3 (-413 *5)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *1 (-815 *4 *5 *2 *6)) (-4 *2 (-662 *5)) (-4 *6 (-662 *3)))) (-2557 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-1253 *4)) (-5 *1 (-815 *4 *3 *2 *5)) (-4 *2 (-662 *3)) (-4 *5 (-662 (-413 *3))))) (-2381 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-650 *7) *7 (-1182 *7))) (-5 *5 (-1 (-424 *7) *7)) (-4 *7 (-1253 *6)) (-4 *6 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-5 *2 (-650 (-2 (|:| |frac| (-413 *7)) (|:| -4302 *3)))) (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7)) (-4 *8 (-662 (-413 *7))))) (-2236 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4302 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-1448 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -3640 *5) (|:| -4302 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-4138 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4302 *5)))) (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-2022 (*1 *2 *3) (-12 (-4 *2 (-1253 *4)) (-5 *1 (-815 *4 *2 *3 *5)) (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2)) (-4 *5 (-662 (-413 *2))))))
+(-10 -7 (-15 -2022 (|#2| |#3|)) (-15 -4138 ((-650 (-2 (|:| |deg| (-777)) (|:| -4302 |#2|))) |#3|)) (-15 -1448 ((-650 (-2 (|:| -3640 |#1|) (|:| -4302 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -2236 ((-650 (-2 (|:| |poly| |#2|) (|:| -4302 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -2381 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4302 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2557 (|#3| |#3| |#2|)) (-15 -2557 (|#3| |#3| (-413 |#2|))))
+((-3878 (((-2 (|:| -2003 (-650 (-413 |#2|))) (|:| -2042 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|))) 149) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2003 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|)) 148) (((-2 (|:| -2003 (-650 (-413 |#2|))) (|:| -2042 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|))) 143) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2003 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|)) 141)) (-2181 ((|#2| (-660 |#2| (-413 |#2|))) 89) ((|#2| (-659 (-413 |#2|))) 92)))
+(((-816 |#1| |#2|) (-10 -7 (-15 -3878 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2003 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -3878 ((-2 (|:| -2003 (-650 (-413 |#2|))) (|:| -2042 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -3878 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2003 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -3878 ((-2 (|:| -2003 (-650 (-413 |#2|))) (|:| -2042 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -2181 (|#2| (-659 (-413 |#2|)))) (-15 -2181 (|#2| (-660 |#2| (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -816))
+((-2181 (*1 *2 *3) (-12 (-5 *3 (-660 *2 (-413 *2))) (-4 *2 (-1253 *4)) (-5 *1 (-816 *4 *2)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))))) (-2181 (*1 *2 *3) (-12 (-5 *3 (-659 (-413 *2))) (-4 *2 (-1253 *4)) (-5 *1 (-816 *4 *2)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))))) (-3878 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| -2003 (-650 (-413 *6))) (|:| -2042 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-3878 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-816 *5 *6)))) (-3878 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| -2003 (-650 (-413 *6))) (|:| -2042 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-3878 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-816 *5 *6)))))
+(-10 -7 (-15 -3878 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2003 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -3878 ((-2 (|:| -2003 (-650 (-413 |#2|))) (|:| -2042 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -3878 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -2003 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -3878 ((-2 (|:| -2003 (-650 (-413 |#2|))) (|:| -2042 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -2181 (|#2| (-659 (-413 |#2|)))) (-15 -2181 (|#2| (-660 |#2| (-413 |#2|)))))
+((-4401 (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|) 52)))
+(((-817 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4401 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|))) (-368) (-662 |#1|) (-1253 |#1|) (-730 |#1| |#3|) (-662 |#4|)) (T -817))
+((-4401 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *7 (-1253 *5)) (-4 *4 (-730 *5 *7)) (-5 *2 (-2 (|:| -2042 (-695 *6)) (|:| |vec| (-1277 *5)))) (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
+(-10 -7 (-15 -4401 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|)))
+((-2381 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4302 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 47)) (-1758 (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 171 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|))) 168 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 172 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|))) 170 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|)) 38) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 39) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|)) 36) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 37)) (-2236 (((-650 (-2 (|:| |poly| |#2|) (|:| -4302 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 99)))
+(((-818 |#1| |#2|) (-10 -7 (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2381 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4302 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2236 ((-650 (-2 (|:| |poly| |#2|) (|:| -4302 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -818))
+((-1758 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))) (-1758 (*1 *2 *3) (-12 (-5 *3 (-660 *5 (-413 *5))) (-4 *5 (-1253 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5)))) (-1758 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))) (-1758 (*1 *2 *3) (-12 (-5 *3 (-659 (-413 *5))) (-4 *5 (-1253 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5)))) (-2236 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4302 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-2381 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-5 *2 (-650 (-2 (|:| |frac| (-413 *6)) (|:| -4302 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-1758 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-660 *7 (-413 *7))) (-5 *4 (-1 (-650 *6) *7)) (-5 *5 (-1 (-424 *7) *7)) (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *7 (-1253 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7)))) (-1758 (*1 *2 *3 *4) (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))) (-1758 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-659 (-413 *7))) (-5 *4 (-1 (-650 *6) *7)) (-5 *5 (-1 (-424 *7) *7)) (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *7 (-1253 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7)))) (-1758 (*1 *2 *3 *4) (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-650 *5) *6)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))))
+(-10 -7 (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2381 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4302 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2236 ((-650 (-2 (|:| |poly| |#2|) (|:| -4302 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -1758 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -1758 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|))
+((-3937 (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|)) 110) (((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4302 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|)) 15)) (-2859 (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2003 (-650 |#1|))) |#2| |#1|)) 116)) (-2524 (((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -2003 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed") |#2| |#1|)) 52)))
+(((-819 |#1| |#2|) (-10 -7 (-15 -3937 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4302 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|))) (-15 -3937 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|))) (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -2003 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -2859 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2003 (-650 |#1|))) |#2| |#1|)))) (-368) (-662 |#1|)) (T -819))
+((-2859 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2003 (-650 *6))) *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *6) "failed")) (|:| -2003 (-650 (-1277 *6))))) (-5 *1 (-819 *6 *7)) (-5 *4 (-1277 *6)))) (-2524 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -2003 (-650 *6))) "failed") *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-1277 *6)) (|:| -2003 (-695 *6)))) (-5 *1 (-819 *6 *7)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *6)))) (-3937 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-662 *5)) (-5 *2 (-2 (|:| -2042 (-695 *6)) (|:| |vec| (-1277 *5)))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *5)))) (-3937 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| A (-695 *5)) (|:| |eqs| (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)) (|:| -4302 *6) (|:| |rh| *5)))))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *6 (-662 *5)))))
+(-10 -7 (-15 -3937 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4302 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|))) (-15 -3937 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|))) (-15 -2524 ((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -2003 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2003 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -2859 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -2003 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2003 (-650 |#1|))) |#2| |#1|))))
+((-3980 (((-695 |#1|) (-650 |#1|) (-777)) 14) (((-695 |#1|) (-650 |#1|)) 15)) (-1832 (((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|)) 39)) (-2521 (((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)) 46)))
+(((-820 |#1| |#2|) (-10 -7 (-15 -3980 ((-695 |#1|) (-650 |#1|))) (-15 -3980 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -1832 ((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -2521 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -820))
+((-2521 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-650 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-368)) (-5 *1 (-820 *2 *3)) (-4 *3 (-662 *2)))) (-1832 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-1277 *4)) (-5 *1 (-820 *4 *3)) (-4 *3 (-662 *4)))) (-3980 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-368)) (-5 *2 (-695 *5)) (-5 *1 (-820 *5 *6)) (-4 *6 (-662 *5)))) (-3980 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4)) (-5 *1 (-820 *4 *5)) (-4 *5 (-662 *4)))))
+(-10 -7 (-15 -3980 ((-695 |#1|) (-650 |#1|))) (-15 -3980 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -1832 ((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -2521 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2745 (((-112) $) NIL (|has| |#2| (-132)))) (-3800 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3125 (($ $ $) NIL (|has| |#2| (-799)))) (-4119 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#2| (-373)))) (-2249 (((-570) $) NIL (|has| |#2| (-854)))) (-3894 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) NIL (|has| |#2| (-1109)))) (-1836 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-2937 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3336 (($) NIL (|has| |#2| (-373)))) (-3789 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ (-570)) NIL)) (-3703 (((-112) $) NIL (|has| |#2| (-854)))) (-2835 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL (|has| |#2| (-732)))) (-1774 (((-112) $) NIL (|has| |#2| (-854)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3201 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#2| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-2160 (($ (-928)) NIL (|has| |#2| (-373)))) (-3479 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3443 ((|#2| $) NIL (|has| (-570) (-856)))) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-4082 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3791 (($ (-1277 |#2|)) NIL)) (-4154 (((-135)) NIL (|has| |#2| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-3490 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1277 |#2|) $) NIL) (($ (-570)) NIL (-2740 (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) NIL (|has| |#2| (-1109))) (((-868) $) NIL (|has| |#2| (-619 (-868))))) (-1609 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-3866 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2964 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1367 (($ $) NIL (|has| |#2| (-854)))) (-1814 (($) NIL (|has| |#2| (-132)) CONST)) (-1824 (($) NIL (|has| |#2| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2872 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-2914 (((-112) $ $) NIL (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2894 (((-112) $ $) 11 (-2740 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-2953 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) NIL (|has| |#2| (-732))) (($ $ |#2|) NIL (|has| |#2| (-732))) (($ |#2| $) NIL (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-821 |#1| |#2| |#3|) (-240 |#1| |#2|) (-777) (-799) (-1 (-112) (-1277 |#2|) (-1277 |#2|))) (T -821))
NIL
(-240 |#1| |#2|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-4307 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-3454 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1716 (((-650 (-824 (-1186))) $) NIL)) (-3703 (((-1182 $) $ (-824 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-824 (-1186)))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2009 (($ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-824 (-1186)) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL) (((-3 (-1134 |#1| (-1186)) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-824 (-1186)) $) NIL) (((-1186) $) NIL) (((-1134 |#1| (-1186)) $) NIL)) (-1939 (($ $ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-537 (-824 (-1186))) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-824 (-1186)) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-824 (-1186)) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-3157 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#1|) (-824 (-1186))) NIL) (($ (-1182 $) (-824 (-1186))) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-824 (-1186))) NIL)) (-4341 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL)) (-4414 (($ (-1 (-537 (-824 (-1186))) (-537 (-824 (-1186)))) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3581 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-3382 (((-3 (-824 (-1186)) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-3082 (((-824 (-1186)) $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-1795 (((-112) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-824 (-1186))) (|:| -1907 (-777))) "failed") $) NIL)) (-1516 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-824 (-1186)) |#1|) NIL) (($ $ (-650 (-824 (-1186))) (-650 |#1|)) NIL) (($ $ (-824 (-1186)) $) NIL) (($ $ (-650 (-824 (-1186))) (-650 $)) NIL) (($ $ (-1186) $) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 $)) NIL (|has| |#1| (-235))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-235)))) (-2998 (($ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-824 (-1186))) NIL) (($ $ (-650 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2146 (((-650 (-1186)) $) NIL)) (-1601 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-824 (-1186)) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-824 (-1186)) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-824 (-1186)) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-824 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-824 (-1186))) NIL) (($ $ (-650 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3643 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-2131 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1713 (((-650 (-824 (-1186))) $) NIL)) (-3702 (((-1182 $) $ (-824 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-824 (-1186)))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2867 (($ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-824 (-1186)) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL) (((-3 (-1134 |#1| (-1186)) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-824 (-1186)) $) NIL) (((-1186) $) NIL) (((-1134 |#1| (-1186)) $) NIL)) (-3383 (($ $ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-537 (-824 (-1186))) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-824 (-1186)) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-824 (-1186)) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4331 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#1|) (-824 (-1186))) NIL) (($ (-1182 $) (-824 (-1186))) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-824 (-1186))) NIL)) (-2730 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL)) (-2206 (($ (-1 (-537 (-824 (-1186))) (-537 (-824 (-1186)))) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4001 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-2645 (((-3 (-824 (-1186)) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-3082 (((-824 (-1186)) $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-1428 (((-112) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-824 (-1186))) (|:| -3011 (-777))) "failed") $) NIL)) (-1517 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-824 (-1186)) |#1|) NIL) (($ $ (-650 (-824 (-1186))) (-650 |#1|)) NIL) (($ $ (-824 (-1186)) $) NIL) (($ $ (-650 (-824 (-1186))) (-650 $)) NIL) (($ $ (-1186) $) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 $)) NIL (|has| |#1| (-235))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-235)))) (-3290 (($ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-824 (-1186))) NIL) (($ $ (-650 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3750 (((-650 (-1186)) $) NIL)) (-3221 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-824 (-1186)) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-824 (-1186)) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-824 (-1186)) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-824 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-824 (-1186))) NIL) (($ $ (-650 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-822 |#1|) (-13 (-256 |#1| (-1186) (-824 (-1186)) (-537 (-824 (-1186)))) (-1047 (-1134 |#1| (-1186)))) (-1058)) (T -822))
NIL
(-13 (-256 |#1| (-1186) (-824 (-1186)) (-537 (-824 (-1186)))) (-1047 (-1134 |#1| (-1186))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#2| (-368)))) (-3171 (($ $) NIL (|has| |#2| (-368)))) (-2720 (((-112) $) NIL (|has| |#2| (-368)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#2| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#2| (-368)))) (-4339 (((-112) $ $) NIL (|has| |#2| (-368)))) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL (|has| |#2| (-368)))) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL (|has| |#2| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-1552 (((-112) $) NIL (|has| |#2| (-368)))) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1845 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 20 (|has| |#2| (-368)))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-3738 (((-424 $) $) NIL (|has| |#2| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#2| (-368)))) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-2272 (((-777) $) NIL (|has| |#2| (-368)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-368)))) (-3447 (($ $ (-777)) NIL) (($ $) 13)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-413 (-570))) NIL (|has| |#2| (-368))) (($ $) NIL (|has| |#2| (-368)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#2| (-368)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) 15 (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL) (($ $ (-570)) 18 (|has| |#2| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-413 (-570)) $) NIL (|has| |#2| (-368))) (($ $ (-413 (-570))) NIL (|has| |#2| (-368)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-368)))) (-1345 (($ $) NIL (|has| |#2| (-368)))) (-1372 (((-112) $) NIL (|has| |#2| (-368)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#2| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#2| (-368)))) (-2707 (((-112) $ $) NIL (|has| |#2| (-368)))) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL (|has| |#2| (-368)))) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL (|has| |#2| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-4037 (((-112) $) NIL (|has| |#2| (-368)))) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1847 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 20 (|has| |#2| (-368)))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-3739 (((-424 $) $) NIL (|has| |#2| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#2| (-368)))) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-2547 (((-777) $) NIL (|has| |#2| (-368)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-368)))) (-3447 (($ $ (-777)) NIL) (($ $) 13)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-413 (-570))) NIL (|has| |#2| (-368))) (($ $) NIL (|has| |#2| (-368)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#2| (-368)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) 15 (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL) (($ $ (-570)) 18 (|has| |#2| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-413 (-570)) $) NIL (|has| |#2| (-368))) (($ $ (-413 (-570))) NIL (|has| |#2| (-368)))))
(((-823 |#1| |#2| |#3|) (-13 (-111 $ $) (-235) (-496 |#2|) (-10 -7 (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|))) (-1109) (-907 |#1|) |#1|) (T -823))
NIL
(-13 (-111 $ $) (-235) (-496 |#2|) (-10 -7 (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-3454 (((-777) $) NIL)) (-2643 ((|#1| $) 10)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3157 (((-777) $) 11)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-3581 (($ |#1| (-777)) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3447 (($ $) NIL) (($ $ (-777)) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2131 (((-777) $) NIL)) (-2643 ((|#1| $) 10)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-4331 (((-777) $) 11)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4001 (($ |#1| (-777)) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3447 (($ $) NIL) (($ $ (-777)) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
(((-824 |#1|) (-269 |#1|) (-856)) (T -824))
NIL
(-269 |#1|)
-((-2416 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) 38)) (-3403 (((-777) $) NIL)) (-2450 (($) NIL T CONST)) (-2477 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 28)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3455 (($ $) 42)) (-3413 (((-3 $ "failed") $) NIL)) (-3906 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2081 (((-112) $) NIL)) (-2530 ((|#1| $ (-570)) NIL)) (-1519 (((-777) $ (-570)) NIL)) (-2543 (($ $) 54)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-2553 (($ (-1 |#1| |#1|) $) NIL)) (-1381 (($ (-1 (-777) (-777)) $) NIL)) (-3996 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 25)) (-3352 (((-112) $ $) 51)) (-3788 (((-777) $) 34)) (-1903 (((-1168) $) NIL)) (-1886 (($ $ $) NIL)) (-3653 (($ $ $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 ((|#1| $) 41)) (-1679 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) NIL)) (-2382 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2396 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 20 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 53)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-825 |#1|) (-13 (-391 |#1|) (-852) (-10 -8 (-15 -3443 (|#1| $)) (-15 -3455 ($ $)) (-15 -2543 ($ $)) (-15 -3352 ((-112) $ $)) (-15 -3996 ((-3 $ "failed") $ |#1|)) (-15 -2477 ((-3 $ "failed") $ |#1|)) (-15 -2396 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3788 ((-777) $)) (-15 -3039 ((-650 |#1|) $)))) (-856)) (T -825))
-((-3443 (*1 *2 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3455 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2543 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3352 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3996 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2477 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2396 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-825 *3)) (|:| |rm| (-825 *3)))) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-825 *3)) (-4 *3 (-856)))))
-(-13 (-391 |#1|) (-852) (-10 -8 (-15 -3443 (|#1| $)) (-15 -3455 ($ $)) (-15 -2543 ($ $)) (-15 -3352 ((-112) $ $)) (-15 -3996 ((-3 $ "failed") $ |#1|)) (-15 -2477 ((-3 $ "failed") $ |#1|)) (-15 -2396 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3788 ((-777) $)) (-15 -3039 ((-650 |#1|) $))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-3140 (((-570) $) 59)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-1522 (((-112) $) 57)) (-2081 (((-112) $) 35)) (-2761 (((-112) $) 58)) (-3310 (($ $ $) 56)) (-3787 (($ $ $) 55)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1423 (($ $) 60)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 53)) (-2904 (((-112) $ $) 52)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 54)) (-2894 (((-112) $ $) 51)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) 38)) (-3403 (((-777) $) NIL)) (-3761 (($) NIL T CONST)) (-4034 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 28)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3455 (($ $) 42)) (-2937 (((-3 $ "failed") $) NIL)) (-4019 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-4340 (((-112) $) NIL)) (-3243 ((|#1| $ (-570)) NIL)) (-3670 (((-777) $ (-570)) NIL)) (-3374 (($ $) 54)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-3484 (($ (-1 |#1| |#1|) $) NIL)) (-3031 (($ (-1 (-777) (-777)) $) NIL)) (-3684 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 25)) (-3605 (((-112) $ $) 51)) (-3788 (((-777) $) 34)) (-4268 (((-1168) $) NIL)) (-4096 (($ $ $) NIL)) (-3430 (($ $ $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 ((|#1| $) 41)) (-2773 (((-650 (-2 (|:| |gen| |#1|) (|:| -4388 (-777)))) $) NIL)) (-4378 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2396 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 20 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 53)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-825 |#1|) (-13 (-391 |#1|) (-852) (-10 -8 (-15 -3443 (|#1| $)) (-15 -3455 ($ $)) (-15 -3374 ($ $)) (-15 -3605 ((-112) $ $)) (-15 -3684 ((-3 $ "failed") $ |#1|)) (-15 -4034 ((-3 $ "failed") $ |#1|)) (-15 -2396 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3788 ((-777) $)) (-15 -3039 ((-650 |#1|) $)))) (-856)) (T -825))
+((-3443 (*1 *2 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3455 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3374 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3605 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3684 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-4034 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2396 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-825 *3)) (|:| |rm| (-825 *3)))) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-825 *3)) (-4 *3 (-856)))))
+(-13 (-391 |#1|) (-852) (-10 -8 (-15 -3443 (|#1| $)) (-15 -3455 ($ $)) (-15 -3374 ($ $)) (-15 -3605 ((-112) $ $)) (-15 -3684 ((-3 $ "failed") $ |#1|)) (-15 -4034 ((-3 $ "failed") $ |#1|)) (-15 -2396 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3788 ((-777) $)) (-15 -3039 ((-650 |#1|) $))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-2249 (((-570) $) 59)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-3703 (((-112) $) 57)) (-4340 (((-112) $) 35)) (-1774 (((-112) $) 58)) (-3311 (($ $ $) 56)) (-2222 (($ $ $) 55)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1367 (($ $) 60)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 53)) (-2904 (((-112) $ $) 52)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 54)) (-2894 (((-112) $ $) 51)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-826) (-141)) (T -826))
NIL
(-13 (-562) (-854))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1680 (($ (-1129)) 7)) (-3050 (((-112) $ (-1168) (-1129)) 15)) (-3106 (((-828) $) 12)) (-3437 (((-828) $) 11)) (-2955 (((-1281) $) 9)) (-2298 (((-112) $ (-1129)) 16)))
-(((-827) (-10 -8 (-15 -1680 ($ (-1129))) (-15 -2955 ((-1281) $)) (-15 -3437 ((-828) $)) (-15 -3106 ((-828) $)) (-15 -3050 ((-112) $ (-1168) (-1129))) (-15 -2298 ((-112) $ (-1129))))) (T -827))
-((-2298 (*1 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-3050 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-3106 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-3437 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-2955 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-827)))) (-1680 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
-(-10 -8 (-15 -1680 ($ (-1129))) (-15 -2955 ((-1281) $)) (-15 -3437 ((-828) $)) (-15 -3106 ((-828) $)) (-15 -3050 ((-112) $ (-1168) (-1129))) (-15 -2298 ((-112) $ (-1129))))
-((-1320 (((-1281) $ (-829)) 12)) (-2428 (((-1281) $ (-1186)) 32)) (-3799 (((-1281) $ (-1168) (-1168)) 34)) (-3362 (((-1281) $ (-1168)) 33)) (-4089 (((-1281) $) 19)) (-1747 (((-1281) $ (-570)) 28)) (-2764 (((-1281) $ (-227)) 30)) (-3833 (((-1281) $) 18)) (-4268 (((-1281) $) 26)) (-2227 (((-1281) $) 25)) (-2682 (((-1281) $) 23)) (-4312 (((-1281) $) 24)) (-1744 (((-1281) $) 22)) (-3898 (((-1281) $) 21)) (-3054 (((-1281) $) 20)) (-2309 (((-1281) $) 16)) (-2155 (((-1281) $) 17)) (-4269 (((-1281) $) 15)) (-1540 (((-1281) $) 14)) (-2650 (((-1281) $) 13)) (-3402 (($ (-1168) (-829)) 9)) (-3869 (($ (-1168) (-1168) (-829)) 8)) (-2899 (((-1186) $) 51)) (-3229 (((-1186) $) 55)) (-1909 (((-2 (|:| |cd| (-1168)) (|:| -3503 (-1168))) $) 54)) (-4238 (((-1168) $) 52)) (-2377 (((-1281) $) 41)) (-3506 (((-570) $) 49)) (-2179 (((-227) $) 50)) (-3948 (((-1281) $) 40)) (-2313 (((-1281) $) 48)) (-1415 (((-1281) $) 47)) (-2448 (((-1281) $) 45)) (-2252 (((-1281) $) 46)) (-4373 (((-1281) $) 44)) (-4111 (((-1281) $) 43)) (-2095 (((-1281) $) 42)) (-2173 (((-1281) $) 38)) (-2689 (((-1281) $) 39)) (-2531 (((-1281) $) 37)) (-2418 (((-1281) $) 36)) (-2739 (((-1281) $) 35)) (-3179 (((-1281) $) 11)))
-(((-828) (-10 -8 (-15 -3869 ($ (-1168) (-1168) (-829))) (-15 -3402 ($ (-1168) (-829))) (-15 -3179 ((-1281) $)) (-15 -1320 ((-1281) $ (-829))) (-15 -2650 ((-1281) $)) (-15 -1540 ((-1281) $)) (-15 -4269 ((-1281) $)) (-15 -2309 ((-1281) $)) (-15 -2155 ((-1281) $)) (-15 -3833 ((-1281) $)) (-15 -4089 ((-1281) $)) (-15 -3054 ((-1281) $)) (-15 -3898 ((-1281) $)) (-15 -1744 ((-1281) $)) (-15 -2682 ((-1281) $)) (-15 -4312 ((-1281) $)) (-15 -2227 ((-1281) $)) (-15 -4268 ((-1281) $)) (-15 -1747 ((-1281) $ (-570))) (-15 -2764 ((-1281) $ (-227))) (-15 -2428 ((-1281) $ (-1186))) (-15 -3362 ((-1281) $ (-1168))) (-15 -3799 ((-1281) $ (-1168) (-1168))) (-15 -2739 ((-1281) $)) (-15 -2418 ((-1281) $)) (-15 -2531 ((-1281) $)) (-15 -2173 ((-1281) $)) (-15 -2689 ((-1281) $)) (-15 -3948 ((-1281) $)) (-15 -2377 ((-1281) $)) (-15 -2095 ((-1281) $)) (-15 -4111 ((-1281) $)) (-15 -4373 ((-1281) $)) (-15 -2448 ((-1281) $)) (-15 -2252 ((-1281) $)) (-15 -1415 ((-1281) $)) (-15 -2313 ((-1281) $)) (-15 -3506 ((-570) $)) (-15 -2179 ((-227) $)) (-15 -2899 ((-1186) $)) (-15 -4238 ((-1168) $)) (-15 -1909 ((-2 (|:| |cd| (-1168)) (|:| -3503 (-1168))) $)) (-15 -3229 ((-1186) $)))) (T -828))
-((-3229 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-1909 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3503 (-1168)))) (-5 *1 (-828)))) (-4238 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))) (-2899 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-2179 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))) (-3506 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-1415 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2252 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2448 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-4373 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-4111 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2095 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2377 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-3948 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2689 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2173 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2531 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2418 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2739 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-3799 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-828)))) (-3362 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-828)))) (-2428 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-828)))) (-2764 (*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1281)) (-5 *1 (-828)))) (-1747 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-828)))) (-4268 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2227 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-4312 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2682 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-1744 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-3898 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-3054 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-4089 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-3833 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2155 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2309 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-4269 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-1540 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-2650 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-1320 (*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1281)) (-5 *1 (-828)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))) (-3402 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))) (-3869 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
-(-10 -8 (-15 -3869 ($ (-1168) (-1168) (-829))) (-15 -3402 ($ (-1168) (-829))) (-15 -3179 ((-1281) $)) (-15 -1320 ((-1281) $ (-829))) (-15 -2650 ((-1281) $)) (-15 -1540 ((-1281) $)) (-15 -4269 ((-1281) $)) (-15 -2309 ((-1281) $)) (-15 -2155 ((-1281) $)) (-15 -3833 ((-1281) $)) (-15 -4089 ((-1281) $)) (-15 -3054 ((-1281) $)) (-15 -3898 ((-1281) $)) (-15 -1744 ((-1281) $)) (-15 -2682 ((-1281) $)) (-15 -4312 ((-1281) $)) (-15 -2227 ((-1281) $)) (-15 -4268 ((-1281) $)) (-15 -1747 ((-1281) $ (-570))) (-15 -2764 ((-1281) $ (-227))) (-15 -2428 ((-1281) $ (-1186))) (-15 -3362 ((-1281) $ (-1168))) (-15 -3799 ((-1281) $ (-1168) (-1168))) (-15 -2739 ((-1281) $)) (-15 -2418 ((-1281) $)) (-15 -2531 ((-1281) $)) (-15 -2173 ((-1281) $)) (-15 -2689 ((-1281) $)) (-15 -3948 ((-1281) $)) (-15 -2377 ((-1281) $)) (-15 -2095 ((-1281) $)) (-15 -4111 ((-1281) $)) (-15 -4373 ((-1281) $)) (-15 -2448 ((-1281) $)) (-15 -2252 ((-1281) $)) (-15 -1415 ((-1281) $)) (-15 -2313 ((-1281) $)) (-15 -3506 ((-570) $)) (-15 -2179 ((-227) $)) (-15 -2899 ((-1186) $)) (-15 -4238 ((-1168) $)) (-15 -1909 ((-2 (|:| |cd| (-1168)) (|:| -3503 (-1168))) $)) (-15 -3229 ((-1186) $)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 13)) (-1859 (((-112) $ $) NIL)) (-1811 (($) 16)) (-2926 (($) 14)) (-1564 (($) 17)) (-2329 (($) 15)) (-2872 (((-112) $ $) 9)))
-(((-829) (-13 (-1109) (-10 -8 (-15 -2926 ($)) (-15 -1811 ($)) (-15 -1564 ($)) (-15 -2329 ($))))) (T -829))
-((-2926 (*1 *1) (-5 *1 (-829))) (-1811 (*1 *1) (-5 *1 (-829))) (-1564 (*1 *1) (-5 *1 (-829))) (-2329 (*1 *1) (-5 *1 (-829))))
-(-13 (-1109) (-10 -8 (-15 -2926 ($)) (-15 -1811 ($)) (-15 -1564 ($)) (-15 -2329 ($))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 23) (($ (-1186)) 19)) (-1859 (((-112) $ $) NIL)) (-1760 (((-112) $) 10)) (-1998 (((-112) $) 9)) (-1477 (((-112) $) 11)) (-3612 (((-112) $) 8)) (-2872 (((-112) $ $) 21)))
-(((-830) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -3612 ((-112) $)) (-15 -1998 ((-112) $)) (-15 -1760 ((-112) $)) (-15 -1477 ((-112) $))))) (T -830))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-830)))) (-3612 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-1998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-1760 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-1477 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(-13 (-1109) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -3612 ((-112) $)) (-15 -1998 ((-112) $)) (-15 -1760 ((-112) $)) (-15 -1477 ((-112) $))))
-((-2416 (((-112) $ $) NIL)) (-1668 (($ (-830) (-650 (-1186))) 32)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3374 (((-830) $) 33)) (-3679 (((-650 (-1186)) $) 34)) (-3735 (((-868) $) 31)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-831) (-13 (-1109) (-10 -8 (-15 -3374 ((-830) $)) (-15 -3679 ((-650 (-1186)) $)) (-15 -1668 ($ (-830) (-650 (-1186))))))) (T -831))
-((-3374 (*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))) (-3679 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))) (-1668 (*1 *1 *2 *3) (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
-(-13 (-1109) (-10 -8 (-15 -3374 ((-830) $)) (-15 -3679 ((-650 (-1186)) $)) (-15 -1668 ($ (-830) (-650 (-1186))))))
-((-2892 (((-1281) (-828) (-320 |#1|) (-112)) 23) (((-1281) (-828) (-320 |#1|)) 89) (((-1168) (-320 |#1|) (-112)) 88) (((-1168) (-320 |#1|)) 87)))
-(((-832 |#1|) (-10 -7 (-15 -2892 ((-1168) (-320 |#1|))) (-15 -2892 ((-1168) (-320 |#1|) (-112))) (-15 -2892 ((-1281) (-828) (-320 |#1|))) (-15 -2892 ((-1281) (-828) (-320 |#1|) (-112)))) (-13 (-834) (-1058))) (T -832))
-((-2892 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-828)) (-5 *4 (-320 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-834) (-1058))) (-5 *2 (-1281)) (-5 *1 (-832 *6)))) (-2892 (*1 *2 *3 *4) (-12 (-5 *3 (-828)) (-5 *4 (-320 *5)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1281)) (-5 *1 (-832 *5)))) (-2892 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *5)))) (-2892 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *4)))))
-(-10 -7 (-15 -2892 ((-1168) (-320 |#1|))) (-15 -2892 ((-1168) (-320 |#1|) (-112))) (-15 -2892 ((-1281) (-828) (-320 |#1|))) (-15 -2892 ((-1281) (-828) (-320 |#1|) (-112))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2550 ((|#1| $) 10)) (-3854 (($ |#1|) 9)) (-2081 (((-112) $) NIL)) (-3872 (($ |#2| (-777)) NIL)) (-4341 (((-777) $) NIL)) (-1864 ((|#2| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3447 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-1601 (((-777) $) NIL)) (-3735 (((-868) $) 17) (($ (-570)) NIL) (($ |#2|) NIL (|has| |#2| (-174)))) (-1715 ((|#2| $ (-777)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-833 |#1| |#2|) (-13 (-714 |#2|) (-10 -8 (IF (|has| |#1| (-235)) (-6 (-235)) |%noBranch|) (-15 -3854 ($ |#1|)) (-15 -2550 (|#1| $)))) (-714 |#2|) (-1058)) (T -833))
-((-3854 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))) (-2550 (*1 *2 *1) (-12 (-4 *2 (-714 *3)) (-5 *1 (-833 *2 *3)) (-4 *3 (-1058)))))
-(-13 (-714 |#2|) (-10 -8 (IF (|has| |#1| (-235)) (-6 (-235)) |%noBranch|) (-15 -3854 ($ |#1|)) (-15 -2550 (|#1| $))))
-((-2892 (((-1281) (-828) $ (-112)) 9) (((-1281) (-828) $) 8) (((-1168) $ (-112)) 7) (((-1168) $) 6)))
+((-2785 (($ (-1129)) 7)) (-2551 (((-112) $ (-1168) (-1129)) 15)) (-1953 (((-828) $) 12)) (-1994 (((-828) $) 11)) (-4179 (((-1282) $) 9)) (-2796 (((-112) $ (-1129)) 16)))
+(((-827) (-10 -8 (-15 -2785 ($ (-1129))) (-15 -4179 ((-1282) $)) (-15 -1994 ((-828) $)) (-15 -1953 ((-828) $)) (-15 -2551 ((-112) $ (-1168) (-1129))) (-15 -2796 ((-112) $ (-1129))))) (T -827))
+((-2796 (*1 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-2551 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-1953 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-1994 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-4179 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-827)))) (-2785 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
+(-10 -8 (-15 -2785 ($ (-1129))) (-15 -4179 ((-1282) $)) (-15 -1994 ((-828) $)) (-15 -1953 ((-828) $)) (-15 -2551 ((-112) $ (-1168) (-1129))) (-15 -2796 ((-112) $ (-1129))))
+((-1712 (((-1282) $ (-829)) 12)) (-1715 (((-1282) $ (-1186)) 32)) (-2309 (((-1282) $ (-1168) (-1168)) 34)) (-2464 (((-1282) $ (-1168)) 33)) (-2201 (((-1282) $) 19)) (-2216 (((-1282) $ (-570)) 28)) (-1808 (((-1282) $ (-227)) 30)) (-1440 (((-1282) $) 18)) (-3276 (((-1282) $) 26)) (-3309 (((-1282) $) 25)) (-2213 (((-1282) $) 23)) (-3689 (((-1282) $) 24)) (-2188 (((-1282) $) 22)) (-3934 (((-1282) $) 21)) (-2583 (((-1282) $) 20)) (-2907 (((-1282) $) 16)) (-3850 (((-1282) $) 17)) (-3293 (((-1282) $) 15)) (-3918 (((-1282) $) 14)) (-1962 (((-1282) $) 13)) (-2844 (($ (-1168) (-829)) 9)) (-1830 (($ (-1168) (-1168) (-829)) 8)) (-3707 (((-1186) $) 51)) (-3781 (((-1186) $) 55)) (-3033 (((-2 (|:| |cd| (-1168)) (|:| -3504 (-1168))) $) 54)) (-4283 (((-1168) $) 52)) (-2400 (((-1282) $) 41)) (-1380 (((-570) $) 49)) (-4092 (((-227) $) 50)) (-3135 (((-1282) $) 40)) (-2945 (((-1282) $) 48)) (-4403 (((-1282) $) 47)) (-3734 (((-1282) $) 45)) (-3606 (((-1282) $) 46)) (-3015 (((-1282) $) 44)) (-2367 (((-1282) $) 43)) (-1373 (((-1282) $) 42)) (-4039 (((-1282) $) 38)) (-2280 (((-1282) $) 39)) (-3259 (((-1282) $) 37)) (-1624 (((-1282) $) 36)) (-1562 (((-1282) $) 35)) (-1439 (((-1282) $) 11)))
+(((-828) (-10 -8 (-15 -1830 ($ (-1168) (-1168) (-829))) (-15 -2844 ($ (-1168) (-829))) (-15 -1439 ((-1282) $)) (-15 -1712 ((-1282) $ (-829))) (-15 -1962 ((-1282) $)) (-15 -3918 ((-1282) $)) (-15 -3293 ((-1282) $)) (-15 -2907 ((-1282) $)) (-15 -3850 ((-1282) $)) (-15 -1440 ((-1282) $)) (-15 -2201 ((-1282) $)) (-15 -2583 ((-1282) $)) (-15 -3934 ((-1282) $)) (-15 -2188 ((-1282) $)) (-15 -2213 ((-1282) $)) (-15 -3689 ((-1282) $)) (-15 -3309 ((-1282) $)) (-15 -3276 ((-1282) $)) (-15 -2216 ((-1282) $ (-570))) (-15 -1808 ((-1282) $ (-227))) (-15 -1715 ((-1282) $ (-1186))) (-15 -2464 ((-1282) $ (-1168))) (-15 -2309 ((-1282) $ (-1168) (-1168))) (-15 -1562 ((-1282) $)) (-15 -1624 ((-1282) $)) (-15 -3259 ((-1282) $)) (-15 -4039 ((-1282) $)) (-15 -2280 ((-1282) $)) (-15 -3135 ((-1282) $)) (-15 -2400 ((-1282) $)) (-15 -1373 ((-1282) $)) (-15 -2367 ((-1282) $)) (-15 -3015 ((-1282) $)) (-15 -3734 ((-1282) $)) (-15 -3606 ((-1282) $)) (-15 -4403 ((-1282) $)) (-15 -2945 ((-1282) $)) (-15 -1380 ((-570) $)) (-15 -4092 ((-227) $)) (-15 -3707 ((-1186) $)) (-15 -4283 ((-1168) $)) (-15 -3033 ((-2 (|:| |cd| (-1168)) (|:| -3504 (-1168))) $)) (-15 -3781 ((-1186) $)))) (T -828))
+((-3781 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-3033 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3504 (-1168)))) (-5 *1 (-828)))) (-4283 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))) (-3707 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-4092 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))) (-1380 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))) (-2945 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4403 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3606 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3734 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3015 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2367 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1373 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2400 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3135 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2280 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4039 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3259 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1624 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1562 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2309 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-2464 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1808 (*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-2216 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3276 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3309 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3689 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2213 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2188 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2583 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2201 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1440 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3850 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2907 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3293 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3918 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1962 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1712 (*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1439 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2844 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))) (-1830 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
+(-10 -8 (-15 -1830 ($ (-1168) (-1168) (-829))) (-15 -2844 ($ (-1168) (-829))) (-15 -1439 ((-1282) $)) (-15 -1712 ((-1282) $ (-829))) (-15 -1962 ((-1282) $)) (-15 -3918 ((-1282) $)) (-15 -3293 ((-1282) $)) (-15 -2907 ((-1282) $)) (-15 -3850 ((-1282) $)) (-15 -1440 ((-1282) $)) (-15 -2201 ((-1282) $)) (-15 -2583 ((-1282) $)) (-15 -3934 ((-1282) $)) (-15 -2188 ((-1282) $)) (-15 -2213 ((-1282) $)) (-15 -3689 ((-1282) $)) (-15 -3309 ((-1282) $)) (-15 -3276 ((-1282) $)) (-15 -2216 ((-1282) $ (-570))) (-15 -1808 ((-1282) $ (-227))) (-15 -1715 ((-1282) $ (-1186))) (-15 -2464 ((-1282) $ (-1168))) (-15 -2309 ((-1282) $ (-1168) (-1168))) (-15 -1562 ((-1282) $)) (-15 -1624 ((-1282) $)) (-15 -3259 ((-1282) $)) (-15 -4039 ((-1282) $)) (-15 -2280 ((-1282) $)) (-15 -3135 ((-1282) $)) (-15 -2400 ((-1282) $)) (-15 -1373 ((-1282) $)) (-15 -2367 ((-1282) $)) (-15 -3015 ((-1282) $)) (-15 -3734 ((-1282) $)) (-15 -3606 ((-1282) $)) (-15 -4403 ((-1282) $)) (-15 -2945 ((-1282) $)) (-15 -1380 ((-570) $)) (-15 -4092 ((-227) $)) (-15 -3707 ((-1186) $)) (-15 -4283 ((-1168) $)) (-15 -3033 ((-2 (|:| |cd| (-1168)) (|:| -3504 (-1168))) $)) (-15 -3781 ((-1186) $)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 13)) (-3866 (((-112) $ $) NIL)) (-1575 (($) 16)) (-3879 (($) 14)) (-4173 (($) 17)) (-1986 (($) 15)) (-2872 (((-112) $ $) 9)))
+(((-829) (-13 (-1109) (-10 -8 (-15 -3879 ($)) (-15 -1575 ($)) (-15 -4173 ($)) (-15 -1986 ($))))) (T -829))
+((-3879 (*1 *1) (-5 *1 (-829))) (-1575 (*1 *1) (-5 *1 (-829))) (-4173 (*1 *1) (-5 *1 (-829))) (-1986 (*1 *1) (-5 *1 (-829))))
+(-13 (-1109) (-10 -8 (-15 -3879 ($)) (-15 -1575 ($)) (-15 -4173 ($)) (-15 -1986 ($))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 23) (($ (-1186)) 19)) (-3866 (((-112) $ $) NIL)) (-2313 (((-112) $) 10)) (-2758 (((-112) $) 9)) (-1436 (((-112) $) 11)) (-4294 (((-112) $) 8)) (-2872 (((-112) $ $) 21)))
+(((-830) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -4294 ((-112) $)) (-15 -2758 ((-112) $)) (-15 -2313 ((-112) $)) (-15 -1436 ((-112) $))))) (T -830))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-830)))) (-4294 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-2758 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-1436 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(-13 (-1109) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -4294 ((-112) $)) (-15 -2758 ((-112) $)) (-15 -2313 ((-112) $)) (-15 -1436 ((-112) $))))
+((-2417 (((-112) $ $) NIL)) (-2677 (($ (-830) (-650 (-1186))) 32)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2566 (((-830) $) 33)) (-3700 (((-650 (-1186)) $) 34)) (-3735 (((-868) $) 31)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-831) (-13 (-1109) (-10 -8 (-15 -2566 ((-830) $)) (-15 -3700 ((-650 (-1186)) $)) (-15 -2677 ($ (-830) (-650 (-1186))))))) (T -831))
+((-2566 (*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))) (-3700 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))) (-2677 (*1 *1 *2 *3) (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
+(-13 (-1109) (-10 -8 (-15 -2566 ((-830) $)) (-15 -3700 ((-650 (-1186)) $)) (-15 -2677 ($ (-830) (-650 (-1186))))))
+((-3637 (((-1282) (-828) (-320 |#1|) (-112)) 23) (((-1282) (-828) (-320 |#1|)) 89) (((-1168) (-320 |#1|) (-112)) 88) (((-1168) (-320 |#1|)) 87)))
+(((-832 |#1|) (-10 -7 (-15 -3637 ((-1168) (-320 |#1|))) (-15 -3637 ((-1168) (-320 |#1|) (-112))) (-15 -3637 ((-1282) (-828) (-320 |#1|))) (-15 -3637 ((-1282) (-828) (-320 |#1|) (-112)))) (-13 (-834) (-1058))) (T -832))
+((-3637 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-828)) (-5 *4 (-320 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-834) (-1058))) (-5 *2 (-1282)) (-5 *1 (-832 *6)))) (-3637 (*1 *2 *3 *4) (-12 (-5 *3 (-828)) (-5 *4 (-320 *5)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1282)) (-5 *1 (-832 *5)))) (-3637 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *5)))) (-3637 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *4)))))
+(-10 -7 (-15 -3637 ((-1168) (-320 |#1|))) (-15 -3637 ((-1168) (-320 |#1|) (-112))) (-15 -3637 ((-1282) (-828) (-320 |#1|))) (-15 -3637 ((-1282) (-828) (-320 |#1|) (-112))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3446 ((|#1| $) 10)) (-3854 (($ |#1|) 9)) (-4340 (((-112) $) NIL)) (-3872 (($ |#2| (-777)) NIL)) (-2730 (((-777) $) NIL)) (-1865 ((|#2| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3447 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-3221 (((-777) $) NIL)) (-3735 (((-868) $) 17) (($ (-570)) NIL) (($ |#2|) NIL (|has| |#2| (-174)))) (-1983 ((|#2| $ (-777)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-833 |#1| |#2|) (-13 (-714 |#2|) (-10 -8 (IF (|has| |#1| (-235)) (-6 (-235)) |%noBranch|) (-15 -3854 ($ |#1|)) (-15 -3446 (|#1| $)))) (-714 |#2|) (-1058)) (T -833))
+((-3854 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))) (-3446 (*1 *2 *1) (-12 (-4 *2 (-714 *3)) (-5 *1 (-833 *2 *3)) (-4 *3 (-1058)))))
+(-13 (-714 |#2|) (-10 -8 (IF (|has| |#1| (-235)) (-6 (-235)) |%noBranch|) (-15 -3854 ($ |#1|)) (-15 -3446 (|#1| $))))
+((-3637 (((-1282) (-828) $ (-112)) 9) (((-1282) (-828) $) 8) (((-1168) $ (-112)) 7) (((-1168) $) 6)))
(((-834) (-141)) (T -834))
-((-2892 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *4 (-112)) (-5 *2 (-1281)))) (-2892 (*1 *2 *3 *1) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *2 (-1281)))) (-2892 (*1 *2 *1 *3) (-12 (-4 *1 (-834)) (-5 *3 (-112)) (-5 *2 (-1168)))) (-2892 (*1 *2 *1) (-12 (-4 *1 (-834)) (-5 *2 (-1168)))))
-(-13 (-10 -8 (-15 -2892 ((-1168) $)) (-15 -2892 ((-1168) $ (-112))) (-15 -2892 ((-1281) (-828) $)) (-15 -2892 ((-1281) (-828) $ (-112)))))
-((-2667 (((-316) (-1168) (-1168)) 12)) (-3487 (((-112) (-1168) (-1168)) 34)) (-1447 (((-112) (-1168)) 33)) (-3346 (((-52) (-1168)) 25)) (-2631 (((-52) (-1168)) 23)) (-2607 (((-52) (-828)) 17)) (-2988 (((-650 (-1168)) (-1168)) 28)) (-3846 (((-650 (-1168))) 27)))
-(((-835) (-10 -7 (-15 -2607 ((-52) (-828))) (-15 -2631 ((-52) (-1168))) (-15 -3346 ((-52) (-1168))) (-15 -3846 ((-650 (-1168)))) (-15 -2988 ((-650 (-1168)) (-1168))) (-15 -1447 ((-112) (-1168))) (-15 -3487 ((-112) (-1168) (-1168))) (-15 -2667 ((-316) (-1168) (-1168))))) (T -835))
-((-2667 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))) (-3487 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-1447 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-2988 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))) (-3846 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-2631 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-2607 (*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
-(-10 -7 (-15 -2607 ((-52) (-828))) (-15 -2631 ((-52) (-1168))) (-15 -3346 ((-52) (-1168))) (-15 -3846 ((-650 (-1168)))) (-15 -2988 ((-650 (-1168)) (-1168))) (-15 -1447 ((-112) (-1168))) (-15 -3487 ((-112) (-1168) (-1168))) (-15 -2667 ((-316) (-1168) (-1168))))
-((-2416 (((-112) $ $) 19)) (-3923 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-2704 (($ $ $) 73)) (-1783 (((-112) $ $) 74)) (-3594 (((-112) $ (-777)) 8)) (-4240 (($ (-650 |#1|)) 69) (($) 68)) (-1591 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2208 (($ $) 63)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ |#1| $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) 65)) (-2742 (((-112) $ (-777)) 9)) (-3310 ((|#1| $) 79)) (-2190 (($ $ $) 82)) (-3068 (($ $ $) 81)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3787 ((|#1| $) 80)) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22)) (-2307 (($ $ $) 70)) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3479 (((-1129) $) 21)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-4282 (((-650 (-2 (|:| -2223 |#1|) (|:| -3486 (-777)))) $) 62)) (-1966 (($ $ |#1|) 72) (($ $ $) 71)) (-2271 (($) 50) (($ (-650 |#1|)) 49)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18)) (-3813 (($ (-650 |#1|)) 67) (($) 66)) (-1859 (((-112) $ $) 23)) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-3637 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *4 (-112)) (-5 *2 (-1282)))) (-3637 (*1 *2 *3 *1) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *2 (-1282)))) (-3637 (*1 *2 *1 *3) (-12 (-4 *1 (-834)) (-5 *3 (-112)) (-5 *2 (-1168)))) (-3637 (*1 *2 *1) (-12 (-4 *1 (-834)) (-5 *2 (-1168)))))
+(-13 (-10 -8 (-15 -3637 ((-1168) $)) (-15 -3637 ((-1168) $ (-112))) (-15 -3637 ((-1282) (-828) $)) (-15 -3637 ((-1282) (-828) $ (-112)))))
+((-2088 (((-316) (-1168) (-1168)) 12)) (-2393 (((-112) (-1168) (-1168)) 34)) (-1579 (((-112) (-1168)) 33)) (-3549 (((-52) (-1168)) 25)) (-2941 (((-52) (-1168)) 23)) (-2737 (((-52) (-828)) 17)) (-3182 (((-650 (-1168)) (-1168)) 28)) (-1573 (((-650 (-1168))) 27)))
+(((-835) (-10 -7 (-15 -2737 ((-52) (-828))) (-15 -2941 ((-52) (-1168))) (-15 -3549 ((-52) (-1168))) (-15 -1573 ((-650 (-1168)))) (-15 -3182 ((-650 (-1168)) (-1168))) (-15 -1579 ((-112) (-1168))) (-15 -2393 ((-112) (-1168) (-1168))) (-15 -2088 ((-316) (-1168) (-1168))))) (T -835))
+((-2088 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))) (-2393 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-1579 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-3182 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))) (-1573 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))) (-3549 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-2941 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-2737 (*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(-10 -7 (-15 -2737 ((-52) (-828))) (-15 -2941 ((-52) (-1168))) (-15 -3549 ((-52) (-1168))) (-15 -1573 ((-650 (-1168)))) (-15 -3182 ((-650 (-1168)) (-1168))) (-15 -1579 ((-112) (-1168))) (-15 -2393 ((-112) (-1168) (-1168))) (-15 -2088 ((-316) (-1168) (-1168))))
+((-2417 (((-112) $ $) 19)) (-3923 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-2398 (($ $ $) 73)) (-4425 (((-112) $ $) 74)) (-4095 (((-112) $ (-777)) 8)) (-4241 (($ (-650 |#1|)) 69) (($) 68)) (-3131 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-3092 (($ $) 63)) (-3480 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) 65)) (-1586 (((-112) $ (-777)) 9)) (-3311 ((|#1| $) 79)) (-4210 (($ $ $) 82)) (-2727 (($ $ $) 81)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2222 ((|#1| $) 80)) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22)) (-2885 (($ $ $) 70)) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3479 (((-1129) $) 21)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3435 (((-650 (-2 (|:| -2224 |#1|) (|:| -3490 (-777)))) $) 62)) (-2449 (($ $ |#1|) 72) (($ $ $) 71)) (-2535 (($) 50) (($ (-650 |#1|)) 49)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 51)) (-3735 (((-868) $) 18)) (-3813 (($ (-650 |#1|)) 67) (($) 66)) (-3866 (((-112) $ $) 23)) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20)) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-836 |#1|) (-141) (-856)) (T -836))
-((-3310 (*1 *2 *1) (-12 (-4 *1 (-836 *2)) (-4 *2 (-856)))))
-(-13 (-742 |t#1|) (-977 |t#1|) (-10 -8 (-15 -3310 (|t#1| $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-701 |#1|) . T) ((-742 |#1|) . T) ((-977 |#1|) . T) ((-1107 |#1|) . T) ((-1109) . T) ((-1226) . T))
-((-4055 (((-1281) (-1129) (-1129)) 48)) (-3360 (((-1281) (-827) (-52)) 45)) (-3725 (((-52) (-827)) 16)))
-(((-837) (-10 -7 (-15 -3725 ((-52) (-827))) (-15 -3360 ((-1281) (-827) (-52))) (-15 -4055 ((-1281) (-1129) (-1129))))) (T -837))
-((-4055 (*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1281)) (-5 *1 (-837)))) (-3360 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1281)) (-5 *1 (-837)))) (-3725 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
-(-10 -7 (-15 -3725 ((-52) (-827))) (-15 -3360 ((-1281) (-827) (-52))) (-15 -4055 ((-1281) (-1129) (-1129))))
-((-1351 (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)) 12) (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|)) 13)))
-(((-838 |#1| |#2|) (-10 -7 (-15 -1351 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1351 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)))) (-1109) (-1109)) (T -838))
-((-1351 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-839 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *1 (-838 *5 *6)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-839 *6)) (-5 *1 (-838 *5 *6)))))
-(-10 -7 (-15 -1351 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1351 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL (|has| |#1| (-21)))) (-3596 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3140 (((-570) $) NIL (|has| |#1| (-854)))) (-2450 (($) NIL (|has| |#1| (-21)) CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 15)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-3413 (((-3 $ "failed") $) 42 (|has| |#1| (-854)))) (-2951 (((-3 (-413 (-570)) "failed") $) 52 (|has| |#1| (-551)))) (-2085 (((-112) $) 46 (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) 49 (|has| |#1| (-551)))) (-1522 (((-112) $) NIL (|has| |#1| (-854)))) (-2081 (((-112) $) NIL (|has| |#1| (-854)))) (-2761 (((-112) $) NIL (|has| |#1| (-854)))) (-3310 (($ $ $) NIL (|has| |#1| (-854)))) (-3787 (($ $ $) NIL (|has| |#1| (-854)))) (-1903 (((-1168) $) NIL)) (-1324 (($) 13)) (-1353 (((-112) $) 12)) (-3479 (((-1129) $) NIL)) (-2328 (((-112) $) 11)) (-3735 (((-868) $) 18) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2740 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-2744 (((-777)) 36 (|has| |#1| (-854)) CONST)) (-1859 (((-112) $ $) 54)) (-1423 (($ $) NIL (|has| |#1| (-854)))) (-1812 (($) 23 (|has| |#1| (-21)) CONST)) (-1823 (($) 33 (|has| |#1| (-854)) CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2872 (((-112) $ $) 21)) (-2913 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2894 (((-112) $ $) 45 (|has| |#1| (-854)))) (-2965 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 29 (|has| |#1| (-21)))) (-2954 (($ $ $) 31 (|has| |#1| (-21)))) (** (($ $ (-928)) NIL (|has| |#1| (-854))) (($ $ (-777)) NIL (|has| |#1| (-854)))) (* (($ $ $) 39 (|has| |#1| (-854))) (($ (-570) $) 27 (|has| |#1| (-21))) (($ (-777) $) NIL (|has| |#1| (-21))) (($ (-928) $) NIL (|has| |#1| (-21)))))
-(((-839 |#1|) (-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1324 ($)) (-15 -2328 ((-112) $)) (-15 -1353 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -839))
-((-1324 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1109)))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-1353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-2085 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-3137 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2951 (*1 *2 *1) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))))
-(-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1324 ($)) (-15 -2328 ((-112) $)) (-15 -1353 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
-((-1566 (((-112) $ |#2|) 14)) (-3735 (((-868) $) 11)))
-(((-840 |#1| |#2|) (-10 -8 (-15 -1566 ((-112) |#1| |#2|)) (-15 -3735 ((-868) |#1|))) (-841 |#2|) (-1109)) (T -840))
-NIL
-(-10 -8 (-15 -1566 ((-112) |#1| |#2|)) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-3503 ((|#1| $) 16)) (-1903 (((-1168) $) 10)) (-1566 (((-112) $ |#1|) 14)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1893 (((-55) $) 15)) (-2872 (((-112) $ $) 6)))
+((-3311 (*1 *2 *1) (-12 (-4 *1 (-836 *2)) (-4 *2 (-856)))))
+(-13 (-742 |t#1|) (-977 |t#1|) (-10 -8 (-15 -3311 (|t#1| $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-237 |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-701 |#1|) . T) ((-742 |#1|) . T) ((-977 |#1|) . T) ((-1107 |#1|) . T) ((-1109) . T) ((-1227) . T))
+((-3009 (((-1282) (-1129) (-1129)) 48)) (-2446 (((-1282) (-827) (-52)) 45)) (-2860 (((-52) (-827)) 16)))
+(((-837) (-10 -7 (-15 -2860 ((-52) (-827))) (-15 -2446 ((-1282) (-827) (-52))) (-15 -3009 ((-1282) (-1129) (-1129))))) (T -837))
+((-3009 (*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1282)) (-5 *1 (-837)))) (-2446 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1282)) (-5 *1 (-837)))) (-2860 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
+(-10 -7 (-15 -2860 ((-52) (-827))) (-15 -2446 ((-1282) (-827) (-52))) (-15 -3009 ((-1282) (-1129) (-1129))))
+((-1352 (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)) 12) (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|)) 13)))
+(((-838 |#1| |#2|) (-10 -7 (-15 -1352 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1352 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)))) (-1109) (-1109)) (T -838))
+((-1352 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-839 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *1 (-838 *5 *6)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-839 *6)) (-5 *1 (-838 *5 *6)))))
+(-10 -7 (-15 -1352 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1352 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL (|has| |#1| (-21)))) (-4119 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2249 (((-570) $) NIL (|has| |#1| (-854)))) (-3761 (($) NIL (|has| |#1| (-21)) CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 15)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-2937 (((-3 $ "failed") $) 42 (|has| |#1| (-854)))) (-4147 (((-3 (-413 (-570)) "failed") $) 52 (|has| |#1| (-551)))) (-4373 (((-112) $) 46 (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) 49 (|has| |#1| (-551)))) (-3703 (((-112) $) NIL (|has| |#1| (-854)))) (-4340 (((-112) $) NIL (|has| |#1| (-854)))) (-1774 (((-112) $) NIL (|has| |#1| (-854)))) (-3311 (($ $ $) NIL (|has| |#1| (-854)))) (-2222 (($ $ $) NIL (|has| |#1| (-854)))) (-4268 (((-1168) $) NIL)) (-1325 (($) 13)) (-3472 (((-112) $) 12)) (-3479 (((-1129) $) NIL)) (-1976 (((-112) $) 11)) (-3735 (((-868) $) 18) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2740 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-1609 (((-777)) 36 (|has| |#1| (-854)) CONST)) (-3866 (((-112) $ $) 54)) (-1367 (($ $) NIL (|has| |#1| (-854)))) (-1814 (($) 23 (|has| |#1| (-21)) CONST)) (-1824 (($) 33 (|has| |#1| (-854)) CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2872 (((-112) $ $) 21)) (-2914 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2894 (((-112) $ $) 45 (|has| |#1| (-854)))) (-2965 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 29 (|has| |#1| (-21)))) (-2953 (($ $ $) 31 (|has| |#1| (-21)))) (** (($ $ (-928)) NIL (|has| |#1| (-854))) (($ $ (-777)) NIL (|has| |#1| (-854)))) (* (($ $ $) 39 (|has| |#1| (-854))) (($ (-570) $) 27 (|has| |#1| (-21))) (($ (-777) $) NIL (|has| |#1| (-21))) (($ (-928) $) NIL (|has| |#1| (-21)))))
+(((-839 |#1|) (-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1325 ($)) (-15 -1976 ((-112) $)) (-15 -3472 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -839))
+((-1325 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1109)))) (-1976 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-3472 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-4373 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2220 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-4147 (*1 *2 *1) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))))
+(-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1325 ($)) (-15 -1976 ((-112) $)) (-15 -3472 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
+((-4198 (((-112) $ |#2|) 14)) (-3735 (((-868) $) 11)))
+(((-840 |#1| |#2|) (-10 -8 (-15 -4198 ((-112) |#1| |#2|)) (-15 -3735 ((-868) |#1|))) (-841 |#2|) (-1109)) (T -840))
+NIL
+(-10 -8 (-15 -4198 ((-112) |#1| |#2|)) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-3504 ((|#1| $) 16)) (-4268 (((-1168) $) 10)) (-4198 (((-112) $ |#1|) 14)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-4158 (((-55) $) 15)) (-2872 (((-112) $ $) 6)))
(((-841 |#1|) (-141) (-1109)) (T -841))
-((-3503 (*1 *2 *1) (-12 (-4 *1 (-841 *2)) (-4 *2 (-1109)))) (-1893 (*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))) (-1566 (*1 *2 *1 *3) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-1109) (-10 -8 (-15 -3503 (|t#1| $)) (-15 -1893 ((-55) $)) (-15 -1566 ((-112) $ |t#1|))))
+((-3504 (*1 *2 *1) (-12 (-4 *1 (-841 *2)) (-4 *2 (-1109)))) (-4158 (*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))) (-4198 (*1 *2 *1 *3) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-1109) (-10 -8 (-15 -3504 (|t#1| $)) (-15 -4158 ((-55) $)) (-15 -4198 ((-112) $ |t#1|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-115) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-115) $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3700 ((|#1| (-115) |#1|) NIL)) (-2081 (((-112) $) NIL)) (-4022 (($ |#1| (-366 (-115))) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3509 (($ $ (-1 |#1| |#1|)) NIL)) (-1816 (($ $ (-1 |#1| |#1|)) NIL)) (-1876 ((|#1| $ |#1|) NIL)) (-1437 ((|#1| |#1|) NIL (|has| |#1| (-174)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-115)) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1478 (($ $) NIL (|has| |#1| (-174))) (($ $ $) NIL (|has| |#1| (-174)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ (-115) (-570)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
-(((-842 |#1|) (-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1478 ($ $)) (-15 -1478 ($ $ $)) (-15 -1437 (|#1| |#1|))) |%noBranch|) (-15 -1816 ($ $ (-1 |#1| |#1|))) (-15 -3509 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3700 (|#1| (-115) |#1|)) (-15 -4022 ($ |#1| (-366 (-115)))))) (-1058)) (T -842))
-((-1478 (*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1478 (*1 *1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1437 (*1 *2 *2) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1816 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))) (-3509 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-570)) (-5 *1 (-842 *4)) (-4 *4 (-1058)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-842 *3)) (-4 *3 (-1058)))) (-3700 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-5 *1 (-842 *2)) (-4 *2 (-1058)))) (-4022 (*1 *1 *2 *3) (-12 (-5 *3 (-366 (-115))) (-5 *1 (-842 *2)) (-4 *2 (-1058)))))
-(-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1478 ($ $)) (-15 -1478 ($ $ $)) (-15 -1437 (|#1| |#1|))) |%noBranch|) (-15 -1816 ($ $ (-1 |#1| |#1|))) (-15 -3509 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3700 (|#1| (-115) |#1|)) (-15 -4022 ($ |#1| (-366 (-115))))))
-((-3986 (((-216 (-508)) (-1168)) 9)))
-(((-843) (-10 -7 (-15 -3986 ((-216 (-508)) (-1168))))) (T -843))
-((-3986 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
-(-10 -7 (-15 -3986 ((-216 (-508)) (-1168))))
-((-2416 (((-112) $ $) NIL)) (-4322 (((-1127) $) 10)) (-3503 (((-512) $) 9)) (-1903 (((-1168) $) NIL)) (-1566 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-3748 (($ (-512) (-1127)) 8)) (-3735 (((-868) $) 25)) (-1859 (((-112) $ $) NIL)) (-1893 (((-55) $) 20)) (-2872 (((-112) $ $) 12)))
-(((-844) (-13 (-841 (-512)) (-10 -8 (-15 -4322 ((-1127) $)) (-15 -3748 ($ (-512) (-1127)))))) (T -844))
-((-4322 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-844)))) (-3748 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-844)))))
-(-13 (-841 (-512)) (-10 -8 (-15 -4322 ((-1127) $)) (-15 -3748 ($ (-512) (-1127)))))
-((-2416 (((-112) $ $) 7)) (-2929 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 15) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 17) (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 16)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-115) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-115) $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2640 ((|#1| (-115) |#1|) NIL)) (-4340 (((-112) $) NIL)) (-2680 (($ |#1| (-366 (-115))) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1415 (($ $ (-1 |#1| |#1|)) NIL)) (-1622 (($ $ (-1 |#1| |#1|)) NIL)) (-1877 ((|#1| $ |#1|) NIL)) (-1491 ((|#1| |#1|) NIL (|has| |#1| (-174)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-115)) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1449 (($ $) NIL (|has| |#1| (-174))) (($ $ $) NIL (|has| |#1| (-174)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ (-115) (-570)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
+(((-842 |#1|) (-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1449 ($ $)) (-15 -1449 ($ $ $)) (-15 -1491 (|#1| |#1|))) |%noBranch|) (-15 -1622 ($ $ (-1 |#1| |#1|))) (-15 -1415 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -2640 (|#1| (-115) |#1|)) (-15 -2680 ($ |#1| (-366 (-115)))))) (-1058)) (T -842))
+((-1449 (*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1449 (*1 *1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1491 (*1 *2 *2) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1622 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))) (-1415 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-570)) (-5 *1 (-842 *4)) (-4 *4 (-1058)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-842 *3)) (-4 *3 (-1058)))) (-2640 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-5 *1 (-842 *2)) (-4 *2 (-1058)))) (-2680 (*1 *1 *2 *3) (-12 (-5 *3 (-366 (-115))) (-5 *1 (-842 *2)) (-4 *2 (-1058)))))
+(-13 (-1058) (-1047 |#1|) (-1047 (-115)) (-290 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-6 (-38 |#1|)) (-15 -1449 ($ $)) (-15 -1449 ($ $ $)) (-15 -1491 (|#1| |#1|))) |%noBranch|) (-15 -1622 ($ $ (-1 |#1| |#1|))) (-15 -1415 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -2640 (|#1| (-115) |#1|)) (-15 -2680 ($ |#1| (-366 (-115))))))
+((-3583 (((-216 (-508)) (-1168)) 9)))
+(((-843) (-10 -7 (-15 -3583 ((-216 (-508)) (-1168))))) (T -843))
+((-3583 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
+(-10 -7 (-15 -3583 ((-216 (-508)) (-1168))))
+((-2417 (((-112) $ $) NIL)) (-4323 (((-1127) $) 10)) (-3504 (((-512) $) 9)) (-4268 (((-1168) $) NIL)) (-4198 (((-112) $ (-512)) NIL)) (-3479 (((-1129) $) NIL)) (-3749 (($ (-512) (-1127)) 8)) (-3735 (((-868) $) 25)) (-3866 (((-112) $ $) NIL)) (-4158 (((-55) $) 20)) (-2872 (((-112) $ $) 12)))
+(((-844) (-13 (-841 (-512)) (-10 -8 (-15 -4323 ((-1127) $)) (-15 -3749 ($ (-512) (-1127)))))) (T -844))
+((-4323 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-844)))) (-3749 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-844)))))
+(-13 (-841 (-512)) (-10 -8 (-15 -4323 ((-1127) $)) (-15 -3749 ($ (-512) (-1127)))))
+((-2417 (((-112) $ $) 7)) (-3913 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 15) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 17) (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 16)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-845) (-141)) (T -845))
-((-1788 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)))))) (-1788 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)))))) (-2929 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) (-5 *2 (-1044)))) (-2929 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-1044)))))
-(-13 (-1109) (-10 -7 (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -2929 ((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -2929 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))))))
+((-1363 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)))))) (-1363 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)))))) (-3913 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) (-5 *2 (-1044)))) (-3913 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-1044)))))
+(-13 (-1109) (-10 -7 (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3913 ((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3913 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2857 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 169) (((-1044) (-320 (-384)) (-650 (-384))) 167) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384)))) 165) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384)))) 163) (((-1044) (-847)) 128) (((-1044) (-847) (-1072)) 127)) (-1788 (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072)) 88) (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847)) 90)) (-2277 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 170) (((-1044) (-847)) 153)))
-(((-846) (-10 -7 (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -2857 ((-1044) (-847) (-1072))) (-15 -2857 ((-1044) (-847))) (-15 -2277 ((-1044) (-847))) (-15 -2857 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -2857 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -2857 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -2857 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2277 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))) (T -846))
-((-2277 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2857 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-384))) (-5 *5 (-650 (-849 (-384)))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2857 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-650 (-384))) (-5 *5 (-650 (-849 (-384)))) (-5 *6 (-650 (-320 (-384)))) (-5 *3 (-320 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2277 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2857 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))) (-1788 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))))
-(-10 -7 (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -2857 ((-1044) (-847) (-1072))) (-15 -2857 ((-1044) (-847))) (-15 -2277 ((-1044) (-847))) (-15 -2857 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -2857 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -2857 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -2857 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2277 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))
-((-2416 (((-112) $ $) NIL)) (-3080 (((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) $) 21)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14) (($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))))) 18)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-847) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3735 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -3735 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))))) (-15 -3080 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) $))))) (T -847))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-847)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))) (-5 *1 (-847)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))))) (-5 *1 (-847)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227))))))) (-5 *1 (-847)))))
-(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3735 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) (-15 -3735 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))))) (-15 -3080 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))) $))))
-((-1351 (((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|)) 13) (((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|)) 14)))
-(((-848 |#1| |#2|) (-10 -7 (-15 -1351 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1351 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|)))) (-1109) (-1109)) (T -848))
-((-1351 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-849 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-849 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *1 (-848 *5 *6)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-849 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-849 *6)) (-5 *1 (-848 *5 *6)))))
-(-10 -7 (-15 -1351 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1351 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL (|has| |#1| (-21)))) (-4252 (((-1129) $) 31)) (-3596 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3140 (((-570) $) NIL (|has| |#1| (-854)))) (-2450 (($) NIL (|has| |#1| (-21)) CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 18)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-3413 (((-3 $ "failed") $) 58 (|has| |#1| (-854)))) (-2951 (((-3 (-413 (-570)) "failed") $) 65 (|has| |#1| (-551)))) (-2085 (((-112) $) 60 (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) 63 (|has| |#1| (-551)))) (-1522 (((-112) $) NIL (|has| |#1| (-854)))) (-1981 (($) 14)) (-2081 (((-112) $) NIL (|has| |#1| (-854)))) (-2761 (((-112) $) NIL (|has| |#1| (-854)))) (-1991 (($) 16)) (-3310 (($ $ $) NIL (|has| |#1| (-854)))) (-3787 (($ $ $) NIL (|has| |#1| (-854)))) (-1903 (((-1168) $) NIL)) (-1353 (((-112) $) 12)) (-3479 (((-1129) $) NIL)) (-2328 (((-112) $) 11)) (-3735 (((-868) $) 24) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2740 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-2744 (((-777)) 51 (|has| |#1| (-854)) CONST)) (-1859 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| |#1| (-854)))) (-1812 (($) 37 (|has| |#1| (-21)) CONST)) (-1823 (($) 48 (|has| |#1| (-854)) CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2872 (((-112) $ $) 35)) (-2913 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2894 (((-112) $ $) 59 (|has| |#1| (-854)))) (-2965 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 44 (|has| |#1| (-21)))) (-2954 (($ $ $) 46 (|has| |#1| (-21)))) (** (($ $ (-928)) NIL (|has| |#1| (-854))) (($ $ (-777)) NIL (|has| |#1| (-854)))) (* (($ $ $) 55 (|has| |#1| (-854))) (($ (-570) $) 42 (|has| |#1| (-21))) (($ (-777) $) NIL (|has| |#1| (-21))) (($ (-928) $) NIL (|has| |#1| (-21)))))
-(((-849 |#1|) (-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1981 ($)) (-15 -1991 ($)) (-15 -2328 ((-112) $)) (-15 -1353 ((-112) $)) (-15 -4252 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -849))
-((-1981 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-1991 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-1353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-4252 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-2085 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-3137 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2951 (*1 *2 *1) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))))
-(-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1981 ($)) (-15 -1991 ($)) (-15 -2328 ((-112) $)) (-15 -1353 ((-112) $)) (-15 -4252 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
-((-2416 (((-112) $ $) 7)) (-3403 (((-777)) 23)) (-3336 (($) 26)) (-3310 (($ $ $) 14) (($) 22 T CONST)) (-3787 (($ $ $) 15) (($) 21 T CONST)) (-2367 (((-928) $) 25)) (-1903 (((-1168) $) 10)) (-2159 (($ (-928)) 24)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)))
+((-2856 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 169) (((-1044) (-320 (-384)) (-650 (-384))) 167) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384)))) 165) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384)))) 163) (((-1044) (-847)) 128) (((-1044) (-847) (-1072)) 127)) (-1363 (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072)) 88) (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847)) 90)) (-2589 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 170) (((-1044) (-847)) 153)))
+(((-846) (-10 -7 (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -2856 ((-1044) (-847) (-1072))) (-15 -2856 ((-1044) (-847))) (-15 -2589 ((-1044) (-847))) (-15 -2856 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -2856 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -2856 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -2856 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2589 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))) (T -846))
+((-2589 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2856 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2856 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2856 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-384))) (-5 *5 (-650 (-849 (-384)))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2856 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-650 (-384))) (-5 *5 (-650 (-849 (-384)))) (-5 *6 (-650 (-320 (-384)))) (-5 *3 (-320 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2589 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2856 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-2856 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-1363 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))) (-1363 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))))
+(-10 -7 (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -2856 ((-1044) (-847) (-1072))) (-15 -2856 ((-1044) (-847))) (-15 -2589 ((-1044) (-847))) (-15 -2856 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -2856 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -2856 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -2856 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2589 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))
+((-2417 (((-112) $ $) NIL)) (-3080 (((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) $) 21)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14) (($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))))) 18)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-847) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3735 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3735 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))))) (-15 -3080 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) $))))) (T -847))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-847)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))) (-5 *1 (-847)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))))) (-5 *1 (-847)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227))))))) (-5 *1 (-847)))))
+(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3735 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) (-15 -3735 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))))) (-15 -3080 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))) $))))
+((-1352 (((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|)) 13) (((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|)) 14)))
+(((-848 |#1| |#2|) (-10 -7 (-15 -1352 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1352 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|)))) (-1109) (-1109)) (T -848))
+((-1352 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-849 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-849 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *1 (-848 *5 *6)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-849 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-849 *6)) (-5 *1 (-848 *5 *6)))))
+(-10 -7 (-15 -1352 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1352 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL (|has| |#1| (-21)))) (-4405 (((-1129) $) 31)) (-4119 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2249 (((-570) $) NIL (|has| |#1| (-854)))) (-3761 (($) NIL (|has| |#1| (-21)) CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 18)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-2937 (((-3 $ "failed") $) 58 (|has| |#1| (-854)))) (-4147 (((-3 (-413 (-570)) "failed") $) 65 (|has| |#1| (-551)))) (-4373 (((-112) $) 60 (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) 63 (|has| |#1| (-551)))) (-3703 (((-112) $) NIL (|has| |#1| (-854)))) (-1982 (($) 14)) (-4340 (((-112) $) NIL (|has| |#1| (-854)))) (-1774 (((-112) $) NIL (|has| |#1| (-854)))) (-1992 (($) 16)) (-3311 (($ $ $) NIL (|has| |#1| (-854)))) (-2222 (($ $ $) NIL (|has| |#1| (-854)))) (-4268 (((-1168) $) NIL)) (-3472 (((-112) $) 12)) (-3479 (((-1129) $) NIL)) (-1976 (((-112) $) 11)) (-3735 (((-868) $) 24) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2740 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-1609 (((-777)) 51 (|has| |#1| (-854)) CONST)) (-3866 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| |#1| (-854)))) (-1814 (($) 37 (|has| |#1| (-21)) CONST)) (-1824 (($) 48 (|has| |#1| (-854)) CONST)) (-2924 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2872 (((-112) $ $) 35)) (-2914 (((-112) $ $) NIL (|has| |#1| (-854)))) (-2894 (((-112) $ $) 59 (|has| |#1| (-854)))) (-2965 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 44 (|has| |#1| (-21)))) (-2953 (($ $ $) 46 (|has| |#1| (-21)))) (** (($ $ (-928)) NIL (|has| |#1| (-854))) (($ $ (-777)) NIL (|has| |#1| (-854)))) (* (($ $ $) 55 (|has| |#1| (-854))) (($ (-570) $) 42 (|has| |#1| (-21))) (($ (-777) $) NIL (|has| |#1| (-21))) (($ (-928) $) NIL (|has| |#1| (-21)))))
+(((-849 |#1|) (-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1982 ($)) (-15 -1992 ($)) (-15 -1976 ((-112) $)) (-15 -3472 ((-112) $)) (-15 -4405 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -849))
+((-1982 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-1992 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-1976 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-3472 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-4405 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-4373 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2220 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-4147 (*1 *2 *1) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))))
+(-13 (-1109) (-417 |#1|) (-10 -8 (-15 -1982 ($)) (-15 -1992 ($)) (-15 -1976 ((-112) $)) (-15 -3472 ((-112) $)) (-15 -4405 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
+((-2417 (((-112) $ $) 7)) (-3403 (((-777)) 23)) (-3336 (($) 26)) (-3311 (($ $ $) 14) (($) 22 T CONST)) (-2222 (($ $ $) 15) (($) 21 T CONST)) (-2332 (((-928) $) 25)) (-4268 (((-1168) $) 10)) (-2160 (($ (-928)) 24)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)))
(((-850) (-141)) (T -850))
-((-3310 (*1 *1) (-4 *1 (-850))) (-3787 (*1 *1) (-4 *1 (-850))))
-(-13 (-856) (-373) (-10 -8 (-15 -3310 ($) -3640) (-15 -3787 ($) -3640)))
+((-3311 (*1 *1) (-4 *1 (-850))) (-2222 (*1 *1) (-4 *1 (-850))))
+(-13 (-856) (-373) (-10 -8 (-15 -3311 ($) -3640) (-15 -2222 ($) -3640)))
(((-102) . T) ((-619 (-868)) . T) ((-373) . T) ((-856) . T) ((-1109) . T))
-((-2129 (((-112) (-1276 |#2|) (-1276 |#2|)) 23)) (-3651 (((-112) (-1276 |#2|) (-1276 |#2|)) 24)) (-4154 (((-112) (-1276 |#2|) (-1276 |#2|)) 20)))
-(((-851 |#1| |#2|) (-10 -7 (-15 -4154 ((-112) (-1276 |#2|) (-1276 |#2|))) (-15 -2129 ((-112) (-1276 |#2|) (-1276 |#2|))) (-15 -3651 ((-112) (-1276 |#2|) (-1276 |#2|)))) (-777) (-798)) (T -851))
-((-3651 (*1 *2 *3 *3) (-12 (-5 *3 (-1276 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-2129 (*1 *2 *3 *3) (-12 (-5 *3 (-1276 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-4154 (*1 *2 *3 *3) (-12 (-5 *3 (-1276 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
-(-10 -7 (-15 -4154 ((-112) (-1276 |#2|) (-1276 |#2|))) (-15 -2129 ((-112) (-1276 |#2|) (-1276 |#2|))) (-15 -3651 ((-112) (-1276 |#2|) (-1276 |#2|))))
-((-2416 (((-112) $ $) 7)) (-2450 (($) 24 T CONST)) (-3413 (((-3 $ "failed") $) 27)) (-2081 (((-112) $) 25)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1823 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (** (($ $ (-928)) 22) (($ $ (-777)) 26)) (* (($ $ $) 21)))
+((-1735 (((-112) (-1277 |#2|) (-1277 |#2|)) 23)) (-3406 (((-112) (-1277 |#2|) (-1277 |#2|)) 24)) (-1578 (((-112) (-1277 |#2|) (-1277 |#2|)) 20)))
+(((-851 |#1| |#2|) (-10 -7 (-15 -1578 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -1735 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -3406 ((-112) (-1277 |#2|) (-1277 |#2|)))) (-777) (-798)) (T -851))
+((-3406 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-1735 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-1578 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
+(-10 -7 (-15 -1578 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -1735 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -3406 ((-112) (-1277 |#2|) (-1277 |#2|))))
+((-2417 (((-112) $ $) 7)) (-3761 (($) 24 T CONST)) (-2937 (((-3 $ "failed") $) 27)) (-4340 (((-112) $) 25)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1824 (($) 23 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (** (($ $ (-928)) 22) (($ $ (-777)) 26)) (* (($ $ $) 21)))
(((-852) (-141)) (T -852))
NIL
(-13 (-863) (-732))
(((-102) . T) ((-619 (-868)) . T) ((-732) . T) ((-863) . T) ((-856) . T) ((-1121) . T) ((-1109) . T))
-((-3140 (((-570) $) 21)) (-1522 (((-112) $) 10)) (-2761 (((-112) $) 12)) (-1423 (($ $) 23)))
-(((-853 |#1|) (-10 -8 (-15 -1423 (|#1| |#1|)) (-15 -3140 ((-570) |#1|)) (-15 -2761 ((-112) |#1|)) (-15 -1522 ((-112) |#1|))) (-854)) (T -853))
+((-2249 (((-570) $) 21)) (-3703 (((-112) $) 10)) (-1774 (((-112) $) 12)) (-1367 (($ $) 23)))
+(((-853 |#1|) (-10 -8 (-15 -1367 (|#1| |#1|)) (-15 -2249 ((-570) |#1|)) (-15 -1774 ((-112) |#1|)) (-15 -3703 ((-112) |#1|))) (-854)) (T -853))
NIL
-(-10 -8 (-15 -1423 (|#1| |#1|)) (-15 -3140 ((-570) |#1|)) (-15 -2761 ((-112) |#1|)) (-15 -1522 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 25)) (-3596 (((-3 $ "failed") $ $) 27)) (-3140 (((-570) $) 37)) (-2450 (($) 24 T CONST)) (-3413 (((-3 $ "failed") $) 42)) (-1522 (((-112) $) 39)) (-2081 (((-112) $) 44)) (-2761 (((-112) $) 38)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 46)) (-2744 (((-777)) 47 T CONST)) (-1859 (((-112) $ $) 9)) (-1423 (($ $) 36)) (-1812 (($) 23 T CONST)) (-1823 (($) 45 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2965 (($ $ $) 31) (($ $) 30)) (-2954 (($ $ $) 21)) (** (($ $ (-777)) 43) (($ $ (-928)) 40)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29) (($ $ $) 41)))
+(-10 -8 (-15 -1367 (|#1| |#1|)) (-15 -2249 ((-570) |#1|)) (-15 -1774 ((-112) |#1|)) (-15 -3703 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 25)) (-4119 (((-3 $ "failed") $ $) 27)) (-2249 (((-570) $) 37)) (-3761 (($) 24 T CONST)) (-2937 (((-3 $ "failed") $) 42)) (-3703 (((-112) $) 39)) (-4340 (((-112) $) 44)) (-1774 (((-112) $) 38)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 46)) (-1609 (((-777)) 47 T CONST)) (-3866 (((-112) $ $) 9)) (-1367 (($ $) 36)) (-1814 (($) 23 T CONST)) (-1824 (($) 45 T CONST)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (-2965 (($ $ $) 31) (($ $) 30)) (-2953 (($ $ $) 21)) (** (($ $ (-777)) 43) (($ $ (-928)) 40)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29) (($ $ $) 41)))
(((-854) (-141)) (T -854))
-((-1522 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-2761 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-3140 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-570)))) (-1423 (*1 *1 *1) (-4 *1 (-854))))
-(-13 (-797) (-1058) (-732) (-10 -8 (-15 -1522 ((-112) $)) (-15 -2761 ((-112) $)) (-15 -3140 ((-570) $)) (-15 -1423 ($ $))))
+((-3703 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-1774 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-2249 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-570)))) (-1367 (*1 *1 *1) (-4 *1 (-854))))
+(-13 (-797) (-1058) (-732) (-10 -8 (-15 -3703 ((-112) $)) (-15 -1774 ((-112) $)) (-15 -2249 ((-570) $)) (-15 -1367 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-856) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3310 (($ $ $) 12)) (-3787 (($ $ $) 11)) (-1859 (((-112) $ $) 9)) (-2924 (((-112) $ $) 15)) (-2904 (((-112) $ $) 13)) (-2913 (((-112) $ $) 16)))
-(((-855 |#1|) (-10 -8 (-15 -3310 (|#1| |#1| |#1|)) (-15 -3787 (|#1| |#1| |#1|)) (-15 -2913 ((-112) |#1| |#1|)) (-15 -2924 ((-112) |#1| |#1|)) (-15 -2904 ((-112) |#1| |#1|)) (-15 -1859 ((-112) |#1| |#1|))) (-856)) (T -855))
+((-3311 (($ $ $) 12)) (-2222 (($ $ $) 11)) (-3866 (((-112) $ $) 9)) (-2924 (((-112) $ $) 15)) (-2904 (((-112) $ $) 13)) (-2914 (((-112) $ $) 16)))
+(((-855 |#1|) (-10 -8 (-15 -3311 (|#1| |#1| |#1|)) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2914 ((-112) |#1| |#1|)) (-15 -2924 ((-112) |#1| |#1|)) (-15 -2904 ((-112) |#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|))) (-856)) (T -855))
NIL
-(-10 -8 (-15 -3310 (|#1| |#1| |#1|)) (-15 -3787 (|#1| |#1| |#1|)) (-15 -2913 ((-112) |#1| |#1|)) (-15 -2924 ((-112) |#1| |#1|)) (-15 -2904 ((-112) |#1| |#1|)) (-15 -1859 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)))
+(-10 -8 (-15 -3311 (|#1| |#1| |#1|)) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2914 ((-112) |#1| |#1|)) (-15 -2924 ((-112) |#1| |#1|)) (-15 -2904 ((-112) |#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)))
(((-856) (-141)) (T -856))
-((-2894 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2904 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2924 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2913 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3787 (*1 *1 *1 *1) (-4 *1 (-856))) (-3310 (*1 *1 *1 *1) (-4 *1 (-856))))
-(-13 (-1109) (-10 -8 (-15 -2894 ((-112) $ $)) (-15 -2904 ((-112) $ $)) (-15 -2924 ((-112) $ $)) (-15 -2913 ((-112) $ $)) (-15 -3787 ($ $ $)) (-15 -3310 ($ $ $))))
+((-2894 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2904 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2924 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2914 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2222 (*1 *1 *1 *1) (-4 *1 (-856))) (-3311 (*1 *1 *1 *1) (-4 *1 (-856))))
+(-13 (-1109) (-10 -8 (-15 -2894 ((-112) $ $)) (-15 -2904 ((-112) $ $)) (-15 -2924 ((-112) $ $)) (-15 -2914 ((-112) $ $)) (-15 -2222 ($ $ $)) (-15 -3311 ($ $ $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3218 (($ $ $) 49)) (-2454 (($ $ $) 48)) (-2580 (($ $ $) 46)) (-4220 (($ $ $) 55)) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 50)) (-3181 (((-3 $ "failed") $ $) 53)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 29)) (-3543 (($ $) 39)) (-1433 (($ $ $) 43)) (-4248 (($ $ $) 42)) (-1422 (($ $ $) 51)) (-3582 (($ $ $) 57)) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 45)) (-2235 (((-3 $ "failed") $ $) 52)) (-2407 (((-3 $ "failed") $ |#2|) 32)) (-3030 ((|#2| $) 36)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#2|) 13)) (-3009 (((-650 |#2|) $) 21)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 25)))
-(((-857 |#1| |#2|) (-10 -8 (-15 -1422 (|#1| |#1| |#1|)) (-15 -2536 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2339 |#1|)) |#1| |#1|)) (-15 -4220 (|#1| |#1| |#1|)) (-15 -3181 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3218 (|#1| |#1| |#1|)) (-15 -2454 (|#1| |#1| |#1|)) (-15 -2580 (|#1| |#1| |#1|)) (-15 -1755 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2339 |#1|)) |#1| |#1|)) (-15 -3582 (|#1| |#1| |#1|)) (-15 -2235 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1433 (|#1| |#1| |#1|)) (-15 -4248 (|#1| |#1| |#1|)) (-15 -3543 (|#1| |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3009 ((-650 |#2|) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3735 ((-868) |#1|))) (-858 |#2|) (-1058)) (T -857))
+((-1837 (($ $ $) 49)) (-3799 (($ $ $) 48)) (-2493 (($ $ $) 46)) (-4089 (($ $ $) 55)) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 50)) (-1462 (((-3 $ "failed") $ $) 53)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 29)) (-1767 (($ $) 39)) (-1460 (($ $ $) 43)) (-4381 (($ $ $) 42)) (-1354 (($ $ $) 51)) (-4014 (($ $ $) 57)) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 45)) (-3400 (((-3 $ "failed") $ $) 52)) (-2406 (((-3 $ "failed") $ |#2|) 32)) (-3621 ((|#2| $) 36)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#2|) 13)) (-3405 (((-650 |#2|) $) 21)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 25)))
+(((-857 |#1| |#2|) (-10 -8 (-15 -1354 (|#1| |#1| |#1|)) (-15 -3315 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2340 |#1|)) |#1| |#1|)) (-15 -4089 (|#1| |#1| |#1|)) (-15 -1462 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1837 (|#1| |#1| |#1|)) (-15 -3799 (|#1| |#1| |#1|)) (-15 -2493 (|#1| |#1| |#1|)) (-15 -2274 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2340 |#1|)) |#1| |#1|)) (-15 -4014 (|#1| |#1| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1460 (|#1| |#1| |#1|)) (-15 -4381 (|#1| |#1| |#1|)) (-15 -1767 (|#1| |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3405 ((-650 |#2|) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3735 ((-868) |#1|))) (-858 |#2|) (-1058)) (T -857))
NIL
-(-10 -8 (-15 -1422 (|#1| |#1| |#1|)) (-15 -2536 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2339 |#1|)) |#1| |#1|)) (-15 -4220 (|#1| |#1| |#1|)) (-15 -3181 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3218 (|#1| |#1| |#1|)) (-15 -2454 (|#1| |#1| |#1|)) (-15 -2580 (|#1| |#1| |#1|)) (-15 -1755 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2339 |#1|)) |#1| |#1|)) (-15 -3582 (|#1| |#1| |#1|)) (-15 -2235 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1433 (|#1| |#1| |#1|)) (-15 -4248 (|#1| |#1| |#1|)) (-15 -3543 (|#1| |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -2407 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3009 ((-650 |#2|) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3218 (($ $ $) 50 (|has| |#1| (-368)))) (-2454 (($ $ $) 51 (|has| |#1| (-368)))) (-2580 (($ $ $) 53 (|has| |#1| (-368)))) (-4220 (($ $ $) 48 (|has| |#1| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 47 (|has| |#1| (-368)))) (-3181 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 52 (|has| |#1| (-368)))) (-4378 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3080 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1890 (($ $) 69)) (-3413 (((-3 $ "failed") $) 37)) (-3543 (($ $) 60 (|has| |#1| (-458)))) (-2081 (((-112) $) 35)) (-3872 (($ |#1| (-777)) 67)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 62 (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63 (|has| |#1| (-562)))) (-4341 (((-777) $) 71)) (-1433 (($ $ $) 57 (|has| |#1| (-368)))) (-4248 (($ $ $) 58 (|has| |#1| (-368)))) (-1422 (($ $ $) 46 (|has| |#1| (-368)))) (-3582 (($ $ $) 55 (|has| |#1| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 54 (|has| |#1| (-368)))) (-2235 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 59 (|has| |#1| (-368)))) (-1864 ((|#1| $) 70)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-1601 (((-777) $) 72)) (-3030 ((|#1| $) 61 (|has| |#1| (-458)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-3009 (((-650 |#1|) $) 66)) (-1715 ((|#1| $ (-777)) 68)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-3381 ((|#1| $ |#1| |#1|) 65)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
+(-10 -8 (-15 -1354 (|#1| |#1| |#1|)) (-15 -3315 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2340 |#1|)) |#1| |#1|)) (-15 -4089 (|#1| |#1| |#1|)) (-15 -1462 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1837 (|#1| |#1| |#1|)) (-15 -3799 (|#1| |#1| |#1|)) (-15 -2493 (|#1| |#1| |#1|)) (-15 -2274 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2340 |#1|)) |#1| |#1|)) (-15 -4014 (|#1| |#1| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1460 (|#1| |#1| |#1|)) (-15 -4381 (|#1| |#1| |#1|)) (-15 -1767 (|#1| |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -2406 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3405 ((-650 |#2|) |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1837 (($ $ $) 50 (|has| |#1| (-368)))) (-3799 (($ $ $) 51 (|has| |#1| (-368)))) (-2493 (($ $ $) 53 (|has| |#1| (-368)))) (-4089 (($ $ $) 48 (|has| |#1| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 47 (|has| |#1| (-368)))) (-1462 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 52 (|has| |#1| (-368)))) (-4379 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3080 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1891 (($ $) 69)) (-2937 (((-3 $ "failed") $) 37)) (-1767 (($ $) 60 (|has| |#1| (-458)))) (-4340 (((-112) $) 35)) (-3872 (($ |#1| (-777)) 67)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 62 (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63 (|has| |#1| (-562)))) (-2730 (((-777) $) 71)) (-1460 (($ $ $) 57 (|has| |#1| (-368)))) (-4381 (($ $ $) 58 (|has| |#1| (-368)))) (-1354 (($ $ $) 46 (|has| |#1| (-368)))) (-4014 (($ $ $) 55 (|has| |#1| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 54 (|has| |#1| (-368)))) (-3400 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 59 (|has| |#1| (-368)))) (-1865 ((|#1| $) 70)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-3221 (((-777) $) 72)) (-3621 ((|#1| $) 61 (|has| |#1| (-458)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-3405 (((-650 |#1|) $) 66)) (-1983 ((|#1| $ (-777)) 68)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-3381 ((|#1| $ |#1| |#1|) 65)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
(((-858 |#1|) (-141) (-1058)) (T -858))
-((-1601 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-4341 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1864 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1890 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-3009 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-650 *3)))) (-3381 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2407 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-3482 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3)))) (-2086 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3)))) (-3030 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-3543 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-2422 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3)))) (-4248 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1433 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2235 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3582 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1755 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2339 *1))) (-4 *1 (-858 *3)))) (-2580 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1751 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3)))) (-2454 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3218 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3181 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4220 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2536 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2339 *1))) (-4 *1 (-858 *3)))) (-1422 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(-13 (-1058) (-111 |t#1| |t#1|) (-417 |t#1|) (-10 -8 (-15 -1601 ((-777) $)) (-15 -4341 ((-777) $)) (-15 -1864 (|t#1| $)) (-15 -1890 ($ $)) (-15 -1715 (|t#1| $ (-777))) (-15 -3872 ($ |t#1| (-777))) (-15 -3009 ((-650 |t#1|) $)) (-15 -3381 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -2407 ((-3 $ "failed") $ |t#1|)) (-15 -3482 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2086 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -3030 (|t#1| $)) (-15 -3543 ($ $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -2422 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -4248 ($ $ $)) (-15 -1433 ($ $ $)) (-15 -2235 ((-3 $ "failed") $ $)) (-15 -3582 ($ $ $)) (-15 -1755 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $)) (-15 -2580 ($ $ $)) (-15 -1751 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2454 ($ $ $)) (-15 -3218 ($ $ $)) (-15 -3181 ((-3 $ "failed") $ $)) (-15 -4220 ($ $ $)) (-15 -2536 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $)) (-15 -1422 ($ $ $))) |%noBranch|)))
+((-3221 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2730 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1891 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1983 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-3872 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-3405 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-650 *3)))) (-3381 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2406 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2358 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3)))) (-4383 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3)))) (-3621 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-1767 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-1669 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3)))) (-4381 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1460 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3400 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4014 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2274 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2340 *1))) (-4 *1 (-858 *3)))) (-2493 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2253 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3)))) (-3799 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1837 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1462 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4089 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3315 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2340 *1))) (-4 *1 (-858 *3)))) (-1354 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(-13 (-1058) (-111 |t#1| |t#1|) (-417 |t#1|) (-10 -8 (-15 -3221 ((-777) $)) (-15 -2730 ((-777) $)) (-15 -1865 (|t#1| $)) (-15 -1891 ($ $)) (-15 -1983 (|t#1| $ (-777))) (-15 -3872 ($ |t#1| (-777))) (-15 -3405 ((-650 |t#1|) $)) (-15 -3381 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -2406 ((-3 $ "failed") $ |t#1|)) (-15 -2358 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -4383 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -3621 (|t#1| $)) (-15 -1767 ($ $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -1669 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -4381 ($ $ $)) (-15 -1460 ($ $ $)) (-15 -3400 ((-3 $ "failed") $ $)) (-15 -4014 ($ $ $)) (-15 -2274 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $)) (-15 -2493 ($ $ $)) (-15 -2253 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -3799 ($ $ $)) (-15 -1837 ($ $ $)) (-15 -1462 ((-3 $ "failed") $ $)) (-15 -4089 ($ $ $)) (-15 -3315 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $)) (-15 -1354 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-174)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-622 #0=(-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-417 |#1|) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) |has| |#1| (-174)) ((-723 |#1|) |has| |#1| (-174)) ((-732) . T) ((-1047 #0#) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3220 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-1751 (((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)) 49 (|has| |#1| (-368)))) (-2086 (((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)) 46 (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)) 45 (|has| |#1| (-562)))) (-2422 (((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)) 48 (|has| |#1| (-368)))) (-3381 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 36)))
-(((-859 |#1| |#2|) (-10 -7 (-15 -3220 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3381 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -3482 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2086 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2422 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1751 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1058) (-858 |#1|)) (T -859))
-((-1751 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-2422 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-2086 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3482 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3381 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1058)) (-5 *1 (-859 *2 *3)) (-4 *3 (-858 *2)))) (-3220 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1058)) (-5 *1 (-859 *5 *2)) (-4 *2 (-858 *5)))))
-(-10 -7 (-15 -3220 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3381 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -3482 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2086 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2422 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1751 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3218 (($ $ $) NIL (|has| |#1| (-368)))) (-2454 (($ $ $) NIL (|has| |#1| (-368)))) (-2580 (($ $ $) NIL (|has| |#1| (-368)))) (-4220 (($ $ $) NIL (|has| |#1| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-3181 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 34 (|has| |#1| (-368)))) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458)))) (-1559 (((-868) $ (-868)) NIL)) (-2081 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 30 (|has| |#1| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 28 (|has| |#1| (-562)))) (-4341 (((-777) $) NIL)) (-1433 (($ $ $) NIL (|has| |#1| (-368)))) (-4248 (($ $ $) NIL (|has| |#1| (-368)))) (-1422 (($ $ $) NIL (|has| |#1| (-368)))) (-3582 (($ $ $) NIL (|has| |#1| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2235 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 32 (|has| |#1| (-368)))) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1601 (((-777) $) NIL)) (-3030 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) 15)) (-1812 (($) NIL T CONST)) (-1823 (($) 23 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) 19) (($ $ (-777)) 24)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-860 |#1| |#2| |#3|) (-13 (-858 |#1|) (-10 -8 (-15 -1559 ((-868) $ (-868))))) (-1058) (-99 |#1|) (-1 |#1| |#1|)) (T -860))
-((-1559 (*1 *2 *1 *2) (-12 (-5 *2 (-868)) (-5 *1 (-860 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-858 |#1|) (-10 -8 (-15 -1559 ((-868) $ (-868)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3218 (($ $ $) NIL (|has| |#2| (-368)))) (-2454 (($ $ $) NIL (|has| |#2| (-368)))) (-2580 (($ $ $) NIL (|has| |#2| (-368)))) (-4220 (($ $ $) NIL (|has| |#2| (-368)))) (-2536 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#2| (-368)))) (-3181 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-1751 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-368)))) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#2| (-458)))) (-2081 (((-112) $) NIL)) (-3872 (($ |#2| (-777)) 17)) (-2086 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-562)))) (-3482 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-562)))) (-4341 (((-777) $) NIL)) (-1433 (($ $ $) NIL (|has| |#2| (-368)))) (-4248 (($ $ $) NIL (|has| |#2| (-368)))) (-1422 (($ $ $) NIL (|has| |#2| (-368)))) (-3582 (($ $ $) NIL (|has| |#2| (-368)))) (-1755 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#2| (-368)))) (-2235 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-2422 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-368)))) (-1864 ((|#2| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-1601 (((-777) $) NIL)) (-3030 ((|#2| $) NIL (|has| |#2| (-458)))) (-3735 (((-868) $) 24) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (($ (-1272 |#1|)) 19)) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-777)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-3381 ((|#2| $ |#2| |#2|) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) 13 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-861 |#1| |#2| |#3| |#4|) (-13 (-858 |#2|) (-622 (-1272 |#1|))) (-1186) (-1058) (-99 |#2|) (-1 |#2| |#2|)) (T -861))
-NIL
-(-13 (-858 |#2|) (-622 (-1272 |#1|)))
-((-2442 ((|#1| (-777) |#1|) 48 (|has| |#1| (-38 (-413 (-570)))))) (-1929 ((|#1| (-777) (-777) |#1|) 39) ((|#1| (-777) |#1|) 27)) (-4078 ((|#1| (-777) |#1|) 43)) (-1762 ((|#1| (-777) |#1|) 41)) (-2713 ((|#1| (-777) |#1|) 40)))
-(((-862 |#1|) (-10 -7 (-15 -2713 (|#1| (-777) |#1|)) (-15 -1762 (|#1| (-777) |#1|)) (-15 -4078 (|#1| (-777) |#1|)) (-15 -1929 (|#1| (-777) |#1|)) (-15 -1929 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2442 (|#1| (-777) |#1|)) |%noBranch|)) (-174)) (T -862))
-((-2442 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-1929 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-1929 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-4078 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-1762 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-2713 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
-(-10 -7 (-15 -2713 (|#1| (-777) |#1|)) (-15 -1762 (|#1| (-777) |#1|)) (-15 -4078 (|#1| (-777) |#1|)) (-15 -1929 (|#1| (-777) |#1|)) (-15 -1929 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2442 (|#1| (-777) |#1|)) |%noBranch|))
-((-2416 (((-112) $ $) 7)) (-3310 (($ $ $) 14)) (-3787 (($ $ $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (** (($ $ (-928)) 22)) (* (($ $ $) 21)))
+((-3220 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-2253 (((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)) 49 (|has| |#1| (-368)))) (-4383 (((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)) 46 (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)) 45 (|has| |#1| (-562)))) (-1669 (((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)) 48 (|has| |#1| (-368)))) (-3381 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 36)))
+(((-859 |#1| |#2|) (-10 -7 (-15 -3220 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3381 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -2358 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -4383 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -1669 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2253 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1058) (-858 |#1|)) (T -859))
+((-2253 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-1669 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-4383 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-2358 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3381 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1058)) (-5 *1 (-859 *2 *3)) (-4 *3 (-858 *2)))) (-3220 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1058)) (-5 *1 (-859 *5 *2)) (-4 *2 (-858 *5)))))
+(-10 -7 (-15 -3220 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3381 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -2358 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -4383 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -1669 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2253 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1837 (($ $ $) NIL (|has| |#1| (-368)))) (-3799 (($ $ $) NIL (|has| |#1| (-368)))) (-2493 (($ $ $) NIL (|has| |#1| (-368)))) (-4089 (($ $ $) NIL (|has| |#1| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-1462 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 34 (|has| |#1| (-368)))) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458)))) (-4114 (((-868) $ (-868)) NIL)) (-4340 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) NIL)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 30 (|has| |#1| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 28 (|has| |#1| (-562)))) (-2730 (((-777) $) NIL)) (-1460 (($ $ $) NIL (|has| |#1| (-368)))) (-4381 (($ $ $) NIL (|has| |#1| (-368)))) (-1354 (($ $ $) NIL (|has| |#1| (-368)))) (-4014 (($ $ $) NIL (|has| |#1| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-3400 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 32 (|has| |#1| (-368)))) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3221 (((-777) $) NIL)) (-3621 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-3381 ((|#1| $ |#1| |#1|) 15)) (-1814 (($) NIL T CONST)) (-1824 (($) 23 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) 19) (($ $ (-777)) 24)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-860 |#1| |#2| |#3|) (-13 (-858 |#1|) (-10 -8 (-15 -4114 ((-868) $ (-868))))) (-1058) (-99 |#1|) (-1 |#1| |#1|)) (T -860))
+((-4114 (*1 *2 *1 *2) (-12 (-5 *2 (-868)) (-5 *1 (-860 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-858 |#1|) (-10 -8 (-15 -4114 ((-868) $ (-868)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-1837 (($ $ $) NIL (|has| |#2| (-368)))) (-3799 (($ $ $) NIL (|has| |#2| (-368)))) (-2493 (($ $ $) NIL (|has| |#2| (-368)))) (-4089 (($ $ $) NIL (|has| |#2| (-368)))) (-3315 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#2| (-368)))) (-1462 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-2253 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-368)))) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#2| (-458)))) (-4340 (((-112) $) NIL)) (-3872 (($ |#2| (-777)) 17)) (-4383 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-562)))) (-2358 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-562)))) (-2730 (((-777) $) NIL)) (-1460 (($ $ $) NIL (|has| |#2| (-368)))) (-4381 (($ $ $) NIL (|has| |#2| (-368)))) (-1354 (($ $ $) NIL (|has| |#2| (-368)))) (-4014 (($ $ $) NIL (|has| |#2| (-368)))) (-2274 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#2| (-368)))) (-3400 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-1669 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-368)))) (-1865 ((|#2| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-3221 (((-777) $) NIL)) (-3621 ((|#2| $) NIL (|has| |#2| (-458)))) (-3735 (((-868) $) 24) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (($ (-1273 |#1|)) 19)) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-777)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-3381 ((|#2| $ |#2| |#2|) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) 13 T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-861 |#1| |#2| |#3| |#4|) (-13 (-858 |#2|) (-622 (-1273 |#1|))) (-1186) (-1058) (-99 |#2|) (-1 |#2| |#2|)) (T -861))
+NIL
+(-13 (-858 |#2|) (-622 (-1273 |#1|)))
+((-1844 ((|#1| (-777) |#1|) 48 (|has| |#1| (-38 (-413 (-570)))))) (-3258 ((|#1| (-777) (-777) |#1|) 39) ((|#1| (-777) |#1|) 27)) (-2114 ((|#1| (-777) |#1|) 43)) (-2331 ((|#1| (-777) |#1|) 41)) (-4408 ((|#1| (-777) |#1|) 40)))
+(((-862 |#1|) (-10 -7 (-15 -4408 (|#1| (-777) |#1|)) (-15 -2331 (|#1| (-777) |#1|)) (-15 -2114 (|#1| (-777) |#1|)) (-15 -3258 (|#1| (-777) |#1|)) (-15 -3258 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -1844 (|#1| (-777) |#1|)) |%noBranch|)) (-174)) (T -862))
+((-1844 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-3258 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-3258 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-2114 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-2331 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-4408 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
+(-10 -7 (-15 -4408 (|#1| (-777) |#1|)) (-15 -2331 (|#1| (-777) |#1|)) (-15 -2114 (|#1| (-777) |#1|)) (-15 -3258 (|#1| (-777) |#1|)) (-15 -3258 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -1844 (|#1| (-777) |#1|)) |%noBranch|))
+((-2417 (((-112) $ $) 7)) (-3311 (($ $ $) 14)) (-2222 (($ $ $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2924 (((-112) $ $) 17)) (-2904 (((-112) $ $) 18)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 16)) (-2894 (((-112) $ $) 19)) (** (($ $ (-928)) 22)) (* (($ $ $) 21)))
(((-863) (-141)) (T -863))
NIL
(-13 (-856) (-1121))
(((-102) . T) ((-619 (-868)) . T) ((-856) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-2195 (((-570) $) 14)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-570)) 13)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 11)))
-(((-864) (-13 (-856) (-10 -8 (-15 -3735 ($ (-570))) (-15 -2195 ((-570) $))))) (T -864))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-864)))) (-2195 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-864)))))
-(-13 (-856) (-10 -8 (-15 -3735 ($ (-570))) (-15 -2195 ((-570) $))))
-((-3343 (((-697 (-1234)) $ (-1234)) 15)) (-3510 (((-697 (-555)) $ (-555)) 12)) (-1609 (((-777) $ (-129)) 30)))
-(((-865 |#1|) (-10 -8 (-15 -1609 ((-777) |#1| (-129))) (-15 -3343 ((-697 (-1234)) |#1| (-1234))) (-15 -3510 ((-697 (-555)) |#1| (-555)))) (-866)) (T -865))
-NIL
-(-10 -8 (-15 -1609 ((-777) |#1| (-129))) (-15 -3343 ((-697 (-1234)) |#1| (-1234))) (-15 -3510 ((-697 (-555)) |#1| (-555))))
-((-3343 (((-697 (-1234)) $ (-1234)) 8)) (-3510 (((-697 (-555)) $ (-555)) 9)) (-1609 (((-777) $ (-129)) 7)) (-1784 (((-697 (-130)) $ (-130)) 10)) (-1866 (($ $) 6)))
+((-2417 (((-112) $ $) NIL)) (-2196 (((-570) $) 14)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 20) (($ (-570)) 13)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 9)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 11)))
+(((-864) (-13 (-856) (-10 -8 (-15 -3735 ($ (-570))) (-15 -2196 ((-570) $))))) (T -864))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-864)))) (-2196 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-864)))))
+(-13 (-856) (-10 -8 (-15 -3735 ($ (-570))) (-15 -2196 ((-570) $))))
+((-3512 (((-697 (-1235)) $ (-1235)) 15)) (-1430 (((-697 (-555)) $ (-555)) 12)) (-3319 (((-777) $ (-129)) 30)))
+(((-865 |#1|) (-10 -8 (-15 -3319 ((-777) |#1| (-129))) (-15 -3512 ((-697 (-1235)) |#1| (-1235))) (-15 -1430 ((-697 (-555)) |#1| (-555)))) (-866)) (T -865))
+NIL
+(-10 -8 (-15 -3319 ((-777) |#1| (-129))) (-15 -3512 ((-697 (-1235)) |#1| (-1235))) (-15 -1430 ((-697 (-555)) |#1| (-555))))
+((-3512 (((-697 (-1235)) $ (-1235)) 8)) (-1430 (((-697 (-555)) $ (-555)) 9)) (-3319 (((-777) $ (-129)) 7)) (-1316 (((-697 (-130)) $ (-130)) 10)) (-3924 (($ $) 6)))
(((-866) (-141)) (T -866))
-((-1784 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))) (-3510 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))) (-3343 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1234))) (-5 *3 (-1234)))) (-1609 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(-13 (-175) (-10 -8 (-15 -1784 ((-697 (-130)) $ (-130))) (-15 -3510 ((-697 (-555)) $ (-555))) (-15 -3343 ((-697 (-1234)) $ (-1234))) (-15 -1609 ((-777) $ (-129)))))
+((-1316 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))) (-1430 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))) (-3512 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1235))) (-5 *3 (-1235)))) (-3319 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
+(-13 (-175) (-10 -8 (-15 -1316 ((-697 (-130)) $ (-130))) (-15 -1430 ((-697 (-555)) $ (-555))) (-15 -3512 ((-697 (-1235)) $ (-1235))) (-15 -3319 ((-777) $ (-129)))))
(((-175) . T))
-((-3343 (((-697 (-1234)) $ (-1234)) NIL)) (-3510 (((-697 (-555)) $ (-555)) NIL)) (-1609 (((-777) $ (-129)) NIL)) (-1784 (((-697 (-130)) $ (-130)) 22)) (-4336 (($ (-394)) 12) (($ (-1168)) 14)) (-1372 (((-112) $) 19)) (-3735 (((-868) $) 26)) (-1866 (($ $) 23)))
-(((-867) (-13 (-866) (-619 (-868)) (-10 -8 (-15 -4336 ($ (-394))) (-15 -4336 ($ (-1168))) (-15 -1372 ((-112) $))))) (T -867))
-((-4336 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))) (-4336 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867)))) (-1372 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-867)))))
-(-13 (-866) (-619 (-868)) (-10 -8 (-15 -4336 ($ (-394))) (-15 -4336 ($ (-1168))) (-15 -1372 ((-112) $))))
-((-2416 (((-112) $ $) NIL) (($ $ $) 85)) (-4370 (($ $ $) 125)) (-3414 (((-570) $) 31) (((-570)) 36)) (-3387 (($ (-570)) 53)) (-3084 (($ $ $) 54) (($ (-650 $)) 84)) (-2047 (($ $ (-650 $)) 82)) (-2394 (((-570) $) 34)) (-3500 (($ $ $) 73)) (-3202 (($ $) 140) (($ $ $) 141) (($ $ $ $) 142)) (-3600 (((-570) $) 33)) (-1810 (($ $ $) 72)) (-3320 (($ $) 114)) (-2306 (($ $ $) 129)) (-2569 (($ (-650 $)) 61)) (-3801 (($ $ (-650 $)) 79)) (-3165 (($ (-570) (-570)) 55)) (-3806 (($ $) 126) (($ $ $) 127)) (-4410 (($ $ (-570)) 43) (($ $) 46)) (-2372 (($ $ $) 97)) (-1684 (($ $ $) 132)) (-3079 (($ $) 115)) (-2381 (($ $ $) 98)) (-3859 (($ $) 143) (($ $ $) 144) (($ $ $ $) 145)) (-2879 (((-1281) $) 10)) (-1512 (($ $) 118) (($ $ (-777)) 122)) (-3361 (($ $ $) 75)) (-1895 (($ $ $) 74)) (-4303 (($ $ (-650 $)) 110)) (-2293 (($ $ $) 113)) (-3882 (($ (-650 $)) 59)) (-2268 (($ $) 70) (($ (-650 $)) 71)) (-4337 (($ $ $) 123)) (-2204 (($ $) 116)) (-3648 (($ $ $) 128)) (-1559 (($ (-570)) 21) (($ (-1186)) 23) (($ (-1168)) 30) (($ (-227)) 25)) (-1778 (($ $ $) 101)) (-1754 (($ $) 102)) (-1473 (((-1281) (-1168)) 15)) (-1799 (($ (-1168)) 14)) (-2427 (($ (-650 (-650 $))) 58)) (-4397 (($ $ (-570)) 42) (($ $) 45)) (-1903 (((-1168) $) NIL)) (-1511 (($ $ $) 131)) (-3744 (($ $) 146) (($ $ $) 147) (($ $ $ $) 148)) (-2574 (((-112) $) 108)) (-2858 (($ $ (-650 $)) 111) (($ $ $ $) 112)) (-2588 (($ (-570)) 39)) (-1434 (((-570) $) 32) (((-570)) 35)) (-1321 (($ $ $) 40) (($ (-650 $)) 83)) (-3479 (((-1129) $) NIL)) (-2407 (($ $ $) 99)) (-3743 (($) 13)) (-1876 (($ $ (-650 $)) 109)) (-3015 (((-1168) (-1168)) 8)) (-2809 (($ $) 117) (($ $ (-777)) 121)) (-2396 (($ $ $) 96)) (-3447 (($ $ (-777)) 139)) (-3309 (($ (-650 $)) 60)) (-3735 (((-868) $) 19)) (-2177 (($ $ (-570)) 41) (($ $) 44)) (-2516 (($ $) 68) (($ (-650 $)) 69)) (-3813 (($ $) 66) (($ (-650 $)) 67)) (-4192 (($ $) 124)) (-4193 (($ (-650 $)) 65)) (-1397 (($ $ $) 105)) (-1859 (((-112) $ $) NIL)) (-4156 (($ $ $) 130)) (-1765 (($ $ $) 100)) (-3576 (($ $ $) 103) (($ $) 104)) (-2924 (($ $ $) 89)) (-2904 (($ $ $) 87)) (-2872 (((-112) $ $) 16) (($ $ $) 17)) (-2913 (($ $ $) 88)) (-2894 (($ $ $) 86)) (-2975 (($ $ $) 94)) (-2965 (($ $ $) 91) (($ $) 92)) (-2954 (($ $ $) 90)) (** (($ $ $) 95)) (* (($ $ $) 93)))
-(((-868) (-13 (-1109) (-10 -8 (-15 -2879 ((-1281) $)) (-15 -1799 ($ (-1168))) (-15 -1473 ((-1281) (-1168))) (-15 -1559 ($ (-570))) (-15 -1559 ($ (-1186))) (-15 -1559 ($ (-1168))) (-15 -1559 ($ (-227))) (-15 -3743 ($)) (-15 -3015 ((-1168) (-1168))) (-15 -3414 ((-570) $)) (-15 -1434 ((-570) $)) (-15 -3414 ((-570))) (-15 -1434 ((-570))) (-15 -3600 ((-570) $)) (-15 -2394 ((-570) $)) (-15 -2588 ($ (-570))) (-15 -3387 ($ (-570))) (-15 -3165 ($ (-570) (-570))) (-15 -4397 ($ $ (-570))) (-15 -4410 ($ $ (-570))) (-15 -2177 ($ $ (-570))) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -2177 ($ $)) (-15 -1321 ($ $ $)) (-15 -3084 ($ $ $)) (-15 -1321 ($ (-650 $))) (-15 -3084 ($ (-650 $))) (-15 -4303 ($ $ (-650 $))) (-15 -2858 ($ $ (-650 $))) (-15 -2858 ($ $ $ $)) (-15 -2293 ($ $ $)) (-15 -2574 ((-112) $)) (-15 -1876 ($ $ (-650 $))) (-15 -3320 ($ $)) (-15 -1511 ($ $ $)) (-15 -4192 ($ $)) (-15 -2427 ($ (-650 (-650 $)))) (-15 -4370 ($ $ $)) (-15 -3806 ($ $)) (-15 -3806 ($ $ $)) (-15 -3648 ($ $ $)) (-15 -2306 ($ $ $)) (-15 -4156 ($ $ $)) (-15 -1684 ($ $ $)) (-15 -3447 ($ $ (-777))) (-15 -1397 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -3500 ($ $ $)) (-15 -1895 ($ $ $)) (-15 -3361 ($ $ $)) (-15 -3801 ($ $ (-650 $))) (-15 -2047 ($ $ (-650 $))) (-15 -3079 ($ $)) (-15 -2809 ($ $)) (-15 -2809 ($ $ (-777))) (-15 -1512 ($ $)) (-15 -1512 ($ $ (-777))) (-15 -2204 ($ $)) (-15 -4337 ($ $ $)) (-15 -3202 ($ $)) (-15 -3202 ($ $ $)) (-15 -3202 ($ $ $ $)) (-15 -3859 ($ $)) (-15 -3859 ($ $ $)) (-15 -3859 ($ $ $ $)) (-15 -3744 ($ $)) (-15 -3744 ($ $ $)) (-15 -3744 ($ $ $ $)) (-15 -3813 ($ $)) (-15 -3813 ($ (-650 $))) (-15 -2516 ($ $)) (-15 -2516 ($ (-650 $))) (-15 -2268 ($ $)) (-15 -2268 ($ (-650 $))) (-15 -3882 ($ (-650 $))) (-15 -3309 ($ (-650 $))) (-15 -2569 ($ (-650 $))) (-15 -4193 ($ (-650 $))) (-15 -2872 ($ $ $)) (-15 -2416 ($ $ $)) (-15 -2894 ($ $ $)) (-15 -2904 ($ $ $)) (-15 -2913 ($ $ $)) (-15 -2924 ($ $ $)) (-15 -2954 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -2965 ($ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ $)) (-15 -2396 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -2381 ($ $ $)) (-15 -2407 ($ $ $)) (-15 -1765 ($ $ $)) (-15 -1778 ($ $ $)) (-15 -1754 ($ $)) (-15 -3576 ($ $ $)) (-15 -3576 ($ $))))) (T -868))
-((-2879 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-868)))) (-1799 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-1473 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-868)))) (-1559 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1559 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-868)))) (-1559 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-1559 (*1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-868)))) (-3743 (*1 *1) (-5 *1 (-868))) (-3015 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-3414 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1434 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3414 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1434 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2394 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2588 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3387 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3165 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4397 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4410 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2177 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4397 (*1 *1 *1) (-5 *1 (-868))) (-4410 (*1 *1 *1) (-5 *1 (-868))) (-2177 (*1 *1 *1) (-5 *1 (-868))) (-1321 (*1 *1 *1 *1) (-5 *1 (-868))) (-3084 (*1 *1 *1 *1) (-5 *1 (-868))) (-1321 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3084 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-4303 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2858 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2858 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-2293 (*1 *1 *1 *1) (-5 *1 (-868))) (-2574 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3320 (*1 *1 *1) (-5 *1 (-868))) (-1511 (*1 *1 *1 *1) (-5 *1 (-868))) (-4192 (*1 *1 *1) (-5 *1 (-868))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-868)))) (-4370 (*1 *1 *1 *1) (-5 *1 (-868))) (-3806 (*1 *1 *1) (-5 *1 (-868))) (-3806 (*1 *1 *1 *1) (-5 *1 (-868))) (-3648 (*1 *1 *1 *1) (-5 *1 (-868))) (-2306 (*1 *1 *1 *1) (-5 *1 (-868))) (-4156 (*1 *1 *1 *1) (-5 *1 (-868))) (-1684 (*1 *1 *1 *1) (-5 *1 (-868))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-1397 (*1 *1 *1 *1) (-5 *1 (-868))) (-1810 (*1 *1 *1 *1) (-5 *1 (-868))) (-3500 (*1 *1 *1 *1) (-5 *1 (-868))) (-1895 (*1 *1 *1 *1) (-5 *1 (-868))) (-3361 (*1 *1 *1 *1) (-5 *1 (-868))) (-3801 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2047 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3079 (*1 *1 *1) (-5 *1 (-868))) (-2809 (*1 *1 *1) (-5 *1 (-868))) (-2809 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-1512 (*1 *1 *1) (-5 *1 (-868))) (-1512 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-2204 (*1 *1 *1) (-5 *1 (-868))) (-4337 (*1 *1 *1 *1) (-5 *1 (-868))) (-3202 (*1 *1 *1) (-5 *1 (-868))) (-3202 (*1 *1 *1 *1) (-5 *1 (-868))) (-3202 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3859 (*1 *1 *1) (-5 *1 (-868))) (-3859 (*1 *1 *1 *1) (-5 *1 (-868))) (-3859 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3744 (*1 *1 *1) (-5 *1 (-868))) (-3744 (*1 *1 *1 *1) (-5 *1 (-868))) (-3744 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3813 (*1 *1 *1) (-5 *1 (-868))) (-3813 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2516 (*1 *1 *1) (-5 *1 (-868))) (-2516 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2268 (*1 *1 *1) (-5 *1 (-868))) (-2268 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3882 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3309 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2569 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-4193 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2872 (*1 *1 *1 *1) (-5 *1 (-868))) (-2416 (*1 *1 *1 *1) (-5 *1 (-868))) (-2894 (*1 *1 *1 *1) (-5 *1 (-868))) (-2904 (*1 *1 *1 *1) (-5 *1 (-868))) (-2913 (*1 *1 *1 *1) (-5 *1 (-868))) (-2924 (*1 *1 *1 *1) (-5 *1 (-868))) (-2954 (*1 *1 *1 *1) (-5 *1 (-868))) (-2965 (*1 *1 *1 *1) (-5 *1 (-868))) (-2965 (*1 *1 *1) (-5 *1 (-868))) (* (*1 *1 *1 *1) (-5 *1 (-868))) (-2975 (*1 *1 *1 *1) (-5 *1 (-868))) (** (*1 *1 *1 *1) (-5 *1 (-868))) (-2396 (*1 *1 *1 *1) (-5 *1 (-868))) (-2372 (*1 *1 *1 *1) (-5 *1 (-868))) (-2381 (*1 *1 *1 *1) (-5 *1 (-868))) (-2407 (*1 *1 *1 *1) (-5 *1 (-868))) (-1765 (*1 *1 *1 *1) (-5 *1 (-868))) (-1778 (*1 *1 *1 *1) (-5 *1 (-868))) (-1754 (*1 *1 *1) (-5 *1 (-868))) (-3576 (*1 *1 *1 *1) (-5 *1 (-868))) (-3576 (*1 *1 *1) (-5 *1 (-868))))
-(-13 (-1109) (-10 -8 (-15 -2879 ((-1281) $)) (-15 -1799 ($ (-1168))) (-15 -1473 ((-1281) (-1168))) (-15 -1559 ($ (-570))) (-15 -1559 ($ (-1186))) (-15 -1559 ($ (-1168))) (-15 -1559 ($ (-227))) (-15 -3743 ($)) (-15 -3015 ((-1168) (-1168))) (-15 -3414 ((-570) $)) (-15 -1434 ((-570) $)) (-15 -3414 ((-570))) (-15 -1434 ((-570))) (-15 -3600 ((-570) $)) (-15 -2394 ((-570) $)) (-15 -2588 ($ (-570))) (-15 -3387 ($ (-570))) (-15 -3165 ($ (-570) (-570))) (-15 -4397 ($ $ (-570))) (-15 -4410 ($ $ (-570))) (-15 -2177 ($ $ (-570))) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -2177 ($ $)) (-15 -1321 ($ $ $)) (-15 -3084 ($ $ $)) (-15 -1321 ($ (-650 $))) (-15 -3084 ($ (-650 $))) (-15 -4303 ($ $ (-650 $))) (-15 -2858 ($ $ (-650 $))) (-15 -2858 ($ $ $ $)) (-15 -2293 ($ $ $)) (-15 -2574 ((-112) $)) (-15 -1876 ($ $ (-650 $))) (-15 -3320 ($ $)) (-15 -1511 ($ $ $)) (-15 -4192 ($ $)) (-15 -2427 ($ (-650 (-650 $)))) (-15 -4370 ($ $ $)) (-15 -3806 ($ $)) (-15 -3806 ($ $ $)) (-15 -3648 ($ $ $)) (-15 -2306 ($ $ $)) (-15 -4156 ($ $ $)) (-15 -1684 ($ $ $)) (-15 -3447 ($ $ (-777))) (-15 -1397 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -3500 ($ $ $)) (-15 -1895 ($ $ $)) (-15 -3361 ($ $ $)) (-15 -3801 ($ $ (-650 $))) (-15 -2047 ($ $ (-650 $))) (-15 -3079 ($ $)) (-15 -2809 ($ $)) (-15 -2809 ($ $ (-777))) (-15 -1512 ($ $)) (-15 -1512 ($ $ (-777))) (-15 -2204 ($ $)) (-15 -4337 ($ $ $)) (-15 -3202 ($ $)) (-15 -3202 ($ $ $)) (-15 -3202 ($ $ $ $)) (-15 -3859 ($ $)) (-15 -3859 ($ $ $)) (-15 -3859 ($ $ $ $)) (-15 -3744 ($ $)) (-15 -3744 ($ $ $)) (-15 -3744 ($ $ $ $)) (-15 -3813 ($ $)) (-15 -3813 ($ (-650 $))) (-15 -2516 ($ $)) (-15 -2516 ($ (-650 $))) (-15 -2268 ($ $)) (-15 -2268 ($ (-650 $))) (-15 -3882 ($ (-650 $))) (-15 -3309 ($ (-650 $))) (-15 -2569 ($ (-650 $))) (-15 -4193 ($ (-650 $))) (-15 -2872 ($ $ $)) (-15 -2416 ($ $ $)) (-15 -2894 ($ $ $)) (-15 -2904 ($ $ $)) (-15 -2913 ($ $ $)) (-15 -2924 ($ $ $)) (-15 -2954 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -2965 ($ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ $)) (-15 -2396 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -2381 ($ $ $)) (-15 -2407 ($ $ $)) (-15 -1765 ($ $ $)) (-15 -1778 ($ $ $)) (-15 -1754 ($ $)) (-15 -3576 ($ $ $)) (-15 -3576 ($ $))))
-((-4411 (((-1281) (-650 (-52))) 23)) (-1877 (((-1281) (-1168) (-868)) 13) (((-1281) (-868)) 8) (((-1281) (-1168)) 10)))
-(((-869) (-10 -7 (-15 -1877 ((-1281) (-1168))) (-15 -1877 ((-1281) (-868))) (-15 -1877 ((-1281) (-1168) (-868))) (-15 -4411 ((-1281) (-650 (-52)))))) (T -869))
-((-4411 (*1 *2 *3) (-12 (-5 *3 (-650 (-52))) (-5 *2 (-1281)) (-5 *1 (-869)))) (-1877 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1281)) (-5 *1 (-869)))) (-1877 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-869)))) (-1877 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-869)))))
-(-10 -7 (-15 -1877 ((-1281) (-1168))) (-15 -1877 ((-1281) (-868))) (-15 -1877 ((-1281) (-1168) (-868))) (-15 -4411 ((-1281) (-650 (-52)))))
-((-2416 (((-112) $ $) NIL)) (-2643 (((-3 $ "failed") (-1186)) 39)) (-3403 (((-777)) 32)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) 29)) (-1903 (((-1168) $) 46)) (-2159 (($ (-928)) 28)) (-3479 (((-1129) $) NIL)) (-1416 (((-1186) $) 13) (((-542) $) 19) (((-899 (-384)) $) 26) (((-899 (-570)) $) 22)) (-3735 (((-868) $) 16)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 43)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 41)))
+((-3512 (((-697 (-1235)) $ (-1235)) NIL)) (-1430 (((-697 (-555)) $ (-555)) NIL)) (-3319 (((-777) $ (-129)) NIL)) (-1316 (((-697 (-130)) $ (-130)) 22)) (-2676 (($ (-394)) 12) (($ (-1168)) 14)) (-2935 (((-112) $) 19)) (-3735 (((-868) $) 26)) (-3924 (($ $) 23)))
+(((-867) (-13 (-866) (-619 (-868)) (-10 -8 (-15 -2676 ($ (-394))) (-15 -2676 ($ (-1168))) (-15 -2935 ((-112) $))))) (T -867))
+((-2676 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))) (-2676 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867)))) (-2935 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-867)))))
+(-13 (-866) (-619 (-868)) (-10 -8 (-15 -2676 ($ (-394))) (-15 -2676 ($ (-1168))) (-15 -2935 ((-112) $))))
+((-2417 (((-112) $ $) NIL) (($ $ $) 85)) (-2985 (($ $ $) 125)) (-3414 (((-570) $) 31) (((-570)) 36)) (-2698 (($ (-570)) 53)) (-2857 (($ $ $) 54) (($ (-650 $)) 84)) (-2106 (($ $ (-650 $)) 82)) (-1390 (((-570) $) 34)) (-3501 (($ $ $) 73)) (-3202 (($ $) 140) (($ $ $) 141) (($ $ $ $) 142)) (-4171 (((-570) $) 33)) (-1564 (($ $ $) 72)) (-3320 (($ $) 114)) (-2875 (($ $ $) 129)) (-3642 (($ (-650 $)) 61)) (-3801 (($ $ (-650 $)) 79)) (-4409 (($ (-570) (-570)) 55)) (-2363 (($ $) 126) (($ $ $) 127)) (-4411 (($ $ (-570)) 43) (($ $) 46)) (-2372 (($ $ $) 97)) (-2822 (($ $ $) 132)) (-2826 (($ $) 115)) (-2382 (($ $ $) 98)) (-1710 (($ $) 143) (($ $ $) 144) (($ $ $ $) 145)) (-2879 (((-1282) $) 10)) (-3603 (($ $) 118) (($ $ (-777)) 122)) (-2455 (($ $ $) 75)) (-4180 (($ $ $) 74)) (-4304 (($ $ (-650 $)) 110)) (-2744 (($ $ $) 113)) (-3782 (($ (-650 $)) 59)) (-2506 (($ $) 70) (($ (-650 $)) 71)) (-2686 (($ $ $) 123)) (-3050 (($ $) 116)) (-3373 (($ $ $) 128)) (-4114 (($ (-570)) 21) (($ (-1186)) 23) (($ (-1168)) 30) (($ (-227)) 25)) (-1778 (($ $ $) 101)) (-1753 (($ $) 102)) (-1383 (((-1282) (-1168)) 15)) (-1800 (($ (-1168)) 14)) (-2427 (($ (-650 (-650 $))) 58)) (-4398 (($ $ (-570)) 42) (($ $) 45)) (-4268 (((-1168) $) NIL)) (-1512 (($ $ $) 131)) (-3744 (($ $) 146) (($ $ $) 147) (($ $ $ $) 148)) (-2574 (((-112) $) 108)) (-3299 (($ $ (-650 $)) 111) (($ $ $ $) 112)) (-2563 (($ (-570)) 39)) (-1435 (((-570) $) 32) (((-570)) 35)) (-1725 (($ $ $) 40) (($ (-650 $)) 83)) (-3479 (((-1129) $) NIL)) (-2406 (($ $ $) 99)) (-3006 (($) 13)) (-1877 (($ $ (-650 $)) 109)) (-3468 (((-1168) (-1168)) 8)) (-4082 (($ $) 117) (($ $ (-777)) 121)) (-2396 (($ $ $) 96)) (-3447 (($ $ (-777)) 139)) (-3178 (($ (-650 $)) 60)) (-3735 (((-868) $) 19)) (-2178 (($ $ (-570)) 41) (($ $) 44)) (-3086 (($ $) 68) (($ (-650 $)) 69)) (-3813 (($ $) 66) (($ (-650 $)) 67)) (-4192 (($ $) 124)) (-1951 (($ (-650 $)) 65)) (-3829 (($ $ $) 105)) (-3866 (((-112) $ $) NIL)) (-1603 (($ $ $) 130)) (-1765 (($ $ $) 100)) (-3576 (($ $ $) 103) (($ $) 104)) (-2924 (($ $ $) 89)) (-2904 (($ $ $) 87)) (-2872 (((-112) $ $) 16) (($ $ $) 17)) (-2914 (($ $ $) 88)) (-2894 (($ $ $) 86)) (-2975 (($ $ $) 94)) (-2965 (($ $ $) 91) (($ $) 92)) (-2953 (($ $ $) 90)) (** (($ $ $) 95)) (* (($ $ $) 93)))
+(((-868) (-13 (-1109) (-10 -8 (-15 -2879 ((-1282) $)) (-15 -1800 ($ (-1168))) (-15 -1383 ((-1282) (-1168))) (-15 -4114 ($ (-570))) (-15 -4114 ($ (-1186))) (-15 -4114 ($ (-1168))) (-15 -4114 ($ (-227))) (-15 -3006 ($)) (-15 -3468 ((-1168) (-1168))) (-15 -3414 ((-570) $)) (-15 -1435 ((-570) $)) (-15 -3414 ((-570))) (-15 -1435 ((-570))) (-15 -4171 ((-570) $)) (-15 -1390 ((-570) $)) (-15 -2563 ($ (-570))) (-15 -2698 ($ (-570))) (-15 -4409 ($ (-570) (-570))) (-15 -4398 ($ $ (-570))) (-15 -4411 ($ $ (-570))) (-15 -2178 ($ $ (-570))) (-15 -4398 ($ $)) (-15 -4411 ($ $)) (-15 -2178 ($ $)) (-15 -1725 ($ $ $)) (-15 -2857 ($ $ $)) (-15 -1725 ($ (-650 $))) (-15 -2857 ($ (-650 $))) (-15 -4304 ($ $ (-650 $))) (-15 -3299 ($ $ (-650 $))) (-15 -3299 ($ $ $ $)) (-15 -2744 ($ $ $)) (-15 -2574 ((-112) $)) (-15 -1877 ($ $ (-650 $))) (-15 -3320 ($ $)) (-15 -1512 ($ $ $)) (-15 -4192 ($ $)) (-15 -2427 ($ (-650 (-650 $)))) (-15 -2985 ($ $ $)) (-15 -2363 ($ $)) (-15 -2363 ($ $ $)) (-15 -3373 ($ $ $)) (-15 -2875 ($ $ $)) (-15 -1603 ($ $ $)) (-15 -2822 ($ $ $)) (-15 -3447 ($ $ (-777))) (-15 -3829 ($ $ $)) (-15 -1564 ($ $ $)) (-15 -3501 ($ $ $)) (-15 -4180 ($ $ $)) (-15 -2455 ($ $ $)) (-15 -3801 ($ $ (-650 $))) (-15 -2106 ($ $ (-650 $))) (-15 -2826 ($ $)) (-15 -4082 ($ $)) (-15 -4082 ($ $ (-777))) (-15 -3603 ($ $)) (-15 -3603 ($ $ (-777))) (-15 -3050 ($ $)) (-15 -2686 ($ $ $)) (-15 -3202 ($ $)) (-15 -3202 ($ $ $)) (-15 -3202 ($ $ $ $)) (-15 -1710 ($ $)) (-15 -1710 ($ $ $)) (-15 -1710 ($ $ $ $)) (-15 -3744 ($ $)) (-15 -3744 ($ $ $)) (-15 -3744 ($ $ $ $)) (-15 -3813 ($ $)) (-15 -3813 ($ (-650 $))) (-15 -3086 ($ $)) (-15 -3086 ($ (-650 $))) (-15 -2506 ($ $)) (-15 -2506 ($ (-650 $))) (-15 -3782 ($ (-650 $))) (-15 -3178 ($ (-650 $))) (-15 -3642 ($ (-650 $))) (-15 -1951 ($ (-650 $))) (-15 -2872 ($ $ $)) (-15 -2417 ($ $ $)) (-15 -2894 ($ $ $)) (-15 -2904 ($ $ $)) (-15 -2914 ($ $ $)) (-15 -2924 ($ $ $)) (-15 -2953 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -2965 ($ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ $)) (-15 -2396 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -2382 ($ $ $)) (-15 -2406 ($ $ $)) (-15 -1765 ($ $ $)) (-15 -1778 ($ $ $)) (-15 -1753 ($ $)) (-15 -3576 ($ $ $)) (-15 -3576 ($ $))))) (T -868))
+((-2879 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-868)))) (-1800 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-1383 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-868)))) (-4114 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4114 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-868)))) (-4114 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-4114 (*1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-868)))) (-3006 (*1 *1) (-5 *1 (-868))) (-3468 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-3414 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1435 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3414 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1435 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4171 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2563 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2698 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4409 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4398 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4411 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2178 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4398 (*1 *1 *1) (-5 *1 (-868))) (-4411 (*1 *1 *1) (-5 *1 (-868))) (-2178 (*1 *1 *1) (-5 *1 (-868))) (-1725 (*1 *1 *1 *1) (-5 *1 (-868))) (-2857 (*1 *1 *1 *1) (-5 *1 (-868))) (-1725 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2857 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-4304 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3299 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3299 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-2744 (*1 *1 *1 *1) (-5 *1 (-868))) (-2574 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3320 (*1 *1 *1) (-5 *1 (-868))) (-1512 (*1 *1 *1 *1) (-5 *1 (-868))) (-4192 (*1 *1 *1) (-5 *1 (-868))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-868)))) (-2985 (*1 *1 *1 *1) (-5 *1 (-868))) (-2363 (*1 *1 *1) (-5 *1 (-868))) (-2363 (*1 *1 *1 *1) (-5 *1 (-868))) (-3373 (*1 *1 *1 *1) (-5 *1 (-868))) (-2875 (*1 *1 *1 *1) (-5 *1 (-868))) (-1603 (*1 *1 *1 *1) (-5 *1 (-868))) (-2822 (*1 *1 *1 *1) (-5 *1 (-868))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-3829 (*1 *1 *1 *1) (-5 *1 (-868))) (-1564 (*1 *1 *1 *1) (-5 *1 (-868))) (-3501 (*1 *1 *1 *1) (-5 *1 (-868))) (-4180 (*1 *1 *1 *1) (-5 *1 (-868))) (-2455 (*1 *1 *1 *1) (-5 *1 (-868))) (-3801 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2106 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2826 (*1 *1 *1) (-5 *1 (-868))) (-4082 (*1 *1 *1) (-5 *1 (-868))) (-4082 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-3603 (*1 *1 *1) (-5 *1 (-868))) (-3603 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-3050 (*1 *1 *1) (-5 *1 (-868))) (-2686 (*1 *1 *1 *1) (-5 *1 (-868))) (-3202 (*1 *1 *1) (-5 *1 (-868))) (-3202 (*1 *1 *1 *1) (-5 *1 (-868))) (-3202 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-1710 (*1 *1 *1) (-5 *1 (-868))) (-1710 (*1 *1 *1 *1) (-5 *1 (-868))) (-1710 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3744 (*1 *1 *1) (-5 *1 (-868))) (-3744 (*1 *1 *1 *1) (-5 *1 (-868))) (-3744 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3813 (*1 *1 *1) (-5 *1 (-868))) (-3813 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3086 (*1 *1 *1) (-5 *1 (-868))) (-3086 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2506 (*1 *1 *1) (-5 *1 (-868))) (-2506 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3782 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3178 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3642 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-1951 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2872 (*1 *1 *1 *1) (-5 *1 (-868))) (-2417 (*1 *1 *1 *1) (-5 *1 (-868))) (-2894 (*1 *1 *1 *1) (-5 *1 (-868))) (-2904 (*1 *1 *1 *1) (-5 *1 (-868))) (-2914 (*1 *1 *1 *1) (-5 *1 (-868))) (-2924 (*1 *1 *1 *1) (-5 *1 (-868))) (-2953 (*1 *1 *1 *1) (-5 *1 (-868))) (-2965 (*1 *1 *1 *1) (-5 *1 (-868))) (-2965 (*1 *1 *1) (-5 *1 (-868))) (* (*1 *1 *1 *1) (-5 *1 (-868))) (-2975 (*1 *1 *1 *1) (-5 *1 (-868))) (** (*1 *1 *1 *1) (-5 *1 (-868))) (-2396 (*1 *1 *1 *1) (-5 *1 (-868))) (-2372 (*1 *1 *1 *1) (-5 *1 (-868))) (-2382 (*1 *1 *1 *1) (-5 *1 (-868))) (-2406 (*1 *1 *1 *1) (-5 *1 (-868))) (-1765 (*1 *1 *1 *1) (-5 *1 (-868))) (-1778 (*1 *1 *1 *1) (-5 *1 (-868))) (-1753 (*1 *1 *1) (-5 *1 (-868))) (-3576 (*1 *1 *1 *1) (-5 *1 (-868))) (-3576 (*1 *1 *1) (-5 *1 (-868))))
+(-13 (-1109) (-10 -8 (-15 -2879 ((-1282) $)) (-15 -1800 ($ (-1168))) (-15 -1383 ((-1282) (-1168))) (-15 -4114 ($ (-570))) (-15 -4114 ($ (-1186))) (-15 -4114 ($ (-1168))) (-15 -4114 ($ (-227))) (-15 -3006 ($)) (-15 -3468 ((-1168) (-1168))) (-15 -3414 ((-570) $)) (-15 -1435 ((-570) $)) (-15 -3414 ((-570))) (-15 -1435 ((-570))) (-15 -4171 ((-570) $)) (-15 -1390 ((-570) $)) (-15 -2563 ($ (-570))) (-15 -2698 ($ (-570))) (-15 -4409 ($ (-570) (-570))) (-15 -4398 ($ $ (-570))) (-15 -4411 ($ $ (-570))) (-15 -2178 ($ $ (-570))) (-15 -4398 ($ $)) (-15 -4411 ($ $)) (-15 -2178 ($ $)) (-15 -1725 ($ $ $)) (-15 -2857 ($ $ $)) (-15 -1725 ($ (-650 $))) (-15 -2857 ($ (-650 $))) (-15 -4304 ($ $ (-650 $))) (-15 -3299 ($ $ (-650 $))) (-15 -3299 ($ $ $ $)) (-15 -2744 ($ $ $)) (-15 -2574 ((-112) $)) (-15 -1877 ($ $ (-650 $))) (-15 -3320 ($ $)) (-15 -1512 ($ $ $)) (-15 -4192 ($ $)) (-15 -2427 ($ (-650 (-650 $)))) (-15 -2985 ($ $ $)) (-15 -2363 ($ $)) (-15 -2363 ($ $ $)) (-15 -3373 ($ $ $)) (-15 -2875 ($ $ $)) (-15 -1603 ($ $ $)) (-15 -2822 ($ $ $)) (-15 -3447 ($ $ (-777))) (-15 -3829 ($ $ $)) (-15 -1564 ($ $ $)) (-15 -3501 ($ $ $)) (-15 -4180 ($ $ $)) (-15 -2455 ($ $ $)) (-15 -3801 ($ $ (-650 $))) (-15 -2106 ($ $ (-650 $))) (-15 -2826 ($ $)) (-15 -4082 ($ $)) (-15 -4082 ($ $ (-777))) (-15 -3603 ($ $)) (-15 -3603 ($ $ (-777))) (-15 -3050 ($ $)) (-15 -2686 ($ $ $)) (-15 -3202 ($ $)) (-15 -3202 ($ $ $)) (-15 -3202 ($ $ $ $)) (-15 -1710 ($ $)) (-15 -1710 ($ $ $)) (-15 -1710 ($ $ $ $)) (-15 -3744 ($ $)) (-15 -3744 ($ $ $)) (-15 -3744 ($ $ $ $)) (-15 -3813 ($ $)) (-15 -3813 ($ (-650 $))) (-15 -3086 ($ $)) (-15 -3086 ($ (-650 $))) (-15 -2506 ($ $)) (-15 -2506 ($ (-650 $))) (-15 -3782 ($ (-650 $))) (-15 -3178 ($ (-650 $))) (-15 -3642 ($ (-650 $))) (-15 -1951 ($ (-650 $))) (-15 -2872 ($ $ $)) (-15 -2417 ($ $ $)) (-15 -2894 ($ $ $)) (-15 -2904 ($ $ $)) (-15 -2914 ($ $ $)) (-15 -2924 ($ $ $)) (-15 -2953 ($ $ $)) (-15 -2965 ($ $ $)) (-15 -2965 ($ $)) (-15 * ($ $ $)) (-15 -2975 ($ $ $)) (-15 ** ($ $ $)) (-15 -2396 ($ $ $)) (-15 -2372 ($ $ $)) (-15 -2382 ($ $ $)) (-15 -2406 ($ $ $)) (-15 -1765 ($ $ $)) (-15 -1778 ($ $ $)) (-15 -1753 ($ $)) (-15 -3576 ($ $ $)) (-15 -3576 ($ $))))
+((-4412 (((-1282) (-650 (-52))) 23)) (-1878 (((-1282) (-1168) (-868)) 13) (((-1282) (-868)) 8) (((-1282) (-1168)) 10)))
+(((-869) (-10 -7 (-15 -1878 ((-1282) (-1168))) (-15 -1878 ((-1282) (-868))) (-15 -1878 ((-1282) (-1168) (-868))) (-15 -4412 ((-1282) (-650 (-52)))))) (T -869))
+((-4412 (*1 *2 *3) (-12 (-5 *3 (-650 (-52))) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1878 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1878 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1878 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-869)))))
+(-10 -7 (-15 -1878 ((-1282) (-1168))) (-15 -1878 ((-1282) (-868))) (-15 -1878 ((-1282) (-1168) (-868))) (-15 -4412 ((-1282) (-650 (-52)))))
+((-2417 (((-112) $ $) NIL)) (-2643 (((-3 $ "failed") (-1186)) 39)) (-3403 (((-777)) 32)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) 29)) (-4268 (((-1168) $) 46)) (-2160 (($ (-928)) 28)) (-3479 (((-1129) $) NIL)) (-1417 (((-1186) $) 13) (((-542) $) 19) (((-899 (-384)) $) 26) (((-899 (-570)) $) 22)) (-3735 (((-868) $) 16)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 43)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 41)))
(((-870 |#1|) (-13 (-850) (-620 (-1186)) (-620 (-542)) (-620 (-899 (-384))) (-620 (-899 (-570))) (-10 -8 (-15 -2643 ((-3 $ "failed") (-1186))))) (-650 (-1186))) (T -870))
((-2643 (*1 *1 *2) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-870 *3)) (-14 *3 (-650 *2)))))
(-13 (-850) (-620 (-1186)) (-620 (-542)) (-620 (-899 (-384))) (-620 (-899 (-570))) (-10 -8 (-15 -2643 ((-3 $ "failed") (-1186)))))
-((-2416 (((-112) $ $) NIL)) (-3503 (((-512) $) 9)) (-2849 (((-650 (-445)) $) 13)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 21)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 16)))
-(((-871) (-13 (-1109) (-10 -8 (-15 -3503 ((-512) $)) (-15 -2849 ((-650 (-445)) $))))) (T -871))
-((-3503 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-871)))) (-2849 (*1 *2 *1) (-12 (-5 *2 (-650 (-445))) (-5 *1 (-871)))))
-(-13 (-1109) (-10 -8 (-15 -3503 ((-512) $)) (-15 -2849 ((-650 (-445)) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-959 |#1|)) NIL) (((-959 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-174)))) (-2744 (((-777)) NIL T CONST)) (-4343 (((-1281) (-777)) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
-(((-872 |#1| |#2| |#3| |#4|) (-13 (-1058) (-496 (-959 |#1|)) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -4343 ((-1281) (-777))))) (-1058) (-650 (-1186)) (-650 (-777)) (-777)) (T -872))
-((-2975 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-872 *2 *3 *4 *5)) (-4 *2 (-368)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-777))) (-14 *5 (-777)))) (-4343 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-872 *4 *5 *6 *7)) (-4 *4 (-1058)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 *3)) (-14 *7 *3))))
-(-13 (-1058) (-496 (-959 |#1|)) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -4343 ((-1281) (-777)))))
-((-4164 (((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|) 43)) (-3328 (((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|) 34)))
-(((-873 |#1| |#2| |#3|) (-10 -7 (-15 -3328 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -4164 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|))) (-368) (-1267 |#1|) (-1252 |#1|)) (T -873))
-((-4164 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-176 *6)) (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1267 *5)) (-4 *6 (-1252 *5)))) (-3328 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-413 *6)) (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1267 *5)) (-4 *6 (-1252 *5)))))
-(-10 -7 (-15 -3328 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -4164 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|)))
-((-3328 (((-3 (-413 (-1249 |#2| |#1|)) "failed") (-777) (-777) (-1268 |#1| |#2| |#3|)) 30) (((-3 (-413 (-1249 |#2| |#1|)) "failed") (-777) (-777) (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|)) 28)))
-(((-874 |#1| |#2| |#3|) (-10 -7 (-15 -3328 ((-3 (-413 (-1249 |#2| |#1|)) "failed") (-777) (-777) (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|))) (-15 -3328 ((-3 (-413 (-1249 |#2| |#1|)) "failed") (-777) (-777) (-1268 |#1| |#2| |#3|)))) (-368) (-1186) |#1|) (T -874))
-((-3328 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1268 *5 *6 *7)) (-4 *5 (-368)) (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1249 *6 *5))) (-5 *1 (-874 *5 *6 *7)))) (-3328 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1268 *5 *6 *7)) (-4 *5 (-368)) (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1249 *6 *5))) (-5 *1 (-874 *5 *6 *7)))))
-(-10 -7 (-15 -3328 ((-3 (-413 (-1249 |#2| |#1|)) "failed") (-777) (-777) (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|))) (-15 -3328 ((-3 (-413 (-1249 |#2| |#1|)) "failed") (-777) (-777) (-1268 |#1| |#2| |#3|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-3753 (($ $ (-570)) 68)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-3806 (($ (-1182 (-570)) (-570)) 67)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-3716 (($ $) 70)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-3157 (((-777) $) 75)) (-2081 (((-112) $) 35)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-4323 (((-570)) 72)) (-1342 (((-570) $) 71)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-1558 (($ $ (-570)) 74)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-2784 (((-1166 (-570)) $) 76)) (-3049 (($ $) 73)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-3026 (((-570) $ (-570)) 69)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) NIL)) (-3504 (((-512) $) 9)) (-3201 (((-650 (-445)) $) 13)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 21)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 16)))
+(((-871) (-13 (-1109) (-10 -8 (-15 -3504 ((-512) $)) (-15 -3201 ((-650 (-445)) $))))) (T -871))
+((-3504 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-871)))) (-3201 (*1 *2 *1) (-12 (-5 *2 (-650 (-445))) (-5 *1 (-871)))))
+(-13 (-1109) (-10 -8 (-15 -3504 ((-512) $)) (-15 -3201 ((-650 (-445)) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-959 |#1|)) NIL) (((-959 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-174)))) (-1609 (((-777)) NIL T CONST)) (-2752 (((-1282) (-777)) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
+(((-872 |#1| |#2| |#3| |#4|) (-13 (-1058) (-496 (-959 |#1|)) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2752 ((-1282) (-777))))) (-1058) (-650 (-1186)) (-650 (-777)) (-777)) (T -872))
+((-2975 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-872 *2 *3 *4 *5)) (-4 *2 (-368)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-777))) (-14 *5 (-777)))) (-2752 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-872 *4 *5 *6 *7)) (-4 *4 (-1058)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 *3)) (-14 *7 *3))))
+(-13 (-1058) (-496 (-959 |#1|)) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2752 ((-1282) (-777)))))
+((-1682 (((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|) 43)) (-3355 (((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|) 34)))
+(((-873 |#1| |#2| |#3|) (-10 -7 (-15 -3355 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -1682 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|))) (-368) (-1268 |#1|) (-1253 |#1|)) (T -873))
+((-1682 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-176 *6)) (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1268 *5)) (-4 *6 (-1253 *5)))) (-3355 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-413 *6)) (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1268 *5)) (-4 *6 (-1253 *5)))))
+(-10 -7 (-15 -3355 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -1682 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|)))
+((-3355 (((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|)) 30) (((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) 28)))
+(((-874 |#1| |#2| |#3|) (-10 -7 (-15 -3355 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (-15 -3355 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|)))) (-368) (-1186) |#1|) (T -874))
+((-3355 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1269 *5 *6 *7)) (-4 *5 (-368)) (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1250 *6 *5))) (-5 *1 (-874 *5 *6 *7)))) (-3355 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1269 *5 *6 *7)) (-4 *5 (-368)) (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1250 *6 *5))) (-5 *1 (-874 *5 *6 *7)))))
+(-10 -7 (-15 -3355 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (-15 -3355 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3754 (($ $ (-570)) 68)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-2363 (($ (-1182 (-570)) (-570)) 67)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2778 (($ $) 70)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4331 (((-777) $) 75)) (-4340 (((-112) $) 35)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-2532 (((-570)) 72)) (-1929 (((-570) $) 71)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-4102 (($ $ (-570)) 74)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3819 (((-1166 (-570)) $) 76)) (-2540 (($ $) 73)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-3026 (((-570) $ (-570)) 69)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-875 |#1|) (-141) (-570)) (T -875))
-((-2784 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-1166 (-570))))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-777)))) (-1558 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3049 (*1 *1 *1) (-4 *1 (-875 *2))) (-4323 (*1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-1342 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3716 (*1 *1 *1) (-4 *1 (-875 *2))) (-3026 (*1 *2 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3753 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3806 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *3 (-570)) (-4 *1 (-875 *4)))))
-(-13 (-311) (-148) (-10 -8 (-15 -2784 ((-1166 (-570)) $)) (-15 -3157 ((-777) $)) (-15 -1558 ($ $ (-570))) (-15 -3049 ($ $)) (-15 -4323 ((-570))) (-15 -1342 ((-570) $)) (-15 -3716 ($ $)) (-15 -3026 ((-570) $ (-570))) (-15 -3753 ($ $ (-570))) (-15 -3806 ($ (-1182 (-570)) (-570)))))
+((-3819 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-1166 (-570))))) (-4331 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-777)))) (-4102 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2540 (*1 *1 *1) (-4 *1 (-875 *2))) (-2532 (*1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2778 (*1 *1 *1) (-4 *1 (-875 *2))) (-3026 (*1 *2 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3754 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2363 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *3 (-570)) (-4 *1 (-875 *4)))))
+(-13 (-311) (-148) (-10 -8 (-15 -3819 ((-1166 (-570)) $)) (-15 -4331 ((-777) $)) (-15 -4102 ($ $ (-570))) (-15 -2540 ($ $)) (-15 -2532 ((-570))) (-15 -1929 ((-570) $)) (-15 -2778 ($ $)) (-15 -3026 ((-570) $ (-570))) (-15 -3754 ($ $ (-570))) (-15 -2363 ($ (-1182 (-570)) (-570)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-311) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $ (-570)) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3806 (($ (-1182 (-570)) (-570)) NIL)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3716 (($ $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-3157 (((-777) $) NIL)) (-2081 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4323 (((-570)) NIL)) (-1342 (((-570) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1558 (($ $ (-570)) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2784 (((-1166 (-570)) $) NIL)) (-3049 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-570) $ (-570)) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $ (-570)) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2363 (($ (-1182 (-570)) (-570)) NIL)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2778 (($ $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4331 (((-777) $) NIL)) (-4340 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2532 (((-570)) NIL)) (-1929 (((-570) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-4102 (($ $ (-570)) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3819 (((-1166 (-570)) $) NIL)) (-2540 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-570) $ (-570)) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
(((-876 |#1|) (-875 |#1|) (-570)) (T -876))
NIL
(-875 |#1|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-876 |#1|) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-876 |#1|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-876 |#1|) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-876 |#1|) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-876 |#1|) (-1047 (-570))))) (-3080 (((-876 |#1|) $) NIL) (((-1186) $) NIL (|has| (-876 |#1|) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-876 |#1|) (-1047 (-570)))) (((-570) $) NIL (|has| (-876 |#1|) (-1047 (-570))))) (-1576 (($ $) NIL) (($ (-570) $) NIL)) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-876 |#1|))) (|:| |vec| (-1276 (-876 |#1|)))) (-695 $) (-1276 $)) NIL) (((-695 (-876 |#1|)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-876 |#1|) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-876 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-876 |#1|) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-876 |#1|) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| (-876 |#1|) (-1161)))) (-2761 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-3787 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-1351 (($ (-1 (-876 |#1|) (-876 |#1|)) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-876 |#1|) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-876 |#1|) (-311)))) (-3739 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-876 |#1|)) (-650 (-876 |#1|))) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-876 |#1|) (-876 |#1|)) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-298 (-876 |#1|))) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-650 (-298 (-876 |#1|)))) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-650 (-1186)) (-650 (-876 |#1|))) NIL (|has| (-876 |#1|) (-520 (-1186) (-876 |#1|)))) (($ $ (-1186) (-876 |#1|)) NIL (|has| (-876 |#1|) (-520 (-1186) (-876 |#1|))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-876 |#1|)) NIL (|has| (-876 |#1|) (-290 (-876 |#1|) (-876 |#1|))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-876 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-876 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1 (-876 |#1|) (-876 |#1|)) (-777)) NIL) (($ $ (-1 (-876 |#1|) (-876 |#1|))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-876 |#1|) $) NIL)) (-1416 (((-899 (-570)) $) NIL (|has| (-876 |#1|) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-876 |#1|) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-876 |#1|) (-620 (-542)))) (((-384) $) NIL (|has| (-876 |#1|) (-1031))) (((-227) $) NIL (|has| (-876 |#1|) (-1031)))) (-3484 (((-176 (-413 (-570))) $) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-876 |#1|)) NIL) (($ (-1186)) NIL (|has| (-876 |#1|) (-1047 (-1186))))) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))) (|has| (-876 |#1|) (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ (-570)) NIL)) (-1423 (($ $) NIL (|has| (-876 |#1|) (-826)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-876 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-876 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1 (-876 |#1|) (-876 |#1|)) (-777)) NIL) (($ $ (-1 (-876 |#1|) (-876 |#1|))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2975 (($ $ $) NIL) (($ (-876 |#1|) (-876 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-876 |#1|) $) NIL) (($ $ (-876 |#1|)) NIL)))
-(((-877 |#1|) (-13 (-1001 (-876 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -3484 ((-176 (-413 (-570))) $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $)))) (-570)) (T -877))
-((-3026 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-877 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-3484 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-877 *3)) (-14 *3 (-570)))) (-1576 (*1 *1 *1) (-12 (-5 *1 (-877 *2)) (-14 *2 (-570)))) (-1576 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-877 *3)) (-14 *3 *2))))
-(-13 (-1001 (-876 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -3484 ((-176 (-413 (-570))) $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 ((|#2| $) NIL (|has| |#2| (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| |#2| (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| |#2| (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570))))) (-3080 ((|#2| $) NIL) (((-1186) $) NIL (|has| |#2| (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-570)))) (((-570) $) NIL (|has| |#2| (-1047 (-570))))) (-1576 (($ $) 35) (($ (-570) $) 38)) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) 64)) (-3336 (($) NIL (|has| |#2| (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) NIL (|has| |#2| (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#2| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#2| (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 ((|#2| $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-2761 (((-112) $) NIL (|has| |#2| (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| |#2| (-856)))) (-3787 (($ $ $) NIL (|has| |#2| (-856)))) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 60)) (-2314 (($) NIL (|has| |#2| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| |#2| (-311)))) (-3739 ((|#2| $) NIL (|has| |#2| (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 |#2|) (-650 |#2|)) NIL (|has| |#2| (-313 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-313 |#2|))) (($ $ (-298 |#2|)) NIL (|has| |#2| (-313 |#2|))) (($ $ (-650 (-298 |#2|))) NIL (|has| |#2| (-313 |#2|))) (($ $ (-650 (-1186)) (-650 |#2|)) NIL (|has| |#2| (-520 (-1186) |#2|))) (($ $ (-1186) |#2|) NIL (|has| |#2| (-520 (-1186) |#2|)))) (-2272 (((-777) $) NIL)) (-1876 (($ $ |#2|) NIL (|has| |#2| (-290 |#2| |#2|)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| |#2| (-235))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1418 (($ $) NIL)) (-4412 ((|#2| $) NIL)) (-1416 (((-899 (-570)) $) NIL (|has| |#2| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#2| (-620 (-899 (-384))))) (((-542) $) NIL (|has| |#2| (-620 (-542)))) (((-384) $) NIL (|has| |#2| (-1031))) (((-227) $) NIL (|has| |#2| (-1031)))) (-3484 (((-176 (-413 (-570))) $) 78)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) 108) (($ (-570)) 20) (($ $) NIL) (($ (-413 (-570))) 25) (($ |#2|) 19) (($ (-1186)) NIL (|has| |#2| (-1047 (-1186))))) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3754 ((|#2| $) NIL (|has| |#2| (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ (-570)) 71)) (-1423 (($ $) NIL (|has| |#2| (-826)))) (-1812 (($) 15 T CONST)) (-1823 (($) 17 T CONST)) (-2791 (($ $) NIL (|has| |#2| (-235))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2924 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2872 (((-112) $ $) 46)) (-2913 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2975 (($ $ $) 24) (($ |#2| |#2|) 65)) (-2965 (($ $) 50) (($ $ $) 52)) (-2954 (($ $ $) 48)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 61)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 53) (($ $ $) 55) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ |#2| $) 66) (($ $ |#2|) NIL)))
-(((-878 |#1| |#2|) (-13 (-1001 |#2|) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -3484 ((-176 (-413 (-570))) $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $)))) (-570) (-875 |#1|)) (T -878))
-((-3026 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-413 (-570))) (-5 *1 (-878 *4 *5)) (-5 *3 (-570)) (-4 *5 (-875 *4)))) (-3484 (*1 *2 *1) (-12 (-14 *3 (-570)) (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))) (-1576 (*1 *1 *1) (-12 (-14 *2 (-570)) (-5 *1 (-878 *2 *3)) (-4 *3 (-875 *2)))) (-1576 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-14 *3 *2) (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))))
-(-13 (-1001 |#2|) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -3484 ((-176 (-413 (-570))) $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $))))
-((-2416 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-2533 ((|#2| $) 12)) (-2189 (($ |#1| |#2|) 9)) (-1903 (((-1168) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3479 (((-1129) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#1| $) 11)) (-3748 (($ |#1| |#2|) 10)) (-3735 (((-868) $) 18 (-2740 (-12 (|has| |#1| (-619 (-868))) (|has| |#2| (-619 (-868)))) (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))))) (-1859 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-2872 (((-112) $ $) 23 (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))))
-(((-879 |#1| |#2|) (-13 (-1226) (-10 -8 (IF (|has| |#1| (-619 (-868))) (IF (|has| |#2| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1109)) (IF (|has| |#2| (-1109)) (-6 (-1109)) |%noBranch|) |%noBranch|) (-15 -2189 ($ |#1| |#2|)) (-15 -3748 ($ |#1| |#2|)) (-15 -3443 (|#1| $)) (-15 -2533 (|#2| $)))) (-1226) (-1226)) (T -879))
-((-2189 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1226)) (-4 *3 (-1226)))) (-3748 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1226)) (-4 *3 (-1226)))) (-3443 (*1 *2 *1) (-12 (-4 *2 (-1226)) (-5 *1 (-879 *2 *3)) (-4 *3 (-1226)))) (-2533 (*1 *2 *1) (-12 (-4 *2 (-1226)) (-5 *1 (-879 *3 *2)) (-4 *3 (-1226)))))
-(-13 (-1226) (-10 -8 (IF (|has| |#1| (-619 (-868))) (IF (|has| |#2| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1109)) (IF (|has| |#2| (-1109)) (-6 (-1109)) |%noBranch|) |%noBranch|) (-15 -2189 ($ |#1| |#2|)) (-15 -3748 ($ |#1| |#2|)) (-15 -3443 (|#1| $)) (-15 -2533 (|#2| $))))
-((-2416 (((-112) $ $) NIL)) (-3216 (((-570) $) 16)) (-1879 (($ (-158)) 13)) (-4053 (($ (-158)) 14)) (-1903 (((-1168) $) NIL)) (-1865 (((-158) $) 15)) (-3479 (((-1129) $) NIL)) (-2408 (($ (-158)) 11)) (-1685 (($ (-158)) 10)) (-3735 (((-868) $) 24) (($ (-158)) 17)) (-4133 (($ (-158)) 12)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-880) (-13 (-1109) (-10 -8 (-15 -1685 ($ (-158))) (-15 -2408 ($ (-158))) (-15 -4133 ($ (-158))) (-15 -1879 ($ (-158))) (-15 -4053 ($ (-158))) (-15 -1865 ((-158) $)) (-15 -3216 ((-570) $)) (-15 -3735 ($ (-158)))))) (T -880))
-((-1685 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2408 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4133 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-1879 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-1865 (*1 *2 *1) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-880)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(-13 (-1109) (-10 -8 (-15 -1685 ($ (-158))) (-15 -2408 ($ (-158))) (-15 -4133 ($ (-158))) (-15 -1879 ($ (-158))) (-15 -4053 ($ (-158))) (-15 -1865 ((-158) $)) (-15 -3216 ((-570) $)) (-15 -3735 ($ (-158)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-876 |#1|) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-876 |#1|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| (-876 |#1|) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-876 |#1|) (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| (-876 |#1|) (-1047 (-570))))) (-3080 (((-876 |#1|) $) NIL) (((-1186) $) NIL (|has| (-876 |#1|) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-876 |#1|) (-1047 (-570)))) (((-570) $) NIL (|has| (-876 |#1|) (-1047 (-570))))) (-2998 (($ $) NIL) (($ (-570) $) NIL)) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-876 |#1|))) (|:| |vec| (-1277 (-876 |#1|)))) (-695 $) (-1277 $)) NIL) (((-695 (-876 |#1|)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-876 |#1|) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-876 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-876 |#1|) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-876 |#1|) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| (-876 |#1|) (-1161)))) (-1774 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-2222 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-1352 (($ (-1 (-876 |#1|) (-876 |#1|)) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-876 |#1|) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-876 |#1|) (-311)))) (-2962 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-876 |#1|)) (-650 (-876 |#1|))) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-876 |#1|) (-876 |#1|)) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-298 (-876 |#1|))) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-650 (-298 (-876 |#1|)))) NIL (|has| (-876 |#1|) (-313 (-876 |#1|)))) (($ $ (-650 (-1186)) (-650 (-876 |#1|))) NIL (|has| (-876 |#1|) (-520 (-1186) (-876 |#1|)))) (($ $ (-1186) (-876 |#1|)) NIL (|has| (-876 |#1|) (-520 (-1186) (-876 |#1|))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-876 |#1|)) NIL (|has| (-876 |#1|) (-290 (-876 |#1|) (-876 |#1|))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| (-876 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-876 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1 (-876 |#1|) (-876 |#1|)) (-777)) NIL) (($ $ (-1 (-876 |#1|) (-876 |#1|))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-876 |#1|) $) NIL)) (-1417 (((-899 (-570)) $) NIL (|has| (-876 |#1|) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-876 |#1|) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-876 |#1|) (-620 (-542)))) (((-384) $) NIL (|has| (-876 |#1|) (-1031))) (((-227) $) NIL (|has| (-876 |#1|) (-1031)))) (-2375 (((-176 (-413 (-570))) $) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-876 |#1|)) NIL) (($ (-1186)) NIL (|has| (-876 |#1|) (-1047 (-1186))))) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))) (|has| (-876 |#1|) (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ (-570)) NIL)) (-1367 (($ $) NIL (|has| (-876 |#1|) (-826)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $) NIL (|has| (-876 |#1|) (-235))) (($ $ (-777)) NIL (|has| (-876 |#1|) (-235))) (($ $ (-1186)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-876 |#1|) (-907 (-1186)))) (($ $ (-1 (-876 |#1|) (-876 |#1|)) (-777)) NIL) (($ $ (-1 (-876 |#1|) (-876 |#1|))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-2975 (($ $ $) NIL) (($ (-876 |#1|) (-876 |#1|)) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-876 |#1|) $) NIL) (($ $ (-876 |#1|)) NIL)))
+(((-877 |#1|) (-13 (-1001 (-876 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -2375 ((-176 (-413 (-570))) $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $)))) (-570)) (T -877))
+((-3026 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-877 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-2375 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-877 *3)) (-14 *3 (-570)))) (-2998 (*1 *1 *1) (-12 (-5 *1 (-877 *2)) (-14 *2 (-570)))) (-2998 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-877 *3)) (-14 *3 *2))))
+(-13 (-1001 (-876 |#1|)) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -2375 ((-176 (-413 (-570))) $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 ((|#2| $) NIL (|has| |#2| (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| |#2| (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (|has| |#2| (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570))))) (-3080 ((|#2| $) NIL) (((-1186) $) NIL (|has| |#2| (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-570)))) (((-570) $) NIL (|has| |#2| (-1047 (-570))))) (-2998 (($ $) 35) (($ (-570) $) 38)) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) 64)) (-3336 (($) NIL (|has| |#2| (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) NIL (|has| |#2| (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#2| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#2| (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 ((|#2| $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-1774 (((-112) $) NIL (|has| |#2| (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| |#2| (-856)))) (-2222 (($ $ $) NIL (|has| |#2| (-856)))) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 60)) (-2315 (($) NIL (|has| |#2| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| |#2| (-311)))) (-2962 ((|#2| $) NIL (|has| |#2| (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 |#2|) (-650 |#2|)) NIL (|has| |#2| (-313 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-313 |#2|))) (($ $ (-298 |#2|)) NIL (|has| |#2| (-313 |#2|))) (($ $ (-650 (-298 |#2|))) NIL (|has| |#2| (-313 |#2|))) (($ $ (-650 (-1186)) (-650 |#2|)) NIL (|has| |#2| (-520 (-1186) |#2|))) (($ $ (-1186) |#2|) NIL (|has| |#2| (-520 (-1186) |#2|)))) (-2547 (((-777) $) NIL)) (-1877 (($ $ |#2|) NIL (|has| |#2| (-290 |#2| |#2|)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) NIL (|has| |#2| (-235))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-4428 (($ $) NIL)) (-4413 ((|#2| $) NIL)) (-1417 (((-899 (-570)) $) NIL (|has| |#2| (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| |#2| (-620 (-899 (-384))))) (((-542) $) NIL (|has| |#2| (-620 (-542)))) (((-384) $) NIL (|has| |#2| (-1031))) (((-227) $) NIL (|has| |#2| (-1031)))) (-2375 (((-176 (-413 (-570))) $) 78)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3735 (((-868) $) 108) (($ (-570)) 20) (($ $) NIL) (($ (-413 (-570))) 25) (($ |#2|) 19) (($ (-1186)) NIL (|has| |#2| (-1047 (-1186))))) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-1609 (((-777)) NIL T CONST)) (-1963 ((|#2| $) NIL (|has| |#2| (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ (-570)) 71)) (-1367 (($ $) NIL (|has| |#2| (-826)))) (-1814 (($) 15 T CONST)) (-1824 (($) 17 T CONST)) (-2791 (($ $) NIL (|has| |#2| (-235))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2924 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2872 (((-112) $ $) 46)) (-2914 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#2| (-856)))) (-2975 (($ $ $) 24) (($ |#2| |#2|) 65)) (-2965 (($ $) 50) (($ $ $) 52)) (-2953 (($ $ $) 48)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 61)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 53) (($ $ $) 55) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ |#2| $) 66) (($ $ |#2|) NIL)))
+(((-878 |#1| |#2|) (-13 (-1001 |#2|) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -2375 ((-176 (-413 (-570))) $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $)))) (-570) (-875 |#1|)) (T -878))
+((-3026 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-413 (-570))) (-5 *1 (-878 *4 *5)) (-5 *3 (-570)) (-4 *5 (-875 *4)))) (-2375 (*1 *2 *1) (-12 (-14 *3 (-570)) (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))) (-2998 (*1 *1 *1) (-12 (-14 *2 (-570)) (-5 *1 (-878 *2 *3)) (-4 *3 (-875 *2)))) (-2998 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-14 *3 *2) (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))))
+(-13 (-1001 |#2|) (-10 -8 (-15 -3026 ((-413 (-570)) $ (-570))) (-15 -2375 ((-176 (-413 (-570))) $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $))))
+((-2417 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-2533 ((|#2| $) 12)) (-2190 (($ |#1| |#2|) 9)) (-4268 (((-1168) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3479 (((-1129) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#1| $) 11)) (-3749 (($ |#1| |#2|) 10)) (-3735 (((-868) $) 18 (-2740 (-12 (|has| |#1| (-619 (-868))) (|has| |#2| (-619 (-868)))) (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))))) (-3866 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-2872 (((-112) $ $) 23 (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))))
+(((-879 |#1| |#2|) (-13 (-1227) (-10 -8 (IF (|has| |#1| (-619 (-868))) (IF (|has| |#2| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1109)) (IF (|has| |#2| (-1109)) (-6 (-1109)) |%noBranch|) |%noBranch|) (-15 -2190 ($ |#1| |#2|)) (-15 -3749 ($ |#1| |#2|)) (-15 -3443 (|#1| $)) (-15 -2533 (|#2| $)))) (-1227) (-1227)) (T -879))
+((-2190 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))) (-3749 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))) (-3443 (*1 *2 *1) (-12 (-4 *2 (-1227)) (-5 *1 (-879 *2 *3)) (-4 *3 (-1227)))) (-2533 (*1 *2 *1) (-12 (-4 *2 (-1227)) (-5 *1 (-879 *3 *2)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (IF (|has| |#1| (-619 (-868))) (IF (|has| |#2| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1109)) (IF (|has| |#2| (-1109)) (-6 (-1109)) |%noBranch|) |%noBranch|) (-15 -2190 ($ |#1| |#2|)) (-15 -3749 ($ |#1| |#2|)) (-15 -3443 (|#1| $)) (-15 -2533 (|#2| $))))
+((-2417 (((-112) $ $) NIL)) (-1818 (((-570) $) 16)) (-4022 (($ (-158)) 13)) (-2989 (($ (-158)) 14)) (-4268 (((-1168) $) NIL)) (-3914 (((-158) $) 15)) (-3479 (((-1129) $) NIL)) (-2408 (($ (-158)) 11)) (-2831 (($ (-158)) 10)) (-3735 (((-868) $) 24) (($ (-158)) 17)) (-4133 (($ (-158)) 12)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-880) (-13 (-1109) (-10 -8 (-15 -2831 ($ (-158))) (-15 -2408 ($ (-158))) (-15 -4133 ($ (-158))) (-15 -4022 ($ (-158))) (-15 -2989 ($ (-158))) (-15 -3914 ((-158) $)) (-15 -1818 ((-570) $)) (-15 -3735 ($ (-158)))))) (T -880))
+((-2831 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2408 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4133 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4022 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2989 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-3914 (*1 *2 *1) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-1818 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-880)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+(-13 (-1109) (-10 -8 (-15 -2831 ($ (-158))) (-15 -2408 ($ (-158))) (-15 -4133 ($ (-158))) (-15 -4022 ($ (-158))) (-15 -2989 ($ (-158))) (-15 -3914 ((-158) $)) (-15 -1818 ((-570) $)) (-15 -3735 ($ (-158)))))
((-3735 (((-320 (-570)) (-413 (-959 (-48)))) 23) (((-320 (-570)) (-959 (-48))) 18)))
(((-881) (-10 -7 (-15 -3735 ((-320 (-570)) (-959 (-48)))) (-15 -3735 ((-320 (-570)) (-413 (-959 (-48))))))) (T -881))
((-3735 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 (-48)))) (-5 *2 (-320 (-570))) (-5 *1 (-881)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-959 (-48))) (-5 *2 (-320 (-570))) (-5 *1 (-881)))))
(-10 -7 (-15 -3735 ((-320 (-570)) (-959 (-48)))) (-15 -3735 ((-320 (-570)) (-413 (-959 (-48))))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1802 (((-112) $ (|[\|\|]| (-512))) 9) (((-112) $ (|[\|\|]| (-1168))) 13)) (-1859 (((-112) $ $) NIL)) (-3950 (((-512) $) 10) (((-1168) $) 14)) (-2872 (((-112) $ $) 15)))
-(((-882) (-13 (-1092) (-1271) (-10 -8 (-15 -1802 ((-112) $ (|[\|\|]| (-512)))) (-15 -3950 ((-512) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3950 ((-1168) $))))) (T -882))
-((-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-882)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-882)))))
-(-13 (-1092) (-1271) (-10 -8 (-15 -1802 ((-112) $ (|[\|\|]| (-512)))) (-15 -3950 ((-512) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3950 ((-1168) $))))
-((-1351 (((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)) 15)))
-(((-883 |#1| |#2|) (-10 -7 (-15 -1351 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)))) (-1226) (-1226)) (T -883))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-884 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-884 *6)) (-5 *1 (-883 *5 *6)))))
-(-10 -7 (-15 -1351 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|))))
-((-2345 (($ |#1| |#1|) 8)) (-2172 ((|#1| $ (-777)) 15)))
-(((-884 |#1|) (-10 -8 (-15 -2345 ($ |#1| |#1|)) (-15 -2172 (|#1| $ (-777)))) (-1226)) (T -884))
-((-2172 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-884 *2)) (-4 *2 (-1226)))) (-2345 (*1 *1 *2 *2) (-12 (-5 *1 (-884 *2)) (-4 *2 (-1226)))))
-(-10 -8 (-15 -2345 ($ |#1| |#1|)) (-15 -2172 (|#1| $ (-777))))
-((-1351 (((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)) 15)))
-(((-885 |#1| |#2|) (-10 -7 (-15 -1351 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)))) (-1226) (-1226)) (T -885))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6)))))
-(-10 -7 (-15 -1351 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|))))
-((-2345 (($ |#1| |#1| |#1|) 8)) (-2172 ((|#1| $ (-777)) 15)))
-(((-886 |#1|) (-10 -8 (-15 -2345 ($ |#1| |#1| |#1|)) (-15 -2172 (|#1| $ (-777)))) (-1226)) (T -886))
-((-2172 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-886 *2)) (-4 *2 (-1226)))) (-2345 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-886 *2)) (-4 *2 (-1226)))))
-(-10 -8 (-15 -2345 ($ |#1| |#1| |#1|)) (-15 -2172 (|#1| $ (-777))))
-((-4114 (((-650 (-1191)) (-1168)) 9)))
-(((-887) (-10 -7 (-15 -4114 ((-650 (-1191)) (-1168))))) (T -887))
-((-4114 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
-(-10 -7 (-15 -4114 ((-650 (-1191)) (-1168))))
-((-1351 (((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)) 15)))
-(((-888 |#1| |#2|) (-10 -7 (-15 -1351 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)))) (-1226) (-1226)) (T -888))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-889 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-889 *6)) (-5 *1 (-888 *5 *6)))))
-(-10 -7 (-15 -1351 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|))))
-((-2209 (($ |#1| |#1| |#1|) 8)) (-2172 ((|#1| $ (-777)) 15)))
-(((-889 |#1|) (-10 -8 (-15 -2209 ($ |#1| |#1| |#1|)) (-15 -2172 (|#1| $ (-777)))) (-1226)) (T -889))
-((-2172 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-889 *2)) (-4 *2 (-1226)))) (-2209 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1226)))))
-(-10 -8 (-15 -2209 ($ |#1| |#1| |#1|)) (-15 -2172 (|#1| $ (-777))))
-((-3493 (((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570)))) 48)) (-2815 (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 44)) (-1539 (((-1166 (-650 (-570))) (-650 (-570))) 58) (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 56)) (-1470 (((-1166 (-650 (-570))) (-570)) 59)) (-2141 (((-1166 (-650 (-570))) (-570) (-570)) 34) (((-1166 (-650 (-570))) (-570)) 23) (((-1166 (-650 (-570))) (-570) (-570) (-570)) 19)) (-2175 (((-1166 (-650 (-570))) (-1166 (-650 (-570)))) 42)) (-3684 (((-650 (-570)) (-650 (-570))) 41)))
-(((-890) (-10 -7 (-15 -2141 ((-1166 (-650 (-570))) (-570) (-570) (-570))) (-15 -2141 ((-1166 (-650 (-570))) (-570))) (-15 -2141 ((-1166 (-650 (-570))) (-570) (-570))) (-15 -3684 ((-650 (-570)) (-650 (-570)))) (-15 -2175 ((-1166 (-650 (-570))) (-1166 (-650 (-570))))) (-15 -2815 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -3493 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -1539 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -1539 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -1470 ((-1166 (-650 (-570))) (-570))))) (T -890))
-((-1470 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-1539 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-1539 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-3493 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570))) (-5 *1 (-890)))) (-2815 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-2175 (*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)))) (-3684 (*1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-890)))) (-2141 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-2141 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-2141 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
-(-10 -7 (-15 -2141 ((-1166 (-650 (-570))) (-570) (-570) (-570))) (-15 -2141 ((-1166 (-650 (-570))) (-570))) (-15 -2141 ((-1166 (-650 (-570))) (-570) (-570))) (-15 -3684 ((-650 (-570)) (-650 (-570)))) (-15 -2175 ((-1166 (-650 (-570))) (-1166 (-650 (-570))))) (-15 -2815 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -3493 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -1539 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -1539 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -1470 ((-1166 (-650 (-570))) (-570))))
-((-1416 (((-899 (-384)) $) 9 (|has| |#1| (-620 (-899 (-384))))) (((-899 (-570)) $) 8 (|has| |#1| (-620 (-899 (-570)))))))
-(((-891 |#1|) (-141) (-1226)) (T -891))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1803 (((-112) $ (|[\|\|]| (-512))) 9) (((-112) $ (|[\|\|]| (-1168))) 13)) (-3866 (((-112) $ $) NIL)) (-3950 (((-512) $) 10) (((-1168) $) 14)) (-2872 (((-112) $ $) 15)))
+(((-882) (-13 (-1092) (-1272) (-10 -8 (-15 -1803 ((-112) $ (|[\|\|]| (-512)))) (-15 -3950 ((-512) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3950 ((-1168) $))))) (T -882))
+((-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-882)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-882)))))
+(-13 (-1092) (-1272) (-10 -8 (-15 -1803 ((-112) $ (|[\|\|]| (-512)))) (-15 -3950 ((-512) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3950 ((-1168) $))))
+((-1352 (((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)) 15)))
+(((-883 |#1| |#2|) (-10 -7 (-15 -1352 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)))) (-1227) (-1227)) (T -883))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-884 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-884 *6)) (-5 *1 (-883 *5 *6)))))
+(-10 -7 (-15 -1352 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|))))
+((-2132 (($ |#1| |#1|) 8)) (-4028 ((|#1| $ (-777)) 15)))
+(((-884 |#1|) (-10 -8 (-15 -2132 ($ |#1| |#1|)) (-15 -4028 (|#1| $ (-777)))) (-1227)) (T -884))
+((-4028 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-884 *2)) (-4 *2 (-1227)))) (-2132 (*1 *1 *2 *2) (-12 (-5 *1 (-884 *2)) (-4 *2 (-1227)))))
+(-10 -8 (-15 -2132 ($ |#1| |#1|)) (-15 -4028 (|#1| $ (-777))))
+((-1352 (((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)) 15)))
+(((-885 |#1| |#2|) (-10 -7 (-15 -1352 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)))) (-1227) (-1227)) (T -885))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6)))))
+(-10 -7 (-15 -1352 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|))))
+((-2132 (($ |#1| |#1| |#1|) 8)) (-4028 ((|#1| $ (-777)) 15)))
+(((-886 |#1|) (-10 -8 (-15 -2132 ($ |#1| |#1| |#1|)) (-15 -4028 (|#1| $ (-777)))) (-1227)) (T -886))
+((-4028 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-886 *2)) (-4 *2 (-1227)))) (-2132 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-886 *2)) (-4 *2 (-1227)))))
+(-10 -8 (-15 -2132 ($ |#1| |#1| |#1|)) (-15 -4028 (|#1| $ (-777))))
+((-2395 (((-650 (-1191)) (-1168)) 9)))
+(((-887) (-10 -7 (-15 -2395 ((-650 (-1191)) (-1168))))) (T -887))
+((-2395 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
+(-10 -7 (-15 -2395 ((-650 (-1191)) (-1168))))
+((-1352 (((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)) 15)))
+(((-888 |#1| |#2|) (-10 -7 (-15 -1352 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)))) (-1227) (-1227)) (T -888))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-889 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-889 *6)) (-5 *1 (-888 *5 *6)))))
+(-10 -7 (-15 -1352 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|))))
+((-3101 (($ |#1| |#1| |#1|) 8)) (-4028 ((|#1| $ (-777)) 15)))
+(((-889 |#1|) (-10 -8 (-15 -3101 ($ |#1| |#1| |#1|)) (-15 -4028 (|#1| $ (-777)))) (-1227)) (T -889))
+((-4028 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-889 *2)) (-4 *2 (-1227)))) (-3101 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
+(-10 -8 (-15 -3101 ($ |#1| |#1| |#1|)) (-15 -4028 (|#1| $ (-777))))
+((-4390 (((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570)))) 48)) (-4156 (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 44)) (-3907 (((-1166 (-650 (-570))) (-650 (-570))) 58) (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 56)) (-1343 (((-1166 (-650 (-570))) (-570)) 59)) (-3692 (((-1166 (-650 (-570))) (-570) (-570)) 34) (((-1166 (-650 (-570))) (-570)) 23) (((-1166 (-650 (-570))) (-570) (-570) (-570)) 19)) (-4058 (((-1166 (-650 (-570))) (-1166 (-650 (-570)))) 42)) (-2488 (((-650 (-570)) (-650 (-570))) 41)))
+(((-890) (-10 -7 (-15 -3692 ((-1166 (-650 (-570))) (-570) (-570) (-570))) (-15 -3692 ((-1166 (-650 (-570))) (-570))) (-15 -3692 ((-1166 (-650 (-570))) (-570) (-570))) (-15 -2488 ((-650 (-570)) (-650 (-570)))) (-15 -4058 ((-1166 (-650 (-570))) (-1166 (-650 (-570))))) (-15 -4156 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -4390 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -3907 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -3907 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -1343 ((-1166 (-650 (-570))) (-570))))) (T -890))
+((-1343 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-3907 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-3907 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-4390 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570))) (-5 *1 (-890)))) (-4156 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-4058 (*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)))) (-2488 (*1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-890)))) (-3692 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-3692 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-3692 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
+(-10 -7 (-15 -3692 ((-1166 (-650 (-570))) (-570) (-570) (-570))) (-15 -3692 ((-1166 (-650 (-570))) (-570))) (-15 -3692 ((-1166 (-650 (-570))) (-570) (-570))) (-15 -2488 ((-650 (-570)) (-650 (-570)))) (-15 -4058 ((-1166 (-650 (-570))) (-1166 (-650 (-570))))) (-15 -4156 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -4390 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -3907 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -3907 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -1343 ((-1166 (-650 (-570))) (-570))))
+((-1417 (((-899 (-384)) $) 9 (|has| |#1| (-620 (-899 (-384))))) (((-899 (-570)) $) 8 (|has| |#1| (-620 (-899 (-570)))))))
+(((-891 |#1|) (-141) (-1227)) (T -891))
NIL
(-13 (-10 -7 (IF (|has| |t#1| (-620 (-899 (-570)))) (-6 (-620 (-899 (-570)))) |%noBranch|) (IF (|has| |t#1| (-620 (-899 (-384)))) (-6 (-620 (-899 (-384)))) |%noBranch|)))
(((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))))
-((-2416 (((-112) $ $) NIL)) (-4286 (($) 14)) (-3142 (($ (-896 |#1| |#2|) (-896 |#1| |#3|)) 28)) (-4010 (((-896 |#1| |#3|) $) 16)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1553 (((-112) $) 22)) (-2484 (($) 19)) (-3735 (((-868) $) 31)) (-1859 (((-112) $ $) NIL)) (-2481 (((-896 |#1| |#2|) $) 15)) (-2872 (((-112) $ $) 26)))
-(((-892 |#1| |#2| |#3|) (-13 (-1109) (-10 -8 (-15 -1553 ((-112) $)) (-15 -2484 ($)) (-15 -4286 ($)) (-15 -3142 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -2481 ((-896 |#1| |#2|) $)) (-15 -4010 ((-896 |#1| |#3|) $)))) (-1109) (-1109) (-672 |#2|)) (T -892))
-((-1553 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))) (-2484 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-4286 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-3142 (*1 *1 *2 *3) (-12 (-5 *2 (-896 *4 *5)) (-5 *3 (-896 *4 *6)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-672 *5)) (-5 *1 (-892 *4 *5 *6)))) (-2481 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *4)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))) (-4010 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *5)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))))
-(-13 (-1109) (-10 -8 (-15 -1553 ((-112) $)) (-15 -2484 ($)) (-15 -4286 ($)) (-15 -3142 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -2481 ((-896 |#1| |#2|) $)) (-15 -4010 ((-896 |#1| |#3|) $))))
-((-2416 (((-112) $ $) 7)) (-2822 (((-896 |#1| $) $ (-899 |#1|) (-896 |#1| $)) 14)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) NIL)) (-4287 (($) 14)) (-2269 (($ (-896 |#1| |#2|) (-896 |#1| |#3|)) 28)) (-4009 (((-896 |#1| |#3|) $) 16)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4047 (((-112) $) 22)) (-2485 (($) 19)) (-3735 (((-868) $) 31)) (-3866 (((-112) $ $) NIL)) (-4065 (((-896 |#1| |#2|) $) 15)) (-2872 (((-112) $ $) 26)))
+(((-892 |#1| |#2| |#3|) (-13 (-1109) (-10 -8 (-15 -4047 ((-112) $)) (-15 -2485 ($)) (-15 -4287 ($)) (-15 -2269 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -4065 ((-896 |#1| |#2|) $)) (-15 -4009 ((-896 |#1| |#3|) $)))) (-1109) (-1109) (-672 |#2|)) (T -892))
+((-4047 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))) (-2485 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-4287 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-2269 (*1 *1 *2 *3) (-12 (-5 *2 (-896 *4 *5)) (-5 *3 (-896 *4 *6)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-672 *5)) (-5 *1 (-892 *4 *5 *6)))) (-4065 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *4)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))) (-4009 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *5)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))))
+(-13 (-1109) (-10 -8 (-15 -4047 ((-112) $)) (-15 -2485 ($)) (-15 -4287 ($)) (-15 -2269 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -4065 ((-896 |#1| |#2|) $)) (-15 -4009 ((-896 |#1| |#3|) $))))
+((-2417 (((-112) $ $) 7)) (-4232 (((-896 |#1| $) $ (-899 |#1|) (-896 |#1| $)) 14)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-893 |#1|) (-141) (-1109)) (T -893))
-((-2822 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-896 *4 *1)) (-5 *3 (-899 *4)) (-4 *1 (-893 *4)) (-4 *4 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -2822 ((-896 |t#1| $) $ (-899 |t#1|) (-896 |t#1| $)))))
+((-4232 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-896 *4 *1)) (-5 *3 (-899 *4)) (-4 *1 (-893 *4)) (-4 *4 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -4232 ((-896 |t#1| $) $ (-899 |t#1|) (-896 |t#1| $)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-1566 (((-112) (-650 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-1487 (((-896 |#1| |#2|) |#2| |#3|) 45 (-12 (-1754 (|has| |#2| (-1047 (-1186)))) (-1754 (|has| |#2| (-1058))))) (((-650 (-298 (-959 |#2|))) |#2| |#3|) 44 (-12 (|has| |#2| (-1058)) (-1754 (|has| |#2| (-1047 (-1186)))))) (((-650 (-298 |#2|)) |#2| |#3|) 36 (|has| |#2| (-1047 (-1186)))) (((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|) 21)))
-(((-894 |#1| |#2| |#3|) (-10 -7 (-15 -1566 ((-112) |#2| |#3|)) (-15 -1566 ((-112) (-650 |#2|) |#3|)) (-15 -1487 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -1487 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -1487 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -1487 ((-896 |#1| |#2|) |#2| |#3|))))) (-1109) (-893 |#1|) (-620 (-899 |#1|))) (T -894))
-((-1487 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-896 *5 *3)) (-5 *1 (-894 *5 *3 *4)) (-1754 (-4 *3 (-1047 (-1186)))) (-1754 (-4 *3 (-1058))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-1487 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 (-959 *3)))) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1058)) (-1754 (-4 *3 (-1047 (-1186)))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-1487 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 *3))) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1047 (-1186))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-1487 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *6 (-893 *5)) (-5 *2 (-892 *5 *6 (-650 *6))) (-5 *1 (-894 *5 *6 *4)) (-5 *3 (-650 *6)) (-4 *4 (-620 (-899 *5))))) (-1566 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-4 *6 (-893 *5)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-894 *5 *6 *4)) (-4 *4 (-620 (-899 *5))))) (-1566 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))))
-(-10 -7 (-15 -1566 ((-112) |#2| |#3|)) (-15 -1566 ((-112) (-650 |#2|) |#3|)) (-15 -1487 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -1487 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -1487 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -1487 ((-896 |#1| |#2|) |#2| |#3|)))))
-((-1351 (((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)) 22)))
-(((-895 |#1| |#2| |#3|) (-10 -7 (-15 -1351 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)))) (-1109) (-1109) (-1109)) (T -895))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-896 *5 *6)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-896 *5 *7)) (-5 *1 (-895 *5 *6 *7)))))
-(-10 -7 (-15 -1351 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|))))
-((-2416 (((-112) $ $) NIL)) (-3923 (($ $ $) 40)) (-3471 (((-3 (-112) "failed") $ (-899 |#1|)) 37)) (-4286 (($) 12)) (-1903 (((-1168) $) NIL)) (-3538 (($ (-899 |#1|) |#2| $) 20)) (-3479 (((-1129) $) NIL)) (-3408 (((-3 |#2| "failed") (-899 |#1|) $) 51)) (-1553 (((-112) $) 15)) (-2484 (($) 13)) (-3826 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 |#2|))) $) 25)) (-3748 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 |#2|)))) 23)) (-3735 (((-868) $) 45)) (-1859 (((-112) $ $) NIL)) (-3971 (($ (-899 |#1|) |#2| $ |#2|) 49)) (-2231 (($ (-899 |#1|) |#2| $) 48)) (-2872 (((-112) $ $) 42)))
-(((-896 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -1553 ((-112) $)) (-15 -2484 ($)) (-15 -4286 ($)) (-15 -3923 ($ $ $)) (-15 -3408 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -2231 ($ (-899 |#1|) |#2| $)) (-15 -3538 ($ (-899 |#1|) |#2| $)) (-15 -3971 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3826 ((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 |#2|))) $)) (-15 -3748 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 |#2|))))) (-15 -3471 ((-3 (-112) "failed") $ (-899 |#1|))))) (-1109) (-1109)) (T -896))
-((-1553 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2484 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4286 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3923 (*1 *1 *1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3408 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-896 *4 *2)))) (-2231 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3538 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3971 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3826 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 *4)))) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3748 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 *4)))) (-4 *4 (-1109)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)))) (-3471 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-896 *4 *5)) (-4 *5 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -1553 ((-112) $)) (-15 -2484 ($)) (-15 -4286 ($)) (-15 -3923 ($ $ $)) (-15 -3408 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -2231 ($ (-899 |#1|) |#2| $)) (-15 -3538 ($ (-899 |#1|) |#2| $)) (-15 -3971 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3826 ((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 |#2|))) $)) (-15 -3748 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 |#2|))))) (-15 -3471 ((-3 (-112) "failed") $ (-899 |#1|)))))
-((-4259 (((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|))) 32) (((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|))) 46) (((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|)) 35)) (-3471 (((-112) (-650 |#2|) (-899 |#1|)) 42) (((-112) |#2| (-899 |#1|)) 36)) (-3659 (((-1 (-112) |#2|) (-899 |#1|)) 16)) (-3128 (((-650 |#2|) (-899 |#1|)) 24)) (-3708 (((-899 |#1|) (-899 |#1|) |#2|) 20)))
-(((-897 |#1| |#2|) (-10 -7 (-15 -4259 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4259 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4259 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3659 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -3471 ((-112) |#2| (-899 |#1|))) (-15 -3471 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -3708 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -3128 ((-650 |#2|) (-899 |#1|)))) (-1109) (-1226)) (T -897))
-((-3128 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1226)))) (-3708 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-897 *4 *3)) (-4 *3 (-1226)))) (-3471 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-1226)) (-5 *2 (-112)) (-5 *1 (-897 *5 *6)))) (-3471 (*1 *2 *3 *4) (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-897 *5 *3)) (-4 *3 (-1226)))) (-3659 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1226)))) (-4259 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-899 *5)) (-5 *3 (-650 (-1186))) (-5 *4 (-1 (-112) (-650 *6))) (-4 *5 (-1109)) (-4 *6 (-1226)) (-5 *1 (-897 *5 *6)))) (-4259 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-5 *3 (-650 (-1 (-112) *5))) (-4 *4 (-1109)) (-4 *5 (-1226)) (-5 *1 (-897 *4 *5)))) (-4259 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1109)) (-4 *5 (-1226)) (-5 *1 (-897 *4 *5)))))
-(-10 -7 (-15 -4259 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4259 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4259 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3659 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -3471 ((-112) |#2| (-899 |#1|))) (-15 -3471 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -3708 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -3128 ((-650 |#2|) (-899 |#1|))))
-((-1351 (((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)) 19)))
-(((-898 |#1| |#2|) (-10 -7 (-15 -1351 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)))) (-1109) (-1109)) (T -898))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-899 *6)) (-5 *1 (-898 *5 *6)))))
-(-10 -7 (-15 -1351 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|))))
-((-2416 (((-112) $ $) NIL)) (-2386 (($ $ (-650 (-52))) 74)) (-1716 (((-650 $) $) 138)) (-1957 (((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $) 30)) (-3773 (((-112) $) 35)) (-3701 (($ $ (-650 (-1186)) (-52)) 31)) (-3544 (($ $ (-650 (-52))) 73)) (-4378 (((-3 |#1| "failed") $) 71) (((-3 (-1186) "failed") $) 162)) (-3080 ((|#1| $) 68) (((-1186) $) NIL)) (-1954 (($ $) 126)) (-3200 (((-112) $) 55)) (-4132 (((-650 (-52)) $) 50)) (-3631 (($ (-1186) (-112) (-112) (-112)) 75)) (-3655 (((-3 (-650 $) "failed") (-650 $)) 82)) (-1827 (((-112) $) 58)) (-3006 (((-112) $) 57)) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) 41)) (-1368 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 48)) (-3366 (((-3 (-2 (|:| |val| $) (|:| -1907 $)) "failed") $) 97)) (-3751 (((-3 (-650 $) "failed") $) 40)) (-1462 (((-3 (-650 $) "failed") $ (-115)) 124) (((-3 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 $))) "failed") $) 107)) (-2434 (((-3 (-650 $) "failed") $) 42)) (-3496 (((-3 (-2 (|:| |val| $) (|:| -1907 (-777))) "failed") $) 45)) (-2197 (((-112) $) 34)) (-3479 (((-1129) $) NIL)) (-1771 (((-112) $) 28)) (-2446 (((-112) $) 52)) (-3867 (((-650 (-52)) $) 130)) (-4025 (((-112) $) 56)) (-1876 (($ (-115) (-650 $)) 104)) (-2765 (((-777) $) 33)) (-3915 (($ $) 72)) (-1416 (($ (-650 $)) 69)) (-3267 (((-112) $) 32)) (-3735 (((-868) $) 63) (($ |#1|) 23) (($ (-1186)) 76)) (-1859 (((-112) $ $) NIL)) (-3708 (($ $ (-52)) 129)) (-1812 (($) 103 T CONST)) (-1823 (($) 83 T CONST)) (-2872 (((-112) $ $) 93)) (-2975 (($ $ $) 117)) (-2954 (($ $ $) 121)) (** (($ $ (-777)) 115) (($ $ $) 64)) (* (($ $ $) 122)))
-(((-899 |#1|) (-13 (-1109) (-1047 |#1|) (-1047 (-1186)) (-10 -8 (-15 0 ($) -3640) (-15 1 ($) -3640) (-15 -3751 ((-3 (-650 $) "failed") $)) (-15 -1596 ((-3 (-650 $) "failed") $)) (-15 -1462 ((-3 (-650 $) "failed") $ (-115))) (-15 -1462 ((-3 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -3496 ((-3 (-2 (|:| |val| $) (|:| -1907 (-777))) "failed") $)) (-15 -1368 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2434 ((-3 (-650 $) "failed") $)) (-15 -3366 ((-3 (-2 (|:| |val| $) (|:| -1907 $)) "failed") $)) (-15 -1876 ($ (-115) (-650 $))) (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -2975 ($ $ $)) (-15 -2765 ((-777) $)) (-15 -1416 ($ (-650 $))) (-15 -3915 ($ $)) (-15 -2197 ((-112) $)) (-15 -3200 ((-112) $)) (-15 -3773 ((-112) $)) (-15 -3267 ((-112) $)) (-15 -4025 ((-112) $)) (-15 -3006 ((-112) $)) (-15 -1827 ((-112) $)) (-15 -2446 ((-112) $)) (-15 -4132 ((-650 (-52)) $)) (-15 -3544 ($ $ (-650 (-52)))) (-15 -2386 ($ $ (-650 (-52)))) (-15 -3631 ($ (-1186) (-112) (-112) (-112))) (-15 -3701 ($ $ (-650 (-1186)) (-52))) (-15 -1957 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -1771 ((-112) $)) (-15 -1954 ($ $)) (-15 -3708 ($ $ (-52))) (-15 -3867 ((-650 (-52)) $)) (-15 -1716 ((-650 $) $)) (-15 -3655 ((-3 (-650 $) "failed") (-650 $))))) (-1109)) (T -899))
-((-1812 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1823 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-3751 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1596 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1462 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-1462 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 (-899 *3))))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3496 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -1907 (-777)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1368 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-899 *3)) (|:| |den| (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2434 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3366 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -1907 (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1876 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-2954 (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2975 (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2765 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3915 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2197 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3200 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3773 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3267 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4025 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3006 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1827 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2446 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4132 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3544 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2386 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3631 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-3701 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-1957 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1954 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-3708 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3867 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1716 (*1 *2 *1) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3655 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(-13 (-1109) (-1047 |#1|) (-1047 (-1186)) (-10 -8 (-15 (-1812) ($) -3640) (-15 (-1823) ($) -3640) (-15 -3751 ((-3 (-650 $) "failed") $)) (-15 -1596 ((-3 (-650 $) "failed") $)) (-15 -1462 ((-3 (-650 $) "failed") $ (-115))) (-15 -1462 ((-3 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -3496 ((-3 (-2 (|:| |val| $) (|:| -1907 (-777))) "failed") $)) (-15 -1368 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2434 ((-3 (-650 $) "failed") $)) (-15 -3366 ((-3 (-2 (|:| |val| $) (|:| -1907 $)) "failed") $)) (-15 -1876 ($ (-115) (-650 $))) (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -2975 ($ $ $)) (-15 -2765 ((-777) $)) (-15 -1416 ($ (-650 $))) (-15 -3915 ($ $)) (-15 -2197 ((-112) $)) (-15 -3200 ((-112) $)) (-15 -3773 ((-112) $)) (-15 -3267 ((-112) $)) (-15 -4025 ((-112) $)) (-15 -3006 ((-112) $)) (-15 -1827 ((-112) $)) (-15 -2446 ((-112) $)) (-15 -4132 ((-650 (-52)) $)) (-15 -3544 ($ $ (-650 (-52)))) (-15 -2386 ($ $ (-650 (-52)))) (-15 -3631 ($ (-1186) (-112) (-112) (-112))) (-15 -3701 ($ $ (-650 (-1186)) (-52))) (-15 -1957 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -1771 ((-112) $)) (-15 -1954 ($ $)) (-15 -3708 ($ $ (-52))) (-15 -3867 ((-650 (-52)) $)) (-15 -1716 ((-650 $) $)) (-15 -3655 ((-3 (-650 $) "failed") (-650 $)))))
-((-2416 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) 19)) (-1390 (((-112) $) 49)) (-4378 (((-3 (-678 |#1|) "failed") $) 56)) (-3080 (((-678 |#1|) $) 54)) (-3455 (($ $) 23)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-3788 (((-777) $) 61)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-678 |#1|) $) 21)) (-3735 (((-868) $) 47) (($ (-678 |#1|)) 26) (((-825 |#1|) $) 36) (($ |#1|) 25)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 9 T CONST)) (-2824 (((-650 (-678 |#1|)) $) 28)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 12)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 67)))
-(((-900 |#1|) (-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 1 ($) -3640) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ($ |#1|)) (-15 -3443 ((-678 |#1|) $)) (-15 -3788 ((-777) $)) (-15 -2824 ((-650 (-678 |#1|)) $)) (-15 -3455 ($ $)) (-15 -1390 ((-112) $)) (-15 -3039 ((-650 |#1|) $)))) (-856)) (T -900))
-((-1823 (*1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3735 (*1 *1 *2) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3443 (*1 *2 *1) (-12 (-5 *2 (-678 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-2824 (*1 *2 *1) (-12 (-5 *2 (-650 (-678 *3))) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3455 (*1 *1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
-(-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 (-1823) ($) -3640) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ($ |#1|)) (-15 -3443 ((-678 |#1|) $)) (-15 -3788 ((-777) $)) (-15 -2824 ((-650 (-678 |#1|)) $)) (-15 -3455 ($ $)) (-15 -1390 ((-112) $)) (-15 -3039 ((-650 |#1|) $))))
-((-1741 ((|#1| |#1| |#1|) 19)))
-(((-901 |#1| |#2|) (-10 -7 (-15 -1741 (|#1| |#1| |#1|))) (-1252 |#2|) (-1058)) (T -901))
-((-1741 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1252 *3)))))
-(-10 -7 (-15 -1741 (|#1| |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-1788 (((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-3520 (((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 14)) (-2872 (((-112) $ $) 6)))
+((-4198 (((-112) (-650 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-1549 (((-896 |#1| |#2|) |#2| |#3|) 45 (-12 (-1753 (|has| |#2| (-1047 (-1186)))) (-1753 (|has| |#2| (-1058))))) (((-650 (-298 (-959 |#2|))) |#2| |#3|) 44 (-12 (|has| |#2| (-1058)) (-1753 (|has| |#2| (-1047 (-1186)))))) (((-650 (-298 |#2|)) |#2| |#3|) 36 (|has| |#2| (-1047 (-1186)))) (((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|) 21)))
+(((-894 |#1| |#2| |#3|) (-10 -7 (-15 -4198 ((-112) |#2| |#3|)) (-15 -4198 ((-112) (-650 |#2|) |#3|)) (-15 -1549 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -1549 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -1549 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -1549 ((-896 |#1| |#2|) |#2| |#3|))))) (-1109) (-893 |#1|) (-620 (-899 |#1|))) (T -894))
+((-1549 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-896 *5 *3)) (-5 *1 (-894 *5 *3 *4)) (-1753 (-4 *3 (-1047 (-1186)))) (-1753 (-4 *3 (-1058))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-1549 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 (-959 *3)))) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1058)) (-1753 (-4 *3 (-1047 (-1186)))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-1549 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 *3))) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1047 (-1186))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-1549 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-4 *6 (-893 *5)) (-5 *2 (-892 *5 *6 (-650 *6))) (-5 *1 (-894 *5 *6 *4)) (-5 *3 (-650 *6)) (-4 *4 (-620 (-899 *5))))) (-4198 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-4 *6 (-893 *5)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-894 *5 *6 *4)) (-4 *4 (-620 (-899 *5))))) (-4198 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))))
+(-10 -7 (-15 -4198 ((-112) |#2| |#3|)) (-15 -4198 ((-112) (-650 |#2|) |#3|)) (-15 -1549 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -1549 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -1549 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -1549 ((-896 |#1| |#2|) |#2| |#3|)))))
+((-1352 (((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)) 22)))
+(((-895 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)))) (-1109) (-1109) (-1109)) (T -895))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-896 *5 *6)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-896 *5 *7)) (-5 *1 (-895 *5 *6 *7)))))
+(-10 -7 (-15 -1352 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|))))
+((-2417 (((-112) $ $) NIL)) (-3923 (($ $ $) 40)) (-2276 (((-3 (-112) "failed") $ (-899 |#1|)) 37)) (-4287 (($) 12)) (-4268 (((-1168) $) NIL)) (-1701 (($ (-899 |#1|) |#2| $) 20)) (-3479 (((-1129) $) NIL)) (-2897 (((-3 |#2| "failed") (-899 |#1|) $) 51)) (-4047 (((-112) $) 15)) (-2485 (($) 13)) (-3827 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 |#2|))) $) 25)) (-3749 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 |#2|)))) 23)) (-3735 (((-868) $) 45)) (-3866 (((-112) $ $) NIL)) (-3401 (($ (-899 |#1|) |#2| $ |#2|) 49)) (-3356 (($ (-899 |#1|) |#2| $) 48)) (-2872 (((-112) $ $) 42)))
+(((-896 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -4047 ((-112) $)) (-15 -2485 ($)) (-15 -4287 ($)) (-15 -3923 ($ $ $)) (-15 -2897 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -3356 ($ (-899 |#1|) |#2| $)) (-15 -1701 ($ (-899 |#1|) |#2| $)) (-15 -3401 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3827 ((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 |#2|))) $)) (-15 -3749 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 |#2|))))) (-15 -2276 ((-3 (-112) "failed") $ (-899 |#1|))))) (-1109) (-1109)) (T -896))
+((-4047 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2485 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4287 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3923 (*1 *1 *1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2897 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-896 *4 *2)))) (-3356 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-1701 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3401 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3827 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 *4)))) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3749 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 *4)))) (-4 *4 (-1109)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)))) (-2276 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-896 *4 *5)) (-4 *5 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -4047 ((-112) $)) (-15 -2485 ($)) (-15 -4287 ($)) (-15 -3923 ($ $ $)) (-15 -2897 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -3356 ($ (-899 |#1|) |#2| $)) (-15 -1701 ($ (-899 |#1|) |#2| $)) (-15 -3401 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3827 ((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 |#2|))) $)) (-15 -3749 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 |#2|))))) (-15 -2276 ((-3 (-112) "failed") $ (-899 |#1|)))))
+((-4261 (((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|))) 32) (((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|))) 46) (((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|)) 35)) (-2276 (((-112) (-650 |#2|) (-899 |#1|)) 42) (((-112) |#2| (-899 |#1|)) 36)) (-3659 (((-1 (-112) |#2|) (-899 |#1|)) 16)) (-2143 (((-650 |#2|) (-899 |#1|)) 24)) (-2717 (((-899 |#1|) (-899 |#1|) |#2|) 20)))
+(((-897 |#1| |#2|) (-10 -7 (-15 -4261 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4261 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4261 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3659 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -2276 ((-112) |#2| (-899 |#1|))) (-15 -2276 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -2717 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -2143 ((-650 |#2|) (-899 |#1|)))) (-1109) (-1227)) (T -897))
+((-2143 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))) (-2717 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-897 *4 *3)) (-4 *3 (-1227)))) (-2276 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-1227)) (-5 *2 (-112)) (-5 *1 (-897 *5 *6)))) (-2276 (*1 *2 *3 *4) (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-897 *5 *3)) (-4 *3 (-1227)))) (-3659 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))) (-4261 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-899 *5)) (-5 *3 (-650 (-1186))) (-5 *4 (-1 (-112) (-650 *6))) (-4 *5 (-1109)) (-4 *6 (-1227)) (-5 *1 (-897 *5 *6)))) (-4261 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-5 *3 (-650 (-1 (-112) *5))) (-4 *4 (-1109)) (-4 *5 (-1227)) (-5 *1 (-897 *4 *5)))) (-4261 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1109)) (-4 *5 (-1227)) (-5 *1 (-897 *4 *5)))))
+(-10 -7 (-15 -4261 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4261 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4261 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3659 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -2276 ((-112) |#2| (-899 |#1|))) (-15 -2276 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -2717 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -2143 ((-650 |#2|) (-899 |#1|))))
+((-1352 (((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)) 19)))
+(((-898 |#1| |#2|) (-10 -7 (-15 -1352 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)))) (-1109) (-1109)) (T -898))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-899 *6)) (-5 *1 (-898 *5 *6)))))
+(-10 -7 (-15 -1352 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|))))
+((-2417 (((-112) $ $) NIL)) (-4427 (($ $ (-650 (-52))) 74)) (-1713 (((-650 $) $) 138)) (-3588 (((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $) 30)) (-2107 (((-112) $) 35)) (-2652 (($ $ (-650 (-1186)) (-52)) 31)) (-1779 (($ $ (-650 (-52))) 73)) (-4379 (((-3 |#1| "failed") $) 71) (((-3 (-1186) "failed") $) 162)) (-3080 ((|#1| $) 68) (((-1186) $) NIL)) (-3552 (($ $) 126)) (-1662 (((-112) $) 55)) (-1366 (((-650 (-52)) $) 50)) (-3183 (($ (-1186) (-112) (-112) (-112)) 75)) (-3458 (((-3 (-650 $) "failed") (-650 $)) 82)) (-1714 (((-112) $) 58)) (-3372 (((-112) $) 57)) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) 41)) (-1369 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 48)) (-2499 (((-3 (-2 (|:| |val| $) (|:| -3011 $)) "failed") $) 97)) (-1955 (((-3 (-650 $) "failed") $) 40)) (-4382 (((-3 (-650 $) "failed") $ (-115)) 124) (((-3 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 $))) "failed") $) 107)) (-1766 (((-3 (-650 $) "failed") $) 42)) (-4415 (((-3 (-2 (|:| |val| $) (|:| -3011 (-777))) "failed") $) 45)) (-4277 (((-112) $) 34)) (-3479 (((-1129) $) NIL)) (-4324 (((-112) $) 28)) (-1888 (((-112) $) 52)) (-1809 (((-650 (-52)) $) 130)) (-2711 (((-112) $) 56)) (-1877 (($ (-115) (-650 $)) 104)) (-2766 (((-777) $) 33)) (-3916 (($ $) 72)) (-1417 (($ (-650 $)) 69)) (-4116 (((-112) $) 32)) (-3735 (((-868) $) 63) (($ |#1|) 23) (($ (-1186)) 76)) (-3866 (((-112) $ $) NIL)) (-2717 (($ $ (-52)) 129)) (-1814 (($) 103 T CONST)) (-1824 (($) 83 T CONST)) (-2872 (((-112) $ $) 93)) (-2975 (($ $ $) 117)) (-2953 (($ $ $) 121)) (** (($ $ (-777)) 115) (($ $ $) 64)) (* (($ $ $) 122)))
+(((-899 |#1|) (-13 (-1109) (-1047 |#1|) (-1047 (-1186)) (-10 -8 (-15 0 ($) -3640) (-15 1 ($) -3640) (-15 -1955 ((-3 (-650 $) "failed") $)) (-15 -3176 ((-3 (-650 $) "failed") $)) (-15 -4382 ((-3 (-650 $) "failed") $ (-115))) (-15 -4382 ((-3 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -4415 ((-3 (-2 (|:| |val| $) (|:| -3011 (-777))) "failed") $)) (-15 -1369 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -1766 ((-3 (-650 $) "failed") $)) (-15 -2499 ((-3 (-2 (|:| |val| $) (|:| -3011 $)) "failed") $)) (-15 -1877 ($ (-115) (-650 $))) (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -2975 ($ $ $)) (-15 -2766 ((-777) $)) (-15 -1417 ($ (-650 $))) (-15 -3916 ($ $)) (-15 -4277 ((-112) $)) (-15 -1662 ((-112) $)) (-15 -2107 ((-112) $)) (-15 -4116 ((-112) $)) (-15 -2711 ((-112) $)) (-15 -3372 ((-112) $)) (-15 -1714 ((-112) $)) (-15 -1888 ((-112) $)) (-15 -1366 ((-650 (-52)) $)) (-15 -1779 ($ $ (-650 (-52)))) (-15 -4427 ($ $ (-650 (-52)))) (-15 -3183 ($ (-1186) (-112) (-112) (-112))) (-15 -2652 ($ $ (-650 (-1186)) (-52))) (-15 -3588 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -4324 ((-112) $)) (-15 -3552 ($ $)) (-15 -2717 ($ $ (-52))) (-15 -1809 ((-650 (-52)) $)) (-15 -1713 ((-650 $) $)) (-15 -3458 ((-3 (-650 $) "failed") (-650 $))))) (-1109)) (T -899))
+((-1814 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1824 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1955 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3176 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4382 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-4382 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 (-899 *3))))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4415 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3011 (-777)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1369 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-899 *3)) (|:| |den| (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1766 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2499 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3011 (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1877 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-2953 (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2975 (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2766 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3916 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-4277 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1662 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2107 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4116 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2711 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3372 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1714 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1888 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1366 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1779 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4427 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3183 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-2652 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-3588 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4324 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3552 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2717 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1809 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1713 (*1 *2 *1) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3458 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(-13 (-1109) (-1047 |#1|) (-1047 (-1186)) (-10 -8 (-15 (-1814) ($) -3640) (-15 (-1824) ($) -3640) (-15 -1955 ((-3 (-650 $) "failed") $)) (-15 -3176 ((-3 (-650 $) "failed") $)) (-15 -4382 ((-3 (-650 $) "failed") $ (-115))) (-15 -4382 ((-3 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -4415 ((-3 (-2 (|:| |val| $) (|:| -3011 (-777))) "failed") $)) (-15 -1369 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -1766 ((-3 (-650 $) "failed") $)) (-15 -2499 ((-3 (-2 (|:| |val| $) (|:| -3011 $)) "failed") $)) (-15 -1877 ($ (-115) (-650 $))) (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -2975 ($ $ $)) (-15 -2766 ((-777) $)) (-15 -1417 ($ (-650 $))) (-15 -3916 ($ $)) (-15 -4277 ((-112) $)) (-15 -1662 ((-112) $)) (-15 -2107 ((-112) $)) (-15 -4116 ((-112) $)) (-15 -2711 ((-112) $)) (-15 -3372 ((-112) $)) (-15 -1714 ((-112) $)) (-15 -1888 ((-112) $)) (-15 -1366 ((-650 (-52)) $)) (-15 -1779 ($ $ (-650 (-52)))) (-15 -4427 ($ $ (-650 (-52)))) (-15 -3183 ($ (-1186) (-112) (-112) (-112))) (-15 -2652 ($ $ (-650 (-1186)) (-52))) (-15 -3588 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -4324 ((-112) $)) (-15 -3552 ($ $)) (-15 -2717 ($ $ (-52))) (-15 -1809 ((-650 (-52)) $)) (-15 -1713 ((-650 $) $)) (-15 -3458 ((-3 (-650 $) "failed") (-650 $)))))
+((-2417 (((-112) $ $) NIL)) (-3039 (((-650 |#1|) $) 19)) (-3771 (((-112) $) 49)) (-4379 (((-3 (-678 |#1|) "failed") $) 56)) (-3080 (((-678 |#1|) $) 54)) (-3455 (($ $) 23)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-3788 (((-777) $) 61)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-678 |#1|) $) 21)) (-3735 (((-868) $) 47) (($ (-678 |#1|)) 26) (((-825 |#1|) $) 36) (($ |#1|) 25)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 9 T CONST)) (-4256 (((-650 (-678 |#1|)) $) 28)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 12)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 67)))
+(((-900 |#1|) (-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 1 ($) -3640) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ($ |#1|)) (-15 -3443 ((-678 |#1|) $)) (-15 -3788 ((-777) $)) (-15 -4256 ((-650 (-678 |#1|)) $)) (-15 -3455 ($ $)) (-15 -3771 ((-112) $)) (-15 -3039 ((-650 |#1|) $)))) (-856)) (T -900))
+((-1824 (*1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3735 (*1 *1 *2) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3443 (*1 *2 *1) (-12 (-5 *2 (-678 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-4256 (*1 *2 *1) (-12 (-5 *2 (-650 (-678 *3))) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3455 (*1 *1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
+(-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 (-1824) ($) -3640) (-15 -3735 ((-825 |#1|) $)) (-15 -3735 ($ |#1|)) (-15 -3443 ((-678 |#1|) $)) (-15 -3788 ((-777) $)) (-15 -4256 ((-650 (-678 |#1|)) $)) (-15 -3455 ($ $)) (-15 -3771 ((-112) $)) (-15 -3039 ((-650 |#1|) $))))
+((-2159 ((|#1| |#1| |#1|) 19)))
+(((-901 |#1| |#2|) (-10 -7 (-15 -2159 (|#1| |#1| |#1|))) (-1253 |#2|) (-1058)) (T -901))
+((-2159 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -2159 (|#1| |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-1363 (((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1524 (((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 14)) (-2872 (((-112) $ $) 6)))
(((-902) (-141)) (T -902))
-((-1788 (*1 *2 *3 *4) (-12 (-4 *1 (-902)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168)))))) (-3520 (*1 *2 *3) (-12 (-4 *1 (-902)) (-5 *3 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *2 (-1044)))))
-(-13 (-1109) (-10 -7 (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))) (-15 -3520 ((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))))))
+((-1363 (*1 *2 *3 *4) (-12 (-4 *1 (-902)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168)))))) (-1524 (*1 *2 *3) (-12 (-4 *1 (-902)) (-5 *3 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *2 (-1044)))))
+(-13 (-1109) (-10 -7 (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))) (-15 -1524 ((-1044) (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-1772 ((|#1| |#1| (-777)) 29)) (-2315 (((-3 |#1| "failed") |#1| |#1|) 26)) (-1386 (((-3 (-2 (|:| -4397 |#1|) (|:| -4410 |#1|)) "failed") |#1| (-777) (-777)) 32) (((-650 |#1|) |#1|) 39)))
-(((-903 |#1| |#2|) (-10 -7 (-15 -1386 ((-650 |#1|) |#1|)) (-15 -1386 ((-3 (-2 (|:| -4397 |#1|) (|:| -4410 |#1|)) "failed") |#1| (-777) (-777))) (-15 -2315 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1772 (|#1| |#1| (-777)))) (-1252 |#2|) (-368)) (T -903))
-((-1772 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4)) (-4 *2 (-1252 *4)))) (-2315 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3)) (-4 *2 (-1252 *3)))) (-1386 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-777)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -4397 *3) (|:| -4410 *3))) (-5 *1 (-903 *3 *5)) (-4 *3 (-1252 *5)))) (-1386 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-903 *3 *4)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -1386 ((-650 |#1|) |#1|)) (-15 -1386 ((-3 (-2 (|:| -4397 |#1|) (|:| -4410 |#1|)) "failed") |#1| (-777) (-777))) (-15 -2315 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1772 (|#1| |#1| (-777))))
-((-1654 (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168)) 106) (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227)) 102) (((-1044) (-905) (-1072)) 94) (((-1044) (-905)) 95)) (-1788 (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072)) 65) (((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905)) 67)))
-(((-904) (-10 -7 (-15 -1654 ((-1044) (-905))) (-15 -1654 ((-1044) (-905) (-1072))) (-15 -1654 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -1654 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))) (T -904))
-((-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-1788 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-1654 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168)) (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-1654 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168)) (-5 *8 (-227)) (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-1654 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-1044)) (-5 *1 (-904)))))
-(-10 -7 (-15 -1654 ((-1044) (-905))) (-15 -1654 ((-1044) (-905) (-1072))) (-15 -1654 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -1654 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -1788 ((-2 (|:| -1788 (-384)) (|:| -3503 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))
-((-2416 (((-112) $ $) NIL)) (-3080 (((-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))) $) 19)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 21) (($ (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 18)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-4334 ((|#1| |#1| (-777)) 29)) (-2957 (((-3 |#1| "failed") |#1| |#1|) 26)) (-1437 (((-3 (-2 (|:| -4398 |#1|) (|:| -4411 |#1|)) "failed") |#1| (-777) (-777)) 32) (((-650 |#1|) |#1|) 39)))
+(((-903 |#1| |#2|) (-10 -7 (-15 -1437 ((-650 |#1|) |#1|)) (-15 -1437 ((-3 (-2 (|:| -4398 |#1|) (|:| -4411 |#1|)) "failed") |#1| (-777) (-777))) (-15 -2957 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4334 (|#1| |#1| (-777)))) (-1253 |#2|) (-368)) (T -903))
+((-4334 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4)) (-4 *2 (-1253 *4)))) (-2957 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3)) (-4 *2 (-1253 *3)))) (-1437 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-777)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -4398 *3) (|:| -4411 *3))) (-5 *1 (-903 *3 *5)) (-4 *3 (-1253 *5)))) (-1437 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-903 *3 *4)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -1437 ((-650 |#1|) |#1|)) (-15 -1437 ((-3 (-2 (|:| -4398 |#1|) (|:| -4411 |#1|)) "failed") |#1| (-777) (-777))) (-15 -2957 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4334 (|#1| |#1| (-777))))
+((-2524 (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168)) 106) (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227)) 102) (((-1044) (-905) (-1072)) 94) (((-1044) (-905)) 95)) (-1363 (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072)) 65) (((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905)) 67)))
+(((-904) (-10 -7 (-15 -2524 ((-1044) (-905))) (-15 -2524 ((-1044) (-905) (-1072))) (-15 -2524 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -2524 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))) (T -904))
+((-1363 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-1363 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-2524 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168)) (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-2524 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168)) (-5 *8 (-227)) (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-1044)) (-5 *1 (-904)))))
+(-10 -7 (-15 -2524 ((-1044) (-905))) (-15 -2524 ((-1044) (-905) (-1072))) (-15 -2524 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -2524 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -1363 ((-2 (|:| -1363 (-384)) (|:| -3504 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))
+((-2417 (((-112) $ $) NIL)) (-3080 (((-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))) $) 19)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 21) (($ (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) 18)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-905) (-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))) (-15 -3080 ((-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))) $))))) (T -905))
((-3735 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *1 (-905)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227)))) (-5 *1 (-905)))))
(-13 (-1109) (-10 -8 (-15 -3735 ($ (-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))))) (-15 -3080 ((-2 (|:| |pde| (-650 (-320 (-227)))) (|:| |constraints| (-650 (-2 (|:| |start| (-227)) (|:| |finish| (-227)) (|:| |grid| (-777)) (|:| |boundaryType| (-570)) (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227)))))) (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168)) (|:| |tol| (-227))) $))))
@@ -3702,1669 +3702,1673 @@ NIL
(((-906 |#1| |#2|) (-10 -8 (-15 -2791 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -2791 (|#1| |#1| |#2| (-777))) (-15 -2791 (|#1| |#1| (-650 |#2|))) (-15 -2791 (|#1| |#1| |#2|)) (-15 -3447 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -3447 (|#1| |#1| |#2| (-777))) (-15 -3447 (|#1| |#1| (-650 |#2|))) (-15 -3447 (|#1| |#1| |#2|))) (-907 |#2|) (-1109)) (T -906))
NIL
(-10 -8 (-15 -2791 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -2791 (|#1| |#1| |#2| (-777))) (-15 -2791 (|#1| |#1| (-650 |#2|))) (-15 -2791 (|#1| |#1| |#2|)) (-15 -3447 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -3447 (|#1| |#1| |#2| (-777))) (-15 -3447 (|#1| |#1| (-650 |#2|))) (-15 -3447 (|#1| |#1| |#2|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $ |#1|) 46) (($ $ (-650 |#1|)) 45) (($ $ |#1| (-777)) 44) (($ $ (-650 |#1|) (-650 (-777))) 43)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ |#1|) 42) (($ $ (-650 |#1|)) 41) (($ $ |#1| (-777)) 40) (($ $ (-650 |#1|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3447 (($ $ |#1|) 46) (($ $ (-650 |#1|)) 45) (($ $ |#1| (-777)) 44) (($ $ (-650 |#1|) (-650 (-777))) 43)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ |#1|) 42) (($ $ (-650 |#1|)) 41) (($ $ |#1| (-777)) 40) (($ $ (-650 |#1|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-907 |#1|) (-141) (-1109)) (T -907))
((-3447 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109)))) (-3447 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-3447 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 (-777))) (-4 *1 (-907 *4)) (-4 *4 (-1109)))) (-2791 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-2791 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109)))) (-2791 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-2791 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 (-777))) (-4 *1 (-907 *4)) (-4 *4 (-1109)))))
(-13 (-1058) (-10 -8 (-15 -3447 ($ $ |t#1|)) (-15 -3447 ($ $ (-650 |t#1|))) (-15 -3447 ($ $ |t#1| (-777))) (-15 -3447 ($ $ (-650 |t#1|) (-650 (-777)))) (-15 -2791 ($ $ |t#1|)) (-15 -2791 ($ $ (-650 |t#1|))) (-15 -2791 ($ $ |t#1| (-777))) (-15 -2791 ($ $ (-650 |t#1|) (-650 (-777))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) 26)) (-3594 (((-112) $ (-777)) NIL)) (-1379 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-4256 (($ $ $) NIL (|has| $ (-6 -4449)))) (-3511 (($ $ $) NIL (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) (($ $ "left" $) NIL (|has| $ (-6 -4449))) (($ $ "right" $) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4410 (($ $) 25)) (-3817 (($ |#1|) 12) (($ $ $) 17)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-4397 (($ $) 23)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) 20)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1678 (((-570) $ $) NIL)) (-3150 (((-112) $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1212 |#1|) $) 9) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 21 (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-908 |#1|) (-13 (-120 |#1|) (-619 (-1212 |#1|)) (-10 -8 (-15 -3817 ($ |#1|)) (-15 -3817 ($ $ $)))) (-1109)) (T -908))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) 26)) (-4095 (((-112) $ (-777)) NIL)) (-3708 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3141 (($ $ $) NIL (|has| $ (-6 -4450)))) (-1443 (($ $ $) NIL (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4411 (($ $) 25)) (-3817 (($ |#1|) 12) (($ $ $) 17)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4398 (($ $) 23)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) 20)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2763 (((-570) $ $) NIL)) (-2345 (((-112) $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1213 |#1|) $) 9) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 21 (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-908 |#1|) (-13 (-120 |#1|) (-619 (-1213 |#1|)) (-10 -8 (-15 -3817 ($ |#1|)) (-15 -3817 ($ $ $)))) (-1109)) (T -908))
((-3817 (*1 *1 *2) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))) (-3817 (*1 *1 *1 *1) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))))
-(-13 (-120 |#1|) (-619 (-1212 |#1|)) (-10 -8 (-15 -3817 ($ |#1|)) (-15 -3817 ($ $ $))))
-((-1384 ((|#2| (-1151 |#1| |#2|)) 50)))
-(((-909 |#1| |#2|) (-10 -7 (-15 -1384 (|#2| (-1151 |#1| |#2|)))) (-928) (-13 (-1058) (-10 -7 (-6 (-4450 "*"))))) (T -909))
-((-1384 (*1 *2 *3) (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928)) (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4450 "*"))))) (-5 *1 (-909 *4 *2)))))
-(-10 -7 (-15 -1384 (|#2| (-1151 |#1| |#2|))))
-((-2416 (((-112) $ $) 7)) (-2450 (($) 19 T CONST)) (-3413 (((-3 $ "failed") $) 16)) (-4082 (((-1111 |#1|) $ |#1|) 33)) (-2081 (((-112) $) 18)) (-3310 (($ $ $) 31 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3787 (($ $ $) 30 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-1903 (((-1168) $) 10)) (-1825 (($ $) 25)) (-3479 (((-1129) $) 11)) (-1730 ((|#1| $ |#1|) 35)) (-1876 ((|#1| $ |#1|) 34)) (-1641 (($ (-650 (-650 |#1|))) 36)) (-2700 (($ (-650 |#1|)) 37)) (-3684 (($ $ $) 22)) (-3688 (($ $ $) 21)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1823 (($) 20 T CONST)) (-2924 (((-112) $ $) 28 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2904 (((-112) $ $) 27 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 29 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2894 (((-112) $ $) 32)) (-2975 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
+(-13 (-120 |#1|) (-619 (-1213 |#1|)) (-10 -8 (-15 -3817 ($ |#1|)) (-15 -3817 ($ $ $))))
+((-3526 ((|#2| (-1151 |#1| |#2|)) 50)))
+(((-909 |#1| |#2|) (-10 -7 (-15 -3526 (|#2| (-1151 |#1| |#2|)))) (-928) (-13 (-1058) (-10 -7 (-6 (-4451 "*"))))) (T -909))
+((-3526 (*1 *2 *3) (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928)) (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4451 "*"))))) (-5 *1 (-909 *4 *2)))))
+(-10 -7 (-15 -3526 (|#2| (-1151 |#1| |#2|))))
+((-2417 (((-112) $ $) 7)) (-3761 (($) 19 T CONST)) (-2937 (((-3 $ "failed") $) 16)) (-2152 (((-1111 |#1|) $ |#1|) 33)) (-4340 (((-112) $) 18)) (-3311 (($ $ $) 31 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2222 (($ $ $) 30 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-4268 (((-1168) $) 10)) (-1826 (($ $) 25)) (-3479 (((-1129) $) 11)) (-1731 ((|#1| $ |#1|) 35)) (-1877 ((|#1| $ |#1|) 34)) (-2428 (($ (-650 (-650 |#1|))) 36)) (-2373 (($ (-650 |#1|)) 37)) (-2488 (($ $ $) 22)) (-2522 (($ $ $) 21)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1824 (($) 20 T CONST)) (-2924 (((-112) $ $) 28 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2904 (((-112) $ $) 27 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 29 (-2740 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2894 (((-112) $ $) 32)) (-2975 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
(((-910 |#1|) (-141) (-1109)) (T -910))
-((-2700 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-1641 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-1730 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-1876 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-4082 (*1 *2 *1 *3) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-1111 *3)))) (-2894 (*1 *2 *1 *1) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-479) (-10 -8 (-15 -2700 ($ (-650 |t#1|))) (-15 -1641 ($ (-650 (-650 |t#1|)))) (-15 -1730 (|t#1| $ |t#1|)) (-15 -1876 (|t#1| $ |t#1|)) (-15 -4082 ((-1111 |t#1|) $ |t#1|)) (-15 -2894 ((-112) $ $)) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-373)) (-6 (-856)) |%noBranch|)))
+((-2373 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-2428 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-1731 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-1877 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-2152 (*1 *2 *1 *3) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-1111 *3)))) (-2894 (*1 *2 *1 *1) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-479) (-10 -8 (-15 -2373 ($ (-650 |t#1|))) (-15 -2428 ($ (-650 (-650 |t#1|)))) (-15 -1731 (|t#1| $ |t#1|)) (-15 -1877 (|t#1| $ |t#1|)) (-15 -2152 ((-1111 |t#1|) $ |t#1|)) (-15 -2894 ((-112) $ $)) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-373)) (-6 (-856)) |%noBranch|)))
(((-102) . T) ((-619 (-868)) . T) ((-479) . T) ((-732) . T) ((-856) -2740 (|has| |#1| (-856)) (|has| |#1| (-373))) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3958 (((-650 (-650 (-777))) $) 164)) (-3324 (((-650 (-777)) (-912 |#1|) $) 192)) (-3539 (((-650 (-777)) (-912 |#1|) $) 193)) (-1746 (((-650 (-912 |#1|)) $) 153)) (-3336 (((-912 |#1|) $ (-570)) 158) (((-912 |#1|) $) 159)) (-3838 (($ (-650 (-912 |#1|))) 166)) (-3157 (((-777) $) 160)) (-2557 (((-1111 (-1111 |#1|)) $) 190)) (-4082 (((-1111 |#1|) $ |#1|) 181) (((-1111 (-1111 |#1|)) $ (-1111 |#1|)) 201) (((-1111 (-650 |#1|)) $ (-650 |#1|)) 204)) (-3667 (((-1111 |#1|) $) 156)) (-3464 (((-112) (-912 |#1|) $) 141)) (-1903 (((-1168) $) NIL)) (-3920 (((-1281) $) 146) (((-1281) $ (-570) (-570)) 205)) (-3479 (((-1129) $) NIL)) (-3540 (((-650 (-912 |#1|)) $) 147)) (-1876 (((-912 |#1|) $ (-777)) 154)) (-1601 (((-777) $) 161)) (-3735 (((-868) $) 178) (((-650 (-912 |#1|)) $) 28) (($ (-650 (-912 |#1|))) 165)) (-1859 (((-112) $ $) NIL)) (-4358 (((-650 |#1|) $) 163)) (-2872 (((-112) $ $) 198)) (-2913 (((-112) $ $) 196)) (-2894 (((-112) $ $) 195)))
-(((-911 |#1|) (-13 (-1109) (-10 -8 (-15 -3735 ((-650 (-912 |#1|)) $)) (-15 -3540 ((-650 (-912 |#1|)) $)) (-15 -1876 ((-912 |#1|) $ (-777))) (-15 -3336 ((-912 |#1|) $ (-570))) (-15 -3336 ((-912 |#1|) $)) (-15 -3157 ((-777) $)) (-15 -1601 ((-777) $)) (-15 -4358 ((-650 |#1|) $)) (-15 -1746 ((-650 (-912 |#1|)) $)) (-15 -3958 ((-650 (-650 (-777))) $)) (-15 -3735 ($ (-650 (-912 |#1|)))) (-15 -3838 ($ (-650 (-912 |#1|)))) (-15 -4082 ((-1111 |#1|) $ |#1|)) (-15 -2557 ((-1111 (-1111 |#1|)) $)) (-15 -4082 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -4082 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -3464 ((-112) (-912 |#1|) $)) (-15 -3324 ((-650 (-777)) (-912 |#1|) $)) (-15 -3539 ((-650 (-777)) (-912 |#1|) $)) (-15 -3667 ((-1111 |#1|) $)) (-15 -2894 ((-112) $ $)) (-15 -2913 ((-112) $ $)) (-15 -3920 ((-1281) $)) (-15 -3920 ((-1281) $ (-570) (-570))))) (-1109)) (T -911))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3540 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3336 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-912 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3157 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1601 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4358 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1746 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3958 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-3838 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-4082 (*1 *2 *1 *3) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2557 (*1 *2 *1) (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4082 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-1111 *4))) (-5 *1 (-911 *4)) (-5 *3 (-1111 *4)))) (-4082 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-650 *4))) (-5 *1 (-911 *4)) (-5 *3 (-650 *4)))) (-3464 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-911 *4)))) (-3324 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-3539 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-3667 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2894 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2913 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3920 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3920 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -3735 ((-650 (-912 |#1|)) $)) (-15 -3540 ((-650 (-912 |#1|)) $)) (-15 -1876 ((-912 |#1|) $ (-777))) (-15 -3336 ((-912 |#1|) $ (-570))) (-15 -3336 ((-912 |#1|) $)) (-15 -3157 ((-777) $)) (-15 -1601 ((-777) $)) (-15 -4358 ((-650 |#1|) $)) (-15 -1746 ((-650 (-912 |#1|)) $)) (-15 -3958 ((-650 (-650 (-777))) $)) (-15 -3735 ($ (-650 (-912 |#1|)))) (-15 -3838 ($ (-650 (-912 |#1|)))) (-15 -4082 ((-1111 |#1|) $ |#1|)) (-15 -2557 ((-1111 (-1111 |#1|)) $)) (-15 -4082 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -4082 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -3464 ((-112) (-912 |#1|) $)) (-15 -3324 ((-650 (-777)) (-912 |#1|) $)) (-15 -3539 ((-650 (-777)) (-912 |#1|) $)) (-15 -3667 ((-1111 |#1|) $)) (-15 -2894 ((-112) $ $)) (-15 -2913 ((-112) $ $)) (-15 -3920 ((-1281) $)) (-15 -3920 ((-1281) $ (-570) (-570)))))
-((-2416 (((-112) $ $) NIL)) (-3288 (((-650 $) (-650 $)) 103)) (-3140 (((-570) $) 84)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-3157 (((-777) $) 81)) (-4082 (((-1111 |#1|) $ |#1|) 72)) (-2081 (((-112) $) NIL)) (-3431 (((-112) $) 88)) (-2259 (((-777) $) 85)) (-3667 (((-1111 |#1|) $) 61)) (-3310 (($ $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3787 (($ $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2982 (((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $) 56)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 131)) (-3479 (((-1129) $) NIL)) (-3822 (((-1111 |#1|) $) 139 (|has| |#1| (-373)))) (-1322 (((-112) $) 82)) (-1730 ((|#1| $ |#1|) 70)) (-1876 ((|#1| $ |#1|) 133)) (-1601 (((-777) $) 63)) (-1641 (($ (-650 (-650 |#1|))) 118)) (-1973 (((-980) $) 76)) (-2700 (($ (-650 |#1|)) 33)) (-3684 (($ $ $) NIL)) (-3688 (($ $ $) NIL)) (-2644 (($ (-650 (-650 |#1|))) 58)) (-2967 (($ (-650 (-650 |#1|))) 123)) (-2280 (($ (-650 |#1|)) 135)) (-3735 (((-868) $) 117) (($ (-650 (-650 |#1|))) 91) (($ (-650 |#1|)) 92)) (-1859 (((-112) $ $) NIL)) (-1823 (($) 24 T CONST)) (-2924 (((-112) $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2872 (((-112) $ $) 68)) (-2913 (((-112) $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2894 (((-112) $ $) 90)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 34)))
-(((-912 |#1|) (-13 (-910 |#1|) (-10 -8 (-15 -2982 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -2644 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 |#1|))) (-15 -2967 ($ (-650 (-650 |#1|)))) (-15 -1601 ((-777) $)) (-15 -3667 ((-1111 |#1|) $)) (-15 -1973 ((-980) $)) (-15 -3157 ((-777) $)) (-15 -2259 ((-777) $)) (-15 -3140 ((-570) $)) (-15 -1322 ((-112) $)) (-15 -3431 ((-112) $)) (-15 -3288 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -3822 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -2280 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -2280 ($ (-650 |#1|))) |%noBranch|)))) (-1109)) (T -912))
-((-2982 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3)))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2644 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-2967 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-1601 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3667 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1973 (*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3157 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2259 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3140 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1322 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3431 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3288 (*1 *2 *2) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373)) (-4 *3 (-1109)))) (-2280 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
-(-13 (-910 |#1|) (-10 -8 (-15 -2982 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -2644 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 |#1|))) (-15 -2967 ($ (-650 (-650 |#1|)))) (-15 -1601 ((-777) $)) (-15 -3667 ((-1111 |#1|) $)) (-15 -1973 ((-980) $)) (-15 -3157 ((-777) $)) (-15 -2259 ((-777) $)) (-15 -3140 ((-570) $)) (-15 -1322 ((-112) $)) (-15 -3431 ((-112) $)) (-15 -3288 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -3822 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -2280 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -2280 ($ (-650 |#1|))) |%noBranch|))))
-((-3061 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|)) 159)) (-2373 ((|#1|) 97)) (-2025 (((-424 (-1182 |#4|)) (-1182 |#4|)) 168)) (-3542 (((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)) 84)) (-4402 (((-424 (-1182 |#4|)) (-1182 |#4|)) 178)) (-2867 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|) 113)))
-(((-913 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3061 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -4402 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2025 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2373 (|#1|)) (-15 -2867 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -3542 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)))) (-916) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -913))
-((-3542 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *7)) (-4 *7 (-856)) (-4 *5 (-916)) (-4 *6 (-799)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-424 (-1182 *8))) (-5 *1 (-913 *5 *6 *7 *8)) (-5 *4 (-1182 *8)))) (-2867 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7)) (-4 *7 (-956 *5 *6 *4)) (-4 *5 (-916)) (-4 *6 (-799)) (-4 *4 (-856)) (-5 *1 (-913 *5 *6 *4 *7)))) (-2373 (*1 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-916)) (-5 *1 (-913 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-2025 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-4402 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-3061 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-913 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3061 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -4402 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2025 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2373 (|#1|)) (-15 -2867 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -3542 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|))))
-((-3061 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 41)) (-2373 ((|#1|) 75)) (-2025 (((-424 (-1182 |#2|)) (-1182 |#2|)) 124)) (-3542 (((-424 (-1182 |#2|)) (-1182 |#2|)) 108)) (-4402 (((-424 (-1182 |#2|)) (-1182 |#2|)) 135)))
-(((-914 |#1| |#2|) (-10 -7 (-15 -3061 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -4402 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -2025 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -2373 (|#1|)) (-15 -3542 ((-424 (-1182 |#2|)) (-1182 |#2|)))) (-916) (-1252 |#1|)) (T -914))
-((-3542 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-1252 *4)) (-5 *2 (-424 (-1182 *5))) (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))) (-2373 (*1 *2) (-12 (-4 *2 (-916)) (-5 *1 (-914 *2 *3)) (-4 *3 (-1252 *2)))) (-2025 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-1252 *4)) (-5 *2 (-424 (-1182 *5))) (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))) (-4402 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-1252 *4)) (-5 *2 (-424 (-1182 *5))) (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))) (-3061 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-916)) (-5 *1 (-914 *4 *5)))))
-(-10 -7 (-15 -3061 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -4402 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -2025 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -2373 (|#1|)) (-15 -3542 ((-424 (-1182 |#2|)) (-1182 |#2|))))
-((-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 42)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 18)) (-1918 (((-3 $ "failed") $) 36)))
-(((-915 |#1|) (-10 -8 (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-916)) (T -915))
-NIL
-(-10 -8 (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2615 (((-424 (-1182 $)) (-1182 $)) 66)) (-2222 (($ $) 57)) (-1790 (((-424 $) $) 58)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 63)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-1552 (((-112) $) 59)) (-2081 (((-112) $) 35)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-1885 (((-424 (-1182 $)) (-1182 $)) 64)) (-1495 (((-424 (-1182 $)) (-1182 $)) 65)) (-3738 (((-424 $) $) 56)) (-2407 (((-3 $ "failed") $ $) 48)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 62 (|has| $ (-146)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1918 (((-3 $ "failed") $) 61 (|has| $ (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) NIL)) (-3237 (((-650 (-650 (-777))) $) 164)) (-3321 (((-650 (-777)) (-912 |#1|) $) 192)) (-1716 (((-650 (-777)) (-912 |#1|) $) 193)) (-2207 (((-650 (-912 |#1|)) $) 153)) (-3336 (((-912 |#1|) $ (-570)) 158) (((-912 |#1|) $) 159)) (-1497 (($ (-650 (-912 |#1|))) 166)) (-4331 (((-777) $) 160)) (-3534 (((-1111 (-1111 |#1|)) $) 190)) (-2152 (((-1111 |#1|) $ |#1|) 181) (((-1111 (-1111 |#1|)) $ (-1111 |#1|)) 201) (((-1111 (-650 |#1|)) $ (-650 |#1|)) 204)) (-3574 (((-1111 |#1|) $) 156)) (-2218 (((-112) (-912 |#1|) $) 141)) (-4268 (((-1168) $) NIL)) (-4167 (((-1282) $) 146) (((-1282) $ (-570) (-570)) 205)) (-3479 (((-1129) $) NIL)) (-1728 (((-650 (-912 |#1|)) $) 147)) (-1877 (((-912 |#1|) $ (-777)) 154)) (-3221 (((-777) $) 161)) (-3735 (((-868) $) 178) (((-650 (-912 |#1|)) $) 28) (($ (-650 (-912 |#1|))) 165)) (-3866 (((-112) $ $) NIL)) (-4360 (((-650 |#1|) $) 163)) (-2872 (((-112) $ $) 198)) (-2914 (((-112) $ $) 196)) (-2894 (((-112) $ $) 195)))
+(((-911 |#1|) (-13 (-1109) (-10 -8 (-15 -3735 ((-650 (-912 |#1|)) $)) (-15 -1728 ((-650 (-912 |#1|)) $)) (-15 -1877 ((-912 |#1|) $ (-777))) (-15 -3336 ((-912 |#1|) $ (-570))) (-15 -3336 ((-912 |#1|) $)) (-15 -4331 ((-777) $)) (-15 -3221 ((-777) $)) (-15 -4360 ((-650 |#1|) $)) (-15 -2207 ((-650 (-912 |#1|)) $)) (-15 -3237 ((-650 (-650 (-777))) $)) (-15 -3735 ($ (-650 (-912 |#1|)))) (-15 -1497 ($ (-650 (-912 |#1|)))) (-15 -2152 ((-1111 |#1|) $ |#1|)) (-15 -3534 ((-1111 (-1111 |#1|)) $)) (-15 -2152 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -2152 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -2218 ((-112) (-912 |#1|) $)) (-15 -3321 ((-650 (-777)) (-912 |#1|) $)) (-15 -1716 ((-650 (-777)) (-912 |#1|) $)) (-15 -3574 ((-1111 |#1|) $)) (-15 -2894 ((-112) $ $)) (-15 -2914 ((-112) $ $)) (-15 -4167 ((-1282) $)) (-15 -4167 ((-1282) $ (-570) (-570))))) (-1109)) (T -911))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1728 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3336 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-912 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4331 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4360 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2207 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3237 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-1497 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-2152 (*1 *2 *1 *3) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3534 (*1 *2 *1) (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2152 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-1111 *4))) (-5 *1 (-911 *4)) (-5 *3 (-1111 *4)))) (-2152 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-650 *4))) (-5 *1 (-911 *4)) (-5 *3 (-650 *4)))) (-2218 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-911 *4)))) (-3321 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-1716 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-3574 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2894 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2914 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4167 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -3735 ((-650 (-912 |#1|)) $)) (-15 -1728 ((-650 (-912 |#1|)) $)) (-15 -1877 ((-912 |#1|) $ (-777))) (-15 -3336 ((-912 |#1|) $ (-570))) (-15 -3336 ((-912 |#1|) $)) (-15 -4331 ((-777) $)) (-15 -3221 ((-777) $)) (-15 -4360 ((-650 |#1|) $)) (-15 -2207 ((-650 (-912 |#1|)) $)) (-15 -3237 ((-650 (-650 (-777))) $)) (-15 -3735 ($ (-650 (-912 |#1|)))) (-15 -1497 ($ (-650 (-912 |#1|)))) (-15 -2152 ((-1111 |#1|) $ |#1|)) (-15 -3534 ((-1111 (-1111 |#1|)) $)) (-15 -2152 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -2152 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -2218 ((-112) (-912 |#1|) $)) (-15 -3321 ((-650 (-777)) (-912 |#1|) $)) (-15 -1716 ((-650 (-777)) (-912 |#1|) $)) (-15 -3574 ((-1111 |#1|) $)) (-15 -2894 ((-112) $ $)) (-15 -2914 ((-112) $ $)) (-15 -4167 ((-1282) $)) (-15 -4167 ((-1282) $ (-570) (-570)))))
+((-2417 (((-112) $ $) NIL)) (-3287 (((-650 $) (-650 $)) 103)) (-2249 (((-570) $) 84)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4331 (((-777) $) 81)) (-2152 (((-1111 |#1|) $ |#1|) 72)) (-4340 (((-112) $) NIL)) (-1958 (((-112) $) 88)) (-3661 (((-777) $) 85)) (-3574 (((-1111 |#1|) $) 61)) (-3311 (($ $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2222 (($ $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3116 (((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $) 56)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 131)) (-3479 (((-1129) $) NIL)) (-1313 (((-1111 |#1|) $) 139 (|has| |#1| (-373)))) (-1739 (((-112) $) 82)) (-1731 ((|#1| $ |#1|) 70)) (-1877 ((|#1| $ |#1|) 133)) (-3221 (((-777) $) 63)) (-2428 (($ (-650 (-650 |#1|))) 118)) (-2511 (((-980) $) 76)) (-2373 (($ (-650 |#1|)) 33)) (-2488 (($ $ $) NIL)) (-2522 (($ $ $) NIL)) (-3036 (($ (-650 (-650 |#1|))) 58)) (-2982 (($ (-650 (-650 |#1|))) 123)) (-2620 (($ (-650 |#1|)) 135)) (-3735 (((-868) $) 117) (($ (-650 (-650 |#1|))) 91) (($ (-650 |#1|)) 92)) (-3866 (((-112) $ $) NIL)) (-1824 (($) 24 T CONST)) (-2924 (((-112) $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2872 (((-112) $ $) 68)) (-2914 (((-112) $ $) NIL (-2740 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2894 (((-112) $ $) 90)) (-2975 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 34)))
+(((-912 |#1|) (-13 (-910 |#1|) (-10 -8 (-15 -3116 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -3036 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 |#1|))) (-15 -2982 ($ (-650 (-650 |#1|)))) (-15 -3221 ((-777) $)) (-15 -3574 ((-1111 |#1|) $)) (-15 -2511 ((-980) $)) (-15 -4331 ((-777) $)) (-15 -3661 ((-777) $)) (-15 -2249 ((-570) $)) (-15 -1739 ((-112) $)) (-15 -1958 ((-112) $)) (-15 -3287 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -1313 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -2620 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -2620 ($ (-650 |#1|))) |%noBranch|)))) (-1109)) (T -912))
+((-3116 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3)))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3036 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-2982 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3574 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2511 (*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4331 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3661 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2249 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1739 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1958 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3287 (*1 *2 *2) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1313 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373)) (-4 *3 (-1109)))) (-2620 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(-13 (-910 |#1|) (-10 -8 (-15 -3116 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -3036 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 (-650 |#1|)))) (-15 -3735 ($ (-650 |#1|))) (-15 -2982 ($ (-650 (-650 |#1|)))) (-15 -3221 ((-777) $)) (-15 -3574 ((-1111 |#1|) $)) (-15 -2511 ((-980) $)) (-15 -4331 ((-777) $)) (-15 -3661 ((-777) $)) (-15 -2249 ((-570) $)) (-15 -1739 ((-112) $)) (-15 -1958 ((-112) $)) (-15 -3287 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -1313 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -2620 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -2620 ($ (-650 |#1|))) |%noBranch|))))
+((-2650 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|)) 159)) (-2366 ((|#1|) 97)) (-1918 (((-424 (-1182 |#4|)) (-1182 |#4|)) 168)) (-1754 (((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)) 84)) (-2129 (((-424 (-1182 |#4|)) (-1182 |#4|)) 178)) (-3390 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|) 113)))
+(((-913 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2650 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -2129 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -1918 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2366 (|#1|)) (-15 -3390 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -1754 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)))) (-916) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -913))
+((-1754 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *7)) (-4 *7 (-856)) (-4 *5 (-916)) (-4 *6 (-799)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-424 (-1182 *8))) (-5 *1 (-913 *5 *6 *7 *8)) (-5 *4 (-1182 *8)))) (-3390 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7)) (-4 *7 (-956 *5 *6 *4)) (-4 *5 (-916)) (-4 *6 (-799)) (-4 *4 (-856)) (-5 *1 (-913 *5 *6 *4 *7)))) (-2366 (*1 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-916)) (-5 *1 (-913 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))) (-1918 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-2129 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7))) (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7)))) (-2650 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-913 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2650 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -2129 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -1918 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2366 (|#1|)) (-15 -3390 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -1754 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|))))
+((-2650 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 41)) (-2366 ((|#1|) 75)) (-1918 (((-424 (-1182 |#2|)) (-1182 |#2|)) 124)) (-1754 (((-424 (-1182 |#2|)) (-1182 |#2|)) 108)) (-2129 (((-424 (-1182 |#2|)) (-1182 |#2|)) 135)))
+(((-914 |#1| |#2|) (-10 -7 (-15 -2650 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -2129 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -1918 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -2366 (|#1|)) (-15 -1754 ((-424 (-1182 |#2|)) (-1182 |#2|)))) (-916) (-1253 |#1|)) (T -914))
+((-1754 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5))) (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))) (-2366 (*1 *2) (-12 (-4 *2 (-916)) (-5 *1 (-914 *2 *3)) (-4 *3 (-1253 *2)))) (-1918 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5))) (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))) (-2129 (*1 *2 *3) (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5))) (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))) (-2650 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-916)) (-5 *1 (-914 *4 *5)))))
+(-10 -7 (-15 -2650 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -2129 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -1918 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -2366 (|#1|)) (-15 -1754 ((-424 (-1182 |#2|)) (-1182 |#2|))))
+((-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 42)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 18)) (-3127 (((-3 $ "failed") $) 36)))
+(((-915 |#1|) (-10 -8 (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-916)) (T -915))
+NIL
+(-10 -8 (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-2810 (((-424 (-1182 $)) (-1182 $)) 66)) (-3252 (($ $) 57)) (-1378 (((-424 $) $) 58)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 63)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4037 (((-112) $) 59)) (-4340 (((-112) $) 35)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-4086 (((-424 (-1182 $)) (-1182 $)) 64)) (-1627 (((-424 (-1182 $)) (-1182 $)) 65)) (-3739 (((-424 $) $) 56)) (-2406 (((-3 $ "failed") $ $) 48)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 62 (|has| $ (-146)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3127 (((-3 $ "failed") $) 61 (|has| $ (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-916) (-141)) (T -916))
-((-3450 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-916)))) (-2615 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-1495 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-1885 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-1659 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *1))) (-5 *3 (-1182 *1)) (-4 *1 (-916)))) (-4057 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916)) (-5 *2 (-1276 *1)))) (-1918 (*1 *1 *1) (|partial| -12 (-4 *1 (-146)) (-4 *1 (-916)))))
-(-13 (-1230) (-10 -8 (-15 -2615 ((-424 (-1182 $)) (-1182 $))) (-15 -1495 ((-424 (-1182 $)) (-1182 $))) (-15 -1885 ((-424 (-1182 $)) (-1182 $))) (-15 -3450 ((-1182 $) (-1182 $) (-1182 $))) (-15 -1659 ((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $))) (IF (|has| $ (-146)) (PROGN (-15 -4057 ((-3 (-1276 $) "failed") (-695 $))) (-15 -1918 ((-3 $ "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2980 (((-112) $) NIL)) (-2412 (((-777)) NIL)) (-3071 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-4029 (((-1199 (-928) (-777)) (-570)) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 $ "failed") $) NIL)) (-3080 (($ $) NIL)) (-2049 (($ (-1276 $)) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-2493 (($) NIL)) (-2036 (((-112) $) NIL)) (-2774 (($ $) NIL) (($ $ (-777)) NIL)) (-1552 (((-112) $) NIL)) (-3157 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2081 (((-112) $) NIL)) (-1484 (($) NIL (|has| $ (-373)))) (-3088 (((-112) $) NIL (|has| $ (-373)))) (-2610 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2885 (((-3 $ "failed") $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1638 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) NIL)) (-2367 (((-928) $) NIL)) (-3587 (((-1182 $) $) NIL (|has| $ (-373)))) (-1726 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-3609 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL T CONST)) (-2159 (($ (-928)) NIL)) (-2289 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2339 (($) NIL (|has| $ (-373)))) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL)) (-3738 (((-424 $) $) NIL)) (-3916 (((-928)) NIL) (((-839 (-928))) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-2845 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-2184 (((-135)) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-1601 (((-928) $) NIL) (((-839 (-928)) $) NIL)) (-2886 (((-1182 $)) NIL)) (-2163 (($) NIL)) (-3046 (($) NIL (|has| $ (-373)))) (-1807 (((-695 $) (-1276 $)) NIL) (((-1276 $) $) NIL)) (-1416 (((-570) $) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL)) (-1918 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $) (-928)) NIL) (((-1276 $)) NIL)) (-1681 (((-112) $ $) NIL)) (-2663 (((-112) $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-3741 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+((-2092 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-916)))) (-2810 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-1627 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-4086 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-2576 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *1))) (-5 *3 (-1182 *1)) (-4 *1 (-916)))) (-3032 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916)) (-5 *2 (-1277 *1)))) (-3127 (*1 *1 *1) (|partial| -12 (-4 *1 (-146)) (-4 *1 (-916)))))
+(-13 (-1231) (-10 -8 (-15 -2810 ((-424 (-1182 $)) (-1182 $))) (-15 -1627 ((-424 (-1182 $)) (-1182 $))) (-15 -4086 ((-424 (-1182 $)) (-1182 $))) (-15 -2092 ((-1182 $) (-1182 $) (-1182 $))) (-15 -2576 ((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $))) (IF (|has| $ (-146)) (PROGN (-15 -3032 ((-3 (-1277 $) "failed") (-695 $))) (-15 -3127 ((-3 $ "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-3096 (((-112) $) NIL)) (-1566 (((-777)) NIL)) (-3071 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2756 (((-1199 (-928) (-777)) (-570)) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 $ "failed") $) NIL)) (-3080 (($ $) NIL)) (-2125 (($ (-1277 $)) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4181 (($) NIL)) (-2006 (((-112) $) NIL)) (-1901 (($ $) NIL) (($ $ (-777)) NIL)) (-4037 (((-112) $) NIL)) (-4331 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-4340 (((-112) $) NIL)) (-1518 (($) NIL (|has| $ (-373)))) (-2888 (((-112) $) NIL (|has| $ (-373)))) (-2771 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-3584 (((-3 $ "failed") $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2399 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) NIL)) (-2332 (((-928) $) NIL)) (-4044 (((-1182 $) $) NIL (|has| $ (-373)))) (-2070 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-4258 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL T CONST)) (-2160 (($ (-928)) NIL)) (-2699 (((-112) $) NIL)) (-3479 (((-1129) $) NIL)) (-2340 (($) NIL (|has| $ (-373)))) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL)) (-3739 (((-424 $) $) NIL)) (-4118 (((-928)) NIL) (((-839 (-928))) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3156 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-4154 (((-135)) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-3221 (((-928) $) NIL) (((-839 (-928)) $) NIL)) (-3597 (((-1182 $)) NIL)) (-3929 (($) NIL)) (-2520 (($) NIL (|has| $ (-373)))) (-1533 (((-695 $) (-1277 $)) NIL) (((-1277 $) $) NIL)) (-1417 (((-570) $) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL)) (-3127 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $) (-928)) NIL) (((-1277 $)) NIL)) (-2795 (((-112) $ $) NIL)) (-2048 (((-112) $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2984 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
(((-917 |#1|) (-13 (-354) (-333 $) (-620 (-570))) (-928)) (T -917))
NIL
(-13 (-354) (-333 $) (-620 (-570)))
-((-3905 (((-3 (-2 (|:| -3157 (-777)) (|:| -1703 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)) 77)) (-1831 (((-112) (-341 |#2| |#3| |#4| |#5|)) 17)) (-3157 (((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|)) 15)))
-(((-918 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3157 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -1831 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -3905 ((-3 (-2 (|:| -3157 (-777)) (|:| -1703 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)))) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1252 |#2|) (-1252 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -918))
-((-3905 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-2 (|:| -3157 (-777)) (|:| -1703 *8))) (-5 *1 (-918 *4 *5 *6 *7 *8)))) (-1831 (*1 *2 *3) (-12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112)) (-5 *1 (-918 *4 *5 *6 *7 *8)))) (-3157 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-777)) (-5 *1 (-918 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3157 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -1831 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -3905 ((-3 (-2 (|:| -3157 (-777)) (|:| -1703 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|))))
-((-3905 (((-3 (-2 (|:| -3157 (-777)) (|:| -1703 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 64)) (-1831 (((-112) (-341 (-413 (-570)) |#1| |#2| |#3|)) 16)) (-3157 (((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 14)))
-(((-919 |#1| |#2| |#3|) (-10 -7 (-15 -3157 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -1831 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -3905 ((-3 (-2 (|:| -3157 (-777)) (|:| -1703 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)))) (-1252 (-413 (-570))) (-1252 (-413 |#1|)) (-347 (-413 (-570)) |#1| |#2|)) (T -919))
-((-3905 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6)) (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-2 (|:| -3157 (-777)) (|:| -1703 *6))) (-5 *1 (-919 *4 *5 *6)))) (-1831 (*1 *2 *3) (-12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6)) (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6)))) (-3157 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6)) (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-777)) (-5 *1 (-919 *4 *5 *6)))))
-(-10 -7 (-15 -3157 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -1831 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -3905 ((-3 (-2 (|:| -3157 (-777)) (|:| -1703 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))))
-((-1908 ((|#2| |#2|) 26)) (-3633 (((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))) 15)) (-2160 (((-928) (-570)) 38)) (-2544 (((-570) |#2|) 45)) (-2465 (((-570) |#2|) 21) (((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|) 20)))
-(((-920 |#1| |#2|) (-10 -7 (-15 -2160 ((-928) (-570))) (-15 -2465 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -2465 ((-570) |#2|)) (-15 -3633 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -2544 ((-570) |#2|)) (-15 -1908 (|#2| |#2|))) (-1252 (-413 (-570))) (-1252 (-413 |#1|))) (T -920))
-((-1908 (*1 *2 *2) (-12 (-4 *3 (-1252 (-413 (-570)))) (-5 *1 (-920 *3 *2)) (-4 *2 (-1252 (-413 *3))))) (-2544 (*1 *2 *3) (-12 (-4 *4 (-1252 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1252 (-413 *4))))) (-3633 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))) (-4 *4 (-1252 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *5)) (-4 *5 (-1252 (-413 *4))))) (-2465 (*1 *2 *3) (-12 (-4 *4 (-1252 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1252 (-413 *4))))) (-2465 (*1 *2 *3) (-12 (-4 *3 (-1252 (-413 (-570)))) (-5 *2 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))) (-5 *1 (-920 *3 *4)) (-4 *4 (-1252 (-413 *3))))) (-2160 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-1252 (-413 *3))) (-5 *2 (-928)) (-5 *1 (-920 *4 *5)) (-4 *5 (-1252 (-413 *4))))))
-(-10 -7 (-15 -2160 ((-928) (-570))) (-15 -2465 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -2465 ((-570) |#2|)) (-15 -3633 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -2544 ((-570) |#2|)) (-15 -1908 (|#2| |#2|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 ((|#1| $) 100)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-3413 (((-3 $ "failed") $) 94)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1350 (($ |#1| (-424 |#1|)) 92)) (-3620 (((-1182 |#1|) |#1| |#1|) 53)) (-2820 (($ $) 61)) (-2081 (((-112) $) NIL)) (-1480 (((-570) $) 97)) (-1494 (($ $ (-570)) 99)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3729 ((|#1| $) 96)) (-3709 (((-424 |#1|) $) 95)) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) 93)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3198 (($ $) 50)) (-3735 (((-868) $) 124) (($ (-570)) 73) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 41) (((-413 |#1|) $) 78) (($ (-413 (-424 |#1|))) 86)) (-2744 (((-777)) 71 T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) 26 T CONST)) (-1823 (($) 15 T CONST)) (-2872 (((-112) $ $) 87)) (-2975 (($ $ $) NIL)) (-2965 (($ $) 108) (($ $ $) NIL)) (-2954 (($ $ $) 49)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 110) (($ $ $) 48) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ |#1| $) 109) (($ $ |#1|) NIL)))
-(((-921 |#1|) (-13 (-368) (-38 |#1|) (-10 -8 (-15 -3735 ((-413 |#1|) $)) (-15 -3735 ($ (-413 (-424 |#1|)))) (-15 -3198 ($ $)) (-15 -3709 ((-424 |#1|) $)) (-15 -3729 (|#1| $)) (-15 -1494 ($ $ (-570))) (-15 -1480 ((-570) $)) (-15 -3620 ((-1182 |#1|) |#1| |#1|)) (-15 -2820 ($ $)) (-15 -1350 ($ |#1| (-424 |#1|))) (-15 -3303 (|#1| $)))) (-311)) (T -921))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-413 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-413 (-424 *3))) (-4 *3 (-311)) (-5 *1 (-921 *3)))) (-3198 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-3709 (*1 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3729 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-1494 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-1480 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3620 (*1 *2 *3 *3) (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-2820 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-1350 (*1 *1 *2 *3) (-12 (-5 *3 (-424 *2)) (-4 *2 (-311)) (-5 *1 (-921 *2)))) (-3303 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(-13 (-368) (-38 |#1|) (-10 -8 (-15 -3735 ((-413 |#1|) $)) (-15 -3735 ($ (-413 (-424 |#1|)))) (-15 -3198 ($ $)) (-15 -3709 ((-424 |#1|) $)) (-15 -3729 (|#1| $)) (-15 -1494 ($ $ (-570))) (-15 -1480 ((-570) $)) (-15 -3620 ((-1182 |#1|) |#1| |#1|)) (-15 -2820 ($ $)) (-15 -1350 ($ |#1| (-424 |#1|))) (-15 -3303 (|#1| $))))
-((-1350 (((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)) 17) (((-52) (-413 (-959 |#1|)) (-1186)) 18)))
-(((-922 |#1|) (-10 -7 (-15 -1350 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -1350 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -922))
-((-1350 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-424 (-959 *6))) (-5 *5 (-1186)) (-5 *3 (-959 *6)) (-4 *6 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *6)))) (-1350 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *5)))))
-(-10 -7 (-15 -1350 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -1350 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186))))
-((-3537 ((|#4| (-650 |#4|)) 149) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 86) ((|#4| |#4| |#4|) 148)) (-1874 (((-1182 |#4|) (-650 (-1182 |#4|))) 142) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 63) ((|#4| (-650 |#4|)) 71) ((|#4| |#4| |#4|) 109)))
-(((-923 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1874 (|#4| |#4| |#4|)) (-15 -1874 (|#4| (-650 |#4|))) (-15 -1874 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1874 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -3537 (|#4| |#4| |#4|)) (-15 -3537 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3537 (|#4| (-650 |#4|)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -923))
-((-3537 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *6 *4 *5)) (-5 *1 (-923 *4 *5 *6 *2)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)))) (-3537 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *6)))) (-3537 (*1 *2 *2 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4)))) (-1874 (*1 *2 *3) (-12 (-5 *3 (-650 (-1182 *7))) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-1182 *7)) (-5 *1 (-923 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-1874 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *6)))) (-1874 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *6 *4 *5)) (-5 *1 (-923 *4 *5 *6 *2)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)))) (-1874 (*1 *2 *2 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4)))))
-(-10 -7 (-15 -1874 (|#4| |#4| |#4|)) (-15 -1874 (|#4| (-650 |#4|))) (-15 -1874 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1874 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -3537 (|#4| |#4| |#4|)) (-15 -3537 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3537 (|#4| (-650 |#4|))))
-((-2240 (((-911 (-570)) (-980)) 38) (((-911 (-570)) (-650 (-570))) 35)) (-3117 (((-911 (-570)) (-650 (-570))) 70) (((-911 (-570)) (-928)) 71)) (-2993 (((-911 (-570))) 39)) (-3664 (((-911 (-570))) 55) (((-911 (-570)) (-650 (-570))) 54)) (-3159 (((-911 (-570))) 53) (((-911 (-570)) (-650 (-570))) 52)) (-1531 (((-911 (-570))) 51) (((-911 (-570)) (-650 (-570))) 50)) (-2485 (((-911 (-570))) 49) (((-911 (-570)) (-650 (-570))) 48)) (-1880 (((-911 (-570))) 47) (((-911 (-570)) (-650 (-570))) 46)) (-2798 (((-911 (-570))) 57) (((-911 (-570)) (-650 (-570))) 56)) (-1932 (((-911 (-570)) (-650 (-570))) 75) (((-911 (-570)) (-928)) 77)) (-2868 (((-911 (-570)) (-650 (-570))) 72) (((-911 (-570)) (-928)) 73)) (-3951 (((-911 (-570)) (-650 (-570))) 68) (((-911 (-570)) (-928)) 69)) (-3570 (((-911 (-570)) (-650 (-928))) 60)))
-(((-924) (-10 -7 (-15 -3117 ((-911 (-570)) (-928))) (-15 -3117 ((-911 (-570)) (-650 (-570)))) (-15 -3951 ((-911 (-570)) (-928))) (-15 -3951 ((-911 (-570)) (-650 (-570)))) (-15 -3570 ((-911 (-570)) (-650 (-928)))) (-15 -2868 ((-911 (-570)) (-928))) (-15 -2868 ((-911 (-570)) (-650 (-570)))) (-15 -1932 ((-911 (-570)) (-928))) (-15 -1932 ((-911 (-570)) (-650 (-570)))) (-15 -1880 ((-911 (-570)) (-650 (-570)))) (-15 -1880 ((-911 (-570)))) (-15 -2485 ((-911 (-570)) (-650 (-570)))) (-15 -2485 ((-911 (-570)))) (-15 -1531 ((-911 (-570)) (-650 (-570)))) (-15 -1531 ((-911 (-570)))) (-15 -3159 ((-911 (-570)) (-650 (-570)))) (-15 -3159 ((-911 (-570)))) (-15 -3664 ((-911 (-570)) (-650 (-570)))) (-15 -3664 ((-911 (-570)))) (-15 -2798 ((-911 (-570)) (-650 (-570)))) (-15 -2798 ((-911 (-570)))) (-15 -2993 ((-911 (-570)))) (-15 -2240 ((-911 (-570)) (-650 (-570)))) (-15 -2240 ((-911 (-570)) (-980))))) (T -924))
-((-2240 (*1 *2 *3) (-12 (-5 *3 (-980)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2240 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2993 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2798 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3664 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3664 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3159 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3159 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1531 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1531 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2485 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2485 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1880 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1880 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1932 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1932 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2868 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2868 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3570 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3951 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3951 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3117 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3117 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(-10 -7 (-15 -3117 ((-911 (-570)) (-928))) (-15 -3117 ((-911 (-570)) (-650 (-570)))) (-15 -3951 ((-911 (-570)) (-928))) (-15 -3951 ((-911 (-570)) (-650 (-570)))) (-15 -3570 ((-911 (-570)) (-650 (-928)))) (-15 -2868 ((-911 (-570)) (-928))) (-15 -2868 ((-911 (-570)) (-650 (-570)))) (-15 -1932 ((-911 (-570)) (-928))) (-15 -1932 ((-911 (-570)) (-650 (-570)))) (-15 -1880 ((-911 (-570)) (-650 (-570)))) (-15 -1880 ((-911 (-570)))) (-15 -2485 ((-911 (-570)) (-650 (-570)))) (-15 -2485 ((-911 (-570)))) (-15 -1531 ((-911 (-570)) (-650 (-570)))) (-15 -1531 ((-911 (-570)))) (-15 -3159 ((-911 (-570)) (-650 (-570)))) (-15 -3159 ((-911 (-570)))) (-15 -3664 ((-911 (-570)) (-650 (-570)))) (-15 -3664 ((-911 (-570)))) (-15 -2798 ((-911 (-570)) (-650 (-570)))) (-15 -2798 ((-911 (-570)))) (-15 -2993 ((-911 (-570)))) (-15 -2240 ((-911 (-570)) (-650 (-570)))) (-15 -2240 ((-911 (-570)) (-980))))
-((-4209 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 14)) (-4018 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 13)))
-(((-925 |#1|) (-10 -7 (-15 -4018 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -4209 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))))) (-458)) (T -925))
-((-4209 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))) (-4018 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))))
-(-10 -7 (-15 -4018 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -4209 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))))
+((-4010 (((-3 (-2 (|:| -4331 (-777)) (|:| -1704 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)) 77)) (-1764 (((-112) (-341 |#2| |#3| |#4| |#5|)) 17)) (-4331 (((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|)) 15)))
+(((-918 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4331 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -1764 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -4010 ((-3 (-2 (|:| -4331 (-777)) (|:| -1704 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)))) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -918))
+((-4010 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-2 (|:| -4331 (-777)) (|:| -1704 *8))) (-5 *1 (-918 *4 *5 *6 *7 *8)))) (-1764 (*1 *2 *3) (-12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112)) (-5 *1 (-918 *4 *5 *6 *7 *8)))) (-4331 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-777)) (-5 *1 (-918 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -4331 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -1764 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -4010 ((-3 (-2 (|:| -4331 (-777)) (|:| -1704 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|))))
+((-4010 (((-3 (-2 (|:| -4331 (-777)) (|:| -1704 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 64)) (-1764 (((-112) (-341 (-413 (-570)) |#1| |#2| |#3|)) 16)) (-4331 (((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 14)))
+(((-919 |#1| |#2| |#3|) (-10 -7 (-15 -4331 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -1764 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -4010 ((-3 (-2 (|:| -4331 (-777)) (|:| -1704 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)))) (-1253 (-413 (-570))) (-1253 (-413 |#1|)) (-347 (-413 (-570)) |#1| |#2|)) (T -919))
+((-4010 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6)) (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-2 (|:| -4331 (-777)) (|:| -1704 *6))) (-5 *1 (-919 *4 *5 *6)))) (-1764 (*1 *2 *3) (-12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6)) (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6)))) (-4331 (*1 *2 *3) (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6)) (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-777)) (-5 *1 (-919 *4 *5 *6)))))
+(-10 -7 (-15 -4331 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -1764 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -4010 ((-3 (-2 (|:| -4331 (-777)) (|:| -1704 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))))
+((-3023 ((|#2| |#2|) 26)) (-3205 (((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))) 15)) (-3899 (((-928) (-570)) 38)) (-3385 (((-570) |#2|) 45)) (-3904 (((-570) |#2|) 21) (((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|) 20)))
+(((-920 |#1| |#2|) (-10 -7 (-15 -3899 ((-928) (-570))) (-15 -3904 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -3904 ((-570) |#2|)) (-15 -3205 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -3385 ((-570) |#2|)) (-15 -3023 (|#2| |#2|))) (-1253 (-413 (-570))) (-1253 (-413 |#1|))) (T -920))
+((-3023 (*1 *2 *2) (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *1 (-920 *3 *2)) (-4 *2 (-1253 (-413 *3))))) (-3385 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-3205 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))) (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *5)) (-4 *5 (-1253 (-413 *4))))) (-3904 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-3904 (*1 *2 *3) (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *2 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))) (-5 *1 (-920 *3 *4)) (-4 *4 (-1253 (-413 *3))))) (-3899 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-1253 (-413 *3))) (-5 *2 (-928)) (-5 *1 (-920 *4 *5)) (-4 *5 (-1253 (-413 *4))))))
+(-10 -7 (-15 -3899 ((-928) (-570))) (-15 -3904 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -3904 ((-570) |#2|)) (-15 -3205 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -3385 ((-570) |#2|)) (-15 -3023 (|#2| |#2|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 ((|#1| $) 100)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2372 (($ $ $) NIL)) (-2937 (((-3 $ "failed") $) 94)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-1984 (($ |#1| (-424 |#1|)) 92)) (-3065 (((-1182 |#1|) |#1| |#1|) 53)) (-4212 (($ $) 61)) (-4340 (((-112) $) NIL)) (-1472 (((-570) $) 97)) (-1616 (($ $ (-570)) 99)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2902 ((|#1| $) 96)) (-2728 (((-424 |#1|) $) 95)) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) 93)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-1641 (($ $) 50)) (-3735 (((-868) $) 124) (($ (-570)) 73) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 41) (((-413 |#1|) $) 78) (($ (-413 (-424 |#1|))) 86)) (-1609 (((-777)) 71 T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) 26 T CONST)) (-1824 (($) 15 T CONST)) (-2872 (((-112) $ $) 87)) (-2975 (($ $ $) NIL)) (-2965 (($ $) 108) (($ $ $) NIL)) (-2953 (($ $ $) 49)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 110) (($ $ $) 48) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ |#1| $) 109) (($ $ |#1|) NIL)))
+(((-921 |#1|) (-13 (-368) (-38 |#1|) (-10 -8 (-15 -3735 ((-413 |#1|) $)) (-15 -3735 ($ (-413 (-424 |#1|)))) (-15 -1641 ($ $)) (-15 -2728 ((-424 |#1|) $)) (-15 -2902 (|#1| $)) (-15 -1616 ($ $ (-570))) (-15 -1472 ((-570) $)) (-15 -3065 ((-1182 |#1|) |#1| |#1|)) (-15 -4212 ($ $)) (-15 -1984 ($ |#1| (-424 |#1|))) (-15 -3113 (|#1| $)))) (-311)) (T -921))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-413 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-413 (-424 *3))) (-4 *3 (-311)) (-5 *1 (-921 *3)))) (-1641 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-2728 (*1 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-2902 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-1616 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-1472 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3065 (*1 *2 *3 *3) (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-4212 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-1984 (*1 *1 *2 *3) (-12 (-5 *3 (-424 *2)) (-4 *2 (-311)) (-5 *1 (-921 *2)))) (-3113 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(-13 (-368) (-38 |#1|) (-10 -8 (-15 -3735 ((-413 |#1|) $)) (-15 -3735 ($ (-413 (-424 |#1|)))) (-15 -1641 ($ $)) (-15 -2728 ((-424 |#1|) $)) (-15 -2902 (|#1| $)) (-15 -1616 ($ $ (-570))) (-15 -1472 ((-570) $)) (-15 -3065 ((-1182 |#1|) |#1| |#1|)) (-15 -4212 ($ $)) (-15 -1984 ($ |#1| (-424 |#1|))) (-15 -3113 (|#1| $))))
+((-1984 (((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)) 17) (((-52) (-413 (-959 |#1|)) (-1186)) 18)))
+(((-922 |#1|) (-10 -7 (-15 -1984 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -1984 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -922))
+((-1984 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-424 (-959 *6))) (-5 *5 (-1186)) (-5 *3 (-959 *6)) (-4 *6 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *6)))) (-1984 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *5)))))
+(-10 -7 (-15 -1984 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -1984 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186))))
+((-1691 ((|#4| (-650 |#4|)) 149) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 86) ((|#4| |#4| |#4|) 148)) (-1874 (((-1182 |#4|) (-650 (-1182 |#4|))) 142) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 63) ((|#4| (-650 |#4|)) 71) ((|#4| |#4| |#4|) 109)))
+(((-923 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1874 (|#4| |#4| |#4|)) (-15 -1874 (|#4| (-650 |#4|))) (-15 -1874 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1874 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -1691 (|#4| |#4| |#4|)) (-15 -1691 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1691 (|#4| (-650 |#4|)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -923))
+((-1691 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *6 *4 *5)) (-5 *1 (-923 *4 *5 *6 *2)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)))) (-1691 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *6)))) (-1691 (*1 *2 *2 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4)))) (-1874 (*1 *2 *3) (-12 (-5 *3 (-650 (-1182 *7))) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-1182 *7)) (-5 *1 (-923 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))) (-1874 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *6)))) (-1874 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *6 *4 *5)) (-5 *1 (-923 *4 *5 *6 *2)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)))) (-1874 (*1 *2 *2 *2) (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4)))))
+(-10 -7 (-15 -1874 (|#4| |#4| |#4|)) (-15 -1874 (|#4| (-650 |#4|))) (-15 -1874 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1874 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -1691 (|#4| |#4| |#4|)) (-15 -1691 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1691 (|#4| (-650 |#4|))))
+((-3463 (((-911 (-570)) (-980)) 38) (((-911 (-570)) (-650 (-570))) 35)) (-2046 (((-911 (-570)) (-650 (-570))) 70) (((-911 (-570)) (-928)) 71)) (-3228 (((-911 (-570))) 39)) (-3545 (((-911 (-570))) 55) (((-911 (-570)) (-650 (-570))) 54)) (-4341 (((-911 (-570))) 53) (((-911 (-570)) (-650 (-570))) 52)) (-3815 (((-911 (-570))) 51) (((-911 (-570)) (-650 (-570))) 50)) (-4088 (((-911 (-570))) 49) (((-911 (-570)) (-650 (-570))) 48)) (-4032 (((-911 (-570))) 47) (((-911 (-570)) (-650 (-570))) 46)) (-3965 (((-911 (-570))) 57) (((-911 (-570)) (-650 (-570))) 56)) (-3302 (((-911 (-570)) (-650 (-570))) 75) (((-911 (-570)) (-928)) 77)) (-3402 (((-911 (-570)) (-650 (-570))) 72) (((-911 (-570)) (-928)) 73)) (-3157 (((-911 (-570)) (-650 (-570))) 68) (((-911 (-570)) (-928)) 69)) (-3905 (((-911 (-570)) (-650 (-928))) 60)))
+(((-924) (-10 -7 (-15 -2046 ((-911 (-570)) (-928))) (-15 -2046 ((-911 (-570)) (-650 (-570)))) (-15 -3157 ((-911 (-570)) (-928))) (-15 -3157 ((-911 (-570)) (-650 (-570)))) (-15 -3905 ((-911 (-570)) (-650 (-928)))) (-15 -3402 ((-911 (-570)) (-928))) (-15 -3402 ((-911 (-570)) (-650 (-570)))) (-15 -3302 ((-911 (-570)) (-928))) (-15 -3302 ((-911 (-570)) (-650 (-570)))) (-15 -4032 ((-911 (-570)) (-650 (-570)))) (-15 -4032 ((-911 (-570)))) (-15 -4088 ((-911 (-570)) (-650 (-570)))) (-15 -4088 ((-911 (-570)))) (-15 -3815 ((-911 (-570)) (-650 (-570)))) (-15 -3815 ((-911 (-570)))) (-15 -4341 ((-911 (-570)) (-650 (-570)))) (-15 -4341 ((-911 (-570)))) (-15 -3545 ((-911 (-570)) (-650 (-570)))) (-15 -3545 ((-911 (-570)))) (-15 -3965 ((-911 (-570)) (-650 (-570)))) (-15 -3965 ((-911 (-570)))) (-15 -3228 ((-911 (-570)))) (-15 -3463 ((-911 (-570)) (-650 (-570)))) (-15 -3463 ((-911 (-570)) (-980))))) (T -924))
+((-3463 (*1 *2 *3) (-12 (-5 *3 (-980)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3463 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3228 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3965 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3965 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3545 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3545 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4341 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4341 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3815 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3815 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4088 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4088 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4032 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4032 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3402 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3402 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3905 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3157 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3157 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2046 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2046 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(-10 -7 (-15 -2046 ((-911 (-570)) (-928))) (-15 -2046 ((-911 (-570)) (-650 (-570)))) (-15 -3157 ((-911 (-570)) (-928))) (-15 -3157 ((-911 (-570)) (-650 (-570)))) (-15 -3905 ((-911 (-570)) (-650 (-928)))) (-15 -3402 ((-911 (-570)) (-928))) (-15 -3402 ((-911 (-570)) (-650 (-570)))) (-15 -3302 ((-911 (-570)) (-928))) (-15 -3302 ((-911 (-570)) (-650 (-570)))) (-15 -4032 ((-911 (-570)) (-650 (-570)))) (-15 -4032 ((-911 (-570)))) (-15 -4088 ((-911 (-570)) (-650 (-570)))) (-15 -4088 ((-911 (-570)))) (-15 -3815 ((-911 (-570)) (-650 (-570)))) (-15 -3815 ((-911 (-570)))) (-15 -4341 ((-911 (-570)) (-650 (-570)))) (-15 -4341 ((-911 (-570)))) (-15 -3545 ((-911 (-570)) (-650 (-570)))) (-15 -3545 ((-911 (-570)))) (-15 -3965 ((-911 (-570)) (-650 (-570)))) (-15 -3965 ((-911 (-570)))) (-15 -3228 ((-911 (-570)))) (-15 -3463 ((-911 (-570)) (-650 (-570)))) (-15 -3463 ((-911 (-570)) (-980))))
+((-3971 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 14)) (-2633 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 13)))
+(((-925 |#1|) (-10 -7 (-15 -2633 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -3971 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))))) (-458)) (T -925))
+((-3971 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))) (-2633 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))))
+(-10 -7 (-15 -2633 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -3971 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))))
((-3735 (((-320 |#1|) (-483)) 16)))
(((-926 |#1|) (-10 -7 (-15 -3735 ((-320 |#1|) (-483)))) (-562)) (T -926))
((-3735 (*1 *2 *3) (-12 (-5 *3 (-483)) (-5 *2 (-320 *4)) (-5 *1 (-926 *4)) (-4 *4 (-562)))))
(-10 -7 (-15 -3735 ((-320 |#1|) (-483))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-2081 (((-112) $) 35)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4340 (((-112) $) 35)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-927) (-141)) (T -927))
-((-3984 (*1 *2 *3) (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1441 (-650 *1)) (|:| -2339 *1))) (-5 *3 (-650 *1)))) (-1906 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
-(-13 (-458) (-10 -8 (-15 -3984 ((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $))) (-15 -1906 ((-3 (-650 $) "failed") (-650 $) $))))
+((-3561 (*1 *2 *3) (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1442 (-650 *1)) (|:| -2340 *1))) (-5 *3 (-650 *1)))) (-3003 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
+(-13 (-458) (-10 -8 (-15 -3561 ((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $))) (-15 -3003 ((-3 (-650 $) "failed") (-650 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1874 (($ $ $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1823 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ $ $) NIL)))
-(((-928) (-13 (-800) (-732) (-10 -8 (-15 -1874 ($ $ $)) (-6 (-4450 "*"))))) (T -928))
+((-2417 (((-112) $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1874 (($ $ $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1824 (($) NIL T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ $ $) NIL)))
+(((-928) (-13 (-800) (-732) (-10 -8 (-15 -1874 ($ $ $)) (-6 (-4451 "*"))))) (T -928))
((-1874 (*1 *1 *1 *1) (-5 *1 (-928))))
-(-13 (-800) (-732) (-10 -8 (-15 -1874 ($ $ $)) (-6 (-4450 "*"))))
+(-13 (-800) (-732) (-10 -8 (-15 -1874 ($ $ $)) (-6 (-4451 "*"))))
((|NonNegativeInteger|) (> |#1| 0))
-((-1448 ((|#2| (-650 |#1|) (-650 |#1|)) 29)))
-(((-929 |#1| |#2|) (-10 -7 (-15 -1448 (|#2| (-650 |#1|) (-650 |#1|)))) (-368) (-1252 |#1|)) (T -929))
-((-1448 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1252 *4)) (-5 *1 (-929 *4 *2)))))
-(-10 -7 (-15 -1448 (|#2| (-650 |#1|) (-650 |#1|))))
-((-2262 (((-1182 |#2|) (-650 |#2|) (-650 |#2|)) 17) (((-1249 |#1| |#2|) (-1249 |#1| |#2|) (-650 |#2|) (-650 |#2|)) 13)))
-(((-930 |#1| |#2|) (-10 -7 (-15 -2262 ((-1249 |#1| |#2|) (-1249 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -2262 ((-1182 |#2|) (-650 |#2|) (-650 |#2|)))) (-1186) (-368)) (T -930))
-((-2262 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-368)) (-5 *2 (-1182 *5)) (-5 *1 (-930 *4 *5)) (-14 *4 (-1186)))) (-2262 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1249 *4 *5)) (-5 *3 (-650 *5)) (-14 *4 (-1186)) (-4 *5 (-368)) (-5 *1 (-930 *4 *5)))))
-(-10 -7 (-15 -2262 ((-1249 |#1| |#2|) (-1249 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -2262 ((-1182 |#2|) (-650 |#2|) (-650 |#2|))))
-((-3719 (((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-1168)) 177)) (-3287 ((|#4| |#4|) 196)) (-4359 (((-650 (-413 (-959 |#1|))) (-650 (-1186))) 149)) (-1574 (((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-650 (-650 |#4|)) (-777) (-777) (-570)) 88)) (-2458 (((-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-650 |#4|)) 69)) (-4374 (((-695 |#4|) (-695 |#4|) (-650 |#4|)) 65)) (-1373 (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-1168)) 189)) (-2727 (((-570) (-695 |#4|) (-928) (-1168)) 169) (((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168)) 168) (((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168)) 167) (((-570) (-695 |#4|) (-1168)) 157) (((-570) (-695 |#4|) (-650 (-1186)) (-1168)) 156) (((-570) (-695 |#4|) (-650 |#4|) (-1168)) 155) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928)) 154) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928)) 153) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928)) 152) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|)) 151) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186))) 150) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|)) 146)) (-3405 ((|#4| (-959 |#1|)) 80)) (-3772 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 193)) (-3828 (((-650 (-650 (-570))) (-570) (-570)) 162)) (-1982 (((-650 (-650 |#4|)) (-650 (-650 |#4|))) 107)) (-2102 (((-777) (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 102)) (-3899 (((-777) (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 101)) (-1578 (((-112) (-650 (-959 |#1|))) 19) (((-112) (-650 |#4|)) 15)) (-2834 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|)) 84)) (-4345 (((-650 |#4|) |#4|) 57)) (-2005 (((-650 (-413 (-959 |#1|))) (-650 |#4|)) 145) (((-695 (-413 (-959 |#1|))) (-695 |#4|)) 66) (((-413 (-959 |#1|)) |#4|) 142)) (-1964 (((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570)) 113)) (-2775 (((-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777)) 100)) (-1910 (((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777)) 124)) (-3636 (((-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-2 (|:| -3442 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -3934 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) 56)))
-(((-931 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -2727 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -3719 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-1168))) (-15 -1373 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-1168))) (-15 -1964 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -2005 ((-413 (-959 |#1|)) |#4|)) (-15 -2005 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -2005 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -4359 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3405 (|#4| (-959 |#1|))) (-15 -2834 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -2775 ((-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -2458 ((-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -3636 ((-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-2 (|:| -3442 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -3934 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -4345 ((-650 |#4|) |#4|)) (-15 -3899 ((-777) (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -2102 ((-777) (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -1982 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -3828 ((-650 (-650 (-570))) (-570) (-570))) (-15 -3772 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -1910 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -4374 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -1574 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-650 (-650 |#4|)) (-777) (-777) (-570))) (-15 -3287 (|#4| |#4|)) (-15 -1578 ((-112) (-650 |#4|))) (-15 -1578 ((-112) (-650 (-959 |#1|))))) (-13 (-311) (-148)) (-13 (-856) (-620 (-1186))) (-799) (-956 |#1| |#3| |#2|)) (T -931))
-((-1578 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-1578 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *4 *5 *6 *7)))) (-3287 (*1 *2 *2) (-12 (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186)))) (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *2)) (-4 *2 (-956 *3 *5 *4)))) (-1574 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-5 *4 (-695 *12)) (-5 *5 (-650 (-413 (-959 *9)))) (-5 *6 (-650 (-650 *12))) (-5 *7 (-777)) (-5 *8 (-570)) (-4 *9 (-13 (-311) (-148))) (-4 *12 (-956 *9 *11 *10)) (-4 *10 (-13 (-856) (-620 (-1186)))) (-4 *11 (-799)) (-5 *2 (-2 (|:| |eqzro| (-650 *12)) (|:| |neqzro| (-650 *12)) (|:| |wcond| (-650 (-959 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *9)))) (|:| -2331 (-650 (-1276 (-413 (-959 *9))))))))) (-5 *1 (-931 *9 *10 *11 *12)))) (-4374 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *7)) (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))) (-1910 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-777)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |det| *8) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-3772 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *5 *6 *7 *8)))) (-3828 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-650 (-570)))) (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *6 *5)))) (-1982 (*1 *2 *2) (-12 (-5 *2 (-650 (-650 *6))) (-4 *6 (-956 *3 *5 *4)) (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186)))) (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *6)))) (-2102 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| *7) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 *7))))) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777)) (-5 *1 (-931 *4 *5 *6 *7)))) (-3899 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| *7) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 *7))))) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777)) (-5 *1 (-931 *4 *5 *6 *7)))) (-4345 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 *3)) (-5 *1 (-931 *4 *5 *6 *3)) (-4 *3 (-956 *4 *6 *5)))) (-3636 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3442 (-695 (-413 (-959 *4)))) (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -3934 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-2 (|:| |partsol| (-1276 (-413 (-959 *4)))) (|:| -2331 (-650 (-1276 (-413 (-959 *4))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-2458 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1276 (-413 (-959 *4)))) (|:| -2331 (-650 (-1276 (-413 (-959 *4))))))) (-5 *3 (-650 *7)) (-4 *4 (-13 (-311) (-148))) (-4 *7 (-956 *4 *6 *5)) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))) (-2775 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| *8) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 *8))))) (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-777)))) (-2834 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-4 *7 (-956 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-650 *7)) (|:| |n0| (-650 *7)))) (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-3405 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-311) (-148))) (-4 *2 (-956 *4 *6 *5)) (-5 *1 (-931 *4 *5 *6 *2)) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)))) (-4359 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-2005 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7)))) (-2005 (*1 *2 *3) (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-695 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7)))) (-2005 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-413 (-959 *4))) (-5 *1 (-931 *4 *5 *6 *3)) (-4 *3 (-956 *4 *6 *5)))) (-1964 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-695 *11)) (-5 *4 (-650 (-413 (-959 *8)))) (-5 *5 (-777)) (-5 *6 (-1168)) (-4 *8 (-13 (-311) (-148))) (-4 *11 (-956 *8 *10 *9)) (-4 *9 (-13 (-856) (-620 (-1186)))) (-4 *10 (-799)) (-5 *2 (-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 *11)) (|:| |neqzro| (-650 *11)) (|:| |wcond| (-650 (-959 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *8)))) (|:| -2331 (-650 (-1276 (-413 (-959 *8)))))))))) (|:| |rgsz| (-570)))) (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))) (-1373 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7)) (|:| |wcond| (-650 (-959 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *4)))) (|:| -2331 (-650 (-1276 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-3719 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *5)))) (|:| -2331 (-650 (-1276 (-413 (-959 *5)))))))))) (-5 *4 (-1168)) (-4 *5 (-13 (-311) (-148))) (-4 *8 (-956 *5 *7 *6)) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *5 *6 *7 *8)))) (-2727 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-928)) (-5 *5 (-1168)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *6 *7 *8 *9)))) (-2727 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 (-1186))) (-5 *5 (-928)) (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148))) (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *7 *8 *9 *10)))) (-2727 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 *10)) (-5 *5 (-928)) (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148))) (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *7 *8 *9 *10)))) (-2727 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-1168)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *5 *6 *7 *8)))) (-2727 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-1168)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *6 *7 *8 *9)))) (-2727 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 *9)) (-5 *5 (-1168)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *6 *7 *8 *9)))) (-2727 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-928)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *5)))) (|:| -2331 (-650 (-1276 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-2727 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-928)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9)) (|:| |wcond| (-650 (-959 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *6)))) (|:| -2331 (-650 (-1276 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)))) (-2727 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *5 (-928)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9)) (|:| |wcond| (-650 (-959 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *6)))) (|:| -2331 (-650 (-1276 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)) (-5 *4 (-650 *9)))) (-2727 (*1 *2 *3) (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7)) (|:| |wcond| (-650 (-959 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *4)))) (|:| -2331 (-650 (-1276 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)))) (-2727 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-650 (-1186))) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *5)))) (|:| -2331 (-650 (-1276 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-2727 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 *5)))) (|:| -2331 (-650 (-1276 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
-(-10 -7 (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -2727 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -2727 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -2727 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -3719 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-1168))) (-15 -1373 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|))))))))) (-1168))) (-15 -1964 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -2005 ((-413 (-959 |#1|)) |#4|)) (-15 -2005 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -2005 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -4359 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3405 (|#4| (-959 |#1|))) (-15 -2834 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -2775 ((-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -2458 ((-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -3636 ((-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))) (-2 (|:| -3442 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -3934 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -4345 ((-650 |#4|) |#4|)) (-15 -3899 ((-777) (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -2102 ((-777) (-650 (-2 (|:| -3934 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -1982 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -3828 ((-650 (-650 (-570))) (-570) (-570))) (-15 -3772 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -1910 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -4374 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -1574 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1276 (-413 (-959 |#1|)))) (|:| -2331 (-650 (-1276 (-413 (-959 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-650 (-650 |#4|)) (-777) (-777) (-570))) (-15 -3287 (|#4| |#4|)) (-15 -1578 ((-112) (-650 |#4|))) (-15 -1578 ((-112) (-650 (-959 |#1|)))))
-((-1853 (((-934) |#1| (-1186)) 17) (((-934) |#1| (-1186) (-1103 (-227))) 21)) (-3365 (((-934) |#1| |#1| (-1186) (-1103 (-227))) 19) (((-934) |#1| (-1186) (-1103 (-227))) 15)))
-(((-932 |#1|) (-10 -7 (-15 -3365 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -3365 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -1853 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -1853 ((-934) |#1| (-1186)))) (-620 (-542))) (T -932))
-((-1853 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-1853 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-3365 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-3365 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))))
-(-10 -7 (-15 -3365 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -3365 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -1853 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -1853 ((-934) |#1| (-1186))))
-((-2435 (($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 123)) (-3763 (((-1103 (-227)) $) 64)) (-3752 (((-1103 (-227)) $) 63)) (-3737 (((-1103 (-227)) $) 62)) (-3972 (((-650 (-650 (-227))) $) 69)) (-4366 (((-1103 (-227)) $) 65)) (-3477 (((-570) (-570)) 57)) (-3501 (((-570) (-570)) 52)) (-3085 (((-570) (-570)) 55)) (-2126 (((-112) (-112)) 59)) (-1546 (((-570)) 56)) (-2018 (($ $ (-1103 (-227))) 126) (($ $) 127)) (-1648 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 133) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 134)) (-3365 (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 136) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 137) (($ $ (-1103 (-227))) 129)) (-3180 (((-570)) 60)) (-1820 (((-570)) 50)) (-4159 (((-570)) 53)) (-4027 (((-650 (-650 (-950 (-227)))) $) 153)) (-2714 (((-112) (-112)) 61)) (-3735 (((-868) $) 151)) (-4356 (((-112)) 58)))
-(((-933) (-13 (-983) (-10 -8 (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ $ (-1103 (-227)))) (-15 -2435 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2018 ($ $ (-1103 (-227)))) (-15 -2018 ($ $)) (-15 -4366 ((-1103 (-227)) $)) (-15 -3972 ((-650 (-650 (-227))) $)) (-15 -1820 ((-570))) (-15 -3501 ((-570) (-570))) (-15 -4159 ((-570))) (-15 -3085 ((-570) (-570))) (-15 -1546 ((-570))) (-15 -3477 ((-570) (-570))) (-15 -4356 ((-112))) (-15 -2126 ((-112) (-112))) (-15 -3180 ((-570))) (-15 -2714 ((-112) (-112)))))) (T -933))
-((-1648 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-1648 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-3365 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-3365 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-3365 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-2435 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-2018 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-2018 (*1 *1 *1) (-5 *1 (-933))) (-4366 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-3972 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))) (-1820 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3501 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-4159 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3085 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1546 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3477 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-4356 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-2126 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-3180 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2714 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
-(-13 (-983) (-10 -8 (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ $ (-1103 (-227)))) (-15 -2435 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2018 ($ $ (-1103 (-227)))) (-15 -2018 ($ $)) (-15 -4366 ((-1103 (-227)) $)) (-15 -3972 ((-650 (-650 (-227))) $)) (-15 -1820 ((-570))) (-15 -3501 ((-570) (-570))) (-15 -4159 ((-570))) (-15 -3085 ((-570) (-570))) (-15 -1546 ((-570))) (-15 -3477 ((-570) (-570))) (-15 -4356 ((-112))) (-15 -2126 ((-112) (-112))) (-15 -3180 ((-570))) (-15 -2714 ((-112) (-112)))))
-((-2435 (($ $ (-1103 (-227))) 124) (($ $ (-1103 (-227)) (-1103 (-227))) 125)) (-3752 (((-1103 (-227)) $) 73)) (-3737 (((-1103 (-227)) $) 72)) (-4366 (((-1103 (-227)) $) 74)) (-2158 (((-570) (-570)) 66)) (-1682 (((-570) (-570)) 61)) (-2342 (((-570) (-570)) 64)) (-2827 (((-112) (-112)) 68)) (-1693 (((-570)) 65)) (-2018 (($ $ (-1103 (-227))) 128) (($ $) 129)) (-1648 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 143) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 144)) (-1853 (($ (-1 (-227) (-227)) (-1103 (-227))) 151) (($ (-1 (-227) (-227))) 155)) (-3365 (($ (-1 (-227) (-227)) (-1103 (-227))) 139) (($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227))) 140) (($ (-650 (-1 (-227) (-227))) (-1103 (-227))) 148) (($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227))) 149) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 141) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 142) (($ $ (-1103 (-227))) 130)) (-3685 (((-112) $) 69)) (-1572 (((-570)) 70)) (-2113 (((-570)) 59)) (-2295 (((-570)) 62)) (-4027 (((-650 (-650 (-950 (-227)))) $) 35)) (-2780 (((-112) (-112)) 71)) (-3735 (((-868) $) 169)) (-2829 (((-112)) 67)))
-(((-934) (-13 (-962) (-10 -8 (-15 -3365 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -3365 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1853 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1853 ($ (-1 (-227) (-227)))) (-15 -3365 ($ $ (-1103 (-227)))) (-15 -3685 ((-112) $)) (-15 -2435 ($ $ (-1103 (-227)))) (-15 -2435 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -2018 ($ $ (-1103 (-227)))) (-15 -2018 ($ $)) (-15 -4366 ((-1103 (-227)) $)) (-15 -2113 ((-570))) (-15 -1682 ((-570) (-570))) (-15 -2295 ((-570))) (-15 -2342 ((-570) (-570))) (-15 -1693 ((-570))) (-15 -2158 ((-570) (-570))) (-15 -2829 ((-112))) (-15 -2827 ((-112) (-112))) (-15 -1572 ((-570))) (-15 -2780 ((-112) (-112)))))) (T -934))
-((-3365 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3365 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3365 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3365 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3365 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3365 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1648 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1648 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1853 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1853 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-934)))) (-3365 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-3685 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-2435 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2435 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2018 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2018 (*1 *1 *1) (-5 *1 (-934))) (-4366 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2113 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-1682 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2295 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2342 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-1693 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2158 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2829 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-2827 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-1572 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2780 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(-13 (-962) (-10 -8 (-15 -3365 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -3365 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3365 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1648 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1853 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1853 ($ (-1 (-227) (-227)))) (-15 -3365 ($ $ (-1103 (-227)))) (-15 -3685 ((-112) $)) (-15 -2435 ($ $ (-1103 (-227)))) (-15 -2435 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -2018 ($ $ (-1103 (-227)))) (-15 -2018 ($ $)) (-15 -4366 ((-1103 (-227)) $)) (-15 -2113 ((-570))) (-15 -1682 ((-570) (-570))) (-15 -2295 ((-570))) (-15 -2342 ((-570) (-570))) (-15 -1693 ((-570))) (-15 -2158 ((-570) (-570))) (-15 -2829 ((-112))) (-15 -2827 ((-112) (-112))) (-15 -1572 ((-570))) (-15 -2780 ((-112) (-112)))))
-((-1767 (((-650 (-1103 (-227))) (-650 (-650 (-950 (-227))))) 34)))
-(((-935) (-10 -7 (-15 -1767 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))) (T -935))
-((-1767 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
-(-10 -7 (-15 -1767 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))
-((-3504 ((|#2| |#2|) 28)) (-4180 ((|#2| |#2|) 29)) (-3640 ((|#2| |#2|) 27)) (-3592 ((|#2| |#2| (-512)) 26)))
-(((-936 |#1| |#2|) (-10 -7 (-15 -3592 (|#2| |#2| (-512))) (-15 -3640 (|#2| |#2|)) (-15 -3504 (|#2| |#2|)) (-15 -4180 (|#2| |#2|))) (-1109) (-436 |#1|)) (T -936))
-((-4180 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3504 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3640 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3592 (*1 *2 *2 *3) (-12 (-5 *3 (-512)) (-4 *4 (-1109)) (-5 *1 (-936 *4 *2)) (-4 *2 (-436 *4)))))
-(-10 -7 (-15 -3592 (|#2| |#2| (-512))) (-15 -3640 (|#2| |#2|)) (-15 -3504 (|#2| |#2|)) (-15 -4180 (|#2| |#2|)))
-((-3504 (((-320 (-570)) (-1186)) 16)) (-4180 (((-320 (-570)) (-1186)) 14)) (-3640 (((-320 (-570)) (-1186)) 12)) (-3592 (((-320 (-570)) (-1186) (-512)) 19)))
-(((-937) (-10 -7 (-15 -3592 ((-320 (-570)) (-1186) (-512))) (-15 -3640 ((-320 (-570)) (-1186))) (-15 -3504 ((-320 (-570)) (-1186))) (-15 -4180 ((-320 (-570)) (-1186))))) (T -937))
-((-4180 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3640 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3592 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-512)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))))
-(-10 -7 (-15 -3592 ((-320 (-570)) (-1186) (-512))) (-15 -3640 ((-320 (-570)) (-1186))) (-15 -3504 ((-320 (-570)) (-1186))) (-15 -4180 ((-320 (-570)) (-1186))))
-((-2822 (((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)) 25)) (-1720 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
-(((-938 |#1| |#2| |#3|) (-10 -7 (-15 -1720 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2822 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-893 |#1|) (-13 (-1109) (-1047 |#2|))) (T -938))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-13 (-1109) (-1047 *3))) (-4 *3 (-893 *5)) (-5 *1 (-938 *5 *3 *6)))) (-1720 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1109) (-1047 *5))) (-4 *5 (-893 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-938 *4 *5 *6)))))
-(-10 -7 (-15 -1720 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2822 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|))))
-((-2822 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 30)))
-(((-939 |#1| |#2| |#3|) (-10 -7 (-15 -2822 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-13 (-562) (-893 |#1|)) (-13 (-436 |#2|) (-620 (-899 |#1|)) (-893 |#1|) (-1047 (-618 $)))) (T -939))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-13 (-436 *6) (-620 *4) (-893 *5) (-1047 (-618 $)))) (-5 *4 (-899 *5)) (-4 *6 (-13 (-562) (-893 *5))) (-5 *1 (-939 *5 *6 *3)))))
-(-10 -7 (-15 -2822 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
-((-2822 (((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)) 13)))
-(((-940 |#1|) (-10 -7 (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)))) (-551)) (T -940))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 (-570) *3)) (-5 *4 (-899 (-570))) (-4 *3 (-551)) (-5 *1 (-940 *3)))))
-(-10 -7 (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))))
-((-2822 (((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)) 57)))
-(((-941 |#1| |#2|) (-10 -7 (-15 -2822 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)))) (-1109) (-13 (-1109) (-1047 (-618 $)) (-620 (-899 |#1|)) (-893 |#1|))) (T -941))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *6)) (-5 *3 (-618 *6)) (-4 *5 (-1109)) (-4 *6 (-13 (-1109) (-1047 (-618 $)) (-620 *4) (-893 *5))) (-5 *4 (-899 *5)) (-5 *1 (-941 *5 *6)))))
-(-10 -7 (-15 -2822 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|))))
-((-2822 (((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)) 17)))
-(((-942 |#1| |#2| |#3|) (-10 -7 (-15 -2822 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)))) (-1109) (-893 |#1|) (-672 |#2|)) (T -942))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-892 *5 *6 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-893 *5)) (-4 *3 (-672 *6)) (-5 *1 (-942 *5 *6 *3)))))
-(-10 -7 (-15 -2822 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|))))
-((-2822 (((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|)) 17 (|has| |#3| (-893 |#1|))) (((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|) (-1 (-896 |#1| |#5|) |#3| (-899 |#1|) (-896 |#1| |#5|))) 16)))
-(((-943 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2822 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|) (-1 (-896 |#1| |#5|) |#3| (-899 |#1|) (-896 |#1| |#5|)))) (IF (|has| |#3| (-893 |#1|)) (-15 -2822 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|))) |%noBranch|)) (-1109) (-799) (-856) (-13 (-1058) (-893 |#1|)) (-13 (-956 |#4| |#2| |#3|) (-620 (-899 |#1|)))) (T -943))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-13 (-956 *8 *6 *7) (-620 *4))) (-5 *4 (-899 *5)) (-4 *7 (-893 *5)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-13 (-1058) (-893 *5))) (-5 *1 (-943 *5 *6 *7 *8 *3)))) (-2822 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-896 *6 *3) *8 (-899 *6) (-896 *6 *3))) (-4 *8 (-856)) (-5 *2 (-896 *6 *3)) (-5 *4 (-899 *6)) (-4 *6 (-1109)) (-4 *3 (-13 (-956 *9 *7 *8) (-620 *4))) (-4 *7 (-799)) (-4 *9 (-13 (-1058) (-893 *6))) (-5 *1 (-943 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -2822 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|) (-1 (-896 |#1| |#5|) |#3| (-899 |#1|) (-896 |#1| |#5|)))) (IF (|has| |#3| (-893 |#1|)) (-15 -2822 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|))) |%noBranch|))
-((-4259 ((|#2| |#2| (-650 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
-(((-944 |#1| |#2| |#3|) (-10 -7 (-15 -4259 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4259 (|#2| |#2| (-650 (-1 (-112) |#3|))))) (-1109) (-436 |#1|) (-1226)) (T -944))
-((-4259 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-1 (-112) *5))) (-4 *5 (-1226)) (-4 *4 (-1109)) (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4)))) (-4259 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1226)) (-4 *4 (-1109)) (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4)))))
-(-10 -7 (-15 -4259 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4259 (|#2| |#2| (-650 (-1 (-112) |#3|)))))
-((-4259 (((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))) 18) (((-320 (-570)) (-1186) (-1 (-112) |#1|)) 15)))
-(((-945 |#1|) (-10 -7 (-15 -4259 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4259 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))))) (-1226)) (T -945))
-((-4259 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-650 (-1 (-112) *5))) (-4 *5 (-1226)) (-5 *2 (-320 (-570))) (-5 *1 (-945 *5)))) (-4259 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1226)) (-5 *2 (-320 (-570))) (-5 *1 (-945 *5)))))
-(-10 -7 (-15 -4259 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4259 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|)))))
-((-2822 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 25)))
-(((-946 |#1| |#2| |#3|) (-10 -7 (-15 -2822 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-13 (-562) (-893 |#1|) (-620 (-899 |#1|))) (-1001 |#2|)) (T -946))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-1001 *6)) (-4 *6 (-13 (-562) (-893 *5) (-620 *4))) (-5 *4 (-899 *5)) (-5 *1 (-946 *5 *6 *3)))))
-(-10 -7 (-15 -2822 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
-((-2822 (((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))) 18)))
-(((-947 |#1|) (-10 -7 (-15 -2822 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))))) (-1109)) (T -947))
-((-2822 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 (-1186))) (-5 *3 (-1186)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *1 (-947 *5)))))
-(-10 -7 (-15 -2822 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186)))))
-((-3242 (((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) 34)) (-2822 (((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-1 |#3| (-650 |#3|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) 33)))
-(((-948 |#1| |#2| |#3|) (-10 -7 (-15 -2822 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-1 |#3| (-650 |#3|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-15 -3242 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))) (-1109) (-1058) (-13 (-1058) (-620 (-899 |#1|)) (-1047 |#2|))) (T -948))
-((-3242 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-899 *6))) (-5 *5 (-1 (-896 *6 *8) *8 (-899 *6) (-896 *6 *8))) (-4 *6 (-1109)) (-4 *8 (-13 (-1058) (-620 (-899 *6)) (-1047 *7))) (-5 *2 (-896 *6 *8)) (-4 *7 (-1058)) (-5 *1 (-948 *6 *7 *8)))) (-2822 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-650 (-899 *7))) (-5 *5 (-1 *9 (-650 *9))) (-5 *6 (-1 (-896 *7 *9) *9 (-899 *7) (-896 *7 *9))) (-4 *7 (-1109)) (-4 *9 (-13 (-1058) (-620 (-899 *7)) (-1047 *8))) (-5 *2 (-896 *7 *9)) (-5 *3 (-650 *9)) (-4 *8 (-1058)) (-5 *1 (-948 *7 *8 *9)))))
-(-10 -7 (-15 -2822 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-1 |#3| (-650 |#3|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-15 -3242 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))))
-((-3199 (((-1182 (-413 (-570))) (-570)) 81)) (-2900 (((-1182 (-570)) (-570)) 84)) (-3681 (((-1182 (-570)) (-570)) 78)) (-1793 (((-570) (-1182 (-570))) 74)) (-2032 (((-1182 (-413 (-570))) (-570)) 65)) (-4346 (((-1182 (-570)) (-570)) 49)) (-1762 (((-1182 (-570)) (-570)) 86)) (-2713 (((-1182 (-570)) (-570)) 85)) (-2193 (((-1182 (-413 (-570))) (-570)) 67)))
-(((-949) (-10 -7 (-15 -2193 ((-1182 (-413 (-570))) (-570))) (-15 -2713 ((-1182 (-570)) (-570))) (-15 -1762 ((-1182 (-570)) (-570))) (-15 -4346 ((-1182 (-570)) (-570))) (-15 -2032 ((-1182 (-413 (-570))) (-570))) (-15 -1793 ((-570) (-1182 (-570)))) (-15 -3681 ((-1182 (-570)) (-570))) (-15 -2900 ((-1182 (-570)) (-570))) (-15 -3199 ((-1182 (-413 (-570))) (-570))))) (T -949))
-((-3199 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2900 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-3681 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-1793 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))) (-2032 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-4346 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-1762 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2713 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2193 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(-10 -7 (-15 -2193 ((-1182 (-413 (-570))) (-570))) (-15 -2713 ((-1182 (-570)) (-570))) (-15 -1762 ((-1182 (-570)) (-570))) (-15 -4346 ((-1182 (-570)) (-570))) (-15 -2032 ((-1182 (-413 (-570))) (-570))) (-15 -1793 ((-570) (-1182 (-570)))) (-15 -3681 ((-1182 (-570)) (-570))) (-15 -2900 ((-1182 (-570)) (-570))) (-15 -3199 ((-1182 (-413 (-570))) (-570))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777)) NIL (|has| |#1| (-23)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3214 (($ (-650 |#1|)) 9)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-1374 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2645 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3452 (((-112) $ (-777)) NIL)) (-3788 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1558 (($ $ (-650 |#1|)) 25)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 18) (($ $ (-1243 (-570))) NIL)) (-2809 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-2184 (((-928) $) 13)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-2319 (($ $ $) 23)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 14)) (-3748 (($ (-650 |#1|)) NIL)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 24) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2954 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2426 (((-777) $) 11 (|has| $ (-6 -4448)))))
+((-1591 ((|#2| (-650 |#1|) (-650 |#1|)) 29)))
+(((-929 |#1| |#2|) (-10 -7 (-15 -1591 (|#2| (-650 |#1|) (-650 |#1|)))) (-368) (-1253 |#1|)) (T -929))
+((-1591 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1253 *4)) (-5 *1 (-929 *4 *2)))))
+(-10 -7 (-15 -1591 (|#2| (-650 |#1|) (-650 |#1|))))
+((-2456 (((-1182 |#2|) (-650 |#2|) (-650 |#2|)) 17) (((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|)) 13)))
+(((-930 |#1| |#2|) (-10 -7 (-15 -2456 ((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -2456 ((-1182 |#2|) (-650 |#2|) (-650 |#2|)))) (-1186) (-368)) (T -930))
+((-2456 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-368)) (-5 *2 (-1182 *5)) (-5 *1 (-930 *4 *5)) (-14 *4 (-1186)))) (-2456 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1250 *4 *5)) (-5 *3 (-650 *5)) (-14 *4 (-1186)) (-4 *5 (-368)) (-5 *1 (-930 *4 *5)))))
+(-10 -7 (-15 -2456 ((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -2456 ((-1182 |#2|) (-650 |#2|) (-650 |#2|))))
+((-2811 (((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168)) 177)) (-4288 ((|#4| |#4|) 196)) (-2882 (((-650 (-413 (-959 |#1|))) (-650 (-1186))) 149)) (-2976 (((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-650 (-650 |#4|)) (-777) (-777) (-570)) 88)) (-3835 (((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|)) 69)) (-3027 (((-695 |#4|) (-695 |#4|) (-650 |#4|)) 65)) (-2713 (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168)) 189)) (-1454 (((-570) (-695 |#4|) (-928) (-1168)) 169) (((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168)) 168) (((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168)) 167) (((-570) (-695 |#4|) (-1168)) 157) (((-570) (-695 |#4|) (-650 (-1186)) (-1168)) 156) (((-570) (-695 |#4|) (-650 |#4|) (-1168)) 155) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928)) 154) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928)) 153) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928)) 152) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|)) 151) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186))) 150) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|)) 146)) (-2864 ((|#4| (-959 |#1|)) 80)) (-2098 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 193)) (-1374 (((-650 (-650 (-570))) (-570) (-570)) 162)) (-2592 (((-650 (-650 |#4|)) (-650 (-650 |#4|))) 107)) (-1451 (((-777) (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 102)) (-3944 (((-777) (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 101)) (-3017 (((-112) (-650 (-959 |#1|))) 19) (((-112) (-650 |#4|)) 15)) (-4365 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|)) 84)) (-2772 (((-650 |#4|) |#4|) 57)) (-2827 (((-650 (-413 (-959 |#1|))) (-650 |#4|)) 145) (((-695 (-413 (-959 |#1|))) (-695 |#4|)) 66) (((-413 (-959 |#1|)) |#4|) 142)) (-2431 (((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570)) 113)) (-1910 (((-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777)) 100)) (-3044 (((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777)) 124)) (-3244 (((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2042 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -3933 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) 56)))
+(((-931 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -1454 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -2811 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2713 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2431 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -2827 ((-413 (-959 |#1|)) |#4|)) (-15 -2827 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -2827 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -2882 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2864 (|#4| (-959 |#1|))) (-15 -4365 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -1910 ((-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -3835 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -3244 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2042 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -3933 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -2772 ((-650 |#4|) |#4|)) (-15 -3944 ((-777) (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -1451 ((-777) (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -2592 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -1374 ((-650 (-650 (-570))) (-570) (-570))) (-15 -2098 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -3044 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -3027 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -2976 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-650 (-650 |#4|)) (-777) (-777) (-570))) (-15 -4288 (|#4| |#4|)) (-15 -3017 ((-112) (-650 |#4|))) (-15 -3017 ((-112) (-650 (-959 |#1|))))) (-13 (-311) (-148)) (-13 (-856) (-620 (-1186))) (-799) (-956 |#1| |#3| |#2|)) (T -931))
+((-3017 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-3017 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *4 *5 *6 *7)))) (-4288 (*1 *2 *2) (-12 (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186)))) (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *2)) (-4 *2 (-956 *3 *5 *4)))) (-2976 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-5 *4 (-695 *12)) (-5 *5 (-650 (-413 (-959 *9)))) (-5 *6 (-650 (-650 *12))) (-5 *7 (-777)) (-5 *8 (-570)) (-4 *9 (-13 (-311) (-148))) (-4 *12 (-956 *9 *11 *10)) (-4 *10 (-13 (-856) (-620 (-1186)))) (-4 *11 (-799)) (-5 *2 (-2 (|:| |eqzro| (-650 *12)) (|:| |neqzro| (-650 *12)) (|:| |wcond| (-650 (-959 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *9)))) (|:| -2003 (-650 (-1277 (-413 (-959 *9))))))))) (-5 *1 (-931 *9 *10 *11 *12)))) (-3027 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *7)) (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))) (-3044 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-777)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |det| *8) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-2098 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *5 *6 *7 *8)))) (-1374 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-650 (-570)))) (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *6 *5)))) (-2592 (*1 *2 *2) (-12 (-5 *2 (-650 (-650 *6))) (-4 *6 (-956 *3 *5 *4)) (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186)))) (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *6)))) (-1451 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| *7) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 *7))))) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777)) (-5 *1 (-931 *4 *5 *6 *7)))) (-3944 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| *7) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 *7))))) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777)) (-5 *1 (-931 *4 *5 *6 *7)))) (-2772 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 *3)) (-5 *1 (-931 *4 *5 *6 *3)) (-4 *3 (-956 *4 *6 *5)))) (-3244 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2042 (-695 (-413 (-959 *4)))) (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -3933 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-2 (|:| |partsol| (-1277 (-413 (-959 *4)))) (|:| -2003 (-650 (-1277 (-413 (-959 *4))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-3835 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1277 (-413 (-959 *4)))) (|:| -2003 (-650 (-1277 (-413 (-959 *4))))))) (-5 *3 (-650 *7)) (-4 *4 (-13 (-311) (-148))) (-4 *7 (-956 *4 *6 *5)) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))) (-1910 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| *8) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 *8))))) (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-777)))) (-4365 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-4 *7 (-956 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-650 *7)) (|:| |n0| (-650 *7)))) (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2864 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-311) (-148))) (-4 *2 (-956 *4 *6 *5)) (-5 *1 (-931 *4 *5 *6 *2)) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)))) (-2882 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-2827 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7)))) (-2827 (*1 *2 *3) (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-695 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7)))) (-2827 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-413 (-959 *4))) (-5 *1 (-931 *4 *5 *6 *3)) (-4 *3 (-956 *4 *6 *5)))) (-2431 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-695 *11)) (-5 *4 (-650 (-413 (-959 *8)))) (-5 *5 (-777)) (-5 *6 (-1168)) (-4 *8 (-13 (-311) (-148))) (-4 *11 (-956 *8 *10 *9)) (-4 *9 (-13 (-856) (-620 (-1186)))) (-4 *10 (-799)) (-5 *2 (-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 *11)) (|:| |neqzro| (-650 *11)) (|:| |wcond| (-650 (-959 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *8)))) (|:| -2003 (-650 (-1277 (-413 (-959 *8)))))))))) (|:| |rgsz| (-570)))) (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))) (-2713 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7)) (|:| |wcond| (-650 (-959 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *4)))) (|:| -2003 (-650 (-1277 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-2811 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *5)))) (|:| -2003 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *4 (-1168)) (-4 *5 (-13 (-311) (-148))) (-4 *8 (-956 *5 *7 *6)) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *5 *6 *7 *8)))) (-1454 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-928)) (-5 *5 (-1168)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *6 *7 *8 *9)))) (-1454 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 (-1186))) (-5 *5 (-928)) (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148))) (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *7 *8 *9 *10)))) (-1454 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 *10)) (-5 *5 (-928)) (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148))) (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *7 *8 *9 *10)))) (-1454 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-1168)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *5 *6 *7 *8)))) (-1454 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-1168)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *6 *7 *8 *9)))) (-1454 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 *9)) (-5 *5 (-1168)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *6 *7 *8 *9)))) (-1454 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-928)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *5)))) (|:| -2003 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-1454 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-928)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9)) (|:| |wcond| (-650 (-959 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *6)))) (|:| -2003 (-650 (-1277 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)))) (-1454 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *9)) (-5 *5 (-928)) (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9)) (|:| |wcond| (-650 (-959 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *6)))) (|:| -2003 (-650 (-1277 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)) (-5 *4 (-650 *9)))) (-1454 (*1 *2 *3) (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7)) (|:| |wcond| (-650 (-959 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *4)))) (|:| -2003 (-650 (-1277 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)))) (-1454 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-5 *4 (-650 (-1186))) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *5)))) (|:| -2003 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-1454 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-650 (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8)) (|:| |wcond| (-650 (-959 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 *5)))) (|:| -2003 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
+(-10 -7 (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -1454 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -1454 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -1454 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -2811 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2713 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2431 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -2827 ((-413 (-959 |#1|)) |#4|)) (-15 -2827 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -2827 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -2882 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2864 (|#4| (-959 |#1|))) (-15 -4365 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -1910 ((-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -3835 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -3244 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2042 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -3933 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -2772 ((-650 |#4|) |#4|)) (-15 -3944 ((-777) (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -1451 ((-777) (-650 (-2 (|:| -3933 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -2592 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -1374 ((-650 (-650 (-570))) (-570) (-570))) (-15 -2098 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -3044 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -3027 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -2976 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -2003 (-650 (-1277 (-413 (-959 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-650 (-650 |#4|)) (-777) (-777) (-570))) (-15 -4288 (|#4| |#4|)) (-15 -3017 ((-112) (-650 |#4|))) (-15 -3017 ((-112) (-650 (-959 |#1|)))))
+((-3808 (((-934) |#1| (-1186)) 17) (((-934) |#1| (-1186) (-1103 (-227))) 21)) (-2490 (((-934) |#1| |#1| (-1186) (-1103 (-227))) 19) (((-934) |#1| (-1186) (-1103 (-227))) 15)))
+(((-932 |#1|) (-10 -7 (-15 -2490 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -2490 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -3808 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -3808 ((-934) |#1| (-1186)))) (-620 (-542))) (T -932))
+((-3808 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-3808 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-2490 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-2490 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))))
+(-10 -7 (-15 -2490 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -2490 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -3808 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -3808 ((-934) |#1| (-1186))))
+((-1780 (($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 123)) (-3763 (((-1103 (-227)) $) 64)) (-3752 (((-1103 (-227)) $) 63)) (-3737 (((-1103 (-227)) $) 62)) (-3415 (((-650 (-650 (-227))) $) 69)) (-2943 (((-1103 (-227)) $) 65)) (-2333 (((-570) (-570)) 57)) (-1339 (((-570) (-570)) 52)) (-2868 (((-570) (-570)) 55)) (-1695 (((-112) (-112)) 59)) (-3982 (((-570)) 56)) (-2950 (($ $ (-1103 (-227))) 126) (($ $) 127)) (-2479 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 133) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 134)) (-2490 (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 136) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 137) (($ $ (-1103 (-227))) 129)) (-1452 (((-570)) 60)) (-1657 (((-570)) 50)) (-1637 (((-570)) 53)) (-2734 (((-650 (-650 (-950 (-227)))) $) 153)) (-4423 (((-112) (-112)) 61)) (-3735 (((-868) $) 151)) (-2861 (((-112)) 58)))
+(((-933) (-13 (-983) (-10 -8 (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ $ (-1103 (-227)))) (-15 -1780 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2950 ($ $ (-1103 (-227)))) (-15 -2950 ($ $)) (-15 -2943 ((-1103 (-227)) $)) (-15 -3415 ((-650 (-650 (-227))) $)) (-15 -1657 ((-570))) (-15 -1339 ((-570) (-570))) (-15 -1637 ((-570))) (-15 -2868 ((-570) (-570))) (-15 -3982 ((-570))) (-15 -2333 ((-570) (-570))) (-15 -2861 ((-112))) (-15 -1695 ((-112) (-112))) (-15 -1452 ((-570))) (-15 -4423 ((-112) (-112)))))) (T -933))
+((-2479 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2479 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2490 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2490 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2490 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-1780 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-2950 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-2950 (*1 *1 *1) (-5 *1 (-933))) (-2943 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-3415 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))) (-1657 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1339 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1637 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2868 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3982 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2333 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2861 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-1695 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-1452 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-4423 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(-13 (-983) (-10 -8 (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ $ (-1103 (-227)))) (-15 -1780 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2950 ($ $ (-1103 (-227)))) (-15 -2950 ($ $)) (-15 -2943 ((-1103 (-227)) $)) (-15 -3415 ((-650 (-650 (-227))) $)) (-15 -1657 ((-570))) (-15 -1339 ((-570) (-570))) (-15 -1637 ((-570))) (-15 -2868 ((-570) (-570))) (-15 -3982 ((-570))) (-15 -2333 ((-570) (-570))) (-15 -2861 ((-112))) (-15 -1695 ((-112) (-112))) (-15 -1452 ((-570))) (-15 -4423 ((-112) (-112)))))
+((-1780 (($ $ (-1103 (-227))) 124) (($ $ (-1103 (-227)) (-1103 (-227))) 125)) (-3752 (((-1103 (-227)) $) 73)) (-3737 (((-1103 (-227)) $) 72)) (-2943 (((-1103 (-227)) $) 74)) (-3887 (((-570) (-570)) 66)) (-2804 (((-570) (-570)) 61)) (-2103 (((-570) (-570)) 64)) (-4290 (((-112) (-112)) 68)) (-2915 (((-570)) 65)) (-2950 (($ $ (-1103 (-227))) 128) (($ $) 129)) (-2479 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 143) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 144)) (-3808 (($ (-1 (-227) (-227)) (-1103 (-227))) 151) (($ (-1 (-227) (-227))) 155)) (-2490 (($ (-1 (-227) (-227)) (-1103 (-227))) 139) (($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227))) 140) (($ (-650 (-1 (-227) (-227))) (-1103 (-227))) 148) (($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227))) 149) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 141) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 142) (($ $ (-1103 (-227))) 130)) (-2495 (((-112) $) 69)) (-2967 (((-570)) 70)) (-1560 (((-570)) 59)) (-2764 (((-570)) 62)) (-2734 (((-650 (-650 (-950 (-227)))) $) 35)) (-2780 (((-112) (-112)) 71)) (-3735 (((-868) $) 169)) (-4314 (((-112)) 67)))
+(((-934) (-13 (-962) (-10 -8 (-15 -2490 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -2490 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3808 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3808 ($ (-1 (-227) (-227)))) (-15 -2490 ($ $ (-1103 (-227)))) (-15 -2495 ((-112) $)) (-15 -1780 ($ $ (-1103 (-227)))) (-15 -1780 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -2950 ($ $ (-1103 (-227)))) (-15 -2950 ($ $)) (-15 -2943 ((-1103 (-227)) $)) (-15 -1560 ((-570))) (-15 -2804 ((-570) (-570))) (-15 -2764 ((-570))) (-15 -2103 ((-570) (-570))) (-15 -2915 ((-570))) (-15 -3887 ((-570) (-570))) (-15 -4314 ((-112))) (-15 -4290 ((-112) (-112))) (-15 -2967 ((-570))) (-15 -2780 ((-112) (-112)))))) (T -934))
+((-2490 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2490 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2490 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2490 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2490 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2490 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2479 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2479 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3808 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3808 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-934)))) (-2490 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2495 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-1780 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-1780 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2950 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2950 (*1 *1 *1) (-5 *1 (-934))) (-2943 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-1560 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2804 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2764 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2103 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2915 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-3887 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-4314 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-4290 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-2967 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2780 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(-13 (-962) (-10 -8 (-15 -2490 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -2490 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2490 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -2479 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3808 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -3808 ($ (-1 (-227) (-227)))) (-15 -2490 ($ $ (-1103 (-227)))) (-15 -2495 ((-112) $)) (-15 -1780 ($ $ (-1103 (-227)))) (-15 -1780 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -2950 ($ $ (-1103 (-227)))) (-15 -2950 ($ $)) (-15 -2943 ((-1103 (-227)) $)) (-15 -1560 ((-570))) (-15 -2804 ((-570) (-570))) (-15 -2764 ((-570))) (-15 -2103 ((-570) (-570))) (-15 -2915 ((-570))) (-15 -3887 ((-570) (-570))) (-15 -4314 ((-112))) (-15 -4290 ((-112) (-112))) (-15 -2967 ((-570))) (-15 -2780 ((-112) (-112)))))
+((-4292 (((-650 (-1103 (-227))) (-650 (-650 (-950 (-227))))) 34)))
+(((-935) (-10 -7 (-15 -4292 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))) (T -935))
+((-4292 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
+(-10 -7 (-15 -4292 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))
+((-3505 ((|#2| |#2|) 28)) (-4178 ((|#2| |#2|) 29)) (-3640 ((|#2| |#2|) 27)) (-3591 ((|#2| |#2| (-512)) 26)))
+(((-936 |#1| |#2|) (-10 -7 (-15 -3591 (|#2| |#2| (-512))) (-15 -3640 (|#2| |#2|)) (-15 -3505 (|#2| |#2|)) (-15 -4178 (|#2| |#2|))) (-1109) (-436 |#1|)) (T -936))
+((-4178 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3505 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3640 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3591 (*1 *2 *2 *3) (-12 (-5 *3 (-512)) (-4 *4 (-1109)) (-5 *1 (-936 *4 *2)) (-4 *2 (-436 *4)))))
+(-10 -7 (-15 -3591 (|#2| |#2| (-512))) (-15 -3640 (|#2| |#2|)) (-15 -3505 (|#2| |#2|)) (-15 -4178 (|#2| |#2|)))
+((-3505 (((-320 (-570)) (-1186)) 16)) (-4178 (((-320 (-570)) (-1186)) 14)) (-3640 (((-320 (-570)) (-1186)) 12)) (-3591 (((-320 (-570)) (-1186) (-512)) 19)))
+(((-937) (-10 -7 (-15 -3591 ((-320 (-570)) (-1186) (-512))) (-15 -3640 ((-320 (-570)) (-1186))) (-15 -3505 ((-320 (-570)) (-1186))) (-15 -4178 ((-320 (-570)) (-1186))))) (T -937))
+((-4178 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3505 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3640 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3591 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-512)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))))
+(-10 -7 (-15 -3591 ((-320 (-570)) (-1186) (-512))) (-15 -3640 ((-320 (-570)) (-1186))) (-15 -3505 ((-320 (-570)) (-1186))) (-15 -4178 ((-320 (-570)) (-1186))))
+((-4232 (((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)) 25)) (-2012 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
+(((-938 |#1| |#2| |#3|) (-10 -7 (-15 -2012 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -4232 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-893 |#1|) (-13 (-1109) (-1047 |#2|))) (T -938))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-13 (-1109) (-1047 *3))) (-4 *3 (-893 *5)) (-5 *1 (-938 *5 *3 *6)))) (-2012 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1109) (-1047 *5))) (-4 *5 (-893 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-938 *4 *5 *6)))))
+(-10 -7 (-15 -2012 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -4232 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|))))
+((-4232 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 30)))
+(((-939 |#1| |#2| |#3|) (-10 -7 (-15 -4232 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-13 (-562) (-893 |#1|)) (-13 (-436 |#2|) (-620 (-899 |#1|)) (-893 |#1|) (-1047 (-618 $)))) (T -939))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-13 (-436 *6) (-620 *4) (-893 *5) (-1047 (-618 $)))) (-5 *4 (-899 *5)) (-4 *6 (-13 (-562) (-893 *5))) (-5 *1 (-939 *5 *6 *3)))))
+(-10 -7 (-15 -4232 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
+((-4232 (((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)) 13)))
+(((-940 |#1|) (-10 -7 (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)))) (-551)) (T -940))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 (-570) *3)) (-5 *4 (-899 (-570))) (-4 *3 (-551)) (-5 *1 (-940 *3)))))
+(-10 -7 (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))))
+((-4232 (((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)) 57)))
+(((-941 |#1| |#2|) (-10 -7 (-15 -4232 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)))) (-1109) (-13 (-1109) (-1047 (-618 $)) (-620 (-899 |#1|)) (-893 |#1|))) (T -941))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *6)) (-5 *3 (-618 *6)) (-4 *5 (-1109)) (-4 *6 (-13 (-1109) (-1047 (-618 $)) (-620 *4) (-893 *5))) (-5 *4 (-899 *5)) (-5 *1 (-941 *5 *6)))))
+(-10 -7 (-15 -4232 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|))))
+((-4232 (((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)) 17)))
+(((-942 |#1| |#2| |#3|) (-10 -7 (-15 -4232 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)))) (-1109) (-893 |#1|) (-672 |#2|)) (T -942))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-892 *5 *6 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-4 *6 (-893 *5)) (-4 *3 (-672 *6)) (-5 *1 (-942 *5 *6 *3)))))
+(-10 -7 (-15 -4232 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|))))
+((-4232 (((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|)) 17 (|has| |#3| (-893 |#1|))) (((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|) (-1 (-896 |#1| |#5|) |#3| (-899 |#1|) (-896 |#1| |#5|))) 16)))
+(((-943 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4232 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|) (-1 (-896 |#1| |#5|) |#3| (-899 |#1|) (-896 |#1| |#5|)))) (IF (|has| |#3| (-893 |#1|)) (-15 -4232 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|))) |%noBranch|)) (-1109) (-799) (-856) (-13 (-1058) (-893 |#1|)) (-13 (-956 |#4| |#2| |#3|) (-620 (-899 |#1|)))) (T -943))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-13 (-956 *8 *6 *7) (-620 *4))) (-5 *4 (-899 *5)) (-4 *7 (-893 *5)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-13 (-1058) (-893 *5))) (-5 *1 (-943 *5 *6 *7 *8 *3)))) (-4232 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-896 *6 *3) *8 (-899 *6) (-896 *6 *3))) (-4 *8 (-856)) (-5 *2 (-896 *6 *3)) (-5 *4 (-899 *6)) (-4 *6 (-1109)) (-4 *3 (-13 (-956 *9 *7 *8) (-620 *4))) (-4 *7 (-799)) (-4 *9 (-13 (-1058) (-893 *6))) (-5 *1 (-943 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -4232 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|) (-1 (-896 |#1| |#5|) |#3| (-899 |#1|) (-896 |#1| |#5|)))) (IF (|has| |#3| (-893 |#1|)) (-15 -4232 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|))) |%noBranch|))
+((-4261 ((|#2| |#2| (-650 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
+(((-944 |#1| |#2| |#3|) (-10 -7 (-15 -4261 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4261 (|#2| |#2| (-650 (-1 (-112) |#3|))))) (-1109) (-436 |#1|) (-1227)) (T -944))
+((-4261 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-1 (-112) *5))) (-4 *5 (-1227)) (-4 *4 (-1109)) (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4)))) (-4261 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1227)) (-4 *4 (-1109)) (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4)))))
+(-10 -7 (-15 -4261 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4261 (|#2| |#2| (-650 (-1 (-112) |#3|)))))
+((-4261 (((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))) 18) (((-320 (-570)) (-1186) (-1 (-112) |#1|)) 15)))
+(((-945 |#1|) (-10 -7 (-15 -4261 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4261 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))))) (-1227)) (T -945))
+((-4261 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-650 (-1 (-112) *5))) (-4 *5 (-1227)) (-5 *2 (-320 (-570))) (-5 *1 (-945 *5)))) (-4261 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1227)) (-5 *2 (-320 (-570))) (-5 *1 (-945 *5)))))
+(-10 -7 (-15 -4261 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4261 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|)))))
+((-4232 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 25)))
+(((-946 |#1| |#2| |#3|) (-10 -7 (-15 -4232 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-13 (-562) (-893 |#1|) (-620 (-899 |#1|))) (-1001 |#2|)) (T -946))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-1001 *6)) (-4 *6 (-13 (-562) (-893 *5) (-620 *4))) (-5 *4 (-899 *5)) (-5 *1 (-946 *5 *6 *3)))))
+(-10 -7 (-15 -4232 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
+((-4232 (((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))) 18)))
+(((-947 |#1|) (-10 -7 (-15 -4232 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))))) (-1109)) (T -947))
+((-4232 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-896 *5 (-1186))) (-5 *3 (-1186)) (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *1 (-947 *5)))))
+(-10 -7 (-15 -4232 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186)))))
+((-3909 (((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) 34)) (-4232 (((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-1 |#3| (-650 |#3|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) 33)))
+(((-948 |#1| |#2| |#3|) (-10 -7 (-15 -4232 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-1 |#3| (-650 |#3|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-15 -3909 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))) (-1109) (-1058) (-13 (-1058) (-620 (-899 |#1|)) (-1047 |#2|))) (T -948))
+((-3909 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-899 *6))) (-5 *5 (-1 (-896 *6 *8) *8 (-899 *6) (-896 *6 *8))) (-4 *6 (-1109)) (-4 *8 (-13 (-1058) (-620 (-899 *6)) (-1047 *7))) (-5 *2 (-896 *6 *8)) (-4 *7 (-1058)) (-5 *1 (-948 *6 *7 *8)))) (-4232 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-650 (-899 *7))) (-5 *5 (-1 *9 (-650 *9))) (-5 *6 (-1 (-896 *7 *9) *9 (-899 *7) (-896 *7 *9))) (-4 *7 (-1109)) (-4 *9 (-13 (-1058) (-620 (-899 *7)) (-1047 *8))) (-5 *2 (-896 *7 *9)) (-5 *3 (-650 *9)) (-4 *8 (-1058)) (-5 *1 (-948 *7 *8 *9)))))
+(-10 -7 (-15 -4232 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-1 |#3| (-650 |#3|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-15 -3909 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))))
+((-1652 (((-1182 (-413 (-570))) (-570)) 81)) (-3717 (((-1182 (-570)) (-570)) 84)) (-2469 (((-1182 (-570)) (-570)) 78)) (-1401 (((-570) (-1182 (-570))) 74)) (-1969 (((-1182 (-413 (-570))) (-570)) 65)) (-2784 (((-1182 (-570)) (-570)) 49)) (-2331 (((-1182 (-570)) (-570)) 86)) (-4408 (((-1182 (-570)) (-570)) 85)) (-4240 (((-1182 (-413 (-570))) (-570)) 67)))
+(((-949) (-10 -7 (-15 -4240 ((-1182 (-413 (-570))) (-570))) (-15 -4408 ((-1182 (-570)) (-570))) (-15 -2331 ((-1182 (-570)) (-570))) (-15 -2784 ((-1182 (-570)) (-570))) (-15 -1969 ((-1182 (-413 (-570))) (-570))) (-15 -1401 ((-570) (-1182 (-570)))) (-15 -2469 ((-1182 (-570)) (-570))) (-15 -3717 ((-1182 (-570)) (-570))) (-15 -1652 ((-1182 (-413 (-570))) (-570))))) (T -949))
+((-1652 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-3717 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2469 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))) (-1969 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2784 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2331 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-4408 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-4240 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
+(-10 -7 (-15 -4240 ((-1182 (-413 (-570))) (-570))) (-15 -4408 ((-1182 (-570)) (-570))) (-15 -2331 ((-1182 (-570)) (-570))) (-15 -2784 ((-1182 (-570)) (-570))) (-15 -1969 ((-1182 (-413 (-570))) (-570))) (-15 -1401 ((-570) (-1182 (-570)))) (-15 -2469 ((-1182 (-570)) (-570))) (-15 -3717 ((-1182 (-570)) (-570))) (-15 -1652 ((-1182 (-413 (-570))) (-570))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777)) NIL (|has| |#1| (-23)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3213 (($ (-650 |#1|)) 9)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1375 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1935 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-2113 (((-112) $ (-777)) NIL)) (-3788 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-4102 (($ $ (-650 |#1|)) 25)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 18) (($ $ (-1244 (-570))) NIL)) (-4082 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4154 (((-928) $) 13)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3000 (($ $ $) 23)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 14)) (-3749 (($ (-650 |#1|)) NIL)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 24) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2953 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2426 (((-777) $) 11 (|has| $ (-6 -4449)))))
(((-950 |#1|) (-989 |#1|) (-1058)) (T -950))
NIL
(-989 |#1|)
-((-2120 (((-487 |#1| |#2|) (-959 |#2|)) 22)) (-4326 (((-249 |#1| |#2|) (-959 |#2|)) 35)) (-4032 (((-959 |#2|) (-487 |#1| |#2|)) 27)) (-3125 (((-249 |#1| |#2|) (-487 |#1| |#2|)) 57)) (-3856 (((-959 |#2|) (-249 |#1| |#2|)) 32)) (-1505 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 48)))
-(((-951 |#1| |#2|) (-10 -7 (-15 -1505 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -3125 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -2120 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -4032 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -3856 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -4326 ((-249 |#1| |#2|) (-959 |#2|)))) (-650 (-1186)) (-1058)) (T -951))
-((-4326 (*1 *2 *3) (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-249 *4 *5)) (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))) (-3856 (*1 *2 *3) (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))) (-4032 (*1 *2 *3) (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))) (-2120 (*1 *2 *3) (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5)) (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))) (-3125 (*1 *2 *3) (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-249 *4 *5)) (-5 *1 (-951 *4 *5)))) (-1505 (*1 *2 *3) (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5)) (-5 *1 (-951 *4 *5)))))
-(-10 -7 (-15 -1505 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -3125 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -2120 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -4032 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -3856 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -4326 ((-249 |#1| |#2|) (-959 |#2|))))
-((-1916 (((-650 |#2|) |#2| |#2|) 10)) (-4353 (((-777) (-650 |#1|)) 48 (|has| |#1| (-854)))) (-3488 (((-650 |#2|) |#2|) 11)) (-2733 (((-777) (-650 |#1|) (-570) (-570)) 52 (|has| |#1| (-854)))) (-1464 ((|#1| |#2|) 38 (|has| |#1| (-854)))))
-(((-952 |#1| |#2|) (-10 -7 (-15 -1916 ((-650 |#2|) |#2| |#2|)) (-15 -3488 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -1464 (|#1| |#2|)) (-15 -4353 ((-777) (-650 |#1|))) (-15 -2733 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|)) (-368) (-1252 |#1|)) (T -952))
-((-2733 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-570)) (-4 *5 (-854)) (-4 *5 (-368)) (-5 *2 (-777)) (-5 *1 (-952 *5 *6)) (-4 *6 (-1252 *5)))) (-4353 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-854)) (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-952 *4 *5)) (-4 *5 (-1252 *4)))) (-1464 (*1 *2 *3) (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3)) (-4 *3 (-1252 *2)))) (-3488 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1252 *4)))) (-1916 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -1916 ((-650 |#2|) |#2| |#2|)) (-15 -3488 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -1464 (|#1| |#2|)) (-15 -4353 ((-777) (-650 |#1|))) (-15 -2733 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|))
-((-1351 (((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)) 19)))
-(((-953 |#1| |#2|) (-10 -7 (-15 -1351 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)))) (-1058) (-1058)) (T -953))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-959 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-959 *6)) (-5 *1 (-953 *5 *6)))))
-(-10 -7 (-15 -1351 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|))))
-((-3703 (((-1249 |#1| (-959 |#2|)) (-959 |#2|) (-1272 |#1|)) 18)))
-(((-954 |#1| |#2|) (-10 -7 (-15 -3703 ((-1249 |#1| (-959 |#2|)) (-959 |#2|) (-1272 |#1|)))) (-1186) (-1058)) (T -954))
-((-3703 (*1 *2 *3 *4) (-12 (-5 *4 (-1272 *5)) (-14 *5 (-1186)) (-4 *6 (-1058)) (-5 *2 (-1249 *5 (-959 *6))) (-5 *1 (-954 *5 *6)) (-5 *3 (-959 *6)))))
-(-10 -7 (-15 -3703 ((-1249 |#1| (-959 |#2|)) (-959 |#2|) (-1272 |#1|))))
-((-3462 (((-777) $) 88) (((-777) $ (-650 |#4|)) 93)) (-2222 (($ $) 203)) (-1790 (((-424 $) $) 195)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) 74)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) 73)) (-1939 (($ $ $ |#4|) 95)) (-4177 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) 131) (((-695 |#2|) (-695 $)) 121)) (-3543 (($ $) 210) (($ $ |#4|) 213)) (-1873 (((-650 $) $) 77)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 229) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 222)) (-1435 (((-650 $) $) 34)) (-3872 (($ |#2| |#3|) NIL) (($ $ |#4| (-777)) NIL) (($ $ (-650 |#4|) (-650 (-777))) 71)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#4|) 192)) (-1596 (((-3 (-650 $) "failed") $) 52)) (-3751 (((-3 (-650 $) "failed") $) 39)) (-3496 (((-3 (-2 (|:| |var| |#4|) (|:| -1907 (-777))) "failed") $) 57)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 134)) (-1885 (((-424 (-1182 $)) (-1182 $)) 147)) (-1495 (((-424 (-1182 $)) (-1182 $)) 145)) (-3738 (((-424 $) $) 165)) (-1730 (($ $ (-650 (-298 $))) 24) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-650 |#4|) (-650 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-650 |#4|) (-650 $)) NIL)) (-2998 (($ $ |#4|) 97)) (-1416 (((-899 (-384)) $) 243) (((-899 (-570)) $) 236) (((-542) $) 251)) (-3030 ((|#2| $) NIL) (($ $ |#4|) 205)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 184)) (-1715 ((|#2| $ |#3|) NIL) (($ $ |#4| (-777)) 62) (($ $ (-650 |#4|) (-650 (-777))) 69)) (-1918 (((-3 $ "failed") $) 186)) (-1859 (((-112) $ $) 216)))
-(((-955 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -2222 (|#1| |#1|)) (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -1495 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1885 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4057 ((-3 (-1276 |#1|) "failed") (-695 |#1|))) (-15 -3543 (|#1| |#1| |#4|)) (-15 -3030 (|#1| |#1| |#4|)) (-15 -2998 (|#1| |#1| |#4|)) (-15 -1939 (|#1| |#1| |#1| |#4|)) (-15 -1873 ((-650 |#1|) |#1|)) (-15 -3462 ((-777) |#1| (-650 |#4|))) (-15 -3462 ((-777) |#1|)) (-15 -3496 ((-3 (-2 (|:| |var| |#4|) (|:| -1907 (-777))) "failed") |#1|)) (-15 -1596 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3751 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3872 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3872 (|#1| |#1| |#4| (-777))) (-15 -2766 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1| |#4|)) (-15 -1435 ((-650 |#1|) |#1|)) (-15 -1715 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -1715 (|#1| |#1| |#4| (-777))) (-15 -4177 ((-695 |#2|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4378 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#4| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#4| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3872 (|#1| |#2| |#3|)) (-15 -1715 (|#2| |#1| |#3|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -3543 (|#1| |#1|)) (-15 -1859 ((-112) |#1| |#1|))) (-956 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -955))
-NIL
-(-10 -8 (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -2222 (|#1| |#1|)) (-15 -1918 ((-3 |#1| "failed") |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -1495 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1885 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4057 ((-3 (-1276 |#1|) "failed") (-695 |#1|))) (-15 -3543 (|#1| |#1| |#4|)) (-15 -3030 (|#1| |#1| |#4|)) (-15 -2998 (|#1| |#1| |#4|)) (-15 -1939 (|#1| |#1| |#1| |#4|)) (-15 -1873 ((-650 |#1|) |#1|)) (-15 -3462 ((-777) |#1| (-650 |#4|))) (-15 -3462 ((-777) |#1|)) (-15 -3496 ((-3 (-2 (|:| |var| |#4|) (|:| -1907 (-777))) "failed") |#1|)) (-15 -1596 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3751 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3872 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3872 (|#1| |#1| |#4| (-777))) (-15 -2766 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1| |#4|)) (-15 -1435 ((-650 |#1|) |#1|)) (-15 -1715 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -1715 (|#1| |#1| |#4| (-777))) (-15 -4177 ((-695 |#2|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -4378 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#4| |#1|)) (-15 -1730 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1730 (|#1| |#1| |#4| |#2|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3872 (|#1| |#2| |#3|)) (-15 -1715 (|#2| |#1| |#3|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -3543 (|#1| |#1|)) (-15 -1859 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 |#3|) $) 112)) (-3703 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3171 (($ $) 90 (|has| |#1| (-562)))) (-2720 (((-112) $) 92 (|has| |#1| (-562)))) (-3462 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-3596 (((-3 $ "failed") $ $) 20)) (-2615 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-2222 (($ $) 100 (|has| |#1| (-458)))) (-1790 (((-424 $) $) 99 (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) 138)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139)) (-1939 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1890 (($ $) 156)) (-4177 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-3413 (((-3 $ "failed") $) 37)) (-3543 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1873 (((-650 $) $) 111)) (-1552 (((-112) $) 98 (|has| |#1| (-916)))) (-3007 (($ $ |#1| |#2| $) 174)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| |#3| (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| |#3| (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-2081 (((-112) $) 35)) (-3797 (((-777) $) 171)) (-1704 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-1435 (((-650 $) $) 128)) (-1550 (((-112) $) 154)) (-3872 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#3|) 122)) (-4341 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-4414 (($ (-1 |#2| |#2|) $) 173)) (-1351 (($ (-1 |#1| |#1|) $) 153)) (-3382 (((-3 |#3| "failed") $) 125)) (-1855 (($ $) 151)) (-1864 ((|#1| $) 150)) (-1845 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1903 (((-1168) $) 10)) (-1596 (((-3 (-650 $) "failed") $) 116)) (-3751 (((-3 (-650 $) "failed") $) 117)) (-3496 (((-3 (-2 (|:| |var| |#3|) (|:| -1907 (-777))) "failed") $) 115)) (-3479 (((-1129) $) 11)) (-1834 (((-112) $) 168)) (-1842 ((|#1| $) 169)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3738 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-2998 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3447 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-1601 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1416 (((-899 (-384)) $) 84 (-12 (|has| |#3| (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| |#3| (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| |#3| (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ $) 87 (|has| |#1| (-562))) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-3009 (((-650 |#1|) $) 170)) (-1715 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-1918 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) 32 T CONST)) (-3644 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+((-1642 (((-487 |#1| |#2|) (-959 |#2|)) 22)) (-2564 (((-249 |#1| |#2|) (-959 |#2|)) 35)) (-2788 (((-959 |#2|) (-487 |#1| |#2|)) 27)) (-2115 (((-249 |#1| |#2|) (-487 |#1| |#2|)) 57)) (-1677 (((-959 |#2|) (-249 |#1| |#2|)) 32)) (-1733 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 48)))
+(((-951 |#1| |#2|) (-10 -7 (-15 -1733 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -2115 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -1642 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -2788 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -1677 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -2564 ((-249 |#1| |#2|) (-959 |#2|)))) (-650 (-1186)) (-1058)) (T -951))
+((-2564 (*1 *2 *3) (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-249 *4 *5)) (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))) (-1677 (*1 *2 *3) (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))) (-2788 (*1 *2 *3) (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))) (-1642 (*1 *2 *3) (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5)) (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))) (-2115 (*1 *2 *3) (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-249 *4 *5)) (-5 *1 (-951 *4 *5)))) (-1733 (*1 *2 *3) (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5)) (-5 *1 (-951 *4 *5)))))
+(-10 -7 (-15 -1733 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -2115 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -1642 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -2788 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -1677 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -2564 ((-249 |#1| |#2|) (-959 |#2|))))
+((-3106 (((-650 |#2|) |#2| |#2|) 10)) (-2841 (((-777) (-650 |#1|)) 48 (|has| |#1| (-854)))) (-2401 (((-650 |#2|) |#2|) 11)) (-1505 (((-777) (-650 |#1|) (-570) (-570)) 52 (|has| |#1| (-854)))) (-4407 ((|#1| |#2|) 38 (|has| |#1| (-854)))))
+(((-952 |#1| |#2|) (-10 -7 (-15 -3106 ((-650 |#2|) |#2| |#2|)) (-15 -2401 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -4407 (|#1| |#2|)) (-15 -2841 ((-777) (-650 |#1|))) (-15 -1505 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|)) (-368) (-1253 |#1|)) (T -952))
+((-1505 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-570)) (-4 *5 (-854)) (-4 *5 (-368)) (-5 *2 (-777)) (-5 *1 (-952 *5 *6)) (-4 *6 (-1253 *5)))) (-2841 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-854)) (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-952 *4 *5)) (-4 *5 (-1253 *4)))) (-4407 (*1 *2 *3) (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3)) (-4 *3 (-1253 *2)))) (-2401 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1253 *4)))) (-3106 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -3106 ((-650 |#2|) |#2| |#2|)) (-15 -2401 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -4407 (|#1| |#2|)) (-15 -2841 ((-777) (-650 |#1|))) (-15 -1505 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|))
+((-1352 (((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)) 19)))
+(((-953 |#1| |#2|) (-10 -7 (-15 -1352 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)))) (-1058) (-1058)) (T -953))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-959 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-959 *6)) (-5 *1 (-953 *5 *6)))))
+(-10 -7 (-15 -1352 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|))))
+((-3702 (((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|)) 18)))
+(((-954 |#1| |#2|) (-10 -7 (-15 -3702 ((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|)))) (-1186) (-1058)) (T -954))
+((-3702 (*1 *2 *3 *4) (-12 (-5 *4 (-1273 *5)) (-14 *5 (-1186)) (-4 *6 (-1058)) (-5 *2 (-1250 *5 (-959 *6))) (-5 *1 (-954 *5 *6)) (-5 *3 (-959 *6)))))
+(-10 -7 (-15 -3702 ((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|))))
+((-2200 (((-777) $) 88) (((-777) $ (-650 |#4|)) 93)) (-3252 (($ $) 203)) (-1378 (((-424 $) $) 195)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) 74)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) 73)) (-3383 (($ $ $ |#4|) 95)) (-1836 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 131) (((-695 |#2|) (-695 $)) 121)) (-1767 (($ $) 210) (($ $ |#4|) 213)) (-1872 (((-650 $) $) 77)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 229) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 222)) (-1471 (((-650 $) $) 34)) (-3872 (($ |#2| |#3|) NIL) (($ $ |#4| (-777)) NIL) (($ $ (-650 |#4|) (-650 (-777))) 71)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#4|) 192)) (-3176 (((-3 (-650 $) "failed") $) 52)) (-1955 (((-3 (-650 $) "failed") $) 39)) (-4415 (((-3 (-2 (|:| |var| |#4|) (|:| -3011 (-777))) "failed") $) 57)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 134)) (-4086 (((-424 (-1182 $)) (-1182 $)) 147)) (-1627 (((-424 (-1182 $)) (-1182 $)) 145)) (-3739 (((-424 $) $) 165)) (-1731 (($ $ (-650 (-298 $))) 24) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-650 |#4|) (-650 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-650 |#4|) (-650 $)) NIL)) (-3290 (($ $ |#4|) 97)) (-1417 (((-899 (-384)) $) 243) (((-899 (-570)) $) 236) (((-542) $) 251)) (-3621 ((|#2| $) NIL) (($ $ |#4|) 205)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 184)) (-1983 ((|#2| $ |#3|) NIL) (($ $ |#4| (-777)) 62) (($ $ (-650 |#4|) (-650 (-777))) 69)) (-3127 (((-3 $ "failed") $) 186)) (-3866 (((-112) $ $) 216)))
+(((-955 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -3252 (|#1| |#1|)) (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -1627 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -4086 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3032 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -1767 (|#1| |#1| |#4|)) (-15 -3621 (|#1| |#1| |#4|)) (-15 -3290 (|#1| |#1| |#4|)) (-15 -3383 (|#1| |#1| |#1| |#4|)) (-15 -1872 ((-650 |#1|) |#1|)) (-15 -2200 ((-777) |#1| (-650 |#4|))) (-15 -2200 ((-777) |#1|)) (-15 -4415 ((-3 (-2 (|:| |var| |#4|) (|:| -3011 (-777))) "failed") |#1|)) (-15 -3176 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1955 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3872 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3872 (|#1| |#1| |#4| (-777))) (-15 -1820 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1| |#4|)) (-15 -1471 ((-650 |#1|) |#1|)) (-15 -1983 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -1983 (|#1| |#1| |#4| (-777))) (-15 -1836 ((-695 |#2|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -4379 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#4| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#4| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3872 (|#1| |#2| |#3|)) (-15 -1983 (|#2| |#1| |#3|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -1767 (|#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|))) (-956 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -955))
+NIL
+(-10 -8 (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -3252 (|#1| |#1|)) (-15 -3127 ((-3 |#1| "failed") |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -1627 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -4086 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3032 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -1767 (|#1| |#1| |#4|)) (-15 -3621 (|#1| |#1| |#4|)) (-15 -3290 (|#1| |#1| |#4|)) (-15 -3383 (|#1| |#1| |#1| |#4|)) (-15 -1872 ((-650 |#1|) |#1|)) (-15 -2200 ((-777) |#1| (-650 |#4|))) (-15 -2200 ((-777) |#1|)) (-15 -4415 ((-3 (-2 (|:| |var| |#4|) (|:| -3011 (-777))) "failed") |#1|)) (-15 -3176 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1955 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3872 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3872 (|#1| |#1| |#4| (-777))) (-15 -1820 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1| |#4|)) (-15 -1471 ((-650 |#1|) |#1|)) (-15 -1983 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -1983 (|#1| |#1| |#4| (-777))) (-15 -1836 ((-695 |#2|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -4379 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#4| |#1|)) (-15 -1731 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1731 (|#1| |#1| |#4| |#2|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3872 (|#1| |#2| |#3|)) (-15 -1983 (|#2| |#1| |#3|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -1767 (|#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 |#3|) $) 112)) (-3702 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-1345 (($ $) 90 (|has| |#1| (-562)))) (-1372 (((-112) $) 92 (|has| |#1| (-562)))) (-2200 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-4119 (((-3 $ "failed") $ $) 20)) (-2810 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-3252 (($ $) 100 (|has| |#1| (-458)))) (-1378 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) 138)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139)) (-3383 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1891 (($ $) 156)) (-1836 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2937 (((-3 $ "failed") $) 37)) (-1767 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1872 (((-650 $) $) 111)) (-4037 (((-112) $) 98 (|has| |#1| (-916)))) (-3382 (($ $ |#1| |#2| $) 174)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| |#3| (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| |#3| (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4340 (((-112) $) 35)) (-2292 (((-777) $) 171)) (-1705 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-1471 (((-650 $) $) 128)) (-4016 (((-112) $) 154)) (-3872 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#3|) 122)) (-2730 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-2206 (($ (-1 |#2| |#2|) $) 173)) (-1352 (($ (-1 |#1| |#1|) $) 153)) (-2645 (((-3 |#3| "failed") $) 125)) (-1857 (($ $) 151)) (-1865 ((|#1| $) 150)) (-1847 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-4268 (((-1168) $) 10)) (-3176 (((-3 (-650 $) "failed") $) 116)) (-1955 (((-3 (-650 $) "failed") $) 117)) (-4415 (((-3 (-2 (|:| |var| |#3|) (|:| -3011 (-777))) "failed") $) 115)) (-3479 (((-1129) $) 11)) (-1835 (((-112) $) 168)) (-1846 ((|#1| $) 169)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3739 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-3290 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3447 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-3221 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1417 (((-899 (-384)) $) 84 (-12 (|has| |#3| (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| |#3| (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| |#3| (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ $) 87 (|has| |#1| (-562))) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-3405 (((-650 |#1|) $) 170)) (-1983 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3127 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) 32 T CONST)) (-3340 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-956 |#1| |#2| |#3|) (-141) (-1058) (-799) (-856)) (T -956))
-((-3543 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1601 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-1601 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777))))) (-1715 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-1715 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 (-777))) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)))) (-1435 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3703 (*1 *2 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)))) (-3703 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-1182 *3)))) (-3382 (*1 *2 *1) (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-4341 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-4341 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777))))) (-2766 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-956 *4 *5 *3)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 (-777))) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)))) (-1704 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *4)) (-4 *4 (-1058)) (-4 *1 (-956 *4 *5 *3)) (-4 *5 (-799)) (-4 *3 (-856)))) (-1704 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)))) (-3751 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-1596 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3496 (*1 *2 *1) (|partial| -12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| |var| *5) (|:| -1907 (-777)))))) (-3462 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-3462 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777)))) (-1716 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-1873 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-1939 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-2998 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3030 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-3543 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-2222 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1790 (*1 *2 *1) (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-424 *1)) (-4 *1 (-956 *3 *4 *5)))))
-(-13 (-907 |t#3|) (-330 |t#1| |t#2|) (-313 $) (-520 |t#3| |t#1|) (-520 |t#3| $) (-1047 |t#3|) (-382 |t#1|) (-10 -8 (-15 -1601 ((-777) $ |t#3|)) (-15 -1601 ((-650 (-777)) $ (-650 |t#3|))) (-15 -1715 ($ $ |t#3| (-777))) (-15 -1715 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -1435 ((-650 $) $)) (-15 -3703 ((-1182 $) $ |t#3|)) (-15 -3703 ((-1182 |t#1|) $)) (-15 -3382 ((-3 |t#3| "failed") $)) (-15 -4341 ((-777) $ |t#3|)) (-15 -4341 ((-650 (-777)) $ (-650 |t#3|))) (-15 -2766 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |t#3|)) (-15 -3872 ($ $ |t#3| (-777))) (-15 -3872 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -1704 ($ (-1182 |t#1|) |t#3|)) (-15 -1704 ($ (-1182 $) |t#3|)) (-15 -3751 ((-3 (-650 $) "failed") $)) (-15 -1596 ((-3 (-650 $) "failed") $)) (-15 -3496 ((-3 (-2 (|:| |var| |t#3|) (|:| -1907 (-777))) "failed") $)) (-15 -3462 ((-777) $)) (-15 -3462 ((-777) $ (-650 |t#3|))) (-15 -1716 ((-650 |t#3|) $)) (-15 -1873 ((-650 $) $)) (IF (|has| |t#1| (-620 (-542))) (IF (|has| |t#3| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-620 (-899 (-570)))) (IF (|has| |t#3| (-620 (-899 (-570)))) (-6 (-620 (-899 (-570)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-620 (-899 (-384)))) (IF (|has| |t#3| (-620 (-899 (-384)))) (-6 (-620 (-899 (-384)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-893 (-570))) (IF (|has| |t#3| (-893 (-570))) (-6 (-893 (-570))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-893 (-384))) (IF (|has| |t#3| (-893 (-384))) (-6 (-893 (-384))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-15 -1939 ($ $ $ |t#3|)) (-15 -2998 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-6 (-458)) (-15 -3030 ($ $ |t#3|)) (-15 -3543 ($ $)) (-15 -3543 ($ $ |t#3|)) (-15 -1790 ((-424 $) $)) (-15 -2222 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4446)) (-6 -4446) |%noBranch|) (IF (|has| |t#1| (-916)) (-6 (-916)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570))))) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-732) . T) ((-907 |#3|) . T) ((-893 (-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))) ((-916) |has| |#1| (-916)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1047 |#3|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) |has| |#1| (-916)))
-((-1716 (((-650 |#2|) |#5|) 40)) (-3703 (((-1182 |#5|) |#5| |#2| (-1182 |#5|)) 23) (((-413 (-1182 |#5|)) |#5| |#2|) 16)) (-1704 ((|#5| (-413 (-1182 |#5|)) |#2|) 30)) (-3382 (((-3 |#2| "failed") |#5|) 71)) (-1596 (((-3 (-650 |#5|) "failed") |#5|) 65)) (-3366 (((-3 (-2 (|:| |val| |#5|) (|:| -1907 (-570))) "failed") |#5|) 53)) (-3751 (((-3 (-650 |#5|) "failed") |#5|) 67)) (-3496 (((-3 (-2 (|:| |var| |#2|) (|:| -1907 (-570))) "failed") |#5|) 57)))
-(((-957 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1716 ((-650 |#2|) |#5|)) (-15 -3382 ((-3 |#2| "failed") |#5|)) (-15 -3703 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1704 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3703 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -3751 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -1596 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -3496 ((-3 (-2 (|:| |var| |#2|) (|:| -1907 (-570))) "failed") |#5|)) (-15 -3366 ((-3 (-2 (|:| |val| |#5|) (|:| -1907 (-570))) "failed") |#5|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3735 ($ |#4|)) (-15 -4398 (|#4| $)) (-15 -4412 (|#4| $))))) (T -957))
-((-3366 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -1907 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))) (-3496 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -1907 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))) (-1596 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3)) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))) (-3751 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3)) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))) (-3703 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))) (-4 *7 (-956 *6 *5 *4)) (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-5 *1 (-957 *5 *4 *6 *7 *3)))) (-1704 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-1182 *2))) (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-4 *2 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))) (-5 *1 (-957 *5 *4 *6 *7 *2)) (-4 *7 (-956 *6 *5 *4)))) (-3703 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *5 *4)) (-5 *2 (-413 (-1182 *3))) (-5 *1 (-957 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))) (-3382 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-1058)) (-4 *6 (-956 *5 *4 *2)) (-4 *2 (-856)) (-5 *1 (-957 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *6)) (-15 -4398 (*6 $)) (-15 -4412 (*6 $))))))) (-1716 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *5)) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))))
-(-10 -7 (-15 -1716 ((-650 |#2|) |#5|)) (-15 -3382 ((-3 |#2| "failed") |#5|)) (-15 -3703 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1704 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3703 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -3751 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -1596 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -3496 ((-3 (-2 (|:| |var| |#2|) (|:| -1907 (-570))) "failed") |#5|)) (-15 -3366 ((-3 (-2 (|:| |val| |#5|) (|:| -1907 (-570))) "failed") |#5|)))
-((-1351 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
-(((-958 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1351 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (T -958))
-((-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-856)) (-4 *8 (-1058)) (-4 *6 (-799)) (-4 *2 (-13 (-1109) (-10 -8 (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (-5 *1 (-958 *6 *7 *8 *5 *2)) (-4 *5 (-956 *8 *6 *7)))))
-(-10 -7 (-15 -1351 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1186)) $) 16)) (-3703 (((-1182 $) $ (-1186)) 21) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1186))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 8) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1186) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1186) $) NIL)) (-1939 (($ $ $ (-1186)) NIL (|has| |#1| (-174)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-537 (-1186)) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1186) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1186) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#1|) (-1186)) NIL) (($ (-1182 $) (-1186)) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1186)) NIL)) (-4341 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-4414 (($ (-1 (-537 (-1186)) (-537 (-1186))) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3382 (((-3 (-1186) "failed") $) 19)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-1186)) (|:| -1907 (-777))) "failed") $) NIL)) (-3555 (($ $ (-1186)) 29 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1186) |#1|) NIL) (($ $ (-650 (-1186)) (-650 |#1|)) NIL) (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL)) (-2998 (($ $ (-1186)) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1601 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-1186) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1186) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1186) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 25) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1186)) 27) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-959 |#1|) (-13 (-956 |#1| (-537 (-1186)) (-1186)) (-10 -8 (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1186))) |%noBranch|))) (-1058)) (T -959))
-((-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-959 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))))
-(-13 (-956 |#1| (-537 (-1186)) (-1186)) (-10 -8 (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1186))) |%noBranch|)))
-((-3550 (((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) |#3| (-777)) 49)) (-3820 (((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777)) 44)) (-2540 (((-2 (|:| -1907 (-777)) (|:| -1441 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)) 65)) (-3689 (((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) |#5| (-777)) 74 (|has| |#3| (-458)))))
-(((-960 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3550 ((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -3820 ((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -3689 ((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -2540 ((-2 (|:| -1907 (-777)) (|:| -1441 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3735 ($ |#4|)) (-15 -4398 (|#4| $)) (-15 -4412 (|#4| $))))) (T -960))
-((-2540 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *3 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *3) (|:| |radicand| (-650 *3)))) (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3735 ($ *3)) (-15 -4398 (*3 $)) (-15 -4412 (*3 $))))))) (-3689 (*1 *2 *3 *4) (-12 (-4 *7 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *8 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *3) (|:| |radicand| *3))) (-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *8)) (-15 -4398 (*8 $)) (-15 -4412 (*8 $))))))) (-3820 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-570))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *8 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *9) (|:| |radicand| *9))) (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777)) (-4 *9 (-13 (-368) (-10 -8 (-15 -3735 ($ *8)) (-15 -4398 (*8 $)) (-15 -4412 (*8 $))))))) (-3550 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562)) (-4 *7 (-956 *3 *5 *6)) (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *8) (|:| |radicand| *8))) (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))))
-(-10 -7 (-15 -3550 ((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -3820 ((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -3689 ((-2 (|:| -1907 (-777)) (|:| -1441 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -2540 ((-2 (|:| -1907 (-777)) (|:| -1441 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777))))
-((-2416 (((-112) $ $) NIL)) (-3583 (($ (-1129)) 8)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (((-1129) $) 12)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)))
-(((-961) (-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3583 ($ (-1129)))))) (T -961))
-((-3583 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-961)))))
-(-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3583 ($ (-1129)))))
-((-3752 (((-1103 (-227)) $) 8)) (-3737 (((-1103 (-227)) $) 9)) (-4027 (((-650 (-650 (-950 (-227)))) $) 10)) (-3735 (((-868) $) 6)))
+((-1767 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-3221 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3221 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777))))) (-1983 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-1983 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 (-777))) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)))) (-1471 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3702 (*1 *2 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)))) (-3702 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-1182 *3)))) (-2645 (*1 *2 *1) (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2730 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2730 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777))))) (-1820 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-956 *4 *5 *3)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 (-777))) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)))) (-1705 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *4)) (-4 *4 (-1058)) (-4 *1 (-956 *4 *5 *3)) (-4 *5 (-799)) (-4 *3 (-856)))) (-1705 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)))) (-1955 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3176 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-4415 (*1 *2 *1) (|partial| -12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| |var| *5) (|:| -3011 (-777)))))) (-2200 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-2200 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777)))) (-1713 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-1872 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3383 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3290 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3621 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-1767 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-3252 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1378 (*1 *2 *1) (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-424 *1)) (-4 *1 (-956 *3 *4 *5)))))
+(-13 (-907 |t#3|) (-330 |t#1| |t#2|) (-313 $) (-520 |t#3| |t#1|) (-520 |t#3| $) (-1047 |t#3|) (-382 |t#1|) (-10 -8 (-15 -3221 ((-777) $ |t#3|)) (-15 -3221 ((-650 (-777)) $ (-650 |t#3|))) (-15 -1983 ($ $ |t#3| (-777))) (-15 -1983 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -1471 ((-650 $) $)) (-15 -3702 ((-1182 $) $ |t#3|)) (-15 -3702 ((-1182 |t#1|) $)) (-15 -2645 ((-3 |t#3| "failed") $)) (-15 -2730 ((-777) $ |t#3|)) (-15 -2730 ((-650 (-777)) $ (-650 |t#3|))) (-15 -1820 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |t#3|)) (-15 -3872 ($ $ |t#3| (-777))) (-15 -3872 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -1705 ($ (-1182 |t#1|) |t#3|)) (-15 -1705 ($ (-1182 $) |t#3|)) (-15 -1955 ((-3 (-650 $) "failed") $)) (-15 -3176 ((-3 (-650 $) "failed") $)) (-15 -4415 ((-3 (-2 (|:| |var| |t#3|) (|:| -3011 (-777))) "failed") $)) (-15 -2200 ((-777) $)) (-15 -2200 ((-777) $ (-650 |t#3|))) (-15 -1713 ((-650 |t#3|) $)) (-15 -1872 ((-650 $) $)) (IF (|has| |t#1| (-620 (-542))) (IF (|has| |t#3| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-620 (-899 (-570)))) (IF (|has| |t#3| (-620 (-899 (-570)))) (-6 (-620 (-899 (-570)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-620 (-899 (-384)))) (IF (|has| |t#3| (-620 (-899 (-384)))) (-6 (-620 (-899 (-384)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-893 (-570))) (IF (|has| |t#3| (-893 (-570))) (-6 (-893 (-570))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-893 (-384))) (IF (|has| |t#3| (-893 (-384))) (-6 (-893 (-384))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-15 -3383 ($ $ $ |t#3|)) (-15 -3290 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-6 (-458)) (-15 -3621 ($ $ |t#3|)) (-15 -1767 ($ $)) (-15 -1767 ($ $ |t#3|)) (-15 -1378 ((-424 $) $)) (-15 -3252 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4447)) (-6 -4447) |%noBranch|) (IF (|has| |t#1| (-916)) (-6 (-916)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570))))) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-732) . T) ((-907 |#3|) . T) ((-893 (-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))) ((-916) |has| |#1| (-916)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1047 |#3|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
+((-1713 (((-650 |#2|) |#5|) 40)) (-3702 (((-1182 |#5|) |#5| |#2| (-1182 |#5|)) 23) (((-413 (-1182 |#5|)) |#5| |#2|) 16)) (-1705 ((|#5| (-413 (-1182 |#5|)) |#2|) 30)) (-2645 (((-3 |#2| "failed") |#5|) 71)) (-3176 (((-3 (-650 |#5|) "failed") |#5|) 65)) (-2499 (((-3 (-2 (|:| |val| |#5|) (|:| -3011 (-570))) "failed") |#5|) 53)) (-1955 (((-3 (-650 |#5|) "failed") |#5|) 67)) (-4415 (((-3 (-2 (|:| |var| |#2|) (|:| -3011 (-570))) "failed") |#5|) 57)))
+(((-957 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1713 ((-650 |#2|) |#5|)) (-15 -2645 ((-3 |#2| "failed") |#5|)) (-15 -3702 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1705 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3702 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -1955 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -3176 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -4415 ((-3 (-2 (|:| |var| |#2|) (|:| -3011 (-570))) "failed") |#5|)) (-15 -2499 ((-3 (-2 (|:| |val| |#5|) (|:| -3011 (-570))) "failed") |#5|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3735 ($ |#4|)) (-15 -4399 (|#4| $)) (-15 -4413 (|#4| $))))) (T -957))
+((-2499 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -3011 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-4415 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -3011 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-3176 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3)) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-1955 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3)) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-3702 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))) (-4 *7 (-956 *6 *5 *4)) (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-5 *1 (-957 *5 *4 *6 *7 *3)))) (-1705 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-1182 *2))) (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-4 *2 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))) (-5 *1 (-957 *5 *4 *6 *7 *2)) (-4 *7 (-956 *6 *5 *4)))) (-3702 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *5 *4)) (-5 *2 (-413 (-1182 *3))) (-5 *1 (-957 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-2645 (*1 *2 *3) (|partial| -12 (-4 *4 (-799)) (-4 *5 (-1058)) (-4 *6 (-956 *5 *4 *2)) (-4 *2 (-856)) (-5 *1 (-957 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *6)) (-15 -4399 (*6 $)) (-15 -4413 (*6 $))))))) (-1713 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *5)) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
+(-10 -7 (-15 -1713 ((-650 |#2|) |#5|)) (-15 -2645 ((-3 |#2| "failed") |#5|)) (-15 -3702 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1705 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3702 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -1955 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -3176 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -4415 ((-3 (-2 (|:| |var| |#2|) (|:| -3011 (-570))) "failed") |#5|)) (-15 -2499 ((-3 (-2 (|:| |val| |#5|) (|:| -3011 (-570))) "failed") |#5|)))
+((-1352 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
+(((-958 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1352 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (T -958))
+((-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-856)) (-4 *8 (-1058)) (-4 *6 (-799)) (-4 *2 (-13 (-1109) (-10 -8 (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (-5 *1 (-958 *6 *7 *8 *5 *2)) (-4 *5 (-956 *8 *6 *7)))))
+(-10 -7 (-15 -1352 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1186)) $) 16)) (-3702 (((-1182 $) $ (-1186)) 21) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1186))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 8) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1186) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1186) $) NIL)) (-3383 (($ $ $ (-1186)) NIL (|has| |#1| (-174)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-537 (-1186)) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1186) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1186) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#1|) (-1186)) NIL) (($ (-1182 $) (-1186)) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1186)) NIL)) (-2730 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-2206 (($ (-1 (-537 (-1186)) (-537 (-1186))) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2645 (((-3 (-1186) "failed") $) 19)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-1186)) (|:| -3011 (-777))) "failed") $) NIL)) (-3722 (($ $ (-1186)) 29 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1186) |#1|) NIL) (($ $ (-650 (-1186)) (-650 |#1|)) NIL) (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL)) (-3290 (($ $ (-1186)) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3221 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-1186) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1186) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1186) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 25) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1186)) 27) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-959 |#1|) (-13 (-956 |#1| (-537 (-1186)) (-1186)) (-10 -8 (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1186))) |%noBranch|))) (-1058)) (T -959))
+((-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-959 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))))
+(-13 (-956 |#1| (-537 (-1186)) (-1186)) (-10 -8 (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1186))) |%noBranch|)))
+((-1845 (((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) |#3| (-777)) 49)) (-4410 (((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777)) 44)) (-3341 (((-2 (|:| -3011 (-777)) (|:| -1442 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)) 65)) (-2531 (((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) |#5| (-777)) 74 (|has| |#3| (-458)))))
+(((-960 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1845 ((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -4410 ((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -2531 ((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -3341 ((-2 (|:| -3011 (-777)) (|:| -1442 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3735 ($ |#4|)) (-15 -4399 (|#4| $)) (-15 -4413 (|#4| $))))) (T -960))
+((-3341 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *3 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *3) (|:| |radicand| (-650 *3)))) (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3735 ($ *3)) (-15 -4399 (*3 $)) (-15 -4413 (*3 $))))))) (-2531 (*1 *2 *3 *4) (-12 (-4 *7 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *8 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *3) (|:| |radicand| *3))) (-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3735 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))) (-4410 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-570))) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *8 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *9) (|:| |radicand| *9))) (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777)) (-4 *9 (-13 (-368) (-10 -8 (-15 -3735 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))) (-1845 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562)) (-4 *7 (-956 *3 *5 *6)) (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *8) (|:| |radicand| *8))) (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
+(-10 -7 (-15 -1845 ((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -4410 ((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -2531 ((-2 (|:| -3011 (-777)) (|:| -1442 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -3341 ((-2 (|:| -3011 (-777)) (|:| -1442 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777))))
+((-2417 (((-112) $ $) NIL)) (-3582 (($ (-1129)) 8)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (((-1129) $) 12)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 11)))
+(((-961) (-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3582 ($ (-1129)))))) (T -961))
+((-3582 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-961)))))
+(-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3582 ($ (-1129)))))
+((-3752 (((-1103 (-227)) $) 8)) (-3737 (((-1103 (-227)) $) 9)) (-2734 (((-650 (-650 (-950 (-227)))) $) 10)) (-3735 (((-868) $) 6)))
(((-962) (-141)) (T -962))
-((-4027 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3737 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))) (-3752 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))))
-(-13 (-619 (-868)) (-10 -8 (-15 -4027 ((-650 (-650 (-950 (-227)))) $)) (-15 -3737 ((-1103 (-227)) $)) (-15 -3752 ((-1103 (-227)) $))))
+((-2734 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3737 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))) (-3752 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2734 ((-650 (-650 (-950 (-227)))) $)) (-15 -3737 ((-1103 (-227)) $)) (-15 -3752 ((-1103 (-227)) $))))
(((-619 (-868)) . T))
-((-2260 (((-3 (-695 |#1|) "failed") |#2| (-928)) 18)))
-(((-963 |#1| |#2|) (-10 -7 (-15 -2260 ((-3 (-695 |#1|) "failed") |#2| (-928)))) (-562) (-662 |#1|)) (T -963))
-((-2260 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-928)) (-4 *5 (-562)) (-5 *2 (-695 *5)) (-5 *1 (-963 *5 *3)) (-4 *3 (-662 *5)))))
-(-10 -7 (-15 -2260 ((-3 (-695 |#1|) "failed") |#2| (-928))))
-((-3734 (((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 16)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 18)) (-1351 (((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)) 13)))
-(((-964 |#1| |#2|) (-10 -7 (-15 -3734 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1351 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)))) (-1226) (-1226)) (T -964))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-965 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-965 *6)) (-5 *1 (-964 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-965 *5)) (-4 *5 (-1226)) (-4 *2 (-1226)) (-5 *1 (-964 *5 *2)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-965 *6)) (-4 *6 (-1226)) (-4 *5 (-1226)) (-5 *2 (-965 *5)) (-5 *1 (-964 *6 *5)))))
-(-10 -7 (-15 -3734 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1351 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) |#1|) 19 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 18 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 16)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) |#1|) 15)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) 11 (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) 20 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 17) (($ $ (-1243 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) 21)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 14)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 8 (|has| $ (-6 -4448)))))
-(((-965 |#1|) (-19 |#1|) (-1226)) (T -965))
+((-2436 (((-3 (-695 |#1|) "failed") |#2| (-928)) 18)))
+(((-963 |#1| |#2|) (-10 -7 (-15 -2436 ((-3 (-695 |#1|) "failed") |#2| (-928)))) (-562) (-662 |#1|)) (T -963))
+((-2436 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-928)) (-4 *5 (-562)) (-5 *2 (-695 *5)) (-5 *1 (-963 *5 *3)) (-4 *3 (-662 *5)))))
+(-10 -7 (-15 -2436 ((-3 (-695 |#1|) "failed") |#2| (-928))))
+((-2942 (((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 16)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 18)) (-1352 (((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)) 13)))
+(((-964 |#1| |#2|) (-10 -7 (-15 -2942 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1352 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)))) (-1227) (-1227)) (T -964))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-965 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-965 *6)) (-5 *1 (-964 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-965 *5)) (-4 *5 (-1227)) (-4 *2 (-1227)) (-5 *1 (-964 *5 *2)))) (-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-965 *6)) (-4 *6 (-1227)) (-4 *5 (-1227)) (-5 *2 (-965 *5)) (-5 *1 (-964 *6 *5)))))
+(-10 -7 (-15 -2942 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1352 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) |#1|) 19 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 18 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 16)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) |#1|) 15)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) 11 (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) 20 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 17) (($ $ (-1244 (-570))) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) 21)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 14)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2426 (((-777) $) 8 (|has| $ (-6 -4449)))))
+(((-965 |#1|) (-19 |#1|) (-1227)) (T -965))
NIL
(-19 |#1|)
-((-2642 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)))
+((-3024 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)))
(((-966) (-141)) (T -966))
-((-2642 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-966)))) (-2642 (*1 *1 *1 *2) (-12 (-4 *1 (-966)) (-5 *2 (-1186)))))
-(-13 (-10 -8 (-15 -2642 ($ $ (-1186))) (-15 -2642 ($ $ (-1101 $)))))
-((-2493 (((-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)) 30) (((-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186))) 31) (((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186)) 49)))
-(((-967 |#1|) (-10 -7 (-15 -2493 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -2493 ((-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2493 ((-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)))) (-13 (-368) (-148))) (T -967))
-((-2493 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-5 *5 (-1186)) (-4 *6 (-13 (-368) (-148))) (-5 *2 (-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 *6))) (|:| |prim| (-1182 *6)))) (-5 *1 (-967 *6)))) (-2493 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-368) (-148))) (-5 *2 (-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 *5))) (|:| |prim| (-1182 *5)))) (-5 *1 (-967 *5)))) (-2493 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-959 *5)) (-5 *4 (-1186)) (-4 *5 (-13 (-368) (-148))) (-5 *2 (-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 *5)))) (-5 *1 (-967 *5)))))
-(-10 -7 (-15 -2493 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -2493 ((-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2493 ((-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186))))
-((-3326 (((-650 |#1|) |#1| |#1|) 47)) (-1552 (((-112) |#1|) 44)) (-2527 ((|#1| |#1|) 80)) (-1968 ((|#1| |#1|) 79)))
-(((-968 |#1|) (-10 -7 (-15 -1552 ((-112) |#1|)) (-15 -1968 (|#1| |#1|)) (-15 -2527 (|#1| |#1|)) (-15 -3326 ((-650 |#1|) |#1| |#1|))) (-551)) (T -968))
-((-3326 (*1 *2 *3 *3) (-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))) (-2527 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-1968 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-1552 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
-(-10 -7 (-15 -1552 ((-112) |#1|)) (-15 -1968 (|#1| |#1|)) (-15 -2527 (|#1| |#1|)) (-15 -3326 ((-650 |#1|) |#1| |#1|)))
-((-2879 (((-1281) (-868)) 9)))
-(((-969) (-10 -7 (-15 -2879 ((-1281) (-868))))) (T -969))
-((-2879 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-969)))))
-(-10 -7 (-15 -2879 ((-1281) (-868))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 78 (|has| |#1| (-562)))) (-3171 (($ $) 79 (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 34)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1890 (($ $) 31)) (-3413 (((-3 $ "failed") $) 42)) (-3543 (($ $) NIL (|has| |#1| (-458)))) (-3007 (($ $ |#1| |#2| $) 62)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) 17)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-4341 ((|#2| $) 24)) (-4414 (($ (-1 |#2| |#2|) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-1855 (($ $) 28)) (-1864 ((|#1| $) 26)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) 51)) (-1842 ((|#1| $) NIL)) (-2096 (($ $ |#2| |#1| $) 90 (-12 (|has| |#2| (-132)) (|has| |#1| (-562))))) (-2407 (((-3 $ "failed") $ $) 91 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 85 (|has| |#1| (-562)))) (-1601 ((|#2| $) 22)) (-3030 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) 46) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 41) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ |#2|) 37)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) 15 T CONST)) (-3644 (($ $ $ (-777)) 74 (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) 84 (|has| |#1| (-562)))) (-1812 (($) 27 T CONST)) (-1823 (($) 12 T CONST)) (-2872 (((-112) $ $) 83)) (-2975 (($ $ |#1|) 92 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) 69) (($ $ (-777)) 67)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 66) (($ $ |#1|) 64) (($ |#1| $) 63) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-970 |#1| |#2|) (-13 (-330 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| |#2| (-132)) (-15 -2096 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|))) (-1058) (-798)) (T -970))
-((-2096 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-970 *3 *2)) (-4 *2 (-132)) (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *2 (-798)))))
-(-13 (-330 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| |#2| (-132)) (-15 -2096 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (-3947 (($ $ $) 65 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (-3596 (((-3 $ "failed") $ $) 52 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (-3403 (((-777)) 36 (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-1856 ((|#2| $) 22)) (-2326 ((|#1| $) 21)) (-2450 (($) NIL (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))) CONST)) (-3413 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3336 (($) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-2081 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3310 (($ $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3787 (($ $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2337 (($ |#1| |#2|) 20)) (-2367 (((-928) $) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 39 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2159 (($ (-928)) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3479 (((-1129) $) NIL)) (-3684 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3688 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3735 (((-868) $) 14)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 42 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))) CONST)) (-1823 (($) 25 (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))) CONST)) (-2924 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2904 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2872 (((-112) $ $) 19)) (-2913 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2894 (((-112) $ $) 69 (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2975 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2965 (($ $ $) 58 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 55 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-2954 (($ $ $) 45 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (** (($ $ (-570)) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479)))) (($ $ (-777)) 32 (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (($ $ (-928)) NIL (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (* (($ (-570) $) 62 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-777) $) 48 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (($ (-928) $) NIL (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (($ $ $) 28 (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))))
-(((-971 |#1| |#2|) (-13 (-1109) (-10 -8 (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-732)) (IF (|has| |#2| (-732)) (-6 (-732)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-132)) (IF (|has| |#2| (-132)) (-6 (-132)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-479)) (IF (|has| |#2| (-479)) (-6 (-479)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-799)) (IF (|has| |#2| (-799)) (-6 (-799)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-856)) (IF (|has| |#2| (-856)) (-6 (-856)) |%noBranch|) |%noBranch|) (-15 -2337 ($ |#1| |#2|)) (-15 -2326 (|#1| $)) (-15 -1856 (|#2| $)))) (-1109) (-1109)) (T -971))
-((-2337 (*1 *1 *2 *3) (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2326 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))) (-1856 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-971 *3 *2)) (-4 *3 (-1109)))))
-(-13 (-1109) (-10 -8 (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-732)) (IF (|has| |#2| (-732)) (-6 (-732)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-132)) (IF (|has| |#2| (-132)) (-6 (-132)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-479)) (IF (|has| |#2| (-479)) (-6 (-479)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-799)) (IF (|has| |#2| (-799)) (-6 (-799)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-856)) (IF (|has| |#2| (-856)) (-6 (-856)) |%noBranch|) |%noBranch|) (-15 -2337 ($ |#1| |#2|)) (-15 -2326 (|#1| $)) (-15 -1856 (|#2| $))))
-((-2195 (((-1113) $) 12)) (-3057 (($ (-512) (-1113)) 14)) (-3503 (((-512) $) 9)) (-3735 (((-868) $) 24)))
-(((-972) (-13 (-619 (-868)) (-10 -8 (-15 -3503 ((-512) $)) (-15 -2195 ((-1113) $)) (-15 -3057 ($ (-512) (-1113)))))) (T -972))
-((-3503 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-972)))) (-2195 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-972)))) (-3057 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-972)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3503 ((-512) $)) (-15 -2195 ((-1113) $)) (-15 -3057 ($ (-512) (-1113)))))
-((-2416 (((-112) $ $) NIL)) (-2959 (($) NIL T CONST)) (-1778 (($ $ $) 30)) (-1754 (($ $) 24)) (-1903 (((-1168) $) NIL)) (-3573 (((-697 (-879 $ $)) $) 55)) (-3907 (((-697 $) $) 45)) (-2447 (((-697 (-879 $ $)) $) 56)) (-4006 (((-697 (-879 $ $)) $) 57)) (-3759 (((-697 |#1|) $) 36)) (-2385 (((-697 (-879 $ $)) $) 54)) (-4165 (($ $ $) 31)) (-3479 (((-1129) $) NIL)) (-1889 (($) NIL T CONST)) (-4066 (($ $ $) 32)) (-2417 (($ $ $) 29)) (-1459 (($ $ $) 27)) (-3735 (((-868) $) 59) (($ |#1|) 12)) (-1859 (((-112) $ $) NIL)) (-1765 (($ $ $) 28)) (-2872 (((-112) $ $) NIL)))
-(((-973 |#1|) (-13 (-976) (-622 |#1|) (-10 -8 (-15 -3759 ((-697 |#1|) $)) (-15 -3907 ((-697 $) $)) (-15 -2385 ((-697 (-879 $ $)) $)) (-15 -3573 ((-697 (-879 $ $)) $)) (-15 -2447 ((-697 (-879 $ $)) $)) (-15 -4006 ((-697 (-879 $ $)) $)) (-15 -1459 ($ $ $)) (-15 -2417 ($ $ $)))) (-1109)) (T -973))
-((-3759 (*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3907 (*1 *2 *1) (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-2385 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3573 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-2447 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-4006 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-1459 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))) (-2417 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
-(-13 (-976) (-622 |#1|) (-10 -8 (-15 -3759 ((-697 |#1|) $)) (-15 -3907 ((-697 $) $)) (-15 -2385 ((-697 (-879 $ $)) $)) (-15 -3573 ((-697 (-879 $ $)) $)) (-15 -2447 ((-697 (-879 $ $)) $)) (-15 -4006 ((-697 (-879 $ $)) $)) (-15 -1459 ($ $ $)) (-15 -2417 ($ $ $))))
-((-4230 (((-973 |#1|) (-973 |#1|)) 46)) (-4152 (((-973 |#1|) (-973 |#1|)) 22)) (-2481 (((-1111 |#1|) (-973 |#1|)) 41)))
-(((-974 |#1|) (-13 (-1226) (-10 -7 (-15 -4152 ((-973 |#1|) (-973 |#1|))) (-15 -2481 ((-1111 |#1|) (-973 |#1|))) (-15 -4230 ((-973 |#1|) (-973 |#1|))))) (-1109)) (T -974))
-((-4152 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))) (-2481 (*1 *2 *3) (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4)) (-5 *1 (-974 *4)))) (-4230 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
-(-13 (-1226) (-10 -7 (-15 -4152 ((-973 |#1|) (-973 |#1|))) (-15 -2481 ((-1111 |#1|) (-973 |#1|))) (-15 -4230 ((-973 |#1|) (-973 |#1|)))))
-((-1351 (((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)) 29)))
-(((-975 |#1| |#2|) (-13 (-1226) (-10 -7 (-15 -1351 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|))))) (-1109) (-1109)) (T -975))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-973 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-973 *6)) (-5 *1 (-975 *5 *6)))))
-(-13 (-1226) (-10 -7 (-15 -1351 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)))))
-((-2416 (((-112) $ $) 15)) (-2959 (($) 14 T CONST)) (-1778 (($ $ $) 6)) (-1754 (($ $) 8)) (-1903 (((-1168) $) 19)) (-4165 (($ $ $) 12)) (-3479 (((-1129) $) 18)) (-1889 (($) 13 T CONST)) (-4066 (($ $ $) 11)) (-3735 (((-868) $) 17)) (-1859 (((-112) $ $) 20)) (-1765 (($ $ $) 7)) (-2872 (((-112) $ $) 16)))
+((-3024 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-966)))) (-3024 (*1 *1 *1 *2) (-12 (-4 *1 (-966)) (-5 *2 (-1186)))))
+(-13 (-10 -8 (-15 -3024 ($ $ (-1186))) (-15 -3024 ($ $ (-1101 $)))))
+((-4181 (((-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)) 30) (((-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186))) 31) (((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186)) 49)))
+(((-967 |#1|) (-10 -7 (-15 -4181 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -4181 ((-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -4181 ((-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)))) (-13 (-368) (-148))) (T -967))
+((-4181 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-5 *5 (-1186)) (-4 *6 (-13 (-368) (-148))) (-5 *2 (-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 *6))) (|:| |prim| (-1182 *6)))) (-5 *1 (-967 *6)))) (-4181 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-368) (-148))) (-5 *2 (-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 *5))) (|:| |prim| (-1182 *5)))) (-5 *1 (-967 *5)))) (-4181 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-959 *5)) (-5 *4 (-1186)) (-4 *5 (-13 (-368) (-148))) (-5 *2 (-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 *5)))) (-5 *1 (-967 *5)))))
+(-10 -7 (-15 -4181 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -4181 ((-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -4181 ((-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186))))
+((-3332 (((-650 |#1|) |#1| |#1|) 47)) (-4037 (((-112) |#1|) 44)) (-3206 ((|#1| |#1|) 80)) (-2467 ((|#1| |#1|) 79)))
+(((-968 |#1|) (-10 -7 (-15 -4037 ((-112) |#1|)) (-15 -2467 (|#1| |#1|)) (-15 -3206 (|#1| |#1|)) (-15 -3332 ((-650 |#1|) |#1| |#1|))) (-551)) (T -968))
+((-3332 (*1 *2 *3 *3) (-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))) (-3206 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-2467 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-4037 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
+(-10 -7 (-15 -4037 ((-112) |#1|)) (-15 -2467 (|#1| |#1|)) (-15 -3206 (|#1| |#1|)) (-15 -3332 ((-650 |#1|) |#1| |#1|)))
+((-2879 (((-1282) (-868)) 9)))
+(((-969) (-10 -7 (-15 -2879 ((-1282) (-868))))) (T -969))
+((-2879 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-969)))))
+(-10 -7 (-15 -2879 ((-1282) (-868))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 78 (|has| |#1| (-562)))) (-1345 (($ $) 79 (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 34)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1891 (($ $) 31)) (-2937 (((-3 $ "failed") $) 42)) (-1767 (($ $) NIL (|has| |#1| (-458)))) (-3382 (($ $ |#1| |#2| $) 62)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) 17)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| |#2|) NIL)) (-2730 ((|#2| $) 24)) (-2206 (($ (-1 |#2| |#2|) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1857 (($ $) 28)) (-1865 ((|#1| $) 26)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) 51)) (-1846 ((|#1| $) NIL)) (-1386 (($ $ |#2| |#1| $) 90 (-12 (|has| |#2| (-132)) (|has| |#1| (-562))))) (-2406 (((-3 $ "failed") $ $) 91 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 85 (|has| |#1| (-562)))) (-3221 ((|#2| $) 22)) (-3621 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) 46) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 41) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ |#2|) 37)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) 15 T CONST)) (-3340 (($ $ $ (-777)) 74 (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) 84 (|has| |#1| (-562)))) (-1814 (($) 27 T CONST)) (-1824 (($) 12 T CONST)) (-2872 (((-112) $ $) 83)) (-2975 (($ $ |#1|) 92 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) 69) (($ $ (-777)) 67)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 66) (($ $ |#1|) 64) (($ |#1| $) 63) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-970 |#1| |#2|) (-13 (-330 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| |#2| (-132)) (-15 -1386 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|))) (-1058) (-798)) (T -970))
+((-1386 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-970 *3 *2)) (-4 *2 (-132)) (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *2 (-798)))))
+(-13 (-330 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| |#2| (-132)) (-15 -1386 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (-3125 (($ $ $) 65 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (-4119 (((-3 $ "failed") $ $) 52 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (-3403 (((-777)) 36 (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3833 ((|#2| $) 22)) (-1959 ((|#1| $) 21)) (-3761 (($) NIL (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))) CONST)) (-2937 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3336 (($) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-4340 (((-112) $) NIL (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3311 (($ $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2222 (($ $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2061 (($ |#1| |#2|) 20)) (-2332 (((-928) $) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 39 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2160 (($ (-928)) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3479 (((-1129) $) NIL)) (-2488 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2522 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3735 (((-868) $) 14)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 42 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))) CONST)) (-1824 (($) 25 (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))) CONST)) (-2924 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2904 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2872 (((-112) $ $) 19)) (-2914 (((-112) $ $) NIL (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2894 (((-112) $ $) 69 (-2740 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2975 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2965 (($ $ $) 58 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 55 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-2953 (($ $ $) 45 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (** (($ $ (-570)) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479)))) (($ $ (-777)) 32 (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (($ $ (-928)) NIL (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (* (($ (-570) $) 62 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-777) $) 48 (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (($ (-928) $) NIL (-2740 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (($ $ $) 28 (-2740 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))))
+(((-971 |#1| |#2|) (-13 (-1109) (-10 -8 (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-732)) (IF (|has| |#2| (-732)) (-6 (-732)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-132)) (IF (|has| |#2| (-132)) (-6 (-132)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-479)) (IF (|has| |#2| (-479)) (-6 (-479)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-799)) (IF (|has| |#2| (-799)) (-6 (-799)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-856)) (IF (|has| |#2| (-856)) (-6 (-856)) |%noBranch|) |%noBranch|) (-15 -2061 ($ |#1| |#2|)) (-15 -1959 (|#1| $)) (-15 -3833 (|#2| $)))) (-1109) (-1109)) (T -971))
+((-2061 (*1 *1 *2 *3) (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-1959 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))) (-3833 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-971 *3 *2)) (-4 *3 (-1109)))))
+(-13 (-1109) (-10 -8 (IF (|has| |#1| (-373)) (IF (|has| |#2| (-373)) (-6 (-373)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-732)) (IF (|has| |#2| (-732)) (-6 (-732)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-132)) (IF (|has| |#2| (-132)) (-6 (-132)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-479)) (IF (|has| |#2| (-479)) (-6 (-479)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-799)) (IF (|has| |#2| (-799)) (-6 (-799)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-856)) (IF (|has| |#2| (-856)) (-6 (-856)) |%noBranch|) |%noBranch|) (-15 -2061 ($ |#1| |#2|)) (-15 -1959 (|#1| $)) (-15 -3833 (|#2| $))))
+((-2196 (((-1113) $) 12)) (-3057 (($ (-512) (-1113)) 14)) (-3504 (((-512) $) 9)) (-3735 (((-868) $) 24)))
+(((-972) (-13 (-619 (-868)) (-10 -8 (-15 -3504 ((-512) $)) (-15 -2196 ((-1113) $)) (-15 -3057 ($ (-512) (-1113)))))) (T -972))
+((-3504 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-972)))) (-2196 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-972)))) (-3057 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-972)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3504 ((-512) $)) (-15 -2196 ((-1113) $)) (-15 -3057 ($ (-512) (-1113)))))
+((-2417 (((-112) $ $) NIL)) (-2959 (($) NIL T CONST)) (-1778 (($ $ $) 30)) (-1753 (($ $) 24)) (-4268 (((-1168) $) NIL)) (-3938 (((-697 (-879 $ $)) $) 55)) (-4029 (((-697 $) $) 45)) (-3721 (((-697 (-879 $ $)) $) 56)) (-2527 (((-697 (-879 $ $)) $) 57)) (-1999 (((-697 |#1|) $) 36)) (-4416 (((-697 (-879 $ $)) $) 54)) (-1692 (($ $ $) 31)) (-3479 (((-1129) $) NIL)) (-1890 (($) NIL T CONST)) (-2005 (($ $ $) 32)) (-1613 (($ $ $) 29)) (-4349 (($ $ $) 27)) (-3735 (((-868) $) 59) (($ |#1|) 12)) (-3866 (((-112) $ $) NIL)) (-1765 (($ $ $) 28)) (-2872 (((-112) $ $) NIL)))
+(((-973 |#1|) (-13 (-976) (-622 |#1|) (-10 -8 (-15 -1999 ((-697 |#1|) $)) (-15 -4029 ((-697 $) $)) (-15 -4416 ((-697 (-879 $ $)) $)) (-15 -3938 ((-697 (-879 $ $)) $)) (-15 -3721 ((-697 (-879 $ $)) $)) (-15 -2527 ((-697 (-879 $ $)) $)) (-15 -4349 ($ $ $)) (-15 -1613 ($ $ $)))) (-1109)) (T -973))
+((-1999 (*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-4029 (*1 *2 *1) (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-4416 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3938 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3721 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-2527 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-4349 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))) (-1613 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
+(-13 (-976) (-622 |#1|) (-10 -8 (-15 -1999 ((-697 |#1|) $)) (-15 -4029 ((-697 $) $)) (-15 -4416 ((-697 (-879 $ $)) $)) (-15 -3938 ((-697 (-879 $ $)) $)) (-15 -3721 ((-697 (-879 $ $)) $)) (-15 -2527 ((-697 (-879 $ $)) $)) (-15 -4349 ($ $ $)) (-15 -1613 ($ $ $))))
+((-4196 (((-973 |#1|) (-973 |#1|)) 46)) (-1558 (((-973 |#1|) (-973 |#1|)) 22)) (-4065 (((-1111 |#1|) (-973 |#1|)) 41)))
+(((-974 |#1|) (-13 (-1227) (-10 -7 (-15 -1558 ((-973 |#1|) (-973 |#1|))) (-15 -4065 ((-1111 |#1|) (-973 |#1|))) (-15 -4196 ((-973 |#1|) (-973 |#1|))))) (-1109)) (T -974))
+((-1558 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))) (-4065 (*1 *2 *3) (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4)) (-5 *1 (-974 *4)))) (-4196 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
+(-13 (-1227) (-10 -7 (-15 -1558 ((-973 |#1|) (-973 |#1|))) (-15 -4065 ((-1111 |#1|) (-973 |#1|))) (-15 -4196 ((-973 |#1|) (-973 |#1|)))))
+((-1352 (((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)) 29)))
+(((-975 |#1| |#2|) (-13 (-1227) (-10 -7 (-15 -1352 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|))))) (-1109) (-1109)) (T -975))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-973 *5)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *2 (-973 *6)) (-5 *1 (-975 *5 *6)))))
+(-13 (-1227) (-10 -7 (-15 -1352 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)))))
+((-2417 (((-112) $ $) 15)) (-2959 (($) 14 T CONST)) (-1778 (($ $ $) 6)) (-1753 (($ $) 8)) (-4268 (((-1168) $) 19)) (-1692 (($ $ $) 12)) (-3479 (((-1129) $) 18)) (-1890 (($) 13 T CONST)) (-2005 (($ $ $) 11)) (-3735 (((-868) $) 17)) (-3866 (((-112) $ $) 20)) (-1765 (($ $ $) 7)) (-2872 (((-112) $ $) 16)))
(((-976) (-141)) (T -976))
-((-2959 (*1 *1) (-4 *1 (-976))) (-1889 (*1 *1) (-4 *1 (-976))) (-4165 (*1 *1 *1 *1) (-4 *1 (-976))) (-4066 (*1 *1 *1 *1) (-4 *1 (-976))))
-(-13 (-113) (-1109) (-10 -8 (-15 -2959 ($) -3640) (-15 -1889 ($) -3640) (-15 -4165 ($ $ $)) (-15 -4066 ($ $ $))))
-(((-102) . T) ((-113) . T) ((-619 (-868)) . T) ((-1109) . T) ((-1226) . T))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2190 (($ $ $) 44)) (-3068 (($ $ $) 45)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3787 ((|#1| $) 46)) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2959 (*1 *1) (-4 *1 (-976))) (-1890 (*1 *1) (-4 *1 (-976))) (-1692 (*1 *1 *1 *1) (-4 *1 (-976))) (-2005 (*1 *1 *1 *1) (-4 *1 (-976))))
+(-13 (-113) (-1109) (-10 -8 (-15 -2959 ($) -3640) (-15 -1890 ($) -3640) (-15 -1692 ($ $ $)) (-15 -2005 ($ $ $))))
+(((-102) . T) ((-113) . T) ((-619 (-868)) . T) ((-1109) . T) ((-1227) . T))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-4210 (($ $ $) 44)) (-2727 (($ $ $) 45)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2222 ((|#1| $) 46)) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-977 |#1|) (-141) (-856)) (T -977))
-((-3787 (*1 *2 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-3068 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-2190 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4448) (-15 -3787 (|t#1| $)) (-15 -3068 ($ $ $)) (-15 -2190 ($ $ $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-2152 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|) 105)) (-3766 ((|#2| |#2| |#2|) 103)) (-4381 (((-2 (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|) 107)) (-1950 (((-2 (|:| |coef1| |#2|) (|:| -1874 |#2|)) |#2| |#2|) 109)) (-1635 (((-2 (|:| |coef2| |#2|) (|:| -3097 |#1|)) |#2| |#2|) 131 (|has| |#1| (-458)))) (-3021 (((-2 (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|) 56)) (-3427 (((-2 (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|) 80)) (-2549 (((-2 (|:| |coef1| |#2|) (|:| -1939 |#1|)) |#2| |#2|) 82)) (-4208 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 96)) (-2169 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 89)) (-4090 (((-2 (|:| |coef2| |#2|) (|:| -2998 |#1|)) |#2|) 121)) (-1692 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 92)) (-2349 (((-650 (-777)) |#2| |#2|) 102)) (-3637 ((|#1| |#2| |#2|) 50)) (-3800 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3097 |#1|)) |#2| |#2|) 129 (|has| |#1| (-458)))) (-3097 ((|#1| |#2| |#2|) 127 (|has| |#1| (-458)))) (-4000 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|) 54)) (-2220 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|) 79)) (-1939 ((|#1| |#2| |#2|) 76)) (-3369 (((-2 (|:| -1441 |#1|) (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2|) 41)) (-3112 ((|#2| |#2| |#2| |#2| |#1|) 67)) (-2708 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 94)) (-3769 ((|#2| |#2| |#2|) 93)) (-4294 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 87)) (-3347 ((|#2| |#2| |#2| (-777)) 85)) (-1874 ((|#2| |#2| |#2|) 135 (|has| |#1| (-458)))) (-2407 (((-1276 |#2|) (-1276 |#2|) |#1|) 22)) (-2382 (((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2|) 46)) (-2431 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2998 |#1|)) |#2|) 119)) (-2998 ((|#1| |#2|) 116)) (-3852 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 91)) (-3547 ((|#2| |#2| |#2| (-777)) 90)) (-3584 (((-650 |#2|) |#2| |#2|) 99)) (-4210 ((|#2| |#2| |#1| |#1| (-777)) 62)) (-1524 ((|#1| |#1| |#1| (-777)) 61)) (* (((-1276 |#2|) |#1| (-1276 |#2|)) 17)))
-(((-978 |#1| |#2|) (-10 -7 (-15 -1939 (|#1| |#2| |#2|)) (-15 -2220 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -3427 ((-2 (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -2549 ((-2 (|:| |coef1| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -3347 (|#2| |#2| |#2| (-777))) (-15 -4294 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2169 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3547 (|#2| |#2| |#2| (-777))) (-15 -3852 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1692 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3769 (|#2| |#2| |#2|)) (-15 -2708 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4208 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3766 (|#2| |#2| |#2|)) (-15 -2152 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -4381 ((-2 (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -1950 ((-2 (|:| |coef1| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -2998 (|#1| |#2|)) (-15 -2431 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2998 |#1|)) |#2|)) (-15 -4090 ((-2 (|:| |coef2| |#2|) (|:| -2998 |#1|)) |#2|)) (-15 -3584 ((-650 |#2|) |#2| |#2|)) (-15 -2349 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -3097 (|#1| |#2| |#2|)) (-15 -3800 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3097 |#1|)) |#2| |#2|)) (-15 -1635 ((-2 (|:| |coef2| |#2|) (|:| -3097 |#1|)) |#2| |#2|)) (-15 -1874 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1276 |#2|) |#1| (-1276 |#2|))) (-15 -2407 ((-1276 |#2|) (-1276 |#2|) |#1|)) (-15 -3369 ((-2 (|:| -1441 |#1|) (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2|)) (-15 -2382 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2|)) (-15 -1524 (|#1| |#1| |#1| (-777))) (-15 -4210 (|#2| |#2| |#1| |#1| (-777))) (-15 -3112 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3637 (|#1| |#2| |#2|)) (-15 -4000 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -3021 ((-2 (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|))) (-562) (-1252 |#1|)) (T -978))
-((-3021 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1939 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-4000 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1939 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3637 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2)))) (-3112 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3)))) (-4210 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3)))) (-1524 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4)) (-4 *4 (-1252 *2)))) (-2382 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3369 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -1441 *4) (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-2407 (*1 *2 *2 *3) (-12 (-5 *2 (-1276 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-562)) (-5 *1 (-978 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1276 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-562)) (-5 *1 (-978 *3 *4)))) (-1874 (*1 *2 *2 *2) (-12 (-4 *3 (-458)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3)))) (-1635 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3097 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3800 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3097 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3097 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2)))) (-2349 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3584 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-4090 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2998 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-2431 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2998 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-2998 (*1 *2 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2)))) (-1950 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1874 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-4381 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1874 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-2152 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1874 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3766 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3)))) (-4208 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-2708 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3769 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3)))) (-1692 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))) (-3852 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))) (-3547 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1252 *4)))) (-2169 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))) (-4294 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))) (-3347 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1252 *4)))) (-2549 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1939 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-3427 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1939 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-2220 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1939 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))) (-1939 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2)))))
-(-10 -7 (-15 -1939 (|#1| |#2| |#2|)) (-15 -2220 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -3427 ((-2 (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -2549 ((-2 (|:| |coef1| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -3347 (|#2| |#2| |#2| (-777))) (-15 -4294 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2169 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3547 (|#2| |#2| |#2| (-777))) (-15 -3852 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1692 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3769 (|#2| |#2| |#2|)) (-15 -2708 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4208 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3766 (|#2| |#2| |#2|)) (-15 -2152 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -4381 ((-2 (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -1950 ((-2 (|:| |coef1| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -2998 (|#1| |#2|)) (-15 -2431 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2998 |#1|)) |#2|)) (-15 -4090 ((-2 (|:| |coef2| |#2|) (|:| -2998 |#1|)) |#2|)) (-15 -3584 ((-650 |#2|) |#2| |#2|)) (-15 -2349 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -3097 (|#1| |#2| |#2|)) (-15 -3800 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3097 |#1|)) |#2| |#2|)) (-15 -1635 ((-2 (|:| |coef2| |#2|) (|:| -3097 |#1|)) |#2| |#2|)) (-15 -1874 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1276 |#2|) |#1| (-1276 |#2|))) (-15 -2407 ((-1276 |#2|) (-1276 |#2|) |#1|)) (-15 -3369 ((-2 (|:| -1441 |#1|) (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2|)) (-15 -2382 ((-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) |#2| |#2|)) (-15 -1524 (|#1| |#1| |#1| (-777))) (-15 -4210 (|#2| |#2| |#1| |#1| (-777))) (-15 -3112 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3637 (|#1| |#2| |#2|)) (-15 -4000 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)) (-15 -3021 ((-2 (|:| |coef2| |#2|) (|:| -1939 |#1|)) |#2| |#2|)))
-((-2416 (((-112) $ $) NIL)) (-3814 (((-1225) $) 13)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1425 (((-1144) $) 10)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-979) (-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -3814 ((-1225) $))))) (T -979))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-979)))) (-3814 (*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-979)))))
-(-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -3814 ((-1225) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 20)) (-3596 (((-3 $ "failed") $ $) 39)) (-2450 (($) NIL T CONST)) (-2456 (((-650 (-879 (-570) (-928))) (-650 (-570))) 53)) (-1513 (((-570) $) 78)) (-3879 (($ (-650 (-570))) 18)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1416 (((-650 (-570)) $) 13)) (-3684 (($ $) 57)) (-3735 (((-868) $) 74) (((-650 (-570)) $) 11)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 8 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 24)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 22)) (-2954 (($ $ $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 34)))
-(((-980) (-13 (-801) (-620 (-650 (-570))) (-619 (-650 (-570))) (-10 -8 (-15 -3879 ($ (-650 (-570)))) (-15 -2456 ((-650 (-879 (-570) (-928))) (-650 (-570)))) (-15 -1513 ((-570) $)) (-15 -3684 ($ $))))) (T -980))
-((-3879 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-980)))) (-2456 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-879 (-570) (-928)))) (-5 *1 (-980)))) (-1513 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-980)))) (-3684 (*1 *1 *1) (-5 *1 (-980))))
-(-13 (-801) (-620 (-650 (-570))) (-619 (-650 (-570))) (-10 -8 (-15 -3879 ($ (-650 (-570)))) (-15 -2456 ((-650 (-879 (-570) (-928))) (-650 (-570)))) (-15 -1513 ((-570) $)) (-15 -3684 ($ $))))
+((-2222 (*1 *2 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-2727 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-4210 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4449) (-15 -2222 (|t#1| $)) (-15 -2727 ($ $ $)) (-15 -4210 ($ $ $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-3814 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|) 105)) (-2037 ((|#2| |#2| |#2|) 103)) (-3088 (((-2 (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|) 107)) (-3506 (((-2 (|:| |coef1| |#2|) (|:| -1874 |#2|)) |#2| |#2|) 109)) (-2383 (((-2 (|:| |coef2| |#2|) (|:| -1867 |#1|)) |#2| |#2|) 131 (|has| |#1| (-458)))) (-3532 (((-2 (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|) 56)) (-1939 (((-2 (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|) 80)) (-3433 (((-2 (|:| |coef1| |#2|) (|:| -3383 |#1|)) |#2| |#2|) 82)) (-3961 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 96)) (-3995 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 89)) (-2210 (((-2 (|:| |coef2| |#2|) (|:| -3290 |#1|)) |#2|) 121)) (-2905 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 92)) (-2170 (((-650 (-777)) |#2| |#2|) 102)) (-3260 ((|#1| |#2| |#2|) 50)) (-2320 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1867 |#1|)) |#2| |#2|) 129 (|has| |#1| (-458)))) (-1867 ((|#1| |#2| |#2|) 127 (|has| |#1| (-458)))) (-3718 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|) 54)) (-3223 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|) 79)) (-3383 ((|#1| |#2| |#2|) 76)) (-2526 (((-2 (|:| -1442 |#1|) (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2|) 41)) (-1998 ((|#2| |#2| |#2| |#2| |#1|) 67)) (-2424 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 94)) (-2068 ((|#2| |#2| |#2|) 93)) (-3535 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 87)) (-3559 ((|#2| |#2| |#2| (-777)) 85)) (-1874 ((|#2| |#2| |#2|) 135 (|has| |#1| (-458)))) (-2406 (((-1277 |#2|) (-1277 |#2|) |#1|) 22)) (-4378 (((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2|) 46)) (-1742 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3290 |#1|)) |#2|) 119)) (-3290 ((|#1| |#2|) 116)) (-1643 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 91)) (-1813 ((|#2| |#2| |#2| (-777)) 90)) (-4023 (((-650 |#2|) |#2| |#2|) 99)) (-3981 ((|#2| |#2| |#1| |#1| (-777)) 62)) (-3725 ((|#1| |#1| |#1| (-777)) 61)) (* (((-1277 |#2|) |#1| (-1277 |#2|)) 17)))
+(((-978 |#1| |#2|) (-10 -7 (-15 -3383 (|#1| |#2| |#2|)) (-15 -3223 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -1939 ((-2 (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -3433 ((-2 (|:| |coef1| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -3559 (|#2| |#2| |#2| (-777))) (-15 -3535 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3995 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1813 (|#2| |#2| |#2| (-777))) (-15 -1643 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2905 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2068 (|#2| |#2| |#2|)) (-15 -2424 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3961 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2037 (|#2| |#2| |#2|)) (-15 -3814 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -3088 ((-2 (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -3506 ((-2 (|:| |coef1| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -3290 (|#1| |#2|)) (-15 -1742 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3290 |#1|)) |#2|)) (-15 -2210 ((-2 (|:| |coef2| |#2|) (|:| -3290 |#1|)) |#2|)) (-15 -4023 ((-650 |#2|) |#2| |#2|)) (-15 -2170 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -1867 (|#1| |#2| |#2|)) (-15 -2320 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1867 |#1|)) |#2| |#2|)) (-15 -2383 ((-2 (|:| |coef2| |#2|) (|:| -1867 |#1|)) |#2| |#2|)) (-15 -1874 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1277 |#2|) |#1| (-1277 |#2|))) (-15 -2406 ((-1277 |#2|) (-1277 |#2|) |#1|)) (-15 -2526 ((-2 (|:| -1442 |#1|) (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2|)) (-15 -4378 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2|)) (-15 -3725 (|#1| |#1| |#1| (-777))) (-15 -3981 (|#2| |#2| |#1| |#1| (-777))) (-15 -1998 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3260 (|#1| |#2| |#2|)) (-15 -3718 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -3532 ((-2 (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|))) (-562) (-1253 |#1|)) (T -978))
+((-3532 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3383 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3718 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3383 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3260 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-1998 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3981 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3725 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4)) (-4 *4 (-1253 *2)))) (-4378 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2526 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -1442 *4) (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2406 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-562)) (-5 *1 (-978 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-562)) (-5 *1 (-978 *3 *4)))) (-1874 (*1 *2 *2 *2) (-12 (-4 *3 (-458)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-2383 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1867 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2320 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1867 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1867 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-2170 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-4023 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2210 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3290 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1742 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3290 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3290 (*1 *2 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-3506 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1874 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3088 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1874 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3814 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1874 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2037 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3961 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2424 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2068 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-2905 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))) (-1643 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))) (-1813 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1253 *4)))) (-3995 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))) (-3535 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))) (-3559 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1253 *4)))) (-3433 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3383 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1939 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3383 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3223 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3383 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3383 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))))
+(-10 -7 (-15 -3383 (|#1| |#2| |#2|)) (-15 -3223 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -1939 ((-2 (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -3433 ((-2 (|:| |coef1| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -3559 (|#2| |#2| |#2| (-777))) (-15 -3535 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3995 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1813 (|#2| |#2| |#2| (-777))) (-15 -1643 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2905 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2068 (|#2| |#2| |#2|)) (-15 -2424 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3961 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2037 (|#2| |#2| |#2|)) (-15 -3814 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -3088 ((-2 (|:| |coef2| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -3506 ((-2 (|:| |coef1| |#2|) (|:| -1874 |#2|)) |#2| |#2|)) (-15 -3290 (|#1| |#2|)) (-15 -1742 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3290 |#1|)) |#2|)) (-15 -2210 ((-2 (|:| |coef2| |#2|) (|:| -3290 |#1|)) |#2|)) (-15 -4023 ((-650 |#2|) |#2| |#2|)) (-15 -2170 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -1867 (|#1| |#2| |#2|)) (-15 -2320 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1867 |#1|)) |#2| |#2|)) (-15 -2383 ((-2 (|:| |coef2| |#2|) (|:| -1867 |#1|)) |#2| |#2|)) (-15 -1874 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1277 |#2|) |#1| (-1277 |#2|))) (-15 -2406 ((-1277 |#2|) (-1277 |#2|) |#1|)) (-15 -2526 ((-2 (|:| -1442 |#1|) (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2|)) (-15 -4378 ((-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) |#2| |#2|)) (-15 -3725 (|#1| |#1| |#1| (-777))) (-15 -3981 (|#2| |#2| |#1| |#1| (-777))) (-15 -1998 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3260 (|#1| |#2| |#2|)) (-15 -3718 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)) (-15 -3532 ((-2 (|:| |coef2| |#2|) (|:| -3383 |#1|)) |#2| |#2|)))
+((-2417 (((-112) $ $) NIL)) (-3816 (((-1226) $) 13)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1426 (((-1144) $) 10)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-979) (-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -3816 ((-1226) $))))) (T -979))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-979)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-979)))))
+(-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -3816 ((-1226) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 20)) (-4119 (((-3 $ "failed") $ $) 39)) (-3761 (($) NIL T CONST)) (-3822 (((-650 (-879 (-570) (-928))) $) 53)) (-3614 (((-570) $) 78)) (-1911 (($ (-650 (-570))) 18)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1417 (((-650 (-570)) $) 13)) (-2488 (($ $) 56)) (-3735 (((-868) $) 74) (((-650 (-570)) $) 11)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 8 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 24)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 22)) (-2953 (($ $ $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 34)))
+(((-980) (-13 (-801) (-620 (-650 (-570))) (-619 (-650 (-570))) (-10 -8 (-15 -1911 ($ (-650 (-570)))) (-15 -3822 ((-650 (-879 (-570) (-928))) $)) (-15 -3614 ((-570) $)) (-15 -2488 ($ $))))) (T -980))
+((-1911 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-980)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-570) (-928)))) (-5 *1 (-980)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-980)))) (-2488 (*1 *1 *1) (-5 *1 (-980))))
+(-13 (-801) (-620 (-650 (-570))) (-619 (-650 (-570))) (-10 -8 (-15 -1911 ($ (-650 (-570)))) (-15 -3822 ((-650 (-879 (-570) (-928))) $)) (-15 -3614 ((-570) $)) (-15 -2488 ($ $))))
((-2975 (($ $ |#2|) 31)) (-2965 (($ $) 23) (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 17) (($ $ $) NIL) (($ $ |#2|) 21) (($ |#2| $) 20) (($ (-413 (-570)) $) 27) (($ $ (-413 (-570))) 29)))
(((-981 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -2975 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-982 |#2| |#3| |#4|) (-1058) (-798) (-856)) (T -981))
NIL
(-10 -8 (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -2975 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 |#3|) $) 86)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-4232 (((-112) $) 85)) (-2081 (((-112) $) 35)) (-1550 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73) (($ $ |#3| |#2|) 88) (($ $ (-650 |#3|) (-650 |#2|)) 87)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1601 ((|#2| $) 76)) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1715 ((|#1| $ |#2|) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 |#3|) $) 86)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-4217 (((-112) $) 85)) (-4340 (((-112) $) 35)) (-4016 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73) (($ $ |#3| |#2|) 88) (($ $ (-650 |#3|) (-650 |#2|)) 87)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3221 ((|#2| $) 76)) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1983 ((|#1| $ |#2|) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
(((-982 |#1| |#2| |#3|) (-141) (-1058) (-798) (-856)) (T -982))
-((-1864 (*1 *2 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *3 (-798)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1855 (*1 *1 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *4 (-856)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *2 *4)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *2 (-798)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-982 *4 *3 *2)) (-4 *4 (-1058)) (-4 *3 (-798)) (-4 *2 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 *5)) (-4 *1 (-982 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-798)) (-4 *6 (-856)))) (-1716 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-4232 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3049 (*1 *1 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *4 (-856)))))
-(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -3872 ($ $ |t#3| |t#2|)) (-15 -3872 ($ $ (-650 |t#3|) (-650 |t#2|))) (-15 -1855 ($ $)) (-15 -1864 (|t#1| $)) (-15 -1601 (|t#2| $)) (-15 -1716 ((-650 |t#3|) $)) (-15 -4232 ((-112) $)) (-15 -3049 ($ $))))
+((-1865 (*1 *2 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *3 (-798)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1857 (*1 *1 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *4 (-856)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *2 *4)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *2 (-798)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-982 *4 *3 *2)) (-4 *4 (-1058)) (-4 *3 (-798)) (-4 *2 (-856)))) (-3872 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 *5)) (-4 *1 (-982 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-798)) (-4 *6 (-856)))) (-1713 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-4217 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2540 (*1 *1 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *4 (-856)))))
+(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -3872 ($ $ |t#3| |t#2|)) (-15 -3872 ($ $ (-650 |t#3|) (-650 |t#2|))) (-15 -1857 ($ $)) (-15 -1865 (|t#1| $)) (-15 -3221 (|t#2| $)) (-15 -1713 ((-650 |t#3|) $)) (-15 -4217 ((-112) $)) (-15 -2540 ($ $))))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-294) |has| |#1| (-562)) ((-562) |has| |#1| (-562)) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3763 (((-1103 (-227)) $) 8)) (-3752 (((-1103 (-227)) $) 9)) (-3737 (((-1103 (-227)) $) 10)) (-4027 (((-650 (-650 (-950 (-227)))) $) 11)) (-3735 (((-868) $) 6)))
+((-3763 (((-1103 (-227)) $) 8)) (-3752 (((-1103 (-227)) $) 9)) (-3737 (((-1103 (-227)) $) 10)) (-2734 (((-650 (-650 (-950 (-227)))) $) 11)) (-3735 (((-868) $) 6)))
(((-983) (-141)) (T -983))
-((-4027 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3737 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-3752 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-3763 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
-(-13 (-619 (-868)) (-10 -8 (-15 -4027 ((-650 (-650 (-950 (-227)))) $)) (-15 -3737 ((-1103 (-227)) $)) (-15 -3752 ((-1103 (-227)) $)) (-15 -3763 ((-1103 (-227)) $))))
+((-2734 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3737 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-3752 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-3763 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2734 ((-650 (-650 (-950 (-227)))) $)) (-15 -3737 ((-1103 (-227)) $)) (-15 -3752 ((-1103 (-227)) $)) (-15 -3763 ((-1103 (-227)) $))))
(((-619 (-868)) . T))
-((-1716 (((-650 |#4|) $) 23)) (-3418 (((-112) $) 55)) (-1536 (((-112) $) 54)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#4|) 42)) (-3809 (((-112) $) 56)) (-2730 (((-112) $ $) 62)) (-1905 (((-112) $ $) 65)) (-2374 (((-112) $) 60)) (-3742 (((-650 |#5|) (-650 |#5|) $) 98)) (-4205 (((-650 |#5|) (-650 |#5|) $) 95)) (-2785 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 88)) (-3727 (((-650 |#4|) $) 27)) (-1844 (((-112) |#4| $) 34)) (-3880 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-4280 (($ $ |#4|) 39)) (-2185 (($ $ |#4|) 38)) (-1332 (($ $ |#4|) 40)) (-2872 (((-112) $ $) 46)))
-(((-984 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1536 ((-112) |#1|)) (-15 -3742 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -4205 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -2785 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3880 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3809 ((-112) |#1|)) (-15 -1905 ((-112) |#1| |#1|)) (-15 -2730 ((-112) |#1| |#1|)) (-15 -2374 ((-112) |#1|)) (-15 -3418 ((-112) |#1|)) (-15 -3288 ((-2 (|:| |under| |#1|) (|:| -3739 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4280 (|#1| |#1| |#4|)) (-15 -1332 (|#1| |#1| |#4|)) (-15 -2185 (|#1| |#1| |#4|)) (-15 -1844 ((-112) |#4| |#1|)) (-15 -3727 ((-650 |#4|) |#1|)) (-15 -1716 ((-650 |#4|) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-985 |#2| |#3| |#4| |#5|) (-1058) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -984))
+((-1713 (((-650 |#4|) $) 23)) (-2977 (((-112) $) 55)) (-3873 (((-112) $) 54)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#4|) 42)) (-2391 (((-112) $) 56)) (-1475 (((-112) $ $) 62)) (-2993 (((-112) $ $) 65)) (-2376 (((-112) $) 60)) (-2996 (((-650 |#5|) (-650 |#5|) $) 98)) (-3928 (((-650 |#5|) (-650 |#5|) $) 95)) (-3831 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 88)) (-2881 (((-650 |#4|) $) 27)) (-3710 (((-112) |#4| $) 34)) (-1920 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-3408 (($ $ |#4|) 39)) (-4164 (($ $ |#4|) 38)) (-1842 (($ $ |#4|) 40)) (-2872 (((-112) $ $) 46)))
+(((-984 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3873 ((-112) |#1|)) (-15 -2996 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3928 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3831 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1920 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2391 ((-112) |#1|)) (-15 -2993 ((-112) |#1| |#1|)) (-15 -1475 ((-112) |#1| |#1|)) (-15 -2376 ((-112) |#1|)) (-15 -2977 ((-112) |#1|)) (-15 -3287 ((-2 (|:| |under| |#1|) (|:| -2962 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3408 (|#1| |#1| |#4|)) (-15 -1842 (|#1| |#1| |#4|)) (-15 -4164 (|#1| |#1| |#4|)) (-15 -3710 ((-112) |#4| |#1|)) (-15 -2881 ((-650 |#4|) |#1|)) (-15 -1713 ((-650 |#4|) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-985 |#2| |#3| |#4| |#5|) (-1058) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -984))
NIL
-(-10 -8 (-15 -1536 ((-112) |#1|)) (-15 -3742 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -4205 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -2785 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3880 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3809 ((-112) |#1|)) (-15 -1905 ((-112) |#1| |#1|)) (-15 -2730 ((-112) |#1| |#1|)) (-15 -2374 ((-112) |#1|)) (-15 -3418 ((-112) |#1|)) (-15 -3288 ((-2 (|:| |under| |#1|) (|:| -3739 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4280 (|#1| |#1| |#4|)) (-15 -1332 (|#1| |#1| |#4|)) (-15 -2185 (|#1| |#1| |#4|)) (-15 -1844 ((-112) |#4| |#1|)) (-15 -3727 ((-650 |#4|) |#1|)) (-15 -1716 ((-650 |#4|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-1716 (((-650 |#3|) $) 34)) (-3418 (((-112) $) 27)) (-1536 (((-112) $) 18 (|has| |#1| (-562)))) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) 28)) (-3594 (((-112) $ (-777)) 45)) (-1424 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4448)))) (-2450 (($) 46 T CONST)) (-3809 (((-112) $) 23 (|has| |#1| (-562)))) (-2730 (((-112) $ $) 25 (|has| |#1| (-562)))) (-1905 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2374 (((-112) $) 26 (|has| |#1| (-562)))) (-3742 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4448)))) (-2836 (((-650 |#4|) $) 53 (|has| $ (-6 -4448)))) (-2711 ((|#3| $) 35)) (-2742 (((-112) $ (-777)) 44)) (-2849 (((-650 |#4|) $) 54 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 48)) (-3727 (((-650 |#3|) $) 33)) (-1844 (((-112) |#3| $) 32)) (-3452 (((-112) $ (-777)) 43)) (-1903 (((-1168) $) 10)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3479 (((-1129) $) 11)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1671 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) 39)) (-3329 (((-112) $) 42)) (-3743 (($) 41)) (-3486 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4448)))) (-3915 (($ $) 40)) (-1416 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 61)) (-4280 (($ $ |#3|) 29)) (-2185 (($ $ |#3|) 31)) (-1332 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-1859 (((-112) $ $) 9)) (-4368 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
+(-10 -8 (-15 -3873 ((-112) |#1|)) (-15 -2996 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3928 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3831 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1920 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2391 ((-112) |#1|)) (-15 -2993 ((-112) |#1| |#1|)) (-15 -1475 ((-112) |#1| |#1|)) (-15 -2376 ((-112) |#1|)) (-15 -2977 ((-112) |#1|)) (-15 -3287 ((-2 (|:| |under| |#1|) (|:| -2962 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3408 (|#1| |#1| |#4|)) (-15 -1842 (|#1| |#1| |#4|)) (-15 -4164 (|#1| |#1| |#4|)) (-15 -3710 ((-112) |#4| |#1|)) (-15 -2881 ((-650 |#4|) |#1|)) (-15 -1713 ((-650 |#4|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-1713 (((-650 |#3|) $) 34)) (-2977 (((-112) $) 27)) (-3873 (((-112) $) 18 (|has| |#1| (-562)))) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) 28)) (-4095 (((-112) $ (-777)) 45)) (-1425 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449)))) (-3761 (($) 46 T CONST)) (-2391 (((-112) $) 23 (|has| |#1| (-562)))) (-1475 (((-112) $ $) 25 (|has| |#1| (-562)))) (-2993 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2376 (((-112) $) 26 (|has| |#1| (-562)))) (-2996 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4449)))) (-2835 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-2451 ((|#3| $) 35)) (-1586 (((-112) $ (-777)) 44)) (-3201 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 48)) (-2881 (((-650 |#3|) $) 33)) (-3710 (((-112) |#3| $) 32)) (-2113 (((-112) $ (-777)) 43)) (-4268 (((-1168) $) 10)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3479 (((-1129) $) 11)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2697 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) 39)) (-3366 (((-112) $) 42)) (-3006 (($) 41)) (-3490 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3916 (($ $) 40)) (-1417 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 61)) (-3408 (($ $ |#3|) 29)) (-4164 (($ $ |#3|) 31)) (-1842 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3866 (((-112) $ $) 9)) (-2964 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
(((-985 |#1| |#2| |#3| |#4|) (-141) (-1058) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -985))
-((-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *1 (-985 *3 *4 *5 *6)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *1 (-985 *3 *4 *5 *6)))) (-2711 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-1074 *3 *4 *2)) (-4 *2 (-856)))) (-1716 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))) (-3727 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))) (-1844 (*1 *2 *3 *1) (-12 (-4 *1 (-985 *4 *5 *3 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112)))) (-2185 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))) (-1332 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))) (-4280 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))) (-3288 (*1 *2 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -3739 *1) (|:| |upper| *1))) (-4 *1 (-985 *4 *5 *3 *6)))) (-3418 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-2374 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-2730 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-1905 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-3809 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-3880 (*1 *2 *3 *1) (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-2785 (*1 *2 *3 *1) (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-4205 (*1 *2 *2 *1) (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)))) (-3742 (*1 *2 *2 *1) (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)))) (-1536 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))))
-(-13 (-1109) (-152 |t#4|) (-619 (-650 |t#4|)) (-10 -8 (-6 -4448) (-15 -4378 ((-3 $ "failed") (-650 |t#4|))) (-15 -3080 ($ (-650 |t#4|))) (-15 -2711 (|t#3| $)) (-15 -1716 ((-650 |t#3|) $)) (-15 -3727 ((-650 |t#3|) $)) (-15 -1844 ((-112) |t#3| $)) (-15 -2185 ($ $ |t#3|)) (-15 -1332 ($ $ |t#3|)) (-15 -4280 ($ $ |t#3|)) (-15 -3288 ((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |t#3|)) (-15 -3418 ((-112) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -2374 ((-112) $)) (-15 -2730 ((-112) $ $)) (-15 -1905 ((-112) $ $)) (-15 -3809 ((-112) $)) (-15 -3880 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -2785 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -4205 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -3742 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -1536 ((-112) $))) |%noBranch|)))
-(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-1109) . T) ((-1226) . T))
-((-4003 (((-650 |#4|) |#4| |#4|) 136)) (-3156 (((-650 |#4|) (-650 |#4|) (-112)) 125 (|has| |#1| (-458))) (((-650 |#4|) (-650 |#4|)) 126 (|has| |#1| (-458)))) (-2362 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 44)) (-2476 (((-112) |#4|) 43)) (-4048 (((-650 |#4|) |#4|) 121 (|has| |#1| (-458)))) (-3134 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|)) 24)) (-4369 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 30)) (-4080 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 31)) (-3194 (((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|)) 90)) (-2833 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 103)) (-4181 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 129)) (-3710 (((-650 |#4|) (-650 |#4|)) 128)) (-3830 (((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112)) 59) (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 61)) (-3878 ((|#4| |#4| (-650 |#4|)) 60)) (-2136 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 132 (|has| |#1| (-458)))) (-1600 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 135 (|has| |#1| (-458)))) (-3062 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 134 (|has| |#1| (-458)))) (-2261 (((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|))) 105) (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 107) (((-650 |#4|) (-650 |#4|) |#4|) 140) (((-650 |#4|) |#4| |#4|) 137) (((-650 |#4|) (-650 |#4|)) 106)) (-2425 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 118 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3029 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 52)) (-2862 (((-112) (-650 |#4|)) 79)) (-1666 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 67)) (-4342 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 37)) (-3244 (((-112) |#4|) 36)) (-3400 (((-650 |#4|) (-650 |#4|)) 116 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-1986 (((-650 |#4|) (-650 |#4|)) 117 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-1336 (((-650 |#4|) (-650 |#4|)) 83)) (-3327 (((-650 |#4|) (-650 |#4|)) 97)) (-2404 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-2406 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 50)) (-3113 (((-112) |#4|) 45)))
-(((-986 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2261 ((-650 |#4|) (-650 |#4|))) (-15 -2261 ((-650 |#4|) |#4| |#4|)) (-15 -3710 ((-650 |#4|) (-650 |#4|))) (-15 -4003 ((-650 |#4|) |#4| |#4|)) (-15 -2261 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -2261 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2261 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -2404 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1666 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -2862 ((-112) (-650 |#4|))) (-15 -3134 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -4369 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -4080 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3029 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2476 ((-112) |#4|)) (-15 -2362 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3244 ((-112) |#4|)) (-15 -4342 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3113 ((-112) |#4|)) (-15 -2406 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3830 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3830 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -3878 (|#4| |#4| (-650 |#4|))) (-15 -1336 ((-650 |#4|) (-650 |#4|))) (-15 -3194 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -3327 ((-650 |#4|) (-650 |#4|))) (-15 -2833 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4181 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -4048 ((-650 |#4|) |#4|)) (-15 -3156 ((-650 |#4|) (-650 |#4|))) (-15 -3156 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -2136 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3062 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -1600 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -1986 ((-650 |#4|) (-650 |#4|))) (-15 -3400 ((-650 |#4|) (-650 |#4|))) (-15 -2425 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|)) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -986))
-((-2425 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148)) (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-3400 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148)) (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-1986 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148)) (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-1600 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-3062 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2136 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-3156 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))) (-3156 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-4048 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-4181 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-986 *5 *6 *7 *8)))) (-2833 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-650 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *1 (-986 *6 *7 *8 *9)))) (-3327 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-3194 (*1 *2 *3) (|partial| -12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-482 *4 *5 *6 *7)) (|:| -3240 (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-1336 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-3878 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *2)))) (-3830 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))) (-3830 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2406 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-3113 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-4342 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-3244 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-2362 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2476 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-3029 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-4080 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8)))) (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))) (-4369 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8)))) (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))) (-3134 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8)))) (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))) (-2862 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *7)))) (-1666 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *5 *6 *7 *8)))) (-2404 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *7)))) (-2261 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-650 *7) (-650 *7))) (-5 *2 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))) (-2261 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2261 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *3)))) (-4003 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-3710 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2261 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-2261 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2261 ((-650 |#4|) (-650 |#4|))) (-15 -2261 ((-650 |#4|) |#4| |#4|)) (-15 -3710 ((-650 |#4|) (-650 |#4|))) (-15 -4003 ((-650 |#4|) |#4| |#4|)) (-15 -2261 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -2261 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2261 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -2404 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1666 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -2862 ((-112) (-650 |#4|))) (-15 -3134 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -4369 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -4080 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3029 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2476 ((-112) |#4|)) (-15 -2362 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3244 ((-112) |#4|)) (-15 -4342 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3113 ((-112) |#4|)) (-15 -2406 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3830 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3830 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -3878 (|#4| |#4| (-650 |#4|))) (-15 -1336 ((-650 |#4|) (-650 |#4|))) (-15 -3194 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -3327 ((-650 |#4|) (-650 |#4|))) (-15 -2833 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4181 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -4048 ((-650 |#4|) |#4|)) (-15 -3156 ((-650 |#4|) (-650 |#4|))) (-15 -3156 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -2136 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3062 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -1600 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -1986 ((-650 |#4|) (-650 |#4|))) (-15 -3400 ((-650 |#4|) (-650 |#4|))) (-15 -2425 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|))
-((-1664 (((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-2055 (((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1276 |#1|)))) (-695 |#1|) (-1276 |#1|)) 44)) (-2414 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
-(((-987 |#1|) (-10 -7 (-15 -1664 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2414 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2055 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1276 |#1|)))) (-695 |#1|) (-1276 |#1|)))) (-368)) (T -987))
-((-2055 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1276 *5))))) (-5 *1 (-987 *5)) (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)))) (-2414 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-695 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368)) (-5 *1 (-987 *5)))) (-1664 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-368)) (-5 *2 (-2 (|:| R (-695 *6)) (|:| A (-695 *6)) (|:| |Ainv| (-695 *6)))) (-5 *1 (-987 *6)) (-5 *3 (-695 *6)))))
-(-10 -7 (-15 -1664 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2414 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2055 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1276 |#1|)))) (-695 |#1|) (-1276 |#1|))))
-((-1790 (((-424 |#4|) |#4|) 56)))
-(((-988 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1790 ((-424 |#4|) |#4|))) (-856) (-799) (-458) (-956 |#3| |#2| |#1|)) (T -988))
-((-1790 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-458)) (-5 *2 (-424 *3)) (-5 *1 (-988 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
-(-10 -7 (-15 -1790 ((-424 |#4|) |#4|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3397 (($ (-777)) 113 (|has| |#1| (-23)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4449))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2697 (($ $) 91 (|has| $ (-6 -4449)))) (-2258 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3214 (($ (-650 |#1|)) 119)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-1374 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4286 (($ (-777) |#1|) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 88 (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2645 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-3452 (((-112) $ (-777)) 10)) (-3788 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1952 (($ $ |#1|) 42 (|has| $ (-6 -4449)))) (-1558 (($ $ (-650 |#1|)) 117)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1243 (-570))) 64)) (-2809 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-2184 (((-928) $) 118)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-2319 (($ $ $) 105)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 92 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 120)) (-3748 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2913 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2965 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-2954 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *1 (-985 *3 *4 *5 *6)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *1 (-985 *3 *4 *5 *6)))) (-2451 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-1074 *3 *4 *2)) (-4 *2 (-856)))) (-1713 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))) (-2881 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))) (-3710 (*1 *2 *3 *1) (-12 (-4 *1 (-985 *4 *5 *3 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112)))) (-4164 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))) (-1842 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))) (-3408 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))) (-3287 (*1 *2 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -2962 *1) (|:| |upper| *1))) (-4 *1 (-985 *4 *5 *3 *6)))) (-2977 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-2376 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-1475 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-2993 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))) (-1920 (*1 *2 *3 *1) (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-3831 (*1 *2 *3 *1) (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-3928 (*1 *2 *2 *1) (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)))) (-2996 (*1 *2 *2 *1) (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-5 *2 (-112)))))
+(-13 (-1109) (-152 |t#4|) (-619 (-650 |t#4|)) (-10 -8 (-6 -4449) (-15 -4379 ((-3 $ "failed") (-650 |t#4|))) (-15 -3080 ($ (-650 |t#4|))) (-15 -2451 (|t#3| $)) (-15 -1713 ((-650 |t#3|) $)) (-15 -2881 ((-650 |t#3|) $)) (-15 -3710 ((-112) |t#3| $)) (-15 -4164 ($ $ |t#3|)) (-15 -1842 ($ $ |t#3|)) (-15 -3408 ($ $ |t#3|)) (-15 -3287 ((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |t#3|)) (-15 -2977 ((-112) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -2376 ((-112) $)) (-15 -1475 ((-112) $ $)) (-15 -2993 ((-112) $ $)) (-15 -2391 ((-112) $)) (-15 -1920 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3831 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3928 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -2996 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -3873 ((-112) $))) |%noBranch|)))
+(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-1109) . T) ((-1227) . T))
+((-2500 (((-650 |#4|) |#4| |#4|) 136)) (-2389 (((-650 |#4|) (-650 |#4|) (-112)) 125 (|has| |#1| (-458))) (((-650 |#4|) (-650 |#4|)) 126 (|has| |#1| (-458)))) (-2287 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 44)) (-4024 (((-112) |#4|) 43)) (-2938 (((-650 |#4|) |#4|) 121 (|has| |#1| (-458)))) (-2202 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|)) 24)) (-2974 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 30)) (-2133 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 31)) (-1595 (((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|)) 90)) (-4353 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 103)) (-1866 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 129)) (-2739 (((-650 |#4|) (-650 |#4|)) 128)) (-1399 (((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112)) 59) (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 61)) (-1902 ((|#4| |#4| (-650 |#4|)) 60)) (-1817 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 132 (|has| |#1| (-458)))) (-3210 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 135 (|has| |#1| (-458)))) (-2663 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 134 (|has| |#1| (-458)))) (-2447 (((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|))) 105) (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 107) (((-650 |#4|) (-650 |#4|) |#4|) 140) (((-650 |#4|) |#4| |#4|) 137) (((-650 |#4|) (-650 |#4|)) 106)) (-1702 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 118 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3610 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 52)) (-3346 (((-112) (-650 |#4|)) 79)) (-2655 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 67)) (-2741 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 37)) (-3932 (((-112) |#4|) 36)) (-2824 (((-650 |#4|) (-650 |#4|)) 116 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-2638 (((-650 |#4|) (-650 |#4|)) 117 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-1873 (((-650 |#4|) (-650 |#4|)) 83)) (-3344 (((-650 |#4|) (-650 |#4|)) 97)) (-1501 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-1525 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 50)) (-2007 (((-112) |#4|) 45)))
+(((-986 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2447 ((-650 |#4|) (-650 |#4|))) (-15 -2447 ((-650 |#4|) |#4| |#4|)) (-15 -2739 ((-650 |#4|) (-650 |#4|))) (-15 -2500 ((-650 |#4|) |#4| |#4|)) (-15 -2447 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -2447 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2447 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -1501 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2655 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -3346 ((-112) (-650 |#4|))) (-15 -2202 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -2974 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -2133 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3610 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -4024 ((-112) |#4|)) (-15 -2287 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3932 ((-112) |#4|)) (-15 -2741 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2007 ((-112) |#4|)) (-15 -1525 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -1399 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -1399 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -1902 (|#4| |#4| (-650 |#4|))) (-15 -1873 ((-650 |#4|) (-650 |#4|))) (-15 -1595 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -3344 ((-650 |#4|) (-650 |#4|))) (-15 -4353 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1866 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -2938 ((-650 |#4|) |#4|)) (-15 -2389 ((-650 |#4|) (-650 |#4|))) (-15 -2389 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -1817 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2663 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3210 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -2638 ((-650 |#4|) (-650 |#4|))) (-15 -2824 ((-650 |#4|) (-650 |#4|))) (-15 -1702 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|)) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -986))
+((-1702 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148)) (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2824 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148)) (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2638 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148)) (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-3210 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2663 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-1817 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2389 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))) (-2389 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2938 (*1 *2 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-1866 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-986 *5 *6 *7 *8)))) (-4353 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-650 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *1 (-986 *6 *7 *8 *9)))) (-3344 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-1595 (*1 *2 *3) (|partial| -12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-482 *4 *5 *6 *7)) (|:| -3240 (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-1873 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-1902 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *2)))) (-1399 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))) (-1399 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-1525 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2007 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-2741 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-3932 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-2287 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-4024 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-3610 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2133 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8)))) (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))) (-2974 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8)))) (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))) (-2202 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8)))) (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *7)))) (-2655 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *5 *6 *7 *8)))) (-1501 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *4 *5 *6 *7)))) (-2447 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-650 *7) (-650 *7))) (-5 *2 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))) (-2447 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2447 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *3)))) (-2500 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-2739 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))) (-2447 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))) (-2447 (*1 *2 *2) (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2447 ((-650 |#4|) (-650 |#4|))) (-15 -2447 ((-650 |#4|) |#4| |#4|)) (-15 -2739 ((-650 |#4|) (-650 |#4|))) (-15 -2500 ((-650 |#4|) |#4| |#4|)) (-15 -2447 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -2447 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2447 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -1501 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2655 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -3346 ((-112) (-650 |#4|))) (-15 -2202 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -2974 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -2133 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3610 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -4024 ((-112) |#4|)) (-15 -2287 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3932 ((-112) |#4|)) (-15 -2741 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2007 ((-112) |#4|)) (-15 -1525 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -1399 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -1399 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -1902 (|#4| |#4| (-650 |#4|))) (-15 -1873 ((-650 |#4|) (-650 |#4|))) (-15 -1595 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -3344 ((-650 |#4|) (-650 |#4|))) (-15 -4353 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1866 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -2938 ((-650 |#4|) |#4|)) (-15 -2389 ((-650 |#4|) (-650 |#4|))) (-15 -2389 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -1817 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2663 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3210 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -2638 ((-650 |#4|) (-650 |#4|))) (-15 -2824 ((-650 |#4|) (-650 |#4|))) (-15 -1702 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|))
+((-2631 (((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-2173 (((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)) 44)) (-1589 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
+(((-987 |#1|) (-10 -7 (-15 -2631 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -1589 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2173 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)))) (-368)) (T -987))
+((-2173 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5))))) (-5 *1 (-987 *5)) (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)))) (-1589 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-695 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368)) (-5 *1 (-987 *5)))) (-2631 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-368)) (-5 *2 (-2 (|:| R (-695 *6)) (|:| A (-695 *6)) (|:| |Ainv| (-695 *6)))) (-5 *1 (-987 *6)) (-5 *3 (-695 *6)))))
+(-10 -7 (-15 -2631 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -1589 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2173 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))))
+((-1378 (((-424 |#4|) |#4|) 56)))
+(((-988 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1378 ((-424 |#4|) |#4|))) (-856) (-799) (-458) (-956 |#3| |#2| |#1|)) (T -988))
+((-1378 (*1 *2 *3) (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-458)) (-5 *2 (-424 *3)) (-5 *1 (-988 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
+(-10 -7 (-15 -1378 ((-424 |#4|) |#4|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3397 (($ (-777)) 113 (|has| |#1| (-23)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-2347 (($ $) 91 (|has| $ (-6 -4450)))) (-2261 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3213 (($ (-650 |#1|)) 119)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1375 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4287 (($ (-777) |#1|) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 88 (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-1935 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-2113 (((-112) $ (-777)) 10)) (-3788 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3531 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-4102 (($ $ (-650 |#1|)) 117)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4082 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-4154 (((-928) $) 118)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3000 (($ $ $) 105)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 120)) (-3749 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2914 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2965 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-2953 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-989 |#1|) (-141) (-1058)) (T -989))
-((-3214 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-989 *3)))) (-2184 (*1 *2 *1) (-12 (-4 *1 (-989 *3)) (-4 *3 (-1058)) (-5 *2 (-928)))) (-2319 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2)) (-4 *2 (-1058)))) (-1558 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-989 *3)) (-4 *3 (-1058)))))
-(-13 (-1274 |t#1|) (-624 (-650 |t#1|)) (-10 -8 (-15 -3214 ($ (-650 |t#1|))) (-15 -2184 ((-928) $)) (-15 -2319 ($ $ $)) (-15 -1558 ($ $ (-650 |t#1|)))))
-(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-624 (-650 |#1|)) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-19 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1226) . T) ((-1274 |#1|) . T))
-((-1351 (((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)) 17)))
-(((-990 |#1| |#2|) (-10 -7 (-15 -1351 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)))) (-1058) (-1058)) (T -990))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-950 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-950 *6)) (-5 *1 (-990 *5 *6)))))
-(-10 -7 (-15 -1351 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|))))
-((-3152 ((|#1| (-950 |#1|)) 14)) (-3952 ((|#1| (-950 |#1|)) 13)) (-1506 ((|#1| (-950 |#1|)) 12)) (-1707 ((|#1| (-950 |#1|)) 16)) (-3216 ((|#1| (-950 |#1|)) 24)) (-1417 ((|#1| (-950 |#1|)) 15)) (-1488 ((|#1| (-950 |#1|)) 17)) (-1865 ((|#1| (-950 |#1|)) 23)) (-3720 ((|#1| (-950 |#1|)) 22)))
-(((-991 |#1|) (-10 -7 (-15 -1506 (|#1| (-950 |#1|))) (-15 -3952 (|#1| (-950 |#1|))) (-15 -3152 (|#1| (-950 |#1|))) (-15 -1417 (|#1| (-950 |#1|))) (-15 -1707 (|#1| (-950 |#1|))) (-15 -1488 (|#1| (-950 |#1|))) (-15 -3720 (|#1| (-950 |#1|))) (-15 -1865 (|#1| (-950 |#1|))) (-15 -3216 (|#1| (-950 |#1|)))) (-1058)) (T -991))
-((-3216 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1865 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3720 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1488 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1707 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3152 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3952 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1506 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(-10 -7 (-15 -1506 (|#1| (-950 |#1|))) (-15 -3952 (|#1| (-950 |#1|))) (-15 -3152 (|#1| (-950 |#1|))) (-15 -1417 (|#1| (-950 |#1|))) (-15 -1707 (|#1| (-950 |#1|))) (-15 -1488 (|#1| (-950 |#1|))) (-15 -3720 (|#1| (-950 |#1|))) (-15 -1865 (|#1| (-950 |#1|))) (-15 -3216 (|#1| (-950 |#1|))))
-((-1409 (((-3 |#1| "failed") |#1|) 18)) (-1436 (((-3 |#1| "failed") |#1|) 6)) (-3827 (((-3 |#1| "failed") |#1|) 16)) (-2069 (((-3 |#1| "failed") |#1|) 4)) (-1344 (((-3 |#1| "failed") |#1|) 20)) (-1839 (((-3 |#1| "failed") |#1|) 8)) (-2705 (((-3 |#1| "failed") |#1| (-777)) 1)) (-3764 (((-3 |#1| "failed") |#1|) 3)) (-3588 (((-3 |#1| "failed") |#1|) 2)) (-3494 (((-3 |#1| "failed") |#1|) 21)) (-3580 (((-3 |#1| "failed") |#1|) 9)) (-2092 (((-3 |#1| "failed") |#1|) 19)) (-1652 (((-3 |#1| "failed") |#1|) 7)) (-3166 (((-3 |#1| "failed") |#1|) 17)) (-2330 (((-3 |#1| "failed") |#1|) 5)) (-3000 (((-3 |#1| "failed") |#1|) 24)) (-4372 (((-3 |#1| "failed") |#1|) 12)) (-3903 (((-3 |#1| "failed") |#1|) 22)) (-4313 (((-3 |#1| "failed") |#1|) 10)) (-2473 (((-3 |#1| "failed") |#1|) 26)) (-2604 (((-3 |#1| "failed") |#1|) 14)) (-3036 (((-3 |#1| "failed") |#1|) 27)) (-3521 (((-3 |#1| "failed") |#1|) 15)) (-2241 (((-3 |#1| "failed") |#1|) 25)) (-1690 (((-3 |#1| "failed") |#1|) 13)) (-4258 (((-3 |#1| "failed") |#1|) 23)) (-2266 (((-3 |#1| "failed") |#1|) 11)))
-(((-992 |#1|) (-141) (-1211)) (T -992))
-((-3036 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2473 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2241 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3000 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-4258 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3903 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3494 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-1344 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2092 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-1409 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3166 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3827 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3521 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2604 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-1690 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-4372 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2266 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-4313 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3580 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-1839 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-1652 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-1436 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2330 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2069 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3764 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-3588 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))) (-2705 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(-13 (-10 -7 (-15 -2705 ((-3 |t#1| "failed") |t#1| (-777))) (-15 -3588 ((-3 |t#1| "failed") |t#1|)) (-15 -3764 ((-3 |t#1| "failed") |t#1|)) (-15 -2069 ((-3 |t#1| "failed") |t#1|)) (-15 -2330 ((-3 |t#1| "failed") |t#1|)) (-15 -1436 ((-3 |t#1| "failed") |t#1|)) (-15 -1652 ((-3 |t#1| "failed") |t#1|)) (-15 -1839 ((-3 |t#1| "failed") |t#1|)) (-15 -3580 ((-3 |t#1| "failed") |t#1|)) (-15 -4313 ((-3 |t#1| "failed") |t#1|)) (-15 -2266 ((-3 |t#1| "failed") |t#1|)) (-15 -4372 ((-3 |t#1| "failed") |t#1|)) (-15 -1690 ((-3 |t#1| "failed") |t#1|)) (-15 -2604 ((-3 |t#1| "failed") |t#1|)) (-15 -3521 ((-3 |t#1| "failed") |t#1|)) (-15 -3827 ((-3 |t#1| "failed") |t#1|)) (-15 -3166 ((-3 |t#1| "failed") |t#1|)) (-15 -1409 ((-3 |t#1| "failed") |t#1|)) (-15 -2092 ((-3 |t#1| "failed") |t#1|)) (-15 -1344 ((-3 |t#1| "failed") |t#1|)) (-15 -3494 ((-3 |t#1| "failed") |t#1|)) (-15 -3903 ((-3 |t#1| "failed") |t#1|)) (-15 -4258 ((-3 |t#1| "failed") |t#1|)) (-15 -3000 ((-3 |t#1| "failed") |t#1|)) (-15 -2241 ((-3 |t#1| "failed") |t#1|)) (-15 -2473 ((-3 |t#1| "failed") |t#1|)) (-15 -3036 ((-3 |t#1| "failed") |t#1|))))
-((-1919 ((|#4| |#4| (-650 |#3|)) 57) ((|#4| |#4| |#3|) 56)) (-2423 ((|#4| |#4| (-650 |#3|)) 24) ((|#4| |#4| |#3|) 20)) (-1351 ((|#4| (-1 |#4| (-959 |#1|)) |#4|) 31)))
-(((-993 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2423 (|#4| |#4| |#3|)) (-15 -2423 (|#4| |#4| (-650 |#3|))) (-15 -1919 (|#4| |#4| |#3|)) (-15 -1919 (|#4| |#4| (-650 |#3|))) (-15 -1351 (|#4| (-1 |#4| (-959 |#1|)) |#4|))) (-1058) (-799) (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186))))) (-956 (-959 |#1|) |#2| |#3|)) (T -993))
-((-1351 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-959 *4))) (-4 *4 (-1058)) (-4 *2 (-956 (-959 *4) *5 *6)) (-4 *5 (-799)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *6 *2)))) (-1919 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-1919 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))) (-2423 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-2423 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))))
-(-10 -7 (-15 -2423 (|#4| |#4| |#3|)) (-15 -2423 (|#4| |#4| (-650 |#3|))) (-15 -1919 (|#4| |#4| |#3|)) (-15 -1919 (|#4| |#4| (-650 |#3|))) (-15 -1351 (|#4| (-1 |#4| (-959 |#1|)) |#4|)))
-((-4255 ((|#2| |#3|) 35)) (-2196 (((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 79)) (-3223 (((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 100)))
-(((-994 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3223 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -2196 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -4255 (|#2| |#3|))) (-354) (-1252 |#1|) (-1252 |#2|) (-730 |#2| |#3|)) (T -994))
-((-4255 (*1 *2 *3) (-12 (-4 *3 (-1252 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-994 *4 *2 *3 *5)) (-4 *4 (-354)) (-4 *5 (-730 *2 *3)))) (-2196 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 *3)) (-5 *2 (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-994 *4 *3 *5 *6)) (-4 *6 (-730 *3 *5)))) (-3223 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| -2331 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-994 *3 *4 *5 *6)) (-4 *6 (-730 *4 *5)))))
-(-10 -7 (-15 -3223 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -2196 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -4255 (|#2| |#3|)))
-((-2984 (((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570))))) 82)))
-(((-995 |#1| |#2|) (-10 -7 (-15 -2984 ((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570))))))) (-650 (-1186)) (-777)) (T -995))
-((-2984 (*1 *2 *2) (-12 (-5 *2 (-996 (-413 (-570)) (-870 *3) (-242 *4 (-777)) (-249 *3 (-413 (-570))))) (-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-995 *3 *4)))))
-(-10 -7 (-15 -2984 ((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))))))
-((-2416 (((-112) $ $) NIL)) (-2515 (((-3 (-112) "failed") $) 71)) (-4230 (($ $) 36 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-2156 (($ $ (-3 (-112) "failed")) 72)) (-3122 (($ (-650 |#4|) |#4|) 25)) (-1903 (((-1168) $) NIL)) (-4287 (($ $) 69)) (-3479 (((-1129) $) NIL)) (-3329 (((-112) $) 70)) (-3743 (($) 30)) (-3840 ((|#4| $) 74)) (-2233 (((-650 |#4|) $) 73)) (-3735 (((-868) $) 68)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-996 |#1| |#2| |#3| |#4|) (-13 (-1109) (-619 (-868)) (-10 -8 (-15 -3743 ($)) (-15 -3122 ($ (-650 |#4|) |#4|)) (-15 -2515 ((-3 (-112) "failed") $)) (-15 -2156 ($ $ (-3 (-112) "failed"))) (-15 -3329 ((-112) $)) (-15 -2233 ((-650 |#4|) $)) (-15 -3840 (|#4| $)) (-15 -4287 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -4230 ($ $)) |%noBranch|) |%noBranch|))) (-458) (-856) (-799) (-956 |#1| |#3| |#2|)) (T -996))
-((-3743 (*1 *1) (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))) (-3122 (*1 *1 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-956 *4 *6 *5)) (-4 *4 (-458)) (-4 *5 (-856)) (-4 *6 (-799)) (-5 *1 (-996 *4 *5 *6 *3)))) (-2515 (*1 *2 *1) (|partial| -12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-112)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-2156 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-3329 (*1 *2 *1) (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-112)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-2233 (*1 *2 *1) (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-650 *6)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-3840 (*1 *2 *1) (-12 (-4 *2 (-956 *3 *5 *4)) (-5 *1 (-996 *3 *4 *5 *2)) (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)))) (-4287 (*1 *1 *1) (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))) (-4230 (*1 *1 *1) (-12 (-4 *2 (-148)) (-4 *2 (-311)) (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))))
-(-13 (-1109) (-619 (-868)) (-10 -8 (-15 -3743 ($)) (-15 -3122 ($ (-650 |#4|) |#4|)) (-15 -2515 ((-3 (-112) "failed") $)) (-15 -2156 ($ $ (-3 (-112) "failed"))) (-15 -3329 ((-112) $)) (-15 -2233 ((-650 |#4|) $)) (-15 -3840 (|#4| $)) (-15 -4287 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -4230 ($ $)) |%noBranch|) |%noBranch|)))
-((-2884 (((-112) |#5| |#5|) 44)) (-4236 (((-112) |#5| |#5|) 59)) (-4189 (((-112) |#5| (-650 |#5|)) 81) (((-112) |#5| |#5|) 68)) (-3819 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3322 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 70)) (-3970 (((-1281)) 32)) (-1701 (((-1281) (-1168) (-1168) (-1168)) 28)) (-2037 (((-650 |#5|) (-650 |#5|)) 100)) (-1748 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) 92)) (-3523 (((-650 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 122)) (-1863 (((-112) |#5| |#5|) 53)) (-1438 (((-3 (-112) "failed") |#5| |#5|) 78)) (-1983 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-4212 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-4122 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-3389 (((-3 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 117)) (-2934 (((-650 |#5|) (-650 |#5|)) 49)))
-(((-997 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1701 ((-1281) (-1168) (-1168) (-1168))) (-15 -3970 ((-1281))) (-15 -2884 ((-112) |#5| |#5|)) (-15 -2934 ((-650 |#5|) (-650 |#5|))) (-15 -1863 ((-112) |#5| |#5|)) (-15 -4236 ((-112) |#5| |#5|)) (-15 -3819 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1983 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4212 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4122 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1438 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4189 ((-112) |#5| |#5|)) (-15 -4189 ((-112) |#5| (-650 |#5|))) (-15 -2037 ((-650 |#5|) (-650 |#5|))) (-15 -3322 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -1748 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -3523 ((-650 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -3389 ((-3 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -997))
-((-3389 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| -4300 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-997 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-3523 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| -4300 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-997 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-1748 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7)))) (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-997 *3 *4 *5 *6 *7)))) (-3322 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)))) (-2037 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-997 *3 *4 *5 *6 *7)))) (-4189 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-997 *5 *6 *7 *8 *3)))) (-4189 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-1438 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-4122 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4212 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-1983 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-3819 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4236 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-1863 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-2934 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-997 *3 *4 *5 *6 *7)))) (-2884 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3970 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281)) (-5 *1 (-997 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-1701 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1701 ((-1281) (-1168) (-1168) (-1168))) (-15 -3970 ((-1281))) (-15 -2884 ((-112) |#5| |#5|)) (-15 -2934 ((-650 |#5|) (-650 |#5|))) (-15 -1863 ((-112) |#5| |#5|)) (-15 -4236 ((-112) |#5| |#5|)) (-15 -3819 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1983 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4212 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4122 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1438 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4189 ((-112) |#5| |#5|)) (-15 -4189 ((-112) |#5| (-650 |#5|))) (-15 -2037 ((-650 |#5|) (-650 |#5|))) (-15 -3322 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -1748 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -3523 ((-650 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -3389 ((-3 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-2643 (((-1186) $) 15)) (-2195 (((-1168) $) 16)) (-3428 (($ (-1186) (-1168)) 14)) (-3735 (((-868) $) 13)))
-(((-998) (-13 (-619 (-868)) (-10 -8 (-15 -3428 ($ (-1186) (-1168))) (-15 -2643 ((-1186) $)) (-15 -2195 ((-1168) $))))) (T -998))
-((-3428 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-998)))) (-2643 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-998)))) (-2195 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-998)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3428 ($ (-1186) (-1168))) (-15 -2643 ((-1186) $)) (-15 -2195 ((-1168) $))))
-((-1351 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-999 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#4| (-1 |#2| |#1|) |#3|))) (-562) (-562) (-1001 |#1|) (-1001 |#2|)) (T -999))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-562)) (-4 *6 (-562)) (-4 *2 (-1001 *6)) (-5 *1 (-999 *5 *6 *4 *2)) (-4 *4 (-1001 *5)))))
-(-10 -7 (-15 -1351 (|#4| (-1 |#2| |#1|) |#3|)))
-((-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-1186) "failed") $) 66) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) 96)) (-3080 ((|#2| $) NIL) (((-1186) $) 61) (((-413 (-570)) $) NIL) (((-570) $) 93)) (-4177 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) 115) (((-695 |#2|) (-695 $)) 28)) (-3336 (($) 99)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 76) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 85)) (-3195 (($ $) 10)) (-2885 (((-3 $ "failed") $) 20)) (-1351 (($ (-1 |#2| |#2|) $) 22)) (-2314 (($) 16)) (-1965 (($ $) 55)) (-3447 (($ $) NIL) (($ $ (-777)) NIL) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-1418 (($ $) 12)) (-1416 (((-899 (-570)) $) 71) (((-899 (-384)) $) 80) (((-542) $) 40) (((-384) $) 44) (((-227) $) 48)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 91) (($ |#2|) NIL) (($ (-1186)) 58)) (-2744 (((-777)) 31)) (-2894 (((-112) $ $) 51)))
-(((-1000 |#1| |#2|) (-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1416 ((-227) |#1|)) (-15 -1416 ((-384) |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4378 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -3336 (|#1|)) (-15 -1965 (|#1| |#1|)) (-15 -1418 (|#1| |#1|)) (-15 -3195 (|#1| |#1|)) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -4177 ((-695 |#2|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1001 |#2|) (-562)) (T -1000))
-((-2744 (*1 *2) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-1000 *3 *4)) (-4 *3 (-1001 *4)))))
-(-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1416 ((-227) |#1|)) (-15 -1416 ((-384) |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4378 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -3336 (|#1|)) (-15 -1965 (|#1| |#1|)) (-15 -1418 (|#1| |#1|)) (-15 -3195 (|#1| |#1|)) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2822 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -4177 ((-695 |#2|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3303 ((|#1| $) 147 (|has| |#1| (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2615 (((-424 (-1182 $)) (-1182 $)) 138 (|has| |#1| (-916)))) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141 (|has| |#1| (-916)))) (-4339 (((-112) $ $) 65)) (-3140 (((-570) $) 128 (|has| |#1| (-826)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 185) (((-3 (-1186) "failed") $) 136 (|has| |#1| (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) 119 (|has| |#1| (-1047 (-570)))) (((-3 (-570) "failed") $) 117 (|has| |#1| (-1047 (-570))))) (-3080 ((|#1| $) 186) (((-1186) $) 137 (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 120 (|has| |#1| (-1047 (-570)))) (((-570) $) 118 (|has| |#1| (-1047 (-570))))) (-2372 (($ $ $) 61)) (-4177 (((-695 (-570)) (-695 $)) 160 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 159 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 158) (((-695 |#1|) (-695 $)) 157)) (-3413 (((-3 $ "failed") $) 37)) (-3336 (($) 145 (|has| |#1| (-551)))) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-1552 (((-112) $) 79)) (-1522 (((-112) $) 130 (|has| |#1| (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 154 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 153 (|has| |#1| (-893 (-384))))) (-2081 (((-112) $) 35)) (-3195 (($ $) 149)) (-4398 ((|#1| $) 151)) (-2885 (((-3 $ "failed") $) 116 (|has| |#1| (-1161)))) (-2761 (((-112) $) 129 (|has| |#1| (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3310 (($ $ $) 126 (|has| |#1| (-856)))) (-3787 (($ $ $) 125 (|has| |#1| (-856)))) (-1351 (($ (-1 |#1| |#1|) $) 177)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-2314 (($) 115 (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-1965 (($ $) 146 (|has| |#1| (-311)))) (-3739 ((|#1| $) 143 (|has| |#1| (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 140 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 139 (|has| |#1| (-916)))) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) 183 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 182 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 181 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 180 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 179 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 178 (|has| |#1| (-520 (-1186) |#1|)))) (-2272 (((-777) $) 64)) (-1876 (($ $ |#1|) 184 (|has| |#1| (-290 |#1| |#1|)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-3447 (($ $) 176 (|has| |#1| (-235))) (($ $ (-777)) 174 (|has| |#1| (-235))) (($ $ (-1186)) 172 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 171 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 170 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 169 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 162) (($ $ (-1 |#1| |#1|)) 161)) (-1418 (($ $) 148)) (-4412 ((|#1| $) 150)) (-1416 (((-899 (-570)) $) 156 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 155 (|has| |#1| (-620 (-899 (-384))))) (((-542) $) 133 (|has| |#1| (-620 (-542)))) (((-384) $) 132 (|has| |#1| (-1031))) (((-227) $) 131 (|has| |#1| (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 142 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 189) (($ (-1186)) 135 (|has| |#1| (-1047 (-1186))))) (-1918 (((-3 $ "failed") $) 134 (-2740 (|has| |#1| (-146)) (-1765 (|has| $ (-146)) (|has| |#1| (-916)))))) (-2744 (((-777)) 32 T CONST)) (-3754 ((|#1| $) 144 (|has| |#1| (-551)))) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1423 (($ $) 127 (|has| |#1| (-826)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $) 175 (|has| |#1| (-235))) (($ $ (-777)) 173 (|has| |#1| (-235))) (($ $ (-1186)) 168 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 167 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 166 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 165 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 164) (($ $ (-1 |#1| |#1|)) 163)) (-2924 (((-112) $ $) 123 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 122 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 124 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 121 (|has| |#1| (-856)))) (-2975 (($ $ $) 73) (($ |#1| |#1|) 152)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ |#1| $) 188) (($ $ |#1|) 187)))
+((-3213 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-989 *3)))) (-4154 (*1 *2 *1) (-12 (-4 *1 (-989 *3)) (-4 *3 (-1058)) (-5 *2 (-928)))) (-3000 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2)) (-4 *2 (-1058)))) (-4102 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-989 *3)) (-4 *3 (-1058)))))
+(-13 (-1275 |t#1|) (-624 (-650 |t#1|)) (-10 -8 (-15 -3213 ($ (-650 |t#1|))) (-15 -4154 ((-928) $)) (-15 -3000 ($ $ $)) (-15 -4102 ($ $ (-650 |t#1|)))))
+(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-624 (-650 |#1|)) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-19 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T) ((-1275 |#1|) . T))
+((-1352 (((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)) 17)))
+(((-990 |#1| |#2|) (-10 -7 (-15 -1352 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)))) (-1058) (-1058)) (T -990))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-950 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-950 *6)) (-5 *1 (-990 *5 *6)))))
+(-10 -7 (-15 -1352 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|))))
+((-2361 ((|#1| (-950 |#1|)) 14)) (-3169 ((|#1| (-950 |#1|)) 13)) (-1745 ((|#1| (-950 |#1|)) 12)) (-1922 ((|#1| (-950 |#1|)) 16)) (-1818 ((|#1| (-950 |#1|)) 24)) (-4417 ((|#1| (-950 |#1|)) 15)) (-1559 ((|#1| (-950 |#1|)) 17)) (-3914 ((|#1| (-950 |#1|)) 23)) (-2819 ((|#1| (-950 |#1|)) 22)))
+(((-991 |#1|) (-10 -7 (-15 -1745 (|#1| (-950 |#1|))) (-15 -3169 (|#1| (-950 |#1|))) (-15 -2361 (|#1| (-950 |#1|))) (-15 -4417 (|#1| (-950 |#1|))) (-15 -1922 (|#1| (-950 |#1|))) (-15 -1559 (|#1| (-950 |#1|))) (-15 -2819 (|#1| (-950 |#1|))) (-15 -3914 (|#1| (-950 |#1|))) (-15 -1818 (|#1| (-950 |#1|)))) (-1058)) (T -991))
+((-1818 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3914 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-2819 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1559 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1922 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-4417 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-2361 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3169 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1745 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(-10 -7 (-15 -1745 (|#1| (-950 |#1|))) (-15 -3169 (|#1| (-950 |#1|))) (-15 -2361 (|#1| (-950 |#1|))) (-15 -4417 (|#1| (-950 |#1|))) (-15 -1922 (|#1| (-950 |#1|))) (-15 -1559 (|#1| (-950 |#1|))) (-15 -2819 (|#1| (-950 |#1|))) (-15 -3914 (|#1| (-950 |#1|))) (-15 -1818 (|#1| (-950 |#1|))))
+((-4357 (((-3 |#1| "failed") |#1|) 18)) (-1481 (((-3 |#1| "failed") |#1|) 6)) (-1358 (((-3 |#1| "failed") |#1|) 16)) (-2299 (((-3 |#1| "failed") |#1|) 4)) (-1948 (((-3 |#1| "failed") |#1|) 20)) (-3665 (((-3 |#1| "failed") |#1|) 8)) (-2405 (((-3 |#1| "failed") |#1| (-777)) 1)) (-2027 (((-3 |#1| "failed") |#1|) 3)) (-4055 (((-3 |#1| "failed") |#1|) 2)) (-4402 (((-3 |#1| "failed") |#1|) 21)) (-3989 (((-3 |#1| "failed") |#1|) 9)) (-1333 (((-3 |#1| "failed") |#1|) 19)) (-2516 (((-3 |#1| "failed") |#1|) 7)) (-4422 (((-3 |#1| "failed") |#1|) 17)) (-1995 (((-3 |#1| "failed") |#1|) 5)) (-3313 (((-3 |#1| "failed") |#1|) 24)) (-3007 (((-3 |#1| "failed") |#1|) 12)) (-3985 (((-3 |#1| "failed") |#1|) 22)) (-3701 (((-3 |#1| "failed") |#1|) 10)) (-3990 (((-3 |#1| "failed") |#1|) 26)) (-2705 (((-3 |#1| "failed") |#1|) 14)) (-2441 (((-3 |#1| "failed") |#1|) 27)) (-1534 (((-3 |#1| "failed") |#1|) 15)) (-3477 (((-3 |#1| "failed") |#1|) 25)) (-2883 (((-3 |#1| "failed") |#1|) 13)) (-3163 (((-3 |#1| "failed") |#1|) 23)) (-2491 (((-3 |#1| "failed") |#1|) 11)))
+(((-992 |#1|) (-141) (-1212)) (T -992))
+((-2441 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3990 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3477 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3313 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3163 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3985 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4402 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1948 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1333 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4357 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4422 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1358 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1534 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2705 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2883 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3007 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2491 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3701 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3989 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3665 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2516 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1481 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1995 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2299 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2027 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4055 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2405 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(-13 (-10 -7 (-15 -2405 ((-3 |t#1| "failed") |t#1| (-777))) (-15 -4055 ((-3 |t#1| "failed") |t#1|)) (-15 -2027 ((-3 |t#1| "failed") |t#1|)) (-15 -2299 ((-3 |t#1| "failed") |t#1|)) (-15 -1995 ((-3 |t#1| "failed") |t#1|)) (-15 -1481 ((-3 |t#1| "failed") |t#1|)) (-15 -2516 ((-3 |t#1| "failed") |t#1|)) (-15 -3665 ((-3 |t#1| "failed") |t#1|)) (-15 -3989 ((-3 |t#1| "failed") |t#1|)) (-15 -3701 ((-3 |t#1| "failed") |t#1|)) (-15 -2491 ((-3 |t#1| "failed") |t#1|)) (-15 -3007 ((-3 |t#1| "failed") |t#1|)) (-15 -2883 ((-3 |t#1| "failed") |t#1|)) (-15 -2705 ((-3 |t#1| "failed") |t#1|)) (-15 -1534 ((-3 |t#1| "failed") |t#1|)) (-15 -1358 ((-3 |t#1| "failed") |t#1|)) (-15 -4422 ((-3 |t#1| "failed") |t#1|)) (-15 -4357 ((-3 |t#1| "failed") |t#1|)) (-15 -1333 ((-3 |t#1| "failed") |t#1|)) (-15 -1948 ((-3 |t#1| "failed") |t#1|)) (-15 -4402 ((-3 |t#1| "failed") |t#1|)) (-15 -3985 ((-3 |t#1| "failed") |t#1|)) (-15 -3163 ((-3 |t#1| "failed") |t#1|)) (-15 -3313 ((-3 |t#1| "failed") |t#1|)) (-15 -3477 ((-3 |t#1| "failed") |t#1|)) (-15 -3990 ((-3 |t#1| "failed") |t#1|)) (-15 -2441 ((-3 |t#1| "failed") |t#1|))))
+((-3137 ((|#4| |#4| (-650 |#3|)) 57) ((|#4| |#4| |#3|) 56)) (-1681 ((|#4| |#4| (-650 |#3|)) 24) ((|#4| |#4| |#3|) 20)) (-1352 ((|#4| (-1 |#4| (-959 |#1|)) |#4|) 31)))
+(((-993 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1681 (|#4| |#4| |#3|)) (-15 -1681 (|#4| |#4| (-650 |#3|))) (-15 -3137 (|#4| |#4| |#3|)) (-15 -3137 (|#4| |#4| (-650 |#3|))) (-15 -1352 (|#4| (-1 |#4| (-959 |#1|)) |#4|))) (-1058) (-799) (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186))))) (-956 (-959 |#1|) |#2| |#3|)) (T -993))
+((-1352 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-959 *4))) (-4 *4 (-1058)) (-4 *2 (-956 (-959 *4) *5 *6)) (-4 *5 (-799)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *6 *2)))) (-3137 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-3137 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))) (-1681 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-1681 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)) (-15 -2643 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))))
+(-10 -7 (-15 -1681 (|#4| |#4| |#3|)) (-15 -1681 (|#4| |#4| (-650 |#3|))) (-15 -3137 (|#4| |#4| |#3|)) (-15 -3137 (|#4| |#4| (-650 |#3|))) (-15 -1352 (|#4| (-1 |#4| (-959 |#1|)) |#4|)))
+((-3130 ((|#2| |#3|) 35)) (-4265 (((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 79)) (-3705 (((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 100)))
+(((-994 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3705 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4265 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -3130 (|#2| |#3|))) (-354) (-1253 |#1|) (-1253 |#2|) (-730 |#2| |#3|)) (T -994))
+((-3130 (*1 *2 *3) (-12 (-4 *3 (-1253 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-994 *4 *2 *3 *5)) (-4 *4 (-354)) (-4 *5 (-730 *2 *3)))) (-4265 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3)) (-5 *2 (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-994 *4 *3 *5 *6)) (-4 *6 (-730 *3 *5)))) (-3705 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -2003 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-994 *3 *4 *5 *6)) (-4 *6 (-730 *4 *5)))))
+(-10 -7 (-15 -3705 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4265 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -3130 (|#2| |#3|)))
+((-3138 (((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570))))) 82)))
+(((-995 |#1| |#2|) (-10 -7 (-15 -3138 ((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570))))))) (-650 (-1186)) (-777)) (T -995))
+((-3138 (*1 *2 *2) (-12 (-5 *2 (-996 (-413 (-570)) (-870 *3) (-242 *4 (-777)) (-249 *3 (-413 (-570))))) (-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-995 *3 *4)))))
+(-10 -7 (-15 -3138 ((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))))))
+((-2417 (((-112) $ $) NIL)) (-2515 (((-3 (-112) "failed") $) 71)) (-4196 (($ $) 36 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3861 (($ $ (-3 (-112) "failed")) 72)) (-2085 (($ (-650 |#4|) |#4|) 25)) (-4268 (((-1168) $) NIL)) (-3461 (($ $) 69)) (-3479 (((-1129) $) NIL)) (-3366 (((-112) $) 70)) (-3006 (($) 30)) (-1521 ((|#4| $) 74)) (-3378 (((-650 |#4|) $) 73)) (-3735 (((-868) $) 68)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-996 |#1| |#2| |#3| |#4|) (-13 (-1109) (-619 (-868)) (-10 -8 (-15 -3006 ($)) (-15 -2085 ($ (-650 |#4|) |#4|)) (-15 -2515 ((-3 (-112) "failed") $)) (-15 -3861 ($ $ (-3 (-112) "failed"))) (-15 -3366 ((-112) $)) (-15 -3378 ((-650 |#4|) $)) (-15 -1521 (|#4| $)) (-15 -3461 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -4196 ($ $)) |%noBranch|) |%noBranch|))) (-458) (-856) (-799) (-956 |#1| |#3| |#2|)) (T -996))
+((-3006 (*1 *1) (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-956 *4 *6 *5)) (-4 *4 (-458)) (-4 *5 (-856)) (-4 *6 (-799)) (-5 *1 (-996 *4 *5 *6 *3)))) (-2515 (*1 *2 *1) (|partial| -12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-112)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-3861 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-3366 (*1 *2 *1) (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-112)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-3378 (*1 *2 *1) (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-650 *6)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))) (-1521 (*1 *2 *1) (-12 (-4 *2 (-956 *3 *5 *4)) (-5 *1 (-996 *3 *4 *5 *2)) (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)))) (-3461 (*1 *1 *1) (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))) (-4196 (*1 *1 *1) (-12 (-4 *2 (-148)) (-4 *2 (-311)) (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))))
+(-13 (-1109) (-619 (-868)) (-10 -8 (-15 -3006 ($)) (-15 -2085 ($ (-650 |#4|) |#4|)) (-15 -2515 ((-3 (-112) "failed") $)) (-15 -3861 ($ $ (-3 (-112) "failed"))) (-15 -3366 ((-112) $)) (-15 -3378 ((-650 |#4|) $)) (-15 -1521 (|#4| $)) (-15 -3461 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -4196 ($ $)) |%noBranch|) |%noBranch|)))
+((-3571 (((-112) |#5| |#5|) 44)) (-4262 (((-112) |#5| |#5|) 59)) (-1932 (((-112) |#5| (-650 |#5|)) 81) (((-112) |#5| |#5|) 68)) (-2452 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3297 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 70)) (-3391 (((-1282)) 32)) (-1896 (((-1282) (-1168) (-1168) (-1168)) 28)) (-2017 (((-650 |#5|) (-650 |#5|)) 100)) (-2226 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) 92)) (-1546 (((-650 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 122)) (-3903 (((-112) |#5| |#5|) 53)) (-1503 (((-3 (-112) "failed") |#5| |#5|) 78)) (-2604 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-4003 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-2458 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-2721 (((-3 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 117)) (-3968 (((-650 |#5|) (-650 |#5|)) 49)))
+(((-997 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1896 ((-1282) (-1168) (-1168) (-1168))) (-15 -3391 ((-1282))) (-15 -3571 ((-112) |#5| |#5|)) (-15 -3968 ((-650 |#5|) (-650 |#5|))) (-15 -3903 ((-112) |#5| |#5|)) (-15 -4262 ((-112) |#5| |#5|)) (-15 -2452 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2604 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4003 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2458 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1503 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1932 ((-112) |#5| |#5|)) (-15 -1932 ((-112) |#5| (-650 |#5|))) (-15 -2017 ((-650 |#5|) (-650 |#5|))) (-15 -3297 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2226 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -1546 ((-650 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2721 ((-3 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -997))
+((-2721 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| -4302 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-997 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-1546 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| -4302 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-997 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-2226 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7)))) (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-997 *3 *4 *5 *6 *7)))) (-3297 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)))) (-2017 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-997 *3 *4 *5 *6 *7)))) (-1932 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-997 *5 *6 *7 *8 *3)))) (-1932 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-1503 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-2458 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4003 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-2604 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-2452 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4262 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3903 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3968 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-997 *3 *4 *5 *6 *7)))) (-3571 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3391 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282)) (-5 *1 (-997 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-1896 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282)) (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1896 ((-1282) (-1168) (-1168) (-1168))) (-15 -3391 ((-1282))) (-15 -3571 ((-112) |#5| |#5|)) (-15 -3968 ((-650 |#5|) (-650 |#5|))) (-15 -3903 ((-112) |#5| |#5|)) (-15 -4262 ((-112) |#5| |#5|)) (-15 -2452 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2604 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4003 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2458 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1503 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1932 ((-112) |#5| |#5|)) (-15 -1932 ((-112) |#5| (-650 |#5|))) (-15 -2017 ((-650 |#5|) (-650 |#5|))) (-15 -3297 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2226 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -1546 ((-650 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2721 ((-3 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-2643 (((-1186) $) 15)) (-2196 (((-1168) $) 16)) (-3428 (($ (-1186) (-1168)) 14)) (-3735 (((-868) $) 13)))
+(((-998) (-13 (-619 (-868)) (-10 -8 (-15 -3428 ($ (-1186) (-1168))) (-15 -2643 ((-1186) $)) (-15 -2196 ((-1168) $))))) (T -998))
+((-3428 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-998)))) (-2643 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-998)))) (-2196 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-998)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3428 ($ (-1186) (-1168))) (-15 -2643 ((-1186) $)) (-15 -2196 ((-1168) $))))
+((-1352 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-999 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#4| (-1 |#2| |#1|) |#3|))) (-562) (-562) (-1001 |#1|) (-1001 |#2|)) (T -999))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-562)) (-4 *6 (-562)) (-4 *2 (-1001 *6)) (-5 *1 (-999 *5 *6 *4 *2)) (-4 *4 (-1001 *5)))))
+(-10 -7 (-15 -1352 (|#4| (-1 |#2| |#1|) |#3|)))
+((-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-1186) "failed") $) 66) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) 96)) (-3080 ((|#2| $) NIL) (((-1186) $) 61) (((-413 (-570)) $) NIL) (((-570) $) 93)) (-1836 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 115) (((-695 |#2|) (-695 $)) 28)) (-3336 (($) 99)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 76) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 85)) (-1607 (($ $) 10)) (-3584 (((-3 $ "failed") $) 20)) (-1352 (($ (-1 |#2| |#2|) $) 22)) (-2315 (($) 16)) (-2442 (($ $) 55)) (-3447 (($ $) NIL) (($ $ (-777)) NIL) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-4428 (($ $) 12)) (-1417 (((-899 (-570)) $) 71) (((-899 (-384)) $) 80) (((-542) $) 40) (((-384) $) 44) (((-227) $) 48)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 91) (($ |#2|) NIL) (($ (-1186)) 58)) (-1609 (((-777)) 31)) (-2894 (((-112) $ $) 51)))
+(((-1000 |#1| |#2|) (-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1417 ((-227) |#1|)) (-15 -1417 ((-384) |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4379 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -3336 (|#1|)) (-15 -2442 (|#1| |#1|)) (-15 -4428 (|#1| |#1|)) (-15 -1607 (|#1| |#1|)) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1836 ((-695 |#2|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1001 |#2|) (-562)) (T -1000))
+((-1609 (*1 *2) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-1000 *3 *4)) (-4 *3 (-1001 *4)))))
+(-10 -8 (-15 -2894 ((-112) |#1| |#1|)) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -1417 ((-227) |#1|)) (-15 -1417 ((-384) |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -3735 (|#1| (-1186))) (-15 -4379 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -3336 (|#1|)) (-15 -2442 (|#1| |#1|)) (-15 -4428 (|#1| |#1|)) (-15 -1607 (|#1| |#1|)) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -4232 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1836 ((-695 |#2|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3113 ((|#1| $) 147 (|has| |#1| (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-2810 (((-424 (-1182 $)) (-1182 $)) 138 (|has| |#1| (-916)))) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141 (|has| |#1| (-916)))) (-2707 (((-112) $ $) 65)) (-2249 (((-570) $) 128 (|has| |#1| (-826)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 185) (((-3 (-1186) "failed") $) 136 (|has| |#1| (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) 119 (|has| |#1| (-1047 (-570)))) (((-3 (-570) "failed") $) 117 (|has| |#1| (-1047 (-570))))) (-3080 ((|#1| $) 186) (((-1186) $) 137 (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 120 (|has| |#1| (-1047 (-570)))) (((-570) $) 118 (|has| |#1| (-1047 (-570))))) (-2372 (($ $ $) 61)) (-1836 (((-695 (-570)) (-695 $)) 160 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 159 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 158) (((-695 |#1|) (-695 $)) 157)) (-2937 (((-3 $ "failed") $) 37)) (-3336 (($) 145 (|has| |#1| (-551)))) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4037 (((-112) $) 79)) (-3703 (((-112) $) 130 (|has| |#1| (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 154 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 153 (|has| |#1| (-893 (-384))))) (-4340 (((-112) $) 35)) (-1607 (($ $) 149)) (-4399 ((|#1| $) 151)) (-3584 (((-3 $ "failed") $) 116 (|has| |#1| (-1161)))) (-1774 (((-112) $) 129 (|has| |#1| (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3311 (($ $ $) 126 (|has| |#1| (-856)))) (-2222 (($ $ $) 125 (|has| |#1| (-856)))) (-1352 (($ (-1 |#1| |#1|) $) 177)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-2315 (($) 115 (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2442 (($ $) 146 (|has| |#1| (-311)))) (-2962 ((|#1| $) 143 (|has| |#1| (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 140 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 139 (|has| |#1| (-916)))) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) 183 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 182 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 181 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 180 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 179 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 178 (|has| |#1| (-520 (-1186) |#1|)))) (-2547 (((-777) $) 64)) (-1877 (($ $ |#1|) 184 (|has| |#1| (-290 |#1| |#1|)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3447 (($ $) 176 (|has| |#1| (-235))) (($ $ (-777)) 174 (|has| |#1| (-235))) (($ $ (-1186)) 172 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 171 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 170 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 169 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 162) (($ $ (-1 |#1| |#1|)) 161)) (-4428 (($ $) 148)) (-4413 ((|#1| $) 150)) (-1417 (((-899 (-570)) $) 156 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 155 (|has| |#1| (-620 (-899 (-384))))) (((-542) $) 133 (|has| |#1| (-620 (-542)))) (((-384) $) 132 (|has| |#1| (-1031))) (((-227) $) 131 (|has| |#1| (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 142 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 189) (($ (-1186)) 135 (|has| |#1| (-1047 (-1186))))) (-3127 (((-3 $ "failed") $) 134 (-2740 (|has| |#1| (-146)) (-1765 (|has| $ (-146)) (|has| |#1| (-916)))))) (-1609 (((-777)) 32 T CONST)) (-1963 ((|#1| $) 144 (|has| |#1| (-551)))) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1367 (($ $) 127 (|has| |#1| (-826)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $) 175 (|has| |#1| (-235))) (($ $ (-777)) 173 (|has| |#1| (-235))) (($ $ (-1186)) 168 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 167 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 166 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 165 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 164) (($ $ (-1 |#1| |#1|)) 163)) (-2924 (((-112) $ $) 123 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 122 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 124 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 121 (|has| |#1| (-856)))) (-2975 (($ $ $) 73) (($ |#1| |#1|) 152)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ |#1| $) 188) (($ $ |#1|) 187)))
(((-1001 |#1|) (-141) (-562)) (T -1001))
-((-2975 (*1 *1 *2 *2) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4398 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4412 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-3195 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-1418 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-3303 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-1965 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-3336 (*1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-551)) (-4 *2 (-562)))) (-3754 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551)))) (-3739 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551)))))
-(-13 (-368) (-38 |t#1|) (-1047 |t#1|) (-343 |t#1|) (-233 |t#1|) (-382 |t#1|) (-891 |t#1|) (-406 |t#1|) (-10 -8 (-15 -2975 ($ |t#1| |t#1|)) (-15 -4398 (|t#1| $)) (-15 -4412 (|t#1| $)) (-15 -3195 ($ $)) (-15 -1418 ($ $)) (IF (|has| |t#1| (-1161)) (-6 (-1161)) |%noBranch|) (IF (|has| |t#1| (-1047 (-570))) (PROGN (-6 (-1047 (-570))) (-6 (-1047 (-413 (-570))))) |%noBranch|) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-826)) (-6 (-826)) |%noBranch|) (IF (|has| |t#1| (-1031)) (-6 (-1031)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1047 (-1186))) (-6 (-1047 (-1186))) |%noBranch|) (IF (|has| |t#1| (-311)) (PROGN (-15 -3303 (|t#1| $)) (-15 -1965 ($ $))) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3336 ($)) (-15 -3754 (|t#1| $)) (-15 -3739 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-916)) (-6 (-916)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 #1=(-1186)) |has| |#1| (-1047 (-1186))) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-227)) |has| |#1| (-1031)) ((-620 (-384)) |has| |#1| (-1031)) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-233 |#1|) . T) ((-235) |has| |#1| (-235)) ((-245) . T) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) . T) ((-311) . T) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-368) . T) ((-343 |#1|) . T) ((-382 |#1|) . T) ((-406 |#1|) . T) ((-458) . T) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) . T) ((-723 |#1|) . T) ((-723 $) . T) ((-732) . T) ((-797) |has| |#1| (-826)) ((-798) |has| |#1| (-826)) ((-800) |has| |#1| (-826)) ((-801) |has| |#1| (-826)) ((-826) |has| |#1| (-826)) ((-854) |has| |#1| (-826)) ((-856) -2740 (|has| |#1| (-856)) (|has| |#1| (-826))) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-916) |has| |#1| (-916)) ((-927) . T) ((-1031) |has| |#1| (-1031)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-570))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #1#) |has| |#1| (-1047 (-1186))) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-1161)) ((-1226) . T) ((-1230) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3313 (($ (-1151 |#1| |#2|)) 11)) (-2427 (((-1151 |#1| |#2|) $) 12)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1876 ((|#2| $ (-242 |#1| |#2|)) 16)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL)))
-(((-1002 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -3313 ($ (-1151 |#1| |#2|))) (-15 -2427 ((-1151 |#1| |#2|) $)) (-15 -1876 (|#2| $ (-242 |#1| |#2|))))) (-928) (-368)) (T -1002))
-((-3313 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)) (-5 *1 (-1002 *3 *4)))) (-2427 (*1 *2 *1) (-12 (-5 *2 (-1151 *3 *4)) (-5 *1 (-1002 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 (-242 *4 *2)) (-14 *4 (-928)) (-4 *2 (-368)) (-5 *1 (-1002 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -3313 ($ (-1151 |#1| |#2|))) (-15 -2427 ((-1151 |#1| |#2|) $)) (-15 -1876 (|#2| $ (-242 |#1| |#2|)))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1425 (((-1144) $) 9)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1003) (-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $))))) (T -1003))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1003)))))
-(-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $))))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2895 (($ $) 47)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-3788 (((-777) $) 46)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1407 ((|#1| $) 45)) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-2528 ((|#1| |#1| $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-2936 ((|#1| $) 48)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-2547 ((|#1| $) 44)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1004 |#1|) (-141) (-1226)) (T -1004))
-((-2528 (*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))) (-2936 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))) (-2895 (*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))) (-3788 (*1 *2 *1) (-12 (-4 *1 (-1004 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))) (-1407 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))) (-2547 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4448) (-15 -2528 (|t#1| |t#1| $)) (-15 -2936 (|t#1| $)) (-15 -2895 ($ $)) (-15 -3788 ((-777) $)) (-15 -1407 (|t#1| $)) (-15 -2547 (|t#1| $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-4028 (((-112) $) 43)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 46)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 44)) (-2951 (((-3 (-413 (-570)) "failed") $) 78)) (-2085 (((-112) $) 72)) (-3137 (((-413 (-570)) $) 76)) (-2081 (((-112) $) 42)) (-2610 ((|#2| $) 22)) (-1351 (($ (-1 |#2| |#2|) $) 19)) (-1825 (($ $) 58)) (-3447 (($ $) NIL) (($ $ (-777)) NIL) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 35)) (-1416 (((-542) $) 67)) (-3684 (($ $) 17)) (-3735 (((-868) $) 53) (($ (-570)) 39) (($ |#2|) 37) (($ (-413 (-570))) NIL)) (-2744 (((-777)) 10)) (-1423 ((|#2| $) 71)) (-2872 (((-112) $ $) 26)) (-2894 (((-112) $ $) 69)) (-2965 (($ $) 30) (($ $ $) 29)) (-2954 (($ $ $) 27)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 34) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 31) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-1005 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -2894 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1825 (|#1| |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -1423 (|#2| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -3684 (|#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -2081 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -4028 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-1006 |#2|) (-174)) (T -1005))
-((-2744 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-1005 *3 *4)) (-4 *3 (-1006 *4)))))
-(-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -2894 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1825 (|#1| |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -1423 (|#2| |#1|)) (-15 -2610 (|#2| |#1|)) (-15 -3684 (|#1| |#1|)) (-15 -1351 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -2081 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -4028 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2954 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-4378 (((-3 (-570) "failed") $) 127 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 125 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 122)) (-3080 (((-570) $) 126 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 124 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 123)) (-4177 (((-695 (-570)) (-695 $)) 97 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 96 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 95) (((-695 |#1|) (-695 $)) 94)) (-3413 (((-3 $ "failed") $) 37)) (-3765 ((|#1| $) 87)) (-2951 (((-3 (-413 (-570)) "failed") $) 83 (|has| |#1| (-551)))) (-2085 (((-112) $) 85 (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) 84 (|has| |#1| (-551)))) (-1761 (($ |#1| |#1| |#1| |#1|) 88)) (-2081 (((-112) $) 35)) (-2610 ((|#1| $) 89)) (-3310 (($ $ $) 76 (|has| |#1| (-856)))) (-3787 (($ $ $) 75 (|has| |#1| (-856)))) (-1351 (($ (-1 |#1| |#1|) $) 98)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 80 (|has| |#1| (-368)))) (-2366 ((|#1| $) 90)) (-2470 ((|#1| $) 91)) (-1630 ((|#1| $) 92)) (-3479 (((-1129) $) 11)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) 104 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 103 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 102 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 101 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 100 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 99 (|has| |#1| (-520 (-1186) |#1|)))) (-1876 (($ $ |#1|) 105 (|has| |#1| (-290 |#1| |#1|)))) (-3447 (($ $) 121 (|has| |#1| (-235))) (($ $ (-777)) 119 (|has| |#1| (-235))) (($ $ (-1186)) 117 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 116 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 115 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 114 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 107) (($ $ (-1 |#1| |#1|)) 106)) (-1416 (((-542) $) 81 (|has| |#1| (-620 (-542))))) (-3684 (($ $) 93)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 70 (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-1918 (((-3 $ "failed") $) 82 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1423 ((|#1| $) 86 (|has| |#1| (-1069)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $) 120 (|has| |#1| (-235))) (($ $ (-777)) 118 (|has| |#1| (-235))) (($ $ (-1186)) 113 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 112 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 111 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 110 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 109) (($ $ (-1 |#1| |#1|)) 108)) (-2924 (((-112) $ $) 73 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 72 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 74 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 71 (|has| |#1| (-856)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 79 (|has| |#1| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ $ (-413 (-570))) 78 (|has| |#1| (-368))) (($ (-413 (-570)) $) 77 (|has| |#1| (-368)))))
+((-2975 (*1 *1 *2 *2) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4399 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4413 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-1607 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4428 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-3113 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-2442 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-3336 (*1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-551)) (-4 *2 (-562)))) (-1963 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551)))) (-2962 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551)))))
+(-13 (-368) (-38 |t#1|) (-1047 |t#1|) (-343 |t#1|) (-233 |t#1|) (-382 |t#1|) (-891 |t#1|) (-406 |t#1|) (-10 -8 (-15 -2975 ($ |t#1| |t#1|)) (-15 -4399 (|t#1| $)) (-15 -4413 (|t#1| $)) (-15 -1607 ($ $)) (-15 -4428 ($ $)) (IF (|has| |t#1| (-1161)) (-6 (-1161)) |%noBranch|) (IF (|has| |t#1| (-1047 (-570))) (PROGN (-6 (-1047 (-570))) (-6 (-1047 (-413 (-570))))) |%noBranch|) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-826)) (-6 (-826)) |%noBranch|) (IF (|has| |t#1| (-1031)) (-6 (-1031)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1047 (-1186))) (-6 (-1047 (-1186))) |%noBranch|) (IF (|has| |t#1| (-311)) (PROGN (-15 -3113 (|t#1| $)) (-15 -2442 ($ $))) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3336 ($)) (-15 -1963 (|t#1| $)) (-15 -2962 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-916)) (-6 (-916)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 #1=(-1186)) |has| |#1| (-1047 (-1186))) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-227)) |has| |#1| (-1031)) ((-620 (-384)) |has| |#1| (-1031)) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-620 (-899 (-384))) |has| |#1| (-620 (-899 (-384)))) ((-620 (-899 (-570))) |has| |#1| (-620 (-899 (-570)))) ((-233 |#1|) . T) ((-235) |has| |#1| (-235)) ((-245) . T) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) . T) ((-311) . T) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-368) . T) ((-343 |#1|) . T) ((-382 |#1|) . T) ((-406 |#1|) . T) ((-458) . T) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) . T) ((-723 |#1|) . T) ((-723 $) . T) ((-732) . T) ((-797) |has| |#1| (-826)) ((-798) |has| |#1| (-826)) ((-800) |has| |#1| (-826)) ((-801) |has| |#1| (-826)) ((-826) |has| |#1| (-826)) ((-854) |has| |#1| (-826)) ((-856) -2740 (|has| |#1| (-856)) (|has| |#1| (-826))) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-891 |#1|) . T) ((-916) |has| |#1| (-916)) ((-927) . T) ((-1031) |has| |#1| (-1031)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-570))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #1#) |has| |#1| (-1047 (-1186))) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-1161)) ((-1227) . T) ((-1231) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3200 (($ (-1151 |#1| |#2|)) 11)) (-2427 (((-1151 |#1| |#2|) $) 12)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1877 ((|#2| $ (-242 |#1| |#2|)) 16)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL)))
+(((-1002 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -3200 ($ (-1151 |#1| |#2|))) (-15 -2427 ((-1151 |#1| |#2|) $)) (-15 -1877 (|#2| $ (-242 |#1| |#2|))))) (-928) (-368)) (T -1002))
+((-3200 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)) (-5 *1 (-1002 *3 *4)))) (-2427 (*1 *2 *1) (-12 (-5 *2 (-1151 *3 *4)) (-5 *1 (-1002 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 (-242 *4 *2)) (-14 *4 (-928)) (-4 *2 (-368)) (-5 *1 (-1002 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -3200 ($ (-1151 |#1| |#2|))) (-15 -2427 ((-1151 |#1| |#2|) $)) (-15 -1877 (|#2| $ (-242 |#1| |#2|)))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1426 (((-1144) $) 9)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1003) (-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $))))) (T -1003))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1003)))))
+(-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-3663 (($ $) 47)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-3788 (((-777) $) 46)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-4336 ((|#1| $) 45)) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3218 ((|#1| |#1| $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-3988 ((|#1| $) 48)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-3407 ((|#1| $) 44)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1004 |#1|) (-141) (-1227)) (T -1004))
+((-3218 (*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-3988 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-3663 (*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-3788 (*1 *2 *1) (-12 (-4 *1 (-1004 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-4336 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-3407 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4449) (-15 -3218 (|t#1| |t#1| $)) (-15 -3988 (|t#1| $)) (-15 -3663 ($ $)) (-15 -3788 ((-777) $)) (-15 -4336 (|t#1| $)) (-15 -3407 (|t#1| $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-2745 (((-112) $) 43)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 46)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 44)) (-4147 (((-3 (-413 (-570)) "failed") $) 78)) (-4373 (((-112) $) 72)) (-2220 (((-413 (-570)) $) 76)) (-4340 (((-112) $) 42)) (-2771 ((|#2| $) 22)) (-1352 (($ (-1 |#2| |#2|) $) 19)) (-1826 (($ $) 58)) (-3447 (($ $) NIL) (($ $ (-777)) NIL) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 35)) (-1417 (((-542) $) 67)) (-2488 (($ $) 17)) (-3735 (((-868) $) 53) (($ (-570)) 39) (($ |#2|) 37) (($ (-413 (-570))) NIL)) (-1609 (((-777)) 10)) (-1367 ((|#2| $) 71)) (-2872 (((-112) $ $) 26)) (-2894 (((-112) $ $) 69)) (-2965 (($ $) 30) (($ $ $) 29)) (-2953 (($ $ $) 27)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 34) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 31) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-1005 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -2894 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1826 (|#1| |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -1367 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -2488 (|#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -4340 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -2745 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-1006 |#2|) (-174)) (T -1005))
+((-1609 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-1005 *3 *4)) (-4 *3 (-1006 *4)))))
+(-10 -8 (-15 -3735 (|#1| (-413 (-570)))) (-15 -2894 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1826 (|#1| |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -1367 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -2488 (|#1| |#1|)) (-15 -1352 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -4340 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -2745 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -2953 (|#1| |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4379 (((-3 (-570) "failed") $) 127 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 125 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 122)) (-3080 (((-570) $) 126 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 124 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 123)) (-1836 (((-695 (-570)) (-695 $)) 97 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 96 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 95) (((-695 |#1|) (-695 $)) 94)) (-2937 (((-3 $ "failed") $) 37)) (-3766 ((|#1| $) 87)) (-4147 (((-3 (-413 (-570)) "failed") $) 83 (|has| |#1| (-551)))) (-4373 (((-112) $) 85 (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) 84 (|has| |#1| (-551)))) (-2322 (($ |#1| |#1| |#1| |#1|) 88)) (-4340 (((-112) $) 35)) (-2771 ((|#1| $) 89)) (-3311 (($ $ $) 76 (|has| |#1| (-856)))) (-2222 (($ $ $) 75 (|has| |#1| (-856)))) (-1352 (($ (-1 |#1| |#1|) $) 98)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 80 (|has| |#1| (-368)))) (-2324 ((|#1| $) 90)) (-3959 ((|#1| $) 91)) (-3557 ((|#1| $) 92)) (-3479 (((-1129) $) 11)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) 104 (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) 103 (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) 102 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) 101 (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) 100 (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) 99 (|has| |#1| (-520 (-1186) |#1|)))) (-1877 (($ $ |#1|) 105 (|has| |#1| (-290 |#1| |#1|)))) (-3447 (($ $) 121 (|has| |#1| (-235))) (($ $ (-777)) 119 (|has| |#1| (-235))) (($ $ (-1186)) 117 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 116 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 115 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 114 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 107) (($ $ (-1 |#1| |#1|)) 106)) (-1417 (((-542) $) 81 (|has| |#1| (-620 (-542))))) (-2488 (($ $) 93)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 70 (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3127 (((-3 $ "failed") $) 82 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1367 ((|#1| $) 86 (|has| |#1| (-1069)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $) 120 (|has| |#1| (-235))) (($ $ (-777)) 118 (|has| |#1| (-235))) (($ $ (-1186)) 113 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 112 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 111 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 110 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 109) (($ $ (-1 |#1| |#1|)) 108)) (-2924 (((-112) $ $) 73 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 72 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 74 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 71 (|has| |#1| (-856)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 79 (|has| |#1| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ $ (-413 (-570))) 78 (|has| |#1| (-368))) (($ (-413 (-570)) $) 77 (|has| |#1| (-368)))))
(((-1006 |#1|) (-141) (-174)) (T -1006))
-((-3684 (*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-1630 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2470 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2366 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2610 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-1761 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3765 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-1423 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-2085 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-3137 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2951 (*1 *2 *1) (|partial| -12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))))
-(-13 (-38 |t#1|) (-417 |t#1|) (-233 |t#1|) (-343 |t#1|) (-382 |t#1|) (-10 -8 (-15 -3684 ($ $)) (-15 -1630 (|t#1| $)) (-15 -2470 (|t#1| $)) (-15 -2366 (|t#1| $)) (-15 -2610 (|t#1| $)) (-15 -1761 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -3765 (|t#1| $)) (IF (|has| |t#1| (-294)) (-6 (-294)) |%noBranch|) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-245)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -1423 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -2085 ((-112) $)) (-15 -3137 ((-413 (-570)) $)) (-15 -2951 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
+((-2488 (*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3959 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2324 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2322 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3766 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-1367 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-4373 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-2220 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-4147 (*1 *2 *1) (|partial| -12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))))
+(-13 (-38 |t#1|) (-417 |t#1|) (-233 |t#1|) (-343 |t#1|) (-382 |t#1|) (-10 -8 (-15 -2488 ($ $)) (-15 -3557 (|t#1| $)) (-15 -3959 (|t#1| $)) (-15 -2324 (|t#1| $)) (-15 -2771 (|t#1| $)) (-15 -2322 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -3766 (|t#1| $)) (IF (|has| |t#1| (-294)) (-6 (-294)) |%noBranch|) (IF (|has| |t#1| (-856)) (-6 (-856)) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-245)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -1367 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -4373 ((-112) $)) (-15 -2220 ((-413 (-570)) $)) (-15 -4147 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-368)) ((-38 |#1|) . T) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-368)) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-233 |#1|) . T) ((-235) |has| |#1| (-235)) ((-245) |has| |#1| (-368)) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) -2740 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-343 |#1|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-520 (-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((-520 |#1| |#1|) |has| |#1| (-313 |#1|)) ((-652 #0#) |has| |#1| (-368)) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-368)) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-368)) ((-646 |#1|) . T) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-368)) ((-723 |#1|) . T) ((-732) . T) ((-856) |has| |#1| (-856)) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1060 #0#) |has| |#1| (-368)) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-1065 #0#) |has| |#1| (-368)) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1351 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-1007 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#3| (-1 |#4| |#2|) |#1|))) (-1006 |#2|) (-174) (-1006 |#4|) (-174)) (T -1007))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-4 *2 (-1006 *6)) (-5 *1 (-1007 *4 *5 *2 *6)) (-4 *4 (-1006 *5)))))
-(-10 -7 (-15 -1351 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3765 ((|#1| $) 12)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-2085 (((-112) $) NIL (|has| |#1| (-551)))) (-3137 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-1761 (($ |#1| |#1| |#1| |#1|) 16)) (-2081 (((-112) $) NIL)) (-2610 ((|#1| $) NIL)) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-2366 ((|#1| $) 15)) (-2470 ((|#1| $) 14)) (-1630 ((|#1| $) 13)) (-3479 (((-1129) $) NIL)) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-1876 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-3447 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3684 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1423 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1812 (($) 8 T CONST)) (-1823 (($) 10 T CONST)) (-2791 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-368)))))
+((-1352 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-1007 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#3| (-1 |#4| |#2|) |#1|))) (-1006 |#2|) (-174) (-1006 |#4|) (-174)) (T -1007))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-174)) (-4 *6 (-174)) (-4 *2 (-1006 *6)) (-5 *1 (-1007 *4 *5 *2 *6)) (-4 *4 (-1006 *5)))))
+(-10 -7 (-15 -1352 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3766 ((|#1| $) 12)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-4373 (((-112) $) NIL (|has| |#1| (-551)))) (-2220 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-2322 (($ |#1| |#1| |#1| |#1|) 16)) (-4340 (((-112) $) NIL)) (-2771 ((|#1| $) NIL)) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-2324 ((|#1| $) 15)) (-3959 ((|#1| $) 14)) (-3557 ((|#1| $) 13)) (-3479 (((-1129) $) NIL)) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-313 |#1|))) (($ $ (-298 |#1|)) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-298 |#1|))) NIL (|has| |#1| (-313 |#1|))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-520 (-1186) |#1|))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-520 (-1186) |#1|)))) (-1877 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-3447 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-2488 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1367 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1814 (($) 8 T CONST)) (-1824 (($) 10 T CONST)) (-2791 (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-368)))))
(((-1008 |#1|) (-1006 |#1|) (-174)) (T -1008))
NIL
(-1006 |#1|)
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (((-112) $ (-777)) NIL)) (-2450 (($) NIL T CONST)) (-2895 (($ $) 23)) (-3017 (($ (-650 |#1|)) 33)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-3788 (((-777) $) 26)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3784 ((|#1| $) 28)) (-2278 (($ |#1| $) 17)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1407 ((|#1| $) 27)) (-1899 ((|#1| $) 22)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-2528 ((|#1| |#1| $) 16)) (-3329 (((-112) $) 18)) (-3743 (($) NIL)) (-2936 ((|#1| $) 21)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) NIL)) (-2547 ((|#1| $) 30)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1009 |#1|) (-13 (-1004 |#1|) (-10 -8 (-15 -3017 ($ (-650 |#1|))))) (-1109)) (T -1009))
-((-3017 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
-(-13 (-1004 |#1|) (-10 -8 (-15 -3017 ($ (-650 |#1|)))))
-((-3753 (($ $) 12)) (-2598 (($ $ (-570)) 13)))
-(((-1010 |#1|) (-10 -8 (-15 -3753 (|#1| |#1|)) (-15 -2598 (|#1| |#1| (-570)))) (-1011)) (T -1010))
-NIL
-(-10 -8 (-15 -3753 (|#1| |#1|)) (-15 -2598 (|#1| |#1| (-570))))
-((-3753 (($ $) 6)) (-2598 (($ $ (-570)) 7)) (** (($ $ (-413 (-570))) 8)))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4095 (((-112) $ (-777)) NIL)) (-3761 (($) NIL T CONST)) (-3663 (($ $) 23)) (-3494 (($ (-650 |#1|)) 33)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-3788 (((-777) $) 26)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2192 ((|#1| $) 28)) (-2599 (($ |#1| $) 17)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-4336 ((|#1| $) 27)) (-4223 ((|#1| $) 22)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3218 ((|#1| |#1| $) 16)) (-3366 (((-112) $) 18)) (-3006 (($) NIL)) (-3988 ((|#1| $) 21)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) NIL)) (-3407 ((|#1| $) 30)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1009 |#1|) (-13 (-1004 |#1|) (-10 -8 (-15 -3494 ($ (-650 |#1|))))) (-1109)) (T -1009))
+((-3494 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
+(-13 (-1004 |#1|) (-10 -8 (-15 -3494 ($ (-650 |#1|)))))
+((-3754 (($ $) 12)) (-2665 (($ $ (-570)) 13)))
+(((-1010 |#1|) (-10 -8 (-15 -3754 (|#1| |#1|)) (-15 -2665 (|#1| |#1| (-570)))) (-1011)) (T -1010))
+NIL
+(-10 -8 (-15 -3754 (|#1| |#1|)) (-15 -2665 (|#1| |#1| (-570))))
+((-3754 (($ $) 6)) (-2665 (($ $ (-570)) 7)) (** (($ $ (-413 (-570))) 8)))
(((-1011) (-141)) (T -1011))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-413 (-570))))) (-2598 (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))) (-3753 (*1 *1 *1) (-4 *1 (-1011))))
-(-13 (-10 -8 (-15 -3753 ($ $)) (-15 -2598 ($ $ (-570))) (-15 ** ($ $ (-413 (-570))))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3646 (((-2 (|:| |num| (-1276 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-3171 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2720 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-2945 (((-695 (-413 |#2|)) (-1276 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3071 (((-413 |#2|) $) NIL)) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1790 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-4339 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3403 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-2796 (((-112)) NIL)) (-3024 (((-112) |#1|) 165) (((-112) |#2|) 169)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-3 (-413 |#2|) "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-2049 (($ (-1276 (-413 |#2|)) (-1276 $)) NIL) (($ (-1276 (-413 |#2|))) 81) (($ (-1276 |#2|) |#2|) NIL)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2372 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2710 (((-695 (-413 |#2|)) $ (-1276 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-413 |#2|))) (|:| |vec| (-1276 (-413 |#2|)))) (-695 $) (-1276 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-2906 (((-1276 $) (-1276 $)) NIL)) (-3529 (($ |#3|) 75) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-3413 (((-3 $ "failed") $) NIL)) (-2772 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-1861 (((-112) |#1| |#1|) NIL)) (-3934 (((-928)) NIL)) (-3336 (($) NIL (|has| (-413 |#2|) (-373)))) (-4363 (((-112)) NIL)) (-3090 (((-112) |#1|) 61) (((-112) |#2|) 167)) (-2381 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-3543 (($ $) NIL)) (-2493 (($) NIL (|has| (-413 |#2|) (-354)))) (-2036 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-2774 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-1552 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-3157 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-2081 (((-112) $) NIL)) (-3858 (((-777)) NIL)) (-1606 (((-1276 $) (-1276 $)) NIL)) (-2610 (((-413 |#2|) $) NIL)) (-2554 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-2885 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-1638 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-2367 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3516 ((|#3| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-1903 (((-1168) $) NIL)) (-2285 (((-695 (-413 |#2|))) 57)) (-2505 (((-695 (-413 |#2|))) 56)) (-1825 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-4019 (($ (-1276 |#2|) |#2|) 82)) (-2613 (((-695 (-413 |#2|))) 55)) (-3883 (((-695 (-413 |#2|))) 54)) (-3203 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 97)) (-1369 (((-2 (|:| |num| (-1276 |#2|)) (|:| |den| |#2|)) $) 88)) (-3524 (((-1276 $)) 51)) (-3223 (((-1276 $)) 50)) (-3075 (((-112) $) NIL)) (-1828 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2314 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2159 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-3660 (((-3 |#2| "failed")) 70)) (-3479 (((-1129) $) NIL)) (-4334 (((-777)) NIL)) (-2339 (($) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1874 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3738 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2407 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2272 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1876 ((|#1| $ |#1| |#1|) NIL)) (-4418 (((-3 |#2| "failed")) 68)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2998 (((-413 |#2|) (-1276 $)) NIL) (((-413 |#2|)) 47)) (-2845 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3447 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-4399 (((-695 (-413 |#2|)) (-1276 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-2886 ((|#3|) 58)) (-2163 (($) NIL (|has| (-413 |#2|) (-354)))) (-1807 (((-1276 (-413 |#2|)) $ (-1276 $)) NIL) (((-695 (-413 |#2|)) (-1276 $) (-1276 $)) NIL) (((-1276 (-413 |#2|)) $) 83) (((-695 (-413 |#2|)) (-1276 $)) NIL)) (-1416 (((-1276 (-413 |#2|)) $) NIL) (($ (-1276 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-1326 (((-1276 $) (-1276 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1918 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-3674 ((|#3| $) NIL)) (-2744 (((-777)) NIL T CONST)) (-3222 (((-112)) 65)) (-4050 (((-112) |#1|) 170) (((-112) |#2|) 171)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) NIL)) (-1681 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3475 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-3114 (((-112)) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| (-413 |#2|) (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 |#2|)) NIL) (($ (-413 |#2|) $) NIL) (($ (-413 (-570)) $) NIL (|has| (-413 |#2|) (-368))) (($ $ (-413 (-570))) NIL (|has| (-413 |#2|) (-368)))))
-(((-1012 |#1| |#2| |#3| |#4| |#5|) (-347 |#1| |#2| |#3|) (-1230) (-1252 |#1|) (-1252 (-413 |#2|)) (-413 |#2|) (-777)) (T -1012))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-413 (-570))))) (-2665 (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))) (-3754 (*1 *1 *1) (-4 *1 (-1011))))
+(-13 (-10 -8 (-15 -3754 ($ $)) (-15 -2665 ($ $ (-570))) (-15 ** ($ $ (-413 (-570))))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3351 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-1345 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1372 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-4084 (((-695 (-413 |#2|)) (-1277 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3071 (((-413 |#2|) $) NIL)) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1378 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2707 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3403 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-3941 (((-112)) NIL)) (-3562 (((-112) |#1|) 165) (((-112) |#2|) 169)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-3 (-413 |#2|) "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-2125 (($ (-1277 (-413 |#2|)) (-1277 $)) NIL) (($ (-1277 (-413 |#2|))) 81) (($ (-1277 |#2|) |#2|) NIL)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2372 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2443 (((-695 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-3664 (((-1277 $) (-1277 $)) NIL)) (-3529 (($ |#3|) 75) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-2937 (((-3 $ "failed") $) NIL)) (-1882 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-3893 (((-112) |#1| |#1|) NIL)) (-3933 (((-928)) NIL)) (-3336 (($) NIL (|has| (-413 |#2|) (-373)))) (-2913 (((-112)) NIL)) (-2899 (((-112) |#1|) 61) (((-112) |#2|) 167)) (-2382 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-1767 (($ $) NIL)) (-4181 (($) NIL (|has| (-413 |#2|) (-354)))) (-2006 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-1901 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-4037 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-4331 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-4340 (((-112) $) NIL)) (-1697 (((-777)) NIL)) (-3279 (((-1277 $) (-1277 $)) NIL)) (-2771 (((-413 |#2|) $) NIL)) (-3492 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-3584 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2399 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-2332 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3514 ((|#3| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-4268 (((-1168) $) NIL)) (-2654 (((-695 (-413 |#2|))) 57)) (-4305 (((-695 (-413 |#2|))) 56)) (-1826 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2646 (($ (-1277 |#2|) |#2|) 82)) (-2792 (((-695 (-413 |#2|))) 55)) (-3795 (((-695 (-413 |#2|))) 54)) (-1684 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 97)) (-3658 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 88)) (-1555 (((-1277 $)) 51)) (-3705 (((-1277 $)) 50)) (-2790 (((-112) $) NIL)) (-1724 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2315 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2160 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-3495 (((-3 |#2| "failed")) 70)) (-3479 (((-1129) $) NIL)) (-2653 (((-777)) NIL)) (-2340 (($) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1874 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3739 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2406 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2547 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1877 ((|#1| $ |#1| |#1|) NIL)) (-2243 (((-3 |#2| "failed")) 68)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3290 (((-413 |#2|) (-1277 $)) NIL) (((-413 |#2|)) 47)) (-3156 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3447 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2100 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-3597 ((|#3|) 58)) (-3929 (($) NIL (|has| (-413 |#2|) (-354)))) (-1533 (((-1277 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 |#2|)) $) 83) (((-695 (-413 |#2|)) (-1277 $)) NIL)) (-1417 (((-1277 (-413 |#2|)) $) NIL) (($ (-1277 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-1776 (((-1277 $) (-1277 $)) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3127 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-3641 ((|#3| $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3691 (((-112)) 65)) (-2958 (((-112) |#1|) 170) (((-112) |#2|) 171)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) NIL)) (-2795 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2312 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2016 (((-112)) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186))))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2740 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| (-413 |#2|) (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 |#2|)) NIL) (($ (-413 |#2|) $) NIL) (($ (-413 (-570)) $) NIL (|has| (-413 |#2|) (-368))) (($ $ (-413 (-570))) NIL (|has| (-413 |#2|) (-368)))))
+(((-1012 |#1| |#2| |#3| |#4| |#5|) (-347 |#1| |#2| |#3|) (-1231) (-1253 |#1|) (-1253 (-413 |#2|)) (-413 |#2|) (-777)) (T -1012))
NIL
(-347 |#1| |#2| |#3|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3839 (((-650 (-570)) $) 73)) (-4246 (($ (-650 (-570))) 81)) (-3303 (((-570) $) 48 (|has| (-570) (-311)))) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL (|has| (-570) (-826)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) 60) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) 57 (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) 60 (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-3139 (((-650 (-570)) $) 79)) (-1522 (((-112) $) NIL (|has| (-570) (-826)))) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL)) (-4398 (((-570) $) 45)) (-2885 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2761 (((-112) $) NIL (|has| (-570) (-826)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-570) (-856)))) (-1351 (($ (-1 (-570) (-570)) $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL)) (-2314 (($) NIL (|has| (-570) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1965 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) 50)) (-3103 (((-1166 (-570)) $) 78)) (-4142 (($ (-650 (-570)) (-650 (-570))) 82)) (-3739 (((-570) $) 64 (|has| (-570) (-551)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3738 (((-424 $) $) NIL)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1730 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2272 (((-777) $) NIL)) (-1876 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $) 15 (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-1418 (($ $) NIL)) (-4412 (((-570) $) 47)) (-3212 (((-650 (-570)) $) 80)) (-1416 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) 107) (($ (-570)) 51) (($ $) NIL) (($ (-413 (-570))) 27) (($ (-570)) 51) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) 25)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2744 (((-777)) 13 T CONST)) (-3754 (((-570) $) 62 (|has| (-570) (-551)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1423 (($ $) NIL (|has| (-570) (-826)))) (-1812 (($) 14 T CONST)) (-1823 (($) 17 T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) 21)) (-2913 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) 40 (|has| (-570) (-856)))) (-2975 (($ $ $) 36) (($ (-570) (-570)) 38)) (-2965 (($ $) 23) (($ $ $) 30)) (-2954 (($ $ $) 28)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 32) (($ $ $) 34) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) 32) (($ $ (-570)) NIL)))
-(((-1013 |#1|) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -3839 ((-650 (-570)) $)) (-15 -3103 ((-1166 (-570)) $)) (-15 -3139 ((-650 (-570)) $)) (-15 -3212 ((-650 (-570)) $)) (-15 -4246 ($ (-650 (-570)))) (-15 -4142 ($ (-650 (-570)) (-650 (-570)))))) (-570)) (T -1013))
-((-1965 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3839 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3103 (*1 *2 *1) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3139 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3212 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4246 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4142 (*1 *1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-10 -8 (-15 -1965 ((-413 (-570)) $)) (-15 -3839 ((-650 (-570)) $)) (-15 -3103 ((-1166 (-570)) $)) (-15 -3139 ((-650 (-570)) $)) (-15 -3212 ((-650 (-570)) $)) (-15 -4246 ($ (-650 (-570)))) (-15 -4142 ($ (-650 (-570)) (-650 (-570))))))
-((-3917 (((-52) (-413 (-570)) (-570)) 9)))
-(((-1014) (-10 -7 (-15 -3917 ((-52) (-413 (-570)) (-570))))) (T -1014))
-((-3917 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52)) (-5 *1 (-1014)))))
-(-10 -7 (-15 -3917 ((-52) (-413 (-570)) (-570))))
-((-3403 (((-570)) 23)) (-2864 (((-570)) 28)) (-4347 (((-1281) (-570)) 26)) (-1840 (((-570) (-570)) 29) (((-570)) 22)))
-(((-1015) (-10 -7 (-15 -1840 ((-570))) (-15 -3403 ((-570))) (-15 -1840 ((-570) (-570))) (-15 -4347 ((-1281) (-570))) (-15 -2864 ((-570))))) (T -1015))
-((-2864 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-4347 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1015)))) (-1840 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-3403 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-1840 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
-(-10 -7 (-15 -1840 ((-570))) (-15 -3403 ((-570))) (-15 -1840 ((-570) (-570))) (-15 -4347 ((-1281) (-570))) (-15 -2864 ((-570))))
-((-3696 (((-424 |#1|) |#1|) 43)) (-3738 (((-424 |#1|) |#1|) 41)))
-(((-1016 |#1|) (-10 -7 (-15 -3738 ((-424 |#1|) |#1|)) (-15 -3696 ((-424 |#1|) |#1|))) (-1252 (-413 (-570)))) (T -1016))
-((-3696 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1252 (-413 (-570)))))) (-3738 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1252 (-413 (-570)))))))
-(-10 -7 (-15 -3738 ((-424 |#1|) |#1|)) (-15 -3696 ((-424 |#1|) |#1|)))
-((-2951 (((-3 (-413 (-570)) "failed") |#1|) 15)) (-2085 (((-112) |#1|) 14)) (-3137 (((-413 (-570)) |#1|) 10)))
-(((-1017 |#1|) (-10 -7 (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|))) (-1047 (-413 (-570)))) (T -1017))
-((-2951 (*1 *2 *3) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))) (-2085 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))) (-3137 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))))
-(-10 -7 (-15 -3137 ((-413 (-570)) |#1|)) (-15 -2085 ((-112) |#1|)) (-15 -2951 ((-3 (-413 (-570)) "failed") |#1|)))
-((-3895 ((|#2| $ "value" |#2|) 12)) (-1876 ((|#2| $ "value") 10)) (-2016 (((-112) $ $) 18)))
-(((-1018 |#1| |#2|) (-10 -8 (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -2016 ((-112) |#1| |#1|)) (-15 -1876 (|#2| |#1| "value"))) (-1019 |#2|) (-1226)) (T -1018))
-NIL
-(-10 -8 (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -2016 ((-112) |#1| |#1|)) (-15 -1876 (|#2| |#1| "value")))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-2450 (($) 7 T CONST)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48)) (-1678 (((-570) $ $) 45)) (-3150 (((-112) $) 47)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1019 |#1|) (-141) (-1226)) (T -1019))
-((-3129 (*1 *2 *1) (-12 (-4 *3 (-1226)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-3457 (*1 *2 *1) (-12 (-4 *3 (-1226)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))) (-2195 (*1 *2 *1) (-12 (-4 *1 (-1019 *2)) (-4 *2 (-1226)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1019 *2)) (-4 *2 (-1226)))) (-3150 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))) (-2282 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-650 *3)))) (-1678 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-570)))) (-2016 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-1457 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2698 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4449)) (-4 *1 (-1019 *3)) (-4 *3 (-1226)))) (-3895 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4449)) (-4 *1 (-1019 *2)) (-4 *2 (-1226)))) (-1379 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1019 *2)) (-4 *2 (-1226)))))
-(-13 (-495 |t#1|) (-10 -8 (-15 -3129 ((-650 $) $)) (-15 -3457 ((-650 $) $)) (-15 -3873 ((-112) $)) (-15 -2195 (|t#1| $)) (-15 -1876 (|t#1| $ "value")) (-15 -3150 ((-112) $)) (-15 -2282 ((-650 |t#1|) $)) (-15 -1678 ((-570) $ $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -2016 ((-112) $ $)) (-15 -1457 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4449)) (PROGN (-15 -2698 ($ $ (-650 $))) (-15 -3895 (|t#1| $ "value" |t#1|)) (-15 -1379 (|t#1| $ |t#1|))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-3753 (($ $) 9) (($ $ (-928)) 49) (($ (-413 (-570))) 13) (($ (-570)) 15)) (-4143 (((-3 $ "failed") (-1182 $) (-928) (-868)) 24) (((-3 $ "failed") (-1182 $) (-928)) 32)) (-2598 (($ $ (-570)) 58)) (-2744 (((-777)) 18)) (-2006 (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 (-413 (-570)))) 63) (((-650 $) (-1182 (-570))) 68) (((-650 $) (-959 $)) 72) (((-650 $) (-959 (-413 (-570)))) 76) (((-650 $) (-959 (-570))) 80)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ $ (-413 (-570))) 53)))
-(((-1020 |#1|) (-10 -8 (-15 -3753 (|#1| (-570))) (-15 -3753 (|#1| (-413 (-570)))) (-15 -3753 (|#1| |#1| (-928))) (-15 -2006 ((-650 |#1|) (-959 (-570)))) (-15 -2006 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -2006 ((-650 |#1|) (-959 |#1|))) (-15 -2006 ((-650 |#1|) (-1182 (-570)))) (-15 -2006 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -2006 ((-650 |#1|) (-1182 |#1|))) (-15 -4143 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -4143 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2598 (|#1| |#1| (-570))) (-15 -3753 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2744 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-1021)) (T -1020))
-((-2744 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1020 *3)) (-4 *3 (-1021)))))
-(-10 -8 (-15 -3753 (|#1| (-570))) (-15 -3753 (|#1| (-413 (-570)))) (-15 -3753 (|#1| |#1| (-928))) (-15 -2006 ((-650 |#1|) (-959 (-570)))) (-15 -2006 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -2006 ((-650 |#1|) (-959 |#1|))) (-15 -2006 ((-650 |#1|) (-1182 (-570)))) (-15 -2006 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -2006 ((-650 |#1|) (-1182 |#1|))) (-15 -4143 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -4143 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2598 (|#1| |#1| (-570))) (-15 -3753 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2744 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 102)) (-3171 (($ $) 103)) (-2720 (((-112) $) 105)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 122)) (-1790 (((-424 $) $) 123)) (-3753 (($ $) 86) (($ $ (-928)) 72) (($ (-413 (-570))) 71) (($ (-570)) 70)) (-4339 (((-112) $ $) 113)) (-3140 (((-570) $) 139)) (-2450 (($) 18 T CONST)) (-4143 (((-3 $ "failed") (-1182 $) (-928) (-868)) 80) (((-3 $ "failed") (-1182 $) (-928)) 79)) (-4378 (((-3 (-570) "failed") $) 99 (|has| (-413 (-570)) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 97 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-3 (-413 (-570)) "failed") $) 94)) (-3080 (((-570) $) 98 (|has| (-413 (-570)) (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 95)) (-2397 (($ $ (-868)) 69)) (-2612 (($ $ (-868)) 68)) (-2372 (($ $ $) 117)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 116)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 111)) (-1552 (((-112) $) 124)) (-1522 (((-112) $) 137)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 85)) (-2761 (((-112) $) 138)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 120)) (-3310 (($ $ $) 136)) (-3787 (($ $ $) 135)) (-2593 (((-3 (-1182 $) "failed") $) 81)) (-2324 (((-3 (-868) "failed") $) 83)) (-3378 (((-3 (-1182 $) "failed") $) 82)) (-1845 (($ (-650 $)) 109) (($ $ $) 108)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 125)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 110)) (-1874 (($ (-650 $)) 107) (($ $ $) 106)) (-3738 (((-424 $) $) 121)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 118)) (-2407 (((-3 $ "failed") $ $) 101)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 112)) (-2272 (((-777) $) 114)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 115)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 129) (($ $) 100) (($ (-413 (-570))) 93) (($ (-570)) 92) (($ (-413 (-570))) 89)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 104)) (-3026 (((-413 (-570)) $ $) 67)) (-2006 (((-650 $) (-1182 $)) 78) (((-650 $) (-1182 (-413 (-570)))) 77) (((-650 $) (-1182 (-570))) 76) (((-650 $) (-959 $)) 75) (((-650 $) (-959 (-413 (-570)))) 74) (((-650 $) (-959 (-570))) 73)) (-1423 (($ $) 140)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 133)) (-2904 (((-112) $ $) 132)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 134)) (-2894 (((-112) $ $) 131)) (-2975 (($ $ $) 130)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 126) (($ $ (-413 (-570))) 84)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ (-413 (-570)) $) 128) (($ $ (-413 (-570))) 127) (($ (-570) $) 91) (($ $ (-570)) 90) (($ (-413 (-570)) $) 88) (($ $ (-413 (-570))) 87)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1508 (((-650 (-570)) $) 73)) (-4359 (($ (-650 (-570))) 81)) (-3113 (((-570) $) 48 (|has| (-570) (-311)))) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL (|has| (-570) (-826)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) 60) (((-3 (-1186) "failed") $) NIL (|has| (-570) (-1047 (-1186)))) (((-3 (-413 (-570)) "failed") $) 57 (|has| (-570) (-1047 (-570)))) (((-3 (-570) "failed") $) 60 (|has| (-570) (-1047 (-570))))) (-3080 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2372 (($ $ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3336 (($) NIL (|has| (-570) (-551)))) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-2239 (((-650 (-570)) $) 79)) (-3703 (((-112) $) NIL (|has| (-570) (-826)))) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL)) (-4399 (((-570) $) 45)) (-3584 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1774 (((-112) $) NIL (|has| (-570) (-826)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-570) (-856)))) (-1352 (($ (-1 (-570) (-570)) $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL)) (-2315 (($) NIL (|has| (-570) (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2442 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) 50)) (-1927 (((-1166 (-570)) $) 78)) (-1470 (($ (-650 (-570)) (-650 (-570))) 82)) (-2962 (((-570) $) 64 (|has| (-570) (-551)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3739 (((-424 $) $) NIL)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1731 (($ $ (-650 (-570)) (-650 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-570) (-570)) NIL (|has| (-570) (-313 (-570)))) (($ $ (-298 (-570))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-298 (-570)))) NIL (|has| (-570) (-313 (-570)))) (($ $ (-650 (-1186)) (-650 (-570))) NIL (|has| (-570) (-520 (-1186) (-570)))) (($ $ (-1186) (-570)) NIL (|has| (-570) (-520 (-1186) (-570))))) (-2547 (((-777) $) NIL)) (-1877 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $) 15 (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-4428 (($ $) NIL)) (-4413 (((-570) $) 47)) (-1784 (((-650 (-570)) $) 80)) (-1417 (((-899 (-570)) $) NIL (|has| (-570) (-620 (-899 (-570))))) (((-899 (-384)) $) NIL (|has| (-570) (-620 (-899 (-384))))) (((-542) $) NIL (|has| (-570) (-620 (-542)))) (((-384) $) NIL (|has| (-570) (-1031))) (((-227) $) NIL (|has| (-570) (-1031)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3735 (((-868) $) 107) (($ (-570)) 51) (($ $) NIL) (($ (-413 (-570))) 27) (($ (-570)) 51) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) 25)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-1609 (((-777)) 13 T CONST)) (-1963 (((-570) $) 62 (|has| (-570) (-551)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1367 (($ $) NIL (|has| (-570) (-826)))) (-1814 (($) 14 T CONST)) (-1824 (($) 17 T CONST)) (-2791 (($ $) NIL (|has| (-570) (-235))) (($ $ (-777)) NIL (|has| (-570) (-235))) (($ $ (-1186)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| (-570) (-907 (-1186)))) (($ $ (-1 (-570) (-570)) (-777)) NIL) (($ $ (-1 (-570) (-570))) NIL)) (-2924 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2872 (((-112) $ $) 21)) (-2914 (((-112) $ $) NIL (|has| (-570) (-856)))) (-2894 (((-112) $ $) 40 (|has| (-570) (-856)))) (-2975 (($ $ $) 36) (($ (-570) (-570)) 38)) (-2965 (($ $) 23) (($ $ $) 30)) (-2953 (($ $ $) 28)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 32) (($ $ $) 34) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ (-570) $) 32) (($ $ (-570)) NIL)))
+(((-1013 |#1|) (-13 (-1001 (-570)) (-619 (-413 (-570))) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -1508 ((-650 (-570)) $)) (-15 -1927 ((-1166 (-570)) $)) (-15 -2239 ((-650 (-570)) $)) (-15 -1784 ((-650 (-570)) $)) (-15 -4359 ($ (-650 (-570)))) (-15 -1470 ($ (-650 (-570)) (-650 (-570)))))) (-570)) (T -1013))
+((-2442 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-1508 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-1927 (*1 *2 *1) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-2239 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-1784 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4359 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-1470 (*1 *1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-10 -8 (-15 -2442 ((-413 (-570)) $)) (-15 -1508 ((-650 (-570)) $)) (-15 -1927 ((-1166 (-570)) $)) (-15 -2239 ((-650 (-570)) $)) (-15 -1784 ((-650 (-570)) $)) (-15 -4359 ($ (-650 (-570)))) (-15 -1470 ($ (-650 (-570)) (-650 (-570))))))
+((-4132 (((-52) (-413 (-570)) (-570)) 9)))
+(((-1014) (-10 -7 (-15 -4132 ((-52) (-413 (-570)) (-570))))) (T -1014))
+((-4132 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52)) (-5 *1 (-1014)))))
+(-10 -7 (-15 -4132 ((-52) (-413 (-570)) (-570))))
+((-3403 (((-570)) 23)) (-3369 (((-570)) 28)) (-2794 (((-1282) (-570)) 26)) (-3673 (((-570) (-570)) 29) (((-570)) 22)))
+(((-1015) (-10 -7 (-15 -3673 ((-570))) (-15 -3403 ((-570))) (-15 -3673 ((-570) (-570))) (-15 -2794 ((-1282) (-570))) (-15 -3369 ((-570))))) (T -1015))
+((-3369 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-2794 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1015)))) (-3673 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-3403 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-3673 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(-10 -7 (-15 -3673 ((-570))) (-15 -3403 ((-570))) (-15 -3673 ((-570) (-570))) (-15 -2794 ((-1282) (-570))) (-15 -3369 ((-570))))
+((-2595 (((-424 |#1|) |#1|) 43)) (-3739 (((-424 |#1|) |#1|) 41)))
+(((-1016 |#1|) (-10 -7 (-15 -3739 ((-424 |#1|) |#1|)) (-15 -2595 ((-424 |#1|) |#1|))) (-1253 (-413 (-570)))) (T -1016))
+((-2595 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1253 (-413 (-570)))))) (-3739 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1253 (-413 (-570)))))))
+(-10 -7 (-15 -3739 ((-424 |#1|) |#1|)) (-15 -2595 ((-424 |#1|) |#1|)))
+((-4147 (((-3 (-413 (-570)) "failed") |#1|) 15)) (-4373 (((-112) |#1|) 14)) (-2220 (((-413 (-570)) |#1|) 10)))
+(((-1017 |#1|) (-10 -7 (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|))) (-1047 (-413 (-570)))) (T -1017))
+((-4147 (*1 *2 *3) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))) (-4373 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))) (-2220 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))))
+(-10 -7 (-15 -2220 ((-413 (-570)) |#1|)) (-15 -4373 ((-112) |#1|)) (-15 -4147 ((-3 (-413 (-570)) "failed") |#1|)))
+((-3894 ((|#2| $ "value" |#2|) 12)) (-1877 ((|#2| $ "value") 10)) (-2931 (((-112) $ $) 18)))
+(((-1018 |#1| |#2|) (-10 -8 (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -2931 ((-112) |#1| |#1|)) (-15 -1877 (|#2| |#1| "value"))) (-1019 |#2|) (-1227)) (T -1018))
+NIL
+(-10 -8 (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -2931 ((-112) |#1| |#1|)) (-15 -1877 (|#2| |#1| "value")))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-3761 (($) 7 T CONST)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48)) (-2763 (((-570) $ $) 45)) (-2345 (((-112) $) 47)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1019 |#1|) (-141) (-1227)) (T -1019))
+((-2153 (*1 *2 *1) (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-2150 (*1 *2 *1) (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-1859 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2196 (*1 *2 *1) (-12 (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-2345 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2283 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-2763 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))) (-2931 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-4329 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2355 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4450)) (-4 *1 (-1019 *3)) (-4 *3 (-1227)))) (-3894 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-3708 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))))
+(-13 (-495 |t#1|) (-10 -8 (-15 -2153 ((-650 $) $)) (-15 -2150 ((-650 $) $)) (-15 -1859 ((-112) $)) (-15 -2196 (|t#1| $)) (-15 -1877 (|t#1| $ "value")) (-15 -2345 ((-112) $)) (-15 -2283 ((-650 |t#1|) $)) (-15 -2763 ((-570) $ $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -2931 ((-112) $ $)) (-15 -4329 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4450)) (PROGN (-15 -2355 ($ $ (-650 $))) (-15 -3894 (|t#1| $ "value" |t#1|)) (-15 -3708 (|t#1| $ |t#1|))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-3754 (($ $) 9) (($ $ (-928)) 49) (($ (-413 (-570))) 13) (($ (-570)) 15)) (-1480 (((-3 $ "failed") (-1182 $) (-928) (-868)) 24) (((-3 $ "failed") (-1182 $) (-928)) 32)) (-2665 (($ $ (-570)) 58)) (-1609 (((-777)) 18)) (-2837 (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 (-413 (-570)))) 63) (((-650 $) (-1182 (-570))) 68) (((-650 $) (-959 $)) 72) (((-650 $) (-959 (-413 (-570)))) 76) (((-650 $) (-959 (-570))) 80)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ $ (-413 (-570))) 53)))
+(((-1020 |#1|) (-10 -8 (-15 -3754 (|#1| (-570))) (-15 -3754 (|#1| (-413 (-570)))) (-15 -3754 (|#1| |#1| (-928))) (-15 -2837 ((-650 |#1|) (-959 (-570)))) (-15 -2837 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -2837 ((-650 |#1|) (-959 |#1|))) (-15 -2837 ((-650 |#1|) (-1182 (-570)))) (-15 -2837 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -2837 ((-650 |#1|) (-1182 |#1|))) (-15 -1480 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -1480 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2665 (|#1| |#1| (-570))) (-15 -3754 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -1609 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-1021)) (T -1020))
+((-1609 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1020 *3)) (-4 *3 (-1021)))))
+(-10 -8 (-15 -3754 (|#1| (-570))) (-15 -3754 (|#1| (-413 (-570)))) (-15 -3754 (|#1| |#1| (-928))) (-15 -2837 ((-650 |#1|) (-959 (-570)))) (-15 -2837 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -2837 ((-650 |#1|) (-959 |#1|))) (-15 -2837 ((-650 |#1|) (-1182 (-570)))) (-15 -2837 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -2837 ((-650 |#1|) (-1182 |#1|))) (-15 -1480 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -1480 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2665 (|#1| |#1| (-570))) (-15 -3754 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -1609 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 102)) (-1345 (($ $) 103)) (-1372 (((-112) $) 105)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 122)) (-1378 (((-424 $) $) 123)) (-3754 (($ $) 86) (($ $ (-928)) 72) (($ (-413 (-570))) 71) (($ (-570)) 70)) (-2707 (((-112) $ $) 113)) (-2249 (((-570) $) 139)) (-3761 (($) 18 T CONST)) (-1480 (((-3 $ "failed") (-1182 $) (-928) (-868)) 80) (((-3 $ "failed") (-1182 $) (-928)) 79)) (-4379 (((-3 (-570) "failed") $) 99 (|has| (-413 (-570)) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 97 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-3 (-413 (-570)) "failed") $) 94)) (-3080 (((-570) $) 98 (|has| (-413 (-570)) (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 95)) (-1416 (($ $ (-868)) 69)) (-2781 (($ $ (-868)) 68)) (-2372 (($ $ $) 117)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 116)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 111)) (-4037 (((-112) $) 124)) (-3703 (((-112) $) 137)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 85)) (-1774 (((-112) $) 138)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 120)) (-3311 (($ $ $) 136)) (-2222 (($ $ $) 135)) (-2606 (((-3 (-1182 $) "failed") $) 81)) (-1940 (((-3 (-868) "failed") $) 83)) (-2610 (((-3 (-1182 $) "failed") $) 82)) (-1847 (($ (-650 $)) 109) (($ $ $) 108)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 125)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 110)) (-1874 (($ (-650 $)) 107) (($ $ $) 106)) (-3739 (((-424 $) $) 121)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 118)) (-2406 (((-3 $ "failed") $ $) 101)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 112)) (-2547 (((-777) $) 114)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 115)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 129) (($ $) 100) (($ (-413 (-570))) 93) (($ (-570)) 92) (($ (-413 (-570))) 89)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 104)) (-3026 (((-413 (-570)) $ $) 67)) (-2837 (((-650 $) (-1182 $)) 78) (((-650 $) (-1182 (-413 (-570)))) 77) (((-650 $) (-1182 (-570))) 76) (((-650 $) (-959 $)) 75) (((-650 $) (-959 (-413 (-570)))) 74) (((-650 $) (-959 (-570))) 73)) (-1367 (($ $) 140)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 133)) (-2904 (((-112) $ $) 132)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 134)) (-2894 (((-112) $ $) 131)) (-2975 (($ $ $) 130)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 126) (($ $ (-413 (-570))) 84)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ (-413 (-570)) $) 128) (($ $ (-413 (-570))) 127) (($ (-570) $) 91) (($ $ (-570)) 90) (($ (-413 (-570)) $) 88) (($ $ (-413 (-570))) 87)))
(((-1021) (-141)) (T -1021))
-((-3753 (*1 *1 *1) (-4 *1 (-1021))) (-2324 (*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-3378 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-2593 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-4143 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-5 *4 (-868)) (-4 *1 (-1021)))) (-4143 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-4 *1 (-1021)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-1182 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3753 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-928)))) (-3753 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1021)))) (-3753 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1021)))) (-2397 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-2612 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-3026 (*1 *2 *1 *1) (-12 (-4 *1 (-1021)) (-5 *2 (-413 (-570))))))
-(-13 (-148) (-854) (-174) (-368) (-417 (-413 (-570))) (-38 (-570)) (-38 (-413 (-570))) (-1011) (-10 -8 (-15 -2324 ((-3 (-868) "failed") $)) (-15 -3378 ((-3 (-1182 $) "failed") $)) (-15 -2593 ((-3 (-1182 $) "failed") $)) (-15 -4143 ((-3 $ "failed") (-1182 $) (-928) (-868))) (-15 -4143 ((-3 $ "failed") (-1182 $) (-928))) (-15 -2006 ((-650 $) (-1182 $))) (-15 -2006 ((-650 $) (-1182 (-413 (-570))))) (-15 -2006 ((-650 $) (-1182 (-570)))) (-15 -2006 ((-650 $) (-959 $))) (-15 -2006 ((-650 $) (-959 (-413 (-570))))) (-15 -2006 ((-650 $) (-959 (-570)))) (-15 -3753 ($ $ (-928))) (-15 -3753 ($ $)) (-15 -3753 ($ (-413 (-570)))) (-15 -3753 ($ (-570))) (-15 -2397 ($ $ (-868))) (-15 -2612 ($ $ (-868))) (-15 -3026 ((-413 (-570)) $ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 #1=(-570)) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-417 (-413 (-570))) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 #1#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 #1#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 #1#) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-927) . T) ((-1011) . T) ((-1047 (-413 (-570))) . T) ((-1047 (-570)) |has| (-413 (-570)) (-1047 (-570))) ((-1060 #0#) . T) ((-1060 #1#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 #1#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-3997 (((-2 (|:| |ans| |#2|) (|:| -4410 |#2|) (|:| |sol?| (-112))) (-570) |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 67)))
-(((-1022 |#1| |#2|) (-10 -7 (-15 -3997 ((-2 (|:| |ans| |#2|) (|:| -4410 |#2|) (|:| |sol?| (-112))) (-570) |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-27) (-436 |#1|))) (T -1022))
-((-3997 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1186)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-650 *4))) (-5 *7 (-1 (-3 (-2 (|:| -1400 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1211) (-27) (-436 *8))) (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570)) (-5 *2 (-2 (|:| |ans| *4) (|:| -4410 *4) (|:| |sol?| (-112)))) (-5 *1 (-1022 *8 *4)))))
-(-10 -7 (-15 -3997 ((-2 (|:| |ans| |#2|) (|:| -4410 |#2|) (|:| |sol?| (-112))) (-570) |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3491 (((-3 (-650 |#2|) "failed") (-570) |#2| |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 55)))
-(((-1023 |#1| |#2|) (-10 -7 (-15 -3491 ((-3 (-650 |#2|) "failed") (-570) |#2| |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1211) (-27) (-436 |#1|))) (T -1023))
-((-3491 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1186)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-650 *4))) (-5 *7 (-1 (-3 (-2 (|:| -1400 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1211) (-27) (-436 *8))) (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570)) (-5 *2 (-650 *4)) (-5 *1 (-1023 *8 *4)))))
-(-10 -7 (-15 -3491 ((-3 (-650 |#2|) "failed") (-570) |#2| |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -1400 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2153 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4300 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|)) 38)) (-4318 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3607 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 69)) (-2292 (((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|)) 74)))
-(((-1024 |#1| |#2|) (-10 -7 (-15 -4318 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3607 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2292 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -2153 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4300 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|)))) (-13 (-368) (-148) (-1047 (-570))) (-1252 |#1|)) (T -1024))
-((-2153 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1252 *6)) (-4 *6 (-13 (-368) (-148) (-1047 *4))) (-5 *4 (-570)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -4300 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1024 *6 *3)))) (-2292 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| |ans| (-413 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1024 *4 *5)) (-5 *3 (-413 *5)))) (-4318 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |c| (-413 *6)) (|:| -3607 *6))) (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
-(-10 -7 (-15 -4318 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3607 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2292 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -2153 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4300 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|))))
-((-4344 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3607 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 22)) (-2432 (((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)) 34)))
-(((-1025 |#1| |#2|) (-10 -7 (-15 -4344 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3607 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2432 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-570))) (-1252 |#1|)) (T -1025))
-((-2432 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1252 *4)) (-5 *2 (-650 (-413 *5))) (-5 *1 (-1025 *4 *5)) (-5 *3 (-413 *5)))) (-4344 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |h| *6) (|:| |c1| (-413 *6)) (|:| |c2| (-413 *6)) (|:| -3607 *6))) (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
-(-10 -7 (-15 -4344 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3607 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2432 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))))
-((-2284 (((-1 |#1|) (-650 (-2 (|:| -2195 |#1|) (|:| -3454 (-570))))) 37)) (-4206 (((-1 |#1|) (-1111 |#1|)) 44)) (-2525 (((-1 |#1|) (-1276 |#1|) (-1276 (-570)) (-570)) 34)))
-(((-1026 |#1|) (-10 -7 (-15 -4206 ((-1 |#1|) (-1111 |#1|))) (-15 -2284 ((-1 |#1|) (-650 (-2 (|:| -2195 |#1|) (|:| -3454 (-570)))))) (-15 -2525 ((-1 |#1|) (-1276 |#1|) (-1276 (-570)) (-570)))) (-1109)) (T -1026))
-((-2525 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1276 *6)) (-5 *4 (-1276 (-570))) (-5 *5 (-570)) (-4 *6 (-1109)) (-5 *2 (-1 *6)) (-5 *1 (-1026 *6)))) (-2284 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -2195 *4) (|:| -3454 (-570))))) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))) (-4206 (*1 *2 *3) (-12 (-5 *3 (-1111 *4)) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
-(-10 -7 (-15 -4206 ((-1 |#1|) (-1111 |#1|))) (-15 -2284 ((-1 |#1|) (-650 (-2 (|:| -2195 |#1|) (|:| -3454 (-570)))))) (-15 -2525 ((-1 |#1|) (-1276 |#1|) (-1276 (-570)) (-570))))
-((-3157 (((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-1027 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3157 ((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-368) (-1252 |#1|) (-1252 (-413 |#2|)) (-347 |#1| |#2| |#3|) (-13 (-373) (-368))) (T -1027))
-((-3157 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-341 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-368)) (-4 *7 (-1252 *6)) (-4 *4 (-1252 (-413 *7))) (-4 *8 (-347 *6 *7 *4)) (-4 *9 (-13 (-373) (-368))) (-5 *2 (-777)) (-5 *1 (-1027 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -3157 ((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-2416 (((-112) $ $) NIL)) (-3680 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-1144) $) 11)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1028) (-13 (-1092) (-10 -8 (-15 -3680 ((-1144) $)) (-15 -3517 ((-1144) $))))) (T -1028))
-((-3680 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))))
-(-13 (-1092) (-10 -8 (-15 -3680 ((-1144) $)) (-15 -3517 ((-1144) $))))
-((-2018 (((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) 32) (((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570))) 29)) (-4094 (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570))) 34) (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570))) 30) (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) 33) (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|) 28)) (-2907 (((-650 (-413 (-570))) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) 20)) (-3621 (((-413 (-570)) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) 17)))
-(((-1029 |#1|) (-10 -7 (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -3621 ((-413 (-570)) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -2907 ((-650 (-413 (-570))) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))))) (-1252 (-570))) (T -1029))
-((-2907 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *2 (-650 (-413 (-570)))) (-5 *1 (-1029 *4)) (-4 *4 (-1252 (-570))))) (-3621 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1252 (-570))))) (-2018 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))))) (-2018 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *4 (-413 (-570))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))))) (-4094 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4397 *5) (|:| -4410 *5)))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5))))) (-4094 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))) (-5 *4 (-413 (-570))))) (-4094 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))) (-5 *4 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-4094 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))))))
-(-10 -7 (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -3621 ((-413 (-570)) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -2907 ((-650 (-413 (-570))) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))))
-((-2018 (((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) 35) (((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570))) 32)) (-4094 (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570))) 30) (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570))) 26) (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) 28) (((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|) 24)))
-(((-1030 |#1|) (-10 -7 (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-1252 (-413 (-570)))) (T -1030))
-((-2018 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 (-413 (-570)))))) (-2018 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *4 (-413 (-570))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 *4)))) (-4094 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4397 *5) (|:| -4410 *5)))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 *5)) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5))))) (-4094 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4397 *4) (|:| -4410 *4)))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 *4)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 (-413 (-570)))) (-5 *4 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-4094 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 (-413 (-570)))))))
-(-10 -7 (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4094 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -2018 ((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))))
-((-1416 (((-227) $) 6) (((-384) $) 9)))
+((-3754 (*1 *1 *1) (-4 *1 (-1021))) (-1940 (*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-2610 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-2606 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-1480 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-5 *4 (-868)) (-4 *1 (-1021)))) (-1480 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-4 *1 (-1021)))) (-2837 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-2837 (*1 *2 *3) (-12 (-5 *3 (-1182 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-2837 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-2837 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-2837 (*1 *2 *3) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-2837 (*1 *2 *3) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3754 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-928)))) (-3754 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1021)))) (-3754 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1021)))) (-1416 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-2781 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-3026 (*1 *2 *1 *1) (-12 (-4 *1 (-1021)) (-5 *2 (-413 (-570))))))
+(-13 (-148) (-854) (-174) (-368) (-417 (-413 (-570))) (-38 (-570)) (-38 (-413 (-570))) (-1011) (-10 -8 (-15 -1940 ((-3 (-868) "failed") $)) (-15 -2610 ((-3 (-1182 $) "failed") $)) (-15 -2606 ((-3 (-1182 $) "failed") $)) (-15 -1480 ((-3 $ "failed") (-1182 $) (-928) (-868))) (-15 -1480 ((-3 $ "failed") (-1182 $) (-928))) (-15 -2837 ((-650 $) (-1182 $))) (-15 -2837 ((-650 $) (-1182 (-413 (-570))))) (-15 -2837 ((-650 $) (-1182 (-570)))) (-15 -2837 ((-650 $) (-959 $))) (-15 -2837 ((-650 $) (-959 (-413 (-570))))) (-15 -2837 ((-650 $) (-959 (-570)))) (-15 -3754 ($ $ (-928))) (-15 -3754 ($ $)) (-15 -3754 ($ (-413 (-570)))) (-15 -3754 ($ (-570))) (-15 -1416 ($ $ (-868))) (-15 -2781 ($ $ (-868))) (-15 -3026 ((-413 (-570)) $ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 #1=(-570)) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-417 (-413 (-570))) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 #1#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 #1#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 #1#) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-927) . T) ((-1011) . T) ((-1047 (-413 (-570))) . T) ((-1047 (-570)) |has| (-413 (-570)) (-1047 (-570))) ((-1060 #0#) . T) ((-1060 #1#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 #1#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-3695 (((-2 (|:| |ans| |#2|) (|:| -4411 |#2|) (|:| |sol?| (-112))) (-570) |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 67)))
+(((-1022 |#1| |#2|) (-10 -7 (-15 -3695 ((-2 (|:| |ans| |#2|) (|:| -4411 |#2|) (|:| |sol?| (-112))) (-570) |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-27) (-436 |#1|))) (T -1022))
+((-3695 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1186)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-650 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3585 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1212) (-27) (-436 *8))) (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570)) (-5 *2 (-2 (|:| |ans| *4) (|:| -4411 *4) (|:| |sol?| (-112)))) (-5 *1 (-1022 *8 *4)))))
+(-10 -7 (-15 -3695 ((-2 (|:| |ans| |#2|) (|:| -4411 |#2|) (|:| |sol?| (-112))) (-570) |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-4368 (((-3 (-650 |#2|) "failed") (-570) |#2| |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 55)))
+(((-1023 |#1| |#2|) (-10 -7 (-15 -4368 ((-3 (-650 |#2|) "failed") (-570) |#2| |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-27) (-436 |#1|))) (T -1023))
+((-4368 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1186)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-650 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3585 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1212) (-27) (-436 *8))) (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570)) (-5 *2 (-650 *4)) (-5 *1 (-1023 *8 *4)))))
+(-10 -7 (-15 -4368 ((-3 (-650 |#2|) "failed") (-570) |#2| |#2| |#2| (-1186) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-650 |#2|)) (-1 (-3 (-2 (|:| -3585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-3828 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4302 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|)) 38)) (-3764 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3608 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 69)) (-2733 (((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|)) 74)))
+(((-1024 |#1| |#2|) (-10 -7 (-15 -3764 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3608 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2733 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -3828 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4302 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|)))) (-13 (-368) (-148) (-1047 (-570))) (-1253 |#1|)) (T -1024))
+((-3828 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1253 *6)) (-4 *6 (-13 (-368) (-148) (-1047 *4))) (-5 *4 (-570)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -4302 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1024 *6 *3)))) (-2733 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| |ans| (-413 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1024 *4 *5)) (-5 *3 (-413 *5)))) (-3764 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |c| (-413 *6)) (|:| -3608 *6))) (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
+(-10 -7 (-15 -3764 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3608 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2733 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -3828 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4302 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|))))
+((-2762 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3608 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 22)) (-1755 (((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)) 34)))
+(((-1025 |#1| |#2|) (-10 -7 (-15 -2762 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3608 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -1755 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-570))) (-1253 |#1|)) (T -1025))
+((-1755 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-413 *5))) (-5 *1 (-1025 *4 *5)) (-5 *3 (-413 *5)))) (-2762 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |h| *6) (|:| |c1| (-413 *6)) (|:| |c2| (-413 *6)) (|:| -3608 *6))) (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
+(-10 -7 (-15 -2762 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3608 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -1755 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))))
+((-2644 (((-1 |#1|) (-650 (-2 (|:| -2196 |#1|) (|:| -2131 (-570))))) 37)) (-3939 (((-1 |#1|) (-1111 |#1|)) 44)) (-3184 (((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570)) 34)))
+(((-1026 |#1|) (-10 -7 (-15 -3939 ((-1 |#1|) (-1111 |#1|))) (-15 -2644 ((-1 |#1|) (-650 (-2 (|:| -2196 |#1|) (|:| -2131 (-570)))))) (-15 -3184 ((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570)))) (-1109)) (T -1026))
+((-3184 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1277 *6)) (-5 *4 (-1277 (-570))) (-5 *5 (-570)) (-4 *6 (-1109)) (-5 *2 (-1 *6)) (-5 *1 (-1026 *6)))) (-2644 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -2196 *4) (|:| -2131 (-570))))) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))) (-3939 (*1 *2 *3) (-12 (-5 *3 (-1111 *4)) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
+(-10 -7 (-15 -3939 ((-1 |#1|) (-1111 |#1|))) (-15 -2644 ((-1 |#1|) (-650 (-2 (|:| -2196 |#1|) (|:| -2131 (-570)))))) (-15 -3184 ((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570))))
+((-4331 (((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-1027 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4331 ((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|) (-13 (-373) (-368))) (T -1027))
+((-4331 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-341 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-4 *4 (-1253 (-413 *7))) (-4 *8 (-347 *6 *7 *4)) (-4 *9 (-13 (-373) (-368))) (-5 *2 (-777)) (-5 *1 (-1027 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -4331 ((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-2417 (((-112) $ $) NIL)) (-3680 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-1144) $) 11)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1028) (-13 (-1092) (-10 -8 (-15 -3680 ((-1144) $)) (-15 -3515 ((-1144) $))))) (T -1028))
+((-3680 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))))
+(-13 (-1092) (-10 -8 (-15 -3680 ((-1144) $)) (-15 -3515 ((-1144) $))))
+((-2950 (((-3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) "failed") |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) 32) (((-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570))) 29)) (-2247 (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570))) 34) (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-413 (-570))) 30) (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) 33) (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1|) 28)) (-3674 (((-650 (-413 (-570))) (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) 20)) (-3075 (((-413 (-570)) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) 17)))
+(((-1029 |#1|) (-10 -7 (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1|)) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) "failed") |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -3075 ((-413 (-570)) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -3674 ((-650 (-413 (-570))) (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))))) (-1253 (-570))) (T -1029))
+((-3674 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *2 (-650 (-413 (-570)))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))) (-3075 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))) (-2950 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))) (-2950 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) (-5 *4 (-413 (-570))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))) (-2247 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4398 *5) (|:| -4411 *5)))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4398 *5) (|:| -4411 *5))))) (-2247 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-413 (-570))))) (-2247 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))) (-2247 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))))
+(-10 -7 (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1|)) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) "failed") |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -3075 ((-413 (-570)) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -3674 ((-650 (-413 (-570))) (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))))
+((-2950 (((-3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) "failed") |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) 35) (((-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570))) 32)) (-2247 (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570))) 30) (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-413 (-570))) 26) (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) 28) (((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1|) 24)))
+(((-1030 |#1|) (-10 -7 (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1|)) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) "failed") |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))) (-1253 (-413 (-570)))) (T -1030))
+((-2950 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))))) (-2950 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) (-5 *4 (-413 (-570))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4)))) (-2247 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4398 *5) (|:| -4411 *5)))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *5)) (-5 *4 (-2 (|:| -4398 *5) (|:| -4411 *5))))) (-2247 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4398 *4) (|:| -4411 *4)))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4)))) (-2247 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))) (-5 *4 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))) (-2247 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))))))
+(-10 -7 (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1|)) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -2247 ((-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-413 (-570)))) (-15 -2950 ((-3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) "failed") |#1| (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))) (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))))
+((-1417 (((-227) $) 6) (((-384) $) 9)))
(((-1031) (-141)) (T -1031))
NIL
(-13 (-620 (-227)) (-620 (-384)))
(((-620 (-227)) . T) ((-620 (-384)) . T))
-((-1654 (((-650 (-384)) (-959 (-570)) (-384)) 28) (((-650 (-384)) (-959 (-413 (-570))) (-384)) 27)) (-2008 (((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384)) 37)))
-(((-1032) (-10 -7 (-15 -1654 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -1654 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -2008 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))) (T -1032))
-((-2008 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 (-384)))) (-5 *1 (-1032)) (-5 *5 (-384)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))))
-(-10 -7 (-15 -1654 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -1654 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -2008 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 75)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-3753 (($ $) NIL) (($ $ (-928)) NIL) (($ (-413 (-570))) NIL) (($ (-570)) NIL)) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) 70)) (-2450 (($) NIL T CONST)) (-4143 (((-3 $ "failed") (-1182 $) (-928) (-868)) NIL) (((-3 $ "failed") (-1182 $) (-928)) 55)) (-4378 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#1| "failed") $) 116) (((-3 (-570) "failed") $) NIL (-2740 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-3080 (((-413 (-570)) $) 17 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 17) ((|#1| $) 117) (((-570) $) NIL (-2740 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-2397 (($ $ (-868)) 47)) (-2612 (($ $ (-868)) 48)) (-2372 (($ $ $) NIL)) (-1912 (((-413 (-570)) $ $) 21)) (-3413 (((-3 $ "failed") $) 88)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-1522 (((-112) $) 66)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL)) (-2761 (((-112) $) 69)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-2593 (((-3 (-1182 $) "failed") $) 83)) (-2324 (((-3 (-868) "failed") $) 82)) (-3378 (((-3 (-1182 $) "failed") $) 80)) (-2960 (((-3 (-1070 $ (-1182 $)) "failed") $) 78)) (-1845 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 89)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3735 (((-868) $) 87) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) 63) (($ (-413 (-570))) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 119)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ $) 27)) (-2006 (((-650 $) (-1182 $)) 61) (((-650 $) (-1182 (-413 (-570)))) NIL) (((-650 $) (-1182 (-570))) NIL) (((-650 $) (-959 $)) NIL) (((-650 $) (-959 (-413 (-570)))) NIL) (((-650 $) (-959 (-570))) NIL)) (-3269 (($ (-1070 $ (-1182 $)) (-868)) 46)) (-1423 (($ $) 22)) (-1812 (($) 32 T CONST)) (-1823 (($) 39 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 76)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 24)) (-2975 (($ $ $) 37)) (-2965 (($ $) 38) (($ $ $) 74)) (-2954 (($ $ $) 112)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ $ (-413 (-570))) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 98) (($ $ $) 104) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ (-570) $) 98) (($ $ (-570)) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ |#1| $) 102) (($ $ |#1|) NIL)))
-(((-1033 |#1|) (-13 (-1021) (-417 |#1|) (-38 |#1|) (-10 -8 (-15 -3269 ($ (-1070 $ (-1182 $)) (-868))) (-15 -2960 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -1912 ((-413 (-570)) $ $)))) (-13 (-854) (-368) (-1031))) (T -1033))
-((-3269 (*1 *1 *2 *3) (-12 (-5 *2 (-1070 (-1033 *4) (-1182 (-1033 *4)))) (-5 *3 (-868)) (-5 *1 (-1033 *4)) (-4 *4 (-13 (-854) (-368) (-1031))))) (-2960 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3)))) (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))) (-1912 (*1 *2 *1 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))))
-(-13 (-1021) (-417 |#1|) (-38 |#1|) (-10 -8 (-15 -3269 ($ (-1070 $ (-1182 $)) (-868))) (-15 -2960 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -1912 ((-413 (-570)) $ $))))
-((-2237 (((-2 (|:| -4300 |#2|) (|:| -3854 (-650 |#1|))) |#2| (-650 |#1|)) 32) ((|#2| |#2| |#1|) 27)))
-(((-1034 |#1| |#2|) (-10 -7 (-15 -2237 (|#2| |#2| |#1|)) (-15 -2237 ((-2 (|:| -4300 |#2|) (|:| -3854 (-650 |#1|))) |#2| (-650 |#1|)))) (-368) (-662 |#1|)) (T -1034))
-((-2237 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| -4300 *3) (|:| -3854 (-650 *5)))) (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))) (-2237 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-1034 *3 *2)) (-4 *2 (-662 *3)))))
-(-10 -7 (-15 -2237 (|#2| |#2| |#1|)) (-15 -2237 ((-2 (|:| -4300 |#2|) (|:| -3854 (-650 |#1|))) |#2| (-650 |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4424 ((|#1| $ |#1|) 14)) (-3895 ((|#1| $ |#1|) 12)) (-2138 (($ |#1|) 10)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1876 ((|#1| $) 11)) (-2721 ((|#1| $) 13)) (-3735 (((-868) $) 21 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2872 (((-112) $ $) 9)))
-(((-1035 |#1|) (-13 (-1226) (-10 -8 (-15 -2138 ($ |#1|)) (-15 -1876 (|#1| $)) (-15 -3895 (|#1| $ |#1|)) (-15 -2721 (|#1| $)) (-15 -4424 (|#1| $ |#1|)) (-15 -2872 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1226)) (T -1035))
-((-2138 (*1 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))) (-1876 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))) (-3895 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))) (-2721 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))) (-4424 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))) (-2872 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1035 *3)) (-4 *3 (-1226)))))
-(-13 (-1226) (-10 -8 (-15 -2138 ($ |#1|)) (-15 -1876 (|#1| $)) (-15 -3895 (|#1| $ |#1|)) (-15 -2721 (|#1| $)) (-15 -4424 (|#1| $ |#1|)) (-15 -2872 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) NIL)) (-2411 (((-650 $) (-650 |#4|)) 118) (((-650 $) (-650 |#4|) (-112)) 119) (((-650 $) (-650 |#4|) (-112) (-112)) 117) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 120)) (-1716 (((-650 |#3|) $) NIL)) (-3418 (((-112) $) NIL)) (-1536 (((-112) $) NIL (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-2222 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 112)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1424 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 66)) (-2450 (($) NIL T CONST)) (-3809 (((-112) $) 29 (|has| |#1| (-562)))) (-2730 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1905 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2374 (((-112) $) NIL (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3742 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 45)) (-2561 ((|#4| |#4| $) 69)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-1702 (($ |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 85 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1808 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) NIL)) (-2974 (((-112) |#4| $) NIL)) (-3333 (((-112) |#4| $) NIL)) (-3052 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3213 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 133)) (-2836 (((-650 |#4|) $) 18 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2711 ((|#3| $) 38)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#4|) $) 19 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 23)) (-3727 (((-650 |#3|) $) NIL)) (-1844 (((-112) |#3| $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-1796 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-3769 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 110)) (-1728 (((-3 |#4| "failed") $) 42)) (-2395 (((-650 $) |#4| $) 93)) (-3235 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 103) (((-112) |#4| $) 64)) (-2307 (((-650 $) |#4| $) 115) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 116) (((-650 $) |#4| (-650 $)) NIL)) (-1734 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 128)) (-2731 (($ |#4| $) 82) (($ (-650 |#4|) $) 83) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 79)) (-3185 (((-650 |#4|) $) NIL)) (-1329 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1695 ((|#4| |#4| $) NIL)) (-4122 (((-112) $ $) NIL)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3339 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 40)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3802 (((-3 $ "failed") $ |#4|) 59)) (-1558 (($ $ |#4|) NIL) (((-650 $) |#4| $) 95) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 89)) (-1671 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 17)) (-3743 (($) 14)) (-1601 (((-777) $) NIL)) (-3486 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) 13)) (-1416 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 22)) (-4280 (($ $ |#3|) 52)) (-2185 (($ $ |#3|) 54)) (-1892 (($ $) NIL)) (-1332 (($ $ |#3|) NIL)) (-3735 (((-868) $) 35) (((-650 |#4|) $) 46)) (-1633 (((-777) $) NIL (|has| |#3| (-373)))) (-1859 (((-112) $ $) NIL)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4194 (((-650 $) |#4| $) 92) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-4368 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) NIL)) (-1985 (((-112) |#4| $) NIL)) (-2663 (((-112) |#3| $) 65)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1036 |#1| |#2| |#3| |#4|) (-13 (-1080 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2731 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -1734 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -3213 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1036))
-((-2731 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *3))) (-5 *1 (-1036 *5 *6 *7 *3)) (-4 *3 (-1074 *5 *6 *7)))) (-2411 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8)))) (-2411 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8)))) (-1734 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8)))) (-3213 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-650 *8)) (|:| |towers| (-650 (-1036 *5 *6 *7 *8))))) (-5 *1 (-1036 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
-(-13 (-1080 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2731 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -1734 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -3213 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
-((-4071 (((-650 (-695 |#1|)) (-650 (-695 |#1|))) 73) (((-695 |#1|) (-695 |#1|)) 72) (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 71) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 68)) (-1878 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 66) (((-695 |#1|) (-695 |#1|) (-928)) 65)) (-2715 (((-650 (-695 (-570))) (-650 (-650 (-570)))) 84) (((-650 (-695 (-570))) (-650 (-912 (-570))) (-570)) 83) (((-695 (-570)) (-650 (-570))) 80) (((-695 (-570)) (-912 (-570)) (-570)) 78)) (-4091 (((-695 (-959 |#1|)) (-777)) 98)) (-3960 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 52 (|has| |#1| (-6 (-4450 "*")))) (((-695 |#1|) (-695 |#1|) (-928)) 50 (|has| |#1| (-6 (-4450 "*"))))))
-(((-1037 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4450 "*"))) (-15 -3960 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4450 "*"))) (-15 -3960 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -4091 ((-695 (-959 |#1|)) (-777))) (-15 -1878 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -1878 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -4071 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4071 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -4071 ((-695 |#1|) (-695 |#1|))) (-15 -4071 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2715 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -2715 ((-695 (-570)) (-650 (-570)))) (-15 -2715 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -2715 ((-650 (-695 (-570))) (-650 (-650 (-570)))))) (-1058)) (T -1037))
-((-2715 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-2715 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-912 (-570)))) (-5 *4 (-570)) (-5 *2 (-650 (-695 *4))) (-5 *1 (-1037 *5)) (-4 *5 (-1058)))) (-2715 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-2715 (*1 *2 *3 *4) (-12 (-5 *3 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4)) (-5 *1 (-1037 *5)) (-4 *5 (-1058)))) (-4071 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-4071 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-4071 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-4071 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-1878 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-1878 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-4091 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-3960 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (|has| *4 (-6 (-4450 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-3960 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (|has| *4 (-6 (-4450 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4450 "*"))) (-15 -3960 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4450 "*"))) (-15 -3960 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -4091 ((-695 (-959 |#1|)) (-777))) (-15 -1878 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -1878 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -4071 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4071 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -4071 ((-695 |#1|) (-695 |#1|))) (-15 -4071 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2715 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -2715 ((-695 (-570)) (-650 (-570)))) (-15 -2715 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -2715 ((-650 (-695 (-570))) (-650 (-650 (-570))))))
-((-2916 (((-695 |#1|) (-650 (-695 |#1|)) (-1276 |#1|)) 71 (|has| |#1| (-311)))) (-2198 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1276 (-1276 |#1|))) 111 (|has| |#1| (-368))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1276 |#1|)) 118 (|has| |#1| (-368)))) (-3275 (((-1276 |#1|) (-650 (-1276 |#1|)) (-570)) 136 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-4198 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928)) 124 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112)) 123 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|))) 122 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570)) 121 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-2555 (((-112) (-650 (-695 |#1|))) 104 (|has| |#1| (-368))) (((-112) (-650 (-695 |#1|)) (-570)) 107 (|has| |#1| (-368)))) (-1817 (((-1276 (-1276 |#1|)) (-650 (-695 |#1|)) (-1276 |#1|)) 68 (|has| |#1| (-311)))) (-3870 (((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|)) 48)) (-1658 (((-695 |#1|) (-1276 (-1276 |#1|))) 41)) (-3796 (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570)) 95 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 94 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570)) 102 (|has| |#1| (-368)))))
-(((-1038 |#1|) (-10 -7 (-15 -1658 ((-695 |#1|) (-1276 (-1276 |#1|)))) (-15 -3870 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -1817 ((-1276 (-1276 |#1|)) (-650 (-695 |#1|)) (-1276 |#1|))) (-15 -2916 ((-695 |#1|) (-650 (-695 |#1|)) (-1276 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3796 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -3796 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3796 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -2555 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -2555 ((-112) (-650 (-695 |#1|)))) (-15 -2198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1276 |#1|))) (-15 -2198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1276 (-1276 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -3275 ((-1276 |#1|) (-650 (-1276 |#1|)) (-570)))) |%noBranch|) |%noBranch|)) (-1058)) (T -1038))
-((-3275 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1276 *5))) (-5 *4 (-570)) (-5 *2 (-1276 *5)) (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)))) (-4198 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-4198 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-4198 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *4 (-373)) (-4 *4 (-1058)) (-5 *2 (-650 (-650 (-695 *4)))) (-5 *1 (-1038 *4)) (-5 *3 (-650 (-695 *4))))) (-4198 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-570)) (-4 *6 (-368)) (-4 *6 (-373)) (-4 *6 (-1058)) (-5 *2 (-650 (-650 (-695 *6)))) (-5 *1 (-1038 *6)) (-5 *3 (-650 (-695 *6))))) (-2198 (*1 *2 *3 *4) (-12 (-5 *4 (-1276 (-1276 *5))) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-2198 (*1 *2 *3 *4) (-12 (-5 *4 (-1276 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-2555 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *4)))) (-2555 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *5)))) (-3796 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-5 *2 (-695 *5)) (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-1058)))) (-3796 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)) (-4 *4 (-368)) (-4 *4 (-1058)))) (-3796 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-650 (-695 *6))) (-5 *4 (-112)) (-5 *5 (-570)) (-5 *2 (-695 *6)) (-5 *1 (-1038 *6)) (-4 *6 (-368)) (-4 *6 (-1058)))) (-2916 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-1276 *5)) (-4 *5 (-311)) (-4 *5 (-1058)) (-5 *2 (-695 *5)) (-5 *1 (-1038 *5)))) (-1817 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-4 *5 (-311)) (-4 *5 (-1058)) (-5 *2 (-1276 (-1276 *5))) (-5 *1 (-1038 *5)) (-5 *4 (-1276 *5)))) (-3870 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1038 *4)))) (-1658 (*1 *2 *3) (-12 (-5 *3 (-1276 (-1276 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)))))
-(-10 -7 (-15 -1658 ((-695 |#1|) (-1276 (-1276 |#1|)))) (-15 -3870 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -1817 ((-1276 (-1276 |#1|)) (-650 (-695 |#1|)) (-1276 |#1|))) (-15 -2916 ((-695 |#1|) (-650 (-695 |#1|)) (-1276 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3796 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -3796 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3796 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -2555 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -2555 ((-112) (-650 (-695 |#1|)))) (-15 -2198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1276 |#1|))) (-15 -2198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1276 (-1276 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -4198 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -3275 ((-1276 |#1|) (-650 (-1276 |#1|)) (-570)))) |%noBranch|) |%noBranch|))
+((-2524 (((-650 (-384)) (-959 (-570)) (-384)) 28) (((-650 (-384)) (-959 (-413 (-570))) (-384)) 27)) (-2858 (((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384)) 37)))
+(((-1032) (-10 -7 (-15 -2524 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -2524 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -2858 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))) (T -1032))
+((-2858 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 (-384)))) (-5 *1 (-1032)) (-5 *5 (-384)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))))
+(-10 -7 (-15 -2524 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -2524 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -2858 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 75)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-3754 (($ $) NIL) (($ $ (-928)) NIL) (($ (-413 (-570))) NIL) (($ (-570)) NIL)) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) 70)) (-3761 (($) NIL T CONST)) (-1480 (((-3 $ "failed") (-1182 $) (-928) (-868)) NIL) (((-3 $ "failed") (-1182 $) (-928)) 55)) (-4379 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#1| "failed") $) 116) (((-3 (-570) "failed") $) NIL (-2740 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-3080 (((-413 (-570)) $) 17 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 17) ((|#1| $) 117) (((-570) $) NIL (-2740 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-1416 (($ $ (-868)) 47)) (-2781 (($ $ (-868)) 48)) (-2372 (($ $ $) NIL)) (-3064 (((-413 (-570)) $ $) 21)) (-2937 (((-3 $ "failed") $) 88)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3703 (((-112) $) 66)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL)) (-1774 (((-112) $) 69)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-2606 (((-3 (-1182 $) "failed") $) 83)) (-1940 (((-3 (-868) "failed") $) 82)) (-2610 (((-3 (-1182 $) "failed") $) 80)) (-4225 (((-3 (-1070 $ (-1182 $)) "failed") $) 78)) (-1847 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 89)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3735 (((-868) $) 87) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) 63) (($ (-413 (-570))) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 119)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-3026 (((-413 (-570)) $ $) 27)) (-2837 (((-650 $) (-1182 $)) 61) (((-650 $) (-1182 (-413 (-570)))) NIL) (((-650 $) (-1182 (-570))) NIL) (((-650 $) (-959 $)) NIL) (((-650 $) (-959 (-413 (-570)))) NIL) (((-650 $) (-959 (-570))) NIL)) (-4141 (($ (-1070 $ (-1182 $)) (-868)) 46)) (-1367 (($ $) 22)) (-1814 (($) 32 T CONST)) (-1824 (($) 39 T CONST)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 76)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 24)) (-2975 (($ $ $) 37)) (-2965 (($ $) 38) (($ $ $) 74)) (-2953 (($ $ $) 112)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL) (($ $ (-413 (-570))) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 98) (($ $ $) 104) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ (-570) $) 98) (($ $ (-570)) NIL) (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ |#1| $) 102) (($ $ |#1|) NIL)))
+(((-1033 |#1|) (-13 (-1021) (-417 |#1|) (-38 |#1|) (-10 -8 (-15 -4141 ($ (-1070 $ (-1182 $)) (-868))) (-15 -4225 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -3064 ((-413 (-570)) $ $)))) (-13 (-854) (-368) (-1031))) (T -1033))
+((-4141 (*1 *1 *2 *3) (-12 (-5 *2 (-1070 (-1033 *4) (-1182 (-1033 *4)))) (-5 *3 (-868)) (-5 *1 (-1033 *4)) (-4 *4 (-13 (-854) (-368) (-1031))))) (-4225 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3)))) (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))) (-3064 (*1 *2 *1 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))))
+(-13 (-1021) (-417 |#1|) (-38 |#1|) (-10 -8 (-15 -4141 ($ (-1070 $ (-1182 $)) (-868))) (-15 -4225 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -3064 ((-413 (-570)) $ $))))
+((-3426 (((-2 (|:| -4302 |#2|) (|:| -3854 (-650 |#1|))) |#2| (-650 |#1|)) 32) ((|#2| |#2| |#1|) 27)))
+(((-1034 |#1| |#2|) (-10 -7 (-15 -3426 (|#2| |#2| |#1|)) (-15 -3426 ((-2 (|:| -4302 |#2|) (|:| -3854 (-650 |#1|))) |#2| (-650 |#1|)))) (-368) (-662 |#1|)) (T -1034))
+((-3426 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| -4302 *3) (|:| -3854 (-650 *5)))) (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))) (-3426 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-1034 *3 *2)) (-4 *2 (-662 *3)))))
+(-10 -7 (-15 -3426 (|#2| |#2| |#1|)) (-15 -3426 ((-2 (|:| -4302 |#2|) (|:| -3854 (-650 |#1|))) |#2| (-650 |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2293 ((|#1| $ |#1|) 14)) (-3894 ((|#1| $ |#1|) 12)) (-1838 (($ |#1|) 10)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1877 ((|#1| $) 11)) (-1384 ((|#1| $) 13)) (-3735 (((-868) $) 21 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2872 (((-112) $ $) 9)))
+(((-1035 |#1|) (-13 (-1227) (-10 -8 (-15 -1838 ($ |#1|)) (-15 -1877 (|#1| $)) (-15 -3894 (|#1| $ |#1|)) (-15 -1384 (|#1| $)) (-15 -2293 (|#1| $ |#1|)) (-15 -2872 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1035))
+((-1838 (*1 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-1877 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-3894 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-1384 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-2293 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-2872 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1035 *3)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (-15 -1838 ($ |#1|)) (-15 -1877 (|#1| $)) (-15 -3894 (|#1| $ |#1|)) (-15 -1384 (|#1| $)) (-15 -2293 (|#1| $ |#1|)) (-15 -2872 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1556 (((-650 $) (-650 |#4|)) 118) (((-650 $) (-650 |#4|) (-112)) 119) (((-650 $) (-650 |#4|) (-112) (-112)) 117) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 120)) (-1713 (((-650 |#3|) $) NIL)) (-2977 (((-112) $) NIL)) (-3873 (((-112) $) NIL (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3870 ((|#4| |#4| $) NIL)) (-3252 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 112)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-1425 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 66)) (-3761 (($) NIL T CONST)) (-2391 (((-112) $) 29 (|has| |#1| (-562)))) (-1475 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2993 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2376 (((-112) $) NIL (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2996 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 45)) (-3565 ((|#4| |#4| $) 69)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1703 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 85 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) NIL)) (-3045 (((-112) |#4| $) NIL)) (-3412 (((-112) |#4| $) NIL)) (-2561 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1795 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 133)) (-2835 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2451 ((|#3| $) 38)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#4|) $) 19 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 23)) (-2881 (((-650 |#3|) $) NIL)) (-3710 (((-112) |#3| $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-1444 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-2068 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 110)) (-1729 (((-3 |#4| "failed") $) 42)) (-1403 (((-650 $) |#4| $) 93)) (-3840 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 103) (((-112) |#4| $) 64)) (-2885 (((-650 $) |#4| $) 115) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 116) (((-650 $) |#4| (-650 $)) NIL)) (-2111 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 128)) (-1486 (($ |#4| $) 82) (($ (-650 |#4|) $) 83) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 79)) (-1507 (((-650 |#4|) $) NIL)) (-1810 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1831 ((|#4| |#4| $) NIL)) (-2458 (((-112) $ $) NIL)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3464 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 40)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2329 (((-3 $ "failed") $ |#4|) 59)) (-4102 (($ $ |#4|) NIL) (((-650 $) |#4| $) 95) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 89)) (-2697 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 17)) (-3006 (($) 14)) (-3221 (((-777) $) NIL)) (-3490 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) 13)) (-1417 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 22)) (-3408 (($ $ |#3|) 52)) (-4164 (($ $ |#3|) 54)) (-4148 (($ $) NIL)) (-1842 (($ $ |#3|) NIL)) (-3735 (((-868) $) 35) (((-650 |#4|) $) 46)) (-3580 (((-777) $) NIL (|has| |#3| (-373)))) (-3866 (((-112) $ $) NIL)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-3811 (((-650 $) |#4| $) 92) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-2964 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) NIL)) (-2626 (((-112) |#4| $) NIL)) (-2048 (((-112) |#3| $) 65)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1036 |#1| |#2| |#3| |#4|) (-13 (-1080 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1486 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -2111 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1795 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1036))
+((-1486 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *3))) (-5 *1 (-1036 *5 *6 *7 *3)) (-4 *3 (-1074 *5 *6 *7)))) (-1556 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8)))) (-1556 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8)))) (-2111 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8)))) (-1795 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-650 *8)) (|:| |towers| (-650 (-1036 *5 *6 *7 *8))))) (-5 *1 (-1036 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+(-13 (-1080 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1486 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -2111 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1795 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
+((-2054 (((-650 (-695 |#1|)) (-650 (-695 |#1|))) 73) (((-695 |#1|) (-695 |#1|)) 72) (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 71) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 68)) (-4012 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 66) (((-695 |#1|) (-695 |#1|) (-928)) 65)) (-1314 (((-650 (-695 (-570))) (-650 (-650 (-570)))) 84) (((-650 (-695 (-570))) (-650 (-912 (-570))) (-570)) 83) (((-695 (-570)) (-650 (-570))) 80) (((-695 (-570)) (-912 (-570)) (-570)) 78)) (-2219 (((-695 (-959 |#1|)) (-777)) 98)) (-3268 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 52 (|has| |#1| (-6 (-4451 "*")))) (((-695 |#1|) (-695 |#1|) (-928)) 50 (|has| |#1| (-6 (-4451 "*"))))))
+(((-1037 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -3268 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -3268 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -2219 ((-695 (-959 |#1|)) (-777))) (-15 -4012 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -4012 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -2054 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2054 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2054 ((-695 |#1|) (-695 |#1|))) (-15 -2054 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -1314 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -1314 ((-695 (-570)) (-650 (-570)))) (-15 -1314 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -1314 ((-650 (-695 (-570))) (-650 (-650 (-570)))))) (-1058)) (T -1037))
+((-1314 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-1314 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-912 (-570)))) (-5 *4 (-570)) (-5 *2 (-650 (-695 *4))) (-5 *1 (-1037 *5)) (-4 *5 (-1058)))) (-1314 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-1314 (*1 *2 *3 *4) (-12 (-5 *3 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4)) (-5 *1 (-1037 *5)) (-4 *5 (-1058)))) (-2054 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-2054 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-2054 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-2054 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-4012 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-4012 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-3268 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (|has| *4 (-6 (-4451 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-3268 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (|has| *4 (-6 (-4451 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -3268 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -3268 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -2219 ((-695 (-959 |#1|)) (-777))) (-15 -4012 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -4012 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -2054 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2054 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2054 ((-695 |#1|) (-695 |#1|))) (-15 -2054 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -1314 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -1314 ((-695 (-570)) (-650 (-570)))) (-15 -1314 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -1314 ((-650 (-695 (-570))) (-650 (-650 (-570))))))
+((-3773 (((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)) 71 (|has| |#1| (-311)))) (-4289 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))) 111 (|has| |#1| (-368))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|)) 118 (|has| |#1| (-368)))) (-4200 (((-1277 |#1|) (-650 (-1277 |#1|)) (-570)) 136 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-3848 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928)) 124 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112)) 123 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|))) 122 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570)) 121 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-3509 (((-112) (-650 (-695 |#1|))) 104 (|has| |#1| (-368))) (((-112) (-650 (-695 |#1|)) (-570)) 107 (|has| |#1| (-368)))) (-1634 (((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|)) 68 (|has| |#1| (-311)))) (-1840 (((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|)) 48)) (-2565 (((-695 |#1|) (-1277 (-1277 |#1|))) 41)) (-2281 (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570)) 95 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 94 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570)) 102 (|has| |#1| (-368)))))
+(((-1038 |#1|) (-10 -7 (-15 -2565 ((-695 |#1|) (-1277 (-1277 |#1|)))) (-15 -1840 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -1634 ((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -3773 ((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2281 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -2281 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2281 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -3509 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -3509 ((-112) (-650 (-695 |#1|)))) (-15 -4289 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -4289 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -4200 ((-1277 |#1|) (-650 (-1277 |#1|)) (-570)))) |%noBranch|) |%noBranch|)) (-1058)) (T -1038))
+((-4200 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1277 *5))) (-5 *4 (-570)) (-5 *2 (-1277 *5)) (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)))) (-3848 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-3848 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-3848 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *4 (-373)) (-4 *4 (-1058)) (-5 *2 (-650 (-650 (-695 *4)))) (-5 *1 (-1038 *4)) (-5 *3 (-650 (-695 *4))))) (-3848 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-570)) (-4 *6 (-368)) (-4 *6 (-373)) (-4 *6 (-1058)) (-5 *2 (-650 (-650 (-695 *6)))) (-5 *1 (-1038 *6)) (-5 *3 (-650 (-695 *6))))) (-4289 (*1 *2 *3 *4) (-12 (-5 *4 (-1277 (-1277 *5))) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-4289 (*1 *2 *3 *4) (-12 (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5)) (-5 *3 (-650 (-695 *5))))) (-3509 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *4)))) (-3509 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *5)))) (-2281 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-5 *2 (-695 *5)) (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-1058)))) (-2281 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)) (-4 *4 (-368)) (-4 *4 (-1058)))) (-2281 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-650 (-695 *6))) (-5 *4 (-112)) (-5 *5 (-570)) (-5 *2 (-695 *6)) (-5 *1 (-1038 *6)) (-4 *6 (-368)) (-4 *6 (-1058)))) (-3773 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-1277 *5)) (-4 *5 (-311)) (-4 *5 (-1058)) (-5 *2 (-695 *5)) (-5 *1 (-1038 *5)))) (-1634 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-695 *5))) (-4 *5 (-311)) (-4 *5 (-1058)) (-5 *2 (-1277 (-1277 *5))) (-5 *1 (-1038 *5)) (-5 *4 (-1277 *5)))) (-1840 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1038 *4)))) (-2565 (*1 *2 *3) (-12 (-5 *3 (-1277 (-1277 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)))))
+(-10 -7 (-15 -2565 ((-695 |#1|) (-1277 (-1277 |#1|)))) (-15 -1840 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -1634 ((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -3773 ((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2281 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -2281 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2281 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -3509 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -3509 ((-112) (-650 (-695 |#1|)))) (-15 -4289 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -4289 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -3848 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -4200 ((-1277 |#1|) (-650 (-1277 |#1|)) (-570)))) |%noBranch|) |%noBranch|))
((-2627 ((|#1| (-928) |#1|) 18)))
-(((-1039 |#1|) (-10 -7 (-15 -2627 (|#1| (-928) |#1|))) (-13 (-1109) (-10 -8 (-15 -2954 ($ $ $))))) (T -1039))
-((-2627 (*1 *2 *3 *2) (-12 (-5 *3 (-928)) (-5 *1 (-1039 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 -2954 ($ $ $))))))))
+(((-1039 |#1|) (-10 -7 (-15 -2627 (|#1| (-928) |#1|))) (-13 (-1109) (-10 -8 (-15 -2953 ($ $ $))))) (T -1039))
+((-2627 (*1 *2 *3 *2) (-12 (-5 *3 (-928)) (-5 *1 (-1039 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 -2953 ($ $ $))))))))
(-10 -7 (-15 -2627 (|#1| (-928) |#1|)))
-((-4148 (((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570))))) 67)) (-4266 (((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570))))) 52)) (-3419 (((-650 (-320 (-570))) (-695 (-413 (-959 (-570))))) 45)) (-3168 (((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570))))) 87)) (-3889 (((-695 (-320 (-570))) (-695 (-320 (-570)))) 38)) (-2665 (((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570))))) 76)) (-2058 (((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570))))) 84)))
-(((-1040) (-10 -7 (-15 -4148 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -4266 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -3419 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -2058 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -3889 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -2665 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -3168 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))) (T -1040))
-((-3168 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-2665 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-3889 (*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-2058 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-3419 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570)))) (-5 *1 (-1040)))) (-4266 (*1 *2 *3 *4) (-12 (-5 *4 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)) (-5 *3 (-320 (-570))))) (-4148 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570)))))))) (-5 *1 (-1040)))))
-(-10 -7 (-15 -4148 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -4266 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -3419 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -2058 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -3889 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -2665 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -3168 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))
-((-2174 ((|#1| |#1| (-928)) 18)))
-(((-1041 |#1|) (-10 -7 (-15 -2174 (|#1| |#1| (-928)))) (-13 (-1109) (-10 -8 (-15 * ($ $ $))))) (T -1041))
-((-2174 (*1 *2 *2 *3) (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -2174 (|#1| |#1| (-928))))
-((-3735 ((|#1| (-316)) 11) (((-1281) |#1|) 9)))
-(((-1042 |#1|) (-10 -7 (-15 -3735 ((-1281) |#1|)) (-15 -3735 (|#1| (-316)))) (-1226)) (T -1042))
-((-3735 (*1 *2 *3) (-12 (-5 *3 (-316)) (-5 *1 (-1042 *2)) (-4 *2 (-1226)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-1281)) (-5 *1 (-1042 *3)) (-4 *3 (-1226)))))
-(-10 -7 (-15 -3735 ((-1281) |#1|)) (-15 -3735 (|#1| (-316))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3529 (($ |#4|) 25)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-3516 ((|#4| $) 27)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 46) (($ (-570)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2744 (((-777)) 43 T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 21 T CONST)) (-1823 (($) 23 T CONST)) (-2872 (((-112) $ $) 40)) (-2965 (($ $) 31) (($ $ $) NIL)) (-2954 (($ $ $) 29)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-1043 |#1| |#2| |#3| |#4| |#5|) (-13 (-174) (-38 |#1|) (-10 -8 (-15 -3529 ($ |#4|)) (-15 -3735 ($ |#4|)) (-15 -3516 (|#4| $)))) (-368) (-799) (-856) (-956 |#1| |#2| |#3|) (-650 |#4|)) (T -1043))
-((-3529 (*1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *2 (-956 *3 *4 *5)) (-14 *6 (-650 *2)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *2 (-956 *3 *4 *5)) (-14 *6 (-650 *2)))) (-3516 (*1 *2 *1) (-12 (-4 *2 (-956 *3 *4 *5)) (-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-14 *6 (-650 *2)))))
-(-13 (-174) (-38 |#1|) (-10 -8 (-15 -3529 ($ |#4|)) (-15 -3735 ($ |#4|)) (-15 -3516 (|#4| $))))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-3225 (((-1281) $ (-1186) (-1186)) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-2693 (((-112) (-112)) 43)) (-4199 (((-112) (-112)) 42)) (-3895 (((-52) $ (-1186) (-52)) NIL)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 (-52) "failed") (-1186) $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2513 (($ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1702 (($ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-3790 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4449)))) (-3712 (((-52) $ (-1186)) NIL)) (-2836 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-650 (-52)) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-1186) $) NIL (|has| (-1186) (-856)))) (-2849 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-650 (-52)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109))))) (-4329 (((-1186) $) NIL (|has| (-1186) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2760 (((-650 (-1186)) $) 37)) (-2696 (((-112) (-1186) $) NIL)) (-3784 (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL)) (-2278 (($ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL)) (-2344 (((-650 (-1186)) $) NIL)) (-1354 (((-112) (-1186) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-3443 (((-52) $) NIL (|has| (-1186) (-856)))) (-3321 (((-3 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) "failed") (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL)) (-1952 (($ $ (-52)) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-650 (-52)) (-650 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-298 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-650 (-298 (-52)))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109))))) (-4245 (((-650 (-52)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 (((-52) $ (-1186)) 39) (((-52) $ (-1186) (-52)) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-3735 (((-868) $) 41 (-2740 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1044) (-13 (-1202 (-1186) (-52)) (-10 -7 (-15 -2693 ((-112) (-112))) (-15 -4199 ((-112) (-112))) (-6 -4448)))) (T -1044))
-((-2693 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))) (-4199 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
-(-13 (-1202 (-1186) (-52)) (-10 -7 (-15 -2693 ((-112) (-112))) (-15 -4199 ((-112) (-112))) (-6 -4448)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1425 (((-1144) $) 9)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1045) (-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $))))) (T -1045))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1045)))))
-(-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $))))
+((-1527 (((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570))))) 67)) (-3245 (((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570))))) 52)) (-2988 (((-650 (-320 (-570))) (-695 (-413 (-959 (-570))))) 45)) (-1312 (((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570))))) 87)) (-3852 (((-695 (-320 (-570))) (-695 (-320 (-570)))) 38)) (-2067 (((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570))))) 76)) (-2203 (((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570))))) 84)))
+(((-1040) (-10 -7 (-15 -1527 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -3245 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -2988 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -2203 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -3852 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -2067 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -1312 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))) (T -1040))
+((-1312 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-2067 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-3852 (*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-2203 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-2988 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570)))) (-5 *1 (-1040)))) (-3245 (*1 *2 *3 *4) (-12 (-5 *4 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)) (-5 *3 (-320 (-570))))) (-1527 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570)))))))) (-5 *1 (-1040)))))
+(-10 -7 (-15 -1527 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -3245 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -2988 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -2203 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -3852 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -2067 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -1312 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))
+((-4048 ((|#1| |#1| (-928)) 18)))
+(((-1041 |#1|) (-10 -7 (-15 -4048 (|#1| |#1| (-928)))) (-13 (-1109) (-10 -8 (-15 * ($ $ $))))) (T -1041))
+((-4048 (*1 *2 *2 *3) (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -4048 (|#1| |#1| (-928))))
+((-3735 ((|#1| (-316)) 11) (((-1282) |#1|) 9)))
+(((-1042 |#1|) (-10 -7 (-15 -3735 ((-1282) |#1|)) (-15 -3735 (|#1| (-316)))) (-1227)) (T -1042))
+((-3735 (*1 *2 *3) (-12 (-5 *3 (-316)) (-5 *1 (-1042 *2)) (-4 *2 (-1227)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-1282)) (-5 *1 (-1042 *3)) (-4 *3 (-1227)))))
+(-10 -7 (-15 -3735 ((-1282) |#1|)) (-15 -3735 (|#1| (-316))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-3529 (($ |#4|) 25)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-3514 ((|#4| $) 27)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 46) (($ (-570)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-1609 (((-777)) 43 T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 21 T CONST)) (-1824 (($) 23 T CONST)) (-2872 (((-112) $ $) 40)) (-2965 (($ $) 31) (($ $ $) NIL)) (-2953 (($ $ $) 29)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-1043 |#1| |#2| |#3| |#4| |#5|) (-13 (-174) (-38 |#1|) (-10 -8 (-15 -3529 ($ |#4|)) (-15 -3735 ($ |#4|)) (-15 -3514 (|#4| $)))) (-368) (-799) (-856) (-956 |#1| |#2| |#3|) (-650 |#4|)) (T -1043))
+((-3529 (*1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *2 (-956 *3 *4 *5)) (-14 *6 (-650 *2)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *2 (-956 *3 *4 *5)) (-14 *6 (-650 *2)))) (-3514 (*1 *2 *1) (-12 (-4 *2 (-956 *3 *4 *5)) (-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-14 *6 (-650 *2)))))
+(-13 (-174) (-38 |#1|) (-10 -8 (-15 -3529 ($ |#4|)) (-15 -3735 ($ |#4|)) (-15 -3514 (|#4| $))))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-3727 (((-1282) $ (-1186) (-1186)) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-2310 (((-112) (-112)) 43)) (-3859 (((-112) (-112)) 42)) (-3894 (((-52) $ (-1186) (-52)) NIL)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 (-52) "failed") (-1186) $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-3076 (($ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1703 (($ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3789 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4450)))) (-3713 (((-52) $ (-1186)) NIL)) (-2835 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-1186) $) NIL (|has| (-1186) (-856)))) (-3201 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-2596 (((-1186) $) NIL (|has| (-1186) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-2761 (((-650 (-1186)) $) 37)) (-2338 (((-112) (-1186) $) NIL)) (-2192 (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL)) (-2599 (($ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL)) (-2122 (((-650 (-1186)) $) NIL)) (-2083 (((-112) (-1186) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-3443 (((-52) $) NIL (|has| (-1186) (-856)))) (-3281 (((-3 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) "failed") (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL)) (-3531 (($ $ (-52)) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-650 (-52)) (-650 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-298 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-650 (-298 (-52)))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-4348 (((-650 (-52)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 (((-52) $ (-1186)) 39) (((-52) $ (-1186) (-52)) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-3735 (((-868) $) 41 (-2740 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1044) (-13 (-1203 (-1186) (-52)) (-10 -7 (-15 -2310 ((-112) (-112))) (-15 -3859 ((-112) (-112))) (-6 -4449)))) (T -1044))
+((-2310 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))) (-3859 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
+(-13 (-1203 (-1186) (-52)) (-10 -7 (-15 -2310 ((-112) (-112))) (-15 -3859 ((-112) (-112))) (-6 -4449)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1426 (((-1144) $) 9)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1045) (-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $))))) (T -1045))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1045)))))
+(-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $))))
((-3080 ((|#2| $) 10)))
-(((-1046 |#1| |#2|) (-10 -8 (-15 -3080 (|#2| |#1|))) (-1047 |#2|) (-1226)) (T -1046))
+(((-1046 |#1| |#2|) (-10 -8 (-15 -3080 (|#2| |#1|))) (-1047 |#2|) (-1227)) (T -1046))
NIL
(-10 -8 (-15 -3080 (|#2| |#1|)))
-((-4378 (((-3 |#1| "failed") $) 9)) (-3080 ((|#1| $) 8)) (-3735 (($ |#1|) 6)))
-(((-1047 |#1|) (-141) (-1226)) (T -1047))
-((-4378 (*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1226)))) (-3080 (*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1226)))))
-(-13 (-622 |t#1|) (-10 -8 (-15 -4378 ((-3 |t#1| "failed") $)) (-15 -3080 (|t#1| $))))
+((-4379 (((-3 |#1| "failed") $) 9)) (-3080 ((|#1| $) 8)) (-3735 (($ |#1|) 6)))
+(((-1047 |#1|) (-141) (-1227)) (T -1047))
+((-4379 (*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1227)))) (-3080 (*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1227)))))
+(-13 (-622 |t#1|) (-10 -8 (-15 -4379 ((-3 |t#1| "failed") $)) (-15 -3080 (|t#1| $))))
(((-622 |#1|) . T))
-((-3174 (((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))) 38)))
-(((-1048 |#1| |#2|) (-10 -7 (-15 -3174 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))))) (-562) (-13 (-562) (-1047 |#1|))) (T -1048))
-((-3174 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-4 *6 (-13 (-562) (-1047 *5))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *6)))))) (-5 *1 (-1048 *5 *6)))))
-(-10 -7 (-15 -3174 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186)))))
-((-3012 (((-384)) 17)) (-4206 (((-1 (-384)) (-384) (-384)) 22)) (-3607 (((-1 (-384)) (-777)) 50)) (-3755 (((-384)) 37)) (-3294 (((-1 (-384)) (-384) (-384)) 38)) (-2963 (((-384)) 29)) (-3438 (((-1 (-384)) (-384)) 30)) (-2383 (((-384) (-777)) 45)) (-1651 (((-1 (-384)) (-777)) 46)) (-1674 (((-1 (-384)) (-777) (-777)) 49)) (-3829 (((-1 (-384)) (-777) (-777)) 47)))
-(((-1049) (-10 -7 (-15 -3012 ((-384))) (-15 -3755 ((-384))) (-15 -2963 ((-384))) (-15 -2383 ((-384) (-777))) (-15 -4206 ((-1 (-384)) (-384) (-384))) (-15 -3294 ((-1 (-384)) (-384) (-384))) (-15 -3438 ((-1 (-384)) (-384))) (-15 -1651 ((-1 (-384)) (-777))) (-15 -3829 ((-1 (-384)) (-777) (-777))) (-15 -1674 ((-1 (-384)) (-777) (-777))) (-15 -3607 ((-1 (-384)) (-777))))) (T -1049))
-((-3607 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-1674 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-3829 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-3438 (*1 *2 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3294 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-4206 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))) (-2963 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-3755 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-3012 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(-10 -7 (-15 -3012 ((-384))) (-15 -3755 ((-384))) (-15 -2963 ((-384))) (-15 -2383 ((-384) (-777))) (-15 -4206 ((-1 (-384)) (-384) (-384))) (-15 -3294 ((-1 (-384)) (-384) (-384))) (-15 -3438 ((-1 (-384)) (-384))) (-15 -1651 ((-1 (-384)) (-777))) (-15 -3829 ((-1 (-384)) (-777) (-777))) (-15 -1674 ((-1 (-384)) (-777) (-777))) (-15 -3607 ((-1 (-384)) (-777))))
-((-3738 (((-424 |#1|) |#1|) 33)))
-(((-1050 |#1|) (-10 -7 (-15 -3738 ((-424 |#1|) |#1|))) (-1252 (-413 (-959 (-570))))) (T -1050))
-((-3738 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1050 *3)) (-4 *3 (-1252 (-413 (-959 (-570))))))))
-(-10 -7 (-15 -3738 ((-424 |#1|) |#1|)))
-((-4129 (((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))) 14)))
-(((-1051 |#1|) (-10 -7 (-15 -4129 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))))) (-311)) (T -1051))
-((-4129 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-311)) (-5 *2 (-413 (-424 (-959 *4)))) (-5 *1 (-1051 *4)))))
-(-10 -7 (-15 -4129 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|)))))
-((-1716 (((-650 (-1186)) (-413 (-959 |#1|))) 17)) (-3703 (((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186)) 24)) (-1704 (((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186)) 26)) (-3382 (((-3 (-1186) "failed") (-413 (-959 |#1|))) 20)) (-1730 (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|))))) 32) (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|)))) 33) (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|)))) 28) (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))) 29)) (-3735 (((-413 (-959 |#1|)) |#1|) 11)))
-(((-1052 |#1|) (-10 -7 (-15 -1716 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -3382 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3703 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1704 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3735 ((-413 (-959 |#1|)) |#1|))) (-562)) (T -1052))
-((-3735 (*1 *2 *3) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-1052 *3)) (-4 *3 (-562)))) (-1730 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-298 (-413 (-959 *4))))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1730 (*1 *2 *2 *3) (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1730 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-650 (-1186))) (-5 *4 (-650 (-413 (-959 *5)))) (-5 *2 (-413 (-959 *5))) (-4 *5 (-562)) (-5 *1 (-1052 *5)))) (-1730 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1704 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-1182 (-413 (-959 *5))))) (-5 *4 (-1186)) (-5 *2 (-413 (-959 *5))) (-5 *1 (-1052 *5)) (-4 *5 (-562)))) (-3703 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-562)) (-5 *2 (-413 (-1182 (-413 (-959 *5))))) (-5 *1 (-1052 *5)) (-5 *3 (-413 (-959 *5))))) (-3382 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-1186)) (-5 *1 (-1052 *4)))) (-1716 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-1186))) (-5 *1 (-1052 *4)))))
-(-10 -7 (-15 -1716 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -3382 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3703 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1704 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1730 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3735 ((-413 (-959 |#1|)) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-2450 (($) 18 T CONST)) (-3291 ((|#1| $) 23)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3821 ((|#1| $) 22)) (-2206 ((|#1|) 20 T CONST)) (-3735 (((-868) $) 12)) (-2164 ((|#1| $) 21)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+((-1385 (((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))) 38)))
+(((-1048 |#1| |#2|) (-10 -7 (-15 -1385 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))))) (-562) (-13 (-562) (-1047 |#1|))) (T -1048))
+((-1385 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-4 *6 (-13 (-562) (-1047 *5))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *6)))))) (-5 *1 (-1048 *5 *6)))))
+(-10 -7 (-15 -1385 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186)))))
+((-3432 (((-384)) 17)) (-3939 (((-1 (-384)) (-384) (-384)) 22)) (-3608 (((-1 (-384)) (-777)) 50)) (-1972 (((-384)) 37)) (-3294 (((-1 (-384)) (-384) (-384)) 38)) (-4259 (((-384)) 29)) (-2004 (((-1 (-384)) (-384)) 30)) (-4391 (((-384) (-777)) 45)) (-2505 (((-1 (-384)) (-777)) 46)) (-1674 (((-1 (-384)) (-777) (-777)) 49)) (-1387 (((-1 (-384)) (-777) (-777)) 47)))
+(((-1049) (-10 -7 (-15 -3432 ((-384))) (-15 -1972 ((-384))) (-15 -4259 ((-384))) (-15 -4391 ((-384) (-777))) (-15 -3939 ((-1 (-384)) (-384) (-384))) (-15 -3294 ((-1 (-384)) (-384) (-384))) (-15 -2004 ((-1 (-384)) (-384))) (-15 -2505 ((-1 (-384)) (-777))) (-15 -1387 ((-1 (-384)) (-777) (-777))) (-15 -1674 ((-1 (-384)) (-777) (-777))) (-15 -3608 ((-1 (-384)) (-777))))) (T -1049))
+((-3608 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-1674 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-1387 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-2505 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-2004 (*1 *2 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3294 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3939 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-4391 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))) (-4259 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-1972 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-3432 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+(-10 -7 (-15 -3432 ((-384))) (-15 -1972 ((-384))) (-15 -4259 ((-384))) (-15 -4391 ((-384) (-777))) (-15 -3939 ((-1 (-384)) (-384) (-384))) (-15 -3294 ((-1 (-384)) (-384) (-384))) (-15 -2004 ((-1 (-384)) (-384))) (-15 -2505 ((-1 (-384)) (-777))) (-15 -1387 ((-1 (-384)) (-777) (-777))) (-15 -1674 ((-1 (-384)) (-777) (-777))) (-15 -3608 ((-1 (-384)) (-777))))
+((-3739 (((-424 |#1|) |#1|) 33)))
+(((-1050 |#1|) (-10 -7 (-15 -3739 ((-424 |#1|) |#1|))) (-1253 (-413 (-959 (-570))))) (T -1050))
+((-3739 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1050 *3)) (-4 *3 (-1253 (-413 (-959 (-570))))))))
+(-10 -7 (-15 -3739 ((-424 |#1|) |#1|)))
+((-1341 (((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))) 14)))
+(((-1051 |#1|) (-10 -7 (-15 -1341 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))))) (-311)) (T -1051))
+((-1341 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-311)) (-5 *2 (-413 (-424 (-959 *4)))) (-5 *1 (-1051 *4)))))
+(-10 -7 (-15 -1341 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|)))))
+((-1713 (((-650 (-1186)) (-413 (-959 |#1|))) 17)) (-3702 (((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186)) 24)) (-1705 (((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186)) 26)) (-2645 (((-3 (-1186) "failed") (-413 (-959 |#1|))) 20)) (-1731 (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|))))) 32) (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|)))) 33) (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|)))) 28) (((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))) 29)) (-3735 (((-413 (-959 |#1|)) |#1|) 11)))
+(((-1052 |#1|) (-10 -7 (-15 -1713 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -2645 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3702 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1705 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3735 ((-413 (-959 |#1|)) |#1|))) (-562)) (T -1052))
+((-3735 (*1 *2 *3) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-1052 *3)) (-4 *3 (-562)))) (-1731 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-298 (-413 (-959 *4))))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1731 (*1 *2 *2 *3) (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1731 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-650 (-1186))) (-5 *4 (-650 (-413 (-959 *5)))) (-5 *2 (-413 (-959 *5))) (-4 *5 (-562)) (-5 *1 (-1052 *5)))) (-1731 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1705 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-1182 (-413 (-959 *5))))) (-5 *4 (-1186)) (-5 *2 (-413 (-959 *5))) (-5 *1 (-1052 *5)) (-4 *5 (-562)))) (-3702 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-562)) (-5 *2 (-413 (-1182 (-413 (-959 *5))))) (-5 *1 (-1052 *5)) (-5 *3 (-413 (-959 *5))))) (-2645 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-1186)) (-5 *1 (-1052 *4)))) (-1713 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-1186))) (-5 *1 (-1052 *4)))))
+(-10 -7 (-15 -1713 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -2645 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3702 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1705 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1731 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3735 ((-413 (-959 |#1|)) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3761 (($) 18 T CONST)) (-3019 ((|#1| $) 23)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-4424 ((|#1| $) 22)) (-3069 ((|#1|) 20 T CONST)) (-3735 (((-868) $) 12)) (-3943 ((|#1| $) 21)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-1053 |#1|) (-141) (-23)) (T -1053))
-((-3291 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-3821 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-2164 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-2206 (*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(-13 (-23) (-10 -8 (-15 -3291 (|t#1| $)) (-15 -3821 (|t#1| $)) (-15 -2164 (|t#1| $)) (-15 -2206 (|t#1|) -3640)))
+((-3019 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-4424 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-3943 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-3069 (*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(-13 (-23) (-10 -8 (-15 -3019 (|t#1| $)) (-15 -4424 (|t#1| $)) (-15 -3943 (|t#1| $)) (-15 -3069 (|t#1|) -3640)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3135 (($) 25 T CONST)) (-2450 (($) 18 T CONST)) (-3291 ((|#1| $) 23)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3821 ((|#1| $) 22)) (-2206 ((|#1|) 20 T CONST)) (-3735 (((-868) $) 12)) (-2164 ((|#1| $) 21)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2212 (($) 25 T CONST)) (-3761 (($) 18 T CONST)) (-3019 ((|#1| $) 23)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-4424 ((|#1| $) 22)) (-3069 ((|#1|) 20 T CONST)) (-3735 (((-868) $) 12)) (-3943 ((|#1| $) 21)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-1054 |#1|) (-141) (-23)) (T -1054))
-((-3135 (*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
-(-13 (-1053 |t#1|) (-10 -8 (-15 -3135 ($) -3640)))
+((-2212 (*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
+(-13 (-1053 |t#1|) (-10 -8 (-15 -2212 ($) -3640)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1053 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 (-786 |#1| (-870 |#2|)))))) (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-2411 (((-650 $) (-650 (-786 |#1| (-870 |#2|)))) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)) NIL)) (-1716 (((-650 (-870 |#2|)) $) NIL)) (-3418 (((-112) $) NIL)) (-1536 (((-112) $) NIL (|has| |#1| (-562)))) (-2920 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-4200 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-2222 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3593 $))) (-786 |#1| (-870 |#2|)) $) NIL)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ (-870 |#2|)) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1424 (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 (-786 |#1| (-870 |#2|)) "failed") $ (-870 |#2|)) NIL)) (-2450 (($) NIL T CONST)) (-3809 (((-112) $) NIL (|has| |#1| (-562)))) (-2730 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1905 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2374 (((-112) $) NIL (|has| |#1| (-562)))) (-2072 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-3742 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-4205 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3080 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3455 (((-3 $ "failed") $) NIL)) (-2561 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-1702 (($ (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-2914 (((-112) (-786 |#1| (-870 |#2|)) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-1808 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3529 (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $ (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $ (-786 |#1| (-870 |#2|))) NIL (|has| $ (-6 -4448))) (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-3169 (((-2 (|:| -4104 (-650 (-786 |#1| (-870 |#2|)))) (|:| -1727 (-650 (-786 |#1| (-870 |#2|))))) $) NIL)) (-2974 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-3333 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-3052 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2836 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3911 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2711 (((-870 |#2|) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-3776 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL)) (-3727 (((-650 (-870 |#2|)) $) NIL)) (-1844 (((-112) (-870 |#2|) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-1796 (((-3 (-786 |#1| (-870 |#2|)) (-650 $)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3769 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3593 $))) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1728 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-2395 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL)) (-3235 (((-3 (-112) (-650 $)) (-786 |#1| (-870 |#2|)) $) NIL)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2307 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-650 $)) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) (-650 $)) NIL)) (-2731 (($ (-786 |#1| (-870 |#2|)) $) NIL) (($ (-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-3185 (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-1329 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-1695 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-4122 (((-112) $ $) NIL)) (-3880 (((-2 (|:| |num| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-3236 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3339 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-3321 (((-3 (-786 |#1| (-870 |#2|)) "failed") (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL)) (-3802 (((-3 $ "failed") $ (-786 |#1| (-870 |#2|))) NIL)) (-1558 (($ $ (-786 |#1| (-870 |#2|))) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) (-650 $)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-650 $)) NIL)) (-1671 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|)))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ $ (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ $ (-298 (-786 |#1| (-870 |#2|)))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ $ (-650 (-298 (-786 |#1| (-870 |#2|))))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1601 (((-777) $) NIL)) (-3486 (((-777) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (((-777) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-786 |#1| (-870 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-4280 (($ $ (-870 |#2|)) NIL)) (-2185 (($ $ (-870 |#2|)) NIL)) (-1892 (($ $) NIL)) (-1332 (($ $ (-870 |#2|)) NIL)) (-3735 (((-868) $) NIL) (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-1633 (((-777) $) NIL (|has| (-870 |#2|) (-373)))) (-1859 (((-112) $ $) NIL)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 (-786 |#1| (-870 |#2|))))) "failed") (-650 (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 (-786 |#1| (-870 |#2|))))) "failed") (-650 (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-2844 (((-112) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-650 (-786 |#1| (-870 |#2|))))) NIL)) (-4194 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) (-650 $)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-650 $)) NIL)) (-4368 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1521 (((-650 (-870 |#2|)) $) NIL)) (-1985 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2663 (((-112) (-870 |#2|) $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1055 |#1| |#2|) (-13 (-1080 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|))) (-10 -8 (-15 -2411 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112))))) (-458) (-650 (-1186))) (T -1055))
-((-2411 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1055 *5 *6)))))
-(-13 (-1080 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|))) (-10 -8 (-15 -2411 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)))))
-((-4206 (((-1 (-570)) (-1103 (-570))) 32)) (-3290 (((-570) (-570) (-570) (-570) (-570)) 29)) (-3559 (((-1 (-570)) |RationalNumber|) NIL)) (-2364 (((-1 (-570)) |RationalNumber|) NIL)) (-1397 (((-1 (-570)) (-570) |RationalNumber|) NIL)))
-(((-1056) (-10 -7 (-15 -4206 ((-1 (-570)) (-1103 (-570)))) (-15 -1397 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -3559 ((-1 (-570)) |RationalNumber|)) (-15 -2364 ((-1 (-570)) |RationalNumber|)) (-15 -3290 ((-570) (-570) (-570) (-570) (-570))))) (T -1056))
-((-3290 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))) (-2364 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-3559 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-1397 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)) (-5 *3 (-570)))) (-4206 (*1 *2 *3) (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
-(-10 -7 (-15 -4206 ((-1 (-570)) (-1103 (-570)))) (-15 -1397 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -3559 ((-1 (-570)) |RationalNumber|)) (-15 -2364 ((-1 (-570)) |RationalNumber|)) (-15 -3290 ((-570) (-570) (-570) (-570) (-570))))
+((-2417 (((-112) $ $) NIL)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 (-786 |#1| (-870 |#2|)))))) (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-1556 (((-650 $) (-650 (-786 |#1| (-870 |#2|)))) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)) NIL)) (-1713 (((-650 (-870 |#2|)) $) NIL)) (-2977 (((-112) $) NIL)) (-3873 (((-112) $) NIL (|has| |#1| (-562)))) (-3821 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3870 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3252 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3593 $))) (-786 |#1| (-870 |#2|)) $) NIL)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ (-870 |#2|)) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-1425 (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 (-786 |#1| (-870 |#2|)) "failed") $ (-870 |#2|)) NIL)) (-3761 (($) NIL T CONST)) (-2391 (((-112) $) NIL (|has| |#1| (-562)))) (-1475 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2993 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2376 (((-112) $) NIL (|has| |#1| (-562)))) (-2327 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-2996 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-3928 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3080 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3455 (((-3 $ "failed") $) NIL)) (-3565 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-1703 (($ (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-3747 (((-112) (-786 |#1| (-870 |#2|)) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-1544 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3529 (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $ (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $ (-786 |#1| (-870 |#2|))) NIL (|has| $ (-6 -4449))) (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-1322 (((-2 (|:| -4104 (-650 (-786 |#1| (-870 |#2|)))) (|:| -1726 (-650 (-786 |#1| (-870 |#2|))))) $) NIL)) (-3045 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-3412 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2561 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2835 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-4071 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2451 (((-870 |#2|) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-3776 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL)) (-2881 (((-650 (-870 |#2|)) $) NIL)) (-3710 (((-112) (-870 |#2|) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-1444 (((-3 (-786 |#1| (-870 |#2|)) (-650 $)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-2068 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3593 $))) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1729 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-1403 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL)) (-3840 (((-3 (-112) (-650 $)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2885 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-650 $)) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) (-650 $)) NIL)) (-1486 (($ (-786 |#1| (-870 |#2|)) $) NIL) (($ (-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-1507 (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-1810 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-1831 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-2458 (((-112) $ $) NIL)) (-1920 (((-2 (|:| |num| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-3851 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3464 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-3281 (((-3 (-786 |#1| (-870 |#2|)) "failed") (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL)) (-2329 (((-3 $ "failed") $ (-786 |#1| (-870 |#2|))) NIL)) (-4102 (($ $ (-786 |#1| (-870 |#2|))) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) (-650 $)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-650 $)) NIL)) (-2697 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|)))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ $ (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ $ (-298 (-786 |#1| (-870 |#2|)))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ $ (-650 (-298 (-786 |#1| (-870 |#2|))))) NIL (-12 (|has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-3221 (((-777) $) NIL)) (-3490 (((-777) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (((-777) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-786 |#1| (-870 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3408 (($ $ (-870 |#2|)) NIL)) (-4164 (($ $ (-870 |#2|)) NIL)) (-4148 (($ $) NIL)) (-1842 (($ $ (-870 |#2|)) NIL)) (-3735 (((-868) $) NIL) (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-3580 (((-777) $) NIL (|has| (-870 |#2|) (-373)))) (-3866 (((-112) $ $) NIL)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 (-786 |#1| (-870 |#2|))))) "failed") (-650 (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 (-786 |#1| (-870 |#2|))))) "failed") (-650 (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|))) (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-3146 (((-112) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-650 (-786 |#1| (-870 |#2|))))) NIL)) (-3811 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL) (((-650 $) (-786 |#1| (-870 |#2|)) (-650 $)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) $) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-650 $)) NIL)) (-2964 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3690 (((-650 (-870 |#2|)) $) NIL)) (-2626 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2048 (((-112) (-870 |#2|) $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1055 |#1| |#2|) (-13 (-1080 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|))) (-10 -8 (-15 -1556 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112))))) (-458) (-650 (-1186))) (T -1055))
+((-1556 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458)) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1055 *5 *6)))))
+(-13 (-1080 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|))) (-10 -8 (-15 -1556 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)))))
+((-3939 (((-1 (-570)) (-1103 (-570))) 32)) (-4312 (((-570) (-570) (-570) (-570) (-570)) 29)) (-3775 (((-1 (-570)) |RationalNumber|) NIL)) (-2305 (((-1 (-570)) |RationalNumber|) NIL)) (-3829 (((-1 (-570)) (-570) |RationalNumber|) NIL)))
+(((-1056) (-10 -7 (-15 -3939 ((-1 (-570)) (-1103 (-570)))) (-15 -3829 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -3775 ((-1 (-570)) |RationalNumber|)) (-15 -2305 ((-1 (-570)) |RationalNumber|)) (-15 -4312 ((-570) (-570) (-570) (-570) (-570))))) (T -1056))
+((-4312 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))) (-2305 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-3775 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-3829 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)) (-5 *3 (-570)))) (-3939 (*1 *2 *3) (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(-10 -7 (-15 -3939 ((-1 (-570)) (-1103 (-570)))) (-15 -3829 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -3775 ((-1 (-570)) |RationalNumber|)) (-15 -2305 ((-1 (-570)) |RationalNumber|)) (-15 -4312 ((-570) (-570) (-570) (-570) (-570))))
((-3735 (((-868) $) NIL) (($ (-570)) 10)))
(((-1057 |#1|) (-10 -8 (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1058)) (T -1057))
NIL
(-10 -8 (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-1058) (-141)) (T -1058))
-((-2744 (*1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-777)))))
-(-13 (-1067) (-732) (-654 $) (-622 (-570)) (-10 -7 (-15 -2744 ((-777)) -3640) (-6 -4445)))
+((-1609 (*1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-777)))))
+(-13 (-1067) (-732) (-654 $) (-622 (-570)) (-10 -7 (-15 -1609 ((-777)) -3640) (-6 -4446)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2262 (((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)) 60)))
-(((-1059 |#1| |#2|) (-10 -7 (-15 -2262 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)))) (-1186) (-368)) (T -1059))
-((-2262 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-777)) (-4 *6 (-368)) (-5 *2 (-413 (-959 *6))) (-5 *1 (-1059 *5 *6)) (-14 *5 (-1186)))))
-(-10 -7 (-15 -2262 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 15)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 16 T CONST)) (-2872 (((-112) $ $) 6)) (* (($ $ |#1|) 14)))
+((-2456 (((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)) 60)))
+(((-1059 |#1| |#2|) (-10 -7 (-15 -2456 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)))) (-1186) (-368)) (T -1059))
+((-2456 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-777)) (-4 *6 (-368)) (-5 *2 (-413 (-959 *6))) (-5 *1 (-1059 *5 *6)) (-14 *5 (-1186)))))
+(-10 -7 (-15 -2456 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 15)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 16 T CONST)) (-2872 (((-112) $ $) 6)) (* (($ $ |#1|) 14)))
(((-1060 |#1|) (-141) (-1067)) (T -1060))
-((-1812 (*1 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))) (-4028 (*1 *2 *1) (-12 (-4 *1 (-1060 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))))
-(-13 (-1109) (-10 -8 (-15 (-1812) ($) -3640) (-15 -4028 ((-112) $)) (-15 * ($ $ |t#1|))))
+((-1814 (*1 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))) (-2745 (*1 *2 *1) (-12 (-4 *1 (-1060 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))))
+(-13 (-1109) (-10 -8 (-15 (-1814) ($) -3640) (-15 -2745 ((-112) $)) (-15 * ($ $ |t#1|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-1813 (((-112) $) 40)) (-1837 (((-112) $) 17)) (-3153 (((-777) $) 13)) (-3167 (((-777) $) 14)) (-3055 (((-112) $) 30)) (-3317 (((-112) $) 42)))
-(((-1061 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -3167 ((-777) |#1|)) (-15 -3153 ((-777) |#1|)) (-15 -3317 ((-112) |#1|)) (-15 -1813 ((-112) |#1|)) (-15 -3055 ((-112) |#1|)) (-15 -1837 ((-112) |#1|))) (-1062 |#2| |#3| |#4| |#5| |#6|) (-777) (-777) (-1058) (-240 |#3| |#4|) (-240 |#2| |#4|)) (T -1061))
+((-1587 (((-112) $) 40)) (-3639 (((-112) $) 17)) (-3155 (((-777) $) 13)) (-3167 (((-777) $) 14)) (-2593 (((-112) $) 30)) (-3251 (((-112) $) 42)))
+(((-1061 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -3167 ((-777) |#1|)) (-15 -3155 ((-777) |#1|)) (-15 -3251 ((-112) |#1|)) (-15 -1587 ((-112) |#1|)) (-15 -2593 ((-112) |#1|)) (-15 -3639 ((-112) |#1|))) (-1062 |#2| |#3| |#4| |#5| |#6|) (-777) (-777) (-1058) (-240 |#3| |#4|) (-240 |#2| |#4|)) (T -1061))
NIL
-(-10 -8 (-15 -3167 ((-777) |#1|)) (-15 -3153 ((-777) |#1|)) (-15 -3317 ((-112) |#1|)) (-15 -1813 ((-112) |#1|)) (-15 -3055 ((-112) |#1|)) (-15 -1837 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1813 (((-112) $) 56)) (-3596 (((-3 $ "failed") $ $) 20)) (-1837 (((-112) $) 58)) (-3594 (((-112) $ (-777)) 66)) (-2450 (($) 18 T CONST)) (-3936 (($ $) 39 (|has| |#3| (-311)))) (-2653 ((|#4| $ (-570)) 44)) (-3934 (((-777) $) 38 (|has| |#3| (-562)))) (-3712 ((|#3| $ (-570) (-570)) 46)) (-2836 (((-650 |#3|) $) 73 (|has| $ (-6 -4448)))) (-1645 (((-777) $) 37 (|has| |#3| (-562)))) (-4239 (((-650 |#5|) $) 36 (|has| |#3| (-562)))) (-3153 (((-777) $) 50)) (-3167 (((-777) $) 49)) (-2742 (((-112) $ (-777)) 65)) (-3118 (((-570) $) 54)) (-1607 (((-570) $) 52)) (-2849 (((-650 |#3|) $) 74 (|has| $ (-6 -4448)))) (-3464 (((-112) |#3| $) 76 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4448))))) (-3392 (((-570) $) 53)) (-1555 (((-570) $) 51)) (-2427 (($ (-650 (-650 |#3|))) 59)) (-3776 (($ (-1 |#3| |#3|) $) 69 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#3| |#3|) $) 68) (($ (-1 |#3| |#3| |#3|) $ $) 42)) (-3747 (((-650 (-650 |#3|)) $) 48)) (-3452 (((-112) $ (-777)) 64)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ |#3|) 41 (|has| |#3| (-562)))) (-1671 (((-112) (-1 (-112) |#3|) $) 71 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#3|) (-650 |#3|)) 80 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) 79 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) 78 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 (-298 |#3|))) 77 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-4017 (((-112) $ $) 60)) (-3329 (((-112) $) 63)) (-3743 (($) 62)) (-1876 ((|#3| $ (-570) (-570)) 47) ((|#3| $ (-570) (-570) |#3|) 45)) (-3055 (((-112) $) 57)) (-3486 (((-777) |#3| $) 75 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#3|) $) 72 (|has| $ (-6 -4448)))) (-3915 (($ $) 61)) (-3541 ((|#5| $ (-570)) 43)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-4368 (((-112) (-1 (-112) |#3|) $) 70 (|has| $ (-6 -4448)))) (-3317 (((-112) $) 55)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#3|) 40 (|has| |#3| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#3| $) 27) (($ $ |#3|) 31)) (-2426 (((-777) $) 67 (|has| $ (-6 -4448)))))
+(-10 -8 (-15 -3167 ((-777) |#1|)) (-15 -3155 ((-777) |#1|)) (-15 -3251 ((-112) |#1|)) (-15 -1587 ((-112) |#1|)) (-15 -2593 ((-112) |#1|)) (-15 -3639 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1587 (((-112) $) 56)) (-4119 (((-3 $ "failed") $ $) 20)) (-3639 (((-112) $) 58)) (-4095 (((-112) $ (-777)) 66)) (-3761 (($) 18 T CONST)) (-4321 (($ $) 39 (|has| |#3| (-311)))) (-1991 ((|#4| $ (-570)) 44)) (-3933 (((-777) $) 38 (|has| |#3| (-562)))) (-3713 ((|#3| $ (-570) (-570)) 46)) (-2835 (((-650 |#3|) $) 73 (|has| $ (-6 -4449)))) (-2454 (((-777) $) 37 (|has| |#3| (-562)))) (-4296 (((-650 |#5|) $) 36 (|has| |#3| (-562)))) (-3155 (((-777) $) 50)) (-3167 (((-777) $) 49)) (-1586 (((-112) $ (-777)) 65)) (-2055 (((-570) $) 54)) (-3295 (((-570) $) 52)) (-3201 (((-650 |#3|) $) 74 (|has| $ (-6 -4449)))) (-2218 (((-112) |#3| $) 76 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4449))))) (-2755 (((-570) $) 53)) (-4067 (((-570) $) 51)) (-2427 (($ (-650 (-650 |#3|))) 59)) (-3776 (($ (-1 |#3| |#3|) $) 69 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#3| |#3|) $) 68) (($ (-1 |#3| |#3| |#3|) $ $) 42)) (-3037 (((-650 (-650 |#3|)) $) 48)) (-2113 (((-112) $ (-777)) 64)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ |#3|) 41 (|has| |#3| (-562)))) (-2697 (((-112) (-1 (-112) |#3|) $) 71 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#3|) (-650 |#3|)) 80 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) 79 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) 78 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 (-298 |#3|))) 77 (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-2621 (((-112) $ $) 60)) (-3366 (((-112) $) 63)) (-3006 (($) 62)) (-1877 ((|#3| $ (-570) (-570)) 47) ((|#3| $ (-570) (-570) |#3|) 45)) (-2593 (((-112) $) 57)) (-3490 (((-777) |#3| $) 75 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#3|) $) 72 (|has| $ (-6 -4449)))) (-3916 (($ $) 61)) (-1743 ((|#5| $ (-570)) 43)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2964 (((-112) (-1 (-112) |#3|) $) 70 (|has| $ (-6 -4449)))) (-3251 (((-112) $) 55)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#3|) 40 (|has| |#3| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#3| $) 27) (($ $ |#3|) 31)) (-2426 (((-777) $) 67 (|has| $ (-6 -4449)))))
(((-1062 |#1| |#2| |#3| |#4| |#5|) (-141) (-777) (-777) (-1058) (-240 |t#2| |t#3|) (-240 |t#1| |t#3|)) (T -1062))
-((-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *5))) (-4 *5 (-1058)) (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)))) (-1837 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-3055 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-1813 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-3317 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-3118 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-3392 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-1607 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-1555 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-3153 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-777)))) (-3167 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-777)))) (-3747 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-650 (-650 *5))))) (-1876 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)) (-4 *2 (-1058)))) (-3712 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)) (-4 *2 (-1058)))) (-1876 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *2 (-1058)) (-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)))) (-2653 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *2 *7)) (-4 *6 (-1058)) (-4 *7 (-240 *4 *6)) (-4 *2 (-240 *5 *6)))) (-3541 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *7 *2)) (-4 *6 (-1058)) (-4 *7 (-240 *5 *6)) (-4 *2 (-240 *4 *6)))) (-1351 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)))) (-2407 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1062 *3 *4 *2 *5 *6)) (-4 *2 (-1058)) (-4 *5 (-240 *4 *2)) (-4 *6 (-240 *3 *2)) (-4 *2 (-562)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-1062 *3 *4 *2 *5 *6)) (-4 *2 (-1058)) (-4 *5 (-240 *4 *2)) (-4 *6 (-240 *3 *2)) (-4 *2 (-368)))) (-3936 (*1 *1 *1) (-12 (-4 *1 (-1062 *2 *3 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *2 *4)) (-4 *4 (-311)))) (-3934 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562)) (-5 *2 (-777)))) (-1645 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562)) (-5 *2 (-777)))) (-4239 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562)) (-5 *2 (-650 *7)))))
-(-13 (-111 |t#3| |t#3|) (-495 |t#3|) (-10 -8 (-6 -4448) (IF (|has| |t#3| (-174)) (-6 (-723 |t#3|)) |%noBranch|) (-15 -2427 ($ (-650 (-650 |t#3|)))) (-15 -1837 ((-112) $)) (-15 -3055 ((-112) $)) (-15 -1813 ((-112) $)) (-15 -3317 ((-112) $)) (-15 -3118 ((-570) $)) (-15 -3392 ((-570) $)) (-15 -1607 ((-570) $)) (-15 -1555 ((-570) $)) (-15 -3153 ((-777) $)) (-15 -3167 ((-777) $)) (-15 -3747 ((-650 (-650 |t#3|)) $)) (-15 -1876 (|t#3| $ (-570) (-570))) (-15 -3712 (|t#3| $ (-570) (-570))) (-15 -1876 (|t#3| $ (-570) (-570) |t#3|)) (-15 -2653 (|t#4| $ (-570))) (-15 -3541 (|t#5| $ (-570))) (-15 -1351 ($ (-1 |t#3| |t#3|) $)) (-15 -1351 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-562)) (-15 -2407 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-368)) (-15 -2975 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-311)) (-15 -3936 ($ $)) |%noBranch|) (IF (|has| |t#3| (-562)) (PROGN (-15 -3934 ((-777) $)) (-15 -1645 ((-777) $)) (-15 -4239 ((-650 |t#5|) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-102) . T) ((-111 |#3| |#3|) . T) ((-132) . T) ((-619 (-868)) . T) ((-313 |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))) ((-495 |#3|) . T) ((-520 |#3| |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))) ((-652 (-570)) . T) ((-652 |#3|) . T) ((-654 |#3|) . T) ((-646 |#3|) |has| |#3| (-174)) ((-723 |#3|) |has| |#3| (-174)) ((-1060 |#3|) . T) ((-1065 |#3|) . T) ((-1109) . T) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1813 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-1837 (((-112) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-2450 (($) NIL T CONST)) (-3936 (($ $) 47 (|has| |#3| (-311)))) (-2653 (((-242 |#2| |#3|) $ (-570)) 36)) (-1800 (($ (-695 |#3|)) 45)) (-3934 (((-777) $) 49 (|has| |#3| (-562)))) (-3712 ((|#3| $ (-570) (-570)) NIL)) (-2836 (((-650 |#3|) $) NIL (|has| $ (-6 -4448)))) (-1645 (((-777) $) 51 (|has| |#3| (-562)))) (-4239 (((-650 (-242 |#1| |#3|)) $) 55 (|has| |#3| (-562)))) (-3153 (((-777) $) NIL)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-3118 (((-570) $) NIL)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#3|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-3392 (((-570) $) NIL)) (-1555 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#3|))) 31)) (-3776 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3747 (((-650 (-650 |#3|)) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-562)))) (-1671 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#3|) (-650 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 (-298 |#3|))) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#3| $ (-570) (-570)) NIL) ((|#3| $ (-570) (-570) |#3|) NIL)) (-2184 (((-135)) 59 (|has| |#3| (-368)))) (-3055 (((-112) $) NIL)) (-3486 (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109)))) (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) 65 (|has| |#3| (-620 (-542))))) (-3541 (((-242 |#1| |#3|) $ (-570)) 40)) (-3735 (((-868) $) 19) (((-695 |#3|) $) 42)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-3317 (((-112) $) NIL)) (-1812 (($) 16 T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1063 |#1| |#2| |#3|) (-13 (-1062 |#1| |#2| |#3| (-242 |#2| |#3|) (-242 |#1| |#3|)) (-619 (-695 |#3|)) (-10 -8 (IF (|has| |#3| (-368)) (-6 (-1283 |#3|)) |%noBranch|) (IF (|has| |#3| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (-15 -1800 ($ (-695 |#3|))))) (-777) (-777) (-1058)) (T -1063))
-((-1800 (*1 *1 *2) (-12 (-5 *2 (-695 *5)) (-4 *5 (-1058)) (-5 *1 (-1063 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)))))
-(-13 (-1062 |#1| |#2| |#3| (-242 |#2| |#3|) (-242 |#1| |#3|)) (-619 (-695 |#3|)) (-10 -8 (IF (|has| |#3| (-368)) (-6 (-1283 |#3|)) |%noBranch|) (IF (|has| |#3| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (-15 -1800 ($ (-695 |#3|)))))
-((-3529 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 36)) (-1351 ((|#10| (-1 |#7| |#3|) |#6|) 34)))
-(((-1064 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -1351 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3529 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-777) (-777) (-1058) (-240 |#2| |#3|) (-240 |#1| |#3|) (-1062 |#1| |#2| |#3| |#4| |#5|) (-1058) (-240 |#2| |#7|) (-240 |#1| |#7|) (-1062 |#1| |#2| |#7| |#8| |#9|)) (T -1064))
-((-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1058)) (-4 *2 (-1058)) (-14 *5 (-777)) (-14 *6 (-777)) (-4 *8 (-240 *6 *7)) (-4 *9 (-240 *5 *7)) (-4 *10 (-240 *6 *2)) (-4 *11 (-240 *5 *2)) (-5 *1 (-1064 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1062 *5 *6 *7 *8 *9)) (-4 *12 (-1062 *5 *6 *2 *10 *11)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1058)) (-4 *10 (-1058)) (-14 *5 (-777)) (-14 *6 (-777)) (-4 *8 (-240 *6 *7)) (-4 *9 (-240 *5 *7)) (-4 *2 (-1062 *5 *6 *10 *11 *12)) (-5 *1 (-1064 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1062 *5 *6 *7 *8 *9)) (-4 *11 (-240 *6 *10)) (-4 *12 (-240 *5 *10)))))
-(-10 -7 (-15 -1351 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3529 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ |#1|) 27)))
+((-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *5))) (-4 *5 (-1058)) (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)))) (-3639 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-2593 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-1587 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-3251 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))) (-2055 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-2755 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-3295 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-4067 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))) (-3155 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-777)))) (-3167 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-777)))) (-3037 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-650 (-650 *5))))) (-1877 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)) (-4 *2 (-1058)))) (-3713 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)) (-4 *2 (-1058)))) (-1877 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *2 (-1058)) (-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)))) (-1991 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *2 *7)) (-4 *6 (-1058)) (-4 *7 (-240 *4 *6)) (-4 *2 (-240 *5 *6)))) (-1743 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *7 *2)) (-4 *6 (-1058)) (-4 *7 (-240 *5 *6)) (-4 *2 (-240 *4 *6)))) (-1352 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)))) (-2406 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1062 *3 *4 *2 *5 *6)) (-4 *2 (-1058)) (-4 *5 (-240 *4 *2)) (-4 *6 (-240 *3 *2)) (-4 *2 (-562)))) (-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-1062 *3 *4 *2 *5 *6)) (-4 *2 (-1058)) (-4 *5 (-240 *4 *2)) (-4 *6 (-240 *3 *2)) (-4 *2 (-368)))) (-4321 (*1 *1 *1) (-12 (-4 *1 (-1062 *2 *3 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *2 *4)) (-4 *4 (-311)))) (-3933 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562)) (-5 *2 (-777)))) (-2454 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562)) (-5 *2 (-777)))) (-4296 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058)) (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562)) (-5 *2 (-650 *7)))))
+(-13 (-111 |t#3| |t#3|) (-495 |t#3|) (-10 -8 (-6 -4449) (IF (|has| |t#3| (-174)) (-6 (-723 |t#3|)) |%noBranch|) (-15 -2427 ($ (-650 (-650 |t#3|)))) (-15 -3639 ((-112) $)) (-15 -2593 ((-112) $)) (-15 -1587 ((-112) $)) (-15 -3251 ((-112) $)) (-15 -2055 ((-570) $)) (-15 -2755 ((-570) $)) (-15 -3295 ((-570) $)) (-15 -4067 ((-570) $)) (-15 -3155 ((-777) $)) (-15 -3167 ((-777) $)) (-15 -3037 ((-650 (-650 |t#3|)) $)) (-15 -1877 (|t#3| $ (-570) (-570))) (-15 -3713 (|t#3| $ (-570) (-570))) (-15 -1877 (|t#3| $ (-570) (-570) |t#3|)) (-15 -1991 (|t#4| $ (-570))) (-15 -1743 (|t#5| $ (-570))) (-15 -1352 ($ (-1 |t#3| |t#3|) $)) (-15 -1352 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-562)) (-15 -2406 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-368)) (-15 -2975 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-311)) (-15 -4321 ($ $)) |%noBranch|) (IF (|has| |t#3| (-562)) (PROGN (-15 -3933 ((-777) $)) (-15 -2454 ((-777) $)) (-15 -4296 ((-650 |t#5|) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-102) . T) ((-111 |#3| |#3|) . T) ((-132) . T) ((-619 (-868)) . T) ((-313 |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))) ((-495 |#3|) . T) ((-520 |#3| |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))) ((-652 (-570)) . T) ((-652 |#3|) . T) ((-654 |#3|) . T) ((-646 |#3|) |has| |#3| (-174)) ((-723 |#3|) |has| |#3| (-174)) ((-1060 |#3|) . T) ((-1065 |#3|) . T) ((-1109) . T) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1587 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3639 (((-112) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-3761 (($) NIL T CONST)) (-4321 (($ $) 47 (|has| |#3| (-311)))) (-1991 (((-242 |#2| |#3|) $ (-570)) 36)) (-1477 (($ (-695 |#3|)) 45)) (-3933 (((-777) $) 49 (|has| |#3| (-562)))) (-3713 ((|#3| $ (-570) (-570)) NIL)) (-2835 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-2454 (((-777) $) 51 (|has| |#3| (-562)))) (-4296 (((-650 (-242 |#1| |#3|)) $) 55 (|has| |#3| (-562)))) (-3155 (((-777) $) NIL)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2055 (((-570) $) NIL)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-2755 (((-570) $) NIL)) (-4067 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#3|))) 31)) (-3776 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3037 (((-650 (-650 |#3|)) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-562)))) (-2697 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#3|) (-650 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 (-298 |#3|))) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#3| $ (-570) (-570)) NIL) ((|#3| $ (-570) (-570) |#3|) NIL)) (-4154 (((-135)) 59 (|has| |#3| (-368)))) (-2593 (((-112) $) NIL)) (-3490 (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109)))) (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) 65 (|has| |#3| (-620 (-542))))) (-1743 (((-242 |#1| |#3|) $ (-570)) 40)) (-3735 (((-868) $) 19) (((-695 |#3|) $) 42)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-3251 (((-112) $) NIL)) (-1814 (($) 16 T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1063 |#1| |#2| |#3|) (-13 (-1062 |#1| |#2| |#3| (-242 |#2| |#3|) (-242 |#1| |#3|)) (-619 (-695 |#3|)) (-10 -8 (IF (|has| |#3| (-368)) (-6 (-1284 |#3|)) |%noBranch|) (IF (|has| |#3| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (-15 -1477 ($ (-695 |#3|))))) (-777) (-777) (-1058)) (T -1063))
+((-1477 (*1 *1 *2) (-12 (-5 *2 (-695 *5)) (-4 *5 (-1058)) (-5 *1 (-1063 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)))))
+(-13 (-1062 |#1| |#2| |#3| (-242 |#2| |#3|) (-242 |#1| |#3|)) (-619 (-695 |#3|)) (-10 -8 (IF (|has| |#3| (-368)) (-6 (-1284 |#3|)) |%noBranch|) (IF (|has| |#3| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (-15 -1477 ($ (-695 |#3|)))))
+((-3529 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 36)) (-1352 ((|#10| (-1 |#7| |#3|) |#6|) 34)))
+(((-1064 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -1352 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3529 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-777) (-777) (-1058) (-240 |#2| |#3|) (-240 |#1| |#3|) (-1062 |#1| |#2| |#3| |#4| |#5|) (-1058) (-240 |#2| |#7|) (-240 |#1| |#7|) (-1062 |#1| |#2| |#7| |#8| |#9|)) (T -1064))
+((-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1058)) (-4 *2 (-1058)) (-14 *5 (-777)) (-14 *6 (-777)) (-4 *8 (-240 *6 *7)) (-4 *9 (-240 *5 *7)) (-4 *10 (-240 *6 *2)) (-4 *11 (-240 *5 *2)) (-5 *1 (-1064 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1062 *5 *6 *7 *8 *9)) (-4 *12 (-1062 *5 *6 *2 *10 *11)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1058)) (-4 *10 (-1058)) (-14 *5 (-777)) (-14 *6 (-777)) (-4 *8 (-240 *6 *7)) (-4 *9 (-240 *5 *7)) (-4 *2 (-1062 *5 *6 *10 *11 *12)) (-5 *1 (-1064 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1062 *5 *6 *7 *8 *9)) (-4 *11 (-240 *6 *10)) (-4 *12 (-240 *5 *10)))))
+(-10 -7 (-15 -1352 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3529 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ |#1|) 27)))
(((-1065 |#1|) (-141) (-1067)) (T -1065))
NIL
(-13 (-21) (-1060 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-1060 |#1|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2643 (((-1186) $) 11)) (-2782 ((|#1| $) 12)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3428 (($ (-1186) |#1|) 10)) (-3735 (((-868) $) 22 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2872 (((-112) $ $) 17 (|has| |#1| (-1109)))))
-(((-1066 |#1| |#2|) (-13 (-1226) (-10 -8 (-15 -3428 ($ (-1186) |#1|)) (-15 -2643 ((-1186) $)) (-15 -2782 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1102 |#2|) (-1226)) (T -1066))
-((-3428 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-4 *4 (-1226)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2643 (*1 *2 *1) (-12 (-4 *4 (-1226)) (-5 *2 (-1186)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2782 (*1 *2 *1) (-12 (-4 *2 (-1102 *3)) (-5 *1 (-1066 *2 *3)) (-4 *3 (-1226)))))
-(-13 (-1226) (-10 -8 (-15 -3428 ($ (-1186) |#1|)) (-15 -2643 ((-1186) $)) (-15 -2782 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2643 (((-1186) $) 11)) (-2782 ((|#1| $) 12)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3428 (($ (-1186) |#1|) 10)) (-3735 (((-868) $) 22 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2872 (((-112) $ $) 17 (|has| |#1| (-1109)))))
+(((-1066 |#1| |#2|) (-13 (-1227) (-10 -8 (-15 -3428 ($ (-1186) |#1|)) (-15 -2643 ((-1186) $)) (-15 -2782 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1102 |#2|) (-1227)) (T -1066))
+((-3428 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-4 *4 (-1227)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2643 (*1 *2 *1) (-12 (-4 *4 (-1227)) (-5 *2 (-1186)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2782 (*1 *2 *1) (-12 (-4 *2 (-1102 *3)) (-5 *1 (-1066 *2 *3)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (-15 -3428 ($ (-1186) |#1|)) (-15 -2643 ((-1186) $)) (-15 -2782 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-1067) (-141)) (T -1067))
NIL
(-13 (-21) (-1121))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-1121) . T) ((-1109) . T))
-((-3316 (($ $) 17)) (-3670 (($ $) 25)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 55)) (-2610 (($ $) 27)) (-1965 (($ $) 12)) (-3739 (($ $) 43)) (-1416 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) 36)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 31) (($ (-570)) NIL) (($ (-413 (-570))) 31)) (-2744 (((-777)) 9)) (-3754 (($ $) 45)))
-(((-1068 |#1|) (-10 -8 (-15 -3670 (|#1| |#1|)) (-15 -3316 (|#1| |#1|)) (-15 -1965 (|#1| |#1|)) (-15 -3739 (|#1| |#1|)) (-15 -3754 (|#1| |#1|)) (-15 -2610 (|#1| |#1|)) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -1416 ((-227) |#1|)) (-15 -1416 ((-384) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1069)) (T -1068))
-((-2744 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1068 *3)) (-4 *3 (-1069)))))
-(-10 -8 (-15 -3670 (|#1| |#1|)) (-15 -3316 (|#1| |#1|)) (-15 -1965 (|#1| |#1|)) (-15 -3739 (|#1| |#1|)) (-15 -3754 (|#1| |#1|)) (-15 -2610 (|#1| |#1|)) (-15 -2822 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -1416 ((-227) |#1|)) (-15 -1416 ((-384) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -2744 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3303 (((-570) $) 97)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3316 (($ $) 95)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-3753 (($ $) 105)) (-4339 (((-112) $ $) 65)) (-3140 (((-570) $) 122)) (-2450 (($) 18 T CONST)) (-3670 (($ $) 94)) (-4378 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3080 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-1552 (((-112) $) 79)) (-1522 (((-112) $) 120)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 104)) (-2610 (($ $) 100)) (-2761 (((-112) $) 121)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3310 (($ $ $) 119)) (-3787 (($ $ $) 118)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-1965 (($ $) 96)) (-3739 (($ $) 98)) (-3738 (((-424 $) $) 82)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-1416 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-2744 (((-777)) 32 T CONST)) (-3754 (($ $) 99)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1423 (($ $) 123)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2924 (((-112) $ $) 116)) (-2904 (((-112) $ $) 115)) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 117)) (-2894 (((-112) $ $) 114)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-3235 (($ $) 17)) (-3601 (($ $) 25)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 55)) (-2771 (($ $) 27)) (-2442 (($ $) 12)) (-2962 (($ $) 43)) (-1417 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) 36)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 31) (($ (-570)) NIL) (($ (-413 (-570))) 31)) (-1609 (((-777)) 9)) (-1963 (($ $) 45)))
+(((-1068 |#1|) (-10 -8 (-15 -3601 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)) (-15 -2442 (|#1| |#1|)) (-15 -2962 (|#1| |#1|)) (-15 -1963 (|#1| |#1|)) (-15 -2771 (|#1| |#1|)) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -1417 ((-227) |#1|)) (-15 -1417 ((-384) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1069)) (T -1068))
+((-1609 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1068 *3)) (-4 *3 (-1069)))))
+(-10 -8 (-15 -3601 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)) (-15 -2442 (|#1| |#1|)) (-15 -2962 (|#1| |#1|)) (-15 -1963 (|#1| |#1|)) (-15 -2771 (|#1| |#1|)) (-15 -4232 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 -1417 ((-227) |#1|)) (-15 -1417 ((-384) |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| |#1|)) (-15 -1609 ((-777))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3113 (((-570) $) 97)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-3235 (($ $) 95)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-3754 (($ $) 105)) (-2707 (((-112) $ $) 65)) (-2249 (((-570) $) 122)) (-3761 (($) 18 T CONST)) (-3601 (($ $) 94)) (-4379 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3080 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-4037 (((-112) $) 79)) (-3703 (((-112) $) 120)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 104)) (-2771 (($ $) 100)) (-1774 (((-112) $) 121)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3311 (($ $ $) 119)) (-2222 (($ $ $) 118)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-2442 (($ $) 96)) (-2962 (($ $) 98)) (-3739 (((-424 $) $) 82)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-1417 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-1609 (((-777)) 32 T CONST)) (-1963 (($ $) 99)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1367 (($ $) 123)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2924 (((-112) $ $) 116)) (-2904 (((-112) $ $) 115)) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 117)) (-2894 (((-112) $ $) 114)) (-2975 (($ $ $) 73)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-1069) (-141)) (T -1069))
-((-1423 (*1 *1 *1) (-4 *1 (-1069))) (-2610 (*1 *1 *1) (-4 *1 (-1069))) (-3754 (*1 *1 *1) (-4 *1 (-1069))) (-3739 (*1 *1 *1) (-4 *1 (-1069))) (-3303 (*1 *2 *1) (-12 (-4 *1 (-1069)) (-5 *2 (-570)))) (-1965 (*1 *1 *1) (-4 *1 (-1069))) (-3316 (*1 *1 *1) (-4 *1 (-1069))) (-3670 (*1 *1 *1) (-4 *1 (-1069))))
-(-13 (-368) (-854) (-1031) (-1047 (-570)) (-1047 (-413 (-570))) (-1011) (-620 (-899 (-384))) (-893 (-384)) (-148) (-10 -8 (-15 -2610 ($ $)) (-15 -3754 ($ $)) (-15 -3739 ($ $)) (-15 -3303 ((-570) $)) (-15 -1965 ($ $)) (-15 -3316 ($ $)) (-15 -3670 ($ $)) (-15 -1423 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-227)) . T) ((-620 (-384)) . T) ((-620 (-899 (-384))) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-893 (-384)) . T) ((-927) . T) ((-1011) . T) ((-1031) . T) ((-1047 (-413 (-570))) . T) ((-1047 (-570)) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) |#2| $) 26)) (-3403 ((|#1| $) 10)) (-3140 (((-570) |#2| $) 116)) (-4143 (((-3 $ "failed") |#2| (-928)) 75)) (-4410 ((|#1| $) 31)) (-1912 ((|#1| |#2| $ |#1|) 40)) (-2018 (($ $) 28)) (-3413 (((-3 |#2| "failed") |#2| $) 111)) (-1522 (((-112) |#2| $) NIL)) (-2761 (((-112) |#2| $) NIL)) (-1969 (((-112) |#2| $) 27)) (-1894 ((|#1| $) 117)) (-4397 ((|#1| $) 30)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2886 ((|#2| $) 102)) (-3735 (((-868) $) 92)) (-1859 (((-112) $ $) NIL)) (-3026 ((|#1| |#2| $ |#1|) 41)) (-2006 (((-650 $) |#2|) 77)) (-2872 (((-112) $ $) 97)))
-(((-1070 |#1| |#2|) (-13 (-1077 |#1| |#2|) (-10 -8 (-15 -4397 (|#1| $)) (-15 -4410 (|#1| $)) (-15 -3403 (|#1| $)) (-15 -1894 (|#1| $)) (-15 -2018 ($ $)) (-15 -1969 ((-112) |#2| $)) (-15 -1912 (|#1| |#2| $ |#1|)))) (-13 (-854) (-368)) (-1252 |#1|)) (T -1070))
-((-1912 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1252 *2)))) (-4397 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1252 *2)))) (-4410 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1252 *2)))) (-3403 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1252 *2)))) (-1894 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1252 *2)))) (-2018 (*1 *1 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1252 *2)))) (-1969 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-854) (-368))) (-5 *2 (-112)) (-5 *1 (-1070 *4 *3)) (-4 *3 (-1252 *4)))))
-(-13 (-1077 |#1| |#2|) (-10 -8 (-15 -4397 (|#1| $)) (-15 -4410 (|#1| $)) (-15 -3403 (|#1| $)) (-15 -1894 (|#1| $)) (-15 -2018 ($ $)) (-15 -1969 ((-112) |#2| $)) (-15 -1912 (|#1| |#2| $ |#1|))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2618 (($ $ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4281 (($ $ $ $) NIL)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3140 (((-570) $) NIL)) (-3020 (($ $ $) NIL)) (-2450 (($) NIL T CONST)) (-2469 (($ (-1186)) 10) (($ (-570)) 7)) (-4378 (((-3 (-570) "failed") $) NIL)) (-3080 (((-570) $) NIL)) (-2372 (($ $ $) NIL)) (-4177 (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL)) (-2085 (((-112) $) NIL)) (-3137 (((-413 (-570)) $) NIL)) (-3336 (($) NIL) (($ $) NIL)) (-2381 (($ $ $) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2203 (($ $ $ $) NIL)) (-1533 (($ $ $) NIL)) (-1522 (((-112) $) NIL)) (-4390 (($ $ $) NIL)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-2081 (((-112) $) NIL)) (-3431 (((-112) $) NIL)) (-2885 (((-3 $ "failed") $) NIL)) (-2761 (((-112) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2519 (($ $ $ $) NIL)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-2584 (($ $) NIL)) (-3788 (($ $) NIL)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-2410 (($ $ $) NIL)) (-2314 (($) NIL T CONST)) (-3522 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4061 (($ $) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1322 (((-112) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-2430 (($ $) NIL)) (-3915 (($ $) NIL)) (-1416 (((-570) $) 16) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL) (($ (-1186)) 9)) (-3735 (((-868) $) 23) (($ (-570)) 6) (($ $) NIL) (($ (-570)) 6)) (-2744 (((-777)) NIL T CONST)) (-3047 (((-112) $ $) NIL)) (-1397 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-4358 (($) NIL)) (-1681 (((-112) $ $) NIL)) (-1662 (($ $ $ $) NIL)) (-1423 (($ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2965 (($ $) 22) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
-(((-1071) (-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4435) (-6 -4440) (-6 -4436) (-15 -2469 ($ (-1186))) (-15 -2469 ($ (-570)))))) (T -1071))
-((-2469 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))) (-2469 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071)))))
-(-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4435) (-6 -4440) (-6 -4436) (-15 -2469 ($ (-1186))) (-15 -2469 ($ (-570)))))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-3225 (((-1281) $ (-1186) (-1186)) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3372 (($) 9)) (-3895 (((-52) $ (-1186) (-52)) NIL)) (-3163 (($ $) 32)) (-3552 (($ $) 30)) (-1388 (($ $) 29)) (-4406 (($ $) 31)) (-2821 (($ $) 35)) (-3931 (($ $) 36)) (-3502 (($ $) 28)) (-2753 (($ $) 33)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) 27 (|has| $ (-6 -4448)))) (-2361 (((-3 (-52) "failed") (-1186) $) 43)) (-2450 (($) NIL T CONST)) (-3810 (($) 7)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2513 (($ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) 53 (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1702 (($ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448)))) (-4409 (((-3 (-1168) "failed") $ (-1168) (-570)) 74)) (-3790 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4449)))) (-3712 (((-52) $ (-1186)) NIL)) (-2836 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-650 (-52)) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-1186) $) NIL (|has| (-1186) (-856)))) (-2849 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) 38 (|has| $ (-6 -4448))) (((-650 (-52)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109))))) (-4329 (((-1186) $) NIL (|has| (-1186) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2760 (((-650 (-1186)) $) NIL)) (-2696 (((-112) (-1186) $) NIL)) (-3784 (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL)) (-2278 (($ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) 46)) (-2344 (((-650 (-1186)) $) NIL)) (-1354 (((-112) (-1186) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2452 (((-384) $ (-1186)) 52)) (-3004 (((-650 (-1168)) $ (-1168)) 76)) (-3443 (((-52) $) NIL (|has| (-1186) (-856)))) (-3321 (((-3 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) "failed") (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL)) (-1952 (($ $ (-52)) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (($ $ (-650 (-52)) (-650 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-298 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-650 (-298 (-52)))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109))))) (-4245 (((-650 (-52)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 (((-52) $ (-1186)) NIL) (((-52) $ (-1186) (-52)) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-3901 (($ $ (-1186)) 54)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) 40)) (-2439 (($ $ $) 41)) (-3735 (((-868) $) NIL (-2740 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-619 (-868)))))) (-3632 (($ $ (-1186) (-384)) 50)) (-3746 (($ $ (-1186) (-384)) 51)) (-1859 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2223 (-52)))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2223 (-52))) (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1072) (-13 (-1202 (-1186) (-52)) (-10 -8 (-15 -2439 ($ $ $)) (-15 -3810 ($)) (-15 -3502 ($ $)) (-15 -1388 ($ $)) (-15 -3552 ($ $)) (-15 -4406 ($ $)) (-15 -2753 ($ $)) (-15 -3163 ($ $)) (-15 -2821 ($ $)) (-15 -3931 ($ $)) (-15 -3632 ($ $ (-1186) (-384))) (-15 -3746 ($ $ (-1186) (-384))) (-15 -2452 ((-384) $ (-1186))) (-15 -3004 ((-650 (-1168)) $ (-1168))) (-15 -3901 ($ $ (-1186))) (-15 -3372 ($)) (-15 -4409 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4448)))) (T -1072))
-((-2439 (*1 *1 *1 *1) (-5 *1 (-1072))) (-3810 (*1 *1) (-5 *1 (-1072))) (-3502 (*1 *1 *1) (-5 *1 (-1072))) (-1388 (*1 *1 *1) (-5 *1 (-1072))) (-3552 (*1 *1 *1) (-5 *1 (-1072))) (-4406 (*1 *1 *1) (-5 *1 (-1072))) (-2753 (*1 *1 *1) (-5 *1 (-1072))) (-3163 (*1 *1 *1) (-5 *1 (-1072))) (-2821 (*1 *1 *1) (-5 *1 (-1072))) (-3931 (*1 *1 *1) (-5 *1 (-1072))) (-3632 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-3746 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-2452 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))) (-3004 (*1 *2 *1 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))) (-3901 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))) (-3372 (*1 *1) (-5 *1 (-1072))) (-4409 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
-(-13 (-1202 (-1186) (-52)) (-10 -8 (-15 -2439 ($ $ $)) (-15 -3810 ($)) (-15 -3502 ($ $)) (-15 -1388 ($ $)) (-15 -3552 ($ $)) (-15 -4406 ($ $)) (-15 -2753 ($ $)) (-15 -3163 ($ $)) (-15 -2821 ($ $)) (-15 -3931 ($ $)) (-15 -3632 ($ $ (-1186) (-384))) (-15 -3746 ($ $ (-1186) (-384))) (-15 -2452 ((-384) $ (-1186))) (-15 -3004 ((-650 (-1168)) $ (-1168))) (-15 -3901 ($ $ (-1186))) (-15 -3372 ($)) (-15 -4409 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4448)))
-((-1573 (($ $) 46)) (-1891 (((-112) $ $) 82)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-959 (-413 (-570)))) 253) (((-3 $ "failed") (-959 (-570))) 252) (((-3 $ "failed") (-959 |#2|)) 255)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) NIL) (($ (-959 (-413 (-570)))) 241) (($ (-959 (-570))) 237) (($ (-959 |#2|)) 257)) (-1890 (($ $) NIL) (($ $ |#4|) 44)) (-2914 (((-112) $ $) 131) (((-112) $ (-650 $)) 135)) (-3557 (((-112) $) 60)) (-3369 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 125)) (-1970 (($ $) 160)) (-3574 (($ $) 156)) (-4187 (($ $) 155)) (-1930 (($ $ $) 87) (($ $ $ |#4|) 92)) (-4270 (($ $ $) 90) (($ $ $ |#4|) 94)) (-3911 (((-112) $ $) 143) (((-112) $ (-650 $)) 144)) (-2711 ((|#4| $) 32)) (-1490 (($ $ $) 128)) (-3411 (((-112) $) 59)) (-4059 (((-777) $) 35)) (-2719 (($ $) 174)) (-2151 (($ $) 171)) (-4383 (((-650 $) $) 72)) (-4102 (($ $) 62)) (-2599 (($ $) 167)) (-1722 (((-650 $) $) 69)) (-2117 (($ $) 64)) (-1864 ((|#2| $) NIL) (($ $ |#4|) 39)) (-1835 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3184 (-777))) $ $) 130)) (-2680 (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $) 126) (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $ |#4|) 127)) (-3980 (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $) 121) (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $ |#4|) 123)) (-1758 (($ $ $) 97) (($ $ $ |#4|) 106)) (-2632 (($ $ $) 98) (($ $ $ |#4|) 107)) (-2699 (((-650 $) $) 54)) (-1329 (((-112) $ $) 140) (((-112) $ (-650 $)) 141)) (-1695 (($ $ $) 116)) (-2314 (($ $) 37)) (-4122 (((-112) $ $) 80)) (-3236 (((-112) $ $) 136) (((-112) $ (-650 $)) 138)) (-3339 (($ $ $) 112)) (-3393 (($ $) 41)) (-1874 ((|#2| |#2| $) 164) (($ (-650 $)) NIL) (($ $ $) NIL)) (-3298 (($ $ |#2|) NIL) (($ $ $) 153)) (-3160 (($ $ |#2|) 148) (($ $ $) 151)) (-3211 (($ $) 49)) (-1779 (($ $) 55)) (-1416 (((-899 (-384)) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (($ (-959 (-413 (-570)))) 243) (($ (-959 (-570))) 239) (($ (-959 |#2|)) 254) (((-1168) $) 281) (((-959 |#2|) $) 184)) (-3735 (((-868) $) 29) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-959 |#2|) $) 185) (($ (-413 (-570))) NIL) (($ $) NIL)) (-3056 (((-3 (-112) "failed") $ $) 79)))
-(((-1073 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -1874 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 ((-959 |#2|) |#1|)) (-15 -1416 ((-959 |#2|) |#1|)) (-15 -1416 ((-1168) |#1|)) (-15 -2719 (|#1| |#1|)) (-15 -2151 (|#1| |#1|)) (-15 -2599 (|#1| |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -1874 (|#2| |#2| |#1|)) (-15 -3298 (|#1| |#1| |#1|)) (-15 -3160 (|#1| |#1| |#1|)) (-15 -3298 (|#1| |#1| |#2|)) (-15 -3160 (|#1| |#1| |#2|)) (-15 -3574 (|#1| |#1|)) (-15 -4187 (|#1| |#1|)) (-15 -1416 (|#1| (-959 |#2|))) (-15 -3080 (|#1| (-959 |#2|))) (-15 -4378 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1416 (|#1| (-959 (-570)))) (-15 -3080 (|#1| (-959 (-570)))) (-15 -4378 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1416 (|#1| (-959 (-413 (-570))))) (-15 -3080 (|#1| (-959 (-413 (-570))))) (-15 -4378 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -1695 (|#1| |#1| |#1|)) (-15 -3339 (|#1| |#1| |#1|)) (-15 -1835 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3184 (-777))) |#1| |#1|)) (-15 -1490 (|#1| |#1| |#1|)) (-15 -3369 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2680 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1| |#4|)) (-15 -2680 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -3980 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -2785 |#1|)) |#1| |#1| |#4|)) (-15 -3980 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2632 (|#1| |#1| |#1| |#4|)) (-15 -1758 (|#1| |#1| |#1| |#4|)) (-15 -2632 (|#1| |#1| |#1|)) (-15 -1758 (|#1| |#1| |#1|)) (-15 -4270 (|#1| |#1| |#1| |#4|)) (-15 -1930 (|#1| |#1| |#1| |#4|)) (-15 -4270 (|#1| |#1| |#1|)) (-15 -1930 (|#1| |#1| |#1|)) (-15 -3911 ((-112) |#1| (-650 |#1|))) (-15 -3911 ((-112) |#1| |#1|)) (-15 -1329 ((-112) |#1| (-650 |#1|))) (-15 -1329 ((-112) |#1| |#1|)) (-15 -3236 ((-112) |#1| (-650 |#1|))) (-15 -3236 ((-112) |#1| |#1|)) (-15 -2914 ((-112) |#1| (-650 |#1|))) (-15 -2914 ((-112) |#1| |#1|)) (-15 -1891 ((-112) |#1| |#1|)) (-15 -4122 ((-112) |#1| |#1|)) (-15 -3056 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4383 ((-650 |#1|) |#1|)) (-15 -1722 ((-650 |#1|) |#1|)) (-15 -2117 (|#1| |#1|)) (-15 -4102 (|#1| |#1|)) (-15 -3557 ((-112) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 -1890 (|#1| |#1| |#4|)) (-15 -1864 (|#1| |#1| |#4|)) (-15 -1779 (|#1| |#1|)) (-15 -2699 ((-650 |#1|) |#1|)) (-15 -3211 (|#1| |#1|)) (-15 -1573 (|#1| |#1|)) (-15 -3393 (|#1| |#1|)) (-15 -2314 (|#1| |#1|)) (-15 -4059 ((-777) |#1|)) (-15 -2711 (|#4| |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| |#4|)) (-15 -4378 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1864 (|#2| |#1|)) (-15 -1890 (|#1| |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1074 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -1073))
-NIL
-(-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -1874 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 ((-959 |#2|) |#1|)) (-15 -1416 ((-959 |#2|) |#1|)) (-15 -1416 ((-1168) |#1|)) (-15 -2719 (|#1| |#1|)) (-15 -2151 (|#1| |#1|)) (-15 -2599 (|#1| |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -1874 (|#2| |#2| |#1|)) (-15 -3298 (|#1| |#1| |#1|)) (-15 -3160 (|#1| |#1| |#1|)) (-15 -3298 (|#1| |#1| |#2|)) (-15 -3160 (|#1| |#1| |#2|)) (-15 -3574 (|#1| |#1|)) (-15 -4187 (|#1| |#1|)) (-15 -1416 (|#1| (-959 |#2|))) (-15 -3080 (|#1| (-959 |#2|))) (-15 -4378 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1416 (|#1| (-959 (-570)))) (-15 -3080 (|#1| (-959 (-570)))) (-15 -4378 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1416 (|#1| (-959 (-413 (-570))))) (-15 -3080 (|#1| (-959 (-413 (-570))))) (-15 -4378 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -1695 (|#1| |#1| |#1|)) (-15 -3339 (|#1| |#1| |#1|)) (-15 -1835 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3184 (-777))) |#1| |#1|)) (-15 -1490 (|#1| |#1| |#1|)) (-15 -3369 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2680 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1| |#4|)) (-15 -2680 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -3980 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -2785 |#1|)) |#1| |#1| |#4|)) (-15 -3980 ((-2 (|:| -1441 |#1|) (|:| |gap| (-777)) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -2632 (|#1| |#1| |#1| |#4|)) (-15 -1758 (|#1| |#1| |#1| |#4|)) (-15 -2632 (|#1| |#1| |#1|)) (-15 -1758 (|#1| |#1| |#1|)) (-15 -4270 (|#1| |#1| |#1| |#4|)) (-15 -1930 (|#1| |#1| |#1| |#4|)) (-15 -4270 (|#1| |#1| |#1|)) (-15 -1930 (|#1| |#1| |#1|)) (-15 -3911 ((-112) |#1| (-650 |#1|))) (-15 -3911 ((-112) |#1| |#1|)) (-15 -1329 ((-112) |#1| (-650 |#1|))) (-15 -1329 ((-112) |#1| |#1|)) (-15 -3236 ((-112) |#1| (-650 |#1|))) (-15 -3236 ((-112) |#1| |#1|)) (-15 -2914 ((-112) |#1| (-650 |#1|))) (-15 -2914 ((-112) |#1| |#1|)) (-15 -1891 ((-112) |#1| |#1|)) (-15 -4122 ((-112) |#1| |#1|)) (-15 -3056 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4383 ((-650 |#1|) |#1|)) (-15 -1722 ((-650 |#1|) |#1|)) (-15 -2117 (|#1| |#1|)) (-15 -4102 (|#1| |#1|)) (-15 -3557 ((-112) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 -1890 (|#1| |#1| |#4|)) (-15 -1864 (|#1| |#1| |#4|)) (-15 -1779 (|#1| |#1|)) (-15 -2699 ((-650 |#1|) |#1|)) (-15 -3211 (|#1| |#1|)) (-15 -1573 (|#1| |#1|)) (-15 -3393 (|#1| |#1|)) (-15 -2314 (|#1| |#1|)) (-15 -4059 ((-777) |#1|)) (-15 -2711 (|#4| |#1|)) (-15 -1416 ((-542) |#1|)) (-15 -1416 ((-899 (-570)) |#1|)) (-15 -1416 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| |#4|)) (-15 -4378 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1864 (|#2| |#1|)) (-15 -1890 (|#1| |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 |#3|) $) 112)) (-3703 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3171 (($ $) 90 (|has| |#1| (-562)))) (-2720 (((-112) $) 92 (|has| |#1| (-562)))) (-3462 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-1573 (($ $) 273)) (-1891 (((-112) $ $) 259)) (-3596 (((-3 $ "failed") $ $) 20)) (-3766 (($ $ $) 218 (|has| |#1| (-562)))) (-3302 (((-650 $) $ $) 213 (|has| |#1| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-2222 (($ $) 100 (|has| |#1| (-458)))) (-1790 (((-424 $) $) 99 (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) 138) (((-3 $ "failed") (-959 (-413 (-570)))) 233 (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))) (((-3 $ "failed") (-959 (-570))) 230 (-2740 (-12 (-1754 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186)))))) (((-3 $ "failed") (-959 |#1|)) 227 (-2740 (-12 (-1754 (|has| |#1| (-38 (-413 (-570))))) (-1754 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1754 (|has| |#1| (-551))) (-1754 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1754 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139) (($ (-959 (-413 (-570)))) 232 (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))) (($ (-959 (-570))) 229 (-2740 (-12 (-1754 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186)))))) (($ (-959 |#1|)) 226 (-2740 (-12 (-1754 (|has| |#1| (-38 (-413 (-570))))) (-1754 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1754 (|has| |#1| (-551))) (-1754 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1754 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-1939 (($ $ $ |#3|) 110 (|has| |#1| (-174))) (($ $ $) 214 (|has| |#1| (-562)))) (-1890 (($ $) 156) (($ $ |#3|) 268)) (-4177 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2914 (((-112) $ $) 258) (((-112) $ (-650 $)) 257)) (-3413 (((-3 $ "failed") $) 37)) (-3557 (((-112) $) 266)) (-3369 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 238)) (-1970 (($ $) 207 (|has| |#1| (-458)))) (-3543 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1873 (((-650 $) $) 111)) (-1552 (((-112) $) 98 (|has| |#1| (-916)))) (-3574 (($ $) 223 (|has| |#1| (-562)))) (-4187 (($ $) 224 (|has| |#1| (-562)))) (-1930 (($ $ $) 250) (($ $ $ |#3|) 248)) (-4270 (($ $ $) 249) (($ $ $ |#3|) 247)) (-3007 (($ $ |#1| |#2| $) 174)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| |#3| (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| |#3| (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-2081 (((-112) $) 35)) (-3797 (((-777) $) 171)) (-3911 (((-112) $ $) 252) (((-112) $ (-650 $)) 251)) (-1978 (($ $ $ $ $) 209 (|has| |#1| (-562)))) (-2711 ((|#3| $) 277)) (-1704 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-1435 (((-650 $) $) 128)) (-1550 (((-112) $) 154)) (-3872 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-1490 (($ $ $) 237)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#3|) 122)) (-3411 (((-112) $) 267)) (-4341 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-4059 (((-777) $) 276)) (-4414 (($ (-1 |#2| |#2|) $) 173)) (-1351 (($ (-1 |#1| |#1|) $) 153)) (-3382 (((-3 |#3| "failed") $) 125)) (-2719 (($ $) 204 (|has| |#1| (-458)))) (-2151 (($ $) 205 (|has| |#1| (-458)))) (-4383 (((-650 $) $) 262)) (-4102 (($ $) 265)) (-2599 (($ $) 206 (|has| |#1| (-458)))) (-1722 (((-650 $) $) 263)) (-2117 (($ $) 264)) (-1855 (($ $) 151)) (-1864 ((|#1| $) 150) (($ $ |#3|) 269)) (-1845 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1835 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3184 (-777))) $ $) 236)) (-2680 (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $) 240) (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $ |#3|) 239)) (-3980 (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $) 242) (((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $ |#3|) 241)) (-1758 (($ $ $) 246) (($ $ $ |#3|) 244)) (-2632 (($ $ $) 245) (($ $ $ |#3|) 243)) (-1903 (((-1168) $) 10)) (-3769 (($ $ $) 212 (|has| |#1| (-562)))) (-2699 (((-650 $) $) 271)) (-1596 (((-3 (-650 $) "failed") $) 116)) (-3751 (((-3 (-650 $) "failed") $) 117)) (-3496 (((-3 (-2 (|:| |var| |#3|) (|:| -1907 (-777))) "failed") $) 115)) (-1329 (((-112) $ $) 254) (((-112) $ (-650 $)) 253)) (-1695 (($ $ $) 234)) (-2314 (($ $) 275)) (-4122 (((-112) $ $) 260)) (-3236 (((-112) $ $) 256) (((-112) $ (-650 $)) 255)) (-3339 (($ $ $) 235)) (-3393 (($ $) 274)) (-3479 (((-1129) $) 11)) (-1888 (((-2 (|:| -1874 $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-562)))) (-4288 (((-2 (|:| -1874 $) (|:| |coef1| $)) $ $) 216 (|has| |#1| (-562)))) (-1834 (((-112) $) 168)) (-1842 ((|#1| $) 169)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 ((|#1| |#1| $) 208 (|has| |#1| (-458))) (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3738 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2838 (((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 217 (|has| |#1| (-562)))) (-2407 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-3298 (($ $ |#1|) 221 (|has| |#1| (-562))) (($ $ $) 219 (|has| |#1| (-562)))) (-3160 (($ $ |#1|) 222 (|has| |#1| (-562))) (($ $ $) 220 (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-2998 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3447 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-1601 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-3211 (($ $) 272)) (-1779 (($ $) 270)) (-1416 (((-899 (-384)) $) 84 (-12 (|has| |#3| (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| |#3| (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| |#3| (-620 (-542))) (|has| |#1| (-620 (-542))))) (($ (-959 (-413 (-570)))) 231 (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))) (($ (-959 (-570))) 228 (-2740 (-12 (-1754 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186)))))) (($ (-959 |#1|)) 225 (|has| |#3| (-620 (-1186)))) (((-1168) $) 203 (-12 (|has| |#1| (-1047 (-570))) (|has| |#3| (-620 (-1186))))) (((-959 |#1|) $) 202 (|has| |#3| (-620 (-1186))))) (-3030 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (((-959 |#1|) $) 201 (|has| |#3| (-620 (-1186)))) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) 170)) (-1715 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-1918 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) 32 T CONST)) (-3644 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-3056 (((-3 (-112) "failed") $ $) 261)) (-1823 (($) 34 T CONST)) (-1995 (($ $ $ $ (-777)) 210 (|has| |#1| (-562)))) (-1884 (($ $ $ (-777)) 211 (|has| |#1| (-562)))) (-2791 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+((-1367 (*1 *1 *1) (-4 *1 (-1069))) (-2771 (*1 *1 *1) (-4 *1 (-1069))) (-1963 (*1 *1 *1) (-4 *1 (-1069))) (-2962 (*1 *1 *1) (-4 *1 (-1069))) (-3113 (*1 *2 *1) (-12 (-4 *1 (-1069)) (-5 *2 (-570)))) (-2442 (*1 *1 *1) (-4 *1 (-1069))) (-3235 (*1 *1 *1) (-4 *1 (-1069))) (-3601 (*1 *1 *1) (-4 *1 (-1069))))
+(-13 (-368) (-854) (-1031) (-1047 (-570)) (-1047 (-413 (-570))) (-1011) (-620 (-899 (-384))) (-893 (-384)) (-148) (-10 -8 (-15 -2771 ($ $)) (-15 -1963 ($ $)) (-15 -2962 ($ $)) (-15 -3113 ((-570) $)) (-15 -2442 ($ $)) (-15 -3235 ($ $)) (-15 -3601 ($ $)) (-15 -1367 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-132) . T) ((-148) . T) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-620 (-227)) . T) ((-620 (-384)) . T) ((-620 (-899 (-384))) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 $) . T) ((-732) . T) ((-797) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-854) . T) ((-856) . T) ((-893 (-384)) . T) ((-927) . T) ((-1011) . T) ((-1031) . T) ((-1047 (-413 (-570))) . T) ((-1047 (-570)) . T) ((-1060 #0#) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) |#2| $) 26)) (-3403 ((|#1| $) 10)) (-2249 (((-570) |#2| $) 116)) (-1480 (((-3 $ "failed") |#2| (-928)) 75)) (-4411 ((|#1| $) 31)) (-3064 ((|#1| |#2| $ |#1|) 40)) (-2950 (($ $) 28)) (-2937 (((-3 |#2| "failed") |#2| $) 111)) (-3703 (((-112) |#2| $) NIL)) (-1774 (((-112) |#2| $) NIL)) (-2476 (((-112) |#2| $) 27)) (-4169 ((|#1| $) 117)) (-4398 ((|#1| $) 30)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3597 ((|#2| $) 102)) (-3735 (((-868) $) 92)) (-3866 (((-112) $ $) NIL)) (-3026 ((|#1| |#2| $ |#1|) 41)) (-2837 (((-650 $) |#2|) 77)) (-2872 (((-112) $ $) 97)))
+(((-1070 |#1| |#2|) (-13 (-1077 |#1| |#2|) (-10 -8 (-15 -4398 (|#1| $)) (-15 -4411 (|#1| $)) (-15 -3403 (|#1| $)) (-15 -4169 (|#1| $)) (-15 -2950 ($ $)) (-15 -2476 ((-112) |#2| $)) (-15 -3064 (|#1| |#2| $ |#1|)))) (-13 (-854) (-368)) (-1253 |#1|)) (T -1070))
+((-3064 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4398 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4411 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-3403 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4169 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-2950 (*1 *1 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-2476 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-854) (-368))) (-5 *2 (-112)) (-5 *1 (-1070 *4 *3)) (-4 *3 (-1253 *4)))))
+(-13 (-1077 |#1| |#2|) (-10 -8 (-15 -4398 (|#1| $)) (-15 -4411 (|#1| $)) (-15 -3403 (|#1| $)) (-15 -4169 (|#1| $)) (-15 -2950 ($ $)) (-15 -2476 ((-112) |#2| $)) (-15 -3064 (|#1| |#2| $ |#1|))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-2836 (($ $ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3420 (($ $ $ $) NIL)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-2249 (((-570) $) NIL)) (-3020 (($ $ $) NIL)) (-3761 (($) NIL T CONST)) (-3948 (($ (-1186)) 10) (($ (-570)) 7)) (-4379 (((-3 (-570) "failed") $) NIL)) (-3080 (((-570) $) NIL)) (-2372 (($ $ $) NIL)) (-1836 (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL)) (-4373 (((-112) $) NIL)) (-2220 (((-413 (-570)) $) NIL)) (-3336 (($) NIL) (($ $) NIL)) (-2382 (($ $ $) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3041 (($ $ $ $) NIL)) (-3838 (($ $ $) NIL)) (-3703 (((-112) $) NIL)) (-2039 (($ $ $) NIL)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4340 (((-112) $) NIL)) (-1958 (((-112) $) NIL)) (-3584 (((-3 $ "failed") $) NIL)) (-1774 (((-112) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3119 (($ $ $ $) NIL)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-2581 (($ $) NIL)) (-3788 (($ $) NIL)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1545 (($ $ $) NIL)) (-2315 (($) NIL T CONST)) (-3523 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3072 (($ $) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1739 (((-112) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-2429 (($ $) NIL)) (-3916 (($ $) NIL)) (-1417 (((-570) $) 16) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL) (($ (-1186)) 9)) (-3735 (((-868) $) 23) (($ (-570)) 6) (($ $) NIL) (($ (-570)) 6)) (-1609 (((-777)) NIL T CONST)) (-2528 (((-112) $ $) NIL)) (-3829 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-4360 (($) NIL)) (-2795 (((-112) $ $) NIL)) (-2608 (($ $ $ $) NIL)) (-1367 (($ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)) (-2965 (($ $) 22) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+(((-1071) (-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4436) (-6 -4441) (-6 -4437) (-15 -3948 ($ (-1186))) (-15 -3948 ($ (-570)))))) (T -1071))
+((-3948 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))) (-3948 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071)))))
+(-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4436) (-6 -4441) (-6 -4437) (-15 -3948 ($ (-1186))) (-15 -3948 ($ (-570)))))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-3727 (((-1282) $ (-1186) (-1186)) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-2548 (($) 9)) (-3894 (((-52) $ (-1186) (-52)) NIL)) (-4384 (($ $) 32)) (-1864 (($ $) 30)) (-1450 (($ $) 29)) (-2167 (($ $) 31)) (-4222 (($ $) 35)) (-4279 (($ $) 36)) (-1351 (($ $) 28)) (-1687 (($ $) 33)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) 27 (|has| $ (-6 -4449)))) (-2360 (((-3 (-52) "failed") (-1186) $) 43)) (-3761 (($) NIL T CONST)) (-2397 (($) 7)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-3076 (($ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) 53 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1703 (($ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-2186 (((-3 (-1168) "failed") $ (-1168) (-570)) 74)) (-3789 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4450)))) (-3713 (((-52) $ (-1186)) NIL)) (-2835 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-1186) $) NIL (|has| (-1186) (-856)))) (-3201 (((-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) 38 (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-2596 (((-1186) $) NIL (|has| (-1186) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-2761 (((-650 (-1186)) $) NIL)) (-2338 (((-112) (-1186) $) NIL)) (-2192 (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL)) (-2599 (($ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) 46)) (-2122 (((-650 (-1186)) $) NIL)) (-2083 (((-112) (-1186) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-3787 (((-384) $ (-1186)) 52)) (-3350 (((-650 (-1168)) $ (-1168)) 76)) (-3443 (((-52) $) NIL (|has| (-1186) (-856)))) (-3281 (((-3 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) "failed") (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL)) (-3531 (($ $ (-52)) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL (-12 (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-313 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (($ $ (-650 (-52)) (-650 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-298 (-52))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109)))) (($ $ (-650 (-298 (-52)))) NIL (-12 (|has| (-52) (-313 (-52))) (|has| (-52) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-4348 (((-650 (-52)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 (((-52) $ (-1186)) NIL) (((-52) $ (-1186) (-52)) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-3966 (($ $ (-1186)) 54)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) 40)) (-2439 (($ $ $) 41)) (-3735 (((-868) $) NIL (-2740 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-619 (-868)))))) (-3194 (($ $ (-1186) (-384)) 50)) (-3025 (($ $ (-1186) (-384)) 51)) (-3866 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 (-1186)) (|:| -2224 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-52) (-1109)) (|has| (-2 (|:| -2013 (-1186)) (|:| -2224 (-52))) (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1072) (-13 (-1203 (-1186) (-52)) (-10 -8 (-15 -2439 ($ $ $)) (-15 -2397 ($)) (-15 -1351 ($ $)) (-15 -1450 ($ $)) (-15 -1864 ($ $)) (-15 -2167 ($ $)) (-15 -1687 ($ $)) (-15 -4384 ($ $)) (-15 -4222 ($ $)) (-15 -4279 ($ $)) (-15 -3194 ($ $ (-1186) (-384))) (-15 -3025 ($ $ (-1186) (-384))) (-15 -3787 ((-384) $ (-1186))) (-15 -3350 ((-650 (-1168)) $ (-1168))) (-15 -3966 ($ $ (-1186))) (-15 -2548 ($)) (-15 -2186 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4449)))) (T -1072))
+((-2439 (*1 *1 *1 *1) (-5 *1 (-1072))) (-2397 (*1 *1) (-5 *1 (-1072))) (-1351 (*1 *1 *1) (-5 *1 (-1072))) (-1450 (*1 *1 *1) (-5 *1 (-1072))) (-1864 (*1 *1 *1) (-5 *1 (-1072))) (-2167 (*1 *1 *1) (-5 *1 (-1072))) (-1687 (*1 *1 *1) (-5 *1 (-1072))) (-4384 (*1 *1 *1) (-5 *1 (-1072))) (-4222 (*1 *1 *1) (-5 *1 (-1072))) (-4279 (*1 *1 *1) (-5 *1 (-1072))) (-3194 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-3025 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-3787 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))) (-3350 (*1 *2 *1 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))) (-3966 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))) (-2548 (*1 *1) (-5 *1 (-1072))) (-2186 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
+(-13 (-1203 (-1186) (-52)) (-10 -8 (-15 -2439 ($ $ $)) (-15 -2397 ($)) (-15 -1351 ($ $)) (-15 -1450 ($ $)) (-15 -1864 ($ $)) (-15 -2167 ($ $)) (-15 -1687 ($ $)) (-15 -4384 ($ $)) (-15 -4222 ($ $)) (-15 -4279 ($ $)) (-15 -3194 ($ $ (-1186) (-384))) (-15 -3025 ($ $ (-1186) (-384))) (-15 -3787 ((-384) $ (-1186))) (-15 -3350 ((-650 (-1168)) $ (-1168))) (-15 -3966 ($ $ (-1186))) (-15 -2548 ($)) (-15 -2186 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4449)))
+((-1574 (($ $) 46)) (-4136 (((-112) $ $) 82)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-959 (-413 (-570)))) 253) (((-3 $ "failed") (-959 (-570))) 252) (((-3 $ "failed") (-959 |#2|)) 255)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) NIL) (($ (-959 (-413 (-570)))) 241) (($ (-959 (-570))) 237) (($ (-959 |#2|)) 257)) (-1891 (($ $) NIL) (($ $ |#4|) 44)) (-3747 (((-112) $ $) 131) (((-112) $ (-650 $)) 135)) (-3748 (((-112) $) 60)) (-2526 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 125)) (-2486 (($ $) 160)) (-3949 (($ $) 156)) (-1916 (($ $) 155)) (-3272 (($ $ $) 87) (($ $ $ |#4|) 92)) (-3305 (($ $ $) 90) (($ $ $ |#4|) 94)) (-4071 (((-112) $ $) 143) (((-112) $ (-650 $)) 144)) (-2451 ((|#4| $) 32)) (-1581 (($ $ $) 128)) (-2917 (((-112) $) 59)) (-3052 (((-777) $) 35)) (-1359 (($ $) 174)) (-3804 (($ $) 171)) (-3109 (((-650 $) $) 72)) (-2316 (($ $) 62)) (-2675 (($ $) 167)) (-2031 (((-650 $) $) 69)) (-1608 (($ $) 64)) (-1865 ((|#2| $) NIL) (($ $ |#4|) 39)) (-1801 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1496 (-777))) $ $) 130)) (-2205 (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $) 126) (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $ |#4|) 127)) (-3516 (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $) 121) (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $ |#4|) 123)) (-2294 (($ $ $) 97) (($ $ $ |#4|) 106)) (-2952 (($ $ $) 98) (($ $ $ |#4|) 107)) (-2364 (((-650 $) $) 54)) (-1810 (((-112) $ $) 140) (((-112) $ (-650 $)) 141)) (-1831 (($ $ $) 116)) (-2315 (($ $) 37)) (-2458 (((-112) $ $) 80)) (-3851 (((-112) $ $) 136) (((-112) $ (-650 $)) 138)) (-3464 (($ $ $) 112)) (-2765 (($ $) 41)) (-1874 ((|#2| |#2| $) 164) (($ (-650 $)) NIL) (($ $ $) NIL)) (-3070 (($ $ |#2|) NIL) (($ $ $) 153)) (-4352 (($ $ |#2|) 148) (($ $ $) 151)) (-1771 (($ $) 49)) (-4389 (($ $) 55)) (-1417 (((-899 (-384)) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (($ (-959 (-413 (-570)))) 243) (($ (-959 (-570))) 239) (($ (-959 |#2|)) 254) (((-1168) $) 281) (((-959 |#2|) $) 184)) (-3735 (((-868) $) 29) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-959 |#2|) $) 185) (($ (-413 (-570))) NIL) (($ $) NIL)) (-2603 (((-3 (-112) "failed") $ $) 79)))
+(((-1073 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -1874 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 ((-959 |#2|) |#1|)) (-15 -1417 ((-959 |#2|) |#1|)) (-15 -1417 ((-1168) |#1|)) (-15 -1359 (|#1| |#1|)) (-15 -3804 (|#1| |#1|)) (-15 -2675 (|#1| |#1|)) (-15 -2486 (|#1| |#1|)) (-15 -1874 (|#2| |#2| |#1|)) (-15 -3070 (|#1| |#1| |#1|)) (-15 -4352 (|#1| |#1| |#1|)) (-15 -3070 (|#1| |#1| |#2|)) (-15 -4352 (|#1| |#1| |#2|)) (-15 -3949 (|#1| |#1|)) (-15 -1916 (|#1| |#1|)) (-15 -1417 (|#1| (-959 |#2|))) (-15 -3080 (|#1| (-959 |#2|))) (-15 -4379 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1417 (|#1| (-959 (-570)))) (-15 -3080 (|#1| (-959 (-570)))) (-15 -4379 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1417 (|#1| (-959 (-413 (-570))))) (-15 -3080 (|#1| (-959 (-413 (-570))))) (-15 -4379 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -1831 (|#1| |#1| |#1|)) (-15 -3464 (|#1| |#1| |#1|)) (-15 -1801 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1496 (-777))) |#1| |#1|)) (-15 -1581 (|#1| |#1| |#1|)) (-15 -2526 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2205 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1| |#4|)) (-15 -2205 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -3516 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3831 |#1|)) |#1| |#1| |#4|)) (-15 -3516 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2952 (|#1| |#1| |#1| |#4|)) (-15 -2294 (|#1| |#1| |#1| |#4|)) (-15 -2952 (|#1| |#1| |#1|)) (-15 -2294 (|#1| |#1| |#1|)) (-15 -3305 (|#1| |#1| |#1| |#4|)) (-15 -3272 (|#1| |#1| |#1| |#4|)) (-15 -3305 (|#1| |#1| |#1|)) (-15 -3272 (|#1| |#1| |#1|)) (-15 -4071 ((-112) |#1| (-650 |#1|))) (-15 -4071 ((-112) |#1| |#1|)) (-15 -1810 ((-112) |#1| (-650 |#1|))) (-15 -1810 ((-112) |#1| |#1|)) (-15 -3851 ((-112) |#1| (-650 |#1|))) (-15 -3851 ((-112) |#1| |#1|)) (-15 -3747 ((-112) |#1| (-650 |#1|))) (-15 -3747 ((-112) |#1| |#1|)) (-15 -4136 ((-112) |#1| |#1|)) (-15 -2458 ((-112) |#1| |#1|)) (-15 -2603 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3109 ((-650 |#1|) |#1|)) (-15 -2031 ((-650 |#1|) |#1|)) (-15 -1608 (|#1| |#1|)) (-15 -2316 (|#1| |#1|)) (-15 -3748 ((-112) |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -1891 (|#1| |#1| |#4|)) (-15 -1865 (|#1| |#1| |#4|)) (-15 -4389 (|#1| |#1|)) (-15 -2364 ((-650 |#1|) |#1|)) (-15 -1771 (|#1| |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -2765 (|#1| |#1|)) (-15 -2315 (|#1| |#1|)) (-15 -3052 ((-777) |#1|)) (-15 -2451 (|#4| |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| |#4|)) (-15 -4379 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1865 (|#2| |#1|)) (-15 -1891 (|#1| |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1074 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -1073))
+NIL
+(-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -1874 (|#1| |#1| |#1|)) (-15 -1874 (|#1| (-650 |#1|))) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 ((-959 |#2|) |#1|)) (-15 -1417 ((-959 |#2|) |#1|)) (-15 -1417 ((-1168) |#1|)) (-15 -1359 (|#1| |#1|)) (-15 -3804 (|#1| |#1|)) (-15 -2675 (|#1| |#1|)) (-15 -2486 (|#1| |#1|)) (-15 -1874 (|#2| |#2| |#1|)) (-15 -3070 (|#1| |#1| |#1|)) (-15 -4352 (|#1| |#1| |#1|)) (-15 -3070 (|#1| |#1| |#2|)) (-15 -4352 (|#1| |#1| |#2|)) (-15 -3949 (|#1| |#1|)) (-15 -1916 (|#1| |#1|)) (-15 -1417 (|#1| (-959 |#2|))) (-15 -3080 (|#1| (-959 |#2|))) (-15 -4379 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1417 (|#1| (-959 (-570)))) (-15 -3080 (|#1| (-959 (-570)))) (-15 -4379 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1417 (|#1| (-959 (-413 (-570))))) (-15 -3080 (|#1| (-959 (-413 (-570))))) (-15 -4379 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -1831 (|#1| |#1| |#1|)) (-15 -3464 (|#1| |#1| |#1|)) (-15 -1801 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1496 (-777))) |#1| |#1|)) (-15 -1581 (|#1| |#1| |#1|)) (-15 -2526 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2205 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1| |#4|)) (-15 -2205 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -3516 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3831 |#1|)) |#1| |#1| |#4|)) (-15 -3516 ((-2 (|:| -1442 |#1|) (|:| |gap| (-777)) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -2952 (|#1| |#1| |#1| |#4|)) (-15 -2294 (|#1| |#1| |#1| |#4|)) (-15 -2952 (|#1| |#1| |#1|)) (-15 -2294 (|#1| |#1| |#1|)) (-15 -3305 (|#1| |#1| |#1| |#4|)) (-15 -3272 (|#1| |#1| |#1| |#4|)) (-15 -3305 (|#1| |#1| |#1|)) (-15 -3272 (|#1| |#1| |#1|)) (-15 -4071 ((-112) |#1| (-650 |#1|))) (-15 -4071 ((-112) |#1| |#1|)) (-15 -1810 ((-112) |#1| (-650 |#1|))) (-15 -1810 ((-112) |#1| |#1|)) (-15 -3851 ((-112) |#1| (-650 |#1|))) (-15 -3851 ((-112) |#1| |#1|)) (-15 -3747 ((-112) |#1| (-650 |#1|))) (-15 -3747 ((-112) |#1| |#1|)) (-15 -4136 ((-112) |#1| |#1|)) (-15 -2458 ((-112) |#1| |#1|)) (-15 -2603 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3109 ((-650 |#1|) |#1|)) (-15 -2031 ((-650 |#1|) |#1|)) (-15 -1608 (|#1| |#1|)) (-15 -2316 (|#1| |#1|)) (-15 -3748 ((-112) |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -1891 (|#1| |#1| |#4|)) (-15 -1865 (|#1| |#1| |#4|)) (-15 -4389 (|#1| |#1|)) (-15 -2364 ((-650 |#1|) |#1|)) (-15 -1771 (|#1| |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -2765 (|#1| |#1|)) (-15 -2315 (|#1| |#1|)) (-15 -3052 ((-777) |#1|)) (-15 -2451 (|#4| |#1|)) (-15 -1417 ((-542) |#1|)) (-15 -1417 ((-899 (-570)) |#1|)) (-15 -1417 ((-899 (-384)) |#1|)) (-15 -3735 (|#1| |#4|)) (-15 -4379 ((-3 |#4| "failed") |#1|)) (-15 -3080 (|#4| |#1|)) (-15 -1865 (|#2| |#1|)) (-15 -1891 (|#1| |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 |#3|) $) 112)) (-3702 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-1345 (($ $) 90 (|has| |#1| (-562)))) (-1372 (((-112) $) 92 (|has| |#1| (-562)))) (-2200 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-1574 (($ $) 273)) (-4136 (((-112) $ $) 259)) (-4119 (((-3 $ "failed") $ $) 20)) (-2037 (($ $ $) 218 (|has| |#1| (-562)))) (-3102 (((-650 $) $ $) 213 (|has| |#1| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-3252 (($ $) 100 (|has| |#1| (-458)))) (-1378 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 |#3| "failed") $) 138) (((-3 $ "failed") (-959 (-413 (-570)))) 233 (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))) (((-3 $ "failed") (-959 (-570))) 230 (-2740 (-12 (-1753 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186)))))) (((-3 $ "failed") (-959 |#1|)) 227 (-2740 (-12 (-1753 (|has| |#1| (-38 (-413 (-570))))) (-1753 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1753 (|has| |#1| (-551))) (-1753 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1753 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139) (($ (-959 (-413 (-570)))) 232 (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))) (($ (-959 (-570))) 229 (-2740 (-12 (-1753 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186)))))) (($ (-959 |#1|)) 226 (-2740 (-12 (-1753 (|has| |#1| (-38 (-413 (-570))))) (-1753 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1753 (|has| |#1| (-551))) (-1753 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1753 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-3383 (($ $ $ |#3|) 110 (|has| |#1| (-174))) (($ $ $) 214 (|has| |#1| (-562)))) (-1891 (($ $) 156) (($ $ |#3|) 268)) (-1836 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-3747 (((-112) $ $) 258) (((-112) $ (-650 $)) 257)) (-2937 (((-3 $ "failed") $) 37)) (-3748 (((-112) $) 266)) (-2526 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 238)) (-2486 (($ $) 207 (|has| |#1| (-458)))) (-1767 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1872 (((-650 $) $) 111)) (-4037 (((-112) $) 98 (|has| |#1| (-916)))) (-3949 (($ $) 223 (|has| |#1| (-562)))) (-1916 (($ $) 224 (|has| |#1| (-562)))) (-3272 (($ $ $) 250) (($ $ $ |#3|) 248)) (-3305 (($ $ $) 249) (($ $ $ |#3|) 247)) (-3382 (($ $ |#1| |#2| $) 174)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| |#3| (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| |#3| (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4340 (((-112) $) 35)) (-2292 (((-777) $) 171)) (-4071 (((-112) $ $) 252) (((-112) $ (-650 $)) 251)) (-2560 (($ $ $ $ $) 209 (|has| |#1| (-562)))) (-2451 ((|#3| $) 277)) (-1705 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-1471 (((-650 $) $) 128)) (-4016 (((-112) $) 154)) (-3872 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-1581 (($ $ $) 237)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#3|) 122)) (-2917 (((-112) $) 267)) (-2730 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-3052 (((-777) $) 276)) (-2206 (($ (-1 |#2| |#2|) $) 173)) (-1352 (($ (-1 |#1| |#1|) $) 153)) (-2645 (((-3 |#3| "failed") $) 125)) (-1359 (($ $) 204 (|has| |#1| (-458)))) (-3804 (($ $) 205 (|has| |#1| (-458)))) (-3109 (((-650 $) $) 262)) (-2316 (($ $) 265)) (-2675 (($ $) 206 (|has| |#1| (-458)))) (-2031 (((-650 $) $) 263)) (-1608 (($ $) 264)) (-1857 (($ $) 151)) (-1865 ((|#1| $) 150) (($ $ |#3|) 269)) (-1847 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1801 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1496 (-777))) $ $) 236)) (-2205 (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $) 240) (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $ |#3|) 239)) (-3516 (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $) 242) (((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $ |#3|) 241)) (-2294 (($ $ $) 246) (($ $ $ |#3|) 244)) (-2952 (($ $ $) 245) (($ $ $ |#3|) 243)) (-4268 (((-1168) $) 10)) (-2068 (($ $ $) 212 (|has| |#1| (-562)))) (-2364 (((-650 $) $) 271)) (-3176 (((-3 (-650 $) "failed") $) 116)) (-1955 (((-3 (-650 $) "failed") $) 117)) (-4415 (((-3 (-2 (|:| |var| |#3|) (|:| -3011 (-777))) "failed") $) 115)) (-1810 (((-112) $ $) 254) (((-112) $ (-650 $)) 253)) (-1831 (($ $ $) 234)) (-2315 (($ $) 275)) (-2458 (((-112) $ $) 260)) (-3851 (((-112) $ $) 256) (((-112) $ (-650 $)) 255)) (-3464 (($ $ $) 235)) (-2765 (($ $) 274)) (-3479 (((-1129) $) 11)) (-4122 (((-2 (|:| -1874 $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-562)))) (-3473 (((-2 (|:| -1874 $) (|:| |coef1| $)) $ $) 216 (|has| |#1| (-562)))) (-1835 (((-112) $) 168)) (-1846 ((|#1| $) 169)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 ((|#1| |#1| $) 208 (|has| |#1| (-458))) (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3739 (((-424 $) $) 101 (|has| |#1| (-916)))) (-3093 (((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 217 (|has| |#1| (-562)))) (-2406 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-3070 (($ $ |#1|) 221 (|has| |#1| (-562))) (($ $ $) 219 (|has| |#1| (-562)))) (-4352 (($ $ |#1|) 222 (|has| |#1| (-562))) (($ $ $) 220 (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-3290 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3447 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-3221 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1771 (($ $) 272)) (-4389 (($ $) 270)) (-1417 (((-899 (-384)) $) 84 (-12 (|has| |#3| (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| |#3| (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| |#3| (-620 (-542))) (|has| |#1| (-620 (-542))))) (($ (-959 (-413 (-570)))) 231 (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))) (($ (-959 (-570))) 228 (-2740 (-12 (-1753 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186)))))) (($ (-959 |#1|)) 225 (|has| |#3| (-620 (-1186)))) (((-1168) $) 203 (-12 (|has| |#1| (-1047 (-570))) (|has| |#3| (-620 (-1186))))) (((-959 |#1|) $) 202 (|has| |#3| (-620 (-1186))))) (-3621 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (((-959 |#1|) $) 201 (|has| |#3| (-620 (-1186)))) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) 170)) (-1983 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3127 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) 32 T CONST)) (-3340 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-2603 (((-3 (-112) "failed") $ $) 261)) (-1824 (($) 34 T CONST)) (-2726 (($ $ $ $ (-777)) 210 (|has| |#1| (-562)))) (-4073 (($ $ $ (-777)) 211 (|has| |#1| (-562)))) (-2791 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-1074 |#1| |#2| |#3|) (-141) (-1058) (-799) (-856)) (T -1074))
-((-2711 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-4059 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-2314 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3393 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1573 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3211 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2699 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-1779 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1864 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1890 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3411 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-4102 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2117 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1722 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-4383 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-3056 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-4122 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1891 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2914 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2914 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-3236 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3236 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-1329 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1329 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-3911 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3911 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-1930 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-4270 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1930 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-4270 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1758 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2632 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1758 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2632 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3980 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -2785 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3980 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -2785 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-2680 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2680 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-3369 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-1490 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1835 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3184 (-777)))) (-4 *1 (-1074 *3 *4 *5)))) (-3339 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1695 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-4378 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))) (-4378 (*1 *1 *2) (|partial| -2740 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))))) (-3080 (*1 *1 *2) (-2740 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))))) (-1416 (*1 *1 *2) (-2740 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))))) (-4378 (*1 *1 *2) (|partial| -2740 (-12 (-5 *2 (-959 *3)) (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-1754 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1754 (-4 *3 (-551))) (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1754 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))))) (-3080 (*1 *1 *2) (-2740 (-12 (-5 *2 (-959 *3)) (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-1754 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1754 (-4 *3 (-551))) (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1754 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *5 (-620 (-1186))) (-4 *4 (-799)) (-4 *5 (-856)))) (-4187 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3574 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3160 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3298 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3160 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3298 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3766 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2838 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-4288 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-1888 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1874 *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-1939 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3302 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-3769 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-1884 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))) (-1995 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))) (-1978 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-1874 (*1 *2 *2 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1970 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2599 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2151 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2719 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))))
-(-13 (-956 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2711 (|t#3| $)) (-15 -4059 ((-777) $)) (-15 -2314 ($ $)) (-15 -3393 ($ $)) (-15 -1573 ($ $)) (-15 -3211 ($ $)) (-15 -2699 ((-650 $) $)) (-15 -1779 ($ $)) (-15 -1864 ($ $ |t#3|)) (-15 -1890 ($ $ |t#3|)) (-15 -3411 ((-112) $)) (-15 -3557 ((-112) $)) (-15 -4102 ($ $)) (-15 -2117 ($ $)) (-15 -1722 ((-650 $) $)) (-15 -4383 ((-650 $) $)) (-15 -3056 ((-3 (-112) "failed") $ $)) (-15 -4122 ((-112) $ $)) (-15 -1891 ((-112) $ $)) (-15 -2914 ((-112) $ $)) (-15 -2914 ((-112) $ (-650 $))) (-15 -3236 ((-112) $ $)) (-15 -3236 ((-112) $ (-650 $))) (-15 -1329 ((-112) $ $)) (-15 -1329 ((-112) $ (-650 $))) (-15 -3911 ((-112) $ $)) (-15 -3911 ((-112) $ (-650 $))) (-15 -1930 ($ $ $)) (-15 -4270 ($ $ $)) (-15 -1930 ($ $ $ |t#3|)) (-15 -4270 ($ $ $ |t#3|)) (-15 -1758 ($ $ $)) (-15 -2632 ($ $ $)) (-15 -1758 ($ $ $ |t#3|)) (-15 -2632 ($ $ $ |t#3|)) (-15 -3980 ((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $)) (-15 -3980 ((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -2785 $)) $ $ |t#3|)) (-15 -2680 ((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -2680 ((-2 (|:| -1441 $) (|:| |gap| (-777)) (|:| -3331 $) (|:| -2785 $)) $ $ |t#3|)) (-15 -3369 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -1490 ($ $ $)) (-15 -1835 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3184 (-777))) $ $)) (-15 -3339 ($ $ $)) (-15 -1695 ($ $ $)) (IF (|has| |t#3| (-620 (-1186))) (PROGN (-6 (-619 (-959 |t#1|))) (-6 (-620 (-959 |t#1|))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -4378 ((-3 $ "failed") (-959 (-413 (-570))))) (-15 -3080 ($ (-959 (-413 (-570))))) (-15 -1416 ($ (-959 (-413 (-570))))) (-15 -4378 ((-3 $ "failed") (-959 (-570)))) (-15 -3080 ($ (-959 (-570)))) (-15 -1416 ($ (-959 (-570)))) (IF (|has| |t#1| (-1001 (-570))) |%noBranch| (PROGN (-15 -4378 ((-3 $ "failed") (-959 |t#1|))) (-15 -3080 ($ (-959 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4378 ((-3 $ "failed") (-959 (-570)))) (-15 -3080 ($ (-959 (-570)))) (-15 -1416 ($ (-959 (-570)))) (IF (|has| |t#1| (-551)) |%noBranch| (PROGN (-15 -4378 ((-3 $ "failed") (-959 |t#1|))) (-15 -3080 ($ (-959 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) |%noBranch| (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4378 ((-3 $ "failed") (-959 |t#1|))) (-15 -3080 ($ (-959 |t#1|)))))) (-15 -1416 ($ (-959 |t#1|))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-620 (-1168))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -4187 ($ $)) (-15 -3574 ($ $)) (-15 -3160 ($ $ |t#1|)) (-15 -3298 ($ $ |t#1|)) (-15 -3160 ($ $ $)) (-15 -3298 ($ $ $)) (-15 -3766 ($ $ $)) (-15 -2838 ((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4288 ((-2 (|:| -1874 $) (|:| |coef1| $)) $ $)) (-15 -1888 ((-2 (|:| -1874 $) (|:| |coef2| $)) $ $)) (-15 -1939 ($ $ $)) (-15 -3302 ((-650 $) $ $)) (-15 -3769 ($ $ $)) (-15 -1884 ($ $ $ (-777))) (-15 -1995 ($ $ $ $ (-777))) (-15 -1978 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -1874 (|t#1| |t#1| $)) (-15 -1970 ($ $)) (-15 -2599 ($ $)) (-15 -2151 ($ $)) (-15 -2719 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-619 (-959 |#1|)) |has| |#3| (-620 (-1186))) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570))))) ((-620 (-959 |#1|)) |has| |#3| (-620 (-1186))) ((-620 (-1168)) -12 (|has| |#1| (-1047 (-570))) (|has| |#3| (-620 (-1186)))) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-732) . T) ((-907 |#3|) . T) ((-893 (-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))) ((-956 |#1| |#2| |#3|) . T) ((-916) |has| |#1| (-916)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1047 |#3|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) |has| |#1| (-916)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-2655 (((-650 (-1144)) $) 18)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-1144) $) 20)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1075) (-13 (-1092) (-10 -8 (-15 -2655 ((-650 (-1144)) $)) (-15 -3517 ((-1144) $))))) (T -1075))
-((-2655 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1075)))) (-3517 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1075)))))
-(-13 (-1092) (-10 -8 (-15 -2655 ((-650 (-1144)) $)) (-15 -3517 ((-1144) $))))
-((-4028 (((-112) |#3| $) 15)) (-4143 (((-3 $ "failed") |#3| (-928)) 29)) (-3413 (((-3 |#3| "failed") |#3| $) 45)) (-1522 (((-112) |#3| $) 19)) (-2761 (((-112) |#3| $) 17)))
-(((-1076 |#1| |#2| |#3|) (-10 -8 (-15 -4143 ((-3 |#1| "failed") |#3| (-928))) (-15 -3413 ((-3 |#3| "failed") |#3| |#1|)) (-15 -1522 ((-112) |#3| |#1|)) (-15 -2761 ((-112) |#3| |#1|)) (-15 -4028 ((-112) |#3| |#1|))) (-1077 |#2| |#3|) (-13 (-854) (-368)) (-1252 |#2|)) (T -1076))
-NIL
-(-10 -8 (-15 -4143 ((-3 |#1| "failed") |#3| (-928))) (-15 -3413 ((-3 |#3| "failed") |#3| |#1|)) (-15 -1522 ((-112) |#3| |#1|)) (-15 -2761 ((-112) |#3| |#1|)) (-15 -4028 ((-112) |#3| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) |#2| $) 22)) (-3140 (((-570) |#2| $) 23)) (-4143 (((-3 $ "failed") |#2| (-928)) 16)) (-1912 ((|#1| |#2| $ |#1|) 14)) (-3413 (((-3 |#2| "failed") |#2| $) 19)) (-1522 (((-112) |#2| $) 20)) (-2761 (((-112) |#2| $) 21)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2886 ((|#2| $) 18)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-3026 ((|#1| |#2| $ |#1|) 15)) (-2006 (((-650 $) |#2|) 17)) (-2872 (((-112) $ $) 6)))
-(((-1077 |#1| |#2|) (-141) (-13 (-854) (-368)) (-1252 |t#1|)) (T -1077))
-((-3140 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1252 *4)) (-5 *2 (-570)))) (-4028 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1252 *4)) (-5 *2 (-112)))) (-2761 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1252 *4)) (-5 *2 (-112)))) (-1522 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1252 *4)) (-5 *2 (-112)))) (-3413 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1252 *3)))) (-2886 (*1 *2 *1) (-12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1252 *3)))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1252 *4)) (-5 *2 (-650 *1)) (-4 *1 (-1077 *4 *3)))) (-4143 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-4 *4 (-13 (-854) (-368))) (-4 *1 (-1077 *4 *2)) (-4 *2 (-1252 *4)))) (-3026 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368))) (-4 *3 (-1252 *2)))) (-1912 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368))) (-4 *3 (-1252 *2)))))
-(-13 (-1109) (-10 -8 (-15 -3140 ((-570) |t#2| $)) (-15 -4028 ((-112) |t#2| $)) (-15 -2761 ((-112) |t#2| $)) (-15 -1522 ((-112) |t#2| $)) (-15 -3413 ((-3 |t#2| "failed") |t#2| $)) (-15 -2886 (|t#2| $)) (-15 -2006 ((-650 $) |t#2|)) (-15 -4143 ((-3 $ "failed") |t#2| (-928))) (-15 -3026 (|t#1| |t#2| $ |t#1|)) (-15 -1912 (|t#1| |t#2| $ |t#1|))))
+((-2451 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3052 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-2315 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2765 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1574 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1771 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2364 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-4389 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1865 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1891 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2917 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3748 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2316 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1608 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2031 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-3109 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-2603 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2458 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-4136 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3747 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3747 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-3851 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3851 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-1810 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1810 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-4071 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-4071 (*1 *2 *1 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)))) (-3272 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3305 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3272 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3305 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2294 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2952 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2294 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2952 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3516 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3831 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3516 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3831 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-2205 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2205 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-2526 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-1581 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1801 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1496 (-777)))) (-4 *1 (-1074 *3 *4 *5)))) (-3464 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1831 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-4379 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))) (-3080 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))) (-4379 (*1 *1 *2) (|partial| -2740 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))))) (-3080 (*1 *1 *2) (-2740 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))))) (-1417 (*1 *1 *2) (-2740 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))))) (-4379 (*1 *1 *2) (|partial| -2740 (-12 (-5 *2 (-959 *3)) (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-1753 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1753 (-4 *3 (-551))) (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1753 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))))) (-3080 (*1 *1 *2) (-2740 (-12 (-5 *2 (-959 *3)) (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-1753 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1753 (-4 *3 (-551))) (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))) (-12 (-5 *2 (-959 *3)) (-12 (-1753 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799)) (-4 *5 (-856))))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *5 (-620 (-1186))) (-4 *4 (-799)) (-4 *5 (-856)))) (-1916 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3949 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4352 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3070 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4352 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3070 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2037 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3093 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3473 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-4122 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1874 *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3383 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3102 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-2068 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4073 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))) (-2726 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))) (-2560 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-1874 (*1 *2 *2 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2486 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2675 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-3804 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1359 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))))
+(-13 (-956 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2451 (|t#3| $)) (-15 -3052 ((-777) $)) (-15 -2315 ($ $)) (-15 -2765 ($ $)) (-15 -1574 ($ $)) (-15 -1771 ($ $)) (-15 -2364 ((-650 $) $)) (-15 -4389 ($ $)) (-15 -1865 ($ $ |t#3|)) (-15 -1891 ($ $ |t#3|)) (-15 -2917 ((-112) $)) (-15 -3748 ((-112) $)) (-15 -2316 ($ $)) (-15 -1608 ($ $)) (-15 -2031 ((-650 $) $)) (-15 -3109 ((-650 $) $)) (-15 -2603 ((-3 (-112) "failed") $ $)) (-15 -2458 ((-112) $ $)) (-15 -4136 ((-112) $ $)) (-15 -3747 ((-112) $ $)) (-15 -3747 ((-112) $ (-650 $))) (-15 -3851 ((-112) $ $)) (-15 -3851 ((-112) $ (-650 $))) (-15 -1810 ((-112) $ $)) (-15 -1810 ((-112) $ (-650 $))) (-15 -4071 ((-112) $ $)) (-15 -4071 ((-112) $ (-650 $))) (-15 -3272 ($ $ $)) (-15 -3305 ($ $ $)) (-15 -3272 ($ $ $ |t#3|)) (-15 -3305 ($ $ $ |t#3|)) (-15 -2294 ($ $ $)) (-15 -2952 ($ $ $)) (-15 -2294 ($ $ $ |t#3|)) (-15 -2952 ($ $ $ |t#3|)) (-15 -3516 ((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $)) (-15 -3516 ((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3831 $)) $ $ |t#3|)) (-15 -2205 ((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -2205 ((-2 (|:| -1442 $) (|:| |gap| (-777)) (|:| -3389 $) (|:| -3831 $)) $ $ |t#3|)) (-15 -2526 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -1581 ($ $ $)) (-15 -1801 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1496 (-777))) $ $)) (-15 -3464 ($ $ $)) (-15 -1831 ($ $ $)) (IF (|has| |t#3| (-620 (-1186))) (PROGN (-6 (-619 (-959 |t#1|))) (-6 (-620 (-959 |t#1|))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -4379 ((-3 $ "failed") (-959 (-413 (-570))))) (-15 -3080 ($ (-959 (-413 (-570))))) (-15 -1417 ($ (-959 (-413 (-570))))) (-15 -4379 ((-3 $ "failed") (-959 (-570)))) (-15 -3080 ($ (-959 (-570)))) (-15 -1417 ($ (-959 (-570)))) (IF (|has| |t#1| (-1001 (-570))) |%noBranch| (PROGN (-15 -4379 ((-3 $ "failed") (-959 |t#1|))) (-15 -3080 ($ (-959 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4379 ((-3 $ "failed") (-959 (-570)))) (-15 -3080 ($ (-959 (-570)))) (-15 -1417 ($ (-959 (-570)))) (IF (|has| |t#1| (-551)) |%noBranch| (PROGN (-15 -4379 ((-3 $ "failed") (-959 |t#1|))) (-15 -3080 ($ (-959 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) |%noBranch| (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4379 ((-3 $ "failed") (-959 |t#1|))) (-15 -3080 ($ (-959 |t#1|)))))) (-15 -1417 ($ (-959 |t#1|))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-620 (-1168))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -1916 ($ $)) (-15 -3949 ($ $)) (-15 -4352 ($ $ |t#1|)) (-15 -3070 ($ $ |t#1|)) (-15 -4352 ($ $ $)) (-15 -3070 ($ $ $)) (-15 -2037 ($ $ $)) (-15 -3093 ((-2 (|:| -1874 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3473 ((-2 (|:| -1874 $) (|:| |coef1| $)) $ $)) (-15 -4122 ((-2 (|:| -1874 $) (|:| |coef2| $)) $ $)) (-15 -3383 ($ $ $)) (-15 -3102 ((-650 $) $ $)) (-15 -2068 ($ $ $)) (-15 -4073 ($ $ $ (-777))) (-15 -2726 ($ $ $ $ (-777))) (-15 -2560 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -1874 (|t#1| |t#1| $)) (-15 -2486 ($ $)) (-15 -2675 ($ $)) (-15 -3804 ($ $)) (-15 -1359 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-619 (-959 |#1|)) |has| |#3| (-620 (-1186))) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| |#1| (-620 (-542))) (|has| |#3| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#3| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#3| (-620 (-899 (-570))))) ((-620 (-959 |#1|)) |has| |#3| (-620 (-1186))) ((-620 (-1168)) -12 (|has| |#1| (-1047 (-570))) (|has| |#3| (-620 (-1186)))) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-732) . T) ((-907 |#3|) . T) ((-893 (-384)) -12 (|has| |#1| (-893 (-384))) (|has| |#3| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-893 (-570))) (|has| |#3| (-893 (-570)))) ((-956 |#1| |#2| |#3|) . T) ((-916) |has| |#1| (-916)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 |#1|) . T) ((-1047 |#3|) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-2656 (((-650 (-1144)) $) 18)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-1144) $) 20)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1075) (-13 (-1092) (-10 -8 (-15 -2656 ((-650 (-1144)) $)) (-15 -3515 ((-1144) $))))) (T -1075))
+((-2656 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1075)))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1075)))))
+(-13 (-1092) (-10 -8 (-15 -2656 ((-650 (-1144)) $)) (-15 -3515 ((-1144) $))))
+((-2745 (((-112) |#3| $) 15)) (-1480 (((-3 $ "failed") |#3| (-928)) 29)) (-2937 (((-3 |#3| "failed") |#3| $) 45)) (-3703 (((-112) |#3| $) 19)) (-1774 (((-112) |#3| $) 17)))
+(((-1076 |#1| |#2| |#3|) (-10 -8 (-15 -1480 ((-3 |#1| "failed") |#3| (-928))) (-15 -2937 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3703 ((-112) |#3| |#1|)) (-15 -1774 ((-112) |#3| |#1|)) (-15 -2745 ((-112) |#3| |#1|))) (-1077 |#2| |#3|) (-13 (-854) (-368)) (-1253 |#2|)) (T -1076))
+NIL
+(-10 -8 (-15 -1480 ((-3 |#1| "failed") |#3| (-928))) (-15 -2937 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3703 ((-112) |#3| |#1|)) (-15 -1774 ((-112) |#3| |#1|)) (-15 -2745 ((-112) |#3| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) |#2| $) 22)) (-2249 (((-570) |#2| $) 23)) (-1480 (((-3 $ "failed") |#2| (-928)) 16)) (-3064 ((|#1| |#2| $ |#1|) 14)) (-2937 (((-3 |#2| "failed") |#2| $) 19)) (-3703 (((-112) |#2| $) 20)) (-1774 (((-112) |#2| $) 21)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3597 ((|#2| $) 18)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-3026 ((|#1| |#2| $ |#1|) 15)) (-2837 (((-650 $) |#2|) 17)) (-2872 (((-112) $ $) 6)))
+(((-1077 |#1| |#2|) (-141) (-13 (-854) (-368)) (-1253 |t#1|)) (T -1077))
+((-2249 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-570)))) (-2745 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-1774 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-3703 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-2937 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1253 *3)))) (-3597 (*1 *2 *1) (-12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1253 *3)))) (-2837 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-650 *1)) (-4 *1 (-1077 *4 *3)))) (-1480 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-4 *4 (-13 (-854) (-368))) (-4 *1 (-1077 *4 *2)) (-4 *2 (-1253 *4)))) (-3026 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368))) (-4 *3 (-1253 *2)))) (-3064 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368))) (-4 *3 (-1253 *2)))))
+(-13 (-1109) (-10 -8 (-15 -2249 ((-570) |t#2| $)) (-15 -2745 ((-112) |t#2| $)) (-15 -1774 ((-112) |t#2| $)) (-15 -3703 ((-112) |t#2| $)) (-15 -2937 ((-3 |t#2| "failed") |t#2| $)) (-15 -3597 (|t#2| $)) (-15 -2837 ((-650 $) |t#2|)) (-15 -1480 ((-3 $ "failed") |t#2| (-928))) (-15 -3026 (|t#1| |t#2| $ |t#1|)) (-15 -3064 (|t#1| |t#2| $ |t#1|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2591 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777)) 114)) (-3420 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 63)) (-2453 (((-1281) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)) 99)) (-1933 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-2908 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 66) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 65) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112)) 67)) (-1386 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 86) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 87)) (-1416 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 92)) (-4067 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-112)) 62)) (-3861 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
-(((-1078 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3861 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1933 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -4067 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-112))) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2591 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1416 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1281) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1078))
-((-2453 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *4 (-777)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1281)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1168)) (-5 *1 (-1078 *4 *5 *6 *7 *8)))) (-2591 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3593 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3593 *11)))) (-5 *3 (-650 *10)) (-5 *4 (-650 *11)) (-4 *10 (-1074 *7 *8 *9)) (-4 *11 (-1080 *7 *8 *9 *10)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-5 *1 (-1078 *7 *8 *9 *10 *11)))) (-1386 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-1386 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-2908 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2908 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-2908 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *7 *8 *9 *3 *4)) (-4 *4 (-1080 *7 *8 *9 *3)))) (-3420 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3420 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-4067 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1933 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-3861 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -3861 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1933 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -4067 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-112))) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2591 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1416 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1281) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777))))
-((-2974 (((-112) |#5| $) 26)) (-3333 (((-112) |#5| $) 29)) (-3052 (((-112) |#5| $) 18) (((-112) $) 52)) (-2307 (((-650 $) |#5| $) NIL) (((-650 $) (-650 |#5|) $) 94) (((-650 $) (-650 |#5|) (-650 $)) 92) (((-650 $) |#5| (-650 $)) 95)) (-1558 (($ $ |#5|) NIL) (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 73) (((-650 $) (-650 |#5|) $) 75) (((-650 $) (-650 |#5|) (-650 $)) 77)) (-4194 (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 64) (((-650 $) (-650 |#5|) $) 69) (((-650 $) (-650 |#5|) (-650 $)) 71)) (-1985 (((-112) |#5| $) 32)))
-(((-1079 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1558 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -1558 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -1558 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -1558 ((-650 |#1|) |#5| |#1|)) (-15 -4194 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -4194 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -4194 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -4194 ((-650 |#1|) |#5| |#1|)) (-15 -2307 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2307 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2307 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2307 ((-650 |#1|) |#5| |#1|)) (-15 -3333 ((-112) |#5| |#1|)) (-15 -3052 ((-112) |#1|)) (-15 -1985 ((-112) |#5| |#1|)) (-15 -2974 ((-112) |#5| |#1|)) (-15 -3052 ((-112) |#5| |#1|)) (-15 -1558 (|#1| |#1| |#5|))) (-1080 |#2| |#3| |#4| |#5|) (-458) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1079))
-NIL
-(-10 -8 (-15 -1558 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -1558 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -1558 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -1558 ((-650 |#1|) |#5| |#1|)) (-15 -4194 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -4194 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -4194 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -4194 ((-650 |#1|) |#5| |#1|)) (-15 -2307 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2307 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2307 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2307 ((-650 |#1|) |#5| |#1|)) (-15 -3333 ((-112) |#5| |#1|)) (-15 -3052 ((-112) |#1|)) (-15 -1985 ((-112) |#5| |#1|)) (-15 -2974 ((-112) |#5| |#1|)) (-15 -3052 ((-112) |#5| |#1|)) (-15 -1558 (|#1| |#1| |#5|)))
-((-2416 (((-112) $ $) 7)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) 86)) (-2411 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1716 (((-650 |#3|) $) 34)) (-3418 (((-112) $) 27)) (-1536 (((-112) $) 18 (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) 102) (((-112) $) 98)) (-4200 ((|#4| |#4| $) 93)) (-2222 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) 28)) (-3594 (((-112) $ (-777)) 45)) (-1424 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 80)) (-2450 (($) 46 T CONST)) (-3809 (((-112) $) 23 (|has| |#1| (-562)))) (-2730 (((-112) $ $) 25 (|has| |#1| (-562)))) (-1905 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2374 (((-112) $) 26 (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3742 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-2561 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1808 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) 106)) (-2974 (((-112) |#4| $) 137)) (-3333 (((-112) |#4| $) 134)) (-3052 (((-112) |#4| $) 138) (((-112) $) 135)) (-2836 (((-650 |#4|) $) 53 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) 105) (((-112) $) 104)) (-2711 ((|#3| $) 35)) (-2742 (((-112) $ (-777)) 44)) (-2849 (((-650 |#4|) $) 54 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 48)) (-3727 (((-650 |#3|) $) 33)) (-1844 (((-112) |#3| $) 32)) (-3452 (((-112) $ (-777)) 43)) (-1903 (((-1168) $) 10)) (-1796 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3769 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1728 (((-3 |#4| "failed") $) 84)) (-2395 (((-650 $) |#4| $) 130)) (-3235 (((-3 (-112) (-650 $)) |#4| $) 133)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2307 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2731 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3185 (((-650 |#4|) $) 108)) (-1329 (((-112) |#4| $) 100) (((-112) $) 96)) (-1695 ((|#4| |#4| $) 91)) (-4122 (((-112) $ $) 111)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) 101) (((-112) $) 97)) (-3339 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3802 (((-3 $ "failed") $ |#4|) 79)) (-1558 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1671 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) 39)) (-3329 (((-112) $) 42)) (-3743 (($) 41)) (-1601 (((-777) $) 107)) (-3486 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4448)))) (-3915 (($ $) 40)) (-1416 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 61)) (-4280 (($ $ |#3|) 29)) (-2185 (($ $ |#3|) 31)) (-1892 (($ $) 89)) (-1332 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-1633 (((-777) $) 77 (|has| |#3| (-373)))) (-1859 (((-112) $ $) 9)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4194 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4368 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) 82)) (-1985 (((-112) |#4| $) 136)) (-2663 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
+((-2585 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777)) 114)) (-2999 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 63)) (-2453 (((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)) 99)) (-3314 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-3685 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 66) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 65) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112)) 67)) (-1437 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 86) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 87)) (-1417 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 92)) (-2015 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-112)) 62)) (-1737 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
+(((-1078 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1737 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3314 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2015 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-112))) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2585 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1417 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1078))
+((-2453 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *4 (-777)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1282)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1168)) (-5 *1 (-1078 *4 *5 *6 *7 *8)))) (-2585 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3593 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3593 *11)))) (-5 *3 (-650 *10)) (-5 *4 (-650 *11)) (-4 *10 (-1074 *7 *8 *9)) (-4 *11 (-1080 *7 *8 *9 *10)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-5 *1 (-1078 *7 *8 *9 *10 *11)))) (-1437 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-1437 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-3685 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3685 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-3685 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *7 *8 *9 *3 *4)) (-4 *4 (-1080 *7 *8 *9 *3)))) (-2999 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2999 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-2015 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-3314 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))) (-1737 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1737 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3314 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2015 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-112))) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2585 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1417 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777))))
+((-3045 (((-112) |#5| $) 26)) (-3412 (((-112) |#5| $) 29)) (-2561 (((-112) |#5| $) 18) (((-112) $) 52)) (-2885 (((-650 $) |#5| $) NIL) (((-650 $) (-650 |#5|) $) 94) (((-650 $) (-650 |#5|) (-650 $)) 92) (((-650 $) |#5| (-650 $)) 95)) (-4102 (($ $ |#5|) NIL) (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 73) (((-650 $) (-650 |#5|) $) 75) (((-650 $) (-650 |#5|) (-650 $)) 77)) (-3811 (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 64) (((-650 $) (-650 |#5|) $) 69) (((-650 $) (-650 |#5|) (-650 $)) 71)) (-2626 (((-112) |#5| $) 32)))
+(((-1079 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4102 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -4102 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -4102 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -4102 ((-650 |#1|) |#5| |#1|)) (-15 -3811 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -3811 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -3811 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -3811 ((-650 |#1|) |#5| |#1|)) (-15 -2885 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2885 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2885 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2885 ((-650 |#1|) |#5| |#1|)) (-15 -3412 ((-112) |#5| |#1|)) (-15 -2561 ((-112) |#1|)) (-15 -2626 ((-112) |#5| |#1|)) (-15 -3045 ((-112) |#5| |#1|)) (-15 -2561 ((-112) |#5| |#1|)) (-15 -4102 (|#1| |#1| |#5|))) (-1080 |#2| |#3| |#4| |#5|) (-458) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1079))
+NIL
+(-10 -8 (-15 -4102 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -4102 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -4102 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -4102 ((-650 |#1|) |#5| |#1|)) (-15 -3811 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -3811 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -3811 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -3811 ((-650 |#1|) |#5| |#1|)) (-15 -2885 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2885 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2885 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2885 ((-650 |#1|) |#5| |#1|)) (-15 -3412 ((-112) |#5| |#1|)) (-15 -2561 ((-112) |#1|)) (-15 -2626 ((-112) |#5| |#1|)) (-15 -3045 ((-112) |#5| |#1|)) (-15 -2561 ((-112) |#5| |#1|)) (-15 -4102 (|#1| |#1| |#5|)))
+((-2417 (((-112) $ $) 7)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) 86)) (-1556 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1713 (((-650 |#3|) $) 34)) (-2977 (((-112) $) 27)) (-3873 (((-112) $) 18 (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) 102) (((-112) $) 98)) (-3870 ((|#4| |#4| $) 93)) (-3252 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) 28)) (-4095 (((-112) $ (-777)) 45)) (-1425 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-3761 (($) 46 T CONST)) (-2391 (((-112) $) 23 (|has| |#1| (-562)))) (-1475 (((-112) $ $) 25 (|has| |#1| (-562)))) (-2993 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2376 (((-112) $) 26 (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2996 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-3565 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) 106)) (-3045 (((-112) |#4| $) 137)) (-3412 (((-112) |#4| $) 134)) (-2561 (((-112) |#4| $) 138) (((-112) $) 135)) (-2835 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) 105) (((-112) $) 104)) (-2451 ((|#3| $) 35)) (-1586 (((-112) $ (-777)) 44)) (-3201 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 48)) (-2881 (((-650 |#3|) $) 33)) (-3710 (((-112) |#3| $) 32)) (-2113 (((-112) $ (-777)) 43)) (-4268 (((-1168) $) 10)) (-1444 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-2068 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1729 (((-3 |#4| "failed") $) 84)) (-1403 (((-650 $) |#4| $) 130)) (-3840 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2885 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1486 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-1507 (((-650 |#4|) $) 108)) (-1810 (((-112) |#4| $) 100) (((-112) $) 96)) (-1831 ((|#4| |#4| $) 91)) (-2458 (((-112) $ $) 111)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) 101) (((-112) $) 97)) (-3464 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2329 (((-3 $ "failed") $ |#4|) 79)) (-4102 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-2697 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) 39)) (-3366 (((-112) $) 42)) (-3006 (($) 41)) (-3221 (((-777) $) 107)) (-3490 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3916 (($ $) 40)) (-1417 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 61)) (-3408 (($ $ |#3|) 29)) (-4164 (($ $ |#3|) 31)) (-4148 (($ $) 89)) (-1842 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3580 (((-777) $) 77 (|has| |#3| (-373)))) (-3866 (((-112) $ $) 9)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-3811 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-2964 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) 82)) (-2626 (((-112) |#4| $) 136)) (-2048 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
(((-1080 |#1| |#2| |#3| |#4|) (-141) (-458) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1080))
-((-3052 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-2974 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-1985 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3052 (*1 *2 *1) (-12 (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3333 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3235 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 (-112) (-650 *1))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2890 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2890 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-2395 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-1796 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 *3 (-650 *1))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3769 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2222 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2307 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2307 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *7)))) (-2307 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)))) (-2307 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)))) (-4194 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-4194 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)))) (-4194 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *7)))) (-4194 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)))) (-2731 (*1 *1 *2 *1) (-12 (-4 *1 (-1080 *3 *4 *5 *2)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-2731 (*1 *1 *2 *1) (-12 (-5 *2 (-650 *6)) (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)))) (-1558 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-1558 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)))) (-1558 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *7)))) (-1558 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)))) (-2411 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *5 *6 *7 *8)))))
-(-13 (-1219 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -3052 ((-112) |t#4| $)) (-15 -2974 ((-112) |t#4| $)) (-15 -1985 ((-112) |t#4| $)) (-15 -3052 ((-112) $)) (-15 -3333 ((-112) |t#4| $)) (-15 -3235 ((-3 (-112) (-650 $)) |t#4| $)) (-15 -2890 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |t#4| $)) (-15 -2890 ((-112) |t#4| $)) (-15 -2395 ((-650 $) |t#4| $)) (-15 -1796 ((-3 |t#4| (-650 $)) |t#4| |t#4| $)) (-15 -3769 ((-650 (-2 (|:| |val| |t#4|) (|:| -3593 $))) |t#4| |t#4| $)) (-15 -2222 ((-650 (-2 (|:| |val| |t#4|) (|:| -3593 $))) |t#4| $)) (-15 -2307 ((-650 $) |t#4| $)) (-15 -2307 ((-650 $) (-650 |t#4|) $)) (-15 -2307 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -2307 ((-650 $) |t#4| (-650 $))) (-15 -4194 ((-650 $) |t#4| $)) (-15 -4194 ((-650 $) |t#4| (-650 $))) (-15 -4194 ((-650 $) (-650 |t#4|) $)) (-15 -4194 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -2731 ($ |t#4| $)) (-15 -2731 ($ (-650 |t#4|) $)) (-15 -1558 ((-650 $) |t#4| $)) (-15 -1558 ((-650 $) |t#4| (-650 $))) (-15 -1558 ((-650 $) (-650 |t#4|) $)) (-15 -1558 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -2411 ((-650 $) (-650 |t#4|) (-112)))))
-(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1219 |#1| |#2| |#3| |#4|) . T) ((-1226) . T))
-((-3299 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|) 86)) (-1621 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 127)) (-3345 (((-650 |#5|) |#4| |#5|) 74)) (-3792 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-4026 (((-1281)) 36)) (-3338 (((-1281)) 25)) (-2541 (((-1281) (-1168) (-1168) (-1168)) 32)) (-3396 (((-1281) (-1168) (-1168) (-1168)) 21)) (-3927 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|) 107)) (-2348 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112)) 118) (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-2978 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 113)))
-(((-1081 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3396 ((-1281) (-1168) (-1168) (-1168))) (-15 -3338 ((-1281))) (-15 -2541 ((-1281) (-1168) (-1168) (-1168))) (-15 -4026 ((-1281))) (-15 -3927 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2348 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2348 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -2978 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -1621 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -3792 ((-112) |#4| |#5|)) (-15 -3792 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3345 ((-650 |#5|) |#4| |#5|)) (-15 -3299 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1081))
-((-3299 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3345 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3792 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3792 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1621 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2978 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2348 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856)) (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9)))) (-5 *1 (-1081 *6 *7 *4 *8 *9)))) (-2348 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-3927 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-4026 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281)) (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-2541 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281)) (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-3338 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281)) (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-3396 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281)) (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3396 ((-1281) (-1168) (-1168) (-1168))) (-15 -3338 ((-1281))) (-15 -2541 ((-1281) (-1168) (-1168) (-1168))) (-15 -4026 ((-1281))) (-15 -3927 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2348 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2348 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -2978 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -1621 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -3792 ((-112) |#4| |#5|)) (-15 -3792 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3345 ((-650 |#5|) |#4| |#5|)) (-15 -3299 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)))
-((-2416 (((-112) $ $) NIL)) (-3814 (((-1225) $) 13)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1425 (((-1144) $) 10)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1082) (-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -3814 ((-1225) $))))) (T -1082))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1082)))) (-3814 (*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-1082)))))
-(-13 (-1092) (-10 -8 (-15 -1425 ((-1144) $)) (-15 -3814 ((-1225) $))))
-((-4300 (((-112) $ $) 7)))
-(((-1083) (-13 (-1226) (-10 -8 (-15 -4300 ((-112) $ $))))) (T -1083))
-((-4300 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1083)))))
-(-13 (-1226) (-10 -8 (-15 -4300 ((-112) $ $))))
-((-2416 (((-112) $ $) NIL)) (-3503 (((-1186) $) 8)) (-1903 (((-1168) $) 17)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 14)))
-(((-1084 |#1|) (-13 (-1109) (-10 -8 (-15 -3503 ((-1186) $)))) (-1186)) (T -1084))
-((-3503 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1084 *3)) (-14 *3 *2))))
-(-13 (-1109) (-10 -8 (-15 -3503 ((-1186) $))))
-((-2416 (((-112) $ $) NIL)) (-4259 (($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|))) 34)) (-2147 (($ |#3| |#3|) 23) (($ |#3| |#3| (-650 (-1186))) 21)) (-2121 ((|#3| $) 13)) (-4378 (((-3 (-298 |#3|) "failed") $) 60)) (-3080 (((-298 |#3|) $) NIL)) (-2716 (((-650 (-1186)) $) 16)) (-1752 (((-899 |#1|) $) 11)) (-2112 ((|#3| $) 12)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1876 ((|#3| $ |#3|) 28) ((|#3| $ |#3| (-928)) 41)) (-3735 (((-868) $) 89) (($ (-298 |#3|)) 22)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 38)))
-(((-1085 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-1047 (-298 |#3|)) (-10 -8 (-15 -2147 ($ |#3| |#3|)) (-15 -2147 ($ |#3| |#3| (-650 (-1186)))) (-15 -4259 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1752 ((-899 |#1|) $)) (-15 -2112 (|#3| $)) (-15 -2121 (|#3| $)) (-15 -1876 (|#3| $ |#3| (-928))) (-15 -2716 ((-650 (-1186)) $)))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1085))
-((-2147 (*1 *1 *2 *2) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1085 *3 *4 *2)) (-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))) (-2147 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1085 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))) (-4259 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1 (-112) (-650 *6))) (-4 *6 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1085 *4 *5 *6)))) (-1752 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 *2))) (-5 *2 (-899 *3)) (-5 *1 (-1085 *3 *4 *5)) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 *2))))) (-2112 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1085 *3 *4 *2)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))))) (-2121 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1085 *3 *4 *2)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))))) (-1876 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1085 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))) (-2716 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-5 *2 (-650 (-1186))) (-5 *1 (-1085 *3 *4 *5)) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))))
-(-13 (-1109) (-290 |#3| |#3|) (-1047 (-298 |#3|)) (-10 -8 (-15 -2147 ($ |#3| |#3|)) (-15 -2147 ($ |#3| |#3| (-650 (-1186)))) (-15 -4259 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1752 ((-899 |#1|) $)) (-15 -2112 (|#3| $)) (-15 -2121 (|#3| $)) (-15 -1876 (|#3| $ |#3| (-928))) (-15 -2716 ((-650 (-1186)) $))))
-((-2416 (((-112) $ $) NIL)) (-4226 (($ (-650 (-1085 |#1| |#2| |#3|))) 14)) (-1581 (((-650 (-1085 |#1| |#2| |#3|)) $) 21)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1876 ((|#3| $ |#3|) 24) ((|#3| $ |#3| (-928)) 27)) (-3735 (((-868) $) 17)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 20)))
-(((-1086 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-10 -8 (-15 -4226 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1581 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1876 (|#3| $ |#3| (-928))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1086))
-((-4226 (*1 *1 *2) (-12 (-5 *2 (-650 (-1085 *3 *4 *5))) (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1086 *3 *4 *5)))) (-1581 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-5 *2 (-650 (-1085 *3 *4 *5))) (-5 *1 (-1086 *3 *4 *5)) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))) (-1876 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1086 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))))
-(-13 (-1109) (-290 |#3| |#3|) (-10 -8 (-15 -4226 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1581 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1876 (|#3| $ |#3| (-928)))))
-((-2633 (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 88) (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 92) (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 90)))
-(((-1087 |#1| |#2|) (-10 -7 (-15 -2633 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -2633 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2633 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)))) (-13 (-311) (-148)) (-650 (-1186))) (T -1087))
-((-2633 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))) (-2633 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *4)) (|:| -1807 (-650 (-959 *4)))))) (-5 *1 (-1087 *4 *5)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))))) (-2633 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))))
-(-10 -7 (-15 -2633 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -2633 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2633 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))))
-((-3738 (((-424 |#3|) |#3|) 18)))
-(((-1088 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-424 |#3|) |#3|))) (-1252 (-413 (-570))) (-13 (-368) (-148) (-730 (-413 (-570)) |#1|)) (-1252 |#2|)) (T -1088))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-13 (-368) (-148) (-730 (-413 (-570)) *4))) (-5 *2 (-424 *3)) (-5 *1 (-1088 *4 *5 *3)) (-4 *3 (-1252 *5)))))
-(-10 -7 (-15 -3738 ((-424 |#3|) |#3|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 139)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-368)))) (-3171 (($ $) NIL (|has| |#1| (-368)))) (-2720 (((-112) $) NIL (|has| |#1| (-368)))) (-2945 (((-695 |#1|) (-1276 $)) NIL) (((-695 |#1|)) 123)) (-3071 ((|#1| $) 128)) (-4029 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3403 (((-777)) 46 (|has| |#1| (-373)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2049 (($ (-1276 |#1|) (-1276 $)) NIL) (($ (-1276 |#1|)) 49)) (-3131 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-2710 (((-695 |#1|) $ (-1276 $)) NIL) (((-695 |#1|) $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 115) (((-695 |#1|) (-695 $)) 110)) (-3529 (($ |#2|) 67) (((-3 $ "failed") (-413 |#2|)) NIL (|has| |#1| (-368)))) (-3413 (((-3 $ "failed") $) NIL)) (-3934 (((-928)) 84)) (-3336 (($) 50 (|has| |#1| (-373)))) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-2493 (($) NIL (|has| |#1| (-354)))) (-2036 (((-112) $) NIL (|has| |#1| (-354)))) (-2774 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-3157 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-2081 (((-112) $) NIL)) (-2610 ((|#1| $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1638 ((|#2| $) 91 (|has| |#1| (-368)))) (-2367 (((-928) $) 148 (|has| |#1| (-373)))) (-3516 ((|#2| $) 64)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-2314 (($) NIL (|has| |#1| (-354)) CONST)) (-2159 (($ (-928)) 138 (|has| |#1| (-373)))) (-3479 (((-1129) $) NIL)) (-2339 (($) 130)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2460 (((-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))) NIL (|has| |#1| (-354)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-2998 ((|#1| (-1276 $)) NIL) ((|#1|) 119)) (-2845 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3447 (($ $) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1 |#1| |#1|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-4399 (((-695 |#1|) (-1276 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2886 ((|#2|) 80)) (-2163 (($) NIL (|has| |#1| (-354)))) (-1807 (((-1276 |#1|) $ (-1276 $)) 96) (((-695 |#1|) (-1276 $) (-1276 $)) NIL) (((-1276 |#1|) $) 77) (((-695 |#1|) (-1276 $)) 92)) (-1416 (((-1276 |#1|) $) NIL) (($ (-1276 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (|has| |#1| (-354)))) (-3735 (((-868) $) 63) (($ (-570)) 59) (($ |#1|) 60) (($ $) NIL (|has| |#1| (-368))) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-1918 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3674 ((|#2| $) 89)) (-2744 (((-777)) 82 T CONST)) (-1859 (((-112) $ $) NIL)) (-2331 (((-1276 $)) 88)) (-1681 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1812 (($) 32 T CONST)) (-1823 (($) 19 T CONST)) (-2791 (($ $) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1 |#1| |#1|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2872 (((-112) $ $) 69)) (-2975 (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) 73) (($ $ $) NIL)) (-2954 (($ $ $) 71)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 57) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) 54) (($ (-413 (-570)) $) NIL (|has| |#1| (-368))) (($ $ (-413 (-570))) NIL (|has| |#1| (-368)))))
-(((-1089 |#1| |#2| |#3|) (-730 |#1| |#2|) (-174) (-1252 |#1|) |#2|) (T -1089))
+((-2561 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3045 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-2626 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-2561 (*1 *2 *1) (-12 (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3412 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3840 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 (-112) (-650 *1))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3618 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3618 (*1 *2 *3 *1) (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-1403 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-1444 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 *3 (-650 *1))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2068 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3252 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2885 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2885 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *7)))) (-2885 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)))) (-2885 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)))) (-3811 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3811 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)))) (-3811 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *7)))) (-3811 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)))) (-1486 (*1 *1 *2 *1) (-12 (-4 *1 (-1080 *3 *4 *5 *2)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1486 (*1 *1 *2 *1) (-12 (-5 *2 (-650 *6)) (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)))) (-4102 (*1 *2 *3 *1) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)))) (-4102 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)))) (-4102 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *7)))) (-4102 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)))) (-1556 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1080 *5 *6 *7 *8)))))
+(-13 (-1220 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -2561 ((-112) |t#4| $)) (-15 -3045 ((-112) |t#4| $)) (-15 -2626 ((-112) |t#4| $)) (-15 -2561 ((-112) $)) (-15 -3412 ((-112) |t#4| $)) (-15 -3840 ((-3 (-112) (-650 $)) |t#4| $)) (-15 -3618 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |t#4| $)) (-15 -3618 ((-112) |t#4| $)) (-15 -1403 ((-650 $) |t#4| $)) (-15 -1444 ((-3 |t#4| (-650 $)) |t#4| |t#4| $)) (-15 -2068 ((-650 (-2 (|:| |val| |t#4|) (|:| -3593 $))) |t#4| |t#4| $)) (-15 -3252 ((-650 (-2 (|:| |val| |t#4|) (|:| -3593 $))) |t#4| $)) (-15 -2885 ((-650 $) |t#4| $)) (-15 -2885 ((-650 $) (-650 |t#4|) $)) (-15 -2885 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -2885 ((-650 $) |t#4| (-650 $))) (-15 -3811 ((-650 $) |t#4| $)) (-15 -3811 ((-650 $) |t#4| (-650 $))) (-15 -3811 ((-650 $) (-650 |t#4|) $)) (-15 -3811 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -1486 ($ |t#4| $)) (-15 -1486 ($ (-650 |t#4|) $)) (-15 -4102 ((-650 $) |t#4| $)) (-15 -4102 ((-650 $) |t#4| (-650 $))) (-15 -4102 ((-650 $) (-650 |t#4|) $)) (-15 -4102 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -1556 ((-650 $) (-650 |t#4|) (-112)))))
+(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
+((-3081 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|) 86)) (-3462 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 127)) (-3538 (((-650 |#5|) |#4| |#5|) 74)) (-2241 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-2722 (((-1282)) 36)) (-3451 (((-1282)) 25)) (-3352 (((-1282) (-1168) (-1168) (-1168)) 32)) (-2797 (((-1282) (-1168) (-1168) (-1168)) 21)) (-4233 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|) 107)) (-2161 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112)) 118) (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-3074 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 113)))
+(((-1081 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2797 ((-1282) (-1168) (-1168) (-1168))) (-15 -3451 ((-1282))) (-15 -3352 ((-1282) (-1168) (-1168) (-1168))) (-15 -2722 ((-1282))) (-15 -4233 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2161 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2161 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -3074 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -3462 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2241 ((-112) |#4| |#5|)) (-15 -2241 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3538 ((-650 |#5|) |#4| |#5|)) (-15 -3081 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1081))
+((-3081 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3538 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2241 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2241 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3462 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3074 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2161 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856)) (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9)))) (-5 *1 (-1081 *6 *7 *4 *8 *9)))) (-2161 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1081 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-4233 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2722 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282)) (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-3352 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282)) (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-3451 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282)) (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-2797 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282)) (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2797 ((-1282) (-1168) (-1168) (-1168))) (-15 -3451 ((-1282))) (-15 -3352 ((-1282) (-1168) (-1168) (-1168))) (-15 -2722 ((-1282))) (-15 -4233 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2161 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2161 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -3074 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -3462 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2241 ((-112) |#4| |#5|)) (-15 -2241 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3538 ((-650 |#5|) |#4| |#5|)) (-15 -3081 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)))
+((-2417 (((-112) $ $) NIL)) (-3816 (((-1226) $) 13)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1426 (((-1144) $) 10)) (-3735 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1082) (-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -3816 ((-1226) $))))) (T -1082))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1082)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-1082)))))
+(-13 (-1092) (-10 -8 (-15 -1426 ((-1144) $)) (-15 -3816 ((-1226) $))))
+((-4302 (((-112) $ $) 7)))
+(((-1083) (-13 (-1227) (-10 -8 (-15 -4302 ((-112) $ $))))) (T -1083))
+((-4302 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1083)))))
+(-13 (-1227) (-10 -8 (-15 -4302 ((-112) $ $))))
+((-2417 (((-112) $ $) NIL)) (-3504 (((-1186) $) 8)) (-4268 (((-1168) $) 17)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 14)))
+(((-1084 |#1|) (-13 (-1109) (-10 -8 (-15 -3504 ((-1186) $)))) (-1186)) (T -1084))
+((-3504 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1084 *3)) (-14 *3 *2))))
+(-13 (-1109) (-10 -8 (-15 -3504 ((-1186) $))))
+((-2417 (((-112) $ $) NIL)) (-4261 (($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|))) 34)) (-2148 (($ |#3| |#3|) 23) (($ |#3| |#3| (-650 (-1186))) 21)) (-2123 ((|#3| $) 13)) (-4379 (((-3 (-298 |#3|) "failed") $) 60)) (-3080 (((-298 |#3|) $) NIL)) (-1323 (((-650 (-1186)) $) 16)) (-1752 (((-899 |#1|) $) 11)) (-2112 ((|#3| $) 12)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1877 ((|#3| $ |#3|) 28) ((|#3| $ |#3| (-928)) 41)) (-3735 (((-868) $) 89) (($ (-298 |#3|)) 22)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 38)))
+(((-1085 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-1047 (-298 |#3|)) (-10 -8 (-15 -2148 ($ |#3| |#3|)) (-15 -2148 ($ |#3| |#3| (-650 (-1186)))) (-15 -4261 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1752 ((-899 |#1|) $)) (-15 -2112 (|#3| $)) (-15 -2123 (|#3| $)) (-15 -1877 (|#3| $ |#3| (-928))) (-15 -1323 ((-650 (-1186)) $)))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1085))
+((-2148 (*1 *1 *2 *2) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1085 *3 *4 *2)) (-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))) (-2148 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1085 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))) (-4261 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1 (-112) (-650 *6))) (-4 *6 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1085 *4 *5 *6)))) (-1752 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 *2))) (-5 *2 (-899 *3)) (-5 *1 (-1085 *3 *4 *5)) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 *2))))) (-2112 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1085 *3 *4 *2)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))))) (-2123 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1085 *3 *4 *2)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))))) (-1877 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1085 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))) (-1323 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-5 *2 (-650 (-1186))) (-5 *1 (-1085 *3 *4 *5)) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))))
+(-13 (-1109) (-290 |#3| |#3|) (-1047 (-298 |#3|)) (-10 -8 (-15 -2148 ($ |#3| |#3|)) (-15 -2148 ($ |#3| |#3| (-650 (-1186)))) (-15 -4261 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1752 ((-899 |#1|) $)) (-15 -2112 (|#3| $)) (-15 -2123 (|#3| $)) (-15 -1877 (|#3| $ |#3| (-928))) (-15 -1323 ((-650 (-1186)) $))))
+((-2417 (((-112) $ $) NIL)) (-4227 (($ (-650 (-1085 |#1| |#2| |#3|))) 14)) (-1582 (((-650 (-1085 |#1| |#2| |#3|)) $) 21)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1877 ((|#3| $ |#3|) 24) ((|#3| $ |#3| (-928)) 27)) (-3735 (((-868) $) 17)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 20)))
+(((-1086 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-10 -8 (-15 -4227 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1582 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1877 (|#3| $ |#3| (-928))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1086))
+((-4227 (*1 *1 *2) (-12 (-5 *2 (-650 (-1085 *3 *4 *5))) (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))) (-5 *1 (-1086 *3 *4 *5)))) (-1582 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3)))) (-5 *2 (-650 (-1085 *3 *4 *5))) (-5 *1 (-1086 *3 *4 *5)) (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))) (-1877 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-1109)) (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4)))) (-5 *1 (-1086 *4 *5 *2)) (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))))
+(-13 (-1109) (-290 |#3| |#3|) (-10 -8 (-15 -4227 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1582 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1877 (|#3| $ |#3| (-928)))))
+((-2963 (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 88) (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 92) (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 90)))
+(((-1087 |#1| |#2|) (-10 -7 (-15 -2963 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -2963 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2963 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)))) (-13 (-311) (-148)) (-650 (-1186))) (T -1087))
+((-2963 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))) (-2963 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *4)) (|:| -1533 (-650 (-959 *4)))))) (-5 *1 (-1087 *4 *5)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))))) (-2963 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))))
+(-10 -7 (-15 -2963 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -2963 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2963 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))))
+((-3739 (((-424 |#3|) |#3|) 18)))
+(((-1088 |#1| |#2| |#3|) (-10 -7 (-15 -3739 ((-424 |#3|) |#3|))) (-1253 (-413 (-570))) (-13 (-368) (-148) (-730 (-413 (-570)) |#1|)) (-1253 |#2|)) (T -1088))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-13 (-368) (-148) (-730 (-413 (-570)) *4))) (-5 *2 (-424 *3)) (-5 *1 (-1088 *4 *5 *3)) (-4 *3 (-1253 *5)))))
+(-10 -7 (-15 -3739 ((-424 |#3|) |#3|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 139)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-368)))) (-1345 (($ $) NIL (|has| |#1| (-368)))) (-1372 (((-112) $) NIL (|has| |#1| (-368)))) (-4084 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) 123)) (-3071 ((|#1| $) 128)) (-2756 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3403 (((-777)) 46 (|has| |#1| (-373)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2125 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) 49)) (-2172 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-2443 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 115) (((-695 |#1|) (-695 $)) 110)) (-3529 (($ |#2|) 67) (((-3 $ "failed") (-413 |#2|)) NIL (|has| |#1| (-368)))) (-2937 (((-3 $ "failed") $) NIL)) (-3933 (((-928)) 84)) (-3336 (($) 50 (|has| |#1| (-373)))) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4181 (($) NIL (|has| |#1| (-354)))) (-2006 (((-112) $) NIL (|has| |#1| (-354)))) (-1901 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-4331 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-4340 (((-112) $) NIL)) (-2771 ((|#1| $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2399 ((|#2| $) 91 (|has| |#1| (-368)))) (-2332 (((-928) $) 148 (|has| |#1| (-373)))) (-3514 ((|#2| $) 64)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-2315 (($) NIL (|has| |#1| (-354)) CONST)) (-2160 (($ (-928)) 138 (|has| |#1| (-373)))) (-3479 (((-1129) $) NIL)) (-2340 (($) 130)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3857 (((-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))) NIL (|has| |#1| (-354)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3290 ((|#1| (-1277 $)) NIL) ((|#1|) 119)) (-3156 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3447 (($ $) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1 |#1| |#1|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2100 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-3597 ((|#2|) 80)) (-3929 (($) NIL (|has| |#1| (-354)))) (-1533 (((-1277 |#1|) $ (-1277 $)) 96) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) 77) (((-695 |#1|) (-1277 $)) 92)) (-1417 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-354)))) (-3735 (((-868) $) 63) (($ (-570)) 59) (($ |#1|) 60) (($ $) NIL (|has| |#1| (-368))) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3127 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3641 ((|#2| $) 89)) (-1609 (((-777)) 82 T CONST)) (-3866 (((-112) $ $) NIL)) (-2003 (((-1277 $)) 88)) (-2795 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1814 (($) 32 T CONST)) (-1824 (($) 19 T CONST)) (-2791 (($ $) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))))) (($ $ (-1 |#1| |#1|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2872 (((-112) $ $) 69)) (-2975 (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) 73) (($ $ $) NIL)) (-2953 (($ $ $) 71)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 57) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) 54) (($ (-413 (-570)) $) NIL (|has| |#1| (-368))) (($ $ (-413 (-570))) NIL (|has| |#1| (-368)))))
+(((-1089 |#1| |#2| |#3|) (-730 |#1| |#2|) (-174) (-1253 |#1|) |#2|) (T -1089))
NIL
(-730 |#1| |#2|)
-((-3738 (((-424 |#3|) |#3|) 19)))
-(((-1090 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-424 |#3|) |#3|))) (-1252 (-413 (-959 (-570)))) (-13 (-368) (-148) (-730 (-413 (-959 (-570))) |#1|)) (-1252 |#2|)) (T -1090))
-((-3738 (*1 *2 *3) (-12 (-4 *4 (-1252 (-413 (-959 (-570))))) (-4 *5 (-13 (-368) (-148) (-730 (-413 (-959 (-570))) *4))) (-5 *2 (-424 *3)) (-5 *1 (-1090 *4 *5 *3)) (-4 *3 (-1252 *5)))))
-(-10 -7 (-15 -3738 ((-424 |#3|) |#3|)))
-((-2416 (((-112) $ $) NIL)) (-3310 (($ $ $) 16)) (-3787 (($ $ $) 17)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1958 (($) 6)) (-1416 (((-1186) $) 20)) (-3735 (((-868) $) 13)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 15)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 9)))
-(((-1091) (-13 (-856) (-620 (-1186)) (-10 -8 (-15 -1958 ($))))) (T -1091))
-((-1958 (*1 *1) (-5 *1 (-1091))))
-(-13 (-856) (-620 (-1186)) (-10 -8 (-15 -1958 ($))))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-3739 (((-424 |#3|) |#3|) 19)))
+(((-1090 |#1| |#2| |#3|) (-10 -7 (-15 -3739 ((-424 |#3|) |#3|))) (-1253 (-413 (-959 (-570)))) (-13 (-368) (-148) (-730 (-413 (-959 (-570))) |#1|)) (-1253 |#2|)) (T -1090))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 (-959 (-570))))) (-4 *5 (-13 (-368) (-148) (-730 (-413 (-959 (-570))) *4))) (-5 *2 (-424 *3)) (-5 *1 (-1090 *4 *5 *3)) (-4 *3 (-1253 *5)))))
+(-10 -7 (-15 -3739 ((-424 |#3|) |#3|)))
+((-2417 (((-112) $ $) NIL)) (-3311 (($ $ $) 16)) (-2222 (($ $ $) 17)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3599 (($) 6)) (-1417 (((-1186) $) 20)) (-3735 (((-868) $) 13)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 15)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 9)))
+(((-1091) (-13 (-856) (-620 (-1186)) (-10 -8 (-15 -3599 ($))))) (T -1091))
+((-3599 (*1 *1) (-5 *1 (-1091))))
+(-13 (-856) (-620 (-1186)) (-10 -8 (-15 -3599 ($))))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-1092) (-141)) (T -1092))
NIL
(-13 (-93))
(((-93) . T) ((-102) . T) ((-622 #0=(-1191)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T))
-((-2861 ((|#1| |#1| (-1 (-570) |#1| |#1|)) 42) ((|#1| |#1| (-1 (-112) |#1|)) 33)) (-2457 (((-1281)) 21)) (-4306 (((-650 |#1|)) 13)))
-(((-1093 |#1|) (-10 -7 (-15 -2457 ((-1281))) (-15 -4306 ((-650 |#1|))) (-15 -2861 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2861 (|#1| |#1| (-1 (-570) |#1| |#1|)))) (-133)) (T -1093))
-((-2861 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-570) *2 *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-2861 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-4306 (*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))) (-2457 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
-(-10 -7 (-15 -2457 ((-1281))) (-15 -4306 ((-650 |#1|))) (-15 -2861 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2861 (|#1| |#1| (-1 (-570) |#1| |#1|))))
-((-4097 (($ (-109) $) 20)) (-3831 (((-697 (-109)) (-512) $) 19)) (-3743 (($) 7)) (-3468 (($) 21)) (-2123 (($) 22)) (-3554 (((-650 (-177)) $) 10)) (-3735 (((-868) $) 25)))
-(((-1094) (-13 (-619 (-868)) (-10 -8 (-15 -3743 ($)) (-15 -3554 ((-650 (-177)) $)) (-15 -3831 ((-697 (-109)) (-512) $)) (-15 -4097 ($ (-109) $)) (-15 -3468 ($)) (-15 -2123 ($))))) (T -1094))
-((-3743 (*1 *1) (-5 *1 (-1094))) (-3554 (*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))) (-3831 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-1094)))) (-4097 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))) (-3468 (*1 *1) (-5 *1 (-1094))) (-2123 (*1 *1) (-5 *1 (-1094))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3743 ($)) (-15 -3554 ((-650 (-177)) $)) (-15 -3831 ((-697 (-109)) (-512) $)) (-15 -4097 ($ (-109) $)) (-15 -3468 ($)) (-15 -2123 ($))))
-((-1759 (((-1276 (-695 |#1|)) (-650 (-695 |#1|))) 47) (((-1276 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|))) 75) (((-1276 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|)))) 92)) (-1807 (((-1276 |#1|) (-695 |#1|) (-650 (-695 |#1|))) 41)))
-(((-1095 |#1|) (-10 -7 (-15 -1759 ((-1276 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -1759 ((-1276 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -1759 ((-1276 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -1807 ((-1276 |#1|) (-695 |#1|) (-650 (-695 |#1|))))) (-368)) (T -1095))
-((-1807 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-695 *5))) (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-1276 *5)) (-5 *1 (-1095 *5)))) (-1759 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-5 *2 (-1276 (-695 *4))) (-5 *1 (-1095 *4)))) (-1759 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368)) (-5 *2 (-1276 (-695 (-959 *5)))) (-5 *1 (-1095 *5)) (-5 *4 (-695 (-959 *5))))) (-1759 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368)) (-5 *2 (-1276 (-695 (-413 (-959 *5))))) (-5 *1 (-1095 *5)) (-5 *4 (-695 (-413 (-959 *5)))))))
-(-10 -7 (-15 -1759 ((-1276 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -1759 ((-1276 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -1759 ((-1276 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -1807 ((-1276 |#1|) (-695 |#1|) (-650 (-695 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-4307 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-3454 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1716 (((-650 (-1097 (-1186))) $) NIL)) (-3703 (((-1182 $) $ (-1097 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1097 (-1186)))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2009 (($ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1097 (-1186)) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL) (((-3 (-1134 |#1| (-1186)) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1097 (-1186)) $) NIL) (((-1186) $) NIL) (((-1134 |#1| (-1186)) $) NIL)) (-1939 (($ $ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-537 (-1097 (-1186))) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1097 (-1186)) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1097 (-1186)) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-3157 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1704 (($ (-1182 |#1|) (-1097 (-1186))) NIL) (($ (-1182 $) (-1097 (-1186))) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1097 (-1186))) NIL)) (-4341 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL)) (-4414 (($ (-1 (-537 (-1097 (-1186))) (-537 (-1097 (-1186)))) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3581 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-3382 (((-3 (-1097 (-1186)) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-3082 (((-1097 (-1186)) $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-1795 (((-112) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-1097 (-1186))) (|:| -1907 (-777))) "failed") $) NIL)) (-1516 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1097 (-1186)) |#1|) NIL) (($ $ (-650 (-1097 (-1186))) (-650 |#1|)) NIL) (($ $ (-1097 (-1186)) $) NIL) (($ $ (-650 (-1097 (-1186))) (-650 $)) NIL) (($ $ (-1186) $) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 $)) NIL (|has| |#1| (-235))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-235)))) (-2998 (($ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1097 (-1186))) NIL) (($ $ (-650 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2146 (((-650 (-1186)) $) NIL)) (-1601 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-1097 (-1186)) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1097 (-1186)) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1097 (-1186)) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1097 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-1097 (-1186))) NIL) (($ $ (-650 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-3335 ((|#1| |#1| (-1 (-570) |#1| |#1|)) 42) ((|#1| |#1| (-1 (-112) |#1|)) 33)) (-2457 (((-1282)) 21)) (-4306 (((-650 |#1|)) 13)))
+(((-1093 |#1|) (-10 -7 (-15 -2457 ((-1282))) (-15 -4306 ((-650 |#1|))) (-15 -3335 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3335 (|#1| |#1| (-1 (-570) |#1| |#1|)))) (-133)) (T -1093))
+((-3335 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-570) *2 *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-3335 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-4306 (*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))) (-2457 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
+(-10 -7 (-15 -2457 ((-1282))) (-15 -4306 ((-650 |#1|))) (-15 -3335 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3335 (|#1| |#1| (-1 (-570) |#1| |#1|))))
+((-2277 (($ (-109) $) 20)) (-1409 (((-697 (-109)) (-512) $) 19)) (-3006 (($) 7)) (-2245 (($) 21)) (-1663 (($) 22)) (-1889 (((-650 (-177)) $) 10)) (-3735 (((-868) $) 25)))
+(((-1094) (-13 (-619 (-868)) (-10 -8 (-15 -3006 ($)) (-15 -1889 ((-650 (-177)) $)) (-15 -1409 ((-697 (-109)) (-512) $)) (-15 -2277 ($ (-109) $)) (-15 -2245 ($)) (-15 -1663 ($))))) (T -1094))
+((-3006 (*1 *1) (-5 *1 (-1094))) (-1889 (*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))) (-1409 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-1094)))) (-2277 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))) (-2245 (*1 *1) (-5 *1 (-1094))) (-1663 (*1 *1) (-5 *1 (-1094))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3006 ($)) (-15 -1889 ((-650 (-177)) $)) (-15 -1409 ((-697 (-109)) (-512) $)) (-15 -2277 ($ (-109) $)) (-15 -2245 ($)) (-15 -1663 ($))))
+((-2303 (((-1277 (-695 |#1|)) (-650 (-695 |#1|))) 47) (((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|))) 75) (((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|)))) 92)) (-1533 (((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|))) 41)))
+(((-1095 |#1|) (-10 -7 (-15 -2303 ((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -2303 ((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -2303 ((-1277 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -1533 ((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|))))) (-368)) (T -1095))
+((-1533 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-695 *5))) (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-1277 *5)) (-5 *1 (-1095 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-1095 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368)) (-5 *2 (-1277 (-695 (-959 *5)))) (-5 *1 (-1095 *5)) (-5 *4 (-695 (-959 *5))))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368)) (-5 *2 (-1277 (-695 (-413 (-959 *5))))) (-5 *1 (-1095 *5)) (-5 *4 (-695 (-413 (-959 *5)))))))
+(-10 -7 (-15 -2303 ((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -2303 ((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -2303 ((-1277 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -1533 ((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3643 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-2131 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1713 (((-650 (-1097 (-1186))) $) NIL)) (-3702 (((-1182 $) $ (-1097 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1097 (-1186)))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2867 (($ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1097 (-1186)) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL) (((-3 (-1134 |#1| (-1186)) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1097 (-1186)) $) NIL) (((-1186) $) NIL) (((-1134 |#1| (-1186)) $) NIL)) (-3383 (($ $ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-537 (-1097 (-1186))) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1097 (-1186)) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1097 (-1186)) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4331 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1705 (($ (-1182 |#1|) (-1097 (-1186))) NIL) (($ (-1182 $) (-1097 (-1186))) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1097 (-1186))) NIL)) (-2730 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL)) (-2206 (($ (-1 (-537 (-1097 (-1186))) (-537 (-1097 (-1186)))) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-4001 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-2645 (((-3 (-1097 (-1186)) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-3082 (((-1097 (-1186)) $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-1428 (((-112) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-1097 (-1186))) (|:| -3011 (-777))) "failed") $) NIL)) (-1517 (($ $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1097 (-1186)) |#1|) NIL) (($ $ (-650 (-1097 (-1186))) (-650 |#1|)) NIL) (($ $ (-1097 (-1186)) $) NIL) (($ $ (-650 (-1097 (-1186))) (-650 $)) NIL) (($ $ (-1186) $) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 $)) NIL (|has| |#1| (-235))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-235))) (($ $ (-650 (-1186)) (-650 |#1|)) NIL (|has| |#1| (-235)))) (-3290 (($ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-3447 (($ $ (-1097 (-1186))) NIL) (($ $ (-650 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3750 (((-650 (-1186)) $) NIL)) (-3221 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-1097 (-1186)) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1097 (-1186)) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1097 (-1186)) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1097 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-1097 (-1186))) NIL) (($ $ (-650 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL) (($ $) NIL (|has| |#1| (-235))) (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-1096 |#1|) (-13 (-256 |#1| (-1186) (-1097 (-1186)) (-537 (-1097 (-1186)))) (-1047 (-1134 |#1| (-1186)))) (-1058)) (T -1096))
NIL
(-13 (-256 |#1| (-1186) (-1097 (-1186)) (-537 (-1097 (-1186)))) (-1047 (-1134 |#1| (-1186))))
-((-2416 (((-112) $ $) NIL)) (-3454 (((-777) $) NIL)) (-2643 ((|#1| $) 10)) (-4378 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-3157 (((-777) $) 11)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-3581 (($ |#1| (-777)) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3447 (($ $) NIL) (($ $ (-777)) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 16)))
+((-2417 (((-112) $ $) NIL)) (-2131 (((-777) $) NIL)) (-2643 ((|#1| $) 10)) (-4379 (((-3 |#1| "failed") $) NIL)) (-3080 ((|#1| $) NIL)) (-4331 (((-777) $) 11)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-4001 (($ |#1| (-777)) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3447 (($ $) NIL) (($ $ (-777)) NIL)) (-3735 (((-868) $) NIL) (($ |#1|) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 16)))
(((-1097 |#1|) (-269 |#1|) (-856)) (T -1097))
NIL
(-269 |#1|)
-((-1351 (((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|)) 29 (|has| |#1| (-854))) (((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|)) 14)))
-(((-1098 |#1| |#2|) (-10 -7 (-15 -1351 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1351 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|)) (-1226) (-1226)) (T -1098))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-854)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-650 *6)) (-5 *1 (-1098 *5 *6)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1103 *6)) (-5 *1 (-1098 *5 *6)))))
-(-10 -7 (-15 -1351 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1351 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1469 (((-650 (-1144)) $) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1099) (-13 (-1092) (-10 -8 (-15 -1469 ((-650 (-1144)) $))))) (T -1099))
-((-1469 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
-(-13 (-1092) (-10 -8 (-15 -1469 ((-650 (-1144)) $))))
-((-1351 (((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)) 19)))
-(((-1100 |#1| |#2|) (-10 -7 (-15 -1351 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)))) (-1226) (-1226)) (T -1100))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1101 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1101 *6)) (-5 *1 (-1100 *5 *6)))))
-(-10 -7 (-15 -1351 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|))))
-((-2416 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-2643 (((-1186) $) NIL)) (-2782 (((-1103 |#1|) $) NIL)) (-1903 (((-1168) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3479 (((-1129) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3428 (($ (-1186) (-1103 |#1|)) NIL)) (-3735 (((-868) $) NIL (|has| (-1103 |#1|) (-1109)))) (-1859 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-2872 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))))
-(((-1101 |#1|) (-13 (-1226) (-10 -8 (-15 -3428 ($ (-1186) (-1103 |#1|))) (-15 -2643 ((-1186) $)) (-15 -2782 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|))) (-1226)) (T -1101))
-((-3428 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1226)) (-5 *1 (-1101 *4)))) (-2643 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1101 *3)) (-4 *3 (-1226)))) (-2782 (*1 *2 *1) (-12 (-5 *2 (-1103 *3)) (-5 *1 (-1101 *3)) (-4 *3 (-1226)))))
-(-13 (-1226) (-10 -8 (-15 -3428 ($ (-1186) (-1103 |#1|))) (-15 -2643 ((-1186) $)) (-15 -2782 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2782 (($ |#1| |#1|) 8)) (-2134 ((|#1| $) 11)) (-1496 ((|#1| $) 13)) (-1508 (((-570) $) 9)) (-2221 ((|#1| $) 10)) (-1818 ((|#1| $) 12)) (-1416 (($ |#1|) 6)) (-3576 (($ |#1| |#1|) 15)) (-2656 (($ $ (-570)) 14)))
-(((-1102 |#1|) (-141) (-1226)) (T -1102))
-((-3576 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))) (-2656 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1102 *3)) (-4 *3 (-1226)))) (-1496 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))) (-1818 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))) (-2134 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))) (-2221 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))) (-1508 (*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1226)) (-5 *2 (-570)))) (-2782 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))))
-(-13 (-624 |t#1|) (-10 -8 (-15 -3576 ($ |t#1| |t#1|)) (-15 -2656 ($ $ (-570))) (-15 -1496 (|t#1| $)) (-15 -1818 (|t#1| $)) (-15 -2134 (|t#1| $)) (-15 -2221 (|t#1| $)) (-15 -1508 ((-570) $)) (-15 -2782 ($ |t#1| |t#1|))))
+((-1352 (((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|)) 29 (|has| |#1| (-854))) (((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|)) 14)))
+(((-1098 |#1| |#2|) (-10 -7 (-15 -1352 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1352 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|)) (-1227) (-1227)) (T -1098))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-854)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-650 *6)) (-5 *1 (-1098 *5 *6)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1103 *6)) (-5 *1 (-1098 *5 *6)))))
+(-10 -7 (-15 -1352 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1352 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1331 (((-650 (-1144)) $) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1099) (-13 (-1092) (-10 -8 (-15 -1331 ((-650 (-1144)) $))))) (T -1099))
+((-1331 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
+(-13 (-1092) (-10 -8 (-15 -1331 ((-650 (-1144)) $))))
+((-1352 (((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)) 19)))
+(((-1100 |#1| |#2|) (-10 -7 (-15 -1352 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)))) (-1227) (-1227)) (T -1100))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1101 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1101 *6)) (-5 *1 (-1100 *5 *6)))))
+(-10 -7 (-15 -1352 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|))))
+((-2417 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-2643 (((-1186) $) NIL)) (-2782 (((-1103 |#1|) $) NIL)) (-4268 (((-1168) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3479 (((-1129) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3428 (($ (-1186) (-1103 |#1|)) NIL)) (-3735 (((-868) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3866 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-2872 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))))
+(((-1101 |#1|) (-13 (-1227) (-10 -8 (-15 -3428 ($ (-1186) (-1103 |#1|))) (-15 -2643 ((-1186) $)) (-15 -2782 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1101))
+((-3428 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1227)) (-5 *1 (-1101 *4)))) (-2643 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1101 *3)) (-4 *3 (-1227)))) (-2782 (*1 *2 *1) (-12 (-5 *2 (-1103 *3)) (-5 *1 (-1101 *3)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (-15 -3428 ($ (-1186) (-1103 |#1|))) (-15 -2643 ((-1186) $)) (-15 -2782 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2782 (($ |#1| |#1|) 8)) (-1794 ((|#1| $) 11)) (-1498 ((|#1| $) 13)) (-1509 (((-570) $) 9)) (-3234 ((|#1| $) 10)) (-1819 ((|#1| $) 12)) (-1417 (($ |#1|) 6)) (-3576 (($ |#1| |#1|) 15)) (-2657 (($ $ (-570)) 14)))
+(((-1102 |#1|) (-141) (-1227)) (T -1102))
+((-3576 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-2657 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1102 *3)) (-4 *3 (-1227)))) (-1498 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1819 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1794 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-3234 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1509 (*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))) (-2782 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(-13 (-624 |t#1|) (-10 -8 (-15 -3576 ($ |t#1| |t#1|)) (-15 -2657 ($ $ (-570))) (-15 -1498 (|t#1| $)) (-15 -1819 (|t#1| $)) (-15 -1794 (|t#1| $)) (-15 -3234 (|t#1| $)) (-15 -1509 ((-570) $)) (-15 -2782 ($ |t#1| |t#1|))))
(((-624 |#1|) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2782 (($ |#1| |#1|) 16)) (-1351 (((-650 |#1|) (-1 |#1| |#1|) $) 46 (|has| |#1| (-854)))) (-2134 ((|#1| $) 12)) (-1496 ((|#1| $) 11)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1508 (((-570) $) 15)) (-2221 ((|#1| $) 14)) (-1818 ((|#1| $) 13)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1387 (((-650 |#1|) $) 44 (|has| |#1| (-854))) (((-650 |#1|) (-650 $)) 43 (|has| |#1| (-854)))) (-1416 (($ |#1|) 29)) (-3735 (((-868) $) 28 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3576 (($ |#1| |#1|) 10)) (-2656 (($ $ (-570)) 17)) (-2872 (((-112) $ $) 22 (|has| |#1| (-1109)))))
-(((-1103 |#1|) (-13 (-1102 |#1|) (-10 -7 (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-650 |#1|))) |%noBranch|))) (-1226)) (T -1103))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2782 (($ |#1| |#1|) 16)) (-1352 (((-650 |#1|) (-1 |#1| |#1|) $) 46 (|has| |#1| (-854)))) (-1794 ((|#1| $) 12)) (-1498 ((|#1| $) 11)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1509 (((-570) $) 15)) (-3234 ((|#1| $) 14)) (-1819 ((|#1| $) 13)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1388 (((-650 |#1|) $) 44 (|has| |#1| (-854))) (((-650 |#1|) (-650 $)) 43 (|has| |#1| (-854)))) (-1417 (($ |#1|) 29)) (-3735 (((-868) $) 28 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3576 (($ |#1| |#1|) 10)) (-2657 (($ $ (-570)) 17)) (-2872 (((-112) $ $) 22 (|has| |#1| (-1109)))))
+(((-1103 |#1|) (-13 (-1102 |#1|) (-10 -7 (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-650 |#1|))) |%noBranch|))) (-1227)) (T -1103))
NIL
(-13 (-1102 |#1|) (-10 -7 (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-650 |#1|))) |%noBranch|)))
-((-2782 (($ |#1| |#1|) 8)) (-1351 ((|#2| (-1 |#1| |#1|) $) 16)) (-2134 ((|#1| $) 11)) (-1496 ((|#1| $) 13)) (-1508 (((-570) $) 9)) (-2221 ((|#1| $) 10)) (-1818 ((|#1| $) 12)) (-1387 ((|#2| (-650 $)) 18) ((|#2| $) 17)) (-1416 (($ |#1|) 6)) (-3576 (($ |#1| |#1|) 15)) (-2656 (($ $ (-570)) 14)))
+((-2782 (($ |#1| |#1|) 8)) (-1352 ((|#2| (-1 |#1| |#1|) $) 16)) (-1794 ((|#1| $) 11)) (-1498 ((|#1| $) 13)) (-1509 (((-570) $) 9)) (-3234 ((|#1| $) 10)) (-1819 ((|#1| $) 12)) (-1388 ((|#2| (-650 $)) 18) ((|#2| $) 17)) (-1417 (($ |#1|) 6)) (-3576 (($ |#1| |#1|) 15)) (-2657 (($ $ (-570)) 14)))
(((-1104 |#1| |#2|) (-141) (-854) (-1158 |t#1|)) (T -1104))
-((-1387 (*1 *2 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854)) (-4 *2 (-1158 *4)))) (-1387 (*1 *2 *1) (-12 (-4 *1 (-1104 *3 *2)) (-4 *3 (-854)) (-4 *2 (-1158 *3)))) (-1351 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854)) (-4 *2 (-1158 *4)))))
-(-13 (-1102 |t#1|) (-10 -8 (-15 -1387 (|t#2| (-650 $))) (-15 -1387 (|t#2| $)) (-15 -1351 (|t#2| (-1 |t#1| |t#1|) $))))
+((-1388 (*1 *2 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854)) (-4 *2 (-1158 *4)))) (-1388 (*1 *2 *1) (-12 (-4 *1 (-1104 *3 *2)) (-4 *3 (-854)) (-4 *2 (-1158 *3)))) (-1352 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854)) (-4 *2 (-1158 *4)))))
+(-13 (-1102 |t#1|) (-10 -8 (-15 -1388 (|t#2| (-650 $))) (-15 -1388 (|t#2| $)) (-15 -1352 (|t#2| (-1 |t#1| |t#1|) $))))
(((-624 |#1|) . T) ((-1102 |#1|) . T))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-1728 (((-1144) $) 12)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3517 (((-650 (-1144)) $) 10)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1105) (-13 (-1092) (-10 -8 (-15 -3517 ((-650 (-1144)) $)) (-15 -1728 ((-1144) $))))) (T -1105))
-((-3517 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1105)))) (-1728 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1105)))))
-(-13 (-1092) (-10 -8 (-15 -3517 ((-650 (-1144)) $)) (-15 -1728 ((-1144) $))))
-((-3923 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2704 (($ $ $) 10)) (-1966 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1106 |#1| |#2|) (-10 -8 (-15 -3923 (|#1| |#2| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -2704 (|#1| |#1| |#1|)) (-15 -1966 (|#1| |#1| |#2|)) (-15 -1966 (|#1| |#1| |#1|))) (-1107 |#2|) (-1109)) (T -1106))
-NIL
-(-10 -8 (-15 -3923 (|#1| |#2| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -2704 (|#1| |#1| |#1|)) (-15 -1966 (|#1| |#1| |#2|)) (-15 -1966 (|#1| |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-3923 (($ $ $) 19) (($ $ |#1|) 18) (($ |#1| $) 17)) (-2704 (($ $ $) 21)) (-1783 (((-112) $ $) 20)) (-3594 (((-112) $ (-777)) 36)) (-4240 (($) 26) (($ (-650 |#1|)) 25)) (-1424 (($ (-1 (-112) |#1|) $) 57 (|has| $ (-6 -4448)))) (-2450 (($) 37 T CONST)) (-3480 (($ $) 60 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 55 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 54 (|has| $ (-6 -4448)))) (-2836 (((-650 |#1|) $) 44 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) 29)) (-2742 (((-112) $ (-777)) 35)) (-2849 (((-650 |#1|) $) 45 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 47 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 40 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 39)) (-3452 (((-112) $ (-777)) 34)) (-1903 (((-1168) $) 10)) (-2307 (($ $ $) 24)) (-3479 (((-1129) $) 11)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 53)) (-1671 (((-112) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#1|) (-650 |#1|)) 51 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 50 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 49 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 (-298 |#1|))) 48 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 30)) (-3329 (((-112) $) 33)) (-3743 (($) 32)) (-1966 (($ $ $) 23) (($ $ |#1|) 22)) (-3486 (((-777) |#1| $) 46 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#1|) $) 43 (|has| $ (-6 -4448)))) (-3915 (($ $) 31)) (-1416 (((-542) $) 61 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 52)) (-3735 (((-868) $) 12)) (-3813 (($) 28) (($ (-650 |#1|)) 27)) (-1859 (((-112) $ $) 9)) (-4368 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 38 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-1729 (((-1144) $) 12)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3515 (((-650 (-1144)) $) 10)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1105) (-13 (-1092) (-10 -8 (-15 -3515 ((-650 (-1144)) $)) (-15 -1729 ((-1144) $))))) (T -1105))
+((-3515 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1105)))) (-1729 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1105)))))
+(-13 (-1092) (-10 -8 (-15 -3515 ((-650 (-1144)) $)) (-15 -1729 ((-1144) $))))
+((-3923 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2398 (($ $ $) 10)) (-2449 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1106 |#1| |#2|) (-10 -8 (-15 -3923 (|#1| |#2| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -2398 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1| |#2|)) (-15 -2449 (|#1| |#1| |#1|))) (-1107 |#2|) (-1109)) (T -1106))
+NIL
+(-10 -8 (-15 -3923 (|#1| |#2| |#1|)) (-15 -3923 (|#1| |#1| |#2|)) (-15 -3923 (|#1| |#1| |#1|)) (-15 -2398 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1| |#2|)) (-15 -2449 (|#1| |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-3923 (($ $ $) 19) (($ $ |#1|) 18) (($ |#1| $) 17)) (-2398 (($ $ $) 21)) (-4425 (((-112) $ $) 20)) (-4095 (((-112) $ (-777)) 36)) (-4241 (($) 26) (($ (-650 |#1|)) 25)) (-1425 (($ (-1 (-112) |#1|) $) 57 (|has| $ (-6 -4449)))) (-3761 (($) 37 T CONST)) (-3480 (($ $) 60 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 55 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 54 (|has| $ (-6 -4449)))) (-2835 (((-650 |#1|) $) 44 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) 29)) (-1586 (((-112) $ (-777)) 35)) (-3201 (((-650 |#1|) $) 45 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 47 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 40 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 39)) (-2113 (((-112) $ (-777)) 34)) (-4268 (((-1168) $) 10)) (-2885 (($ $ $) 24)) (-3479 (((-1129) $) 11)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 53)) (-2697 (((-112) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#1|) (-650 |#1|)) 51 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 50 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 49 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 (-298 |#1|))) 48 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 30)) (-3366 (((-112) $) 33)) (-3006 (($) 32)) (-2449 (($ $ $) 23) (($ $ |#1|) 22)) (-3490 (((-777) |#1| $) 46 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#1|) $) 43 (|has| $ (-6 -4449)))) (-3916 (($ $) 31)) (-1417 (((-542) $) 61 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 52)) (-3735 (((-868) $) 12)) (-3813 (($) 28) (($ (-650 |#1|)) 27)) (-3866 (((-112) $ $) 9)) (-2964 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 38 (|has| $ (-6 -4449)))))
(((-1107 |#1|) (-141) (-1109)) (T -1107))
-((-2548 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3813 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3813 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-4240 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4240 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-2307 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-1966 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-1966 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-2704 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-1783 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3923 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3923 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3923 (*1 *1 *2 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(-13 (-1109) (-152 |t#1|) (-10 -8 (-6 -4438) (-15 -2548 ((-112) $ $)) (-15 -3813 ($)) (-15 -3813 ($ (-650 |t#1|))) (-15 -4240 ($)) (-15 -4240 ($ (-650 |t#1|))) (-15 -2307 ($ $ $)) (-15 -1966 ($ $ $)) (-15 -1966 ($ $ |t#1|)) (-15 -2704 ($ $ $)) (-15 -1783 ((-112) $ $)) (-15 -3923 ($ $ $)) (-15 -3923 ($ $ |t#1|)) (-15 -3923 ($ |t#1| $))))
-(((-34) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) . T) ((-1226) . T))
-((-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 8)) (-1859 (((-112) $ $) 12)))
-(((-1108 |#1|) (-10 -8 (-15 -1859 ((-112) |#1| |#1|)) (-15 -1903 ((-1168) |#1|)) (-15 -3479 ((-1129) |#1|))) (-1109)) (T -1108))
-NIL
-(-10 -8 (-15 -1859 ((-112) |#1| |#1|)) (-15 -1903 ((-1168) |#1|)) (-15 -3479 ((-1129) |#1|)))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-3418 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3813 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3813 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-4241 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4241 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-2885 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-2449 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-2449 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-2398 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4425 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3923 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3923 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3923 (*1 *1 *2 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(-13 (-1109) (-152 |t#1|) (-10 -8 (-6 -4439) (-15 -3418 ((-112) $ $)) (-15 -3813 ($)) (-15 -3813 ($ (-650 |t#1|))) (-15 -4241 ($)) (-15 -4241 ($ (-650 |t#1|))) (-15 -2885 ($ $ $)) (-15 -2449 ($ $ $)) (-15 -2449 ($ $ |t#1|)) (-15 -2398 ($ $ $)) (-15 -4425 ((-112) $ $)) (-15 -3923 ($ $ $)) (-15 -3923 ($ $ |t#1|)) (-15 -3923 ($ |t#1| $))))
+(((-34) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) . T) ((-1227) . T))
+((-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 8)) (-3866 (((-112) $ $) 12)))
+(((-1108 |#1|) (-10 -8 (-15 -3866 ((-112) |#1| |#1|)) (-15 -4268 ((-1168) |#1|)) (-15 -3479 ((-1129) |#1|))) (-1109)) (T -1108))
+NIL
+(-10 -8 (-15 -3866 ((-112) |#1| |#1|)) (-15 -4268 ((-1168) |#1|)) (-15 -3479 ((-1129) |#1|)))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-1109) (-141)) (T -1109))
-((-3479 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1129)))) (-1903 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))) (-1859 (*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
-(-13 (-102) (-619 (-868)) (-10 -8 (-15 -3479 ((-1129) $)) (-15 -1903 ((-1168) $)) (-15 -1859 ((-112) $ $))))
+((-3479 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1129)))) (-4268 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))) (-3866 (*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
+(-13 (-102) (-619 (-868)) (-10 -8 (-15 -3479 ((-1129) $)) (-15 -4268 ((-1168) $)) (-15 -3866 ((-112) $ $))))
(((-102) . T) ((-619 (-868)) . T))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) 36)) (-3608 (($ (-650 (-928))) 72)) (-4422 (((-3 $ "failed") $ (-928) (-928)) 83)) (-3336 (($) 40)) (-3464 (((-112) (-928) $) 44)) (-2367 (((-928) $) 66)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) 39)) (-1364 (((-3 $ "failed") $ (-928)) 79)) (-3479 (((-1129) $) NIL)) (-1743 (((-1276 $)) 49)) (-2788 (((-650 (-928)) $) 27)) (-3048 (((-777) $ (-928) (-928)) 80)) (-3735 (((-868) $) 32)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 24)))
-(((-1110 |#1| |#2|) (-13 (-373) (-10 -8 (-15 -1364 ((-3 $ "failed") $ (-928))) (-15 -4422 ((-3 $ "failed") $ (-928) (-928))) (-15 -2788 ((-650 (-928)) $)) (-15 -3608 ($ (-650 (-928)))) (-15 -1743 ((-1276 $))) (-15 -3464 ((-112) (-928) $)) (-15 -3048 ((-777) $ (-928) (-928))))) (-928) (-928)) (T -1110))
-((-1364 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-4422 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2788 (*1 *2 *1) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3608 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-1743 (*1 *2) (-12 (-5 *2 (-1276 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3464 (*1 *2 *3 *1) (-12 (-5 *3 (-928)) (-5 *2 (-112)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3048 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-777)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-373) (-10 -8 (-15 -1364 ((-3 $ "failed") $ (-928))) (-15 -4422 ((-3 $ "failed") $ (-928) (-928))) (-15 -2788 ((-650 (-928)) $)) (-15 -3608 ($ (-650 (-928)))) (-15 -1743 ((-1276 $))) (-15 -3464 ((-112) (-928) $)) (-15 -3048 ((-777) $ (-928) (-928)))))
-((-2416 (((-112) $ $) NIL)) (-2304 (($) NIL (|has| |#1| (-373)))) (-3923 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 83)) (-2704 (($ $ $) 81)) (-1783 (((-112) $ $) 82)) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-4240 (($ (-650 |#1|)) NIL) (($) 13)) (-1591 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-2513 (($ |#1| $) 74 (|has| $ (-6 -4448))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4448)))) (-3336 (($) NIL (|has| |#1| (-373)))) (-2836 (((-650 |#1|) $) 19 (|has| $ (-6 -4448)))) (-2548 (((-112) $ $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-3310 ((|#1| $) 55 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 73 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3787 ((|#1| $) 53 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 34)) (-2367 (((-928) $) NIL (|has| |#1| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-2307 (($ $ $) 79)) (-3784 ((|#1| $) 25)) (-2278 (($ |#1| $) 69)) (-2159 (($ (-928)) NIL (|has| |#1| (-373)))) (-3479 (((-1129) $) NIL)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-1899 ((|#1| $) 27)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 21)) (-3743 (($) 11)) (-1966 (($ $ |#1|) NIL) (($ $ $) 80)) (-2271 (($) NIL) (($ (-650 |#1|)) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 16)) (-1416 (((-542) $) 50 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 62)) (-1593 (($ $) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL)) (-2316 (((-777) $) NIL)) (-3813 (($ (-650 |#1|)) NIL) (($) 12)) (-1859 (((-112) $ $) NIL)) (-2251 (($ (-650 |#1|)) NIL)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 52)) (-2426 (((-777) $) 10 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) 36)) (-4247 (($ (-650 (-928))) 72)) (-2272 (((-3 $ "failed") $ (-928) (-928)) 83)) (-3336 (($) 40)) (-2218 (((-112) (-928) $) 44)) (-2332 (((-928) $) 66)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) 39)) (-3288 (((-3 $ "failed") $ (-928)) 79)) (-3479 (((-1129) $) NIL)) (-2177 (((-1277 $)) 49)) (-3864 (((-650 (-928)) $) 27)) (-3049 (((-777) $ (-928) (-928)) 80)) (-3735 (((-868) $) 32)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 24)))
+(((-1110 |#1| |#2|) (-13 (-373) (-10 -8 (-15 -3288 ((-3 $ "failed") $ (-928))) (-15 -2272 ((-3 $ "failed") $ (-928) (-928))) (-15 -3864 ((-650 (-928)) $)) (-15 -4247 ($ (-650 (-928)))) (-15 -2177 ((-1277 $))) (-15 -2218 ((-112) (-928) $)) (-15 -3049 ((-777) $ (-928) (-928))))) (-928) (-928)) (T -1110))
+((-3288 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2272 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3864 (*1 *2 *1) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-4247 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-2177 (*1 *2) (-12 (-5 *2 (-1277 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-2218 (*1 *2 *3 *1) (-12 (-5 *3 (-928)) (-5 *2 (-112)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3049 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-777)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-373) (-10 -8 (-15 -3288 ((-3 $ "failed") $ (-928))) (-15 -2272 ((-3 $ "failed") $ (-928) (-928))) (-15 -3864 ((-650 (-928)) $)) (-15 -4247 ($ (-650 (-928)))) (-15 -2177 ((-1277 $))) (-15 -2218 ((-112) (-928) $)) (-15 -3049 ((-777) $ (-928) (-928)))))
+((-2417 (((-112) $ $) NIL)) (-2853 (($) NIL (|has| |#1| (-373)))) (-3923 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 83)) (-2398 (($ $ $) 81)) (-4425 (((-112) $ $) 82)) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#1| (-373)))) (-4241 (($ (-650 |#1|)) NIL) (($) 13)) (-3131 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3076 (($ |#1| $) 74 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4449)))) (-3336 (($) NIL (|has| |#1| (-373)))) (-2835 (((-650 |#1|) $) 19 (|has| $ (-6 -4449)))) (-3418 (((-112) $ $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3311 ((|#1| $) 55 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 73 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2222 ((|#1| $) 53 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 34)) (-2332 (((-928) $) NIL (|has| |#1| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-2885 (($ $ $) 79)) (-2192 ((|#1| $) 25)) (-2599 (($ |#1| $) 69)) (-2160 (($ (-928)) NIL (|has| |#1| (-373)))) (-3479 (((-1129) $) NIL)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-4223 ((|#1| $) 27)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 21)) (-3006 (($) 11)) (-2449 (($ $ |#1|) NIL) (($ $ $) 80)) (-2535 (($) NIL) (($ (-650 |#1|)) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 16)) (-1417 (((-542) $) 50 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 62)) (-3152 (($ $) NIL (|has| |#1| (-373)))) (-3735 (((-868) $) NIL)) (-2968 (((-777) $) NIL)) (-3813 (($ (-650 |#1|)) NIL) (($) 12)) (-3866 (((-112) $ $) NIL)) (-3594 (($ (-650 |#1|)) NIL)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 52)) (-2426 (((-777) $) 10 (|has| $ (-6 -4449)))))
(((-1111 |#1|) (-431 |#1|) (-1109)) (T -1111))
NIL
(-431 |#1|)
-((-2416 (((-112) $ $) 7)) (-3773 (((-112) $) 33)) (-1411 ((|#2| $) 28)) (-2076 (((-112) $) 34)) (-3320 ((|#1| $) 29)) (-2952 (((-112) $) 36)) (-3974 (((-112) $) 38)) (-1597 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-2964 (((-112) $) 32)) (-1440 ((|#3| $) 27)) (-3479 (((-1129) $) 11)) (-2165 (((-112) $) 31)) (-2539 ((|#4| $) 26)) (-2600 ((|#5| $) 25)) (-4300 (((-112) $ $) 39)) (-1876 (($ $ (-570)) 21) (($ $ (-650 (-570))) 20)) (-3826 (((-650 $) $) 30)) (-1416 (($ |#1|) 45) (($ |#2|) 44) (($ |#3|) 43) (($ |#4|) 42) (($ |#5|) 41) (($ (-650 $)) 40)) (-3735 (((-868) $) 12)) (-3337 (($ $) 23)) (-3325 (($ $) 24)) (-1859 (((-112) $ $) 9)) (-3415 (((-112) $) 37)) (-2872 (((-112) $ $) 6)) (-2426 (((-570) $) 22)))
+((-2417 (((-112) $ $) 7)) (-2107 (((-112) $) 33)) (-1412 ((|#2| $) 28)) (-2362 (((-112) $) 34)) (-3320 ((|#1| $) 29)) (-4159 (((-112) $) 36)) (-3441 (((-112) $) 38)) (-3186 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-4269 (((-112) $) 32)) (-1441 ((|#3| $) 27)) (-3479 (((-1129) $) 11)) (-3954 (((-112) $) 31)) (-2539 ((|#4| $) 26)) (-2600 ((|#5| $) 25)) (-4302 (((-112) $ $) 39)) (-1877 (($ $ (-570)) 21) (($ $ (-650 (-570))) 20)) (-3827 (((-650 $) $) 30)) (-1417 (($ |#1|) 45) (($ |#2|) 44) (($ |#3|) 43) (($ |#4|) 42) (($ |#5|) 41) (($ (-650 $)) 40)) (-3735 (((-868) $) 12)) (-3337 (($ $) 23)) (-3325 (($ $) 24)) (-3866 (((-112) $ $) 9)) (-2946 (((-112) $) 37)) (-2872 (((-112) $ $) 6)) (-2426 (((-570) $) 22)))
(((-1112 |#1| |#2| |#3| |#4| |#5|) (-141) (-1109) (-1109) (-1109) (-1109) (-1109)) (T -1112))
-((-4300 (*1 *2 *1 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3974 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3415 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2952 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-1597 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2076 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3773 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2964 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2165 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3826 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-1112 *3 *4 *5 *6 *7)))) (-3320 (*1 *2 *1) (-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-1411 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *2 *4 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-1440 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *2 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-2539 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *2 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-2600 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *2)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-3325 (*1 *1 *1) (-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *2 (-1109)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)))) (-3337 (*1 *1 *1) (-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *2 (-1109)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)))) (-2426 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-570)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)))))
-(-13 (-1109) (-624 |t#1|) (-624 |t#2|) (-624 |t#3|) (-624 |t#4|) (-624 |t#4|) (-624 |t#5|) (-624 (-650 $)) (-10 -8 (-15 -4300 ((-112) $ $)) (-15 -3974 ((-112) $)) (-15 -3415 ((-112) $)) (-15 -2952 ((-112) $)) (-15 -1597 ((-112) $)) (-15 -2076 ((-112) $)) (-15 -3773 ((-112) $)) (-15 -2964 ((-112) $)) (-15 -2165 ((-112) $)) (-15 -3826 ((-650 $) $)) (-15 -3320 (|t#1| $)) (-15 -1411 (|t#2| $)) (-15 -1440 (|t#3| $)) (-15 -2539 (|t#4| $)) (-15 -2600 (|t#5| $)) (-15 -3325 ($ $)) (-15 -3337 ($ $)) (-15 -2426 ((-570) $)) (-15 -1876 ($ $ (-570))) (-15 -1876 ($ $ (-650 (-570))))))
+((-4302 (*1 *2 *1 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3441 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2946 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-4159 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3186 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2362 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-2107 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-4269 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3954 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))) (-3827 (*1 *2 *1) (-12 (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-1112 *3 *4 *5 *6 *7)))) (-3320 (*1 *2 *1) (-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-1412 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *2 *4 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-1441 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *2 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-2539 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *2 *6)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-2600 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *2)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))) (-3325 (*1 *1 *1) (-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *2 (-1109)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)))) (-3337 (*1 *1 *1) (-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *2 (-1109)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)))) (-2426 (*1 *2 *1) (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-570)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)))))
+(-13 (-1109) (-624 |t#1|) (-624 |t#2|) (-624 |t#3|) (-624 |t#4|) (-624 |t#4|) (-624 |t#5|) (-624 (-650 $)) (-10 -8 (-15 -4302 ((-112) $ $)) (-15 -3441 ((-112) $)) (-15 -2946 ((-112) $)) (-15 -4159 ((-112) $)) (-15 -3186 ((-112) $)) (-15 -2362 ((-112) $)) (-15 -2107 ((-112) $)) (-15 -4269 ((-112) $)) (-15 -3954 ((-112) $)) (-15 -3827 ((-650 $) $)) (-15 -3320 (|t#1| $)) (-15 -1412 (|t#2| $)) (-15 -1441 (|t#3| $)) (-15 -2539 (|t#4| $)) (-15 -2600 (|t#5| $)) (-15 -3325 ($ $)) (-15 -3337 ($ $)) (-15 -2426 ((-570) $)) (-15 -1877 ($ $ (-570))) (-15 -1877 ($ $ (-650 (-570))))))
(((-102) . T) ((-619 (-868)) . T) ((-624 (-650 $)) . T) ((-624 |#1|) . T) ((-624 |#2|) . T) ((-624 |#3|) . T) ((-624 |#4|) . T) ((-624 |#5|) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3773 (((-112) $) NIL)) (-1411 (((-1186) $) NIL)) (-2076 (((-112) $) NIL)) (-3320 (((-1168) $) NIL)) (-2952 (((-112) $) NIL)) (-3974 (((-112) $) NIL)) (-1597 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-2964 (((-112) $) NIL)) (-1440 (((-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-2165 (((-112) $) NIL)) (-2539 (((-227) $) NIL)) (-2600 (((-868) $) NIL)) (-4300 (((-112) $ $) NIL)) (-1876 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3826 (((-650 $) $) NIL)) (-1416 (($ (-1168)) NIL) (($ (-1186)) NIL) (($ (-570)) NIL) (($ (-227)) NIL) (($ (-868)) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL)) (-3337 (($ $) NIL)) (-3325 (($ $) NIL)) (-1859 (((-112) $ $) NIL)) (-3415 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-570) $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-2107 (((-112) $) NIL)) (-1412 (((-1186) $) NIL)) (-2362 (((-112) $) NIL)) (-3320 (((-1168) $) NIL)) (-4159 (((-112) $) NIL)) (-3441 (((-112) $) NIL)) (-3186 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-4269 (((-112) $) NIL)) (-1441 (((-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3954 (((-112) $) NIL)) (-2539 (((-227) $) NIL)) (-2600 (((-868) $) NIL)) (-4302 (((-112) $ $) NIL)) (-1877 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3827 (((-650 $) $) NIL)) (-1417 (($ (-1168)) NIL) (($ (-1186)) NIL) (($ (-570)) NIL) (($ (-227)) NIL) (($ (-868)) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL)) (-3337 (($ $) NIL)) (-3325 (($ $) NIL)) (-3866 (((-112) $ $) NIL)) (-2946 (((-112) $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-570) $) NIL)))
(((-1113) (-1112 (-1168) (-1186) (-570) (-227) (-868))) (T -1113))
NIL
(-1112 (-1168) (-1186) (-570) (-227) (-868))
-((-2416 (((-112) $ $) NIL)) (-3773 (((-112) $) 45)) (-1411 ((|#2| $) 48)) (-2076 (((-112) $) 20)) (-3320 ((|#1| $) 21)) (-2952 (((-112) $) 42)) (-3974 (((-112) $) 14)) (-1597 (((-112) $) 44)) (-1903 (((-1168) $) NIL)) (-2964 (((-112) $) 46)) (-1440 ((|#3| $) 50)) (-3479 (((-1129) $) NIL)) (-2165 (((-112) $) 47)) (-2539 ((|#4| $) 49)) (-2600 ((|#5| $) 51)) (-4300 (((-112) $ $) 41)) (-1876 (($ $ (-570)) 62) (($ $ (-650 (-570))) 64)) (-3826 (((-650 $) $) 27)) (-1416 (($ |#1|) 53) (($ |#2|) 54) (($ |#3|) 55) (($ |#4|) 56) (($ |#5|) 57) (($ (-650 $)) 52)) (-3735 (((-868) $) 28)) (-3337 (($ $) 26)) (-3325 (($ $) 58)) (-1859 (((-112) $ $) NIL)) (-3415 (((-112) $) 23)) (-2872 (((-112) $ $) 40)) (-2426 (((-570) $) 60)))
+((-2417 (((-112) $ $) NIL)) (-2107 (((-112) $) 45)) (-1412 ((|#2| $) 48)) (-2362 (((-112) $) 20)) (-3320 ((|#1| $) 21)) (-4159 (((-112) $) 42)) (-3441 (((-112) $) 14)) (-3186 (((-112) $) 44)) (-4268 (((-1168) $) NIL)) (-4269 (((-112) $) 46)) (-1441 ((|#3| $) 50)) (-3479 (((-1129) $) NIL)) (-3954 (((-112) $) 47)) (-2539 ((|#4| $) 49)) (-2600 ((|#5| $) 51)) (-4302 (((-112) $ $) 41)) (-1877 (($ $ (-570)) 62) (($ $ (-650 (-570))) 64)) (-3827 (((-650 $) $) 27)) (-1417 (($ |#1|) 53) (($ |#2|) 54) (($ |#3|) 55) (($ |#4|) 56) (($ |#5|) 57) (($ (-650 $)) 52)) (-3735 (((-868) $) 28)) (-3337 (($ $) 26)) (-3325 (($ $) 58)) (-3866 (((-112) $ $) NIL)) (-2946 (((-112) $) 23)) (-2872 (((-112) $ $) 40)) (-2426 (((-570) $) 60)))
(((-1114 |#1| |#2| |#3| |#4| |#5|) (-1112 |#1| |#2| |#3| |#4| |#5|) (-1109) (-1109) (-1109) (-1109) (-1109)) (T -1114))
NIL
(-1112 |#1| |#2| |#3| |#4| |#5|)
-((-3292 (((-1281) $) 22)) (-1711 (($ (-1186) (-440) |#2|) 11)) (-3735 (((-868) $) 16)))
+((-3291 (((-1282) $) 22)) (-1711 (($ (-1186) (-440) |#2|) 11)) (-3735 (((-868) $) 16)))
(((-1115 |#1| |#2|) (-13 (-401) (-10 -8 (-15 -1711 ($ (-1186) (-440) |#2|)))) (-1109) (-436 |#1|)) (T -1115))
((-1711 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-440)) (-4 *5 (-1109)) (-5 *1 (-1115 *5 *4)) (-4 *4 (-436 *5)))))
(-13 (-401) (-10 -8 (-15 -1711 ($ (-1186) (-440) |#2|))))
-((-2884 (((-112) |#5| |#5|) 44)) (-4236 (((-112) |#5| |#5|) 59)) (-4189 (((-112) |#5| (-650 |#5|)) 82) (((-112) |#5| |#5|) 68)) (-3819 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3322 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 70)) (-3970 (((-1281)) 32)) (-1701 (((-1281) (-1168) (-1168) (-1168)) 28)) (-2037 (((-650 |#5|) (-650 |#5|)) 101)) (-1748 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) 93)) (-3523 (((-650 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 123)) (-1863 (((-112) |#5| |#5|) 53)) (-1438 (((-3 (-112) "failed") |#5| |#5|) 78)) (-1983 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-4212 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-4122 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-3389 (((-3 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 118)) (-2934 (((-650 |#5|) (-650 |#5|)) 49)))
-(((-1116 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1701 ((-1281) (-1168) (-1168) (-1168))) (-15 -3970 ((-1281))) (-15 -2884 ((-112) |#5| |#5|)) (-15 -2934 ((-650 |#5|) (-650 |#5|))) (-15 -1863 ((-112) |#5| |#5|)) (-15 -4236 ((-112) |#5| |#5|)) (-15 -3819 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1983 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4212 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4122 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1438 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4189 ((-112) |#5| |#5|)) (-15 -4189 ((-112) |#5| (-650 |#5|))) (-15 -2037 ((-650 |#5|) (-650 |#5|))) (-15 -3322 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -1748 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -3523 ((-650 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -3389 ((-3 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1116))
-((-3389 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| -4300 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-3523 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| -4300 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-1748 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7)))) (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))) (-3322 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)))) (-2037 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))) (-4189 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1116 *5 *6 *7 *8 *3)))) (-4189 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-1438 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-4122 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4212 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-1983 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-3819 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4236 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-1863 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-2934 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))) (-2884 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3970 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281)) (-5 *1 (-1116 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-1701 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1701 ((-1281) (-1168) (-1168) (-1168))) (-15 -3970 ((-1281))) (-15 -2884 ((-112) |#5| |#5|)) (-15 -2934 ((-650 |#5|) (-650 |#5|))) (-15 -1863 ((-112) |#5| |#5|)) (-15 -4236 ((-112) |#5| |#5|)) (-15 -3819 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1983 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4212 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4122 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1438 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4189 ((-112) |#5| |#5|)) (-15 -4189 ((-112) |#5| (-650 |#5|))) (-15 -2037 ((-650 |#5|) (-650 |#5|))) (-15 -3322 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -1748 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -3523 ((-650 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -3389 ((-3 (-2 (|:| -4300 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-1860 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|) 108)) (-1466 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|) 80)) (-2057 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 102)) (-2150 (((-650 |#5|) |#4| |#5|) 124)) (-1534 (((-650 |#5|) |#4| |#5|) 131)) (-4088 (((-650 |#5|) |#4| |#5|) 132)) (-2683 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 109)) (-3507 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 130)) (-1481 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-2860 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112)) 92) (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-1724 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 87)) (-4026 (((-1281)) 36)) (-3338 (((-1281)) 25)) (-2541 (((-1281) (-1168) (-1168) (-1168)) 32)) (-3396 (((-1281) (-1168) (-1168) (-1168)) 21)))
-(((-1117 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3396 ((-1281) (-1168) (-1168) (-1168))) (-15 -3338 ((-1281))) (-15 -2541 ((-1281) (-1168) (-1168) (-1168))) (-15 -4026 ((-1281))) (-15 -1466 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2860 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2860 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -1724 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2057 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -1481 ((-112) |#4| |#5|)) (-15 -2683 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -2150 ((-650 |#5|) |#4| |#5|)) (-15 -3507 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -1534 ((-650 |#5|) |#4| |#5|)) (-15 -1481 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -4088 ((-650 |#5|) |#4| |#5|)) (-15 -1860 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1117))
-((-1860 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-4088 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1481 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1534 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3507 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2150 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2683 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1481 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2057 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1724 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2860 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856)) (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9)))) (-5 *1 (-1117 *6 *7 *4 *8 *9)))) (-2860 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1466 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-4026 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281)) (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-2541 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281)) (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-3338 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281)) (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-3396 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281)) (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3396 ((-1281) (-1168) (-1168) (-1168))) (-15 -3338 ((-1281))) (-15 -2541 ((-1281) (-1168) (-1168) (-1168))) (-15 -4026 ((-1281))) (-15 -1466 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2860 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2860 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -1724 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2057 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -1481 ((-112) |#4| |#5|)) (-15 -2683 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -2150 ((-650 |#5|) |#4| |#5|)) (-15 -3507 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -1534 ((-650 |#5|) |#4| |#5|)) (-15 -1481 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -4088 ((-650 |#5|) |#4| |#5|)) (-15 -1860 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)))
-((-2416 (((-112) $ $) 7)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) 86)) (-2411 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1716 (((-650 |#3|) $) 34)) (-3418 (((-112) $) 27)) (-1536 (((-112) $) 18 (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) 102) (((-112) $) 98)) (-4200 ((|#4| |#4| $) 93)) (-2222 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) 28)) (-3594 (((-112) $ (-777)) 45)) (-1424 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 80)) (-2450 (($) 46 T CONST)) (-3809 (((-112) $) 23 (|has| |#1| (-562)))) (-2730 (((-112) $ $) 25 (|has| |#1| (-562)))) (-1905 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2374 (((-112) $) 26 (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3742 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-2561 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1808 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) 106)) (-2974 (((-112) |#4| $) 137)) (-3333 (((-112) |#4| $) 134)) (-3052 (((-112) |#4| $) 138) (((-112) $) 135)) (-2836 (((-650 |#4|) $) 53 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) 105) (((-112) $) 104)) (-2711 ((|#3| $) 35)) (-2742 (((-112) $ (-777)) 44)) (-2849 (((-650 |#4|) $) 54 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 48)) (-3727 (((-650 |#3|) $) 33)) (-1844 (((-112) |#3| $) 32)) (-3452 (((-112) $ (-777)) 43)) (-1903 (((-1168) $) 10)) (-1796 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3769 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1728 (((-3 |#4| "failed") $) 84)) (-2395 (((-650 $) |#4| $) 130)) (-3235 (((-3 (-112) (-650 $)) |#4| $) 133)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2307 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2731 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3185 (((-650 |#4|) $) 108)) (-1329 (((-112) |#4| $) 100) (((-112) $) 96)) (-1695 ((|#4| |#4| $) 91)) (-4122 (((-112) $ $) 111)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) 101) (((-112) $) 97)) (-3339 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3802 (((-3 $ "failed") $ |#4|) 79)) (-1558 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1671 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) 39)) (-3329 (((-112) $) 42)) (-3743 (($) 41)) (-1601 (((-777) $) 107)) (-3486 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4448)))) (-3915 (($ $) 40)) (-1416 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 61)) (-4280 (($ $ |#3|) 29)) (-2185 (($ $ |#3|) 31)) (-1892 (($ $) 89)) (-1332 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-1633 (((-777) $) 77 (|has| |#3| (-373)))) (-1859 (((-112) $ $) 9)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4194 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4368 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) 82)) (-1985 (((-112) |#4| $) 136)) (-2663 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
+((-3571 (((-112) |#5| |#5|) 44)) (-4262 (((-112) |#5| |#5|) 59)) (-1932 (((-112) |#5| (-650 |#5|)) 82) (((-112) |#5| |#5|) 68)) (-2452 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3297 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 70)) (-3391 (((-1282)) 32)) (-1896 (((-1282) (-1168) (-1168) (-1168)) 28)) (-2017 (((-650 |#5|) (-650 |#5|)) 101)) (-2226 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) 93)) (-1546 (((-650 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 123)) (-3903 (((-112) |#5| |#5|) 53)) (-1503 (((-3 (-112) "failed") |#5| |#5|) 78)) (-2604 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-4003 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-2458 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-2721 (((-3 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 118)) (-3968 (((-650 |#5|) (-650 |#5|)) 49)))
+(((-1116 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1896 ((-1282) (-1168) (-1168) (-1168))) (-15 -3391 ((-1282))) (-15 -3571 ((-112) |#5| |#5|)) (-15 -3968 ((-650 |#5|) (-650 |#5|))) (-15 -3903 ((-112) |#5| |#5|)) (-15 -4262 ((-112) |#5| |#5|)) (-15 -2452 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2604 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4003 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2458 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1503 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1932 ((-112) |#5| |#5|)) (-15 -1932 ((-112) |#5| (-650 |#5|))) (-15 -2017 ((-650 |#5|) (-650 |#5|))) (-15 -3297 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2226 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -1546 ((-650 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2721 ((-3 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1116))
+((-2721 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| -4302 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-1546 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| -4302 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-2226 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7)))) (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))) (-3297 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)))) (-2017 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))) (-1932 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1116 *5 *6 *7 *8 *3)))) (-1932 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-1503 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-2458 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4003 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-2604 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-2452 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-4262 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3903 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3968 (*1 *2 *2) (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))) (-3571 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))) (-3391 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282)) (-5 *1 (-1116 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-1896 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282)) (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1896 ((-1282) (-1168) (-1168) (-1168))) (-15 -3391 ((-1282))) (-15 -3571 ((-112) |#5| |#5|)) (-15 -3968 ((-650 |#5|) (-650 |#5|))) (-15 -3903 ((-112) |#5| |#5|)) (-15 -4262 ((-112) |#5| |#5|)) (-15 -2452 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2604 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -4003 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2458 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1503 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1932 ((-112) |#5| |#5|)) (-15 -1932 ((-112) |#5| (-650 |#5|))) (-15 -2017 ((-650 |#5|) (-650 |#5|))) (-15 -3297 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2226 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-15 -1546 ((-650 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2721 ((-3 (-2 (|:| -4302 (-650 |#4|)) (|:| -3593 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-3880 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|) 108)) (-1310 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|) 80)) (-2194 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 102)) (-3794 (((-650 |#5|) |#4| |#5|) 124)) (-3849 (((-650 |#5|) |#4| |#5|) 131)) (-2191 (((-650 |#5|) |#4| |#5|) 132)) (-2223 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 109)) (-1391 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 130)) (-1482 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-3324 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112)) 92) (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-2051 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|) 87)) (-2722 (((-1282)) 36)) (-3451 (((-1282)) 25)) (-3352 (((-1282) (-1168) (-1168) (-1168)) 32)) (-2797 (((-1282) (-1168) (-1168) (-1168)) 21)))
+(((-1117 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2797 ((-1282) (-1168) (-1168) (-1168))) (-15 -3451 ((-1282))) (-15 -3352 ((-1282) (-1168) (-1168) (-1168))) (-15 -2722 ((-1282))) (-15 -1310 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -3324 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3324 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -2051 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2194 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -1482 ((-112) |#4| |#5|)) (-15 -2223 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3794 ((-650 |#5|) |#4| |#5|)) (-15 -1391 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3849 ((-650 |#5|) |#4| |#5|)) (-15 -1482 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -2191 ((-650 |#5|) |#4| |#5|)) (-15 -3880 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1117))
+((-3880 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2191 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1482 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3849 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1391 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3794 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2223 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1482 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2194 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2051 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3324 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856)) (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9)))) (-5 *1 (-1117 *6 *7 *4 *8 *9)))) (-3324 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1117 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1310 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2722 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282)) (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-3352 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282)) (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))) (-3451 (*1 *2) (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282)) (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))) (-2797 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282)) (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2797 ((-1282) (-1168) (-1168) (-1168))) (-15 -3451 ((-1282))) (-15 -3352 ((-1282) (-1168) (-1168) (-1168))) (-15 -2722 ((-1282))) (-15 -1310 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -3324 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3324 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) |#3| (-112))) (-15 -2051 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -2194 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#4| |#5|)) (-15 -1482 ((-112) |#4| |#5|)) (-15 -2223 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3794 ((-650 |#5|) |#4| |#5|)) (-15 -1391 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -3849 ((-650 |#5|) |#4| |#5|)) (-15 -1482 ((-650 (-2 (|:| |val| (-112)) (|:| -3593 |#5|))) |#4| |#5|)) (-15 -2191 ((-650 |#5|) |#4| |#5|)) (-15 -3880 ((-650 (-2 (|:| |val| |#4|) (|:| -3593 |#5|))) |#4| |#5|)))
+((-2417 (((-112) $ $) 7)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) 86)) (-1556 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1713 (((-650 |#3|) $) 34)) (-2977 (((-112) $) 27)) (-3873 (((-112) $) 18 (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) 102) (((-112) $) 98)) (-3870 ((|#4| |#4| $) 93)) (-3252 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) 28)) (-4095 (((-112) $ (-777)) 45)) (-1425 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-3761 (($) 46 T CONST)) (-2391 (((-112) $) 23 (|has| |#1| (-562)))) (-1475 (((-112) $ $) 25 (|has| |#1| (-562)))) (-2993 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2376 (((-112) $) 26 (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2996 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-3565 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) 106)) (-3045 (((-112) |#4| $) 137)) (-3412 (((-112) |#4| $) 134)) (-2561 (((-112) |#4| $) 138) (((-112) $) 135)) (-2835 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) 105) (((-112) $) 104)) (-2451 ((|#3| $) 35)) (-1586 (((-112) $ (-777)) 44)) (-3201 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 48)) (-2881 (((-650 |#3|) $) 33)) (-3710 (((-112) |#3| $) 32)) (-2113 (((-112) $ (-777)) 43)) (-4268 (((-1168) $) 10)) (-1444 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-2068 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1729 (((-3 |#4| "failed") $) 84)) (-1403 (((-650 $) |#4| $) 130)) (-3840 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2885 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1486 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-1507 (((-650 |#4|) $) 108)) (-1810 (((-112) |#4| $) 100) (((-112) $) 96)) (-1831 ((|#4| |#4| $) 91)) (-2458 (((-112) $ $) 111)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) 101) (((-112) $) 97)) (-3464 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2329 (((-3 $ "failed") $ |#4|) 79)) (-4102 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-2697 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) 39)) (-3366 (((-112) $) 42)) (-3006 (($) 41)) (-3221 (((-777) $) 107)) (-3490 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3916 (($ $) 40)) (-1417 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 61)) (-3408 (($ $ |#3|) 29)) (-4164 (($ $ |#3|) 31)) (-4148 (($ $) 89)) (-1842 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3580 (((-777) $) 77 (|has| |#3| (-373)))) (-3866 (((-112) $ $) 9)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-3811 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-2964 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) 82)) (-2626 (((-112) |#4| $) 136)) (-2048 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
(((-1118 |#1| |#2| |#3| |#4|) (-141) (-458) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1118))
NIL
(-13 (-1080 |t#1| |t#2| |t#3| |t#4|))
-(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1080 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1219 |#1| |#2| |#3| |#4|) . T) ((-1226) . T))
-((-3201 (((-650 (-570)) (-570) (-570) (-570)) 39)) (-1567 (((-650 (-570)) (-570) (-570) (-570)) 29)) (-3841 (((-650 (-570)) (-570) (-570) (-570)) 34)) (-2176 (((-570) (-570) (-570)) 23)) (-4298 (((-1276 (-570)) (-650 (-570)) (-1276 (-570)) (-570)) 75) (((-1276 (-570)) (-1276 (-570)) (-1276 (-570)) (-570)) 70)) (-2350 (((-650 (-570)) (-650 (-570)) (-650 (-570)) (-112)) 52)) (-1483 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 74)) (-3613 (((-695 (-570)) (-650 (-570)) (-650 (-570))) 58)) (-3070 (((-650 (-695 (-570))) (-650 (-570))) 63)) (-2769 (((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 78)) (-4167 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570))) 88)))
-(((-1119) (-10 -7 (-15 -4167 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -2769 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -3070 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -3613 ((-695 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1483 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2350 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-112))) (-15 -4298 ((-1276 (-570)) (-1276 (-570)) (-1276 (-570)) (-570))) (-15 -4298 ((-1276 (-570)) (-650 (-570)) (-1276 (-570)) (-570))) (-15 -2176 ((-570) (-570) (-570))) (-15 -3841 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1567 ((-650 (-570)) (-570) (-570) (-570))) (-15 -3201 ((-650 (-570)) (-570) (-570) (-570))))) (T -1119))
-((-3201 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-1567 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-3841 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-2176 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))) (-4298 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1276 (-570))) (-5 *3 (-650 (-570))) (-5 *4 (-570)) (-5 *1 (-1119)))) (-4298 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1276 (-570))) (-5 *3 (-570)) (-5 *1 (-1119)))) (-2350 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-112)) (-5 *1 (-1119)))) (-1483 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))) (-3613 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))) (-3070 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1119)))) (-2769 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))) (-4167 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
-(-10 -7 (-15 -4167 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -2769 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -3070 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -3613 ((-695 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1483 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2350 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-112))) (-15 -4298 ((-1276 (-570)) (-1276 (-570)) (-1276 (-570)) (-570))) (-15 -4298 ((-1276 (-570)) (-650 (-570)) (-1276 (-570)) (-570))) (-15 -2176 ((-570) (-570) (-570))) (-15 -3841 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1567 ((-650 (-570)) (-570) (-570) (-570))) (-15 -3201 ((-650 (-570)) (-570) (-570) (-570))))
+(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1080 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
+((-1675 (((-650 (-570)) (-570) (-570) (-570)) 39)) (-4208 (((-650 (-570)) (-570) (-570) (-570)) 29)) (-1532 (((-650 (-570)) (-570) (-570) (-570)) 34)) (-4069 (((-570) (-570) (-570)) 23)) (-3578 (((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570)) 75) (((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570)) 70)) (-2180 (((-650 (-570)) (-650 (-570)) (-650 (-570)) (-112)) 52)) (-1504 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 74)) (-4307 (((-695 (-570)) (-650 (-570)) (-650 (-570))) 58)) (-2749 (((-650 (-695 (-570))) (-650 (-570))) 63)) (-1851 (((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 78)) (-1717 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570))) 88)))
+(((-1119) (-10 -7 (-15 -1717 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1851 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2749 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -4307 ((-695 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1504 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2180 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-112))) (-15 -3578 ((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570))) (-15 -3578 ((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570))) (-15 -4069 ((-570) (-570) (-570))) (-15 -1532 ((-650 (-570)) (-570) (-570) (-570))) (-15 -4208 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1675 ((-650 (-570)) (-570) (-570) (-570))))) (T -1119))
+((-1675 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-4208 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-1532 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-4069 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))) (-3578 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-650 (-570))) (-5 *4 (-570)) (-5 *1 (-1119)))) (-3578 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-570)) (-5 *1 (-1119)))) (-2180 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-112)) (-5 *1 (-1119)))) (-1504 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))) (-4307 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))) (-2749 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1119)))) (-1851 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))) (-1717 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
+(-10 -7 (-15 -1717 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1851 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2749 ((-650 (-695 (-570))) (-650 (-570)))) (-15 -4307 ((-695 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1504 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2180 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-112))) (-15 -3578 ((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570))) (-15 -3578 ((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570))) (-15 -4069 ((-570) (-570) (-570))) (-15 -1532 ((-650 (-570)) (-570) (-570) (-570))) (-15 -4208 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1675 ((-650 (-570)) (-570) (-570) (-570))))
((** (($ $ (-928)) 10)))
(((-1120 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-928)))) (-1121)) (T -1120))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-928))))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 15)))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 15)))
(((-1121) (-141)) (T -1121))
((* (*1 *1 *1 *1) (-4 *1 (-1121))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1121)) (-5 *2 (-928)))))
(-13 (-1109) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-928)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-4028 (((-112) $) NIL (|has| |#3| (-132)))) (-3561 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-3947 (($ $ $) NIL (|has| |#3| (-799)))) (-3596 (((-3 $ "failed") $ $) NIL (|has| |#3| (-132)))) (-3594 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#3| (-373)))) (-3140 (((-570) $) NIL (|has| |#3| (-854)))) (-3895 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109)))) ((|#3| $) NIL (|has| |#3| (-1109)))) (-4177 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 $) (-1276 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058)))) (-3413 (((-3 $ "failed") $) NIL (|has| |#3| (-732)))) (-3336 (($) NIL (|has| |#3| (-373)))) (-3790 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#3| $ (-570)) 12)) (-1522 (((-112) $) NIL (|has| |#3| (-854)))) (-2836 (((-650 |#3|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL (|has| |#3| (-732)))) (-2761 (((-112) $) NIL (|has| |#3| (-854)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2849 (((-650 |#3|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3776 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#3| |#3|) $) NIL)) (-2367 (((-928) $) NIL (|has| |#3| (-373)))) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#3| (-1109)))) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-2159 (($ (-928)) NIL (|has| |#3| (-373)))) (-3479 (((-1129) $) NIL (|has| |#3| (-1109)))) (-3443 ((|#3| $) NIL (|has| (-570) (-856)))) (-1952 (($ $ |#3|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#3|))) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 |#3|) (-650 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-4245 (((-650 |#3|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) NIL)) (-2809 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3791 (($ (-1276 |#3|)) NIL)) (-2184 (((-135)) NIL (|has| |#3| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058)))) (-3486 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#3| (-1109))))) (-3915 (($ $) NIL)) (-3735 (((-1276 |#3|) $) NIL) (($ (-570)) NIL (-2740 (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109)))) (($ |#3|) NIL (|has| |#3| (-1109))) (((-868) $) NIL (|has| |#3| (-619 (-868))))) (-2744 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-1859 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-4368 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4448)))) (-1423 (($ $) NIL (|has| |#3| (-854)))) (-1812 (($) NIL (|has| |#3| (-132)) CONST)) (-1823 (($) NIL (|has| |#3| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2872 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-2913 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2894 (((-112) $ $) 24 (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2975 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-2965 (($ $ $) NIL (|has| |#3| (-1058))) (($ $) NIL (|has| |#3| (-1058)))) (-2954 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-777)) NIL (|has| |#3| (-732))) (($ $ (-928)) NIL (|has| |#3| (-732)))) (* (($ (-570) $) NIL (|has| |#3| (-1058))) (($ $ $) NIL (|has| |#3| (-732))) (($ $ |#3|) NIL (|has| |#3| (-732))) (($ |#3| $) NIL (|has| |#3| (-732))) (($ (-777) $) NIL (|has| |#3| (-132))) (($ (-928) $) NIL (|has| |#3| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-2745 (((-112) $) NIL (|has| |#3| (-132)))) (-3800 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3125 (($ $ $) NIL (|has| |#3| (-799)))) (-4119 (((-3 $ "failed") $ $) NIL (|has| |#3| (-132)))) (-4095 (((-112) $ (-777)) NIL)) (-3403 (((-777)) NIL (|has| |#3| (-373)))) (-2249 (((-570) $) NIL (|has| |#3| (-854)))) (-3894 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1109)))) (-3080 (((-570) $) NIL (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109)))) ((|#3| $) NIL (|has| |#3| (-1109)))) (-1836 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058)))) (-2937 (((-3 $ "failed") $) NIL (|has| |#3| (-732)))) (-3336 (($) NIL (|has| |#3| (-373)))) (-3789 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#3| $ (-570)) 12)) (-3703 (((-112) $) NIL (|has| |#3| (-854)))) (-2835 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL (|has| |#3| (-732)))) (-1774 (((-112) $) NIL (|has| |#3| (-854)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3201 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3776 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#3| |#3|) $) NIL)) (-2332 (((-928) $) NIL (|has| |#3| (-373)))) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#3| (-1109)))) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-2160 (($ (-928)) NIL (|has| |#3| (-373)))) (-3479 (((-1129) $) NIL (|has| |#3| (-1109)))) (-3443 ((|#3| $) NIL (|has| (-570) (-856)))) (-3531 (($ $ |#3|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#3|))) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-298 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109)))) (($ $ (-650 |#3|) (-650 |#3|)) NIL (-12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-4348 (((-650 |#3|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) NIL)) (-4082 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3791 (($ (-1277 |#3|)) NIL)) (-4154 (((-135)) NIL (|has| |#3| (-368)))) (-3447 (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058)))) (-3490 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-3916 (($ $) NIL)) (-3735 (((-1277 |#3|) $) NIL) (($ (-570)) NIL (-2740 (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109)))) (($ |#3|) NIL (|has| |#3| (-1109))) (((-868) $) NIL (|has| |#3| (-619 (-868))))) (-1609 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-3866 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-2964 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1367 (($ $) NIL (|has| |#3| (-854)))) (-1814 (($) NIL (|has| |#3| (-132)) CONST)) (-1824 (($) NIL (|has| |#3| (-732)) CONST)) (-2791 (($ $) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-777)) NIL (-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))) (($ $ (-1186)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058)))) (($ $ (-1 |#3| |#3|) (-777)) NIL (|has| |#3| (-1058))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1058)))) (-2924 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2904 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2872 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-2914 (((-112) $ $) NIL (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2894 (((-112) $ $) 24 (-2740 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2975 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-2965 (($ $ $) NIL (|has| |#3| (-1058))) (($ $) NIL (|has| |#3| (-1058)))) (-2953 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-777)) NIL (|has| |#3| (-732))) (($ $ (-928)) NIL (|has| |#3| (-732)))) (* (($ (-570) $) NIL (|has| |#3| (-1058))) (($ $ $) NIL (|has| |#3| (-732))) (($ $ |#3|) NIL (|has| |#3| (-732))) (($ |#3| $) NIL (|has| |#3| (-732))) (($ (-777) $) NIL (|has| |#3| (-132))) (($ (-928) $) NIL (|has| |#3| (-25)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-1122 |#1| |#2| |#3|) (-240 |#1| |#3|) (-777) (-777) (-799)) (T -1122))
NIL
(-240 |#1| |#3|)
-((-3271 (((-650 (-1249 |#2| |#1|)) (-1249 |#2| |#1|) (-1249 |#2| |#1|)) 50)) (-1450 (((-570) (-1249 |#2| |#1|)) 97 (|has| |#1| (-458)))) (-2529 (((-570) (-1249 |#2| |#1|)) 79)) (-2778 (((-650 (-1249 |#2| |#1|)) (-1249 |#2| |#1|) (-1249 |#2| |#1|)) 60)) (-2969 (((-570) (-1249 |#2| |#1|) (-1249 |#2| |#1|)) 96 (|has| |#1| (-458)))) (-3782 (((-650 |#1|) (-1249 |#2| |#1|) (-1249 |#2| |#1|)) 64)) (-1686 (((-570) (-1249 |#2| |#1|) (-1249 |#2| |#1|)) 78)))
-(((-1123 |#1| |#2|) (-10 -7 (-15 -3271 ((-650 (-1249 |#2| |#1|)) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -2778 ((-650 (-1249 |#2| |#1|)) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -3782 ((-650 |#1|) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -1686 ((-570) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -2529 ((-570) (-1249 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -2969 ((-570) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -1450 ((-570) (-1249 |#2| |#1|)))) |%noBranch|)) (-826) (-1186)) (T -1123))
-((-1450 (*1 *2 *3) (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-2969 (*1 *2 *3 *3) (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-2529 (*1 *2 *3) (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-1686 (*1 *2 *3 *3) (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-3782 (*1 *2 *3 *3) (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 *4)) (-5 *1 (-1123 *4 *5)))) (-2778 (*1 *2 *3 *3) (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1249 *5 *4))) (-5 *1 (-1123 *4 *5)) (-5 *3 (-1249 *5 *4)))) (-3271 (*1 *2 *3 *3) (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1249 *5 *4))) (-5 *1 (-1123 *4 *5)) (-5 *3 (-1249 *5 *4)))))
-(-10 -7 (-15 -3271 ((-650 (-1249 |#2| |#1|)) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -2778 ((-650 (-1249 |#2| |#1|)) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -3782 ((-650 |#1|) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -1686 ((-570) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -2529 ((-570) (-1249 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -2969 ((-570) (-1249 |#2| |#1|) (-1249 |#2| |#1|))) (-15 -1450 ((-570) (-1249 |#2| |#1|)))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-4013 (($ (-512) (-1127)) 13)) (-4322 (((-1127) $) 19)) (-3503 (((-512) $) 16)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 26) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1124) (-13 (-1092) (-10 -8 (-15 -4013 ($ (-512) (-1127))) (-15 -3503 ((-512) $)) (-15 -4322 ((-1127) $))))) (T -1124))
-((-4013 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))) (-3503 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1124)))) (-4322 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1124)))))
-(-13 (-1092) (-10 -8 (-15 -4013 ($ (-512) (-1127))) (-15 -3503 ((-512) $)) (-15 -4322 ((-1127) $))))
-((-3140 (((-3 (-570) "failed") |#2| (-1186) |#2| (-1168)) 19) (((-3 (-570) "failed") |#2| (-1186) (-849 |#2|)) 17) (((-3 (-570) "failed") |#2|) 60)))
-(((-1125 |#1| |#2|) (-10 -7 (-15 -3140 ((-3 (-570) "failed") |#2|)) (-15 -3140 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -3140 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168)))) (-13 (-562) (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1211) (-436 |#1|))) (T -1125))
-((-3140 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-1168)) (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570)) (-5 *1 (-1125 *6 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6))))) (-3140 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6))) (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570)) (-5 *1 (-1125 *6 *3)))) (-3140 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570)) (-5 *1 (-1125 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))))
-(-10 -7 (-15 -3140 ((-3 (-570) "failed") |#2|)) (-15 -3140 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -3140 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168))))
-((-3140 (((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168)) 38) (((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|)))) 33) (((-3 (-570) "failed") (-413 (-959 |#1|))) 14)))
-(((-1126 |#1|) (-10 -7 (-15 -3140 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -3140 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -3140 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168)))) (-458)) (T -1126))
-((-3140 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1186)) (-5 *5 (-1168)) (-4 *6 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *6)))) (-3140 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 (-413 (-959 *6)))) (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *6)))) (-3140 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *4)))))
-(-10 -7 (-15 -3140 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -3140 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -3140 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168))))
-((-2416 (((-112) $ $) NIL)) (-3814 (((-1191) $) 12)) (-3756 (((-650 (-1191)) $) 14)) (-4322 (($ (-650 (-1191)) (-1191)) 10)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 29)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 17)))
-(((-1127) (-13 (-1109) (-10 -8 (-15 -4322 ($ (-650 (-1191)) (-1191))) (-15 -3814 ((-1191) $)) (-15 -3756 ((-650 (-1191)) $))))) (T -1127))
-((-4322 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1191))) (-5 *3 (-1191)) (-5 *1 (-1127)))) (-3814 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-1127)))) (-3756 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1127)))))
-(-13 (-1109) (-10 -8 (-15 -4322 ($ (-650 (-1191)) (-1191))) (-15 -3814 ((-1191) $)) (-15 -3756 ((-650 (-1191)) $))))
-((-4230 (((-320 (-570)) (-48)) 12)))
-(((-1128) (-10 -7 (-15 -4230 ((-320 (-570)) (-48))))) (T -1128))
-((-4230 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-320 (-570))) (-5 *1 (-1128)))))
-(-10 -7 (-15 -4230 ((-320 (-570)) (-48))))
-((-2416 (((-112) $ $) NIL)) (-2433 (($ $) 44)) (-4028 (((-112) $) 71)) (-1789 (($ $ $) 53)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 99)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-2618 (($ $ $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-4281 (($ $ $ $) 82)) (-2222 (($ $) NIL)) (-1790 (((-424 $) $) NIL)) (-4339 (((-112) $ $) NIL)) (-3403 (((-777)) 84)) (-3140 (((-570) $) NIL)) (-3020 (($ $ $) 79)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL)) (-3080 (((-570) $) NIL)) (-2372 (($ $ $) 65)) (-4177 (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 93) (((-695 (-570)) (-695 $)) 32)) (-3413 (((-3 $ "failed") $) NIL)) (-2951 (((-3 (-413 (-570)) "failed") $) NIL)) (-2085 (((-112) $) NIL)) (-3137 (((-413 (-570)) $) NIL)) (-3336 (($) 96) (($ $) 97)) (-2381 (($ $ $) 64)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL)) (-1552 (((-112) $) NIL)) (-2203 (($ $ $ $) NIL)) (-1533 (($ $ $) 94)) (-1522 (((-112) $) NIL)) (-4390 (($ $ $) NIL)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-1778 (($ $ $) 52)) (-2081 (((-112) $) 73)) (-3431 (((-112) $) 70)) (-1754 (($ $) 45)) (-2885 (((-3 $ "failed") $) NIL)) (-2761 (((-112) $) 83)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2519 (($ $ $ $) 80)) (-3310 (($ $ $) 75) (($) 42 T CONST)) (-3787 (($ $ $) 74) (($) 41 T CONST)) (-2584 (($ $) NIL)) (-2367 (((-928) $) 89)) (-3788 (($ $) 78)) (-1845 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1903 (((-1168) $) NIL)) (-2410 (($ $ $) NIL)) (-2314 (($) NIL T CONST)) (-2159 (($ (-928)) 88)) (-3522 (($ $) 58)) (-3479 (((-1129) $) 77)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) 68) (($ (-650 $)) NIL)) (-4061 (($ $) NIL)) (-3738 (((-424 $) $) NIL)) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL)) (-2407 (((-3 $ "failed") $ $) NIL)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1322 (((-112) $) NIL)) (-2272 (((-777) $) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 67)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-2430 (($ $) 59)) (-3915 (($ $) NIL)) (-1416 (((-570) $) 17) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL)) (-3735 (((-868) $) 35) (($ (-570)) 95) (($ $) NIL) (($ (-570)) 95)) (-2744 (((-777)) NIL T CONST)) (-3047 (((-112) $ $) NIL)) (-1397 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-4358 (($) 40)) (-1681 (((-112) $ $) NIL)) (-1765 (($ $ $) 50)) (-1662 (($ $ $ $) 81)) (-1423 (($ $) 69)) (-4421 (($ $ $) 47)) (-1812 (($) 7 T CONST)) (-3436 (($ $ $) 51)) (-1823 (($) 39 T CONST)) (-2892 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1281) (-828) $) 28) (((-1281) (-828) $ (-112)) 29)) (-3449 (($ $) 48)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-3422 (($ $ $) 49)) (-2924 (((-112) $ $) 57)) (-2904 (((-112) $ $) 54)) (-2872 (((-112) $ $) 43)) (-2913 (((-112) $ $) 56)) (-2894 (((-112) $ $) 10)) (-4407 (($ $ $) 46)) (-2965 (($ $) 16) (($ $ $) 61)) (-2954 (($ $ $) 60)) (** (($ $ (-928)) NIL) (($ $ (-777)) 63)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 38) (($ $ $) 37)))
-(((-1129) (-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4435) (-6 -4440) (-6 -4436) (-15 -1789 ($ $ $)) (-15 -3449 ($ $)) (-15 -3422 ($ $ $)) (-15 -3436 ($ $ $))))) (T -1129))
-((-1789 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3449 (*1 *1 *1) (-5 *1 (-1129))) (-3422 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3436 (*1 *1 *1 *1) (-5 *1 (-1129))))
-(-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4435) (-6 -4440) (-6 -4436) (-15 -1789 ($ $ $)) (-15 -3449 ($ $)) (-15 -3422 ($ $ $)) (-15 -3436 ($ $ $))))
+((-4165 (((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 50)) (-4251 (((-570) (-1250 |#2| |#1|)) 97 (|has| |#1| (-458)))) (-3229 (((-570) (-1250 |#2| |#1|)) 79)) (-3783 (((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 60)) (-3004 (((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 96 (|has| |#1| (-458)))) (-2174 (((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 64)) (-2842 (((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 78)))
+(((-1123 |#1| |#2|) (-10 -7 (-15 -4165 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3783 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2174 ((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2842 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3229 ((-570) (-1250 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -3004 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -4251 ((-570) (-1250 |#2| |#1|)))) |%noBranch|)) (-826) (-1186)) (T -1123))
+((-4251 (*1 *2 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-3004 (*1 *2 *3 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-3229 (*1 *2 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-2842 (*1 *2 *3 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-2174 (*1 *2 *3 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 *4)) (-5 *1 (-1123 *4 *5)))) (-3783 (*1 *2 *3 *3) (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1250 *5 *4))) (-5 *1 (-1123 *4 *5)) (-5 *3 (-1250 *5 *4)))) (-4165 (*1 *2 *3 *3) (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1250 *5 *4))) (-5 *1 (-1123 *4 *5)) (-5 *3 (-1250 *5 *4)))))
+(-10 -7 (-15 -4165 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3783 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2174 ((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2842 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3229 ((-570) (-1250 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -3004 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -4251 ((-570) (-1250 |#2| |#1|)))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-2580 (($ (-512) (-1127)) 13)) (-4323 (((-1127) $) 19)) (-3504 (((-512) $) 16)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 26) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1124) (-13 (-1092) (-10 -8 (-15 -2580 ($ (-512) (-1127))) (-15 -3504 ((-512) $)) (-15 -4323 ((-1127) $))))) (T -1124))
+((-2580 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))) (-3504 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1124)))) (-4323 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1124)))))
+(-13 (-1092) (-10 -8 (-15 -2580 ($ (-512) (-1127))) (-15 -3504 ((-512) $)) (-15 -4323 ((-1127) $))))
+((-2249 (((-3 (-570) "failed") |#2| (-1186) |#2| (-1168)) 19) (((-3 (-570) "failed") |#2| (-1186) (-849 |#2|)) 17) (((-3 (-570) "failed") |#2|) 60)))
+(((-1125 |#1| |#2|) (-10 -7 (-15 -2249 ((-3 (-570) "failed") |#2|)) (-15 -2249 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -2249 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168)))) (-13 (-562) (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|))) (T -1125))
+((-2249 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-1168)) (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570)) (-5 *1 (-1125 *6 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6))))) (-2249 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6))) (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570)) (-5 *1 (-1125 *6 *3)))) (-2249 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570)) (-5 *1 (-1125 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))))
+(-10 -7 (-15 -2249 ((-3 (-570) "failed") |#2|)) (-15 -2249 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -2249 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168))))
+((-2249 (((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168)) 38) (((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|)))) 33) (((-3 (-570) "failed") (-413 (-959 |#1|))) 14)))
+(((-1126 |#1|) (-10 -7 (-15 -2249 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -2249 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -2249 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168)))) (-458)) (T -1126))
+((-2249 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1186)) (-5 *5 (-1168)) (-4 *6 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *6)))) (-2249 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 (-413 (-959 *6)))) (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *6)))) (-2249 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *4)))))
+(-10 -7 (-15 -2249 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -2249 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -2249 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168))))
+((-2417 (((-112) $ $) NIL)) (-3816 (((-1191) $) 12)) (-3756 (((-650 (-1191)) $) 14)) (-4323 (($ (-650 (-1191)) (-1191)) 10)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 29)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 17)))
+(((-1127) (-13 (-1109) (-10 -8 (-15 -4323 ($ (-650 (-1191)) (-1191))) (-15 -3816 ((-1191) $)) (-15 -3756 ((-650 (-1191)) $))))) (T -1127))
+((-4323 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1191))) (-5 *3 (-1191)) (-5 *1 (-1127)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-1127)))) (-3756 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1127)))))
+(-13 (-1109) (-10 -8 (-15 -4323 ($ (-650 (-1191)) (-1191))) (-15 -3816 ((-1191) $)) (-15 -3756 ((-650 (-1191)) $))))
+((-4196 (((-320 (-570)) (-48)) 12)))
+(((-1128) (-10 -7 (-15 -4196 ((-320 (-570)) (-48))))) (T -1128))
+((-4196 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-320 (-570))) (-5 *1 (-1128)))))
+(-10 -7 (-15 -4196 ((-320 (-570)) (-48))))
+((-2417 (((-112) $ $) NIL)) (-2434 (($ $) 44)) (-2745 (((-112) $) 71)) (-1790 (($ $ $) 53)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 99)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-2836 (($ $ $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3420 (($ $ $ $) 82)) (-3252 (($ $) NIL)) (-1378 (((-424 $) $) NIL)) (-2707 (((-112) $ $) NIL)) (-3403 (((-777)) 84)) (-2249 (((-570) $) NIL)) (-3020 (($ $ $) 79)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL)) (-3080 (((-570) $) NIL)) (-2372 (($ $ $) 65)) (-1836 (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 93) (((-695 (-570)) (-695 $)) 32)) (-2937 (((-3 $ "failed") $) NIL)) (-4147 (((-3 (-413 (-570)) "failed") $) NIL)) (-4373 (((-112) $) NIL)) (-2220 (((-413 (-570)) $) NIL)) (-3336 (($) 96) (($ $) 97)) (-2382 (($ $ $) 64)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL)) (-4037 (((-112) $) NIL)) (-3041 (($ $ $ $) NIL)) (-3838 (($ $ $) 94)) (-3703 (((-112) $) NIL)) (-2039 (($ $ $) NIL)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-1778 (($ $ $) 52)) (-4340 (((-112) $) 73)) (-1958 (((-112) $) 70)) (-1753 (($ $) 45)) (-3584 (((-3 $ "failed") $) NIL)) (-1774 (((-112) $) 83)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3119 (($ $ $ $) 80)) (-3311 (($ $ $) 75) (($) 42 T CONST)) (-2222 (($ $ $) 74) (($) 41 T CONST)) (-2581 (($ $) NIL)) (-2332 (((-928) $) 89)) (-3788 (($ $) 78)) (-1847 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4268 (((-1168) $) NIL)) (-1545 (($ $ $) NIL)) (-2315 (($) NIL T CONST)) (-2160 (($ (-928)) 88)) (-3523 (($ $) 58)) (-3479 (((-1129) $) 77)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1874 (($ $ $) 68) (($ (-650 $)) NIL)) (-3072 (($ $) NIL)) (-3739 (((-424 $) $) NIL)) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL)) (-2406 (((-3 $ "failed") $ $) NIL)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1739 (((-112) $) NIL)) (-2547 (((-777) $) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 67)) (-3447 (($ $ (-777)) NIL) (($ $) NIL)) (-2429 (($ $) 59)) (-3916 (($ $) NIL)) (-1417 (((-570) $) 17) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL)) (-3735 (((-868) $) 35) (($ (-570)) 95) (($ $) NIL) (($ (-570)) 95)) (-1609 (((-777)) NIL T CONST)) (-2528 (((-112) $ $) NIL)) (-3829 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-4360 (($) 40)) (-2795 (((-112) $ $) NIL)) (-1765 (($ $ $) 50)) (-2608 (($ $ $ $) 81)) (-1367 (($ $) 69)) (-4419 (($ $ $) 47)) (-1814 (($) 7 T CONST)) (-3436 (($ $ $) 51)) (-1824 (($) 39 T CONST)) (-3637 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1282) (-828) $) 28) (((-1282) (-828) $ (-112)) 29)) (-3449 (($ $) 48)) (-2791 (($ $ (-777)) NIL) (($ $) NIL)) (-3422 (($ $ $) 49)) (-2924 (((-112) $ $) 57)) (-2904 (((-112) $ $) 54)) (-2872 (((-112) $ $) 43)) (-2914 (((-112) $ $) 56)) (-2894 (((-112) $ $) 10)) (-4404 (($ $ $) 46)) (-2965 (($ $) 16) (($ $ $) 61)) (-2953 (($ $ $) 60)) (** (($ $ (-928)) NIL) (($ $ (-777)) 63)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 38) (($ $ $) 37)))
+(((-1129) (-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4436) (-6 -4441) (-6 -4437) (-15 -1790 ($ $ $)) (-15 -3449 ($ $)) (-15 -3422 ($ $ $)) (-15 -3436 ($ $ $))))) (T -1129))
+((-1790 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3449 (*1 *1 *1) (-5 *1 (-1129))) (-3422 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3436 (*1 *1 *1 *1) (-5 *1 (-1129))))
+(-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4436) (-6 -4441) (-6 -4437) (-15 -1790 ($ $ $)) (-15 -3449 ($ $)) (-15 -3422 ($ $ $)) (-15 -3436 ($ $ $))))
((|Integer|) (SMINTP |#1|))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3240 ((|#1| $) 45)) (-3594 (((-112) $ (-777)) 8)) (-2450 (($) 7 T CONST)) (-2562 ((|#1| |#1| $) 47)) (-1446 ((|#1| $) 46)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3784 ((|#1| $) 40)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1899 ((|#1| $) 42)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-2765 (((-777) $) 44)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) 43)) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1130 |#1|) (-141) (-1226)) (T -1130))
-((-2562 (*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1226)))) (-1446 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1226)))) (-3240 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1226)))) (-2765 (*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4448) (-15 -2562 (|t#1| |t#1| $)) (-15 -1446 (|t#1| $)) (-15 -3240 (|t#1| $)) (-15 -2765 ((-777) $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-3071 ((|#3| $) 87)) (-4378 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#3| "failed") $) 50)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#3| $) 47)) (-4177 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL) (((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 $) (-1276 $)) 84) (((-695 |#3|) (-695 $)) 76)) (-3447 (($ $ (-1 |#3| |#3|)) 28) (($ $ (-1 |#3| |#3|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-3440 ((|#3| $) 89)) (-2640 ((|#4| $) 43)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#3|) 25)) (** (($ $ (-928)) NIL) (($ $ (-777)) 24) (($ $ (-570)) 95)))
-(((-1131 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-570))) (-15 -3440 (|#3| |#1|)) (-15 -3071 (|#3| |#1|)) (-15 -2640 (|#4| |#1|)) (-15 -4177 ((-695 |#3|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3735 ((-868) |#1|))) (-1132 |#2| |#3| |#4| |#5|) (-777) (-1058) (-240 |#2| |#3|) (-240 |#2| |#3|)) (T -1131))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-570))) (-15 -3440 (|#3| |#1|)) (-15 -3071 (|#3| |#1|)) (-15 -2640 (|#4| |#1|)) (-15 -4177 ((-695 |#3|) (-695 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 |#3|)) (|:| |vec| (-1276 |#3|))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 |#1|) (-1276 |#1|))) (-15 -4177 ((-695 (-570)) (-695 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3071 ((|#2| $) 77)) (-1813 (((-112) $) 117)) (-3596 (((-3 $ "failed") $ $) 20)) (-1837 (((-112) $) 115)) (-3594 (((-112) $ (-777)) 107)) (-4124 (($ |#2|) 80)) (-2450 (($) 18 T CONST)) (-3936 (($ $) 134 (|has| |#2| (-311)))) (-2653 ((|#3| $ (-570)) 129)) (-4378 (((-3 (-570) "failed") $) 92 (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 89 (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) 86)) (-3080 (((-570) $) 91 (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) 88 (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) 87)) (-4177 (((-695 (-570)) (-695 $)) 84 (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 83 (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) 82) (((-695 |#2|) (-695 $)) 81)) (-3413 (((-3 $ "failed") $) 37)) (-3934 (((-777) $) 135 (|has| |#2| (-562)))) (-3712 ((|#2| $ (-570) (-570)) 127)) (-2836 (((-650 |#2|) $) 100 (|has| $ (-6 -4448)))) (-2081 (((-112) $) 35)) (-1645 (((-777) $) 136 (|has| |#2| (-562)))) (-4239 (((-650 |#4|) $) 137 (|has| |#2| (-562)))) (-3153 (((-777) $) 123)) (-3167 (((-777) $) 124)) (-2742 (((-112) $ (-777)) 108)) (-2265 ((|#2| $) 72 (|has| |#2| (-6 (-4450 "*"))))) (-3118 (((-570) $) 119)) (-1607 (((-570) $) 121)) (-2849 (((-650 |#2|) $) 99 (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) 97 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-3392 (((-570) $) 120)) (-1555 (((-570) $) 122)) (-2427 (($ (-650 (-650 |#2|))) 114)) (-3776 (($ (-1 |#2| |#2|) $) 104 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2| |#2|) $ $) 131) (($ (-1 |#2| |#2|) $) 105)) (-3747 (((-650 (-650 |#2|)) $) 125)) (-3452 (((-112) $ (-777)) 109)) (-1903 (((-1168) $) 10)) (-4260 (((-3 $ "failed") $) 71 (|has| |#2| (-368)))) (-3479 (((-1129) $) 11)) (-2407 (((-3 $ "failed") $ |#2|) 132 (|has| |#2| (-562)))) (-1671 (((-112) (-1 (-112) |#2|) $) 102 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) 96 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 95 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 94 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 93 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) 113)) (-3329 (((-112) $) 110)) (-3743 (($) 111)) (-1876 ((|#2| $ (-570) (-570) |#2|) 128) ((|#2| $ (-570) (-570)) 126)) (-3447 (($ $ (-1 |#2| |#2|)) 56) (($ $ (-1 |#2| |#2|) (-777)) 55) (($ $ (-650 (-1186)) (-650 (-777))) 48 (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) 47 (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) 46 (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) 45 (|has| |#2| (-907 (-1186)))) (($ $ (-777)) 43 (|has| |#2| (-235))) (($ $) 41 (|has| |#2| (-235)))) (-3440 ((|#2| $) 76)) (-1990 (($ (-650 |#2|)) 79)) (-3055 (((-112) $) 116)) (-2640 ((|#3| $) 78)) (-3154 ((|#2| $) 73 (|has| |#2| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#2|) $) 101 (|has| $ (-6 -4448))) (((-777) |#2| $) 98 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 112)) (-3541 ((|#4| $ (-570)) 130)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 90 (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) 85)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-4368 (((-112) (-1 (-112) |#2|) $) 103 (|has| $ (-6 -4448)))) (-3317 (((-112) $) 118)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) 54) (($ $ (-1 |#2| |#2|) (-777)) 53) (($ $ (-650 (-1186)) (-650 (-777))) 52 (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) 51 (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) 50 (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) 49 (|has| |#2| (-907 (-1186)))) (($ $ (-777)) 44 (|has| |#2| (-235))) (($ $) 42 (|has| |#2| (-235)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#2|) 133 (|has| |#2| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 70 (|has| |#2| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#2|) 139) (($ |#2| $) 138) ((|#4| $ |#4|) 75) ((|#3| |#3| $) 74)) (-2426 (((-777) $) 106 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3240 ((|#1| $) 45)) (-4095 (((-112) $ (-777)) 8)) (-3761 (($) 7 T CONST)) (-3575 ((|#1| |#1| $) 47)) (-1568 ((|#1| $) 46)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2192 ((|#1| $) 40)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-4223 ((|#1| $) 42)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-2766 (((-777) $) 44)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) 43)) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1130 |#1|) (-141) (-1227)) (T -1130))
+((-3575 (*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-1568 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-3240 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-2766 (*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4449) (-15 -3575 (|t#1| |t#1| $)) (-15 -1568 (|t#1| $)) (-15 -3240 (|t#1| $)) (-15 -2766 ((-777) $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-3071 ((|#3| $) 87)) (-4379 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#3| "failed") $) 50)) (-3080 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#3| $) 47)) (-1836 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) 84) (((-695 |#3|) (-695 $)) 76)) (-3447 (($ $ (-1 |#3| |#3|)) 28) (($ $ (-1 |#3| |#3|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-2023 ((|#3| $) 89)) (-3005 ((|#4| $) 43)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#3|) 25)) (** (($ $ (-928)) NIL) (($ $ (-777)) 24) (($ $ (-570)) 95)))
+(((-1131 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-570))) (-15 -2023 (|#3| |#1|)) (-15 -3071 (|#3| |#1|)) (-15 -3005 (|#4| |#1|)) (-15 -1836 ((-695 |#3|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3735 ((-868) |#1|))) (-1132 |#2| |#3| |#4| |#5|) (-777) (-1058) (-240 |#2| |#3|) (-240 |#2| |#3|)) (T -1131))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-570))) (-15 -2023 (|#3| |#1|)) (-15 -3071 (|#3| |#1|)) (-15 -3005 (|#4| |#1|)) (-15 -1836 ((-695 |#3|) (-695 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -1836 ((-695 (-570)) (-695 |#1|))) (-15 -3735 (|#1| |#3|)) (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3447 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3071 ((|#2| $) 77)) (-1587 (((-112) $) 117)) (-4119 (((-3 $ "failed") $ $) 20)) (-3639 (((-112) $) 115)) (-4095 (((-112) $ (-777)) 107)) (-2465 (($ |#2|) 80)) (-3761 (($) 18 T CONST)) (-4321 (($ $) 134 (|has| |#2| (-311)))) (-1991 ((|#3| $ (-570)) 129)) (-4379 (((-3 (-570) "failed") $) 92 (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 89 (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) 86)) (-3080 (((-570) $) 91 (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) 88 (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) 87)) (-1836 (((-695 (-570)) (-695 $)) 84 (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 83 (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 82) (((-695 |#2|) (-695 $)) 81)) (-2937 (((-3 $ "failed") $) 37)) (-3933 (((-777) $) 135 (|has| |#2| (-562)))) (-3713 ((|#2| $ (-570) (-570)) 127)) (-2835 (((-650 |#2|) $) 100 (|has| $ (-6 -4449)))) (-4340 (((-112) $) 35)) (-2454 (((-777) $) 136 (|has| |#2| (-562)))) (-4296 (((-650 |#4|) $) 137 (|has| |#2| (-562)))) (-3155 (((-777) $) 123)) (-3167 (((-777) $) 124)) (-1586 (((-112) $ (-777)) 108)) (-2481 ((|#2| $) 72 (|has| |#2| (-6 (-4451 "*"))))) (-2055 (((-570) $) 119)) (-3295 (((-570) $) 121)) (-3201 (((-650 |#2|) $) 99 (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) 97 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-2755 (((-570) $) 120)) (-4067 (((-570) $) 122)) (-2427 (($ (-650 (-650 |#2|))) 114)) (-3776 (($ (-1 |#2| |#2|) $) 104 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2| |#2|) $ $) 131) (($ (-1 |#2| |#2|) $) 105)) (-3037 (((-650 (-650 |#2|)) $) 125)) (-2113 (((-112) $ (-777)) 109)) (-4268 (((-1168) $) 10)) (-3174 (((-3 $ "failed") $) 71 (|has| |#2| (-368)))) (-3479 (((-1129) $) 11)) (-2406 (((-3 $ "failed") $ |#2|) 132 (|has| |#2| (-562)))) (-2697 (((-112) (-1 (-112) |#2|) $) 102 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) 96 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 95 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 94 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 93 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) 113)) (-3366 (((-112) $) 110)) (-3006 (($) 111)) (-1877 ((|#2| $ (-570) (-570) |#2|) 128) ((|#2| $ (-570) (-570)) 126)) (-3447 (($ $ (-1 |#2| |#2|)) 56) (($ $ (-1 |#2| |#2|) (-777)) 55) (($ $ (-650 (-1186)) (-650 (-777))) 48 (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) 47 (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) 46 (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) 45 (|has| |#2| (-907 (-1186)))) (($ $ (-777)) 43 (|has| |#2| (-235))) (($ $) 41 (|has| |#2| (-235)))) (-2023 ((|#2| $) 76)) (-2682 (($ (-650 |#2|)) 79)) (-2593 (((-112) $) 116)) (-3005 ((|#3| $) 78)) (-2371 ((|#2| $) 73 (|has| |#2| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#2|) $) 101 (|has| $ (-6 -4449))) (((-777) |#2| $) 98 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 112)) (-1743 ((|#4| $ (-570)) 130)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 90 (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) 85)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2964 (((-112) (-1 (-112) |#2|) $) 103 (|has| $ (-6 -4449)))) (-3251 (((-112) $) 118)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) 54) (($ $ (-1 |#2| |#2|) (-777)) 53) (($ $ (-650 (-1186)) (-650 (-777))) 52 (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) 51 (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) 50 (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) 49 (|has| |#2| (-907 (-1186)))) (($ $ (-777)) 44 (|has| |#2| (-235))) (($ $) 42 (|has| |#2| (-235)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#2|) 133 (|has| |#2| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 70 (|has| |#2| (-368)))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#2|) 139) (($ |#2| $) 138) ((|#4| $ |#4|) 75) ((|#3| |#3| $) 74)) (-2426 (((-777) $) 106 (|has| $ (-6 -4449)))))
(((-1132 |#1| |#2| |#3| |#4|) (-141) (-777) (-1058) (-240 |t#1| |t#2|) (-240 |t#1| |t#2|)) (T -1132))
-((-4124 (*1 *1 *2) (-12 (-4 *2 (-1058)) (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)))) (-1990 (*1 *1 *2) (-12 (-5 *2 (-650 *4)) (-4 *4 (-1058)) (-4 *1 (-1132 *3 *4 *5 *6)) (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *3 *4)))) (-2640 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *2 (-240 *3 *4)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))) (-3440 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1132 *3 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *2 (-240 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *2 (-240 *3 *4)) (-4 *5 (-240 *3 *4)))) (-3154 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058)))) (-2265 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058)))) (-4260 (*1 *1 *1) (|partial| -12 (-4 *1 (-1132 *2 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-240 *2 *3)) (-4 *5 (-240 *2 *3)) (-4 *3 (-368)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1132 *3 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *3 *4)) (-4 *4 (-368)))))
-(-13 (-233 |t#2|) (-111 |t#2| |t#2|) (-1062 |t#1| |t#1| |t#2| |t#3| |t#4|) (-417 |t#2|) (-382 |t#2|) (-10 -8 (IF (|has| |t#2| (-174)) (-6 (-723 |t#2|)) |%noBranch|) (-15 -4124 ($ |t#2|)) (-15 -1990 ($ (-650 |t#2|))) (-15 -2640 (|t#3| $)) (-15 -3071 (|t#2| $)) (-15 -3440 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4450 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -3154 (|t#2| $)) (-15 -2265 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-368)) (PROGN (-15 -4260 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4450 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-622 #0=(-413 (-570))) |has| |#2| (-1047 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-233 |#2|) . T) ((-235) |has| |#2| (-235)) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-382 |#2|) . T) ((-417 |#2|) . T) ((-495 |#2|) . T) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-652 $) . T) ((-654 |#2|) . T) ((-654 $) . T) ((-646 |#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-6 (-4450 "*")))) ((-645 (-570)) |has| |#2| (-645 (-570))) ((-645 |#2|) . T) ((-723 |#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-6 (-4450 "*")))) ((-732) . T) ((-907 (-1186)) |has| |#2| (-907 (-1186))) ((-1062 |#1| |#1| |#2| |#3| |#4|) . T) ((-1047 #0#) |has| |#2| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#2| (-1047 (-570))) ((-1047 |#2|) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1226) . T))
-((-3932 ((|#4| |#4|) 81)) (-3681 ((|#4| |#4|) 76)) (-3038 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|))) |#4| |#3|) 91)) (-1585 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 80)) (-4228 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 78)))
-(((-1133 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3681 (|#4| |#4|)) (-15 -4228 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3932 (|#4| |#4|)) (-15 -1585 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3038 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|))) |#4| |#3|))) (-311) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1133))
-((-3038 (*1 *2 *3 *4) (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4)))) (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-1585 (*1 *2 *3) (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3932 (*1 *2 *2) (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-4228 (*1 *2 *3) (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-3681 (*1 *2 *2) (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
-(-10 -7 (-15 -3681 (|#4| |#4|)) (-15 -4228 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3932 (|#4| |#4|)) (-15 -1585 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3038 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2331 (-650 |#3|))) |#4| |#3|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 18)) (-1716 (((-650 |#2|) $) 174)) (-3703 (((-1182 $) $ |#2|) 60) (((-1182 |#1|) $) 49)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 116 (|has| |#1| (-562)))) (-3171 (($ $) 118 (|has| |#1| (-562)))) (-2720 (((-112) $) 120 (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 |#2|)) 213)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) 167) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 |#2| "failed") $) NIL)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#2| $) NIL)) (-1939 (($ $ $ |#2|) NIL (|has| |#1| (-174)))) (-1890 (($ $) 217)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) 90)) (-3543 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-537 |#2|) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#1| (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#1| (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-2081 (((-112) $) 20)) (-3797 (((-777) $) 30)) (-1704 (($ (-1182 |#1|) |#2|) 54) (($ (-1182 $) |#2|) 71)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) 38)) (-3872 (($ |#1| (-537 |#2|)) 78) (($ $ |#2| (-777)) 58) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ |#2|) NIL)) (-4341 (((-537 |#2|) $) 205) (((-777) $ |#2|) 206) (((-650 (-777)) $ (-650 |#2|)) 207)) (-4414 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) 128)) (-3382 (((-3 |#2| "failed") $) 177)) (-1855 (($ $) 216)) (-1864 ((|#1| $) 43)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| |#2|) (|:| -1907 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) 39)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 148 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 153 (|has| |#1| (-458))) (($ $ $) 138 (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2407 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 126 (|has| |#1| (-562)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) 180) (($ $ (-650 |#2|) (-650 |#1|)) 195) (($ $ |#2| $) 179) (($ $ (-650 |#2|) (-650 $)) 194)) (-2998 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3447 (($ $ |#2|) 215) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1601 (((-537 |#2|) $) 201) (((-777) $ |#2|) 196) (((-650 (-777)) $ (-650 |#2|)) 199)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| |#1| (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3030 ((|#1| $) 134 (|has| |#1| (-458))) (($ $ |#2|) 137 (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 159) (($ (-570)) 84) (($ |#1|) 85) (($ |#2|) 33) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3009 (((-650 |#1|) $) 162)) (-1715 ((|#1| $ (-537 |#2|)) 80) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) 87 T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) 123 (|has| |#1| (-562)))) (-1812 (($) 12 T CONST)) (-1823 (($) 14 T CONST)) (-2791 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2872 (((-112) $ $) 106)) (-2975 (($ $ |#1|) 132 (|has| |#1| (-368)))) (-2965 (($ $) 93) (($ $ $) 104)) (-2954 (($ $ $) 55)) (** (($ $ (-928)) 110) (($ $ (-777)) 109)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 96) (($ $ $) 72) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 99) (($ $ |#1|) NIL)))
+((-2465 (*1 *1 *2) (-12 (-4 *2 (-1058)) (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)))) (-2682 (*1 *1 *2) (-12 (-5 *2 (-650 *4)) (-4 *4 (-1058)) (-4 *1 (-1132 *3 *4 *5 *6)) (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *3 *4)))) (-3005 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *2 (-240 *3 *4)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))) (-2023 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1132 *3 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *2 (-240 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *2 (-240 *3 *4)) (-4 *5 (-240 *3 *4)))) (-2371 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058)))) (-2481 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058)))) (-3174 (*1 *1 *1) (|partial| -12 (-4 *1 (-1132 *2 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-240 *2 *3)) (-4 *5 (-240 *2 *3)) (-4 *3 (-368)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1132 *3 *4 *5 *6)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *3 *4)) (-4 *4 (-368)))))
+(-13 (-233 |t#2|) (-111 |t#2| |t#2|) (-1062 |t#1| |t#1| |t#2| |t#3| |t#4|) (-417 |t#2|) (-382 |t#2|) (-10 -8 (IF (|has| |t#2| (-174)) (-6 (-723 |t#2|)) |%noBranch|) (-15 -2465 ($ |t#2|)) (-15 -2682 ($ (-650 |t#2|))) (-15 -3005 (|t#3| $)) (-15 -3071 (|t#2| $)) (-15 -2023 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4451 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -2371 (|t#2| $)) (-15 -2481 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-368)) (PROGN (-15 -3174 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4451 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-622 #0=(-413 (-570))) |has| |#2| (-1047 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-233 |#2|) . T) ((-235) |has| |#2| (-235)) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-382 |#2|) . T) ((-417 |#2|) . T) ((-495 |#2|) . T) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-652 $) . T) ((-654 |#2|) . T) ((-654 $) . T) ((-646 |#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-6 (-4451 "*")))) ((-645 (-570)) |has| |#2| (-645 (-570))) ((-645 |#2|) . T) ((-723 |#2|) -2740 (|has| |#2| (-174)) (|has| |#2| (-6 (-4451 "*")))) ((-732) . T) ((-907 (-1186)) |has| |#2| (-907 (-1186))) ((-1062 |#1| |#1| |#2| |#3| |#4|) . T) ((-1047 #0#) |has| |#2| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#2| (-1047 (-570))) ((-1047 |#2|) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1227) . T))
+((-4291 ((|#4| |#4|) 81)) (-2469 ((|#4| |#4|) 76)) (-2460 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|))) |#4| |#3|) 91)) (-3068 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 80)) (-4172 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 78)))
+(((-1133 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2469 (|#4| |#4|)) (-15 -4172 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4291 (|#4| |#4|)) (-15 -3068 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2460 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|))) |#4| |#3|))) (-311) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1133))
+((-2460 (*1 *2 *3 *4) (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4)))) (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-3068 (*1 *2 *3) (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-4291 (*1 *2 *2) (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-4172 (*1 *2 *3) (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))) (-2469 (*1 *2 *2) (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(-10 -7 (-15 -2469 (|#4| |#4|)) (-15 -4172 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4291 (|#4| |#4|)) (-15 -3068 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2460 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2003 (-650 |#3|))) |#4| |#3|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 18)) (-1713 (((-650 |#2|) $) 174)) (-3702 (((-1182 $) $ |#2|) 60) (((-1182 |#1|) $) 49)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 116 (|has| |#1| (-562)))) (-1345 (($ $) 118 (|has| |#1| (-562)))) (-1372 (((-112) $) 120 (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 |#2|)) 213)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) 167) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 |#2| "failed") $) NIL)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#2| $) NIL)) (-3383 (($ $ $ |#2|) NIL (|has| |#1| (-174)))) (-1891 (($ $) 217)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) 90)) (-1767 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-537 |#2|) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#1| (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#1| (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4340 (((-112) $) 20)) (-2292 (((-777) $) 30)) (-1705 (($ (-1182 |#1|) |#2|) 54) (($ (-1182 $) |#2|) 71)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) 38)) (-3872 (($ |#1| (-537 |#2|)) 78) (($ $ |#2| (-777)) 58) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ |#2|) NIL)) (-2730 (((-537 |#2|) $) 205) (((-777) $ |#2|) 206) (((-650 (-777)) $ (-650 |#2|)) 207)) (-2206 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) 128)) (-2645 (((-3 |#2| "failed") $) 177)) (-1857 (($ $) 216)) (-1865 ((|#1| $) 43)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| |#2|) (|:| -3011 (-777))) "failed") $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) 39)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 148 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 153 (|has| |#1| (-458))) (($ $ $) 138 (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2406 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 126 (|has| |#1| (-562)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) 180) (($ $ (-650 |#2|) (-650 |#1|)) 195) (($ $ |#2| $) 179) (($ $ (-650 |#2|) (-650 $)) 194)) (-3290 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3447 (($ $ |#2|) 215) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3221 (((-537 |#2|) $) 201) (((-777) $ |#2|) 196) (((-650 (-777)) $ (-650 |#2|)) 199)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| |#1| (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| |#1| (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| |#1| (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3621 ((|#1| $) 134 (|has| |#1| (-458))) (($ $ |#2|) 137 (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3735 (((-868) $) 159) (($ (-570)) 84) (($ |#1|) 85) (($ |#2|) 33) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3405 (((-650 |#1|) $) 162)) (-1983 ((|#1| $ (-537 |#2|)) 80) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) 87 T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) 123 (|has| |#1| (-562)))) (-1814 (($) 12 T CONST)) (-1824 (($) 14 T CONST)) (-2791 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2872 (((-112) $ $) 106)) (-2975 (($ $ |#1|) 132 (|has| |#1| (-368)))) (-2965 (($ $) 93) (($ $ $) 104)) (-2953 (($ $ $) 55)) (** (($ $ (-928)) 110) (($ $ (-777)) 109)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 96) (($ $ $) 72) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 99) (($ $ |#1|) NIL)))
(((-1134 |#1| |#2|) (-956 |#1| (-537 |#2|) |#2|) (-1058) (-856)) (T -1134))
NIL
(-956 |#1| (-537 |#2|) |#2|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 |#2|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-2735 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-4087 (($ $) 156 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3208 (((-959 |#1|) $ (-777)) NIL) (((-959 |#1|) $ (-777) (-777)) NIL)) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-777) $ |#2|) NIL) (((-777) $ |#2| (-777)) NIL)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1550 (((-112) $) NIL)) (-3872 (($ $ (-650 |#2|) (-650 (-537 |#2|))) NIL) (($ $ |#2| (-537 |#2|)) NIL) (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 63) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3555 (($ $ |#2|) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ |#2| |#1|) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-3034 (($ (-1 $) |#2| |#1|) 174 (|has| |#1| (-38 (-413 (-570)))))) (-1558 (($ $ (-777)) 16)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4387 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (($ $ |#2| $) 106) (($ $ (-650 |#2|) (-650 $)) 99) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3447 (($ $ |#2|) 109) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1601 (((-537 |#2|) $) NIL)) (-3849 (((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|))) 87)) (-4099 (($ $) 158 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 18)) (-3735 (((-868) $) 199) (($ (-570)) NIL) (($ |#1|) 45 (|has| |#1| (-174))) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#2|) 70) (($ |#3|) 68)) (-1715 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL) ((|#3| $ (-777)) 43)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-1509 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 52 T CONST)) (-1823 (($) 62 T CONST)) (-2791 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) 201 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 66)) (** (($ $ (-928)) NIL) (($ $ (-777)) 77) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 112 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 65) (($ $ (-413 (-570))) 117 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 115 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 48) (($ $ |#1|) 49) (($ |#3| $) 47)))
-(((-1135 |#1| |#2| |#3|) (-13 (-746 |#1| |#2|) (-10 -8 (-15 -1715 (|#3| $ (-777))) (-15 -3735 ($ |#2|)) (-15 -3735 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -3849 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $ |#2| |#1|)) (-15 -3034 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1058) (-856) (-956 |#1| (-537 |#2|) |#2|)) (T -1135))
-((-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *2 (-956 *4 (-537 *5) *5)) (-5 *1 (-1135 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-856)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *2 (-856)) (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *4 (-856)) (-5 *1 (-1135 *3 *4 *2)) (-4 *2 (-956 *3 (-537 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-856)) (-5 *1 (-1135 *3 *4 *2)) (-4 *2 (-956 *3 (-537 *4) *4)))) (-3849 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1166 *7))) (-4 *6 (-856)) (-4 *7 (-956 *5 (-537 *6) *6)) (-4 *5 (-1058)) (-5 *2 (-1 (-1166 *7) *7)) (-5 *1 (-1135 *5 *6 *7)))) (-3555 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-4 *2 (-856)) (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2)))) (-3034 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1135 *4 *3 *5))) (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *1 (-1135 *4 *3 *5)) (-4 *5 (-956 *4 (-537 *3) *3)))))
-(-13 (-746 |#1| |#2|) (-10 -8 (-15 -1715 (|#3| $ (-777))) (-15 -3735 ($ |#2|)) (-15 -3735 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -3849 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $ |#2| |#1|)) (-15 -3034 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-2416 (((-112) $ $) 7)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) 86)) (-2411 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1716 (((-650 |#3|) $) 34)) (-3418 (((-112) $) 27)) (-1536 (((-112) $) 18 (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) 102) (((-112) $) 98)) (-4200 ((|#4| |#4| $) 93)) (-2222 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) 28)) (-3594 (((-112) $ (-777)) 45)) (-1424 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 80)) (-2450 (($) 46 T CONST)) (-3809 (((-112) $) 23 (|has| |#1| (-562)))) (-2730 (((-112) $ $) 25 (|has| |#1| (-562)))) (-1905 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2374 (((-112) $) 26 (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3742 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-2561 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1808 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) 106)) (-2974 (((-112) |#4| $) 137)) (-3333 (((-112) |#4| $) 134)) (-3052 (((-112) |#4| $) 138) (((-112) $) 135)) (-2836 (((-650 |#4|) $) 53 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) 105) (((-112) $) 104)) (-2711 ((|#3| $) 35)) (-2742 (((-112) $ (-777)) 44)) (-2849 (((-650 |#4|) $) 54 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 48)) (-3727 (((-650 |#3|) $) 33)) (-1844 (((-112) |#3| $) 32)) (-3452 (((-112) $ (-777)) 43)) (-1903 (((-1168) $) 10)) (-1796 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3769 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1728 (((-3 |#4| "failed") $) 84)) (-2395 (((-650 $) |#4| $) 130)) (-3235 (((-3 (-112) (-650 $)) |#4| $) 133)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2307 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2731 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3185 (((-650 |#4|) $) 108)) (-1329 (((-112) |#4| $) 100) (((-112) $) 96)) (-1695 ((|#4| |#4| $) 91)) (-4122 (((-112) $ $) 111)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) 101) (((-112) $) 97)) (-3339 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3802 (((-3 $ "failed") $ |#4|) 79)) (-1558 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1671 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) 39)) (-3329 (((-112) $) 42)) (-3743 (($) 41)) (-1601 (((-777) $) 107)) (-3486 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4448)))) (-3915 (($ $) 40)) (-1416 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 61)) (-4280 (($ $ |#3|) 29)) (-2185 (($ $ |#3|) 31)) (-1892 (($ $) 89)) (-1332 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-1633 (((-777) $) 77 (|has| |#3| (-373)))) (-1859 (((-112) $ $) 9)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4194 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4368 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) 82)) (-1985 (((-112) |#4| $) 136)) (-2663 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 |#2|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2735 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-4087 (($ $) 156 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3208 (((-959 |#1|) $ (-777)) NIL) (((-959 |#1|) $ (-777) (-777)) NIL)) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-777) $ |#2|) NIL) (((-777) $ |#2| (-777)) NIL)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4016 (((-112) $) NIL)) (-3872 (($ $ (-650 |#2|) (-650 (-537 |#2|))) NIL) (($ $ |#2| (-537 |#2|)) NIL) (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 63) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3722 (($ $ |#2|) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ |#2| |#1|) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-2432 (($ (-1 $) |#2| |#1|) 174 (|has| |#1| (-38 (-413 (-570)))))) (-4102 (($ $ (-777)) 16)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4388 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (($ $ |#2| $) 106) (($ $ (-650 |#2|) (-650 $)) 99) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3447 (($ $ |#2|) 109) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3221 (((-537 |#2|) $) NIL)) (-1610 (((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|))) 87)) (-4098 (($ $) 158 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 18)) (-3735 (((-868) $) 199) (($ (-570)) NIL) (($ |#1|) 45 (|has| |#1| (-174))) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#2|) 70) (($ |#3|) 68)) (-1983 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL) ((|#3| $ (-777)) 43)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-1510 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 52 T CONST)) (-1824 (($) 62 T CONST)) (-2791 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) 201 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 66)) (** (($ $ (-928)) NIL) (($ $ (-777)) 77) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 112 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 65) (($ $ (-413 (-570))) 117 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 115 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 48) (($ $ |#1|) 49) (($ |#3| $) 47)))
+(((-1135 |#1| |#2| |#3|) (-13 (-746 |#1| |#2|) (-10 -8 (-15 -1983 (|#3| $ (-777))) (-15 -3735 ($ |#2|)) (-15 -3735 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1610 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $ |#2| |#1|)) (-15 -2432 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1058) (-856) (-956 |#1| (-537 |#2|) |#2|)) (T -1135))
+((-1983 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *2 (-956 *4 (-537 *5) *5)) (-5 *1 (-1135 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-856)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *2 (-856)) (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2)))) (-3735 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *4 (-856)) (-5 *1 (-1135 *3 *4 *2)) (-4 *2 (-956 *3 (-537 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-856)) (-5 *1 (-1135 *3 *4 *2)) (-4 *2 (-956 *3 (-537 *4) *4)))) (-1610 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1166 *7))) (-4 *6 (-856)) (-4 *7 (-956 *5 (-537 *6) *6)) (-4 *5 (-1058)) (-5 *2 (-1 (-1166 *7) *7)) (-5 *1 (-1135 *5 *6 *7)))) (-3722 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-4 *2 (-856)) (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2)))) (-2432 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1135 *4 *3 *5))) (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *1 (-1135 *4 *3 *5)) (-4 *5 (-956 *4 (-537 *3) *3)))))
+(-13 (-746 |#1| |#2|) (-10 -8 (-15 -1983 (|#3| $ (-777))) (-15 -3735 ($ |#2|)) (-15 -3735 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1610 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $ |#2| |#1|)) (-15 -2432 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-2417 (((-112) $ $) 7)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) 86)) (-1556 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1713 (((-650 |#3|) $) 34)) (-2977 (((-112) $) 27)) (-3873 (((-112) $) 18 (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) 102) (((-112) $) 98)) (-3870 ((|#4| |#4| $) 93)) (-3252 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 127)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) 28)) (-4095 (((-112) $ (-777)) 45)) (-1425 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-3761 (($) 46 T CONST)) (-2391 (((-112) $) 23 (|has| |#1| (-562)))) (-1475 (((-112) $ $) 25 (|has| |#1| (-562)))) (-2993 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2376 (((-112) $) 26 (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2996 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-3565 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) 106)) (-3045 (((-112) |#4| $) 137)) (-3412 (((-112) |#4| $) 134)) (-2561 (((-112) |#4| $) 138) (((-112) $) 135)) (-2835 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) 105) (((-112) $) 104)) (-2451 ((|#3| $) 35)) (-1586 (((-112) $ (-777)) 44)) (-3201 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 48)) (-2881 (((-650 |#3|) $) 33)) (-3710 (((-112) |#3| $) 32)) (-2113 (((-112) $ (-777)) 43)) (-4268 (((-1168) $) 10)) (-1444 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-2068 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 128)) (-1729 (((-3 |#4| "failed") $) 84)) (-1403 (((-650 $) |#4| $) 130)) (-3840 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2885 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1486 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-1507 (((-650 |#4|) $) 108)) (-1810 (((-112) |#4| $) 100) (((-112) $) 96)) (-1831 ((|#4| |#4| $) 91)) (-2458 (((-112) $ $) 111)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) 101) (((-112) $) 97)) (-3464 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2329 (((-3 $ "failed") $ |#4|) 79)) (-4102 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-2697 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) 39)) (-3366 (((-112) $) 42)) (-3006 (($) 41)) (-3221 (((-777) $) 107)) (-3490 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3916 (($ $) 40)) (-1417 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 61)) (-3408 (($ $ |#3|) 29)) (-4164 (($ $ |#3|) 31)) (-4148 (($ $) 89)) (-1842 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3580 (((-777) $) 77 (|has| |#3| (-373)))) (-3866 (((-112) $ $) 9)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-3811 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-2964 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) 82)) (-2626 (((-112) |#4| $) 136)) (-2048 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
(((-1136 |#1| |#2| |#3| |#4|) (-141) (-458) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1136))
NIL
(-13 (-1118 |t#1| |t#2| |t#3| |t#4|) (-790 |t#1| |t#2| |t#3| |t#4|))
-(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-790 |#1| |#2| |#3| |#4|) . T) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1080 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1118 |#1| |#2| |#3| |#4|) . T) ((-1219 |#1| |#2| |#3| |#4|) . T) ((-1226) . T))
-((-1654 (((-650 |#2|) |#1|) 15)) (-3064 (((-650 |#2|) |#2| |#2| |#2| |#2| |#2|) 47) (((-650 |#2|) |#1|) 63)) (-2042 (((-650 |#2|) |#2| |#2| |#2|) 45) (((-650 |#2|) |#1|) 61)) (-1974 ((|#2| |#1|) 56)) (-2781 (((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 20)) (-3730 (((-650 |#2|) |#2| |#2|) 42) (((-650 |#2|) |#1|) 60)) (-2145 (((-650 |#2|) |#2| |#2| |#2| |#2|) 46) (((-650 |#2|) |#1|) 62)) (-1786 ((|#2| |#2| |#2| |#2| |#2| |#2|) 55)) (-2794 ((|#2| |#2| |#2| |#2|) 53)) (-1928 ((|#2| |#2| |#2|) 52)) (-2658 ((|#2| |#2| |#2| |#2| |#2|) 54)))
-(((-1137 |#1| |#2|) (-10 -7 (-15 -1654 ((-650 |#2|) |#1|)) (-15 -1974 (|#2| |#1|)) (-15 -2781 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3730 ((-650 |#2|) |#1|)) (-15 -2042 ((-650 |#2|) |#1|)) (-15 -2145 ((-650 |#2|) |#1|)) (-15 -3064 ((-650 |#2|) |#1|)) (-15 -3730 ((-650 |#2|) |#2| |#2|)) (-15 -2042 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -2145 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3064 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1928 (|#2| |#2| |#2|)) (-15 -2794 (|#2| |#2| |#2| |#2|)) (-15 -2658 (|#2| |#2| |#2| |#2| |#2|)) (-15 -1786 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1252 |#2|) (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (T -1137))
-((-1786 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))) (-2658 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))) (-2794 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))) (-1928 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))) (-3064 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))) (-2145 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))) (-2042 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))) (-3730 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))) (-3064 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4)))) (-2145 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4)))) (-2042 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4)))) (-3730 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4)))) (-2781 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-2 (|:| |solns| (-650 *5)) (|:| |maps| (-650 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1137 *3 *5)) (-4 *3 (-1252 *5)))) (-1974 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))) (-1654 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -1654 ((-650 |#2|) |#1|)) (-15 -1974 (|#2| |#1|)) (-15 -2781 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3730 ((-650 |#2|) |#1|)) (-15 -2042 ((-650 |#2|) |#1|)) (-15 -2145 ((-650 |#2|) |#1|)) (-15 -3064 ((-650 |#2|) |#1|)) (-15 -3730 ((-650 |#2|) |#2| |#2|)) (-15 -2042 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -2145 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3064 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1928 (|#2| |#2| |#2|)) (-15 -2794 (|#2| |#2| |#2| |#2|)) (-15 -2658 (|#2| |#2| |#2| |#2| |#2|)) (-15 -1786 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-3094 (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|))))) 118) (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186))) 117) (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|)))) 115) (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 113) (((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|)))) 97) (((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186)) 98) (((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|))) 92) (((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186)) 82)) (-2507 (((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 111) (((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186)) 54)) (-3266 (((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186)) 122) (((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186)) 121)))
-(((-1138 |#1|) (-10 -7 (-15 -3094 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3094 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -3094 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -3094 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -2507 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -2507 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3266 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -3266 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -1138))
-((-3266 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-3266 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-2507 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-320 *5)))) (-5 *1 (-1138 *5)))) (-2507 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-320 *5))) (-5 *1 (-1138 *5)))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-650 (-298 (-413 (-959 *4))))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *4))))) (-5 *1 (-1138 *4)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-298 (-413 (-959 *5))))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *4))))) (-5 *1 (-1138 *4)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1138 *5)))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1138 *5)))))
-(-10 -7 (-15 -3094 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -3094 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -3094 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -3094 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -3094 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -2507 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -2507 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3266 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -3266 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186))))
-((-4299 (((-413 (-1182 (-320 |#1|))) (-1276 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)) 38)) (-2853 (((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|)))) 49)))
-(((-1139 |#1|) (-10 -7 (-15 -2853 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -4299 ((-413 (-1182 (-320 |#1|))) (-1276 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)))) (-562)) (T -1139))
-((-4299 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-413 (-1182 (-320 *5)))) (-5 *3 (-1276 (-320 *5))) (-5 *4 (-570)) (-4 *5 (-562)) (-5 *1 (-1139 *5)))) (-2853 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562)) (-5 *1 (-1139 *3)))))
-(-10 -7 (-15 -2853 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -4299 ((-413 (-1182 (-320 |#1|))) (-1276 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570))))
-((-1654 (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))) 246) (((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186)) 23) (((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186)) 29) (((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|))) 28) (((-650 (-298 (-320 |#1|))) (-320 |#1|)) 24)))
-(((-1140 |#1|) (-10 -7 (-15 -1654 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -1654 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -1654 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -1654 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -1654 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (T -1140))
-((-1654 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1140 *5)) (-5 *3 (-650 (-298 (-320 *5)))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5)) (-5 *3 (-320 *5)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5)) (-5 *3 (-298 (-320 *5))))) (-1654 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4)) (-5 *3 (-298 (-320 *4))))) (-1654 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4)) (-5 *3 (-320 *4)))))
-(-10 -7 (-15 -1654 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -1654 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -1654 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -1654 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -1654 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186)))))
-((-3196 ((|#2| |#2|) 30 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 27)) (-4311 ((|#2| |#2|) 29 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 22)))
-(((-1141 |#1| |#2|) (-10 -7 (-15 -4311 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -3196 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -4311 (|#2| |#2|)) (-15 -3196 (|#2| |#2|))) |%noBranch|)) (-1226) (-13 (-610 (-570) |#1|) (-10 -7 (-6 -4448) (-6 -4449)))) (T -1141))
-((-3196 (*1 *2 *2) (-12 (-4 *3 (-856)) (-4 *3 (-1226)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4448) (-6 -4449)))))) (-4311 (*1 *2 *2) (-12 (-4 *3 (-856)) (-4 *3 (-1226)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4448) (-6 -4449)))))) (-3196 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-1141 *4 *2)) (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4448) (-6 -4449)))))) (-4311 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-1141 *4 *2)) (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4448) (-6 -4449)))))))
-(-10 -7 (-15 -4311 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -3196 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -4311 (|#2| |#2|)) (-15 -3196 (|#2| |#2|))) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-2779 (((-1174 3 |#1|) $) 141)) (-2131 (((-112) $) 101)) (-4049 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 104) (($ (-650 (-950 |#1|))) 103) (((-650 (-950 |#1|)) $) 102)) (-3032 (((-112) $) 72)) (-3214 (($ $ (-950 |#1|)) 76) (($ $ (-650 |#1|)) 81) (($ $ (-777)) 83) (($ (-950 |#1|)) 77) (((-950 |#1|) $) 75)) (-4348 (((-2 (|:| -3178 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 139)) (-2560 (((-777) $) 53)) (-3858 (((-777) $) 52)) (-1773 (($ $ (-777) (-950 |#1|)) 67)) (-4182 (((-112) $) 111)) (-4263 (($ $ (-650 (-650 (-950 |#1|))) (-650 (-173)) (-173)) 118) (($ $ (-650 (-650 (-650 |#1|))) (-650 (-173)) (-173)) 120) (($ $ (-650 (-650 (-950 |#1|))) (-112) (-112)) 115) (($ $ (-650 (-650 (-650 |#1|))) (-112) (-112)) 127) (($ (-650 (-650 (-950 |#1|)))) 116) (($ (-650 (-650 (-950 |#1|))) (-112) (-112)) 117) (((-650 (-650 (-950 |#1|))) $) 114)) (-3068 (($ (-650 $)) 56) (($ $ $) 57)) (-3155 (((-650 (-173)) $) 133)) (-3246 (((-650 (-950 |#1|)) $) 130)) (-2287 (((-650 (-650 (-173))) $) 132)) (-4172 (((-650 (-650 (-650 (-950 |#1|)))) $) NIL)) (-2068 (((-650 (-650 (-650 (-777)))) $) 131)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3705 (((-777) $ (-650 (-950 |#1|))) 65)) (-3259 (((-112) $) 84)) (-2345 (($ $ (-650 (-950 |#1|))) 86) (($ $ (-650 (-650 |#1|))) 92) (($ (-650 (-950 |#1|))) 87) (((-650 (-950 |#1|)) $) 85)) (-2616 (($) 48) (($ (-1174 3 |#1|)) 49)) (-3915 (($ $) 63)) (-2925 (((-650 $) $) 62)) (-2486 (($ (-650 $)) 59)) (-2111 (((-650 $) $) 61)) (-3735 (((-868) $) 146)) (-2437 (((-112) $) 94)) (-4241 (($ $ (-650 (-950 |#1|))) 96) (($ $ (-650 (-650 |#1|))) 99) (($ (-650 (-950 |#1|))) 97) (((-650 (-950 |#1|)) $) 95)) (-2275 (($ $) 140)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-790 |#1| |#2| |#3| |#4|) . T) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1080 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1118 |#1| |#2| |#3| |#4|) . T) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
+((-2524 (((-650 |#2|) |#1|) 15)) (-2683 (((-650 |#2|) |#2| |#2| |#2| |#2| |#2|) 47) (((-650 |#2|) |#1|) 63)) (-2056 (((-650 |#2|) |#2| |#2| |#2|) 45) (((-650 |#2|) |#1|) 61)) (-2521 ((|#2| |#1|) 56)) (-3806 (((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 20)) (-3730 (((-650 |#2|) |#2| |#2|) 42) (((-650 |#2|) |#1|) 60)) (-3741 (((-650 |#2|) |#2| |#2| |#2| |#2|) 46) (((-650 |#2|) |#1|) 62)) (-1337 ((|#2| |#2| |#2| |#2| |#2| |#2|) 55)) (-3922 ((|#2| |#2| |#2| |#2|) 53)) (-3242 ((|#2| |#2| |#2|) 52)) (-2019 ((|#2| |#2| |#2| |#2| |#2|) 54)))
+(((-1137 |#1| |#2|) (-10 -7 (-15 -2524 ((-650 |#2|) |#1|)) (-15 -2521 (|#2| |#1|)) (-15 -3806 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3730 ((-650 |#2|) |#1|)) (-15 -2056 ((-650 |#2|) |#1|)) (-15 -3741 ((-650 |#2|) |#1|)) (-15 -2683 ((-650 |#2|) |#1|)) (-15 -3730 ((-650 |#2|) |#2| |#2|)) (-15 -2056 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -3741 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2683 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3242 (|#2| |#2| |#2|)) (-15 -3922 (|#2| |#2| |#2| |#2|)) (-15 -2019 (|#2| |#2| |#2| |#2| |#2|)) (-15 -1337 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1253 |#2|) (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (T -1137))
+((-1337 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-2019 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-3922 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-3242 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-2683 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))) (-3741 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))) (-2056 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))) (-3730 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))) (-2683 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4)))) (-3741 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4)))) (-2056 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4)))) (-3730 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4)))) (-3806 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-2 (|:| |solns| (-650 *5)) (|:| |maps| (-650 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1137 *3 *5)) (-4 *3 (-1253 *5)))) (-2521 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-2524 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2524 ((-650 |#2|) |#1|)) (-15 -2521 (|#2| |#1|)) (-15 -3806 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3730 ((-650 |#2|) |#1|)) (-15 -2056 ((-650 |#2|) |#1|)) (-15 -3741 ((-650 |#2|) |#1|)) (-15 -2683 ((-650 |#2|) |#1|)) (-15 -3730 ((-650 |#2|) |#2| |#2|)) (-15 -2056 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -3741 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2683 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3242 (|#2| |#2| |#2|)) (-15 -3922 (|#2| |#2| |#2| |#2|)) (-15 -2019 (|#2| |#2| |#2| |#2| |#2|)) (-15 -1337 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-2940 (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|))))) 118) (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186))) 117) (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|)))) 115) (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 113) (((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|)))) 97) (((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186)) 98) (((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|))) 92) (((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186)) 82)) (-4327 (((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 111) (((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186)) 54)) (-4103 (((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186)) 122) (((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186)) 121)))
+(((-1138 |#1|) (-10 -7 (-15 -2940 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2940 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -2940 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2940 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -4327 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -4327 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -4103 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -4103 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -1138))
+((-4103 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-4103 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-4327 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-320 *5)))) (-5 *1 (-1138 *5)))) (-4327 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-320 *5))) (-5 *1 (-1138 *5)))) (-2940 (*1 *2 *3) (-12 (-5 *3 (-650 (-298 (-413 (-959 *4))))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *4))))) (-5 *1 (-1138 *4)))) (-2940 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-298 (-413 (-959 *5))))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-2940 (*1 *2 *3) (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *4))))) (-5 *1 (-1138 *4)))) (-2940 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1138 *5)))) (-2940 (*1 *2 *3) (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4)))) (-2940 (*1 *2 *3 *4) (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1138 *5)))) (-2940 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4)))) (-2940 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1138 *5)))))
+(-10 -7 (-15 -2940 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2940 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -2940 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2940 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2940 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -4327 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -4327 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -4103 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -4103 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186))))
+((-3592 (((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)) 38)) (-3250 (((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|)))) 49)))
+(((-1139 |#1|) (-10 -7 (-15 -3250 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -3592 ((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)))) (-562)) (T -1139))
+((-3592 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-413 (-1182 (-320 *5)))) (-5 *3 (-1277 (-320 *5))) (-5 *4 (-570)) (-4 *5 (-562)) (-5 *1 (-1139 *5)))) (-3250 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562)) (-5 *1 (-1139 *3)))))
+(-10 -7 (-15 -3250 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -3592 ((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570))))
+((-2524 (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))) 246) (((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186)) 23) (((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186)) 29) (((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|))) 28) (((-650 (-298 (-320 |#1|))) (-320 |#1|)) 24)))
+(((-1140 |#1|) (-10 -7 (-15 -2524 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -2524 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -2524 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -2524 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -2524 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (T -1140))
+((-2524 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1140 *5)) (-5 *3 (-650 (-298 (-320 *5)))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5)) (-5 *3 (-320 *5)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5)) (-5 *3 (-298 (-320 *5))))) (-2524 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4)) (-5 *3 (-298 (-320 *4))))) (-2524 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4)) (-5 *3 (-320 *4)))))
+(-10 -7 (-15 -2524 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -2524 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -2524 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -2524 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -2524 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186)))))
+((-1618 ((|#2| |#2|) 30 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 27)) (-3678 ((|#2| |#2|) 29 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 22)))
+(((-1141 |#1| |#2|) (-10 -7 (-15 -3678 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -1618 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -3678 (|#2| |#2|)) (-15 -1618 (|#2| |#2|))) |%noBranch|)) (-1227) (-13 (-610 (-570) |#1|) (-10 -7 (-6 -4449) (-6 -4450)))) (T -1141))
+((-1618 (*1 *2 *2) (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4449) (-6 -4450)))))) (-3678 (*1 *2 *2) (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4449) (-6 -4450)))))) (-1618 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-1141 *4 *2)) (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4449) (-6 -4450)))))) (-3678 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-1141 *4 *2)) (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4449) (-6 -4450)))))))
+(-10 -7 (-15 -3678 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -1618 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -3678 (|#2| |#2|)) (-15 -1618 (|#2| |#2|))) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-3796 (((-1174 3 |#1|) $) 141)) (-1760 (((-112) $) 101)) (-2947 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 104) (($ (-650 (-950 |#1|))) 103) (((-650 (-950 |#1|)) $) 102)) (-2414 (((-112) $) 72)) (-3213 (($ $ (-950 |#1|)) 76) (($ $ (-650 |#1|)) 81) (($ $ (-777)) 83) (($ (-950 |#1|)) 77) (((-950 |#1|) $) 75)) (-4350 (((-2 (|:| -1424 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 139)) (-3554 (((-777) $) 53)) (-1697 (((-777) $) 52)) (-4344 (($ $ (-777) (-950 |#1|)) 67)) (-1879 (((-112) $) 111)) (-3207 (($ $ (-650 (-650 (-950 |#1|))) (-650 (-173)) (-173)) 118) (($ $ (-650 (-650 (-650 |#1|))) (-650 (-173)) (-173)) 120) (($ $ (-650 (-650 (-950 |#1|))) (-112) (-112)) 115) (($ $ (-650 (-650 (-650 |#1|))) (-112) (-112)) 127) (($ (-650 (-650 (-950 |#1|)))) 116) (($ (-650 (-650 (-950 |#1|))) (-112) (-112)) 117) (((-650 (-650 (-950 |#1|))) $) 114)) (-2727 (($ (-650 $)) 56) (($ $ $) 57)) (-2380 (((-650 (-173)) $) 133)) (-3246 (((-650 (-950 |#1|)) $) 130)) (-2679 (((-650 (-650 (-173))) $) 132)) (-1782 (((-650 (-650 (-650 (-950 |#1|)))) $) NIL)) (-2289 (((-650 (-650 (-650 (-777)))) $) 131)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2685 (((-777) $ (-650 (-950 |#1|))) 65)) (-4049 (((-112) $) 84)) (-2132 (($ $ (-650 (-950 |#1|))) 86) (($ $ (-650 (-650 |#1|))) 92) (($ (-650 (-950 |#1|))) 87) (((-650 (-950 |#1|)) $) 85)) (-2820 (($) 48) (($ (-1174 3 |#1|)) 49)) (-3916 (($ $) 63)) (-3867 (((-650 $) $) 62)) (-4099 (($ (-650 $)) 59)) (-1550 (((-650 $) $) 61)) (-3735 (((-868) $) 146)) (-1802 (((-112) $) 94)) (-4308 (($ $ (-650 (-950 |#1|))) 96) (($ $ (-650 (-650 |#1|))) 99) (($ (-650 (-950 |#1|))) 97) (((-650 (-950 |#1|)) $) 95)) (-2567 (($ $) 140)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-1142 |#1|) (-1143 |#1|) (-1058)) (T -1142))
NIL
(-1143 |#1|)
-((-2416 (((-112) $ $) 7)) (-2779 (((-1174 3 |#1|) $) 14)) (-2131 (((-112) $) 30)) (-4049 (($ $ (-650 (-950 |#1|))) 34) (($ $ (-650 (-650 |#1|))) 33) (($ (-650 (-950 |#1|))) 32) (((-650 (-950 |#1|)) $) 31)) (-3032 (((-112) $) 45)) (-3214 (($ $ (-950 |#1|)) 50) (($ $ (-650 |#1|)) 49) (($ $ (-777)) 48) (($ (-950 |#1|)) 47) (((-950 |#1|) $) 46)) (-4348 (((-2 (|:| -3178 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 16)) (-2560 (((-777) $) 59)) (-3858 (((-777) $) 60)) (-1773 (($ $ (-777) (-950 |#1|)) 51)) (-4182 (((-112) $) 22)) (-4263 (($ $ (-650 (-650 (-950 |#1|))) (-650 (-173)) (-173)) 29) (($ $ (-650 (-650 (-650 |#1|))) (-650 (-173)) (-173)) 28) (($ $ (-650 (-650 (-950 |#1|))) (-112) (-112)) 27) (($ $ (-650 (-650 (-650 |#1|))) (-112) (-112)) 26) (($ (-650 (-650 (-950 |#1|)))) 25) (($ (-650 (-650 (-950 |#1|))) (-112) (-112)) 24) (((-650 (-650 (-950 |#1|))) $) 23)) (-3068 (($ (-650 $)) 58) (($ $ $) 57)) (-3155 (((-650 (-173)) $) 17)) (-3246 (((-650 (-950 |#1|)) $) 21)) (-2287 (((-650 (-650 (-173))) $) 18)) (-4172 (((-650 (-650 (-650 (-950 |#1|)))) $) 19)) (-2068 (((-650 (-650 (-650 (-777)))) $) 20)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3705 (((-777) $ (-650 (-950 |#1|))) 52)) (-3259 (((-112) $) 40)) (-2345 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 43) (($ (-650 (-950 |#1|))) 42) (((-650 (-950 |#1|)) $) 41)) (-2616 (($) 62) (($ (-1174 3 |#1|)) 61)) (-3915 (($ $) 53)) (-2925 (((-650 $) $) 54)) (-2486 (($ (-650 $)) 56)) (-2111 (((-650 $) $) 55)) (-3735 (((-868) $) 12)) (-2437 (((-112) $) 35)) (-4241 (($ $ (-650 (-950 |#1|))) 39) (($ $ (-650 (-650 |#1|))) 38) (($ (-650 (-950 |#1|))) 37) (((-650 (-950 |#1|)) $) 36)) (-2275 (($ $) 15)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-2417 (((-112) $ $) 7)) (-3796 (((-1174 3 |#1|) $) 14)) (-1760 (((-112) $) 30)) (-2947 (($ $ (-650 (-950 |#1|))) 34) (($ $ (-650 (-650 |#1|))) 33) (($ (-650 (-950 |#1|))) 32) (((-650 (-950 |#1|)) $) 31)) (-2414 (((-112) $) 45)) (-3213 (($ $ (-950 |#1|)) 50) (($ $ (-650 |#1|)) 49) (($ $ (-777)) 48) (($ (-950 |#1|)) 47) (((-950 |#1|) $) 46)) (-4350 (((-2 (|:| -1424 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 16)) (-3554 (((-777) $) 59)) (-1697 (((-777) $) 60)) (-4344 (($ $ (-777) (-950 |#1|)) 51)) (-1879 (((-112) $) 22)) (-3207 (($ $ (-650 (-650 (-950 |#1|))) (-650 (-173)) (-173)) 29) (($ $ (-650 (-650 (-650 |#1|))) (-650 (-173)) (-173)) 28) (($ $ (-650 (-650 (-950 |#1|))) (-112) (-112)) 27) (($ $ (-650 (-650 (-650 |#1|))) (-112) (-112)) 26) (($ (-650 (-650 (-950 |#1|)))) 25) (($ (-650 (-650 (-950 |#1|))) (-112) (-112)) 24) (((-650 (-650 (-950 |#1|))) $) 23)) (-2727 (($ (-650 $)) 58) (($ $ $) 57)) (-2380 (((-650 (-173)) $) 17)) (-3246 (((-650 (-950 |#1|)) $) 21)) (-2679 (((-650 (-650 (-173))) $) 18)) (-1782 (((-650 (-650 (-650 (-950 |#1|)))) $) 19)) (-2289 (((-650 (-650 (-650 (-777)))) $) 20)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2685 (((-777) $ (-650 (-950 |#1|))) 52)) (-4049 (((-112) $) 40)) (-2132 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 43) (($ (-650 (-950 |#1|))) 42) (((-650 (-950 |#1|)) $) 41)) (-2820 (($) 62) (($ (-1174 3 |#1|)) 61)) (-3916 (($ $) 53)) (-3867 (((-650 $) $) 54)) (-4099 (($ (-650 $)) 56)) (-1550 (((-650 $) $) 55)) (-3735 (((-868) $) 12)) (-1802 (((-112) $) 35)) (-4308 (($ $ (-650 (-950 |#1|))) 39) (($ $ (-650 (-650 |#1|))) 38) (($ (-650 (-950 |#1|))) 37) (((-650 (-950 |#1|)) $) 36)) (-2567 (($ $) 15)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-1143 |#1|) (-141) (-1058)) (T -1143))
-((-3735 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-868)))) (-2616 (*1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2616 (*1 *1 *2) (-12 (-5 *2 (-1174 3 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3858 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2560 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-3068 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3068 (*1 *1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2486 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2111 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-2925 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-3915 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-3705 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-1773 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *4)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-3214 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3214 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3214 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3214 (*1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3214 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-950 *3)))) (-3032 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-2345 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2345 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2345 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-2345 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-3259 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-4241 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4241 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4241 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-4241 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-2437 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-4049 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4049 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4049 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-4049 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-2131 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-4263 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-650 (-950 *5)))) (-5 *3 (-650 (-173))) (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058)))) (-4263 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-650 (-173))) (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058)))) (-4263 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-4263 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-4263 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 *3)))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-4263 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *4 (-1058)) (-4 *1 (-1143 *4)))) (-4263 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-950 *3)))))) (-4182 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3246 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-777))))))) (-4172 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-950 *3))))))) (-2287 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))) (-3155 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))) (-4348 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3178 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777)))))) (-2275 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2779 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-1174 3 *3)))))
-(-13 (-1109) (-10 -8 (-15 -2616 ($)) (-15 -2616 ($ (-1174 3 |t#1|))) (-15 -3858 ((-777) $)) (-15 -2560 ((-777) $)) (-15 -3068 ($ (-650 $))) (-15 -3068 ($ $ $)) (-15 -2486 ($ (-650 $))) (-15 -2111 ((-650 $) $)) (-15 -2925 ((-650 $) $)) (-15 -3915 ($ $)) (-15 -3705 ((-777) $ (-650 (-950 |t#1|)))) (-15 -1773 ($ $ (-777) (-950 |t#1|))) (-15 -3214 ($ $ (-950 |t#1|))) (-15 -3214 ($ $ (-650 |t#1|))) (-15 -3214 ($ $ (-777))) (-15 -3214 ($ (-950 |t#1|))) (-15 -3214 ((-950 |t#1|) $)) (-15 -3032 ((-112) $)) (-15 -2345 ($ $ (-650 (-950 |t#1|)))) (-15 -2345 ($ $ (-650 (-650 |t#1|)))) (-15 -2345 ($ (-650 (-950 |t#1|)))) (-15 -2345 ((-650 (-950 |t#1|)) $)) (-15 -3259 ((-112) $)) (-15 -4241 ($ $ (-650 (-950 |t#1|)))) (-15 -4241 ($ $ (-650 (-650 |t#1|)))) (-15 -4241 ($ (-650 (-950 |t#1|)))) (-15 -4241 ((-650 (-950 |t#1|)) $)) (-15 -2437 ((-112) $)) (-15 -4049 ($ $ (-650 (-950 |t#1|)))) (-15 -4049 ($ $ (-650 (-650 |t#1|)))) (-15 -4049 ($ (-650 (-950 |t#1|)))) (-15 -4049 ((-650 (-950 |t#1|)) $)) (-15 -2131 ((-112) $)) (-15 -4263 ($ $ (-650 (-650 (-950 |t#1|))) (-650 (-173)) (-173))) (-15 -4263 ($ $ (-650 (-650 (-650 |t#1|))) (-650 (-173)) (-173))) (-15 -4263 ($ $ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -4263 ($ $ (-650 (-650 (-650 |t#1|))) (-112) (-112))) (-15 -4263 ($ (-650 (-650 (-950 |t#1|))))) (-15 -4263 ($ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -4263 ((-650 (-650 (-950 |t#1|))) $)) (-15 -4182 ((-112) $)) (-15 -3246 ((-650 (-950 |t#1|)) $)) (-15 -2068 ((-650 (-650 (-650 (-777)))) $)) (-15 -4172 ((-650 (-650 (-650 (-950 |t#1|)))) $)) (-15 -2287 ((-650 (-650 (-173))) $)) (-15 -3155 ((-650 (-173)) $)) (-15 -4348 ((-2 (|:| -3178 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $)) (-15 -2275 ($ $)) (-15 -2779 ((-1174 3 |t#1|) $)) (-15 -3735 ((-868) $))))
+((-3735 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-868)))) (-2820 (*1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2820 (*1 *1 *2) (-12 (-5 *2 (-1174 3 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-1697 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-3554 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2727 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2727 (*1 *1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-4099 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1550 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-3867 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-3916 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2685 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-4344 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *4)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3213 (*1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3213 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-950 *3)))) (-2414 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-2132 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2132 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2132 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-2132 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-4049 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-4308 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4308 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4308 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-4308 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-1802 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-2947 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2947 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2947 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-1760 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3207 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-650 (-950 *5)))) (-5 *3 (-650 (-173))) (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058)))) (-3207 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-650 (-173))) (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058)))) (-3207 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-3207 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-3207 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 *3)))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3207 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *4 (-1058)) (-4 *1 (-1143 *4)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-950 *3)))))) (-1879 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3246 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-2289 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-777))))))) (-1782 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-950 *3))))))) (-2679 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))) (-2380 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))) (-4350 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -1424 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777)))))) (-2567 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-3796 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-1174 3 *3)))))
+(-13 (-1109) (-10 -8 (-15 -2820 ($)) (-15 -2820 ($ (-1174 3 |t#1|))) (-15 -1697 ((-777) $)) (-15 -3554 ((-777) $)) (-15 -2727 ($ (-650 $))) (-15 -2727 ($ $ $)) (-15 -4099 ($ (-650 $))) (-15 -1550 ((-650 $) $)) (-15 -3867 ((-650 $) $)) (-15 -3916 ($ $)) (-15 -2685 ((-777) $ (-650 (-950 |t#1|)))) (-15 -4344 ($ $ (-777) (-950 |t#1|))) (-15 -3213 ($ $ (-950 |t#1|))) (-15 -3213 ($ $ (-650 |t#1|))) (-15 -3213 ($ $ (-777))) (-15 -3213 ($ (-950 |t#1|))) (-15 -3213 ((-950 |t#1|) $)) (-15 -2414 ((-112) $)) (-15 -2132 ($ $ (-650 (-950 |t#1|)))) (-15 -2132 ($ $ (-650 (-650 |t#1|)))) (-15 -2132 ($ (-650 (-950 |t#1|)))) (-15 -2132 ((-650 (-950 |t#1|)) $)) (-15 -4049 ((-112) $)) (-15 -4308 ($ $ (-650 (-950 |t#1|)))) (-15 -4308 ($ $ (-650 (-650 |t#1|)))) (-15 -4308 ($ (-650 (-950 |t#1|)))) (-15 -4308 ((-650 (-950 |t#1|)) $)) (-15 -1802 ((-112) $)) (-15 -2947 ($ $ (-650 (-950 |t#1|)))) (-15 -2947 ($ $ (-650 (-650 |t#1|)))) (-15 -2947 ($ (-650 (-950 |t#1|)))) (-15 -2947 ((-650 (-950 |t#1|)) $)) (-15 -1760 ((-112) $)) (-15 -3207 ($ $ (-650 (-650 (-950 |t#1|))) (-650 (-173)) (-173))) (-15 -3207 ($ $ (-650 (-650 (-650 |t#1|))) (-650 (-173)) (-173))) (-15 -3207 ($ $ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -3207 ($ $ (-650 (-650 (-650 |t#1|))) (-112) (-112))) (-15 -3207 ($ (-650 (-650 (-950 |t#1|))))) (-15 -3207 ($ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -3207 ((-650 (-650 (-950 |t#1|))) $)) (-15 -1879 ((-112) $)) (-15 -3246 ((-650 (-950 |t#1|)) $)) (-15 -2289 ((-650 (-650 (-650 (-777)))) $)) (-15 -1782 ((-650 (-650 (-650 (-950 |t#1|)))) $)) (-15 -2679 ((-650 (-650 (-173))) $)) (-15 -2380 ((-650 (-173)) $)) (-15 -4350 ((-2 (|:| -1424 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $)) (-15 -2567 ($ $)) (-15 -3796 ((-1174 3 |t#1|) $)) (-15 -3735 ((-868) $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 184) (($ (-1191)) NIL) (((-1191) $) 7)) (-1802 (((-112) $ (|[\|\|]| (-530))) 19) (((-112) $ (|[\|\|]| (-220))) 23) (((-112) $ (|[\|\|]| (-682))) 27) (((-112) $ (|[\|\|]| (-1286))) 31) (((-112) $ (|[\|\|]| (-139))) 35) (((-112) $ (|[\|\|]| (-612))) 39) (((-112) $ (|[\|\|]| (-134))) 43) (((-112) $ (|[\|\|]| (-1124))) 47) (((-112) $ (|[\|\|]| (-96))) 51) (((-112) $ (|[\|\|]| (-687))) 55) (((-112) $ (|[\|\|]| (-523))) 59) (((-112) $ (|[\|\|]| (-1075))) 63) (((-112) $ (|[\|\|]| (-1287))) 67) (((-112) $ (|[\|\|]| (-531))) 71) (((-112) $ (|[\|\|]| (-1160))) 75) (((-112) $ (|[\|\|]| (-155))) 79) (((-112) $ (|[\|\|]| (-677))) 83) (((-112) $ (|[\|\|]| (-315))) 87) (((-112) $ (|[\|\|]| (-1045))) 91) (((-112) $ (|[\|\|]| (-182))) 95) (((-112) $ (|[\|\|]| (-979))) 99) (((-112) $ (|[\|\|]| (-1082))) 103) (((-112) $ (|[\|\|]| (-1099))) 107) (((-112) $ (|[\|\|]| (-1105))) 111) (((-112) $ (|[\|\|]| (-632))) 115) (((-112) $ (|[\|\|]| (-1176))) 119) (((-112) $ (|[\|\|]| (-157))) 123) (((-112) $ (|[\|\|]| (-138))) 127) (((-112) $ (|[\|\|]| (-484))) 131) (((-112) $ (|[\|\|]| (-598))) 135) (((-112) $ (|[\|\|]| (-512))) 139) (((-112) $ (|[\|\|]| (-1168))) 143) (((-112) $ (|[\|\|]| (-570))) 147)) (-1859 (((-112) $ $) NIL)) (-3950 (((-530) $) 20) (((-220) $) 24) (((-682) $) 28) (((-1286) $) 32) (((-139) $) 36) (((-612) $) 40) (((-134) $) 44) (((-1124) $) 48) (((-96) $) 52) (((-687) $) 56) (((-523) $) 60) (((-1075) $) 64) (((-1287) $) 68) (((-531) $) 72) (((-1160) $) 76) (((-155) $) 80) (((-677) $) 84) (((-315) $) 88) (((-1045) $) 92) (((-182) $) 96) (((-979) $) 100) (((-1082) $) 104) (((-1099) $) 108) (((-1105) $) 112) (((-632) $) 116) (((-1176) $) 120) (((-157) $) 124) (((-138) $) 128) (((-484) $) 132) (((-598) $) 136) (((-512) $) 140) (((-1168) $) 144) (((-570) $) 148)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 184) (($ (-1191)) NIL) (((-1191) $) 7)) (-1803 (((-112) $ (|[\|\|]| (-530))) 19) (((-112) $ (|[\|\|]| (-220))) 23) (((-112) $ (|[\|\|]| (-682))) 27) (((-112) $ (|[\|\|]| (-1287))) 31) (((-112) $ (|[\|\|]| (-139))) 35) (((-112) $ (|[\|\|]| (-612))) 39) (((-112) $ (|[\|\|]| (-134))) 43) (((-112) $ (|[\|\|]| (-1124))) 47) (((-112) $ (|[\|\|]| (-96))) 51) (((-112) $ (|[\|\|]| (-687))) 55) (((-112) $ (|[\|\|]| (-523))) 59) (((-112) $ (|[\|\|]| (-1075))) 63) (((-112) $ (|[\|\|]| (-1288))) 67) (((-112) $ (|[\|\|]| (-531))) 71) (((-112) $ (|[\|\|]| (-1160))) 75) (((-112) $ (|[\|\|]| (-155))) 79) (((-112) $ (|[\|\|]| (-677))) 83) (((-112) $ (|[\|\|]| (-315))) 87) (((-112) $ (|[\|\|]| (-1045))) 91) (((-112) $ (|[\|\|]| (-182))) 95) (((-112) $ (|[\|\|]| (-979))) 99) (((-112) $ (|[\|\|]| (-1082))) 103) (((-112) $ (|[\|\|]| (-1099))) 107) (((-112) $ (|[\|\|]| (-1105))) 111) (((-112) $ (|[\|\|]| (-632))) 115) (((-112) $ (|[\|\|]| (-1176))) 119) (((-112) $ (|[\|\|]| (-157))) 123) (((-112) $ (|[\|\|]| (-138))) 127) (((-112) $ (|[\|\|]| (-484))) 131) (((-112) $ (|[\|\|]| (-598))) 135) (((-112) $ (|[\|\|]| (-512))) 139) (((-112) $ (|[\|\|]| (-1168))) 143) (((-112) $ (|[\|\|]| (-570))) 147)) (-3866 (((-112) $ $) NIL)) (-3950 (((-530) $) 20) (((-220) $) 24) (((-682) $) 28) (((-1287) $) 32) (((-139) $) 36) (((-612) $) 40) (((-134) $) 44) (((-1124) $) 48) (((-96) $) 52) (((-687) $) 56) (((-523) $) 60) (((-1075) $) 64) (((-1288) $) 68) (((-531) $) 72) (((-1160) $) 76) (((-155) $) 80) (((-677) $) 84) (((-315) $) 88) (((-1045) $) 92) (((-182) $) 96) (((-979) $) 100) (((-1082) $) 104) (((-1099) $) 108) (((-1105) $) 112) (((-632) $) 116) (((-1176) $) 120) (((-157) $) 124) (((-138) $) 128) (((-484) $) 132) (((-598) $) 136) (((-512) $) 140) (((-1168) $) 144) (((-570) $) 148)) (-2872 (((-112) $ $) NIL)))
(((-1144) (-1146)) (T -1144))
NIL
(-1146)
-((-2050 (((-650 (-1191)) (-1168)) 9)))
-(((-1145) (-10 -7 (-15 -2050 ((-650 (-1191)) (-1168))))) (T -1145))
-((-2050 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
-(-10 -7 (-15 -2050 ((-650 (-1191)) (-1168))))
-((-2416 (((-112) $ $) 7)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-1802 (((-112) $ (|[\|\|]| (-530))) 85) (((-112) $ (|[\|\|]| (-220))) 83) (((-112) $ (|[\|\|]| (-682))) 81) (((-112) $ (|[\|\|]| (-1286))) 79) (((-112) $ (|[\|\|]| (-139))) 77) (((-112) $ (|[\|\|]| (-612))) 75) (((-112) $ (|[\|\|]| (-134))) 73) (((-112) $ (|[\|\|]| (-1124))) 71) (((-112) $ (|[\|\|]| (-96))) 69) (((-112) $ (|[\|\|]| (-687))) 67) (((-112) $ (|[\|\|]| (-523))) 65) (((-112) $ (|[\|\|]| (-1075))) 63) (((-112) $ (|[\|\|]| (-1287))) 61) (((-112) $ (|[\|\|]| (-531))) 59) (((-112) $ (|[\|\|]| (-1160))) 57) (((-112) $ (|[\|\|]| (-155))) 55) (((-112) $ (|[\|\|]| (-677))) 53) (((-112) $ (|[\|\|]| (-315))) 51) (((-112) $ (|[\|\|]| (-1045))) 49) (((-112) $ (|[\|\|]| (-182))) 47) (((-112) $ (|[\|\|]| (-979))) 45) (((-112) $ (|[\|\|]| (-1082))) 43) (((-112) $ (|[\|\|]| (-1099))) 41) (((-112) $ (|[\|\|]| (-1105))) 39) (((-112) $ (|[\|\|]| (-632))) 37) (((-112) $ (|[\|\|]| (-1176))) 35) (((-112) $ (|[\|\|]| (-157))) 33) (((-112) $ (|[\|\|]| (-138))) 31) (((-112) $ (|[\|\|]| (-484))) 29) (((-112) $ (|[\|\|]| (-598))) 27) (((-112) $ (|[\|\|]| (-512))) 25) (((-112) $ (|[\|\|]| (-1168))) 23) (((-112) $ (|[\|\|]| (-570))) 21)) (-1859 (((-112) $ $) 9)) (-3950 (((-530) $) 84) (((-220) $) 82) (((-682) $) 80) (((-1286) $) 78) (((-139) $) 76) (((-612) $) 74) (((-134) $) 72) (((-1124) $) 70) (((-96) $) 68) (((-687) $) 66) (((-523) $) 64) (((-1075) $) 62) (((-1287) $) 60) (((-531) $) 58) (((-1160) $) 56) (((-155) $) 54) (((-677) $) 52) (((-315) $) 50) (((-1045) $) 48) (((-182) $) 46) (((-979) $) 44) (((-1082) $) 42) (((-1099) $) 40) (((-1105) $) 38) (((-632) $) 36) (((-1176) $) 34) (((-157) $) 32) (((-138) $) 30) (((-484) $) 28) (((-598) $) 26) (((-512) $) 24) (((-1168) $) 22) (((-570) $) 20)) (-2872 (((-112) $ $) 6)))
+((-2053 (((-650 (-1191)) (-1168)) 9)))
+(((-1145) (-10 -7 (-15 -2053 ((-650 (-1191)) (-1168))))) (T -1145))
+((-2053 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
+(-10 -7 (-15 -2053 ((-650 (-1191)) (-1168))))
+((-2417 (((-112) $ $) 7)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-1803 (((-112) $ (|[\|\|]| (-530))) 85) (((-112) $ (|[\|\|]| (-220))) 83) (((-112) $ (|[\|\|]| (-682))) 81) (((-112) $ (|[\|\|]| (-1287))) 79) (((-112) $ (|[\|\|]| (-139))) 77) (((-112) $ (|[\|\|]| (-612))) 75) (((-112) $ (|[\|\|]| (-134))) 73) (((-112) $ (|[\|\|]| (-1124))) 71) (((-112) $ (|[\|\|]| (-96))) 69) (((-112) $ (|[\|\|]| (-687))) 67) (((-112) $ (|[\|\|]| (-523))) 65) (((-112) $ (|[\|\|]| (-1075))) 63) (((-112) $ (|[\|\|]| (-1288))) 61) (((-112) $ (|[\|\|]| (-531))) 59) (((-112) $ (|[\|\|]| (-1160))) 57) (((-112) $ (|[\|\|]| (-155))) 55) (((-112) $ (|[\|\|]| (-677))) 53) (((-112) $ (|[\|\|]| (-315))) 51) (((-112) $ (|[\|\|]| (-1045))) 49) (((-112) $ (|[\|\|]| (-182))) 47) (((-112) $ (|[\|\|]| (-979))) 45) (((-112) $ (|[\|\|]| (-1082))) 43) (((-112) $ (|[\|\|]| (-1099))) 41) (((-112) $ (|[\|\|]| (-1105))) 39) (((-112) $ (|[\|\|]| (-632))) 37) (((-112) $ (|[\|\|]| (-1176))) 35) (((-112) $ (|[\|\|]| (-157))) 33) (((-112) $ (|[\|\|]| (-138))) 31) (((-112) $ (|[\|\|]| (-484))) 29) (((-112) $ (|[\|\|]| (-598))) 27) (((-112) $ (|[\|\|]| (-512))) 25) (((-112) $ (|[\|\|]| (-1168))) 23) (((-112) $ (|[\|\|]| (-570))) 21)) (-3866 (((-112) $ $) 9)) (-3950 (((-530) $) 84) (((-220) $) 82) (((-682) $) 80) (((-1287) $) 78) (((-139) $) 76) (((-612) $) 74) (((-134) $) 72) (((-1124) $) 70) (((-96) $) 68) (((-687) $) 66) (((-523) $) 64) (((-1075) $) 62) (((-1288) $) 60) (((-531) $) 58) (((-1160) $) 56) (((-155) $) 54) (((-677) $) 52) (((-315) $) 50) (((-1045) $) 48) (((-182) $) 46) (((-979) $) 44) (((-1082) $) 42) (((-1099) $) 40) (((-1105) $) 38) (((-632) $) 36) (((-1176) $) 34) (((-157) $) 32) (((-138) $) 30) (((-484) $) 28) (((-598) $) 26) (((-512) $) 24) (((-1168) $) 22) (((-570) $) 20)) (-2872 (((-112) $ $) 6)))
(((-1146) (-141)) (T -1146))
-((-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-530))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-530)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-220))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-220)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-682))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-682)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1286))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1286)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-139))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-139)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-612))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-612)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-134))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-134)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1124))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1124)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-96)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-687))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-687)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-523)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1075))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1075)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1287))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1287)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-531))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-531)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1160))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1160)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-155))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-155)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-677))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-677)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-315))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-315)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1045))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1045)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-182))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-182)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-979))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-979)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1082)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1099))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1099)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1105))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1105)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-632))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-632)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1176))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1176)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-157))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-157)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-138)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-484))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-484)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-598))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-598)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-512)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1168)))) (-1802 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-570)))))
-(-13 (-1092) (-1271) (-10 -8 (-15 -1802 ((-112) $ (|[\|\|]| (-530)))) (-15 -3950 ((-530) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-220)))) (-15 -3950 ((-220) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-682)))) (-15 -3950 ((-682) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1286)))) (-15 -3950 ((-1286) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-139)))) (-15 -3950 ((-139) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-612)))) (-15 -3950 ((-612) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-134)))) (-15 -3950 ((-134) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1124)))) (-15 -3950 ((-1124) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-96)))) (-15 -3950 ((-96) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-687)))) (-15 -3950 ((-687) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-523)))) (-15 -3950 ((-523) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1075)))) (-15 -3950 ((-1075) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1287)))) (-15 -3950 ((-1287) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-531)))) (-15 -3950 ((-531) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1160)))) (-15 -3950 ((-1160) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-155)))) (-15 -3950 ((-155) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-677)))) (-15 -3950 ((-677) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-315)))) (-15 -3950 ((-315) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1045)))) (-15 -3950 ((-1045) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-182)))) (-15 -3950 ((-182) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-979)))) (-15 -3950 ((-979) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1082)))) (-15 -3950 ((-1082) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1099)))) (-15 -3950 ((-1099) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1105)))) (-15 -3950 ((-1105) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-632)))) (-15 -3950 ((-632) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1176)))) (-15 -3950 ((-1176) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-157)))) (-15 -3950 ((-157) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-138)))) (-15 -3950 ((-138) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-484)))) (-15 -3950 ((-484) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-598)))) (-15 -3950 ((-598) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-512)))) (-15 -3950 ((-512) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3950 ((-1168) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-570)))) (-15 -3950 ((-570) $))))
-(((-93) . T) ((-102) . T) ((-622 #0=(-1191)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T) ((-1092) . T) ((-1271) . T))
-((-2270 (((-1281) (-650 (-868))) 22) (((-1281) (-868)) 21)) (-2628 (((-1281) (-650 (-868))) 20) (((-1281) (-868)) 19)) (-3292 (((-1281) (-650 (-868))) 18) (((-1281) (-868)) 10) (((-1281) (-1168) (-868)) 16)))
-(((-1147) (-10 -7 (-15 -3292 ((-1281) (-1168) (-868))) (-15 -3292 ((-1281) (-868))) (-15 -2628 ((-1281) (-868))) (-15 -2270 ((-1281) (-868))) (-15 -3292 ((-1281) (-650 (-868)))) (-15 -2628 ((-1281) (-650 (-868)))) (-15 -2270 ((-1281) (-650 (-868)))))) (T -1147))
-((-2270 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1281)) (-5 *1 (-1147)))) (-2628 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1281)) (-5 *1 (-1147)))) (-3292 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1281)) (-5 *1 (-1147)))) (-2270 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147)))) (-2628 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147)))) (-3292 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147)))) (-3292 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147)))))
-(-10 -7 (-15 -3292 ((-1281) (-1168) (-868))) (-15 -3292 ((-1281) (-868))) (-15 -2628 ((-1281) (-868))) (-15 -2270 ((-1281) (-868))) (-15 -3292 ((-1281) (-650 (-868)))) (-15 -2628 ((-1281) (-650 (-868)))) (-15 -2270 ((-1281) (-650 (-868)))))
-((-1794 (($ $ $) 10)) (-3571 (($ $) 9)) (-1801 (($ $ $) 13)) (-3614 (($ $ $) 15)) (-2565 (($ $ $) 12)) (-2051 (($ $ $) 14)) (-2228 (($ $) 17)) (-3022 (($ $) 16)) (-1423 (($ $) 6)) (-4118 (($ $ $) 11) (($ $) 7)) (-3829 (($ $ $) 8)))
+((-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-530))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-530)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-220))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-220)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-682))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-682)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1287))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1287)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-139))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-139)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-612))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-612)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-134))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-134)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1124))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1124)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-96)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-687))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-687)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-523)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1075))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1075)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1288))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1288)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-531))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-531)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1160))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1160)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-155))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-155)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-677))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-677)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-315))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-315)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1045))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1045)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-182))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-182)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-979))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-979)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1082)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1099))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1099)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1105))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1105)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-632))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-632)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1176))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1176)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-157))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-157)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-138)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-484))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-484)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-598))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-598)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-512)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1168)))) (-1803 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)))) (-3950 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-570)))))
+(-13 (-1092) (-1272) (-10 -8 (-15 -1803 ((-112) $ (|[\|\|]| (-530)))) (-15 -3950 ((-530) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-220)))) (-15 -3950 ((-220) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-682)))) (-15 -3950 ((-682) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1287)))) (-15 -3950 ((-1287) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-139)))) (-15 -3950 ((-139) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-612)))) (-15 -3950 ((-612) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-134)))) (-15 -3950 ((-134) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1124)))) (-15 -3950 ((-1124) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-96)))) (-15 -3950 ((-96) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-687)))) (-15 -3950 ((-687) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-523)))) (-15 -3950 ((-523) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1075)))) (-15 -3950 ((-1075) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1288)))) (-15 -3950 ((-1288) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-531)))) (-15 -3950 ((-531) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1160)))) (-15 -3950 ((-1160) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-155)))) (-15 -3950 ((-155) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-677)))) (-15 -3950 ((-677) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-315)))) (-15 -3950 ((-315) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1045)))) (-15 -3950 ((-1045) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-182)))) (-15 -3950 ((-182) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-979)))) (-15 -3950 ((-979) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1082)))) (-15 -3950 ((-1082) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1099)))) (-15 -3950 ((-1099) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1105)))) (-15 -3950 ((-1105) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-632)))) (-15 -3950 ((-632) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1176)))) (-15 -3950 ((-1176) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-157)))) (-15 -3950 ((-157) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-138)))) (-15 -3950 ((-138) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-484)))) (-15 -3950 ((-484) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-598)))) (-15 -3950 ((-598) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-512)))) (-15 -3950 ((-512) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3950 ((-1168) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-570)))) (-15 -3950 ((-570) $))))
+(((-93) . T) ((-102) . T) ((-622 #0=(-1191)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T) ((-1092) . T) ((-1272) . T))
+((-2525 (((-1282) (-650 (-868))) 22) (((-1282) (-868)) 21)) (-2912 (((-1282) (-650 (-868))) 20) (((-1282) (-868)) 19)) (-3291 (((-1282) (-650 (-868))) 18) (((-1282) (-868)) 10) (((-1282) (-1168) (-868)) 16)))
+(((-1147) (-10 -7 (-15 -3291 ((-1282) (-1168) (-868))) (-15 -3291 ((-1282) (-868))) (-15 -2912 ((-1282) (-868))) (-15 -2525 ((-1282) (-868))) (-15 -3291 ((-1282) (-650 (-868)))) (-15 -2912 ((-1282) (-650 (-868)))) (-15 -2525 ((-1282) (-650 (-868)))))) (T -1147))
+((-2525 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-2912 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3291 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-2525 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-2912 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3291 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3291 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))))
+(-10 -7 (-15 -3291 ((-1282) (-1168) (-868))) (-15 -3291 ((-1282) (-868))) (-15 -2912 ((-1282) (-868))) (-15 -2525 ((-1282) (-868))) (-15 -3291 ((-1282) (-650 (-868)))) (-15 -2912 ((-1282) (-650 (-868)))) (-15 -2525 ((-1282) (-650 (-868)))))
+((-1414 (($ $ $) 10)) (-3915 (($ $) 9)) (-1487 (($ $ $) 13)) (-4317 (($ $ $) 15)) (-3612 (($ $ $) 12)) (-2135 (($ $ $) 14)) (-3322 (($ $) 17)) (-3543 (($ $) 16)) (-1367 (($ $) 6)) (-2430 (($ $ $) 11) (($ $) 7)) (-1387 (($ $ $) 8)))
(((-1148) (-141)) (T -1148))
-((-2228 (*1 *1 *1) (-4 *1 (-1148))) (-3022 (*1 *1 *1) (-4 *1 (-1148))) (-3614 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2051 (*1 *1 *1 *1) (-4 *1 (-1148))) (-1801 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2565 (*1 *1 *1 *1) (-4 *1 (-1148))) (-4118 (*1 *1 *1 *1) (-4 *1 (-1148))) (-1794 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3571 (*1 *1 *1) (-4 *1 (-1148))) (-3829 (*1 *1 *1 *1) (-4 *1 (-1148))) (-4118 (*1 *1 *1) (-4 *1 (-1148))) (-1423 (*1 *1 *1) (-4 *1 (-1148))))
-(-13 (-10 -8 (-15 -1423 ($ $)) (-15 -4118 ($ $)) (-15 -3829 ($ $ $)) (-15 -3571 ($ $)) (-15 -1794 ($ $ $)) (-15 -4118 ($ $ $)) (-15 -2565 ($ $ $)) (-15 -1801 ($ $ $)) (-15 -2051 ($ $ $)) (-15 -3614 ($ $ $)) (-15 -3022 ($ $)) (-15 -2228 ($ $))))
-((-2416 (((-112) $ $) 44)) (-2195 ((|#1| $) 17)) (-1313 (((-112) $ $ (-1 (-112) |#2| |#2|)) 39)) (-2515 (((-112) $) 19)) (-3081 (($ $ |#1|) 30)) (-1655 (($ $ (-112)) 32)) (-1975 (($ $) 33)) (-2502 (($ $ |#2|) 31)) (-1903 (((-1168) $) NIL)) (-2589 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 38)) (-3479 (((-1129) $) NIL)) (-3329 (((-112) $) 16)) (-3743 (($) 13)) (-3915 (($ $) 29)) (-3748 (($ |#1| |#2| (-112)) 20) (($ |#1| |#2|) 21) (($ (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) 23) (((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|)))) 26) (((-650 $) |#1| (-650 |#2|)) 28)) (-2387 ((|#2| $) 18)) (-3735 (((-868) $) 53)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 42)))
-(((-1149 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3743 ($)) (-15 -3329 ((-112) $)) (-15 -2195 (|#1| $)) (-15 -2387 (|#2| $)) (-15 -2515 ((-112) $)) (-15 -3748 ($ |#1| |#2| (-112))) (-15 -3748 ($ |#1| |#2|)) (-15 -3748 ($ (-2 (|:| |val| |#1|) (|:| -3593 |#2|)))) (-15 -3748 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))))) (-15 -3748 ((-650 $) |#1| (-650 |#2|))) (-15 -3915 ($ $)) (-15 -3081 ($ $ |#1|)) (-15 -2502 ($ $ |#2|)) (-15 -1655 ($ $ (-112))) (-15 -1975 ($ $)) (-15 -2589 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1313 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1149))
-((-3743 (*1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3329 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-2195 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *2 *3)) (-4 *3 (-13 (-1109) (-34))))) (-2387 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))))) (-2515 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3748 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3748 (*1 *1 *2 *3) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3748 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3593 *4))) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *4)))) (-3748 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |val| *4) (|:| -3593 *5)))) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-650 (-1149 *4 *5))) (-5 *1 (-1149 *4 *5)))) (-3748 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *5)) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-650 (-1149 *3 *5))) (-5 *1 (-1149 *3 *5)) (-4 *3 (-13 (-1109) (-34))))) (-3915 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3081 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2502 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))) (-4 *2 (-13 (-1109) (-34))))) (-1655 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1975 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2589 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1149 *5 *6)))) (-1313 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34))))))
-(-13 (-1109) (-10 -8 (-15 -3743 ($)) (-15 -3329 ((-112) $)) (-15 -2195 (|#1| $)) (-15 -2387 (|#2| $)) (-15 -2515 ((-112) $)) (-15 -3748 ($ |#1| |#2| (-112))) (-15 -3748 ($ |#1| |#2|)) (-15 -3748 ($ (-2 (|:| |val| |#1|) (|:| -3593 |#2|)))) (-15 -3748 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))))) (-15 -3748 ((-650 $) |#1| (-650 |#2|))) (-15 -3915 ($ $)) (-15 -3081 ($ $ |#1|)) (-15 -2502 ($ $ |#2|)) (-15 -1655 ($ $ (-112))) (-15 -1975 ($ $)) (-15 -2589 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1313 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
-((-2416 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2195 (((-1149 |#1| |#2|) $) 27)) (-1642 (($ $) 91)) (-1875 (((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 100)) (-2970 (($ $ $ (-650 (-1149 |#1| |#2|))) 108) (($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 109)) (-3594 (((-112) $ (-777)) NIL)) (-1379 (((-1149 |#1| |#2|) $ (-1149 |#1| |#2|)) 46 (|has| $ (-6 -4449)))) (-3895 (((-1149 |#1| |#2|) $ "value" (-1149 |#1| |#2|)) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 44 (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-1717 (((-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) $) 95)) (-2513 (($ (-1149 |#1| |#2|) $) 42)) (-1702 (($ (-1149 |#1| |#2|) $) 34)) (-2836 (((-650 (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 54)) (-1565 (((-112) (-1149 |#1| |#2|) $) 97)) (-1457 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 (-1149 |#1| |#2|)) $) 58 (|has| $ (-6 -4448)))) (-3464 (((-112) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-1149 |#1| |#2|) (-1109))))) (-3776 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 50 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 49)) (-3452 (((-112) $ (-777)) NIL)) (-2282 (((-650 (-1149 |#1| |#2|)) $) 56)) (-3873 (((-112) $) 45)) (-1903 (((-1168) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-3479 (((-1129) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2060 (((-3 $ "failed") $) 89)) (-1671 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-1149 |#1| |#2|)))) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109)))) (($ $ (-298 (-1149 |#1| |#2|))) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109)))) (($ $ (-1149 |#1| |#2|) (-1149 |#1| |#2|)) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109)))) (($ $ (-650 (-1149 |#1| |#2|)) (-650 (-1149 |#1| |#2|))) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109))))) (-4017 (((-112) $ $) 53)) (-3329 (((-112) $) 24)) (-3743 (($) 26)) (-1876 (((-1149 |#1| |#2|) $ "value") NIL)) (-1678 (((-570) $ $) NIL)) (-3150 (((-112) $) 47)) (-3486 (((-777) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4448))) (((-777) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-1149 |#1| |#2|) (-1109))))) (-3915 (($ $) 52)) (-3748 (($ (-1149 |#1| |#2|)) 10) (($ |#1| |#2| (-650 $)) 13) (($ |#1| |#2| (-650 (-1149 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-650 |#2|)) 18)) (-4109 (((-650 |#2|) $) 96)) (-3735 (((-868) $) 87 (|has| (-1149 |#1| |#2|) (-619 (-868))))) (-3129 (((-650 $) $) 31)) (-2016 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-1859 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-4368 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 70 (|has| (-1149 |#1| |#2|) (-1109)))) (-2426 (((-777) $) 64 (|has| $ (-6 -4448)))))
-(((-1150 |#1| |#2|) (-13 (-1019 (-1149 |#1| |#2|)) (-10 -8 (-6 -4449) (-6 -4448) (-15 -2060 ((-3 $ "failed") $)) (-15 -1642 ($ $)) (-15 -3748 ($ (-1149 |#1| |#2|))) (-15 -3748 ($ |#1| |#2| (-650 $))) (-15 -3748 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3748 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4109 ((-650 |#2|) $)) (-15 -1717 ((-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) $)) (-15 -1565 ((-112) (-1149 |#1| |#2|) $)) (-15 -1875 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1702 ($ (-1149 |#1| |#2|) $)) (-15 -2513 ($ (-1149 |#1| |#2|) $)) (-15 -2970 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -2970 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1150))
-((-2060 (*1 *1 *1) (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-1642 (*1 *1 *1) (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3748 (*1 *1 *2) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3748 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-650 (-1150 *2 *3))) (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3748 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-650 (-1149 *2 *3))) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))) (-5 *1 (-1150 *2 *3)))) (-3748 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-13 (-1109) (-34))) (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))))) (-4109 (*1 *2 *1) (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1717 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1565 (*1 *2 *3 *1) (-12 (-5 *3 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1150 *4 *5)))) (-1875 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1149 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1150 *5 *6)))) (-1702 (*1 *1 *2 *1) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-2513 (*1 *1 *2 *1) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-2970 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-650 (-1149 *3 *4))) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-2970 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1149 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *1 (-1150 *4 *5)))))
-(-13 (-1019 (-1149 |#1| |#2|)) (-10 -8 (-6 -4449) (-6 -4448) (-15 -2060 ((-3 $ "failed") $)) (-15 -1642 ($ $)) (-15 -3748 ($ (-1149 |#1| |#2|))) (-15 -3748 ($ |#1| |#2| (-650 $))) (-15 -3748 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3748 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4109 ((-650 |#2|) $)) (-15 -1717 ((-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) $)) (-15 -1565 ((-112) (-1149 |#1| |#2|) $)) (-15 -1875 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1702 ($ (-1149 |#1| |#2|) $)) (-15 -2513 ($ (-1149 |#1| |#2|) $)) (-15 -2970 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -2970 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-2841 (($ $) NIL)) (-3071 ((|#2| $) NIL)) (-1813 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-1337 (($ (-695 |#2|)) 56)) (-1837 (((-112) $) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-4124 (($ |#2|) 14)) (-2450 (($) NIL T CONST)) (-3936 (($ $) 69 (|has| |#2| (-311)))) (-2653 (((-242 |#1| |#2|) $ (-570)) 42)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) 83)) (-3934 (((-777) $) 71 (|has| |#2| (-562)))) (-3712 ((|#2| $ (-570) (-570)) NIL)) (-2836 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2081 (((-112) $) NIL)) (-1645 (((-777) $) 73 (|has| |#2| (-562)))) (-4239 (((-650 (-242 |#1| |#2|)) $) 77 (|has| |#2| (-562)))) (-3153 (((-777) $) NIL)) (-4286 (($ |#2|) 25)) (-3167 (((-777) $) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2265 ((|#2| $) 67 (|has| |#2| (-6 (-4450 "*"))))) (-3118 (((-570) $) NIL)) (-1607 (((-570) $) NIL)) (-2849 (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3392 (((-570) $) NIL)) (-1555 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#2|))) 37)) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3747 (((-650 (-650 |#2|)) $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-4260 (((-3 $ "failed") $) 80 (|has| |#2| (-368)))) (-3479 (((-1129) $) NIL)) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-1671 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) NIL)) (-3447 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-3440 ((|#2| $) NIL)) (-1990 (($ (-650 |#2|)) 50)) (-3055 (((-112) $) NIL)) (-2640 (((-242 |#1| |#2|) $) NIL)) (-3154 ((|#2| $) 65 (|has| |#2| (-6 (-4450 "*"))))) (-3486 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-3915 (($ $) NIL)) (-1416 (((-542) $) 89 (|has| |#2| (-620 (-542))))) (-3541 (((-242 |#1| |#2|) $ (-570)) 44)) (-3735 (((-868) $) 47) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) 52)) (-2744 (((-777)) 23 T CONST)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3317 (((-112) $) NIL)) (-1812 (($) 16 T CONST)) (-1823 (($) 21 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) 63) (($ $ (-570)) 82 (|has| |#2| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-242 |#1| |#2|) $ (-242 |#1| |#2|)) 59) (((-242 |#1| |#2|) (-242 |#1| |#2|) $) 61)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1151 |#1| |#2|) (-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-10 -8 (-15 -4286 ($ |#2|)) (-15 -2841 ($ $)) (-15 -1337 ($ (-695 |#2|))) (IF (|has| |#2| (-6 (-4450 "*"))) (-6 -4437) |%noBranch|) (IF (|has| |#2| (-6 (-4450 "*"))) (IF (|has| |#2| (-6 -4445)) (-6 -4445) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-777) (-1058)) (T -1151))
-((-4286 (*1 *1 *2) (-12 (-5 *1 (-1151 *3 *2)) (-14 *3 (-777)) (-4 *2 (-1058)))) (-2841 (*1 *1 *1) (-12 (-5 *1 (-1151 *2 *3)) (-14 *2 (-777)) (-4 *3 (-1058)))) (-1337 (*1 *1 *2) (-12 (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1151 *3 *4)) (-14 *3 (-777)))))
-(-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-10 -8 (-15 -4286 ($ |#2|)) (-15 -2841 ($ $)) (-15 -1337 ($ (-695 |#2|))) (IF (|has| |#2| (-6 (-4450 "*"))) (-6 -4437) |%noBranch|) (IF (|has| |#2| (-6 (-4450 "*"))) (IF (|has| |#2| (-6 -4445)) (-6 -4445) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
-((-1575 (($ $) 19)) (-1414 (($ $ (-145)) 10) (($ $ (-142)) 14)) (-2514 (((-112) $ $) 24)) (-3949 (($ $) 17)) (-1876 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1243 (-570))) NIL) (($ $ $) 31)) (-3735 (($ (-145)) 29) (((-868) $) NIL)))
-(((-1152 |#1|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1876 (|#1| |#1| |#1|)) (-15 -1414 (|#1| |#1| (-142))) (-15 -1414 (|#1| |#1| (-145))) (-15 -3735 (|#1| (-145))) (-15 -2514 ((-112) |#1| |#1|)) (-15 -1575 (|#1| |#1|)) (-15 -3949 (|#1| |#1|)) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -1876 ((-145) |#1| (-570))) (-15 -1876 ((-145) |#1| (-570) (-145)))) (-1153)) (T -1152))
-NIL
-(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1876 (|#1| |#1| |#1|)) (-15 -1414 (|#1| |#1| (-142))) (-15 -1414 (|#1| |#1| (-145))) (-15 -3735 (|#1| (-145))) (-15 -2514 ((-112) |#1| |#1|)) (-15 -1575 (|#1| |#1|)) (-15 -3949 (|#1| |#1|)) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -1876 ((-145) |#1| (-570))) (-15 -1876 ((-145) |#1| (-570) (-145))))
-((-2416 (((-112) $ $) 19 (|has| (-145) (-1109)))) (-2229 (($ $) 121)) (-1575 (($ $) 122)) (-1414 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-2496 (((-112) $ $) 119)) (-2478 (((-112) $ $ (-570)) 118)) (-2198 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4254 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-3239 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4449))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-3594 (((-112) $ (-777)) 8)) (-3895 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4449))) (((-145) $ (-1243 (-570)) (-145)) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-1643 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-2697 (($ $) 91 (|has| $ (-6 -4449)))) (-2258 (($ $) 101)) (-1766 (($ $ (-1243 (-570)) $) 115)) (-3480 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4448)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) 77 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) 74 (|has| $ (-6 -4448))) (((-145) (-1 (-145) (-145) (-145)) $) 73 (|has| $ (-6 -4448)))) (-3790 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4449)))) (-3712 (((-145) $ (-570)) 52)) (-2514 (((-112) $ $) 120)) (-3998 (((-570) (-1 (-112) (-145)) $) 98) (((-570) (-145) $) 97 (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 96 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 114) (((-570) (-142) $ (-570)) 113)) (-2836 (((-650 (-145)) $) 31 (|has| $ (-6 -4448)))) (-4286 (($ (-777) (-145)) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 88 (|has| (-145) (-856)))) (-3068 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-2849 (((-650 (-145)) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 87 (|has| (-145) (-856)))) (-4007 (((-112) $ $ (-145)) 116)) (-4121 (((-777) $ $ (-145)) 117)) (-3776 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-2071 (($ $) 123)) (-3949 (($ $) 124)) (-3452 (((-112) $ (-777)) 10)) (-1653 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-1903 (((-1168) $) 22 (|has| (-145) (-1109)))) (-4285 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| (-145) (-1109)))) (-3443 (((-145) $) 43 (|has| (-570) (-856)))) (-3321 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-1952 (($ $ (-145)) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-145)))) 27 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) 26 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) 25 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) 24 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-4245 (((-650 (-145)) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1243 (-570))) 64) (($ $ $) 103)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-3486 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4448))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 92 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3748 (($ (-650 (-145))) 71)) (-2439 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (($ (-145)) 112) (((-868) $) 18 (|has| (-145) (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| (-145) (-1109)))) (-4368 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 85 (|has| (-145) (-856)))) (-2904 (((-112) $ $) 84 (|has| (-145) (-856)))) (-2872 (((-112) $ $) 20 (|has| (-145) (-1109)))) (-2913 (((-112) $ $) 86 (|has| (-145) (-856)))) (-2894 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-3322 (*1 *1 *1) (-4 *1 (-1148))) (-3543 (*1 *1 *1) (-4 *1 (-1148))) (-4317 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2135 (*1 *1 *1 *1) (-4 *1 (-1148))) (-1487 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3612 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2430 (*1 *1 *1 *1) (-4 *1 (-1148))) (-1414 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3915 (*1 *1 *1) (-4 *1 (-1148))) (-1387 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2430 (*1 *1 *1) (-4 *1 (-1148))) (-1367 (*1 *1 *1) (-4 *1 (-1148))))
+(-13 (-10 -8 (-15 -1367 ($ $)) (-15 -2430 ($ $)) (-15 -1387 ($ $ $)) (-15 -3915 ($ $)) (-15 -1414 ($ $ $)) (-15 -2430 ($ $ $)) (-15 -3612 ($ $ $)) (-15 -1487 ($ $ $)) (-15 -2135 ($ $ $)) (-15 -4317 ($ $ $)) (-15 -3543 ($ $)) (-15 -3322 ($ $))))
+((-2417 (((-112) $ $) 44)) (-2196 ((|#1| $) 17)) (-1645 (((-112) $ $ (-1 (-112) |#2| |#2|)) 39)) (-2515 (((-112) $) 19)) (-2838 (($ $ |#1|) 30)) (-2534 (($ $ (-112)) 32)) (-2529 (($ $) 33)) (-4271 (($ $ |#2|) 31)) (-4268 (((-1168) $) NIL)) (-2573 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 38)) (-3479 (((-1129) $) NIL)) (-3366 (((-112) $) 16)) (-3006 (($) 13)) (-3916 (($ $) 29)) (-3749 (($ |#1| |#2| (-112)) 20) (($ |#1| |#2|) 21) (($ (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) 23) (((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|)))) 26) (((-650 $) |#1| (-650 |#2|)) 28)) (-2387 ((|#2| $) 18)) (-3735 (((-868) $) 53)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 42)))
+(((-1149 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3006 ($)) (-15 -3366 ((-112) $)) (-15 -2196 (|#1| $)) (-15 -2387 (|#2| $)) (-15 -2515 ((-112) $)) (-15 -3749 ($ |#1| |#2| (-112))) (-15 -3749 ($ |#1| |#2|)) (-15 -3749 ($ (-2 (|:| |val| |#1|) (|:| -3593 |#2|)))) (-15 -3749 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))))) (-15 -3749 ((-650 $) |#1| (-650 |#2|))) (-15 -3916 ($ $)) (-15 -2838 ($ $ |#1|)) (-15 -4271 ($ $ |#2|)) (-15 -2534 ($ $ (-112))) (-15 -2529 ($ $)) (-15 -2573 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1645 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1149))
+((-3006 (*1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3366 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-2196 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *2 *3)) (-4 *3 (-13 (-1109) (-34))))) (-2387 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))))) (-2515 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3749 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3749 (*1 *1 *2 *3) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3749 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3593 *4))) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *4)))) (-3749 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |val| *4) (|:| -3593 *5)))) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-650 (-1149 *4 *5))) (-5 *1 (-1149 *4 *5)))) (-3749 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *5)) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-650 (-1149 *3 *5))) (-5 *1 (-1149 *3 *5)) (-4 *3 (-13 (-1109) (-34))))) (-3916 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2838 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-4271 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))) (-4 *2 (-13 (-1109) (-34))))) (-2534 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-2529 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2573 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1149 *5 *6)))) (-1645 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34))))))
+(-13 (-1109) (-10 -8 (-15 -3006 ($)) (-15 -3366 ((-112) $)) (-15 -2196 (|#1| $)) (-15 -2387 (|#2| $)) (-15 -2515 ((-112) $)) (-15 -3749 ($ |#1| |#2| (-112))) (-15 -3749 ($ |#1| |#2|)) (-15 -3749 ($ (-2 (|:| |val| |#1|) (|:| -3593 |#2|)))) (-15 -3749 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))))) (-15 -3749 ((-650 $) |#1| (-650 |#2|))) (-15 -3916 ($ $)) (-15 -2838 ($ $ |#1|)) (-15 -4271 ($ $ |#2|)) (-15 -2534 ($ $ (-112))) (-15 -2529 ($ $)) (-15 -2573 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1645 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
+((-2417 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2196 (((-1149 |#1| |#2|) $) 27)) (-2437 (($ $) 91)) (-3999 (((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 100)) (-3012 (($ $ $ (-650 (-1149 |#1| |#2|))) 108) (($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 109)) (-4095 (((-112) $ (-777)) NIL)) (-3708 (((-1149 |#1| |#2|) $ (-1149 |#1| |#2|)) 46 (|has| $ (-6 -4450)))) (-3894 (((-1149 |#1| |#2|) $ "value" (-1149 |#1| |#2|)) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 44 (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-1718 (((-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) $) 95)) (-3076 (($ (-1149 |#1| |#2|) $) 42)) (-1703 (($ (-1149 |#1| |#2|) $) 34)) (-2835 (((-650 (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 54)) (-4185 (((-112) (-1149 |#1| |#2|) $) 97)) (-4329 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 (-1149 |#1| |#2|)) $) 58 (|has| $ (-6 -4449)))) (-2218 (((-112) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-1149 |#1| |#2|) (-1109))))) (-3776 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 50 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 49)) (-2113 (((-112) $ (-777)) NIL)) (-2283 (((-650 (-1149 |#1| |#2|)) $) 56)) (-1859 (((-112) $) 45)) (-4268 (((-1168) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-3479 (((-1129) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2221 (((-3 $ "failed") $) 89)) (-2697 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-1149 |#1| |#2|)))) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109)))) (($ $ (-298 (-1149 |#1| |#2|))) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109)))) (($ $ (-1149 |#1| |#2|) (-1149 |#1| |#2|)) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109)))) (($ $ (-650 (-1149 |#1| |#2|)) (-650 (-1149 |#1| |#2|))) NIL (-12 (|has| (-1149 |#1| |#2|) (-313 (-1149 |#1| |#2|))) (|has| (-1149 |#1| |#2|) (-1109))))) (-2621 (((-112) $ $) 53)) (-3366 (((-112) $) 24)) (-3006 (($) 26)) (-1877 (((-1149 |#1| |#2|) $ "value") NIL)) (-2763 (((-570) $ $) NIL)) (-2345 (((-112) $) 47)) (-3490 (((-777) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449))) (((-777) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-1149 |#1| |#2|) (-1109))))) (-3916 (($ $) 52)) (-3749 (($ (-1149 |#1| |#2|)) 10) (($ |#1| |#2| (-650 $)) 13) (($ |#1| |#2| (-650 (-1149 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-650 |#2|)) 18)) (-4109 (((-650 |#2|) $) 96)) (-3735 (((-868) $) 87 (|has| (-1149 |#1| |#2|) (-619 (-868))))) (-2153 (((-650 $) $) 31)) (-2931 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-3866 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2964 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 70 (|has| (-1149 |#1| |#2|) (-1109)))) (-2426 (((-777) $) 64 (|has| $ (-6 -4449)))))
+(((-1150 |#1| |#2|) (-13 (-1019 (-1149 |#1| |#2|)) (-10 -8 (-6 -4450) (-6 -4449) (-15 -2221 ((-3 $ "failed") $)) (-15 -2437 ($ $)) (-15 -3749 ($ (-1149 |#1| |#2|))) (-15 -3749 ($ |#1| |#2| (-650 $))) (-15 -3749 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3749 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4109 ((-650 |#2|) $)) (-15 -1718 ((-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) $)) (-15 -4185 ((-112) (-1149 |#1| |#2|) $)) (-15 -3999 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1703 ($ (-1149 |#1| |#2|) $)) (-15 -3076 ($ (-1149 |#1| |#2|) $)) (-15 -3012 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -3012 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1150))
+((-2221 (*1 *1 *1) (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2437 (*1 *1 *1) (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3749 (*1 *1 *2) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3749 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-650 (-1150 *2 *3))) (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3749 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-650 (-1149 *2 *3))) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))) (-5 *1 (-1150 *2 *3)))) (-3749 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-13 (-1109) (-34))) (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))))) (-4109 (*1 *2 *1) (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1718 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4)))) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-4185 (*1 *2 *3 *1) (-12 (-5 *3 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1150 *4 *5)))) (-3999 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1149 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1150 *5 *6)))) (-1703 (*1 *1 *2 *1) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3076 (*1 *1 *2 *1) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3012 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-650 (-1149 *3 *4))) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3012 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1149 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *1 (-1150 *4 *5)))))
+(-13 (-1019 (-1149 |#1| |#2|)) (-10 -8 (-6 -4450) (-6 -4449) (-15 -2221 ((-3 $ "failed") $)) (-15 -2437 ($ $)) (-15 -3749 ($ (-1149 |#1| |#2|))) (-15 -3749 ($ |#1| |#2| (-650 $))) (-15 -3749 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3749 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4109 ((-650 |#2|) $)) (-15 -1718 ((-650 (-2 (|:| |val| |#1|) (|:| -3593 |#2|))) $)) (-15 -4185 ((-112) (-1149 |#1| |#2|) $)) (-15 -3999 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1703 ($ (-1149 |#1| |#2|) $)) (-15 -3076 ($ (-1149 |#1| |#2|) $)) (-15 -3012 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -3012 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3115 (($ $) NIL)) (-3071 ((|#2| $) NIL)) (-1587 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-1886 (($ (-695 |#2|)) 56)) (-3639 (((-112) $) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-2465 (($ |#2|) 14)) (-3761 (($) NIL T CONST)) (-4321 (($ $) 69 (|has| |#2| (-311)))) (-1991 (((-242 |#1| |#2|) $ (-570)) 42)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) 83)) (-3933 (((-777) $) 71 (|has| |#2| (-562)))) (-3713 ((|#2| $ (-570) (-570)) NIL)) (-2835 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4340 (((-112) $) NIL)) (-2454 (((-777) $) 73 (|has| |#2| (-562)))) (-4296 (((-650 (-242 |#1| |#2|)) $) 77 (|has| |#2| (-562)))) (-3155 (((-777) $) NIL)) (-4287 (($ |#2|) 25)) (-3167 (((-777) $) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-2481 ((|#2| $) 67 (|has| |#2| (-6 (-4451 "*"))))) (-2055 (((-570) $) NIL)) (-3295 (((-570) $) NIL)) (-3201 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2755 (((-570) $) NIL)) (-4067 (((-570) $) NIL)) (-2427 (($ (-650 (-650 |#2|))) 37)) (-3776 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3037 (((-650 (-650 |#2|)) $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-3174 (((-3 $ "failed") $) 80 (|has| |#2| (-368)))) (-3479 (((-1129) $) NIL)) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-2697 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) NIL)) (-3447 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2023 ((|#2| $) NIL)) (-2682 (($ (-650 |#2|)) 50)) (-2593 (((-112) $) NIL)) (-3005 (((-242 |#1| |#2|) $) NIL)) (-2371 ((|#2| $) 65 (|has| |#2| (-6 (-4451 "*"))))) (-3490 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3916 (($ $) NIL)) (-1417 (((-542) $) 89 (|has| |#2| (-620 (-542))))) (-1743 (((-242 |#1| |#2|) $ (-570)) 44)) (-3735 (((-868) $) 47) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) 52)) (-1609 (((-777)) 23 T CONST)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3251 (((-112) $) NIL)) (-1814 (($) 16 T CONST)) (-1824 (($) 21 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-777)) NIL (|has| |#2| (-235))) (($ $) NIL (|has| |#2| (-235)))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) 63) (($ $ (-570)) 82 (|has| |#2| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-242 |#1| |#2|) $ (-242 |#1| |#2|)) 59) (((-242 |#1| |#2|) (-242 |#1| |#2|) $) 61)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1151 |#1| |#2|) (-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-10 -8 (-15 -4287 ($ |#2|)) (-15 -3115 ($ $)) (-15 -1886 ($ (-695 |#2|))) (IF (|has| |#2| (-6 (-4451 "*"))) (-6 -4438) |%noBranch|) (IF (|has| |#2| (-6 (-4451 "*"))) (IF (|has| |#2| (-6 -4446)) (-6 -4446) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-777) (-1058)) (T -1151))
+((-4287 (*1 *1 *2) (-12 (-5 *1 (-1151 *3 *2)) (-14 *3 (-777)) (-4 *2 (-1058)))) (-3115 (*1 *1 *1) (-12 (-5 *1 (-1151 *2 *3)) (-14 *2 (-777)) (-4 *3 (-1058)))) (-1886 (*1 *1 *2) (-12 (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1151 *3 *4)) (-14 *3 (-777)))))
+(-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-10 -8 (-15 -4287 ($ |#2|)) (-15 -3115 ($ $)) (-15 -1886 ($ (-695 |#2|))) (IF (|has| |#2| (-6 (-4451 "*"))) (-6 -4438) |%noBranch|) (IF (|has| |#2| (-6 (-4451 "*"))) (IF (|has| |#2| (-6 -4446)) (-6 -4446) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
+((-2986 (($ $) 19)) (-4392 (($ $ (-145)) 10) (($ $ (-142)) 14)) (-2514 (((-112) $ $) 24)) (-3145 (($ $) 17)) (-1877 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (($ $ $) 31)) (-3735 (($ (-145)) 29) (((-868) $) NIL)))
+(((-1152 |#1|) (-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1877 (|#1| |#1| |#1|)) (-15 -4392 (|#1| |#1| (-142))) (-15 -4392 (|#1| |#1| (-145))) (-15 -3735 (|#1| (-145))) (-15 -2514 ((-112) |#1| |#1|)) (-15 -2986 (|#1| |#1|)) (-15 -3145 (|#1| |#1|)) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -1877 ((-145) |#1| (-570))) (-15 -1877 ((-145) |#1| (-570) (-145)))) (-1153)) (T -1152))
+NIL
+(-10 -8 (-15 -3735 ((-868) |#1|)) (-15 -1877 (|#1| |#1| |#1|)) (-15 -4392 (|#1| |#1| (-142))) (-15 -4392 (|#1| |#1| (-145))) (-15 -3735 (|#1| (-145))) (-15 -2514 ((-112) |#1| |#1|)) (-15 -2986 (|#1| |#1|)) (-15 -3145 (|#1| |#1|)) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -1877 ((-145) |#1| (-570))) (-15 -1877 ((-145) |#1| (-570) (-145))))
+((-2417 (((-112) $ $) 19 (|has| (-145) (-1109)))) (-3333 (($ $) 121)) (-2986 (($ $) 122)) (-4392 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-2496 (((-112) $ $) 119)) (-2478 (((-112) $ $ (-570)) 118)) (-4289 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4429 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-3885 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3894 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-1644 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-2347 (($ $) 91 (|has| $ (-6 -4450)))) (-2261 (($ $) 101)) (-2356 (($ $ (-1244 (-570)) $) 115)) (-3480 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4449)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) 77 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) 74 (|has| $ (-6 -4449))) (((-145) (-1 (-145) (-145) (-145)) $) 73 (|has| $ (-6 -4449)))) (-3789 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4450)))) (-3713 (((-145) $ (-570)) 52)) (-2514 (((-112) $ $) 120)) (-3998 (((-570) (-1 (-112) (-145)) $) 98) (((-570) (-145) $) 97 (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 96 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 114) (((-570) (-142) $ (-570)) 113)) (-2835 (((-650 (-145)) $) 31 (|has| $ (-6 -4449)))) (-4287 (($ (-777) (-145)) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 88 (|has| (-145) (-856)))) (-2727 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-3201 (((-650 (-145)) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 87 (|has| (-145) (-856)))) (-4008 (((-112) $ $ (-145)) 116)) (-4121 (((-777) $ $ (-145)) 117)) (-3776 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-2318 (($ $) 123)) (-3145 (($ $) 124)) (-2113 (((-112) $ (-777)) 10)) (-1651 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-4268 (((-1168) $) 22 (|has| (-145) (-1109)))) (-4286 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| (-145) (-1109)))) (-3443 (((-145) $) 43 (|has| (-570) (-856)))) (-3281 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-3531 (($ $ (-145)) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-145)))) 27 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) 26 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) 25 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) 24 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-4348 (((-650 (-145)) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1244 (-570))) 64) (($ $ $) 103)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3490 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4449))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3749 (($ (-650 (-145))) 71)) (-2439 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (($ (-145)) 112) (((-868) $) 18 (|has| (-145) (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| (-145) (-1109)))) (-2964 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 85 (|has| (-145) (-856)))) (-2904 (((-112) $ $) 84 (|has| (-145) (-856)))) (-2872 (((-112) $ $) 20 (|has| (-145) (-1109)))) (-2914 (((-112) $ $) 86 (|has| (-145) (-856)))) (-2894 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-1153) (-141)) (T -1153))
-((-3949 (*1 *1 *1) (-4 *1 (-1153))) (-2071 (*1 *1 *1) (-4 *1 (-1153))) (-1575 (*1 *1 *1) (-4 *1 (-1153))) (-2229 (*1 *1 *1) (-4 *1 (-1153))) (-2514 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2496 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2478 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))) (-4121 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-777)))) (-4007 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))) (-1766 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1243 (-570))))) (-3998 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)))) (-3998 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)) (-5 *3 (-142)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-145)) (-4 *1 (-1153)))) (-2198 (*1 *2 *1 *3) (-12 (-5 *3 (-145)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-2198 (*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-1414 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1414 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1653 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1653 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1643 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1643 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1876 (*1 *1 *1 *1) (-4 *1 (-1153))))
-(-13 (-19 (-145)) (-10 -8 (-15 -3949 ($ $)) (-15 -2071 ($ $)) (-15 -1575 ($ $)) (-15 -2229 ($ $)) (-15 -2514 ((-112) $ $)) (-15 -2496 ((-112) $ $)) (-15 -2478 ((-112) $ $ (-570))) (-15 -4121 ((-777) $ $ (-145))) (-15 -4007 ((-112) $ $ (-145))) (-15 -1766 ($ $ (-1243 (-570)) $)) (-15 -3998 ((-570) $ $ (-570))) (-15 -3998 ((-570) (-142) $ (-570))) (-15 -3735 ($ (-145))) (-15 -2198 ((-650 $) $ (-145))) (-15 -2198 ((-650 $) $ (-142))) (-15 -1414 ($ $ (-145))) (-15 -1414 ($ $ (-142))) (-15 -1653 ($ $ (-145))) (-15 -1653 ($ $ (-142))) (-15 -1643 ($ $ (-145))) (-15 -1643 ($ $ (-142))) (-15 -1876 ($ $ $))))
-(((-34) . T) ((-102) -2740 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-619 (-868)) -2740 (|has| (-145) (-1109)) (|has| (-145) (-856)) (|has| (-145) (-619 (-868)))) ((-152 #0=(-145)) . T) ((-620 (-542)) |has| (-145) (-620 (-542))) ((-290 #1=(-570) #0#) . T) ((-292 #1# #0#) . T) ((-313 #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-378 #0#) . T) ((-495 #0#) . T) ((-610 #1# #0#) . T) ((-520 #0# #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-657 #0#) . T) ((-19 #0#) . T) ((-856) |has| (-145) (-856)) ((-1109) -2740 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-1226) . T))
-((-2591 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777)) 112)) (-3420 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 62) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 61)) (-2453 (((-1281) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)) 97)) (-1933 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-2908 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 63) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112)) 65)) (-1386 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 84) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 85)) (-1416 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 90)) (-4067 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 60)) (-3861 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
-(((-1154 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3861 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1933 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -4067 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2591 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1416 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1281) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -1154))
-((-2453 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *4 (-777)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1281)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1118 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1168)) (-5 *1 (-1154 *4 *5 *6 *7 *8)))) (-2591 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3593 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3593 *11)))) (-5 *3 (-650 *10)) (-5 *4 (-650 *11)) (-4 *10 (-1074 *7 *8 *9)) (-4 *11 (-1118 *7 *8 *9 *10)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-5 *1 (-1154 *7 *8 *9 *10 *11)))) (-1386 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-1386 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-2908 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-2908 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-2908 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *7 *8 *9 *3 *4)) (-4 *4 (-1118 *7 *8 *9 *3)))) (-3420 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-3420 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-4067 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-1933 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-3861 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -3861 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1933 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -4067 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3420 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2908 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1386 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2591 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1416 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1281) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777))))
-((-2416 (((-112) $ $) NIL)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) NIL)) (-2411 (((-650 $) (-650 |#4|)) 124) (((-650 $) (-650 |#4|) (-112)) 125) (((-650 $) (-650 |#4|) (-112) (-112)) 123) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 126)) (-1716 (((-650 |#3|) $) NIL)) (-3418 (((-112) $) NIL)) (-1536 (((-112) $) NIL (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-2222 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 97)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1424 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 75)) (-2450 (($) NIL T CONST)) (-3809 (((-112) $) 29 (|has| |#1| (-562)))) (-2730 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1905 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2374 (((-112) $) NIL (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3742 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 45)) (-2561 ((|#4| |#4| $) 78)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-1702 (($ |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 91 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1808 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) NIL)) (-2974 (((-112) |#4| $) NIL)) (-3333 (((-112) |#4| $) NIL)) (-3052 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3213 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 139)) (-2836 (((-650 |#4|) $) 18 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2711 ((|#3| $) 38)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#4|) $) 19 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 23)) (-3727 (((-650 |#3|) $) NIL)) (-1844 (((-112) |#3| $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-1796 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-3769 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 117)) (-1728 (((-3 |#4| "failed") $) 42)) (-2395 (((-650 $) |#4| $) 102)) (-3235 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-2890 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 112) (((-112) |#4| $) 65)) (-2307 (((-650 $) |#4| $) 121) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 122) (((-650 $) |#4| (-650 $)) NIL)) (-1734 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 134)) (-2731 (($ |#4| $) 88) (($ (-650 |#4|) $) 89) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 87)) (-3185 (((-650 |#4|) $) NIL)) (-1329 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1695 ((|#4| |#4| $) NIL)) (-4122 (((-112) $ $) NIL)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3339 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 40)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3802 (((-3 $ "failed") $ |#4|) 59)) (-1558 (($ $ |#4|) NIL) (((-650 $) |#4| $) 104) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 99)) (-1671 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 17)) (-3743 (($) 14)) (-1601 (((-777) $) NIL)) (-3486 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) 13)) (-1416 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 22)) (-4280 (($ $ |#3|) 52)) (-2185 (($ $ |#3|) 54)) (-1892 (($ $) NIL)) (-1332 (($ $ |#3|) NIL)) (-3735 (((-868) $) 35) (((-650 |#4|) $) 46)) (-1633 (((-777) $) NIL (|has| |#3| (-373)))) (-1859 (((-112) $ $) NIL)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4194 (((-650 $) |#4| $) 66) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-4368 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) NIL)) (-1985 (((-112) |#4| $) NIL)) (-2663 (((-112) |#3| $) 74)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1155 |#1| |#2| |#3| |#4|) (-13 (-1118 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2731 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -1734 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -3213 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1155))
-((-2731 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *3))) (-5 *1 (-1155 *5 *6 *7 *3)) (-4 *3 (-1074 *5 *6 *7)))) (-2411 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))) (-2411 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))) (-1734 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))) (-3213 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-650 *8)) (|:| |towers| (-650 (-1155 *5 *6 *7 *8))))) (-5 *1 (-1155 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
-(-13 (-1118 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2731 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -2411 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -1734 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -3213 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3240 ((|#1| $) 37)) (-2368 (($ (-650 |#1|)) 45)) (-3594 (((-112) $ (-777)) NIL)) (-2450 (($) NIL T CONST)) (-2562 ((|#1| |#1| $) 40)) (-1446 ((|#1| $) 35)) (-2836 (((-650 |#1|) $) 18 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 22)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3784 ((|#1| $) 38)) (-2278 (($ |#1| $) 41)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1899 ((|#1| $) 36)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 32)) (-3743 (($) 43)) (-2765 (((-777) $) 30)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 27)) (-3735 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2251 (($ (-650 |#1|)) NIL)) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 17 (|has| |#1| (-1109)))) (-2426 (((-777) $) 31 (|has| $ (-6 -4448)))))
-(((-1156 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -2368 ($ (-650 |#1|))))) (-1226)) (T -1156))
-((-2368 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-1156 *3)))))
+((-3145 (*1 *1 *1) (-4 *1 (-1153))) (-2318 (*1 *1 *1) (-4 *1 (-1153))) (-2986 (*1 *1 *1) (-4 *1 (-1153))) (-3333 (*1 *1 *1) (-4 *1 (-1153))) (-2514 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2496 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2478 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))) (-4121 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-777)))) (-4008 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))) (-2356 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1244 (-570))))) (-3998 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)))) (-3998 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)) (-5 *3 (-142)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-145)) (-4 *1 (-1153)))) (-4289 (*1 *2 *1 *3) (-12 (-5 *3 (-145)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-4289 (*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-4392 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-4392 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1651 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1651 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1644 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1644 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1877 (*1 *1 *1 *1) (-4 *1 (-1153))))
+(-13 (-19 (-145)) (-10 -8 (-15 -3145 ($ $)) (-15 -2318 ($ $)) (-15 -2986 ($ $)) (-15 -3333 ($ $)) (-15 -2514 ((-112) $ $)) (-15 -2496 ((-112) $ $)) (-15 -2478 ((-112) $ $ (-570))) (-15 -4121 ((-777) $ $ (-145))) (-15 -4008 ((-112) $ $ (-145))) (-15 -2356 ($ $ (-1244 (-570)) $)) (-15 -3998 ((-570) $ $ (-570))) (-15 -3998 ((-570) (-142) $ (-570))) (-15 -3735 ($ (-145))) (-15 -4289 ((-650 $) $ (-145))) (-15 -4289 ((-650 $) $ (-142))) (-15 -4392 ($ $ (-145))) (-15 -4392 ($ $ (-142))) (-15 -1651 ($ $ (-145))) (-15 -1651 ($ $ (-142))) (-15 -1644 ($ $ (-145))) (-15 -1644 ($ $ (-142))) (-15 -1877 ($ $ $))))
+(((-34) . T) ((-102) -2740 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-619 (-868)) -2740 (|has| (-145) (-1109)) (|has| (-145) (-856)) (|has| (-145) (-619 (-868)))) ((-152 #0=(-145)) . T) ((-620 (-542)) |has| (-145) (-620 (-542))) ((-290 #1=(-570) #0#) . T) ((-292 #1# #0#) . T) ((-313 #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-378 #0#) . T) ((-495 #0#) . T) ((-610 #1# #0#) . T) ((-520 #0# #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-657 #0#) . T) ((-19 #0#) . T) ((-856) |has| (-145) (-856)) ((-1109) -2740 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-1227) . T))
+((-2585 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777)) 112)) (-2999 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 62) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 61)) (-2453 (((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)) 97)) (-3314 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-3685 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777)) 63) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112)) 65)) (-1437 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 84) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 85)) (-1417 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) 90)) (-2015 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|) 60)) (-1737 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
+(((-1154 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1737 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3314 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2015 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2585 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1417 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -1154))
+((-2453 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9)))) (-5 *4 (-777)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1282)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8))) (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1118 *4 *5 *6 *7)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1168)) (-5 *1 (-1154 *4 *5 *6 *7 *8)))) (-2585 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3593 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3593 *11)))) (-5 *3 (-650 *10)) (-5 *4 (-650 *11)) (-4 *10 (-1074 *7 *8 *9)) (-4 *11 (-1118 *7 *8 *9 *10)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-5 *1 (-1154 *7 *8 *9 *10 *11)))) (-1437 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-1437 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-3685 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-3685 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-3685 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799)) (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *7 *8 *9 *3 *4)) (-4 *4 (-1118 *7 *8 *9 *3)))) (-2999 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-2999 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *3 (-1074 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-2015 (*1 *2 *3 *4) (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-650 *4)) (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-3314 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))) (-1737 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1737 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3314 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2015 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -2999 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5| (-777))) (-15 -3685 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) |#4| |#5|)) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1437 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2585 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))))) (-777))) (-15 -1417 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|)))) (-15 -2453 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3593 |#5|))) (-777))))
+((-2417 (((-112) $ $) NIL)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1556 (((-650 $) (-650 |#4|)) 124) (((-650 $) (-650 |#4|) (-112)) 125) (((-650 $) (-650 |#4|) (-112) (-112)) 123) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 126)) (-1713 (((-650 |#3|) $) NIL)) (-2977 (((-112) $) NIL)) (-3873 (((-112) $) NIL (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3870 ((|#4| |#4| $) NIL)) (-3252 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| $) 97)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-1425 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 75)) (-3761 (($) NIL T CONST)) (-2391 (((-112) $) 29 (|has| |#1| (-562)))) (-1475 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2993 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2376 (((-112) $) NIL (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2996 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 45)) (-3565 ((|#4| |#4| $) 78)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1703 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 91 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) NIL)) (-3045 (((-112) |#4| $) NIL)) (-3412 (((-112) |#4| $) NIL)) (-2561 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1795 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 139)) (-2835 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2451 ((|#3| $) 38)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#4|) $) 19 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3776 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 23)) (-2881 (((-650 |#3|) $) NIL)) (-3710 (((-112) |#3| $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-1444 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-2068 (((-650 (-2 (|:| |val| |#4|) (|:| -3593 $))) |#4| |#4| $) 117)) (-1729 (((-3 |#4| "failed") $) 42)) (-1403 (((-650 $) |#4| $) 102)) (-3840 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-3618 (((-650 (-2 (|:| |val| (-112)) (|:| -3593 $))) |#4| $) 112) (((-112) |#4| $) 65)) (-2885 (((-650 $) |#4| $) 121) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 122) (((-650 $) |#4| (-650 $)) NIL)) (-2111 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 134)) (-1486 (($ |#4| $) 88) (($ (-650 |#4|) $) 89) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 87)) (-1507 (((-650 |#4|) $) NIL)) (-1810 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1831 ((|#4| |#4| $) NIL)) (-2458 (((-112) $ $) NIL)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3464 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 40)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2329 (((-3 $ "failed") $ |#4|) 59)) (-4102 (($ $ |#4|) NIL) (((-650 $) |#4| $) 104) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 99)) (-2697 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 17)) (-3006 (($) 14)) (-3221 (((-777) $) NIL)) (-3490 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) 13)) (-1417 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 22)) (-3408 (($ $ |#3|) 52)) (-4164 (($ $ |#3|) 54)) (-4148 (($ $) NIL)) (-1842 (($ $ |#3|) NIL)) (-3735 (((-868) $) 35) (((-650 |#4|) $) 46)) (-3580 (((-777) $) NIL (|has| |#3| (-373)))) (-3866 (((-112) $ $) NIL)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-3811 (((-650 $) |#4| $) 66) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-2964 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) NIL)) (-2626 (((-112) |#4| $) NIL)) (-2048 (((-112) |#3| $) 74)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1155 |#1| |#2| |#3| |#4|) (-13 (-1118 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1486 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -2111 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1795 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1155))
+((-1486 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *3))) (-5 *1 (-1155 *5 *6 *7 *3)) (-4 *3 (-1074 *5 *6 *7)))) (-1556 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))) (-1556 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))) (-2111 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))) (-1795 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-650 *8)) (|:| |towers| (-650 (-1155 *5 *6 *7 *8))))) (-5 *1 (-1155 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+(-13 (-1118 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1486 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1556 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -2111 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1795 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3240 ((|#1| $) 37)) (-2368 (($ (-650 |#1|)) 45)) (-4095 (((-112) $ (-777)) NIL)) (-3761 (($) NIL T CONST)) (-3575 ((|#1| |#1| $) 40)) (-1568 ((|#1| $) 35)) (-2835 (((-650 |#1|) $) 18 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 22)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2192 ((|#1| $) 38)) (-2599 (($ |#1| $) 41)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-4223 ((|#1| $) 36)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 32)) (-3006 (($) 43)) (-2766 (((-777) $) 30)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 27)) (-3735 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3594 (($ (-650 |#1|)) NIL)) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 17 (|has| |#1| (-1109)))) (-2426 (((-777) $) 31 (|has| $ (-6 -4449)))))
+(((-1156 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -2368 ($ (-650 |#1|))))) (-1227)) (T -1156))
+((-2368 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1156 *3)))))
(-13 (-1130 |#1|) (-10 -8 (-15 -2368 ($ (-650 |#1|)))))
-((-3895 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1243 (-570)) |#2|) 55) ((|#2| $ (-570) |#2|) 52)) (-2356 (((-112) $) 12)) (-3776 (($ (-1 |#2| |#2|) $) 50)) (-3443 ((|#2| $) NIL) (($ $ (-777)) 20)) (-1952 (($ $ |#2|) 51)) (-3412 (((-112) $) 11)) (-1876 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1243 (-570))) 38) ((|#2| $ (-570)) 29) ((|#2| $ (-570) |#2|) NIL)) (-2850 (($ $ $) 58) (($ $ |#2|) NIL)) (-2439 (($ $ $) 40) (($ |#2| $) NIL) (($ (-650 $)) 47) (($ $ |#2|) NIL)))
-(((-1157 |#1| |#2|) (-10 -8 (-15 -2356 ((-112) |#1|)) (-15 -3412 ((-112) |#1|)) (-15 -3895 (|#2| |#1| (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570))) (-15 -1952 (|#1| |#1| |#2|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -3895 (|#2| |#1| (-1243 (-570)) |#2|)) (-15 -3895 (|#2| |#1| "last" |#2|)) (-15 -3895 (|#1| |#1| "rest" |#1|)) (-15 -3895 (|#2| |#1| "first" |#2|)) (-15 -2850 (|#1| |#1| |#2|)) (-15 -2850 (|#1| |#1| |#1|)) (-15 -1876 (|#2| |#1| "last")) (-15 -1876 (|#1| |#1| "rest")) (-15 -3443 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -1876 (|#2| |#1| "value")) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|))) (-1158 |#2|) (-1226)) (T -1157))
-NIL
-(-10 -8 (-15 -2356 ((-112) |#1|)) (-15 -3412 ((-112) |#1|)) (-15 -3895 (|#2| |#1| (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570) |#2|)) (-15 -1876 (|#2| |#1| (-570))) (-15 -1952 (|#1| |#1| |#2|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -1876 (|#1| |#1| (-1243 (-570)))) (-15 -3895 (|#2| |#1| (-1243 (-570)) |#2|)) (-15 -3895 (|#2| |#1| "last" |#2|)) (-15 -3895 (|#1| |#1| "rest" |#1|)) (-15 -3895 (|#2| |#1| "first" |#2|)) (-15 -2850 (|#1| |#1| |#2|)) (-15 -2850 (|#1| |#1| |#1|)) (-15 -1876 (|#2| |#1| "last")) (-15 -1876 (|#1| |#1| "rest")) (-15 -3443 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -1876 (|#2| |#1| "value")) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1573 (($ $) 68)) (-3225 (((-1281) $ (-570) (-570)) 98 (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) 53 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-2512 (($ $ $) 57 (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) 55 (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4449))) (($ $ "rest" $) 56 (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 118 (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4448)))) (-2533 ((|#1| $) 67)) (-2450 (($) 7 T CONST)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-3480 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4448))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3790 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 88)) (-2356 (((-112) $) 84)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4286 (($ (-777) |#1|) 109)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 96 (|has| (-570) (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 95 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1728 ((|#1| $) 71) (($ $ (-777)) 69)) (-4285 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2344 (((-650 (-570)) $) 93)) (-1354 (((-112) (-570) $) 92)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-1952 (($ $ |#1|) 97 (|has| $ (-6 -4449)))) (-3412 (((-112) $) 85)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 91)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1243 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-1678 (((-570) $ $) 45)) (-4320 (($ $ (-1243 (-570))) 115) (($ $ (-570)) 114)) (-3150 (((-112) $) 47)) (-3146 (($ $) 63)) (-2839 (($ $) 60 (|has| $ (-6 -4449)))) (-2409 (((-777) $) 64)) (-2567 (($ $) 65)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-1416 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 108)) (-2850 (($ $ $) 62 (|has| $ (-6 -4449))) (($ $ |#1|) 61 (|has| $ (-6 -4449)))) (-2439 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1158 |#1|) (-141) (-1226)) (T -1158))
-((-3412 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))) (-2356 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))))
-(-13 (-1264 |t#1|) (-657 |t#1|) (-10 -8 (-15 -3412 ((-112) $)) (-15 -2356 ((-112) $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1226) . T) ((-1264 |#1|) . T))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#2| $ |#1| |#2|) NIL)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) NIL)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2760 (((-650 |#1|) $) NIL)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2344 (((-650 |#1|) $) NIL)) (-1354 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1159 |#1| |#2| |#3|) (-1202 |#1| |#2|) (-1109) (-1109) |#2|) (T -1159))
-NIL
-(-1202 |#1| |#2|)
-((-2416 (((-112) $ $) NIL)) (-1317 (((-697 (-1144)) $) 27)) (-3695 (((-1144) $) 15)) (-2566 (((-1144) $) 17)) (-1903 (((-1168) $) NIL)) (-3528 (((-512) $) 13)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 37) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1160) (-13 (-1092) (-10 -8 (-15 -3528 ((-512) $)) (-15 -2566 ((-1144) $)) (-15 -1317 ((-697 (-1144)) $)) (-15 -3695 ((-1144) $))))) (T -1160))
-((-3528 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))) (-2566 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))) (-1317 (*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))) (-3695 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
-(-13 (-1092) (-10 -8 (-15 -3528 ((-512) $)) (-15 -2566 ((-1144) $)) (-15 -1317 ((-697 (-1144)) $)) (-15 -3695 ((-1144) $))))
-((-2416 (((-112) $ $) 7)) (-2885 (((-3 $ "failed") $) 14)) (-1903 (((-1168) $) 10)) (-2314 (($) 15 T CONST)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
+((-3894 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1244 (-570)) |#2|) 55) ((|#2| $ (-570) |#2|) 52)) (-2237 (((-112) $) 12)) (-3776 (($ (-1 |#2| |#2|) $) 50)) (-3443 ((|#2| $) NIL) (($ $ (-777)) 20)) (-3531 (($ $ |#2|) 51)) (-2928 (((-112) $) 11)) (-1877 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1244 (-570))) 38) ((|#2| $ (-570)) 29) ((|#2| $ (-570) |#2|) NIL)) (-3214 (($ $ $) 58) (($ $ |#2|) NIL)) (-2439 (($ $ $) 40) (($ |#2| $) NIL) (($ (-650 $)) 47) (($ $ |#2|) NIL)))
+(((-1157 |#1| |#2|) (-10 -8 (-15 -2237 ((-112) |#1|)) (-15 -2928 ((-112) |#1|)) (-15 -3894 (|#2| |#1| (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570))) (-15 -3531 (|#1| |#1| |#2|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -3894 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -3894 (|#2| |#1| "last" |#2|)) (-15 -3894 (|#1| |#1| "rest" |#1|)) (-15 -3894 (|#2| |#1| "first" |#2|)) (-15 -3214 (|#1| |#1| |#2|)) (-15 -3214 (|#1| |#1| |#1|)) (-15 -1877 (|#2| |#1| "last")) (-15 -1877 (|#1| |#1| "rest")) (-15 -3443 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -1877 (|#2| |#1| "value")) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|))) (-1158 |#2|) (-1227)) (T -1157))
+NIL
+(-10 -8 (-15 -2237 ((-112) |#1|)) (-15 -2928 ((-112) |#1|)) (-15 -3894 (|#2| |#1| (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570) |#2|)) (-15 -1877 (|#2| |#1| (-570))) (-15 -3531 (|#1| |#1| |#2|)) (-15 -2439 (|#1| |#1| |#2|)) (-15 -2439 (|#1| (-650 |#1|))) (-15 -1877 (|#1| |#1| (-1244 (-570)))) (-15 -3894 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -3894 (|#2| |#1| "last" |#2|)) (-15 -3894 (|#1| |#1| "rest" |#1|)) (-15 -3894 (|#2| |#1| "first" |#2|)) (-15 -3214 (|#1| |#1| |#2|)) (-15 -3214 (|#1| |#1| |#1|)) (-15 -1877 (|#2| |#1| "last")) (-15 -1877 (|#1| |#1| "rest")) (-15 -3443 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "first")) (-15 -3443 (|#2| |#1|)) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -1877 (|#2| |#1| "value")) (-15 -3776 (|#1| (-1 |#2| |#2|) |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1574 (($ $) 68)) (-3727 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3066 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4450))) (($ $ "rest" $) 56 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 118 (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4449)))) (-2533 ((|#1| $) 67)) (-3761 (($) 7 T CONST)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-3480 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4449))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3789 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 88)) (-2237 (((-112) $) 84)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4287 (($ (-777) |#1|) 109)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 96 (|has| (-570) (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 95 (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1729 ((|#1| $) 71) (($ $ (-777)) 69)) (-4286 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2122 (((-650 (-570)) $) 93)) (-2083 (((-112) (-570) $) 92)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-3531 (($ $ |#1|) 97 (|has| $ (-6 -4450)))) (-2928 (((-112) $) 85)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 91)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-2763 (((-570) $ $) 45)) (-4320 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-2345 (((-112) $) 47)) (-2308 (($ $) 63)) (-3103 (($ $) 60 (|has| $ (-6 -4450)))) (-1535 (((-777) $) 64)) (-3631 (($ $) 65)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-1417 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 108)) (-3214 (($ $ $) 62 (|has| $ (-6 -4450))) (($ $ |#1|) 61 (|has| $ (-6 -4450)))) (-2439 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1158 |#1|) (-141) (-1227)) (T -1158))
+((-2928 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2237 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(-13 (-1265 |t#1|) (-657 |t#1|) (-10 -8 (-15 -2928 ((-112) $)) (-15 -2237 ((-112) $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1227) . T) ((-1265 |#1|) . T))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#2| $ |#1| |#2|) NIL)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2761 (((-650 |#1|) $) NIL)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2122 (((-650 |#1|) $) NIL)) (-2083 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1159 |#1| |#2| |#3|) (-1203 |#1| |#2|) (-1109) (-1109) |#2|) (T -1159))
+NIL
+(-1203 |#1| |#2|)
+((-2417 (((-112) $ $) NIL)) (-1678 (((-697 (-1144)) $) 27)) (-3696 (((-1144) $) 15)) (-3623 (((-1144) $) 17)) (-4268 (((-1168) $) NIL)) (-1602 (((-512) $) 13)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 37) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1160) (-13 (-1092) (-10 -8 (-15 -1602 ((-512) $)) (-15 -3623 ((-1144) $)) (-15 -1678 ((-697 (-1144)) $)) (-15 -3696 ((-1144) $))))) (T -1160))
+((-1602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))) (-3623 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))) (-1678 (*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))) (-3696 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
+(-13 (-1092) (-10 -8 (-15 -1602 ((-512) $)) (-15 -3623 ((-1144) $)) (-15 -1678 ((-697 (-1144)) $)) (-15 -3696 ((-1144) $))))
+((-2417 (((-112) $ $) 7)) (-3584 (((-3 $ "failed") $) 14)) (-4268 (((-1168) $) 10)) (-2315 (($) 15 T CONST)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-2872 (((-112) $ $) 6)))
(((-1161) (-141)) (T -1161))
-((-2314 (*1 *1) (-4 *1 (-1161))) (-2885 (*1 *1 *1) (|partial| -4 *1 (-1161))))
-(-13 (-1109) (-10 -8 (-15 -2314 ($) -3640) (-15 -2885 ((-3 $ "failed") $))))
+((-2315 (*1 *1) (-4 *1 (-1161))) (-3584 (*1 *1 *1) (|partial| -4 *1 (-1161))))
+(-13 (-1109) (-10 -8 (-15 -2315 ($) -3640) (-15 -3584 ((-3 $ "failed") $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3939 (((-1166 |#1|) (-1166 |#1|)) 17)) (-4415 (((-1166 |#1|) (-1166 |#1|)) 13)) (-1366 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 20)) (-3775 (((-1166 |#1|) (-1166 |#1|)) 15)))
-(((-1162 |#1|) (-10 -7 (-15 -4415 ((-1166 |#1|) (-1166 |#1|))) (-15 -3775 ((-1166 |#1|) (-1166 |#1|))) (-15 -3939 ((-1166 |#1|) (-1166 |#1|))) (-15 -1366 ((-1166 |#1|) (-1166 |#1|) (-570) (-570)))) (-13 (-562) (-148))) (T -1162))
-((-1366 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1162 *4)))) (-3939 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-3775 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-4415 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))))
-(-10 -7 (-15 -4415 ((-1166 |#1|) (-1166 |#1|))) (-15 -3775 ((-1166 |#1|) (-1166 |#1|))) (-15 -3939 ((-1166 |#1|) (-1166 |#1|))) (-15 -1366 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))))
+((-4354 (((-1166 |#1|) (-1166 |#1|)) 17)) (-2215 (((-1166 |#1|) (-1166 |#1|)) 13)) (-3254 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 20)) (-2128 (((-1166 |#1|) (-1166 |#1|)) 15)))
+(((-1162 |#1|) (-10 -7 (-15 -2215 ((-1166 |#1|) (-1166 |#1|))) (-15 -2128 ((-1166 |#1|) (-1166 |#1|))) (-15 -4354 ((-1166 |#1|) (-1166 |#1|))) (-15 -3254 ((-1166 |#1|) (-1166 |#1|) (-570) (-570)))) (-13 (-562) (-148))) (T -1162))
+((-3254 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1162 *4)))) (-4354 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-2128 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-2215 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))))
+(-10 -7 (-15 -2215 ((-1166 |#1|) (-1166 |#1|))) (-15 -2128 ((-1166 |#1|) (-1166 |#1|))) (-15 -4354 ((-1166 |#1|) (-1166 |#1|))) (-15 -3254 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))))
((-2439 (((-1166 |#1|) (-1166 (-1166 |#1|))) 15)))
-(((-1163 |#1|) (-10 -7 (-15 -2439 ((-1166 |#1|) (-1166 (-1166 |#1|))))) (-1226)) (T -1163))
-((-2439 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1163 *4)) (-4 *4 (-1226)))))
+(((-1163 |#1|) (-10 -7 (-15 -2439 ((-1166 |#1|) (-1166 (-1166 |#1|))))) (-1227)) (T -1163))
+((-2439 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1163 *4)) (-4 *4 (-1227)))))
(-10 -7 (-15 -2439 ((-1166 |#1|) (-1166 (-1166 |#1|)))))
-((-3734 (((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 25)) (-3529 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 26)) (-1351 (((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|)) 16)))
-(((-1164 |#1| |#2|) (-10 -7 (-15 -1351 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -3734 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3529 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)))) (-1226) (-1226)) (T -1164))
-((-3529 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1226)) (-4 *2 (-1226)) (-5 *1 (-1164 *5 *2)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1166 *6)) (-4 *6 (-1226)) (-4 *3 (-1226)) (-5 *2 (-1166 *3)) (-5 *1 (-1164 *6 *3)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1166 *6)) (-5 *1 (-1164 *5 *6)))))
-(-10 -7 (-15 -1351 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -3734 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3529 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))))
-((-1351 (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)) 21)))
-(((-1165 |#1| |#2| |#3|) (-10 -7 (-15 -1351 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)))) (-1226) (-1226) (-1226)) (T -1165))
-((-1351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1166 *6)) (-5 *5 (-1166 *7)) (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-1166 *8)) (-5 *1 (-1165 *6 *7 *8)))))
-(-10 -7 (-15 -1351 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1573 (($ $) 67)) (-3225 (((-1281) $ (-570) (-570)) 99 (|has| $ (-6 -4449)))) (-3284 (($ $ (-570)) 129 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3144 (((-868) $) 56 (|has| |#1| (-1109)))) (-2343 (((-112)) 55 (|has| |#1| (-1109)))) (-1379 ((|#1| $ |#1|) NIL (|has| $ (-6 -4449)))) (-2512 (($ $ $) 116 (|has| $ (-6 -4449))) (($ $ (-570) $) 142)) (-3138 ((|#1| $ |#1|) 126 (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) 121 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) 123 (|has| $ (-6 -4449))) (($ $ "rest" $) 125 (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) 128 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 113 (|has| $ (-6 -4449))) ((|#1| $ (-570) |#1|) 77 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 80)) (-2533 ((|#1| $) NIL)) (-2450 (($) NIL T CONST)) (-3210 (($ $) 14)) (-3455 (($ $) 42) (($ $ (-777)) 111)) (-3978 (((-112) (-650 |#1|) $) 135 (|has| |#1| (-1109)))) (-4428 (($ (-650 |#1|)) 131)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) 79)) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-2356 (((-112) $) NIL)) (-2836 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-1877 (((-1281) (-570) $) 141 (|has| |#1| (-1109)))) (-2323 (((-777) $) 138)) (-3457 (((-650 $) $) NIL)) (-1457 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 95 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 85) (($ (-1 |#1| |#1| |#1|) $ $) 89)) (-3452 (((-112) $ (-777)) NIL)) (-2282 (((-650 |#1|) $) NIL)) (-3873 (((-112) $) NIL)) (-3145 (($ $) 114)) (-1453 (((-112) $) 13)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1728 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-4285 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) 96)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1346 (($ (-1 |#1|)) 144) (($ (-1 |#1| |#1|) |#1|) 145)) (-3490 ((|#1| $) 10)) (-3443 ((|#1| $) 41) (($ $ (-777)) 65)) (-1475 (((-2 (|:| |cycle?| (-112)) (|:| -4303 (-777)) (|:| |period| (-777))) (-777) $) 36)) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1399 (($ (-1 (-112) |#1|) $) 146)) (-1410 (($ (-1 (-112) |#1|) $) 147)) (-1952 (($ $ |#1|) 90 (|has| $ (-6 -4449)))) (-1558 (($ $ (-570)) 45)) (-3412 (((-112) $) 94)) (-3279 (((-112) $) 12)) (-4105 (((-112) $) 137)) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 30)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) 20)) (-3743 (($) 60)) (-1876 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1243 (-570))) NIL) ((|#1| $ (-570)) 75) ((|#1| $ (-570) |#1|) NIL)) (-1678 (((-570) $ $) 64)) (-4320 (($ $ (-1243 (-570))) NIL) (($ $ (-570)) NIL)) (-2020 (($ (-1 $)) 63)) (-3150 (((-112) $) 91)) (-3146 (($ $) 92)) (-2839 (($ $) 117 (|has| $ (-6 -4449)))) (-2409 (((-777) $) NIL)) (-2567 (($ $) NIL)) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 59)) (-1416 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 73)) (-3682 (($ |#1| $) 115)) (-2850 (($ $ $) 119 (|has| $ (-6 -4449))) (($ $ |#1|) 120 (|has| $ (-6 -4449)))) (-2439 (($ $ $) 101) (($ |#1| $) 61) (($ (-650 $)) 106) (($ $ |#1|) 100)) (-3049 (($ $) 66)) (-3735 (($ (-650 |#1|)) 130) (((-868) $) 57 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) NIL)) (-2016 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 133 (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1166 |#1|) (-13 (-680 |#1|) (-622 (-650 |#1|)) (-10 -8 (-6 -4449) (-15 -4428 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -3978 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -1475 ((-2 (|:| |cycle?| (-112)) (|:| -4303 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -2020 ($ (-1 $))) (-15 -3682 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1877 ((-1281) (-570) $)) (-15 -3144 ((-868) $)) (-15 -2343 ((-112)))) |%noBranch|) (-15 -2512 ($ $ (-570) $)) (-15 -1346 ($ (-1 |#1|))) (-15 -1346 ($ (-1 |#1| |#1|) |#1|)) (-15 -1399 ($ (-1 (-112) |#1|) $)) (-15 -1410 ($ (-1 (-112) |#1|) $)))) (-1226)) (T -1166))
-((-4428 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))) (-3978 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1226)) (-5 *2 (-112)) (-5 *1 (-1166 *4)))) (-1475 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -4303 (-777)) (|:| |period| (-777)))) (-5 *1 (-1166 *4)) (-4 *4 (-1226)) (-5 *3 (-777)))) (-2020 (*1 *1 *2) (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1226)))) (-3682 (*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1226)))) (-1877 (*1 *2 *3 *1) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1166 *4)) (-4 *4 (-1109)) (-4 *4 (-1226)))) (-3144 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1226)))) (-2343 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1226)))) (-2512 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1226)))) (-1346 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))) (-1346 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))) (-1399 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))) (-1410 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))))
-(-13 (-680 |#1|) (-622 (-650 |#1|)) (-10 -8 (-6 -4449) (-15 -4428 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -3978 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -1475 ((-2 (|:| |cycle?| (-112)) (|:| -4303 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -2020 ($ (-1 $))) (-15 -3682 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1877 ((-1281) (-570) $)) (-15 -3144 ((-868) $)) (-15 -2343 ((-112)))) |%noBranch|) (-15 -2512 ($ $ (-570) $)) (-15 -1346 ($ (-1 |#1|))) (-15 -1346 ($ (-1 |#1| |#1|) |#1|)) (-15 -1399 ($ (-1 (-112) |#1|) $)) (-15 -1410 ($ (-1 (-112) |#1|) $))))
-((-2416 (((-112) $ $) 19)) (-2229 (($ $) 121)) (-1575 (($ $) 122)) (-1414 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-2496 (((-112) $ $) 119)) (-2478 (((-112) $ $ (-570)) 118)) (-3320 (($ (-570)) 128)) (-2198 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4254 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-3239 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4449))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-3594 (((-112) $ (-777)) 8)) (-3895 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4449))) (((-145) $ (-1243 (-570)) (-145)) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-1643 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-2697 (($ $) 91 (|has| $ (-6 -4449)))) (-2258 (($ $) 101)) (-1766 (($ $ (-1243 (-570)) $) 115)) (-3480 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4448)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) 77 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) 74 (|has| $ (-6 -4448))) (((-145) (-1 (-145) (-145) (-145)) $) 73 (|has| $ (-6 -4448)))) (-3790 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4449)))) (-3712 (((-145) $ (-570)) 52)) (-2514 (((-112) $ $) 120)) (-3998 (((-570) (-1 (-112) (-145)) $) 98) (((-570) (-145) $) 97 (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 96 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 114) (((-570) (-142) $ (-570)) 113)) (-2836 (((-650 (-145)) $) 31 (|has| $ (-6 -4448)))) (-4286 (($ (-777) (-145)) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 88 (|has| (-145) (-856)))) (-3068 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-2849 (((-650 (-145)) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 87 (|has| (-145) (-856)))) (-4007 (((-112) $ $ (-145)) 116)) (-4121 (((-777) $ $ (-145)) 117)) (-3776 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-2071 (($ $) 123)) (-3949 (($ $) 124)) (-3452 (((-112) $ (-777)) 10)) (-1653 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-1903 (((-1168) $) 22)) (-4285 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21)) (-3443 (((-145) $) 43 (|has| (-570) (-856)))) (-3321 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-1952 (($ $ (-145)) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-145)))) 27 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) 26 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) 25 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) 24 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-4245 (((-650 (-145)) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1243 (-570))) 64) (($ $ $) 103)) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-3486 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4448))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 92 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3748 (($ (-650 (-145))) 71)) (-2439 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (($ (-145)) 112) (((-868) $) 18)) (-1859 (((-112) $ $) 23)) (-4368 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4448)))) (-2892 (((-1168) $) 132) (((-1168) $ (-112)) 131) (((-1281) (-828) $) 130) (((-1281) (-828) $ (-112)) 129)) (-2924 (((-112) $ $) 85 (|has| (-145) (-856)))) (-2904 (((-112) $ $) 84 (|has| (-145) (-856)))) (-2872 (((-112) $ $) 20)) (-2913 (((-112) $ $) 86 (|has| (-145) (-856)))) (-2894 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
+((-2942 (((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 25)) (-3529 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 26)) (-1352 (((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|)) 16)))
+(((-1164 |#1| |#2|) (-10 -7 (-15 -1352 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -2942 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3529 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)))) (-1227) (-1227)) (T -1164))
+((-3529 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1227)) (-4 *2 (-1227)) (-5 *1 (-1164 *5 *2)))) (-2942 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1166 *6)) (-4 *6 (-1227)) (-4 *3 (-1227)) (-5 *2 (-1166 *3)) (-5 *1 (-1164 *6 *3)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1166 *6)) (-5 *1 (-1164 *5 *6)))))
+(-10 -7 (-15 -1352 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -2942 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3529 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))))
+((-1352 (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)) 21)))
+(((-1165 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)))) (-1227) (-1227) (-1227)) (T -1165))
+((-1352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1166 *6)) (-5 *5 (-1166 *7)) (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-1166 *8)) (-5 *1 (-1165 *6 *7 *8)))))
+(-10 -7 (-15 -1352 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) NIL)) (-2545 ((|#1| $) NIL)) (-1574 (($ $) 67)) (-3727 (((-1282) $ (-570) (-570)) 99 (|has| $ (-6 -4450)))) (-4264 (($ $ (-570)) 129 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-2290 (((-868) $) 56 (|has| |#1| (-1109)))) (-2110 (((-112)) 55 (|has| |#1| (-1109)))) (-3708 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3066 (($ $ $) 116 (|has| $ (-6 -4450))) (($ $ (-570) $) 142)) (-2230 ((|#1| $ |#1|) 126 (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) 121 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 123 (|has| $ (-6 -4450))) (($ $ "rest" $) 125 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) 128 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 113 (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) 77 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 80)) (-2533 ((|#1| $) NIL)) (-3761 (($) NIL T CONST)) (-1759 (($ $) 14)) (-3455 (($ $) 42) (($ $ (-777)) 111)) (-3491 (((-112) (-650 |#1|) $) 135 (|has| |#1| (-1109)))) (-2330 (($ (-650 |#1|)) 131)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) 79)) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-2237 (((-112) $) NIL)) (-2835 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1878 (((-1282) (-570) $) 141 (|has| |#1| (-1109)))) (-1930 (((-777) $) 138)) (-2150 (((-650 $) $) NIL)) (-4329 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 95 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 85) (($ (-1 |#1| |#1| |#1|) $ $) 89)) (-2113 (((-112) $ (-777)) NIL)) (-2283 (((-650 |#1|) $) NIL)) (-1859 (((-112) $) NIL)) (-2298 (($ $) 114)) (-4285 (((-112) $) 13)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1729 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-4286 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) 96)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1347 (($ (-1 |#1|)) 144) (($ (-1 |#1| |#1|) |#1|) 145)) (-2420 ((|#1| $) 10)) (-3443 ((|#1| $) 41) (($ $ (-777)) 65)) (-1408 (((-2 (|:| |cycle?| (-112)) (|:| -4304 (-777)) (|:| |period| (-777))) (-777) $) 36)) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1400 (($ (-1 (-112) |#1|) $) 146)) (-1411 (($ (-1 (-112) |#1|) $) 147)) (-3531 (($ $ |#1|) 90 (|has| $ (-6 -4450)))) (-4102 (($ $ (-570)) 45)) (-2928 (((-112) $) 94)) (-4220 (((-112) $) 12)) (-2334 (((-112) $) 137)) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 30)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) 20)) (-3006 (($) 60)) (-1877 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) 75) ((|#1| $ (-570) |#1|) NIL)) (-2763 (((-570) $ $) 64)) (-4320 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-1868 (($ (-1 $)) 63)) (-2345 (((-112) $) 91)) (-2308 (($ $) 92)) (-3103 (($ $) 117 (|has| $ (-6 -4450)))) (-1535 (((-777) $) NIL)) (-3631 (($ $) NIL)) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 59)) (-1417 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 73)) (-3682 (($ |#1| $) 115)) (-3214 (($ $ $) 119 (|has| $ (-6 -4450))) (($ $ |#1|) 120 (|has| $ (-6 -4450)))) (-2439 (($ $ $) 101) (($ |#1| $) 61) (($ (-650 $)) 106) (($ $ |#1|) 100)) (-2540 (($ $) 66)) (-3735 (($ (-650 |#1|)) 130) (((-868) $) 57 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) NIL)) (-2931 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 133 (|has| |#1| (-1109)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1166 |#1|) (-13 (-680 |#1|) (-622 (-650 |#1|)) (-10 -8 (-6 -4450) (-15 -2330 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -3491 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -1408 ((-2 (|:| |cycle?| (-112)) (|:| -4304 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -1868 ($ (-1 $))) (-15 -3682 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1878 ((-1282) (-570) $)) (-15 -2290 ((-868) $)) (-15 -2110 ((-112)))) |%noBranch|) (-15 -3066 ($ $ (-570) $)) (-15 -1347 ($ (-1 |#1|))) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -1400 ($ (-1 (-112) |#1|) $)) (-15 -1411 ($ (-1 (-112) |#1|) $)))) (-1227)) (T -1166))
+((-2330 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-3491 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112)) (-5 *1 (-1166 *4)))) (-1408 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -4304 (-777)) (|:| |period| (-777)))) (-5 *1 (-1166 *4)) (-4 *4 (-1227)) (-5 *3 (-777)))) (-1868 (*1 *1 *2) (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))) (-3682 (*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1227)))) (-1878 (*1 *2 *3 *1) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1166 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)))) (-2290 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)))) (-2110 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)))) (-3066 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))) (-1347 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1347 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1400 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1411 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
+(-13 (-680 |#1|) (-622 (-650 |#1|)) (-10 -8 (-6 -4450) (-15 -2330 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -3491 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -1408 ((-2 (|:| |cycle?| (-112)) (|:| -4304 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -1868 ($ (-1 $))) (-15 -3682 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1878 ((-1282) (-570) $)) (-15 -2290 ((-868) $)) (-15 -2110 ((-112)))) |%noBranch|) (-15 -3066 ($ $ (-570) $)) (-15 -1347 ($ (-1 |#1|))) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -1400 ($ (-1 (-112) |#1|) $)) (-15 -1411 ($ (-1 (-112) |#1|) $))))
+((-2417 (((-112) $ $) 19)) (-3333 (($ $) 121)) (-2986 (($ $) 122)) (-4392 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-2496 (((-112) $ $) 119)) (-2478 (((-112) $ $ (-570)) 118)) (-3320 (($ (-570)) 128)) (-4289 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4429 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-3885 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3894 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-1644 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-2347 (($ $) 91 (|has| $ (-6 -4450)))) (-2261 (($ $) 101)) (-2356 (($ $ (-1244 (-570)) $) 115)) (-3480 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4449)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) 77 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) 74 (|has| $ (-6 -4449))) (((-145) (-1 (-145) (-145) (-145)) $) 73 (|has| $ (-6 -4449)))) (-3789 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4450)))) (-3713 (((-145) $ (-570)) 52)) (-2514 (((-112) $ $) 120)) (-3998 (((-570) (-1 (-112) (-145)) $) 98) (((-570) (-145) $) 97 (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 96 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 114) (((-570) (-142) $ (-570)) 113)) (-2835 (((-650 (-145)) $) 31 (|has| $ (-6 -4449)))) (-4287 (($ (-777) (-145)) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 88 (|has| (-145) (-856)))) (-2727 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-3201 (((-650 (-145)) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 87 (|has| (-145) (-856)))) (-4008 (((-112) $ $ (-145)) 116)) (-4121 (((-777) $ $ (-145)) 117)) (-3776 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-2318 (($ $) 123)) (-3145 (($ $) 124)) (-2113 (((-112) $ (-777)) 10)) (-1651 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-4268 (((-1168) $) 22)) (-4286 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21)) (-3443 (((-145) $) 43 (|has| (-570) (-856)))) (-3281 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-3531 (($ $ (-145)) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-145)))) 27 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) 26 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) 25 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) 24 (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-4348 (((-650 (-145)) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1244 (-570))) 64) (($ $ $) 103)) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3490 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4449))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3749 (($ (-650 (-145))) 71)) (-2439 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (($ (-145)) 112) (((-868) $) 18)) (-3866 (((-112) $ $) 23)) (-2964 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4449)))) (-3637 (((-1168) $) 132) (((-1168) $ (-112)) 131) (((-1282) (-828) $) 130) (((-1282) (-828) $ (-112)) 129)) (-2924 (((-112) $ $) 85 (|has| (-145) (-856)))) (-2904 (((-112) $ $) 84 (|has| (-145) (-856)))) (-2872 (((-112) $ $) 20)) (-2914 (((-112) $ $) 86 (|has| (-145) (-856)))) (-2894 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
(((-1167) (-141)) (T -1167))
((-3320 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1167)))))
(-13 (-1153) (-1109) (-834) (-10 -8 (-15 -3320 ($ (-570)))))
-(((-34) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 #0=(-145)) . T) ((-620 (-542)) |has| (-145) (-620 (-542))) ((-290 #1=(-570) #0#) . T) ((-292 #1# #0#) . T) ((-313 #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-378 #0#) . T) ((-495 #0#) . T) ((-610 #1# #0#) . T) ((-520 #0# #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-657 #0#) . T) ((-19 #0#) . T) ((-834) . T) ((-856) |has| (-145) (-856)) ((-1109) . T) ((-1153) . T) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-2229 (($ $) NIL)) (-1575 (($ $) NIL)) (-1414 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-2496 (((-112) $ $) NIL)) (-2478 (((-112) $ $ (-570)) NIL)) (-3320 (($ (-570)) 8)) (-2198 (((-650 $) $ (-145)) NIL) (((-650 $) $ (-142)) NIL)) (-4254 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-3239 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-856))))) (-3288 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4449))) (((-145) $ (-1243 (-570)) (-145)) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-1643 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-1766 (($ $ (-1243 (-570)) $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-1702 (($ (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4448))) (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4448)))) (-3790 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4449)))) (-3712 (((-145) $ (-570)) NIL)) (-2514 (((-112) $ $) NIL)) (-3998 (((-570) (-1 (-112) (-145)) $) NIL) (((-570) (-145) $) NIL (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) NIL (|has| (-145) (-1109))) (((-570) $ $ (-570)) NIL) (((-570) (-142) $ (-570)) NIL)) (-2836 (((-650 (-145)) $) NIL (|has| $ (-6 -4448)))) (-4286 (($ (-777) (-145)) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| (-145) (-856)))) (-3068 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-2849 (((-650 (-145)) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-4329 (((-570) $) NIL (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| (-145) (-856)))) (-4007 (((-112) $ $ (-145)) NIL)) (-4121 (((-777) $ $ (-145)) NIL)) (-3776 (($ (-1 (-145) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-2071 (($ $) NIL)) (-3949 (($ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1653 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-1903 (((-1168) $) NIL)) (-4285 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-145) $) NIL (|has| (-570) (-856)))) (-3321 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-1952 (($ $ (-145)) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-145)))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-4245 (((-650 (-145)) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1243 (-570))) NIL) (($ $ $) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-3486 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-145) (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3748 (($ (-650 (-145))) NIL)) (-2439 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (($ (-145)) NIL) (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-4368 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4448)))) (-2892 (((-1168) $) 19) (((-1168) $ (-112)) 21) (((-1281) (-828) $) 22) (((-1281) (-828) $ (-112)) 23)) (-2924 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
+(((-34) . T) ((-102) . T) ((-619 (-868)) . T) ((-152 #0=(-145)) . T) ((-620 (-542)) |has| (-145) (-620 (-542))) ((-290 #1=(-570) #0#) . T) ((-292 #1# #0#) . T) ((-313 #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-378 #0#) . T) ((-495 #0#) . T) ((-610 #1# #0#) . T) ((-520 #0# #0#) -12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))) ((-657 #0#) . T) ((-19 #0#) . T) ((-834) . T) ((-856) |has| (-145) (-856)) ((-1109) . T) ((-1153) . T) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-3333 (($ $) NIL)) (-2986 (($ $) NIL)) (-4392 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-2496 (((-112) $ $) NIL)) (-2478 (((-112) $ $ (-570)) NIL)) (-3320 (($ (-570)) 8)) (-4289 (((-650 $) $ (-145)) NIL) (((-650 $) $ (-142)) NIL)) (-4429 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-3885 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-145) (-856))))) (-3287 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-1644 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-2356 (($ $ (-1244 (-570)) $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1703 (($ (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4449))) (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3789 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4450)))) (-3713 (((-145) $ (-570)) NIL)) (-2514 (((-112) $ $) NIL)) (-3998 (((-570) (-1 (-112) (-145)) $) NIL) (((-570) (-145) $) NIL (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) NIL (|has| (-145) (-1109))) (((-570) $ $ (-570)) NIL) (((-570) (-142) $ (-570)) NIL)) (-2835 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4287 (($ (-777) (-145)) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| (-145) (-856)))) (-2727 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-3201 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-2596 (((-570) $) NIL (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| (-145) (-856)))) (-4008 (((-112) $ $ (-145)) NIL)) (-4121 (((-777) $ $ (-145)) NIL)) (-3776 (($ (-1 (-145) (-145)) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-2318 (($ $) NIL)) (-3145 (($ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-1651 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-4268 (((-1168) $) NIL)) (-4286 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-145) $) NIL (|has| (-570) (-856)))) (-3281 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-3531 (($ $ (-145)) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-145)))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-298 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-145) (-145)) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109)))) (($ $ (-650 (-145)) (-650 (-145))) NIL (-12 (|has| (-145) (-313 (-145))) (|has| (-145) (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-4348 (((-650 (-145)) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (($ $ $) NIL)) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3490 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3749 (($ (-650 (-145))) NIL)) (-2439 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (($ (-145)) NIL) (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2964 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3637 (((-1168) $) 19) (((-1168) $ (-112)) 21) (((-1282) (-828) $) 22) (((-1282) (-828) $ (-112)) 23)) (-2924 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2904 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2894 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
(((-1168) (-1167)) (T -1168))
NIL
(-1167)
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL)) (-3225 (((-1281) $ (-1168) (-1168)) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-1168) |#1|) NIL)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#1| "failed") (-1168) $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#1| "failed") (-1168) $) NIL)) (-1702 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-1168)) NIL)) (-2836 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2849 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2760 (((-650 (-1168)) $) NIL)) (-2696 (((-112) (-1168) $) NIL)) (-3784 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL)) (-2344 (((-650 (-1168)) $) NIL)) (-1354 (((-112) (-1168) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-3443 ((|#1| $) NIL (|has| (-1168) (-856)))) (-3321 (((-3 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) "failed") (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-1168)) NIL) ((|#1| $ (-1168) |#1|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-619 (-868))) (|has| |#1| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2223 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1169 |#1|) (-13 (-1202 (-1168) |#1|) (-10 -7 (-6 -4448))) (-1109)) (T -1169))
-NIL
-(-13 (-1202 (-1168) |#1|) (-10 -7 (-6 -4448)))
-((-3363 (((-1166 |#1|) (-1166 |#1|)) 84)) (-3413 (((-3 (-1166 |#1|) "failed") (-1166 |#1|)) 42)) (-3733 (((-1166 |#1|) (-413 (-570)) (-1166 |#1|)) 136 (|has| |#1| (-38 (-413 (-570)))))) (-3184 (((-1166 |#1|) |#1| (-1166 |#1|)) 142 (|has| |#1| (-368)))) (-2127 (((-1166 |#1|) (-1166 |#1|)) 99)) (-4037 (((-1166 (-570)) (-570)) 64)) (-3148 (((-1166 |#1|) (-1166 (-1166 |#1|))) 118 (|has| |#1| (-38 (-413 (-570)))))) (-1696 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 104)) (-3278 (((-1166 |#1|) |#1| (-570)) 54)) (-1740 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 67)) (-3375 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 139 (|has| |#1| (-368)))) (-3862 (((-1166 |#1|) |#1| (-1 (-1166 |#1|))) 117 (|has| |#1| (-38 (-413 (-570)))))) (-3823 (((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|))) 140 (|has| |#1| (-368)))) (-3623 (((-1166 |#1|) (-1166 |#1|)) 98)) (-3108 (((-1166 |#1|) (-1166 |#1|)) 83)) (-3335 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 105)) (-3555 (((-1166 |#1|) |#1| (-1166 |#1|)) 114 (|has| |#1| (-38 (-413 (-570)))))) (-3698 (((-1166 (-570)) (-570)) 63)) (-3744 (((-1166 |#1|) |#1|) 66)) (-3783 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 101)) (-1867 (((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|)) 73)) (-2407 (((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|)) 40)) (-3072 (((-1166 |#1|) (-1166 |#1|)) 100)) (-1730 (((-1166 |#1|) (-1166 |#1|) |#1|) 78)) (-4335 (((-1166 |#1|) (-1166 |#1|)) 69)) (-1741 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 79)) (-3735 (((-1166 |#1|) |#1|) 74)) (-4065 (((-1166 |#1|) (-1166 (-1166 |#1|))) 89)) (-2975 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 41)) (-2965 (((-1166 |#1|) (-1166 |#1|)) 21) (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 23)) (-2954 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 17)) (* (((-1166 |#1|) (-1166 |#1|) |#1|) 29) (((-1166 |#1|) |#1| (-1166 |#1|)) 26) (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 27)))
-(((-1170 |#1|) (-10 -7 (-15 -2954 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2407 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -2975 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3413 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3278 ((-1166 |#1|) |#1| (-570))) (-15 -3698 ((-1166 (-570)) (-570))) (-15 -4037 ((-1166 (-570)) (-570))) (-15 -3744 ((-1166 |#1|) |#1|)) (-15 -1740 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4335 ((-1166 |#1|) (-1166 |#1|))) (-15 -1867 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3735 ((-1166 |#1|) |#1|)) (-15 -1730 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -1741 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3108 ((-1166 |#1|) (-1166 |#1|))) (-15 -3363 ((-1166 |#1|) (-1166 |#1|))) (-15 -4065 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3623 ((-1166 |#1|) (-1166 |#1|))) (-15 -2127 ((-1166 |#1|) (-1166 |#1|))) (-15 -3072 ((-1166 |#1|) (-1166 |#1|))) (-15 -3783 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -1696 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -3335 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -3862 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -3148 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3733 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3375 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3823 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -3184 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|)) (-1058)) (T -1170))
-((-3184 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3823 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-570))) (-5 *5 (-1 (-1166 *4))) (-4 *4 (-368)) (-4 *4 (-1058)) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)))) (-3375 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3733 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058)) (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))) (-3148 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)) (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))) (-3862 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1166 *3))) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))) (-3555 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3335 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-1696 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-3783 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-3072 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2127 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3623 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-4065 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)) (-4 *4 (-1058)))) (-3363 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3108 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1741 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1730 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-1867 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-4335 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1740 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3744 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-4037 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-3698 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-3278 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-3413 (*1 *2 *2) (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2975 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2407 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2965 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2965 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2954 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(-10 -7 (-15 -2954 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2407 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -2975 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3413 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3278 ((-1166 |#1|) |#1| (-570))) (-15 -3698 ((-1166 (-570)) (-570))) (-15 -4037 ((-1166 (-570)) (-570))) (-15 -3744 ((-1166 |#1|) |#1|)) (-15 -1740 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4335 ((-1166 |#1|) (-1166 |#1|))) (-15 -1867 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3735 ((-1166 |#1|) |#1|)) (-15 -1730 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -1741 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3108 ((-1166 |#1|) (-1166 |#1|))) (-15 -3363 ((-1166 |#1|) (-1166 |#1|))) (-15 -4065 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3623 ((-1166 |#1|) (-1166 |#1|))) (-15 -2127 ((-1166 |#1|) (-1166 |#1|))) (-15 -3072 ((-1166 |#1|) (-1166 |#1|))) (-15 -3783 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -1696 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -3335 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -3862 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -3148 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3733 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3375 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3823 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -3184 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|))
-((-2735 (((-1166 |#1|) (-1166 |#1|)) 60)) (-2602 (((-1166 |#1|) (-1166 |#1|)) 42)) (-2712 (((-1166 |#1|) (-1166 |#1|)) 56)) (-2579 (((-1166 |#1|) (-1166 |#1|)) 38)) (-4087 (((-1166 |#1|) (-1166 |#1|)) 63)) (-2622 (((-1166 |#1|) (-1166 |#1|)) 45)) (-2635 (((-1166 |#1|) (-1166 |#1|)) 34)) (-4387 (((-1166 |#1|) (-1166 |#1|)) 29)) (-4099 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2634 (((-1166 |#1|) (-1166 |#1|)) 46)) (-2746 (((-1166 |#1|) (-1166 |#1|)) 61)) (-2611 (((-1166 |#1|) (-1166 |#1|)) 43)) (-2723 (((-1166 |#1|) (-1166 |#1|)) 58)) (-2590 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4138 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2671 (((-1166 |#1|) (-1166 |#1|)) 50)) (-4108 (((-1166 |#1|) (-1166 |#1|)) 66)) (-2647 (((-1166 |#1|) (-1166 |#1|)) 48)) (-4161 (((-1166 |#1|) (-1166 |#1|)) 71)) (-2691 (((-1166 |#1|) (-1166 |#1|)) 53)) (-1509 (((-1166 |#1|) (-1166 |#1|)) 72)) (-2701 (((-1166 |#1|) (-1166 |#1|)) 54)) (-4150 (((-1166 |#1|) (-1166 |#1|)) 70)) (-2681 (((-1166 |#1|) (-1166 |#1|)) 52)) (-4123 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2660 (((-1166 |#1|) (-1166 |#1|)) 51)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 36)))
-(((-1171 |#1|) (-10 -7 (-15 -4387 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2611 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4099 ((-1166 |#1|) (-1166 |#1|))) (-15 -4108 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4138 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4161 ((-1166 |#1|) (-1166 |#1|))) (-15 -1509 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1171))
-((-1509 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4161 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4150 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4138 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4123 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4099 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2746 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2735 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2723 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2712 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2701 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2691 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2681 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2671 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2660 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2647 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2634 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2622 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2611 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2602 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2590 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2579 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2635 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4387 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))))
-(-10 -7 (-15 -4387 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2611 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4099 ((-1166 |#1|) (-1166 |#1|))) (-15 -4108 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4138 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4161 ((-1166 |#1|) (-1166 |#1|))) (-15 -1509 ((-1166 |#1|) (-1166 |#1|))))
-((-2735 (((-1166 |#1|) (-1166 |#1|)) 107)) (-2602 (((-1166 |#1|) (-1166 |#1|)) 61)) (-2902 (((-2 (|:| -2712 (-1166 |#1|)) (|:| -2723 (-1166 |#1|))) (-1166 |#1|)) 103)) (-2712 (((-1166 |#1|) (-1166 |#1|)) 104)) (-1451 (((-2 (|:| -2579 (-1166 |#1|)) (|:| -2590 (-1166 |#1|))) (-1166 |#1|)) 54)) (-2579 (((-1166 |#1|) (-1166 |#1|)) 55)) (-4087 (((-1166 |#1|) (-1166 |#1|)) 109)) (-2622 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2635 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4387 (((-1166 |#1|) (-1166 |#1|)) 37)) (-4099 (((-1166 |#1|) (-1166 |#1|)) 110)) (-2634 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2746 (((-1166 |#1|) (-1166 |#1|)) 108)) (-2611 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2723 (((-1166 |#1|) (-1166 |#1|)) 105)) (-2590 (((-1166 |#1|) (-1166 |#1|)) 56)) (-4138 (((-1166 |#1|) (-1166 |#1|)) 118)) (-2671 (((-1166 |#1|) (-1166 |#1|)) 93)) (-4108 (((-1166 |#1|) (-1166 |#1|)) 112)) (-2647 (((-1166 |#1|) (-1166 |#1|)) 89)) (-4161 (((-1166 |#1|) (-1166 |#1|)) 122)) (-2691 (((-1166 |#1|) (-1166 |#1|)) 97)) (-1509 (((-1166 |#1|) (-1166 |#1|)) 124)) (-2701 (((-1166 |#1|) (-1166 |#1|)) 99)) (-4150 (((-1166 |#1|) (-1166 |#1|)) 120)) (-2681 (((-1166 |#1|) (-1166 |#1|)) 95)) (-4123 (((-1166 |#1|) (-1166 |#1|)) 114)) (-2660 (((-1166 |#1|) (-1166 |#1|)) 91)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 41)))
-(((-1172 |#1|) (-10 -7 (-15 -4387 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1451 ((-2 (|:| -2579 (-1166 |#1|)) (|:| -2590 (-1166 |#1|))) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2611 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -2902 ((-2 (|:| -2712 (-1166 |#1|)) (|:| -2723 (-1166 |#1|))) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4099 ((-1166 |#1|) (-1166 |#1|))) (-15 -4108 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4138 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4161 ((-1166 |#1|) (-1166 |#1|))) (-15 -1509 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1172))
-((-1509 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4161 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4150 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4138 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4123 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4099 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2746 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2735 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2723 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2712 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2902 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2712 (-1166 *4)) (|:| -2723 (-1166 *4)))) (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))) (-2701 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2691 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2681 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2671 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2660 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2647 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2634 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2622 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2611 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2602 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2590 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2579 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-1451 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2579 (-1166 *4)) (|:| -2590 (-1166 *4)))) (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2635 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4387 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))))
-(-10 -7 (-15 -4387 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1451 ((-2 (|:| -2579 (-1166 |#1|)) (|:| -2590 (-1166 |#1|))) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2611 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -2902 ((-2 (|:| -2712 (-1166 |#1|)) (|:| -2723 (-1166 |#1|))) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4099 ((-1166 |#1|) (-1166 |#1|))) (-15 -4108 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4138 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4161 ((-1166 |#1|) (-1166 |#1|))) (-15 -1509 ((-1166 |#1|) (-1166 |#1|))))
-((-3639 (((-965 |#2|) |#2| |#2|) 50)) (-3543 ((|#2| |#2| |#1|) 19 (|has| |#1| (-311)))))
-(((-1173 |#1| |#2|) (-10 -7 (-15 -3639 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -3543 (|#2| |#2| |#1|)) |%noBranch|)) (-562) (-1252 |#1|)) (T -1173))
-((-3543 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-1173 *3 *2)) (-4 *2 (-1252 *3)))) (-3639 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3639 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -3543 (|#2| |#2| |#1|)) |%noBranch|))
-((-2416 (((-112) $ $) NIL)) (-3816 (($ $ (-650 (-777))) 81)) (-2779 (($) 33)) (-3119 (($ $) 51)) (-2105 (((-650 $) $) 60)) (-3176 (((-112) $) 19)) (-1334 (((-650 (-950 |#2|)) $) 88)) (-3938 (($ $) 82)) (-3066 (((-777) $) 47)) (-4286 (($) 32)) (-1921 (($ $ (-650 (-777)) (-950 |#2|)) 74) (($ $ (-650 (-777)) (-777)) 75) (($ $ (-777) (-950 |#2|)) 77)) (-3068 (($ $ $) 57) (($ (-650 $)) 59)) (-2461 (((-777) $) 89)) (-3873 (((-112) $) 15)) (-1903 (((-1168) $) NIL)) (-1848 (((-112) $) 22)) (-3479 (((-1129) $) NIL)) (-3314 (((-173) $) 87)) (-2538 (((-950 |#2|) $) 83)) (-1742 (((-777) $) 84)) (-2629 (((-112) $) 86)) (-3713 (($ $ (-650 (-777)) (-173)) 80)) (-3295 (($ $) 52)) (-3735 (((-868) $) 100)) (-1914 (($ $ (-650 (-777)) (-112)) 79)) (-3129 (((-650 $) $) 11)) (-4092 (($ $ (-777)) 46)) (-4012 (($ $) 43)) (-1859 (((-112) $ $) NIL)) (-3353 (($ $ $ (-950 |#2|) (-777)) 70)) (-4401 (($ $ (-950 |#2|)) 69)) (-2526 (($ $ (-650 (-777)) (-950 |#2|)) 66) (($ $ (-650 (-777)) (-777)) 72) (((-777) $ (-950 |#2|)) 73)) (-2872 (((-112) $ $) 94)))
-(((-1174 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3873 ((-112) $)) (-15 -3176 ((-112) $)) (-15 -1848 ((-112) $)) (-15 -4286 ($)) (-15 -2779 ($)) (-15 -4012 ($ $)) (-15 -4092 ($ $ (-777))) (-15 -3129 ((-650 $) $)) (-15 -3066 ((-777) $)) (-15 -3119 ($ $)) (-15 -3295 ($ $)) (-15 -3068 ($ $ $)) (-15 -3068 ($ (-650 $))) (-15 -2105 ((-650 $) $)) (-15 -2526 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -4401 ($ $ (-950 |#2|))) (-15 -3353 ($ $ $ (-950 |#2|) (-777))) (-15 -1921 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2526 ($ $ (-650 (-777)) (-777))) (-15 -1921 ($ $ (-650 (-777)) (-777))) (-15 -2526 ((-777) $ (-950 |#2|))) (-15 -1921 ($ $ (-777) (-950 |#2|))) (-15 -1914 ($ $ (-650 (-777)) (-112))) (-15 -3713 ($ $ (-650 (-777)) (-173))) (-15 -3816 ($ $ (-650 (-777)))) (-15 -2538 ((-950 |#2|) $)) (-15 -1742 ((-777) $)) (-15 -2629 ((-112) $)) (-15 -3314 ((-173) $)) (-15 -2461 ((-777) $)) (-15 -3938 ($ $)) (-15 -1334 ((-650 (-950 |#2|)) $)))) (-928) (-1058)) (T -1174))
-((-3873 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3176 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1848 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4286 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2779 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-4012 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-4092 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3129 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3066 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3119 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3295 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3068 (*1 *1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3068 (*1 *1 *2) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2105 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2526 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-4401 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)))) (-3353 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-950 *5)) (-5 *3 (-777)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-1921 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-2526 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-1921 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2526 (*1 *2 *1 *3) (-12 (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *2 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-1921 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-1914 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-3713 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-173)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-3816 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2538 (*1 *2 *1) (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1742 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2629 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3314 (*1 *2 *1) (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2461 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3938 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-1334 (*1 *2 *1) (-12 (-5 *2 (-650 (-950 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))))
-(-13 (-1109) (-10 -8 (-15 -3873 ((-112) $)) (-15 -3176 ((-112) $)) (-15 -1848 ((-112) $)) (-15 -4286 ($)) (-15 -2779 ($)) (-15 -4012 ($ $)) (-15 -4092 ($ $ (-777))) (-15 -3129 ((-650 $) $)) (-15 -3066 ((-777) $)) (-15 -3119 ($ $)) (-15 -3295 ($ $)) (-15 -3068 ($ $ $)) (-15 -3068 ($ (-650 $))) (-15 -2105 ((-650 $) $)) (-15 -2526 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -4401 ($ $ (-950 |#2|))) (-15 -3353 ($ $ $ (-950 |#2|) (-777))) (-15 -1921 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2526 ($ $ (-650 (-777)) (-777))) (-15 -1921 ($ $ (-650 (-777)) (-777))) (-15 -2526 ((-777) $ (-950 |#2|))) (-15 -1921 ($ $ (-777) (-950 |#2|))) (-15 -1914 ($ $ (-650 (-777)) (-112))) (-15 -3713 ($ $ (-650 (-777)) (-173))) (-15 -3816 ($ $ (-650 (-777)))) (-15 -2538 ((-950 |#2|) $)) (-15 -1742 ((-777) $)) (-15 -2629 ((-112) $)) (-15 -3314 ((-173) $)) (-15 -2461 ((-777) $)) (-15 -3938 ($ $)) (-15 -1334 ((-650 (-950 |#2|)) $))))
-((-2416 (((-112) $ $) NIL)) (-2121 ((|#2| $) 11)) (-2112 ((|#1| $) 10)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3748 (($ |#1| |#2|) 9)) (-3735 (((-868) $) 16)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1175 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3748 ($ |#1| |#2|)) (-15 -2112 (|#1| $)) (-15 -2121 (|#2| $)))) (-1109) (-1109)) (T -1175))
-((-3748 (*1 *1 *2 *3) (-12 (-5 *1 (-1175 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2112 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *2 *3)) (-4 *3 (-1109)))) (-2121 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *3 *2)) (-4 *3 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -3748 ($ |#1| |#2|)) (-15 -2112 (|#1| $)) (-15 -2121 (|#2| $))))
-((-2416 (((-112) $ $) NIL)) (-3659 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL)) (-3727 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-1168) |#1|) NIL)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#1| "failed") (-1168) $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#1| "failed") (-1168) $) NIL)) (-1703 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-1168)) NIL)) (-2835 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3201 (((-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-1168) $) NIL (|has| (-1168) (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2761 (((-650 (-1168)) $) NIL)) (-2338 (((-112) (-1168) $) NIL)) (-2192 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL)) (-2122 (((-650 (-1168)) $) NIL)) (-2083 (((-112) (-1168) $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-3443 ((|#1| $) NIL (|has| (-1168) (-856)))) (-3281 (((-3 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) "failed") (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL (-12 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-313 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-1168)) NIL) ((|#1| $ (-1168) |#1|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-619 (-868))) (|has| |#1| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 (-1168)) (|:| -2224 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1169 |#1|) (-13 (-1203 (-1168) |#1|) (-10 -7 (-6 -4449))) (-1109)) (T -1169))
+NIL
+(-13 (-1203 (-1168) |#1|) (-10 -7 (-6 -4449)))
+((-2472 (((-1166 |#1|) (-1166 |#1|)) 84)) (-2937 (((-3 (-1166 |#1|) "failed") (-1166 |#1|)) 42)) (-2933 (((-1166 |#1|) (-413 (-570)) (-1166 |#1|)) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1496 (((-1166 |#1|) |#1| (-1166 |#1|)) 142 (|has| |#1| (-368)))) (-1708 (((-1166 |#1|) (-1166 |#1|)) 99)) (-2825 (((-1166 (-570)) (-570)) 64)) (-2326 (((-1166 |#1|) (-1166 (-1166 |#1|))) 118 (|has| |#1| (-38 (-413 (-570)))))) (-1841 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 104)) (-3278 (((-1166 |#1|) |#1| (-570)) 54)) (-2149 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 67)) (-2577 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 139 (|has| |#1| (-368)))) (-1749 (((-1166 |#1|) |#1| (-1 (-1166 |#1|))) 117 (|has| |#1| (-38 (-413 (-570)))))) (-1324 (((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|))) 140 (|has| |#1| (-368)))) (-3098 (((-1166 |#1|) (-1166 |#1|)) 98)) (-1970 (((-1166 |#1|) (-1166 |#1|)) 83)) (-3439 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 105)) (-3722 (((-1166 |#1|) |#1| (-1166 |#1|)) 114 (|has| |#1| (-38 (-413 (-570)))))) (-2616 (((-1166 (-570)) (-570)) 63)) (-3744 (((-1166 |#1|) |#1|) 66)) (-2185 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 101)) (-3936 (((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|)) 73)) (-2406 (((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|)) 40)) (-2759 (((-1166 |#1|) (-1166 |#1|)) 100)) (-1731 (((-1166 |#1|) (-1166 |#1|) |#1|) 78)) (-2666 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2159 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 79)) (-3735 (((-1166 |#1|) |#1|) 74)) (-1996 (((-1166 |#1|) (-1166 (-1166 |#1|))) 89)) (-2975 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 41)) (-2965 (((-1166 |#1|) (-1166 |#1|)) 21) (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 23)) (-2953 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 17)) (* (((-1166 |#1|) (-1166 |#1|) |#1|) 29) (((-1166 |#1|) |#1| (-1166 |#1|)) 26) (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 27)))
+(((-1170 |#1|) (-10 -7 (-15 -2953 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2406 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -2975 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2937 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3278 ((-1166 |#1|) |#1| (-570))) (-15 -2616 ((-1166 (-570)) (-570))) (-15 -2825 ((-1166 (-570)) (-570))) (-15 -3744 ((-1166 |#1|) |#1|)) (-15 -2149 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2666 ((-1166 |#1|) (-1166 |#1|))) (-15 -3936 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3735 ((-1166 |#1|) |#1|)) (-15 -1731 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2159 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1970 ((-1166 |#1|) (-1166 |#1|))) (-15 -2472 ((-1166 |#1|) (-1166 |#1|))) (-15 -1996 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3098 ((-1166 |#1|) (-1166 |#1|))) (-15 -1708 ((-1166 |#1|) (-1166 |#1|))) (-15 -2759 ((-1166 |#1|) (-1166 |#1|))) (-15 -2185 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -1841 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -3439 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -1749 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -2326 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -2933 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2577 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1324 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -1496 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|)) (-1058)) (T -1170))
+((-1496 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1324 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-570))) (-5 *5 (-1 (-1166 *4))) (-4 *4 (-368)) (-4 *4 (-1058)) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)))) (-2577 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2933 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058)) (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))) (-2326 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)) (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))) (-1749 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1166 *3))) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))) (-3722 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3439 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-1841 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2185 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2759 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1708 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3098 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1996 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)) (-4 *4 (-1058)))) (-2472 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1970 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2159 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1731 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3735 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-3936 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2666 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2149 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3744 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-2825 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-2616 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-3278 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-2937 (*1 *2 *2) (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2975 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2406 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2965 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2965 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2953 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(-10 -7 (-15 -2953 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2965 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2406 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -2975 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2937 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3278 ((-1166 |#1|) |#1| (-570))) (-15 -2616 ((-1166 (-570)) (-570))) (-15 -2825 ((-1166 (-570)) (-570))) (-15 -3744 ((-1166 |#1|) |#1|)) (-15 -2149 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2666 ((-1166 |#1|) (-1166 |#1|))) (-15 -3936 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3735 ((-1166 |#1|) |#1|)) (-15 -1731 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2159 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1970 ((-1166 |#1|) (-1166 |#1|))) (-15 -2472 ((-1166 |#1|) (-1166 |#1|))) (-15 -1996 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3098 ((-1166 |#1|) (-1166 |#1|))) (-15 -1708 ((-1166 |#1|) (-1166 |#1|))) (-15 -2759 ((-1166 |#1|) (-1166 |#1|))) (-15 -2185 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -1841 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -3439 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -1749 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -2326 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -2933 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2577 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1324 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -1496 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|))
+((-2735 (((-1166 |#1|) (-1166 |#1|)) 60)) (-2602 (((-1166 |#1|) (-1166 |#1|)) 42)) (-2712 (((-1166 |#1|) (-1166 |#1|)) 56)) (-2579 (((-1166 |#1|) (-1166 |#1|)) 38)) (-4087 (((-1166 |#1|) (-1166 |#1|)) 63)) (-2622 (((-1166 |#1|) (-1166 |#1|)) 45)) (-2635 (((-1166 |#1|) (-1166 |#1|)) 34)) (-4388 (((-1166 |#1|) (-1166 |#1|)) 29)) (-4098 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2634 (((-1166 |#1|) (-1166 |#1|)) 46)) (-2746 (((-1166 |#1|) (-1166 |#1|)) 61)) (-2612 (((-1166 |#1|) (-1166 |#1|)) 43)) (-2723 (((-1166 |#1|) (-1166 |#1|)) 58)) (-2590 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4137 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2671 (((-1166 |#1|) (-1166 |#1|)) 50)) (-4112 (((-1166 |#1|) (-1166 |#1|)) 66)) (-2647 (((-1166 |#1|) (-1166 |#1|)) 48)) (-4157 (((-1166 |#1|) (-1166 |#1|)) 71)) (-2691 (((-1166 |#1|) (-1166 |#1|)) 53)) (-1510 (((-1166 |#1|) (-1166 |#1|)) 72)) (-2701 (((-1166 |#1|) (-1166 |#1|)) 54)) (-4150 (((-1166 |#1|) (-1166 |#1|)) 70)) (-2681 (((-1166 |#1|) (-1166 |#1|)) 52)) (-4123 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2660 (((-1166 |#1|) (-1166 |#1|)) 51)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 36)))
+(((-1171 |#1|) (-10 -7 (-15 -4388 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2612 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4098 ((-1166 |#1|) (-1166 |#1|))) (-15 -4112 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4137 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -1510 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1171))
+((-1510 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4157 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4150 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4137 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4123 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4112 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4098 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2746 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2735 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2723 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2712 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2701 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2691 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2681 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2671 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2660 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2647 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2634 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2622 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2612 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2602 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2590 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2579 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2635 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4388 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))))
+(-10 -7 (-15 -4388 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2612 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4098 ((-1166 |#1|) (-1166 |#1|))) (-15 -4112 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4137 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -1510 ((-1166 |#1|) (-1166 |#1|))))
+((-2735 (((-1166 |#1|) (-1166 |#1|)) 107)) (-2602 (((-1166 |#1|) (-1166 |#1|)) 61)) (-3743 (((-2 (|:| -2712 (-1166 |#1|)) (|:| -2723 (-1166 |#1|))) (-1166 |#1|)) 103)) (-2712 (((-1166 |#1|) (-1166 |#1|)) 104)) (-4263 (((-2 (|:| -2579 (-1166 |#1|)) (|:| -2590 (-1166 |#1|))) (-1166 |#1|)) 54)) (-2579 (((-1166 |#1|) (-1166 |#1|)) 55)) (-4087 (((-1166 |#1|) (-1166 |#1|)) 109)) (-2622 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2635 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4388 (((-1166 |#1|) (-1166 |#1|)) 37)) (-4098 (((-1166 |#1|) (-1166 |#1|)) 110)) (-2634 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2746 (((-1166 |#1|) (-1166 |#1|)) 108)) (-2612 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2723 (((-1166 |#1|) (-1166 |#1|)) 105)) (-2590 (((-1166 |#1|) (-1166 |#1|)) 56)) (-4137 (((-1166 |#1|) (-1166 |#1|)) 118)) (-2671 (((-1166 |#1|) (-1166 |#1|)) 93)) (-4112 (((-1166 |#1|) (-1166 |#1|)) 112)) (-2647 (((-1166 |#1|) (-1166 |#1|)) 89)) (-4157 (((-1166 |#1|) (-1166 |#1|)) 122)) (-2691 (((-1166 |#1|) (-1166 |#1|)) 97)) (-1510 (((-1166 |#1|) (-1166 |#1|)) 124)) (-2701 (((-1166 |#1|) (-1166 |#1|)) 99)) (-4150 (((-1166 |#1|) (-1166 |#1|)) 120)) (-2681 (((-1166 |#1|) (-1166 |#1|)) 95)) (-4123 (((-1166 |#1|) (-1166 |#1|)) 114)) (-2660 (((-1166 |#1|) (-1166 |#1|)) 91)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 41)))
+(((-1172 |#1|) (-10 -7 (-15 -4388 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4263 ((-2 (|:| -2579 (-1166 |#1|)) (|:| -2590 (-1166 |#1|))) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2612 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -3743 ((-2 (|:| -2712 (-1166 |#1|)) (|:| -2723 (-1166 |#1|))) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4098 ((-1166 |#1|) (-1166 |#1|))) (-15 -4112 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4137 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -1510 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1172))
+((-1510 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4157 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4150 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4137 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4123 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4112 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4098 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2746 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2735 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2723 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2712 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-3743 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2712 (-1166 *4)) (|:| -2723 (-1166 *4)))) (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))) (-2701 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2691 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2681 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2671 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2660 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2647 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2634 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2622 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2612 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2602 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2590 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2579 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4263 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2579 (-1166 *4)) (|:| -2590 (-1166 *4)))) (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2635 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4388 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))))
+(-10 -7 (-15 -4388 ((-1166 |#1|) (-1166 |#1|))) (-15 -2635 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4263 ((-2 (|:| -2579 (-1166 |#1|)) (|:| -2590 (-1166 |#1|))) (-1166 |#1|))) (-15 -2579 ((-1166 |#1|) (-1166 |#1|))) (-15 -2590 ((-1166 |#1|) (-1166 |#1|))) (-15 -2602 ((-1166 |#1|) (-1166 |#1|))) (-15 -2612 ((-1166 |#1|) (-1166 |#1|))) (-15 -2622 ((-1166 |#1|) (-1166 |#1|))) (-15 -2634 ((-1166 |#1|) (-1166 |#1|))) (-15 -2647 ((-1166 |#1|) (-1166 |#1|))) (-15 -2660 ((-1166 |#1|) (-1166 |#1|))) (-15 -2671 ((-1166 |#1|) (-1166 |#1|))) (-15 -2681 ((-1166 |#1|) (-1166 |#1|))) (-15 -2691 ((-1166 |#1|) (-1166 |#1|))) (-15 -2701 ((-1166 |#1|) (-1166 |#1|))) (-15 -3743 ((-2 (|:| -2712 (-1166 |#1|)) (|:| -2723 (-1166 |#1|))) (-1166 |#1|))) (-15 -2712 ((-1166 |#1|) (-1166 |#1|))) (-15 -2723 ((-1166 |#1|) (-1166 |#1|))) (-15 -2735 ((-1166 |#1|) (-1166 |#1|))) (-15 -2746 ((-1166 |#1|) (-1166 |#1|))) (-15 -4087 ((-1166 |#1|) (-1166 |#1|))) (-15 -4098 ((-1166 |#1|) (-1166 |#1|))) (-15 -4112 ((-1166 |#1|) (-1166 |#1|))) (-15 -4123 ((-1166 |#1|) (-1166 |#1|))) (-15 -4137 ((-1166 |#1|) (-1166 |#1|))) (-15 -4150 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -1510 ((-1166 |#1|) (-1166 |#1|))))
+((-3292 (((-965 |#2|) |#2| |#2|) 50)) (-1767 ((|#2| |#2| |#1|) 19 (|has| |#1| (-311)))))
+(((-1173 |#1| |#2|) (-10 -7 (-15 -3292 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -1767 (|#2| |#2| |#1|)) |%noBranch|)) (-562) (-1253 |#1|)) (T -1173))
+((-1767 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-1173 *3 *2)) (-4 *2 (-1253 *3)))) (-3292 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -3292 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -1767 (|#2| |#2| |#1|)) |%noBranch|))
+((-2417 (((-112) $ $) NIL)) (-2435 (($ $ (-650 (-777))) 81)) (-3796 (($) 33)) (-2066 (($ $) 51)) (-1484 (((-650 $) $) 60)) (-1398 (((-112) $) 19)) (-1861 (((-650 (-950 |#2|)) $) 88)) (-4343 (($ $) 82)) (-2704 (((-777) $) 47)) (-4287 (($) 32)) (-3160 (($ $ (-650 (-777)) (-950 |#2|)) 74) (($ $ (-650 (-777)) (-777)) 75) (($ $ (-777) (-950 |#2|)) 77)) (-2727 (($ $ $) 57) (($ (-650 $)) 59)) (-2461 (((-777) $) 89)) (-1859 (((-112) $) 15)) (-4268 (((-1168) $) NIL)) (-3746 (((-112) $) 22)) (-3479 (((-1129) $) NIL)) (-3212 (((-173) $) 87)) (-3328 (((-950 |#2|) $) 83)) (-2168 (((-777) $) 84)) (-2922 (((-112) $) 86)) (-2750 (($ $ (-650 (-777)) (-173)) 80)) (-3042 (($ $) 52)) (-3735 (((-868) $) 100)) (-3085 (($ $ (-650 (-777)) (-112)) 79)) (-2153 (((-650 $) $) 11)) (-2229 (($ $ (-777)) 46)) (-2569 (($ $) 43)) (-3866 (((-112) $ $) NIL)) (-3616 (($ $ $ (-950 |#2|) (-777)) 70)) (-2119 (($ $ (-950 |#2|)) 69)) (-3195 (($ $ (-650 (-777)) (-950 |#2|)) 66) (($ $ (-650 (-777)) (-777)) 72) (((-777) $ (-950 |#2|)) 73)) (-2872 (((-112) $ $) 94)))
+(((-1174 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -1859 ((-112) $)) (-15 -1398 ((-112) $)) (-15 -3746 ((-112) $)) (-15 -4287 ($)) (-15 -3796 ($)) (-15 -2569 ($ $)) (-15 -2229 ($ $ (-777))) (-15 -2153 ((-650 $) $)) (-15 -2704 ((-777) $)) (-15 -2066 ($ $)) (-15 -3042 ($ $)) (-15 -2727 ($ $ $)) (-15 -2727 ($ (-650 $))) (-15 -1484 ((-650 $) $)) (-15 -3195 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2119 ($ $ (-950 |#2|))) (-15 -3616 ($ $ $ (-950 |#2|) (-777))) (-15 -3160 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -3195 ($ $ (-650 (-777)) (-777))) (-15 -3160 ($ $ (-650 (-777)) (-777))) (-15 -3195 ((-777) $ (-950 |#2|))) (-15 -3160 ($ $ (-777) (-950 |#2|))) (-15 -3085 ($ $ (-650 (-777)) (-112))) (-15 -2750 ($ $ (-650 (-777)) (-173))) (-15 -2435 ($ $ (-650 (-777)))) (-15 -3328 ((-950 |#2|) $)) (-15 -2168 ((-777) $)) (-15 -2922 ((-112) $)) (-15 -3212 ((-173) $)) (-15 -2461 ((-777) $)) (-15 -4343 ($ $)) (-15 -1861 ((-650 (-950 |#2|)) $)))) (-928) (-1058)) (T -1174))
+((-1859 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3746 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4287 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3796 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2569 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2229 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2153 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2704 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2066 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3042 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2727 (*1 *1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2727 (*1 *1 *2) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3195 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-2119 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)))) (-3616 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-950 *5)) (-5 *3 (-777)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-3160 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-3195 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-3160 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-3195 (*1 *2 *1 *3) (-12 (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *2 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-3160 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-3085 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2750 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-173)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2435 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3328 (*1 *2 *1) (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2168 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2922 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3212 (*1 *2 *1) (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2461 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4343 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-1861 (*1 *2 *1) (-12 (-5 *2 (-650 (-950 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))))
+(-13 (-1109) (-10 -8 (-15 -1859 ((-112) $)) (-15 -1398 ((-112) $)) (-15 -3746 ((-112) $)) (-15 -4287 ($)) (-15 -3796 ($)) (-15 -2569 ($ $)) (-15 -2229 ($ $ (-777))) (-15 -2153 ((-650 $) $)) (-15 -2704 ((-777) $)) (-15 -2066 ($ $)) (-15 -3042 ($ $)) (-15 -2727 ($ $ $)) (-15 -2727 ($ (-650 $))) (-15 -1484 ((-650 $) $)) (-15 -3195 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2119 ($ $ (-950 |#2|))) (-15 -3616 ($ $ $ (-950 |#2|) (-777))) (-15 -3160 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -3195 ($ $ (-650 (-777)) (-777))) (-15 -3160 ($ $ (-650 (-777)) (-777))) (-15 -3195 ((-777) $ (-950 |#2|))) (-15 -3160 ($ $ (-777) (-950 |#2|))) (-15 -3085 ($ $ (-650 (-777)) (-112))) (-15 -2750 ($ $ (-650 (-777)) (-173))) (-15 -2435 ($ $ (-650 (-777)))) (-15 -3328 ((-950 |#2|) $)) (-15 -2168 ((-777) $)) (-15 -2922 ((-112) $)) (-15 -3212 ((-173) $)) (-15 -2461 ((-777) $)) (-15 -4343 ($ $)) (-15 -1861 ((-650 (-950 |#2|)) $))))
+((-2417 (((-112) $ $) NIL)) (-2123 ((|#2| $) 11)) (-2112 ((|#1| $) 10)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3749 (($ |#1| |#2|) 9)) (-3735 (((-868) $) 16)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1175 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3749 ($ |#1| |#2|)) (-15 -2112 (|#1| $)) (-15 -2123 (|#2| $)))) (-1109) (-1109)) (T -1175))
+((-3749 (*1 *1 *2 *3) (-12 (-5 *1 (-1175 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2112 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *2 *3)) (-4 *3 (-1109)))) (-2123 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *3 *2)) (-4 *3 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -3749 ($ |#1| |#2|)) (-15 -2112 (|#1| $)) (-15 -2123 (|#2| $))))
+((-2417 (((-112) $ $) NIL)) (-3659 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
(((-1176) (-13 (-1092) (-10 -8 (-15 -3659 ((-1144) $))))) (T -1176))
((-3659 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1176)))))
(-13 (-1092) (-10 -8 (-15 -3659 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 11)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3171 (($ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-2720 (((-112) $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3316 (($ $ (-570)) NIL) (($ $ (-570) (-570)) 75)) (-2230 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-1636 (((-1184 |#1| |#2| |#3|) $) 42)) (-2246 (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 32)) (-1781 (((-1184 |#1| |#2| |#3|) $) 33)) (-2735 (($ $) 116 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) 112 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-3140 (((-570) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3254 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 34) (((-3 (-1186) "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-570) "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-3080 (((-1184 |#1| |#2| |#3|) $) 140) (((-1186) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-413 (-570)) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-570) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-1576 (($ $) 37) (($ (-570) $) 38)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-1184 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 (-1184 |#1| |#2| |#3|))) (|:| |vec| (-1276 (-1184 |#1| |#2| |#3|)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368))))) (-3413 (((-3 $ "failed") $) 54)) (-4076 (((-413 (-959 |#1|)) $ (-570)) 74 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 76 (|has| |#1| (-562)))) (-3336 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-1522 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-4232 (((-112) $) 28)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-893 (-570))) (|has| |#1| (-368))))) (-3157 (((-570) $) NIL) (((-570) $ (-570)) 26)) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL (|has| |#1| (-368)))) (-4398 (((-1184 |#1| |#2| |#3|) $) 44 (|has| |#1| (-368)))) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2885 (((-3 $ "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-2761 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3553 (($ $ (-928)) NIL)) (-3260 (($ (-1 |#1| (-570)) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-570)) 19) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3310 (($ $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3787 (($ $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2635 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1791 (($ (-570) (-1184 |#1| |#2| |#3|)) 36)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-3555 (($ $) 79 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 80 (|has| |#1| (-38 (-413 (-570)))))) (-2314 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1965 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-3739 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-570)) 158)) (-2407 (((-3 $ "failed") $ $) 55 (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) (-1184 |#1| |#2| |#3|)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-520 (-1186) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-1184 |#1| |#2| |#3|))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-520 (-1186) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-298 (-1184 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-298 (-1184 |#1| |#2| |#3|))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1184 |#1| |#2| |#3|)) (-650 (-1184 |#1| |#2| |#3|))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-570)) NIL) (($ $ $) 61 (|has| (-570) (-1121))) (($ $ (-1184 |#1| |#2| |#3|)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-290 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1272 |#2|)) 57) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 56 (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-1418 (($ $) NIL (|has| |#1| (-368)))) (-4412 (((-1184 |#1| |#2| |#3|) $) 46 (|has| |#1| (-368)))) (-1601 (((-570) $) 43)) (-4099 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 118 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 114 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-1416 (((-542) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-620 (-542))) (|has| |#1| (-368)))) (((-384) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-227) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-899 (-384)) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) 162) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1184 |#1| |#2| |#3|)) 30) (($ (-1272 |#2|)) 25) (($ (-1186)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (($ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562)))) (($ (-413 (-570))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-1715 ((|#1| $ (-570)) 77)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 12)) (-3754 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4108 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 110 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 106 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-1423 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1812 (($) 21 T CONST)) (-1823 (($) 16 T CONST)) (-2791 (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2924 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2904 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2894 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 49 (|has| |#1| (-368))) (($ (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) 50 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 23)) (** (($ $ (-928)) NIL) (($ $ (-777)) 60) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) 83 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 137 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 35) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1184 |#1| |#2| |#3|)) 48 (|has| |#1| (-368))) (($ (-1184 |#1| |#2| |#3|) $) 47 (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1177 |#1| |#2| |#3|) (-13 (-1238 |#1| (-1184 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1177))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1238 |#1| (-1184 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 11)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1345 (($ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1372 (((-112) $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3235 (($ $ (-570)) NIL) (($ $ (-570) (-570)) 75)) (-3345 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-2392 (((-1184 |#1| |#2| |#3|) $) 42)) (-3539 (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 32)) (-1781 (((-1184 |#1| |#2| |#3|) $) 33)) (-2735 (($ $) 116 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) 112 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-2249 (((-570) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3253 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 34) (((-3 (-1186) "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-570) "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-3080 (((-1184 |#1| |#2| |#3|) $) 140) (((-1186) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-413 (-570)) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-570) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-2998 (($ $) 37) (($ (-570) $) 38)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-1184 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 (-1184 |#1| |#2| |#3|))) (|:| |vec| (-1277 (-1184 |#1| |#2| |#3|)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368))))) (-2937 (((-3 $ "failed") $) 54)) (-2093 (((-413 (-959 |#1|)) $ (-570)) 74 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 76 (|has| |#1| (-562)))) (-3336 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-3703 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-4217 (((-112) $) 28)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-893 (-570))) (|has| |#1| (-368))))) (-4331 (((-570) $) NIL) (((-570) $ (-570)) 26)) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL (|has| |#1| (-368)))) (-4399 (((-1184 |#1| |#2| |#3|) $) 44 (|has| |#1| (-368)))) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3584 (((-3 $ "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-1774 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1876 (($ $ (-928)) NIL)) (-4059 (($ (-1 |#1| (-570)) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-570)) 19) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3311 (($ $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2222 (($ $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2635 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1793 (($ (-570) (-1184 |#1| |#2| |#3|)) 36)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-3722 (($ $) 79 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 80 (|has| |#1| (-38 (-413 (-570)))))) (-2315 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2442 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-2962 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-570)) 158)) (-2406 (((-3 $ "failed") $ $) 55 (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) (-1184 |#1| |#2| |#3|)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-520 (-1186) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-1184 |#1| |#2| |#3|))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-520 (-1186) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-298 (-1184 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-298 (-1184 |#1| |#2| |#3|))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1184 |#1| |#2| |#3|)) (-650 (-1184 |#1| |#2| |#3|))) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-570)) NIL) (($ $ $) 61 (|has| (-570) (-1121))) (($ $ (-1184 |#1| |#2| |#3|)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-290 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1273 |#2|)) 57) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 56 (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-4428 (($ $) NIL (|has| |#1| (-368)))) (-4413 (((-1184 |#1| |#2| |#3|) $) 46 (|has| |#1| (-368)))) (-3221 (((-570) $) 43)) (-4098 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 118 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 114 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-1417 (((-542) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-620 (-542))) (|has| |#1| (-368)))) (((-384) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-227) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-899 (-384)) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) 162) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1184 |#1| |#2| |#3|)) 30) (($ (-1273 |#2|)) 25) (($ (-1186)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (($ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562)))) (($ (-413 (-570))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-1983 ((|#1| $ (-570)) 77)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 12)) (-1963 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4112 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 110 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 106 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-1367 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1814 (($) 21 T CONST)) (-1824 (($) 16 T CONST)) (-2791 (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2924 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2904 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2894 (((-112) $ $) NIL (-2740 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 49 (|has| |#1| (-368))) (($ (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) 50 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 23)) (** (($ $ (-928)) NIL) (($ $ (-777)) 60) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) 83 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 137 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 35) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1184 |#1| |#2| |#3|)) 48 (|has| |#1| (-368))) (($ (-1184 |#1| |#2| |#3|) $) 47 (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1177 |#1| |#2| |#3|) (-13 (-1239 |#1| (-1184 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1177))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1239 |#1| (-1184 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
((-3202 ((|#2| |#2| (-1101 |#2|)) 26) ((|#2| |#2| (-1186)) 28)))
-(((-1178 |#1| |#2|) (-10 -7 (-15 -3202 (|#2| |#2| (-1186))) (-15 -3202 (|#2| |#2| (-1101 |#2|)))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-436 |#1|) (-161) (-27) (-1211))) (T -1178))
-((-3202 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1211))) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1178 *4 *2)))) (-3202 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1178 *4 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1211))))))
+(((-1178 |#1| |#2|) (-10 -7 (-15 -3202 (|#2| |#2| (-1186))) (-15 -3202 (|#2| |#2| (-1101 |#2|)))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-436 |#1|) (-161) (-27) (-1212))) (T -1178))
+((-3202 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1212))) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1178 *4 *2)))) (-3202 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1178 *4 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1212))))))
(-10 -7 (-15 -3202 (|#2| |#2| (-1186))) (-15 -3202 (|#2| |#2| (-1101 |#2|))))
((-3202 (((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|)))) 31) (((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|))) 44) (((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186)) 33) (((-413 (-959 |#1|)) (-959 |#1|) (-1186)) 36)))
(((-1179 |#1|) (-10 -7 (-15 -3202 ((-413 (-959 |#1|)) (-959 |#1|) (-1186))) (-15 -3202 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3202 ((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|)))) (-15 -3202 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|)))))) (-13 (-562) (-1047 (-570)))) (T -1179))
((-3202 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5))) (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-3 *3 (-320 *5))) (-5 *1 (-1179 *5)))) (-3202 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-959 *5))) (-5 *3 (-959 *5)) (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-413 *3)) (-5 *1 (-1179 *5)))) (-3202 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-3 (-413 (-959 *5)) (-320 *5))) (-5 *1 (-1179 *5)) (-5 *3 (-413 (-959 *5))))) (-3202 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-413 (-959 *5))) (-5 *1 (-1179 *5)) (-5 *3 (-959 *5)))))
(-10 -7 (-15 -3202 ((-413 (-959 |#1|)) (-959 |#1|) (-1186))) (-15 -3202 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3202 ((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|)))) (-15 -3202 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|))))))
-((-1351 (((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)) 13)))
-(((-1180 |#1| |#2|) (-10 -7 (-15 -1351 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)))) (-1058) (-1058)) (T -1180))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1182 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-1182 *6)) (-5 *1 (-1180 *5 *6)))))
-(-10 -7 (-15 -1351 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|))))
-((-1790 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 51)) (-3738 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 52)))
-(((-1181 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3738 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -1790 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))))) (-799) (-856) (-458) (-956 |#3| |#1| |#2|)) (T -1181))
-((-1790 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7)))) (-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7))))) (-3738 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7)))) (-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7))))))
-(-10 -7 (-15 -3738 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -1790 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))))
-((-2416 (((-112) $ $) 171)) (-4028 (((-112) $) 43)) (-3618 (((-1276 |#1|) $ (-777)) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-3930 (($ (-1182 |#1|)) NIL)) (-3703 (((-1182 $) $ (-1091)) 82) (((-1182 |#1|) $) 71)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) 164 (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3766 (($ $ $) 158 (|has| |#1| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) 95 (|has| |#1| (-916)))) (-2222 (($ $) NIL (|has| |#1| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 115 (|has| |#1| (-916)))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2662 (($ $ (-777)) 61)) (-3008 (($ $ (-777)) 63)) (-2105 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-1939 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 160 (|has| |#1| (-174)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) 80)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3252 (($ $ $) 131)) (-1325 (($ $ $) NIL (|has| |#1| (-562)))) (-3369 (((-2 (|:| -1441 |#1|) (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3543 (($ $) 165 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-777) $) 69)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-1559 (((-868) $ (-868)) 148)) (-3157 (((-777) $ $) NIL (|has| |#1| (-562)))) (-2081 (((-112) $) 48)) (-3797 (((-777) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1704 (($ (-1182 |#1|) (-1091)) 73) (($ (-1182 $) (-1091)) 89)) (-3553 (($ $ (-777)) 51)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 87) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1091)) NIL) (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 153)) (-4341 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-4414 (($ (-1 (-777) (-777)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3189 (((-1182 |#1|) $) NIL)) (-3382 (((-3 (-1091) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) 76)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1903 (((-1168) $) NIL)) (-3781 (((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777)) 60)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-1091)) (|:| -1907 (-777))) "failed") $) NIL)) (-3555 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2314 (($) NIL (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) 50)) (-1842 ((|#1| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 103 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 167 (|has| |#1| (-458)))) (-2096 (($ $ (-777) |#1| $) 123)) (-1885 (((-424 (-1182 $)) (-1182 $)) 101 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 100 (|has| |#1| (-916)))) (-3738 (((-424 $) $) 108 (|has| |#1| (-916)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ |#1|) 163 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 124 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ |#1|) 150) (($ $ $) 151) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-4112 (((-3 $ "failed") $ (-777)) 54)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 172 (|has| |#1| (-368)))) (-2998 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) 156 (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1601 (((-777) $) 78) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) 162 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2486 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3735 (((-868) $) 149) (($ (-570)) NIL) (($ |#1|) 77) (($ (-1091)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) 41 (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) 17 T CONST)) (-1823 (($) 19 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) 120)) (-2975 (($ $ |#1|) 173 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 90)) (** (($ $ (-928)) 14) (($ $ (-777)) 12)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 39) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 129) (($ $ |#1|) NIL)))
-(((-1182 |#1|) (-13 (-1252 |#1|) (-10 -8 (-15 -1559 ((-868) $ (-868))) (-15 -2096 ($ $ (-777) |#1| $)))) (-1058)) (T -1182))
-((-1559 (*1 *2 *1 *2) (-12 (-5 *2 (-868)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))) (-2096 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))))
-(-13 (-1252 |#1|) (-10 -8 (-15 -1559 ((-868) $ (-868))) (-15 -2096 ($ $ (-777) |#1| $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 11)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 36)) (-3080 (((-1177 |#1| |#2| |#3|) $) NIL) (((-1184 |#1| |#2| |#3|) $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-4039 (((-413 (-570)) $) 59)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-1804 (($ (-413 (-570)) (-1177 |#1| |#2| |#3|)) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) 20) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2933 (((-1177 |#1| |#2| |#3|) $) 41)) (-2232 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) NIL)) (-1791 (((-1177 |#1| |#2| |#3|) $) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-3555 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 40 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) NIL)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $ (-1272 |#2|)) 38)) (-1601 (((-413 (-570)) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) 62) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1177 |#1| |#2| |#3|)) 30) (($ (-1184 |#1| |#2| |#3|)) 31) (($ (-1272 |#2|)) 26) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 12)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 22 T CONST)) (-1823 (($) 16 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 24)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1183 |#1| |#2| |#3|) (-13 (-1259 |#1| (-1177 |#1| |#2| |#3|)) (-1047 (-1184 |#1| |#2| |#3|)) (-622 (-1272 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1183))
-((-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1259 |#1| (-1177 |#1| |#2| |#3|)) (-1047 (-1184 |#1| |#2| |#3|)) (-622 (-1272 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 129)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 119)) (-2012 (((-1249 |#2| |#1|) $ (-777)) 69)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-777)) 85) (($ $ (-777) (-777)) 82)) (-2230 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 105)) (-2735 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 169 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 118) (($ (-1166 |#1|)) 113)) (-4087 (($ $) 177 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) 25)) (-4396 (($ $) 28)) (-3208 (((-959 |#1|) $ (-777)) 81) (((-959 |#1|) $ (-777) (-777)) 83)) (-4232 (((-112) $) 124)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-777) $) 126) (((-777) $ (-777)) 128)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) NIL)) (-3260 (($ (-1 |#1| (-570)) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 13) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3555 (($ $) 133 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 134 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-1558 (($ $ (-777)) 15)) (-2407 (((-3 $ "failed") $ $) 26 (|has| |#1| (-562)))) (-4387 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1876 ((|#1| $ (-777)) 122) (($ $ $) 132 (|has| (-777) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 29 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $ (-1272 |#2|)) 31)) (-1601 (((-777) $) NIL)) (-4099 (($ $) 179 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) 206) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 130 (|has| |#1| (-174))) (($ (-1249 |#2| |#1|)) 55) (($ (-1272 |#2|)) 36)) (-3009 (((-1166 |#1|) $) 101)) (-1715 ((|#1| $ (-777)) 121)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 58)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 161 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) 181 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 165 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-777)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 167 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 163 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 159 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 17 T CONST)) (-1823 (($) 20 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 198)) (-2954 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#1|) 203 (|has| |#1| (-368))) (($ $ $) 138 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 141 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 136) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1184 |#1| |#2| |#3|) (-13 (-1267 |#1|) (-10 -8 (-15 -3735 ($ (-1249 |#2| |#1|))) (-15 -2012 ((-1249 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1184))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1249 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1184 *3 *4 *5)))) (-2012 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1249 *5 *4)) (-5 *1 (-1184 *4 *5 *6)) (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1267 |#1|) (-10 -8 (-15 -3735 ($ (-1249 |#2| |#1|))) (-15 -2012 ((-1249 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
-((-3735 (((-868) $) 33) (($ (-1186)) 35)) (-2740 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 46)) (-2729 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 39) (($ $) 40)) (-2661 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 41)) (-2648 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 43)) (-2636 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 42)) (-2623 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 44)) (-2098 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 47)) (-12 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 45)))
-(((-1185) (-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -2661 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2636 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2648 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2623 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2740 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2098 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ $))))) (T -1185))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1185)))) (-2661 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2636 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2648 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2623 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2740 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2098 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2729 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2729 (*1 *1 *1) (-5 *1 (-1185))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -2661 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2636 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2648 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2623 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2740 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2098 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ $))))
-((-2416 (((-112) $ $) NIL)) (-1757 (($ $ (-650 (-868))) 62)) (-1467 (($ $ (-650 (-868))) 60)) (-3320 (((-1168) $) 101)) (-3801 (((-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868)))) $) 108)) (-4196 (((-112) $) 23)) (-4360 (($ $ (-650 (-650 (-868)))) 59) (($ $ (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868))))) 99)) (-2450 (($) 163 T CONST)) (-3368 (((-1281)) 135)) (-2822 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 69) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 76)) (-4286 (($) 122) (($ $) 131)) (-3503 (($ $) 100)) (-3310 (($ $ $) NIL)) (-3787 (($ $ $) NIL)) (-3312 (((-650 $) $) 136)) (-1903 (((-1168) $) 114)) (-3479 (((-1129) $) NIL)) (-1876 (($ $ (-650 (-868))) 61)) (-1416 (((-542) $) 48) (((-1186) $) 49) (((-899 (-570)) $) 80) (((-899 (-384)) $) 78)) (-3735 (((-868) $) 55) (($ (-1168)) 50)) (-1859 (((-112) $ $) NIL)) (-2225 (($ $ (-650 (-868))) 63)) (-2892 (((-1168) $) 34) (((-1168) $ (-112)) 35) (((-1281) (-828) $) 36) (((-1281) (-828) $ (-112)) 37)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 51)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 52)))
-(((-1186) (-13 (-856) (-620 (-542)) (-834) (-620 (-1186)) (-622 (-1168)) (-620 (-899 (-570))) (-620 (-899 (-384))) (-893 (-570)) (-893 (-384)) (-10 -8 (-15 -4286 ($)) (-15 -4286 ($ $)) (-15 -3368 ((-1281))) (-15 -3503 ($ $)) (-15 -4196 ((-112) $)) (-15 -3801 ((-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4360 ($ $ (-650 (-650 (-868))))) (-15 -4360 ($ $ (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -1467 ($ $ (-650 (-868)))) (-15 -1757 ($ $ (-650 (-868)))) (-15 -2225 ($ $ (-650 (-868)))) (-15 -1876 ($ $ (-650 (-868)))) (-15 -3320 ((-1168) $)) (-15 -3312 ((-650 $) $)) (-15 -2450 ($) -3640)))) (T -1186))
-((-4286 (*1 *1) (-5 *1 (-1186))) (-4286 (*1 *1 *1) (-5 *1 (-1186))) (-3368 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1186)))) (-3503 (*1 *1 *1) (-5 *1 (-1186))) (-4196 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))) (-3801 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-4360 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-1186)))) (-4360 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-1467 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-1757 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-2225 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-3320 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1186)))) (-3312 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))) (-2450 (*1 *1) (-5 *1 (-1186))))
-(-13 (-856) (-620 (-542)) (-834) (-620 (-1186)) (-622 (-1168)) (-620 (-899 (-570))) (-620 (-899 (-384))) (-893 (-570)) (-893 (-384)) (-10 -8 (-15 -4286 ($)) (-15 -4286 ($ $)) (-15 -3368 ((-1281))) (-15 -3503 ($ $)) (-15 -4196 ((-112) $)) (-15 -3801 ((-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4360 ($ $ (-650 (-650 (-868))))) (-15 -4360 ($ $ (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -1467 ($ $ (-650 (-868)))) (-15 -1757 ($ $ (-650 (-868)))) (-15 -2225 ($ $ (-650 (-868)))) (-15 -1876 ($ $ (-650 (-868)))) (-15 -3320 ((-1168) $)) (-15 -3312 ((-650 $) $)) (-15 -2450 ($) -3640)))
-((-4008 (((-1276 |#1|) |#1| (-928)) 18) (((-1276 |#1|) (-650 |#1|)) 25)))
-(((-1187 |#1|) (-10 -7 (-15 -4008 ((-1276 |#1|) (-650 |#1|))) (-15 -4008 ((-1276 |#1|) |#1| (-928)))) (-1058)) (T -1187))
-((-4008 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1276 *3)) (-5 *1 (-1187 *3)) (-4 *3 (-1058)))) (-4008 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1058)) (-5 *2 (-1276 *4)) (-5 *1 (-1187 *4)))))
-(-10 -7 (-15 -4008 ((-1276 |#1|) (-650 |#1|))) (-15 -4008 ((-1276 |#1|) |#1| (-928))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3543 (($ $) NIL (|has| |#1| (-458)))) (-3007 (($ $ |#1| (-980) $) NIL)) (-2081 (((-112) $) 17)) (-3797 (((-777) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-980)) NIL)) (-4341 (((-980) $) NIL)) (-4414 (($ (-1 (-980) (-980)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#1| $) NIL)) (-2096 (($ $ (-980) |#1| $) NIL (-12 (|has| (-980) (-132)) (|has| |#1| (-562))))) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1601 (((-980) $) NIL)) (-3030 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ (-980)) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1812 (($) 10 T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 21)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 22) (($ $ |#1|) NIL) (($ |#1| $) 16) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1188 |#1|) (-13 (-330 |#1| (-980)) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| (-980) (-132)) (-15 -2096 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|))) (-1058)) (T -1188))
-((-2096 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-980)) (-4 *2 (-132)) (-5 *1 (-1188 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(-13 (-330 |#1| (-980)) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| (-980) (-132)) (-15 -2096 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|)))
-((-3966 (((-1190) (-1186) $) 25)) (-2800 (($) 29)) (-2357 (((-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-1186) $) 22)) (-3311 (((-1281) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) $) 41) (((-1281) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) 42) (((-1281) (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) 43)) (-3793 (((-1281) (-1186)) 58)) (-2685 (((-1281) (-1186) $) 55) (((-1281) (-1186)) 56) (((-1281)) 57)) (-2976 (((-1281) (-1186)) 37)) (-1476 (((-1186)) 36)) (-3743 (($) 34)) (-2706 (((-443) (-1186) (-443) (-1186) $) 45) (((-443) (-650 (-1186)) (-443) (-1186) $) 49) (((-443) (-1186) (-443)) 46) (((-443) (-1186) (-443) (-1186)) 50)) (-2107 (((-1186)) 35)) (-3735 (((-868) $) 28)) (-2943 (((-1281)) 30) (((-1281) (-1186)) 33)) (-4376 (((-650 (-1186)) (-1186) $) 24)) (-4169 (((-1281) (-1186) (-650 (-1186)) $) 38) (((-1281) (-1186) (-650 (-1186))) 39) (((-1281) (-650 (-1186))) 40)))
-(((-1189) (-13 (-619 (-868)) (-10 -8 (-15 -2800 ($)) (-15 -2943 ((-1281))) (-15 -2943 ((-1281) (-1186))) (-15 -2706 ((-443) (-1186) (-443) (-1186) $)) (-15 -2706 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2706 ((-443) (-1186) (-443))) (-15 -2706 ((-443) (-1186) (-443) (-1186))) (-15 -2976 ((-1281) (-1186))) (-15 -2107 ((-1186))) (-15 -1476 ((-1186))) (-15 -4169 ((-1281) (-1186) (-650 (-1186)) $)) (-15 -4169 ((-1281) (-1186) (-650 (-1186)))) (-15 -4169 ((-1281) (-650 (-1186)))) (-15 -3311 ((-1281) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -3311 ((-1281) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -3311 ((-1281) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -2685 ((-1281) (-1186) $)) (-15 -2685 ((-1281) (-1186))) (-15 -2685 ((-1281))) (-15 -3793 ((-1281) (-1186))) (-15 -3743 ($)) (-15 -2357 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-1186) $)) (-15 -4376 ((-650 (-1186)) (-1186) $)) (-15 -3966 ((-1190) (-1186) $))))) (T -1189))
-((-2800 (*1 *1) (-5 *1 (-1189))) (-2943 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1189)))) (-2943 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *4 (-1186)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2976 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-2107 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-1476 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-4169 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-4169 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-4169 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-3311 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-3311 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-3311 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-2685 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-2685 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-2685 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1189)))) (-3793 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))) (-3743 (*1 *1) (-5 *1 (-1189))) (-2357 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *1 (-1189)))) (-4376 (*1 *2 *3 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))) (-3966 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2800 ($)) (-15 -2943 ((-1281))) (-15 -2943 ((-1281) (-1186))) (-15 -2706 ((-443) (-1186) (-443) (-1186) $)) (-15 -2706 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2706 ((-443) (-1186) (-443))) (-15 -2706 ((-443) (-1186) (-443) (-1186))) (-15 -2976 ((-1281) (-1186))) (-15 -2107 ((-1186))) (-15 -1476 ((-1186))) (-15 -4169 ((-1281) (-1186) (-650 (-1186)) $)) (-15 -4169 ((-1281) (-1186) (-650 (-1186)))) (-15 -4169 ((-1281) (-650 (-1186)))) (-15 -3311 ((-1281) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -3311 ((-1281) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -3311 ((-1281) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -2685 ((-1281) (-1186) $)) (-15 -2685 ((-1281) (-1186))) (-15 -2685 ((-1281))) (-15 -3793 ((-1281) (-1186))) (-15 -3743 ($)) (-15 -2357 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-1186) $)) (-15 -4376 ((-650 (-1186)) (-1186) $)) (-15 -3966 ((-1190) (-1186) $))))
-((-1956 (((-650 (-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $) 66)) (-1385 (((-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $) 47)) (-3230 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-443))))) 17)) (-3793 (((-1281) $) 73)) (-2063 (((-650 (-1186)) $) 22)) (-1841 (((-1113) $) 60)) (-4195 (((-443) (-1186) $) 27)) (-2327 (((-650 (-1186)) $) 30)) (-3743 (($) 19)) (-2706 (((-443) (-650 (-1186)) (-443) $) 25) (((-443) (-1186) (-443) $) 24)) (-3735 (((-868) $) 9) (((-1199 (-1186) (-443)) $) 13)))
-(((-1190) (-13 (-619 (-868)) (-10 -8 (-15 -3735 ((-1199 (-1186) (-443)) $)) (-15 -3743 ($)) (-15 -2706 ((-443) (-650 (-1186)) (-443) $)) (-15 -2706 ((-443) (-1186) (-443) $)) (-15 -4195 ((-443) (-1186) $)) (-15 -2063 ((-650 (-1186)) $)) (-15 -1385 ((-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -2327 ((-650 (-1186)) $)) (-15 -1956 ((-650 (-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -1841 ((-1113) $)) (-15 -3793 ((-1281) $)) (-15 -3230 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-443))))))))) (T -1190))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-1199 (-1186) (-443))) (-5 *1 (-1190)))) (-3743 (*1 *1) (-5 *1 (-1190))) (-2706 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *1 (-1190)))) (-2706 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1190)))) (-4195 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))) (-2063 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-1385 (*1 *2 *3 *1) (-12 (-5 *3 (-440)) (-5 *2 (-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) (-5 *1 (-1190)))) (-2327 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-1956 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))) (-5 *1 (-1190)))) (-1841 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))) (-3793 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1190)))) (-3230 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-443))))) (-5 *1 (-1190)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3735 ((-1199 (-1186) (-443)) $)) (-15 -3743 ($)) (-15 -2706 ((-443) (-650 (-1186)) (-443) $)) (-15 -2706 ((-443) (-1186) (-443) $)) (-15 -4195 ((-443) (-1186) $)) (-15 -2063 ((-650 (-1186)) $)) (-15 -1385 ((-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -2327 ((-650 (-1186)) $)) (-15 -1956 ((-650 (-650 (-3 (|:| -3503 (-1186)) (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -1841 ((-1113) $)) (-15 -3793 ((-1281) $)) (-15 -3230 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-443))))))))
-((-2416 (((-112) $ $) NIL)) (-4378 (((-3 (-570) "failed") $) 29) (((-3 (-227) "failed") $) 35) (((-3 (-512) "failed") $) 43) (((-3 (-1168) "failed") $) 47)) (-3080 (((-570) $) 30) (((-227) $) 36) (((-512) $) 40) (((-1168) $) 48)) (-2087 (((-112) $) 53)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3037 (((-3 (-570) (-227) (-512) (-1168) $) $) 55)) (-3836 (((-650 $) $) 57)) (-1416 (((-1113) $) 24) (($ (-1113)) 25)) (-3098 (((-112) $) 56)) (-3735 (((-868) $) 23) (($ (-570)) 26) (($ (-227)) 32) (($ (-512)) 38) (($ (-1168)) 44) (((-542) $) 59) (((-570) $) 31) (((-227) $) 37) (((-512) $) 41) (((-1168) $) 49)) (-1802 (((-112) $ (|[\|\|]| (-570))) 10) (((-112) $ (|[\|\|]| (-227))) 13) (((-112) $ (|[\|\|]| (-512))) 19) (((-112) $ (|[\|\|]| (-1168))) 16)) (-3505 (($ (-512) (-650 $)) 51) (($ $ (-650 $)) 52)) (-1859 (((-112) $ $) NIL)) (-3950 (((-570) $) 27) (((-227) $) 33) (((-512) $) 39) (((-1168) $) 45)) (-2872 (((-112) $ $) 7)))
-(((-1191) (-13 (-1271) (-1109) (-1047 (-570)) (-1047 (-227)) (-1047 (-512)) (-1047 (-1168)) (-619 (-542)) (-10 -8 (-15 -1416 ((-1113) $)) (-15 -1416 ($ (-1113))) (-15 -3735 ((-570) $)) (-15 -3950 ((-570) $)) (-15 -3735 ((-227) $)) (-15 -3950 ((-227) $)) (-15 -3735 ((-512) $)) (-15 -3950 ((-512) $)) (-15 -3735 ((-1168) $)) (-15 -3950 ((-1168) $)) (-15 -3505 ($ (-512) (-650 $))) (-15 -3505 ($ $ (-650 $))) (-15 -2087 ((-112) $)) (-15 -3037 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -3836 ((-650 $) $)) (-15 -3098 ((-112) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-570)))) (-15 -1802 ((-112) $ (|[\|\|]| (-227)))) (-15 -1802 ((-112) $ (|[\|\|]| (-512)))) (-15 -1802 ((-112) $ (|[\|\|]| (-1168))))))) (T -1191))
-((-1416 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-1416 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-3505 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-1191))) (-5 *1 (-1191)))) (-3505 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-2087 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-3037 (*1 *2 *1) (-12 (-5 *2 (-3 (-570) (-227) (-512) (-1168) (-1191))) (-5 *1 (-1191)))) (-3836 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-3098 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-227))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1802 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-1191)))))
-(-13 (-1271) (-1109) (-1047 (-570)) (-1047 (-227)) (-1047 (-512)) (-1047 (-1168)) (-619 (-542)) (-10 -8 (-15 -1416 ((-1113) $)) (-15 -1416 ($ (-1113))) (-15 -3735 ((-570) $)) (-15 -3950 ((-570) $)) (-15 -3735 ((-227) $)) (-15 -3950 ((-227) $)) (-15 -3735 ((-512) $)) (-15 -3950 ((-512) $)) (-15 -3735 ((-1168) $)) (-15 -3950 ((-1168) $)) (-15 -3505 ($ (-512) (-650 $))) (-15 -3505 ($ $ (-650 $))) (-15 -2087 ((-112) $)) (-15 -3037 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -3836 ((-650 $) $)) (-15 -3098 ((-112) $)) (-15 -1802 ((-112) $ (|[\|\|]| (-570)))) (-15 -1802 ((-112) $ (|[\|\|]| (-227)))) (-15 -1802 ((-112) $ (|[\|\|]| (-512)))) (-15 -1802 ((-112) $ (|[\|\|]| (-1168))))))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) 22)) (-2450 (($) 12 T CONST)) (-3336 (($) 26)) (-3310 (($ $ $) NIL) (($) 19 T CONST)) (-3787 (($ $ $) NIL) (($) 20 T CONST)) (-2367 (((-928) $) 24)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) 23)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-1192 |#1|) (-13 (-850) (-10 -8 (-15 -2450 ($) -3640))) (-928)) (T -1192))
-((-2450 (*1 *1) (-12 (-5 *1 (-1192 *2)) (-14 *2 (-928)))))
-(-13 (-850) (-10 -8 (-15 -2450 ($) -3640)))
+((-1352 (((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)) 13)))
+(((-1180 |#1| |#2|) (-10 -7 (-15 -1352 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)))) (-1058) (-1058)) (T -1180))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1182 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-5 *2 (-1182 *6)) (-5 *1 (-1180 *5 *6)))))
+(-10 -7 (-15 -1352 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|))))
+((-1378 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 51)) (-3739 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 52)))
+(((-1181 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3739 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -1378 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))))) (-799) (-856) (-458) (-956 |#3| |#1| |#2|)) (T -1181))
+((-1378 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7)))) (-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7))))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458)) (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7)))) (-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7))))))
+(-10 -7 (-15 -3739 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -1378 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))))
+((-2417 (((-112) $ $) 171)) (-2745 (((-112) $) 43)) (-3056 (((-1277 |#1|) $ (-777)) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-4267 (($ (-1182 |#1|)) NIL)) (-3702 (((-1182 $) $ (-1091)) 82) (((-1182 |#1|) $) 71)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) 164 (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2037 (($ $ $) 158 (|has| |#1| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) 95 (|has| |#1| (-916)))) (-3252 (($ $) NIL (|has| |#1| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 115 (|has| |#1| (-916)))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2038 (($ $ (-777)) 61)) (-3393 (($ $ (-777)) 63)) (-1484 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#1| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-3383 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 160 (|has| |#1| (-174)))) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) 80)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3996 (($ $ $) 131)) (-1763 (($ $ $) NIL (|has| |#1| (-562)))) (-2526 (((-2 (|:| -1442 |#1|) (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1767 (($ $) 165 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-777) $) 69)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4114 (((-868) $ (-868)) 148)) (-4331 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4340 (((-112) $) 48)) (-2292 (((-777) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1705 (($ (-1182 |#1|) (-1091)) 73) (($ (-1182 $) (-1091)) 89)) (-1876 (($ $ (-777)) 51)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 87) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1091)) NIL) (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 153)) (-2730 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-2206 (($ (-1 (-777) (-777)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1551 (((-1182 |#1|) $) NIL)) (-2645 (((-3 (-1091) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) 76)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-4268 (((-1168) $) NIL)) (-2166 (((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777)) 60)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-1091)) (|:| -3011 (-777))) "failed") $) NIL)) (-3722 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2315 (($) NIL (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) 50)) (-1846 ((|#1| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 103 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 167 (|has| |#1| (-458)))) (-1386 (($ $ (-777) |#1| $) 123)) (-4086 (((-424 (-1182 $)) (-1182 $)) 101 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 100 (|has| |#1| (-916)))) (-3739 (((-424 $) $) 108 (|has| |#1| (-916)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ |#1|) 163 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 124 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ |#1|) 150) (($ $ $) 151) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-2377 (((-3 $ "failed") $ (-777)) 54)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 172 (|has| |#1| (-368)))) (-3290 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) 156 (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3221 (((-777) $) 78) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) 162 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-4099 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3735 (((-868) $) 149) (($ (-570)) NIL) (($ |#1|) 77) (($ (-1091)) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) 41 (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) 17 T CONST)) (-1824 (($) 19 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2872 (((-112) $ $) 120)) (-2975 (($ $ |#1|) 173 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 90)) (** (($ $ (-928)) 14) (($ $ (-777)) 12)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 39) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 129) (($ $ |#1|) NIL)))
+(((-1182 |#1|) (-13 (-1253 |#1|) (-10 -8 (-15 -4114 ((-868) $ (-868))) (-15 -1386 ($ $ (-777) |#1| $)))) (-1058)) (T -1182))
+((-4114 (*1 *2 *1 *2) (-12 (-5 *2 (-868)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))) (-1386 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))))
+(-13 (-1253 |#1|) (-10 -8 (-15 -4114 ((-868) $ (-868))) (-15 -1386 ($ $ (-777) |#1| $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 11)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 36)) (-3080 (((-1177 |#1| |#2| |#3|) $) NIL) (((-1184 |#1| |#2| |#3|) $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2845 (((-413 (-570)) $) 59)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-1805 (($ (-413 (-570)) (-1177 |#1| |#2| |#3|)) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) 20) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-1177 |#1| |#2| |#3|) $) 41)) (-3367 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) NIL)) (-1793 (((-1177 |#1| |#2| |#3|) $) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-3722 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 40 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) NIL)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $ (-1273 |#2|)) 38)) (-3221 (((-413 (-570)) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) 62) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1177 |#1| |#2| |#3|)) 30) (($ (-1184 |#1| |#2| |#3|)) 31) (($ (-1273 |#2|)) 26) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 12)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 22 T CONST)) (-1824 (($) 16 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 24)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1183 |#1| |#2| |#3|) (-13 (-1260 |#1| (-1177 |#1| |#2| |#3|)) (-1047 (-1184 |#1| |#2| |#3|)) (-622 (-1273 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1183))
+((-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1260 |#1| (-1177 |#1| |#2| |#3|)) (-1047 (-1184 |#1| |#2| |#3|)) (-622 (-1273 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 129)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 119)) (-2900 (((-1250 |#2| |#1|) $ (-777)) 69)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-777)) 85) (($ $ (-777) (-777)) 82)) (-3345 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 105)) (-2735 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 169 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 118) (($ (-1166 |#1|)) 113)) (-4087 (($ $) 177 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) 25)) (-2089 (($ $) 28)) (-3208 (((-959 |#1|) $ (-777)) 81) (((-959 |#1|) $ (-777) (-777)) 83)) (-4217 (((-112) $) 124)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-777) $) 126) (((-777) $ (-777)) 128)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) NIL)) (-4059 (($ (-1 |#1| (-570)) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 13) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3722 (($ $) 133 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 134 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-4102 (($ $ (-777)) 15)) (-2406 (((-3 $ "failed") $ $) 26 (|has| |#1| (-562)))) (-4388 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1877 ((|#1| $ (-777)) 122) (($ $ $) 132 (|has| (-777) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 29 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $ (-1273 |#2|)) 31)) (-3221 (((-777) $) NIL)) (-4098 (($ $) 179 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) 206) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 130 (|has| |#1| (-174))) (($ (-1250 |#2| |#1|)) 55) (($ (-1273 |#2|)) 36)) (-3405 (((-1166 |#1|) $) 101)) (-1983 ((|#1| $ (-777)) 121)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 58)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 161 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) 181 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 165 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-777)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 167 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 163 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 159 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 17 T CONST)) (-1824 (($) 20 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 198)) (-2953 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#1|) 203 (|has| |#1| (-368))) (($ $ $) 138 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 141 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 136) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1184 |#1| |#2| |#3|) (-13 (-1268 |#1|) (-10 -8 (-15 -3735 ($ (-1250 |#2| |#1|))) (-15 -2900 ((-1250 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1184))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1184 *3 *4 *5)))) (-2900 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1250 *5 *4)) (-5 *1 (-1184 *4 *5 *6)) (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1268 |#1|) (-10 -8 (-15 -3735 ($ (-1250 |#2| |#1|))) (-15 -2900 ((-1250 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-3735 (((-868) $) 33) (($ (-1186)) 35)) (-2740 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 46)) (-2729 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 39) (($ $) 40)) (-2661 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 41)) (-2648 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 43)) (-2636 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 42)) (-2623 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 44)) (-2099 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 47)) (-12 (($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 45)))
+(((-1185) (-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -2661 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2636 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2648 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2623 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2740 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2099 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ $))))) (T -1185))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1185)))) (-2661 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2636 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2648 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2623 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2740 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2099 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2729 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2729 (*1 *1 *1) (-5 *1 (-1185))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3735 ($ (-1186))) (-15 -2661 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2636 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2648 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2623 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2740 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2099 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ (-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2729 ($ $))))
+((-2417 (((-112) $ $) NIL)) (-2285 (($ $ (-650 (-868))) 62)) (-1320 (($ $ (-650 (-868))) 60)) (-3320 (((-1168) $) 101)) (-3801 (((-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868)))) $) 108)) (-3836 (((-112) $) 23)) (-4361 (($ $ (-650 (-650 (-868)))) 59) (($ $ (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868))))) 99)) (-3761 (($) 163 T CONST)) (-2518 (((-1282)) 135)) (-4232 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 69) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 76)) (-4287 (($) 122) (($ $) 131)) (-3504 (($ $) 100)) (-3311 (($ $ $) NIL)) (-2222 (($ $ $) NIL)) (-3312 (((-650 $) $) 136)) (-4268 (((-1168) $) 114)) (-3479 (((-1129) $) NIL)) (-1877 (($ $ (-650 (-868))) 61)) (-1417 (((-542) $) 48) (((-1186) $) 49) (((-899 (-570)) $) 80) (((-899 (-384)) $) 78)) (-3735 (((-868) $) 55) (($ (-1168)) 50)) (-3866 (((-112) $ $) NIL)) (-3282 (($ $ (-650 (-868))) 63)) (-3637 (((-1168) $) 34) (((-1168) $ (-112)) 35) (((-1282) (-828) $) 36) (((-1282) (-828) $ (-112)) 37)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 51)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) 52)))
+(((-1186) (-13 (-856) (-620 (-542)) (-834) (-620 (-1186)) (-622 (-1168)) (-620 (-899 (-570))) (-620 (-899 (-384))) (-893 (-570)) (-893 (-384)) (-10 -8 (-15 -4287 ($)) (-15 -4287 ($ $)) (-15 -2518 ((-1282))) (-15 -3504 ($ $)) (-15 -3836 ((-112) $)) (-15 -3801 ((-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4361 ($ $ (-650 (-650 (-868))))) (-15 -4361 ($ $ (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -1320 ($ $ (-650 (-868)))) (-15 -2285 ($ $ (-650 (-868)))) (-15 -3282 ($ $ (-650 (-868)))) (-15 -1877 ($ $ (-650 (-868)))) (-15 -3320 ((-1168) $)) (-15 -3312 ((-650 $) $)) (-15 -3761 ($) -3640)))) (T -1186))
+((-4287 (*1 *1) (-5 *1 (-1186))) (-4287 (*1 *1 *1) (-5 *1 (-1186))) (-2518 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1186)))) (-3504 (*1 *1 *1) (-5 *1 (-1186))) (-3836 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))) (-3801 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-4361 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-1186)))) (-4361 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-1320 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-2285 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-3282 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-3320 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1186)))) (-3312 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))) (-3761 (*1 *1) (-5 *1 (-1186))))
+(-13 (-856) (-620 (-542)) (-834) (-620 (-1186)) (-622 (-1168)) (-620 (-899 (-570))) (-620 (-899 (-384))) (-893 (-570)) (-893 (-384)) (-10 -8 (-15 -4287 ($)) (-15 -4287 ($ $)) (-15 -2518 ((-1282))) (-15 -3504 ($ $)) (-15 -3836 ((-112) $)) (-15 -3801 ((-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4361 ($ $ (-650 (-650 (-868))))) (-15 -4361 ($ $ (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -1320 ($ $ (-650 (-868)))) (-15 -2285 ($ $ (-650 (-868)))) (-15 -3282 ($ $ (-650 (-868)))) (-15 -1877 ($ $ (-650 (-868)))) (-15 -3320 ((-1168) $)) (-15 -3312 ((-650 $) $)) (-15 -3761 ($) -3640)))
+((-2538 (((-1277 |#1|) |#1| (-928)) 18) (((-1277 |#1|) (-650 |#1|)) 25)))
+(((-1187 |#1|) (-10 -7 (-15 -2538 ((-1277 |#1|) (-650 |#1|))) (-15 -2538 ((-1277 |#1|) |#1| (-928)))) (-1058)) (T -1187))
+((-2538 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1277 *3)) (-5 *1 (-1187 *3)) (-4 *3 (-1058)))) (-2538 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4)) (-5 *1 (-1187 *4)))))
+(-10 -7 (-15 -2538 ((-1277 |#1|) (-650 |#1|))) (-15 -2538 ((-1277 |#1|) |#1| (-928))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3080 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-1767 (($ $) NIL (|has| |#1| (-458)))) (-3382 (($ $ |#1| (-980) $) NIL)) (-4340 (((-112) $) 17)) (-2292 (((-777) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-980)) NIL)) (-2730 (((-980) $) NIL)) (-2206 (($ (-1 (-980) (-980)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#1| $) NIL)) (-1386 (($ $ (-980) |#1| $) NIL (-12 (|has| (-980) (-132)) (|has| |#1| (-562))))) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3221 (((-980) $) NIL)) (-3621 ((|#1| $) NIL (|has| |#1| (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2740 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ (-980)) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1814 (($) 10 T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 21)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 22) (($ $ |#1|) NIL) (($ |#1| $) 16) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1188 |#1|) (-13 (-330 |#1| (-980)) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| (-980) (-132)) (-15 -1386 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|))) (-1058)) (T -1188))
+((-1386 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-980)) (-4 *2 (-132)) (-5 *1 (-1188 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(-13 (-330 |#1| (-980)) (-10 -8 (IF (|has| |#1| (-562)) (IF (|has| (-980) (-132)) (-15 -1386 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|)))
+((-3347 (((-1190) (-1186) $) 25)) (-3986 (($) 29)) (-2246 (((-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-1186) $) 22)) (-3187 (((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) $) 41) (((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) 42) (((-1282) (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) 43)) (-2251 (((-1282) (-1186)) 58)) (-2242 (((-1282) (-1186) $) 55) (((-1282) (-1186)) 56) (((-1282)) 57)) (-3054 (((-1282) (-1186)) 37)) (-1422 (((-1186)) 36)) (-3006 (($) 34)) (-2706 (((-443) (-1186) (-443) (-1186) $) 45) (((-443) (-650 (-1186)) (-443) (-1186) $) 49) (((-443) (-1186) (-443)) 46) (((-443) (-1186) (-443) (-1186)) 50)) (-1506 (((-1186)) 35)) (-3735 (((-868) $) 28)) (-4063 (((-1282)) 30) (((-1282) (-1186)) 33)) (-3047 (((-650 (-1186)) (-1186) $) 24)) (-1744 (((-1282) (-1186) (-650 (-1186)) $) 38) (((-1282) (-1186) (-650 (-1186))) 39) (((-1282) (-650 (-1186))) 40)))
+(((-1189) (-13 (-619 (-868)) (-10 -8 (-15 -3986 ($)) (-15 -4063 ((-1282))) (-15 -4063 ((-1282) (-1186))) (-15 -2706 ((-443) (-1186) (-443) (-1186) $)) (-15 -2706 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2706 ((-443) (-1186) (-443))) (-15 -2706 ((-443) (-1186) (-443) (-1186))) (-15 -3054 ((-1282) (-1186))) (-15 -1506 ((-1186))) (-15 -1422 ((-1186))) (-15 -1744 ((-1282) (-1186) (-650 (-1186)) $)) (-15 -1744 ((-1282) (-1186) (-650 (-1186)))) (-15 -1744 ((-1282) (-650 (-1186)))) (-15 -3187 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -3187 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -3187 ((-1282) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -2242 ((-1282) (-1186) $)) (-15 -2242 ((-1282) (-1186))) (-15 -2242 ((-1282))) (-15 -2251 ((-1282) (-1186))) (-15 -3006 ($)) (-15 -2246 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-1186) $)) (-15 -3047 ((-650 (-1186)) (-1186) $)) (-15 -3347 ((-1190) (-1186) $))))) (T -1189))
+((-3986 (*1 *1) (-5 *1 (-1189))) (-4063 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))) (-4063 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *4 (-1186)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2706 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-3054 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-1506 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-1422 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-1744 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-1744 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-1744 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3187 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3187 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3187 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2242 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2242 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2242 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2251 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3006 (*1 *1) (-5 *1 (-1189))) (-2246 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *1 (-1189)))) (-3047 (*1 *2 *3 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))) (-3347 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3986 ($)) (-15 -4063 ((-1282))) (-15 -4063 ((-1282) (-1186))) (-15 -2706 ((-443) (-1186) (-443) (-1186) $)) (-15 -2706 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2706 ((-443) (-1186) (-443))) (-15 -2706 ((-443) (-1186) (-443) (-1186))) (-15 -3054 ((-1282) (-1186))) (-15 -1506 ((-1186))) (-15 -1422 ((-1186))) (-15 -1744 ((-1282) (-1186) (-650 (-1186)) $)) (-15 -1744 ((-1282) (-1186) (-650 (-1186)))) (-15 -1744 ((-1282) (-650 (-1186)))) (-15 -3187 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")) $)) (-15 -3187 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -3187 ((-1282) (-3 (|:| |fst| (-440)) (|:| -2559 "void")))) (-15 -2242 ((-1282) (-1186) $)) (-15 -2242 ((-1282) (-1186))) (-15 -2242 ((-1282))) (-15 -2251 ((-1282) (-1186))) (-15 -3006 ($)) (-15 -2246 ((-3 (|:| |fst| (-440)) (|:| -2559 "void")) (-1186) $)) (-15 -3047 ((-650 (-1186)) (-1186) $)) (-15 -3347 ((-1190) (-1186) $))))
+((-3573 (((-650 (-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $) 66)) (-3537 (((-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $) 47)) (-3230 (($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-443))))) 17)) (-2251 (((-1282) $) 73)) (-2240 (((-650 (-1186)) $) 22)) (-3686 (((-1113) $) 60)) (-3824 (((-443) (-1186) $) 27)) (-1966 (((-650 (-1186)) $) 30)) (-3006 (($) 19)) (-2706 (((-443) (-650 (-1186)) (-443) $) 25) (((-443) (-1186) (-443) $) 24)) (-3735 (((-868) $) 9) (((-1199 (-1186) (-443)) $) 13)))
+(((-1190) (-13 (-619 (-868)) (-10 -8 (-15 -3735 ((-1199 (-1186) (-443)) $)) (-15 -3006 ($)) (-15 -2706 ((-443) (-650 (-1186)) (-443) $)) (-15 -2706 ((-443) (-1186) (-443) $)) (-15 -3824 ((-443) (-1186) $)) (-15 -2240 ((-650 (-1186)) $)) (-15 -3537 ((-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -1966 ((-650 (-1186)) $)) (-15 -3573 ((-650 (-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -3686 ((-1113) $)) (-15 -2251 ((-1282) $)) (-15 -3230 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-443))))))))) (T -1190))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-1199 (-1186) (-443))) (-5 *1 (-1190)))) (-3006 (*1 *1) (-5 *1 (-1190))) (-2706 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *1 (-1190)))) (-2706 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1190)))) (-3824 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))) (-2240 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-3537 (*1 *2 *3 *1) (-12 (-5 *3 (-440)) (-5 *2 (-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) (-5 *1 (-1190)))) (-1966 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-3573 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))) (-5 *1 (-1190)))) (-3686 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))) (-2251 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1190)))) (-3230 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-443))))) (-5 *1 (-1190)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3735 ((-1199 (-1186) (-443)) $)) (-15 -3006 ($)) (-15 -2706 ((-443) (-650 (-1186)) (-443) $)) (-15 -2706 ((-443) (-1186) (-443) $)) (-15 -3824 ((-443) (-1186) $)) (-15 -2240 ((-650 (-1186)) $)) (-15 -3537 ((-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -1966 ((-650 (-1186)) $)) (-15 -3573 ((-650 (-650 (-3 (|:| -3504 (-1186)) (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -3686 ((-1113) $)) (-15 -2251 ((-1282) $)) (-15 -3230 ($ (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-443))))))))
+((-2417 (((-112) $ $) NIL)) (-4379 (((-3 (-570) "failed") $) 29) (((-3 (-227) "failed") $) 35) (((-3 (-512) "failed") $) 43) (((-3 (-1168) "failed") $) 47)) (-3080 (((-570) $) 30) (((-227) $) 36) (((-512) $) 40) (((-1168) $) 48)) (-4397 (((-112) $) 53)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2450 (((-3 (-570) (-227) (-512) (-1168) $) $) 55)) (-1476 (((-650 $) $) 57)) (-1417 (((-1113) $) 24) (($ (-1113)) 25)) (-1881 (((-112) $) 56)) (-3735 (((-868) $) 23) (($ (-570)) 26) (($ (-227)) 32) (($ (-512)) 38) (($ (-1168)) 44) (((-542) $) 59) (((-570) $) 31) (((-227) $) 37) (((-512) $) 41) (((-1168) $) 49)) (-1803 (((-112) $ (|[\|\|]| (-570))) 10) (((-112) $ (|[\|\|]| (-227))) 13) (((-112) $ (|[\|\|]| (-512))) 19) (((-112) $ (|[\|\|]| (-1168))) 16)) (-1365 (($ (-512) (-650 $)) 51) (($ $ (-650 $)) 52)) (-3866 (((-112) $ $) NIL)) (-3950 (((-570) $) 27) (((-227) $) 33) (((-512) $) 39) (((-1168) $) 45)) (-2872 (((-112) $ $) 7)))
+(((-1191) (-13 (-1272) (-1109) (-1047 (-570)) (-1047 (-227)) (-1047 (-512)) (-1047 (-1168)) (-619 (-542)) (-10 -8 (-15 -1417 ((-1113) $)) (-15 -1417 ($ (-1113))) (-15 -3735 ((-570) $)) (-15 -3950 ((-570) $)) (-15 -3735 ((-227) $)) (-15 -3950 ((-227) $)) (-15 -3735 ((-512) $)) (-15 -3950 ((-512) $)) (-15 -3735 ((-1168) $)) (-15 -3950 ((-1168) $)) (-15 -1365 ($ (-512) (-650 $))) (-15 -1365 ($ $ (-650 $))) (-15 -4397 ((-112) $)) (-15 -2450 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -1476 ((-650 $) $)) (-15 -1881 ((-112) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-570)))) (-15 -1803 ((-112) $ (|[\|\|]| (-227)))) (-15 -1803 ((-112) $ (|[\|\|]| (-512)))) (-15 -1803 ((-112) $ (|[\|\|]| (-1168))))))) (T -1191))
+((-1417 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-1417 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-1365 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-1191))) (-5 *1 (-1191)))) (-1365 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-4397 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-2450 (*1 *2 *1) (-12 (-5 *2 (-3 (-570) (-227) (-512) (-1168) (-1191))) (-5 *1 (-1191)))) (-1476 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-1881 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-227))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1803 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-1191)))))
+(-13 (-1272) (-1109) (-1047 (-570)) (-1047 (-227)) (-1047 (-512)) (-1047 (-1168)) (-619 (-542)) (-10 -8 (-15 -1417 ((-1113) $)) (-15 -1417 ($ (-1113))) (-15 -3735 ((-570) $)) (-15 -3950 ((-570) $)) (-15 -3735 ((-227) $)) (-15 -3950 ((-227) $)) (-15 -3735 ((-512) $)) (-15 -3950 ((-512) $)) (-15 -3735 ((-1168) $)) (-15 -3950 ((-1168) $)) (-15 -1365 ($ (-512) (-650 $))) (-15 -1365 ($ $ (-650 $))) (-15 -4397 ((-112) $)) (-15 -2450 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -1476 ((-650 $) $)) (-15 -1881 ((-112) $)) (-15 -1803 ((-112) $ (|[\|\|]| (-570)))) (-15 -1803 ((-112) $ (|[\|\|]| (-227)))) (-15 -1803 ((-112) $ (|[\|\|]| (-512)))) (-15 -1803 ((-112) $ (|[\|\|]| (-1168))))))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) 22)) (-3761 (($) 12 T CONST)) (-3336 (($) 26)) (-3311 (($ $ $) NIL) (($) 19 T CONST)) (-2222 (($ $ $) NIL) (($) 20 T CONST)) (-2332 (((-928) $) 24)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) 23)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-1192 |#1|) (-13 (-850) (-10 -8 (-15 -3761 ($) -3640))) (-928)) (T -1192))
+((-3761 (*1 *1) (-12 (-5 *1 (-1192 *2)) (-14 *2 (-928)))))
+(-13 (-850) (-10 -8 (-15 -3761 ($) -3640)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) @1)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) 19 T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) 12 T CONST)) (-3787 (($ $ $) NIL) (($) 18 T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1375 (($ $ $) 21)) (-1359 (($ $ $) 20)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-1193 |#1|) (-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640))) (-928)) (T -1193))
-((-1359 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-1375 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-2450 (*1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))))
-(-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) 19 T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) 12 T CONST)) (-2222 (($ $ $) NIL) (($) 18 T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1376 (($ $ $) 21)) (-1360 (($ $ $) 20)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-1193 |#1|) (-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640))) (-928)) (T -1193))
+((-1360 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-1376 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-3761 (*1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))))
+(-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) @1)))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 9)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 7)))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 9)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 7)))
(((-1194) (-1109)) (T -1194))
NIL
(-1109)
-((-2669 (((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 67)) (-1654 (((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|)))) 78) (((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|))) 74) (((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186)) 79) (((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186)) 73) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|))))) 106) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|)))) 105) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186))) 107) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 104)))
-(((-1195 |#1|) (-10 -7 (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2669 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))))) (-562)) (T -1195))
-((-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-959 *5)))) (-5 *1 (-1195 *5)))) (-1654 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-298 (-413 (-959 *4)))))) (-1654 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-413 (-959 *4))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5)) (-5 *3 (-298 (-413 (-959 *5)))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5)) (-5 *3 (-413 (-959 *5))))) (-1654 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-1195 *4)) (-5 *3 (-650 (-298 (-413 (-959 *4))))))) (-1654 (*1 *2 *3) (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-1195 *4)))) (-1654 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-1195 *5)) (-5 *3 (-650 (-298 (-413 (-959 *5))))))) (-1654 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-1195 *5)))))
-(-10 -7 (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -1654 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -1654 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2669 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))))
-((-2551 (((-1168)) 7)) (-2099 (((-1168)) 11 T CONST)) (-3619 (((-1281) (-1168)) 13)) (-3426 (((-1168)) 8 T CONST)) (-1764 (((-131)) 10 T CONST)))
-(((-1196) (-13 (-1226) (-10 -7 (-15 -2551 ((-1168))) (-15 -3426 ((-1168)) -3640) (-15 -1764 ((-131)) -3640) (-15 -2099 ((-1168)) -3640) (-15 -3619 ((-1281) (-1168)))))) (T -1196))
-((-2551 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3426 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-1764 (*1 *2) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))) (-2099 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3619 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1196)))))
-(-13 (-1226) (-10 -7 (-15 -2551 ((-1168))) (-15 -3426 ((-1168)) -3640) (-15 -1764 ((-131)) -3640) (-15 -2099 ((-1168)) -3640) (-15 -3619 ((-1281) (-1168)))))
-((-2398 (((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 56)) (-2167 (((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|))) 38)) (-1963 (((-1198 (-650 |#1|)) (-650 |#1|)) 49)) (-3182 (((-650 (-650 |#1|)) (-650 |#1|)) 45)) (-3495 (((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|)))) 53)) (-2738 (((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 |#1|) (-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|)))) 52)) (-3074 (((-650 (-650 |#1|)) (-650 (-650 |#1|))) 43)) (-4260 (((-650 |#1|) (-650 |#1|)) 46)) (-4423 (((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 32)) (-3530 (((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 29)) (-1560 (((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|))) 24)) (-1785 (((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 58)) (-1896 (((-650 (-650 |#1|)) (-1198 (-650 |#1|))) 60)))
-(((-1197 |#1|) (-10 -7 (-15 -1560 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -3530 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -4423 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2398 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1785 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1896 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -2167 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -1963 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -3074 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -3182 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -4260 ((-650 |#1|) (-650 |#1|))) (-15 -2738 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 |#1|) (-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))))) (-15 -3495 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|)))))) (-856)) (T -1197))
-((-3495 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-2 (|:| |f1| (-650 *4)) (|:| |f2| (-650 (-650 (-650 *4)))) (|:| |f3| (-650 (-650 *4))) (|:| |f4| (-650 (-650 (-650 *4)))))) (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 (-650 *4)))))) (-2738 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-856)) (-5 *3 (-650 *6)) (-5 *5 (-650 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-650 *5)) (|:| |f3| *5) (|:| |f4| (-650 *5)))) (-5 *1 (-1197 *6)) (-5 *4 (-650 *5)))) (-4260 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-3182 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-3074 (*1 *2 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-1963 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-2167 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4)))) (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))) (-1896 (*1 *2 *3) (-12 (-5 *3 (-1198 (-650 *4))) (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))) (-1785 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-4 *4 (-856)))) (-2398 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-4423 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-3530 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-650 *5)) (-4 *5 (-856)) (-5 *1 (-1197 *5)))) (-1560 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-856)) (-5 *4 (-650 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-650 *4)))) (-5 *1 (-1197 *6)) (-5 *5 (-650 *4)))))
-(-10 -7 (-15 -1560 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -3530 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -4423 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2398 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1785 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1896 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -2167 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -1963 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -3074 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -3182 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -4260 ((-650 |#1|) (-650 |#1|))) (-15 -2738 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 |#1|) (-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))))) (-15 -3495 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|))))))
-((-2320 (($ (-650 (-650 |#1|))) 10)) (-3747 (((-650 (-650 |#1|)) $) 11)) (-3735 (((-868) $) 36)))
-(((-1198 |#1|) (-10 -8 (-15 -2320 ($ (-650 (-650 |#1|)))) (-15 -3747 ((-650 (-650 |#1|)) $)) (-15 -3735 ((-868) $))) (-1109)) (T -1198))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-3747 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 *3))) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-2320 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
-(-10 -8 (-15 -2320 ($ (-650 (-650 |#1|)))) (-15 -3747 ((-650 (-650 |#1|)) $)) (-15 -3735 ((-868) $)))
-((-2416 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3225 (((-1281) $ |#1| |#1|) NIL (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#2| $ |#1| |#2|) NIL)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) NIL)) (-2450 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) NIL)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) NIL)) (-2790 ((|#1| $) NIL (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-650 |#2|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4329 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2760 (((-650 |#1|) $) NIL)) (-2696 (((-112) |#1| $) NIL)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-2344 (((-650 |#1|) $) NIL)) (-1354 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL)) (-1952 (($ $ |#2|) NIL (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2271 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) NIL (-12 (|has| $ (-6 -4448)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-1859 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) NIL)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) NIL (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1199 |#1| |#2|) (-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448))) (-1109) (-1109)) (T -1199))
-NIL
-(-13 (-1202 |#1| |#2|) (-10 -7 (-6 -4448)))
-((-3045 ((|#1| (-650 |#1|)) 49)) (-2583 ((|#1| |#1| (-570)) 24)) (-3575 (((-1182 |#1|) |#1| (-928)) 20)))
-(((-1200 |#1|) (-10 -7 (-15 -3045 (|#1| (-650 |#1|))) (-15 -3575 ((-1182 |#1|) |#1| (-928))) (-15 -2583 (|#1| |#1| (-570)))) (-368)) (T -1200))
-((-2583 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1200 *2)) (-4 *2 (-368)))) (-3575 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1200 *3)) (-4 *3 (-368)))) (-3045 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1200 *2)) (-4 *2 (-368)))))
-(-10 -7 (-15 -3045 (|#1| (-650 |#1|))) (-15 -3575 ((-1182 |#1|) |#1| (-928))) (-15 -2583 (|#1| |#1| (-570))))
-((-4276 (($) 10) (($ (-650 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)))) 14)) (-2513 (($ (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) $) 67) (($ (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2836 (((-650 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) 39) (((-650 |#3|) $) 41)) (-3776 (($ (-1 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) 57) (($ (-1 |#3| |#3|) $) 33)) (-1351 (($ (-1 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-3784 (((-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) $) 60)) (-2278 (($ (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) $) 16)) (-2344 (((-650 |#2|) $) 19)) (-1354 (((-112) |#2| $) 65)) (-3321 (((-3 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) "failed") (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) 64)) (-1899 (((-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) $) 69)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 73)) (-4245 (((-650 |#3|) $) 43)) (-1876 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) NIL) (((-777) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) $) NIL) (((-777) |#3| $) NIL) (((-777) (-1 (-112) |#3|) $) 79)) (-3735 (((-868) $) 27)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 71)) (-2872 (((-112) $ $) 51)))
-(((-1201 |#1| |#2| |#3|) (-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -1351 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4276 (|#1| (-650 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))))) (-15 -4276 (|#1|)) (-15 -1351 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3486 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -2836 ((-650 |#3|) |#1|)) (-15 -3486 ((-777) |#3| |#1|)) (-15 -1876 (|#3| |#1| |#2| |#3|)) (-15 -1876 (|#3| |#1| |#2|)) (-15 -4245 ((-650 |#3|) |#1|)) (-15 -1354 ((-112) |#2| |#1|)) (-15 -2344 ((-650 |#2|) |#1|)) (-15 -2513 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2513 (|#1| (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -2513 (|#1| (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -3321 ((-3 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) "failed") (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -3784 ((-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -2278 (|#1| (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -1899 ((-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -3486 ((-777) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -2836 ((-650 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -3486 ((-777) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -1671 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -4368 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -3776 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -1351 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|))) (-1202 |#2| |#3|) (-1109) (-1109)) (T -1201))
-NIL
-(-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -1351 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4276 (|#1| (-650 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))))) (-15 -4276 (|#1|)) (-15 -1351 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4368 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1671 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3486 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -2836 ((-650 |#3|) |#1|)) (-15 -3486 ((-777) |#3| |#1|)) (-15 -1876 (|#3| |#1| |#2| |#3|)) (-15 -1876 (|#3| |#1| |#2|)) (-15 -4245 ((-650 |#3|) |#1|)) (-15 -1354 ((-112) |#2| |#1|)) (-15 -2344 ((-650 |#2|) |#1|)) (-15 -2513 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2513 (|#1| (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -2513 (|#1| (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -3321 ((-3 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) "failed") (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -3784 ((-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -2278 (|#1| (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -1899 ((-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -3486 ((-777) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) |#1|)) (-15 -2836 ((-650 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -3486 ((-777) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -1671 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -4368 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -3776 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)) (-15 -1351 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2223 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2223 |#3|))) |#1|)))
-((-2416 (((-112) $ $) 19 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-4276 (($) 73) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 72)) (-3225 (((-1281) $ |#1| |#1|) 100 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#2| $ |#1| |#2|) 74)) (-1591 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 46 (|has| $ (-6 -4448)))) (-1424 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 56 (|has| $ (-6 -4448)))) (-2361 (((-3 |#2| "failed") |#1| $) 62)) (-2450 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448))))) (-2513 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 48 (|has| $ (-6 -4448))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 47 (|has| $ (-6 -4448))) (((-3 |#2| "failed") |#1| $) 63)) (-1702 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 55 (|has| $ (-6 -4448)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 57 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 54 (|has| $ (-6 -4448))) (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 53 (|has| $ (-6 -4448)))) (-3790 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4449)))) (-3712 ((|#2| $ |#1|) 89)) (-2836 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 31 (|has| $ (-6 -4448))) (((-650 |#2|) $) 80 (|has| $ (-6 -4448)))) (-2742 (((-112) $ (-777)) 9)) (-2790 ((|#1| $) 97 (|has| |#1| (-856)))) (-2849 (((-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 30 (|has| $ (-6 -4448))) (((-650 |#2|) $) 81 (|has| $ (-6 -4448)))) (-3464 (((-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448))))) (-4329 ((|#1| $) 96 (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 35 (|has| $ (-6 -4449))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4449)))) (-1351 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71)) (-3452 (((-112) $ (-777)) 10)) (-1903 (((-1168) $) 22 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2760 (((-650 |#1|) $) 64)) (-2696 (((-112) |#1| $) 65)) (-3784 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 40)) (-2278 (($ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 41)) (-2344 (((-650 |#1|) $) 94)) (-1354 (((-112) |#1| $) 93)) (-3479 (((-1129) $) 21 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-3443 ((|#2| $) 98 (|has| |#1| (-856)))) (-3321 (((-3 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 52)) (-1952 (($ $ |#2|) 99 (|has| $ (-6 -4449)))) (-1899 (((-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 42)) (-1671 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 33 (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))))) 27 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 26 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) 25 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 24 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 87 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 85 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) 84 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4448)) (|has| |#2| (-1109))))) (-4245 (((-650 |#2|) $) 92)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90)) (-2271 (($) 50) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 49)) (-3486 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 32 (|has| $ (-6 -4448))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| $ (-6 -4448)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4448)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 60 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))))) (-3748 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 51)) (-3735 (((-868) $) 18 (-2740 (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868)))))) (-1859 (((-112) $ $) 23 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2251 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) 43)) (-4368 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) $) 34 (|has| $ (-6 -4448))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1202 |#1| |#2|) (-141) (-1109) (-1109)) (T -1202))
-((-3895 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1202 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4276 (*1 *1) (-12 (-4 *1 (-1202 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4276 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 *3) (|:| -2223 *4)))) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *1 (-1202 *3 *4)))) (-1351 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1202 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
-(-13 (-616 |t#1| |t#2|) (-610 |t#1| |t#2|) (-10 -8 (-15 -3895 (|t#2| $ |t#1| |t#2|)) (-15 -4276 ($)) (-15 -4276 ($ (-650 (-2 (|:| -2013 |t#1|) (|:| -2223 |t#2|))))) (-15 -1351 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2013 |#1|) (|:| -2223 |#2|))) . T) ((-102) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-290 |#1| |#2|) . T) ((-292 |#1| |#2|) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-495 #0#) . T) ((-495 |#2|) . T) ((-610 |#1| |#2|) . T) ((-520 #0# #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-616 |#1| |#2|) . T) ((-1109) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2223 |#2|)) (-1109))) ((-1226) . T))
-((-1999 (((-112)) 29)) (-3485 (((-1281) (-1168)) 31)) (-4253 (((-112)) 41)) (-3441 (((-1281)) 39)) (-2878 (((-1281) (-1168) (-1168)) 30)) (-2989 (((-112)) 42)) (-2278 (((-1281) |#1| |#2|) 53)) (-4136 (((-1281)) 26)) (-2985 (((-3 |#2| "failed") |#1|) 51)) (-3853 (((-1281)) 40)))
-(((-1203 |#1| |#2|) (-10 -7 (-15 -4136 ((-1281))) (-15 -2878 ((-1281) (-1168) (-1168))) (-15 -3485 ((-1281) (-1168))) (-15 -3441 ((-1281))) (-15 -3853 ((-1281))) (-15 -1999 ((-112))) (-15 -4253 ((-112))) (-15 -2989 ((-112))) (-15 -2985 ((-3 |#2| "failed") |#1|)) (-15 -2278 ((-1281) |#1| |#2|))) (-1109) (-1109)) (T -1203))
-((-2278 (*1 *2 *3 *4) (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2985 (*1 *2 *3) (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1203 *3 *2)) (-4 *3 (-1109)))) (-2989 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-4253 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-1999 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3853 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3441 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3485 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1203 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-2878 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1203 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-4136 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
-(-10 -7 (-15 -4136 ((-1281))) (-15 -2878 ((-1281) (-1168) (-1168))) (-15 -3485 ((-1281) (-1168))) (-15 -3441 ((-1281))) (-15 -3853 ((-1281))) (-15 -1999 ((-112))) (-15 -4253 ((-112))) (-15 -2989 ((-112))) (-15 -2985 ((-3 |#2| "failed") |#1|)) (-15 -2278 ((-1281) |#1| |#2|)))
-((-2494 (((-1168) (-1168)) 22)) (-4214 (((-52) (-1168)) 25)))
-(((-1204) (-10 -7 (-15 -4214 ((-52) (-1168))) (-15 -2494 ((-1168) (-1168))))) (T -1204))
-((-2494 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1204)))) (-4214 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1204)))))
-(-10 -7 (-15 -4214 ((-52) (-1168))) (-15 -2494 ((-1168) (-1168))))
-((-3735 (((-1206) |#1|) 11)))
-(((-1205 |#1|) (-10 -7 (-15 -3735 ((-1206) |#1|))) (-1109)) (T -1205))
-((-3735 (*1 *2 *3) (-12 (-5 *2 (-1206)) (-5 *1 (-1205 *3)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -3735 ((-1206) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4394 (((-650 (-1168)) $) 39)) (-2677 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-2376 (((-650 (-1168)) $ (-650 (-1168))) 41)) (-2511 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-3519 (((-650 (-1168)) $) 38)) (-4286 (($) 28)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3910 (((-650 (-1168)) $) 40)) (-4131 (((-1281) $ (-570)) 35) (((-1281) $) 36)) (-1416 (($ (-868) (-570)) 33) (($ (-868) (-570) (-868)) NIL)) (-3735 (((-868) $) 49) (($ (-868)) 32)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1206) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1416 ($ (-868) (-570))) (-15 -1416 ($ (-868) (-570) (-868))) (-15 -4131 ((-1281) $ (-570))) (-15 -4131 ((-1281) $)) (-15 -3910 ((-650 (-1168)) $)) (-15 -4394 ((-650 (-1168)) $)) (-15 -4286 ($)) (-15 -3519 ((-650 (-1168)) $)) (-15 -2511 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2677 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2376 ((-650 (-1168)) $ (-650 (-1168))))))) (T -1206))
-((-1416 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1206)))) (-1416 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1206)))) (-4131 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1206)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1206)))) (-3910 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))) (-4394 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))) (-4286 (*1 *1) (-5 *1 (-1206))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))) (-2511 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))) (-2677 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))) (-2376 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
-(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1416 ($ (-868) (-570))) (-15 -1416 ($ (-868) (-570) (-868))) (-15 -4131 ((-1281) $ (-570))) (-15 -4131 ((-1281) $)) (-15 -3910 ((-650 (-1168)) $)) (-15 -4394 ((-650 (-1168)) $)) (-15 -4286 ($)) (-15 -3519 ((-650 (-1168)) $)) (-15 -2511 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2677 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2376 ((-650 (-1168)) $ (-650 (-1168))))))
-((-2416 (((-112) $ $) NIL)) (-1541 (((-1168) $ (-1168)) 17) (((-1168) $) 16)) (-3560 (((-1168) $ (-1168)) 15)) (-2603 (($ $ (-1168)) NIL)) (-3473 (((-3 (-1168) "failed") $) 11)) (-4202 (((-1168) $) 8)) (-2065 (((-3 (-1168) "failed") $) 12)) (-2346 (((-1168) $) 9)) (-1727 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3503 (((-394) $) NIL)) (-1903 (((-1168) $) NIL)) (-2564 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4330 (((-112) $) 21)) (-3735 (((-868) $) NIL)) (-1866 (($ $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1207) (-13 (-369 (-394) (-1168)) (-10 -8 (-15 -1541 ((-1168) $ (-1168))) (-15 -1541 ((-1168) $)) (-15 -4202 ((-1168) $)) (-15 -3473 ((-3 (-1168) "failed") $)) (-15 -2065 ((-3 (-1168) "failed") $)) (-15 -4330 ((-112) $))))) (T -1207))
-((-1541 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1207)))) (-1541 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1207)))) (-4202 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1207)))) (-3473 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1207)))) (-2065 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1207)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1207)))))
-(-13 (-369 (-394) (-1168)) (-10 -8 (-15 -1541 ((-1168) $ (-1168))) (-15 -1541 ((-1168) $)) (-15 -4202 ((-1168) $)) (-15 -3473 ((-3 (-1168) "failed") $)) (-15 -2065 ((-3 (-1168) "failed") $)) (-15 -4330 ((-112) $))))
-((-3140 (((-3 (-570) "failed") |#1|) 19)) (-1869 (((-3 (-570) "failed") |#1|) 14)) (-4327 (((-570) (-1168)) 33)))
-(((-1208 |#1|) (-10 -7 (-15 -3140 ((-3 (-570) "failed") |#1|)) (-15 -1869 ((-3 (-570) "failed") |#1|)) (-15 -4327 ((-570) (-1168)))) (-1058)) (T -1208))
-((-4327 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1208 *4)) (-4 *4 (-1058)))) (-1869 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1208 *3)) (-4 *3 (-1058)))) (-3140 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1208 *3)) (-4 *3 (-1058)))))
-(-10 -7 (-15 -3140 ((-3 (-570) "failed") |#1|)) (-15 -1869 ((-3 (-570) "failed") |#1|)) (-15 -4327 ((-570) (-1168))))
-((-3780 (((-1142 (-227))) 9)))
-(((-1209) (-10 -7 (-15 -3780 ((-1142 (-227)))))) (T -1209))
-((-3780 (*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1209)))))
-(-10 -7 (-15 -3780 ((-1142 (-227)))))
-((-1314 (($) 12)) (-4138 (($ $) 36)) (-4108 (($ $) 34)) (-2647 (($ $) 26)) (-4161 (($ $) 18)) (-1509 (($ $) 16)) (-4150 (($ $) 20)) (-2681 (($ $) 31)) (-4123 (($ $) 35)) (-2660 (($ $) 30)))
-(((-1210 |#1|) (-10 -8 (-15 -1314 (|#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4161 (|#1| |#1|)) (-15 -1509 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2660 (|#1| |#1|))) (-1211)) (T -1210))
-NIL
-(-10 -8 (-15 -1314 (|#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4161 (|#1| |#1|)) (-15 -1509 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)))
-((-2735 (($ $) 26)) (-2602 (($ $) 11)) (-2712 (($ $) 27)) (-2579 (($ $) 10)) (-4087 (($ $) 28)) (-2622 (($ $) 9)) (-1314 (($) 16)) (-2635 (($ $) 19)) (-4387 (($ $) 18)) (-4099 (($ $) 29)) (-2634 (($ $) 8)) (-2746 (($ $) 30)) (-2611 (($ $) 7)) (-2723 (($ $) 31)) (-2590 (($ $) 6)) (-4138 (($ $) 20)) (-2671 (($ $) 32)) (-4108 (($ $) 21)) (-2647 (($ $) 33)) (-4161 (($ $) 22)) (-2691 (($ $) 34)) (-1509 (($ $) 23)) (-2701 (($ $) 35)) (-4150 (($ $) 24)) (-2681 (($ $) 36)) (-4123 (($ $) 25)) (-2660 (($ $) 37)) (** (($ $ $) 17)))
-(((-1211) (-141)) (T -1211))
-((-1314 (*1 *1) (-4 *1 (-1211))))
-(-13 (-1214) (-95) (-499) (-35) (-288) (-10 -8 (-15 -1314 ($))))
-(((-35) . T) ((-95) . T) ((-288) . T) ((-499) . T) ((-1214) . T))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2195 ((|#1| $) 19)) (-2283 (($ |#1| (-650 $)) 28) (($ (-650 |#1|)) 35) (($ |#1|) 30)) (-3594 (((-112) $ (-777)) 71)) (-1379 ((|#1| $ |#1|) 14 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 13 (|has| $ (-6 -4449)))) (-2450 (($) NIL T CONST)) (-2836 (((-650 |#1|) $) 75 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 63)) (-1457 (((-112) $ $) 49 (|has| |#1| (-1109)))) (-2742 (((-112) $ (-777)) 61)) (-2849 (((-650 |#1|) $) 76 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 74 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 27)) (-3452 (((-112) $ (-777)) 59)) (-2282 (((-650 |#1|) $) 54)) (-3873 (((-112) $) 52)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1671 (((-112) (-1 (-112) |#1|) $) 73 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 105)) (-3329 (((-112) $) 9)) (-3743 (($) 10)) (-1876 ((|#1| $ "value") NIL)) (-1678 (((-570) $ $) 48)) (-2132 (((-650 $) $) 87)) (-3686 (((-112) $ $) 108)) (-3123 (((-650 $) $) 103)) (-1548 (($ $) 104)) (-3150 (((-112) $) 82)) (-3486 (((-777) (-1 (-112) |#1|) $) 25 (|has| $ (-6 -4448))) (((-777) |#1| $) 17 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-3915 (($ $) 86)) (-3735 (((-868) $) 89 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 12)) (-2016 (((-112) $ $) 39 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 72 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 37 (|has| |#1| (-1109)))) (-2426 (((-777) $) 57 (|has| $ (-6 -4448)))))
-(((-1212 |#1|) (-13 (-1019 |#1|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -2283 ($ |#1| (-650 $))) (-15 -2283 ($ (-650 |#1|))) (-15 -2283 ($ |#1|)) (-15 -3150 ((-112) $)) (-15 -1548 ($ $)) (-15 -3123 ((-650 $) $)) (-15 -3686 ((-112) $ $)) (-15 -2132 ((-650 $) $)))) (-1109)) (T -1212))
-((-3150 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))) (-2283 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1212 *2))) (-5 *1 (-1212 *2)) (-4 *2 (-1109)))) (-2283 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1212 *3)))) (-2283 (*1 *1 *2) (-12 (-5 *1 (-1212 *2)) (-4 *2 (-1109)))) (-1548 (*1 *1 *1) (-12 (-5 *1 (-1212 *2)) (-4 *2 (-1109)))) (-3123 (*1 *2 *1) (-12 (-5 *2 (-650 (-1212 *3))) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))) (-3686 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))) (-2132 (*1 *2 *1) (-12 (-5 *2 (-650 (-1212 *3))) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))))
-(-13 (-1019 |#1|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -2283 ($ |#1| (-650 $))) (-15 -2283 ($ (-650 |#1|))) (-15 -2283 ($ |#1|)) (-15 -3150 ((-112) $)) (-15 -1548 ($ $)) (-15 -3123 ((-650 $) $)) (-15 -3686 ((-112) $ $)) (-15 -2132 ((-650 $) $))))
-((-2602 (($ $) 15)) (-2622 (($ $) 12)) (-2634 (($ $) 10)) (-2611 (($ $) 17)))
-(((-1213 |#1|) (-10 -8 (-15 -2611 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2602 (|#1| |#1|))) (-1214)) (T -1213))
-NIL
-(-10 -8 (-15 -2611 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2602 (|#1| |#1|)))
-((-2602 (($ $) 11)) (-2579 (($ $) 10)) (-2622 (($ $) 9)) (-2634 (($ $) 8)) (-2611 (($ $) 7)) (-2590 (($ $) 6)))
-(((-1214) (-141)) (T -1214))
-((-2602 (*1 *1 *1) (-4 *1 (-1214))) (-2579 (*1 *1 *1) (-4 *1 (-1214))) (-2622 (*1 *1 *1) (-4 *1 (-1214))) (-2634 (*1 *1 *1) (-4 *1 (-1214))) (-2611 (*1 *1 *1) (-4 *1 (-1214))) (-2590 (*1 *1 *1) (-4 *1 (-1214))))
-(-13 (-10 -8 (-15 -2590 ($ $)) (-15 -2611 ($ $)) (-15 -2634 ($ $)) (-15 -2622 ($ $)) (-15 -2579 ($ $)) (-15 -2602 ($ $))))
-((-4321 ((|#2| |#2|) 98)) (-2205 (((-112) |#2|) 29)) (-3765 ((|#2| |#2|) 33)) (-3779 ((|#2| |#2|) 35)) (-2166 ((|#2| |#2| (-1186)) 92) ((|#2| |#2|) 93)) (-2048 (((-171 |#2|) |#2|) 31)) (-3842 ((|#2| |#2| (-1186)) 94) ((|#2| |#2|) 95)))
-(((-1215 |#1| |#2|) (-10 -7 (-15 -2166 (|#2| |#2|)) (-15 -2166 (|#2| |#2| (-1186))) (-15 -3842 (|#2| |#2|)) (-15 -3842 (|#2| |#2| (-1186))) (-15 -4321 (|#2| |#2|)) (-15 -3765 (|#2| |#2|)) (-15 -3779 (|#2| |#2|)) (-15 -2205 ((-112) |#2|)) (-15 -2048 ((-171 |#2|) |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1211) (-436 |#1|))) (T -1215))
-((-2048 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-171 *3)) (-5 *1 (-1215 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))) (-2205 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112)) (-5 *1 (-1215 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))) (-3779 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))) (-3765 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))) (-4321 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))) (-3842 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))) (-3842 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))) (-2166 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))) (-2166 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))))
-(-10 -7 (-15 -2166 (|#2| |#2|)) (-15 -2166 (|#2| |#2| (-1186))) (-15 -3842 (|#2| |#2|)) (-15 -3842 (|#2| |#2| (-1186))) (-15 -4321 (|#2| |#2|)) (-15 -3765 (|#2| |#2|)) (-15 -3779 (|#2| |#2|)) (-15 -2205 ((-112) |#2|)) (-15 -2048 ((-171 |#2|) |#2|)))
-((-3770 ((|#4| |#4| |#1|) 32)) (-1626 ((|#4| |#4| |#1|) 33)))
-(((-1216 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3770 (|#4| |#4| |#1|)) (-15 -1626 (|#4| |#4| |#1|))) (-562) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1216))
-((-1626 (*1 *2 *2 *3) (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1216 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-3770 (*1 *2 *2 *3) (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1216 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
-(-10 -7 (-15 -3770 (|#4| |#4| |#1|)) (-15 -1626 (|#4| |#4| |#1|)))
-((-3304 ((|#2| |#2|) 148)) (-4204 ((|#2| |#2|) 145)) (-2717 ((|#2| |#2|) 136)) (-3031 ((|#2| |#2|) 133)) (-3018 ((|#2| |#2|) 141)) (-4242 ((|#2| |#2|) 129)) (-2804 ((|#2| |#2|) 44)) (-1854 ((|#2| |#2|) 105)) (-4230 ((|#2| |#2|) 88)) (-3358 ((|#2| |#2|) 143)) (-3652 ((|#2| |#2|) 131)) (-2749 ((|#2| |#2|) 153)) (-4063 ((|#2| |#2|) 151)) (-4349 ((|#2| |#2|) 152)) (-1694 ((|#2| |#2|) 150)) (-2917 ((|#2| |#2|) 163)) (-3545 ((|#2| |#2|) 30 (-12 (|has| |#2| (-620 (-899 |#1|))) (|has| |#2| (-893 |#1|)) (|has| |#1| (-620 (-899 |#1|))) (|has| |#1| (-893 |#1|))))) (-2787 ((|#2| |#2|) 89)) (-2947 ((|#2| |#2|) 154)) (-1387 ((|#2| |#2|) 155)) (-3847 ((|#2| |#2|) 142)) (-2347 ((|#2| |#2|) 130)) (-4301 ((|#2| |#2|) 149)) (-2595 ((|#2| |#2|) 147)) (-4386 ((|#2| |#2|) 137)) (-2245 ((|#2| |#2|) 135)) (-2052 ((|#2| |#2|) 139)) (-2865 ((|#2| |#2|) 127)))
-(((-1217 |#1| |#2|) (-10 -7 (-15 -1387 (|#2| |#2|)) (-15 -4230 (|#2| |#2|)) (-15 -2917 (|#2| |#2|)) (-15 -1854 (|#2| |#2|)) (-15 -2804 (|#2| |#2|)) (-15 -2787 (|#2| |#2|)) (-15 -2947 (|#2| |#2|)) (-15 -2865 (|#2| |#2|)) (-15 -2052 (|#2| |#2|)) (-15 -4386 (|#2| |#2|)) (-15 -4301 (|#2| |#2|)) (-15 -2347 (|#2| |#2|)) (-15 -3847 (|#2| |#2|)) (-15 -3652 (|#2| |#2|)) (-15 -3358 (|#2| |#2|)) (-15 -4242 (|#2| |#2|)) (-15 -3018 (|#2| |#2|)) (-15 -2717 (|#2| |#2|)) (-15 -3304 (|#2| |#2|)) (-15 -3031 (|#2| |#2|)) (-15 -4204 (|#2| |#2|)) (-15 -2245 (|#2| |#2|)) (-15 -2595 (|#2| |#2|)) (-15 -1694 (|#2| |#2|)) (-15 -4063 (|#2| |#2|)) (-15 -4349 (|#2| |#2|)) (-15 -2749 (|#2| |#2|)) (IF (|has| |#1| (-893 |#1|)) (IF (|has| |#1| (-620 (-899 |#1|))) (IF (|has| |#2| (-620 (-899 |#1|))) (IF (|has| |#2| (-893 |#1|)) (-15 -3545 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-458) (-13 (-436 |#1|) (-1211))) (T -1217))
-((-3545 (*1 *2 *2) (-12 (-4 *3 (-620 (-899 *3))) (-4 *3 (-893 *3)) (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-620 (-899 *3))) (-4 *2 (-893 *3)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2749 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4349 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4063 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-1694 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2595 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2245 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4204 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-3031 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-3304 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2717 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-3018 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4242 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-3358 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-3652 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-3847 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2347 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4301 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4386 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2052 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2865 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2947 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2787 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2804 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-1854 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-2917 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-4230 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))) (-1387 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2)) (-4 *2 (-13 (-436 *3) (-1211))))))
-(-10 -7 (-15 -1387 (|#2| |#2|)) (-15 -4230 (|#2| |#2|)) (-15 -2917 (|#2| |#2|)) (-15 -1854 (|#2| |#2|)) (-15 -2804 (|#2| |#2|)) (-15 -2787 (|#2| |#2|)) (-15 -2947 (|#2| |#2|)) (-15 -2865 (|#2| |#2|)) (-15 -2052 (|#2| |#2|)) (-15 -4386 (|#2| |#2|)) (-15 -4301 (|#2| |#2|)) (-15 -2347 (|#2| |#2|)) (-15 -3847 (|#2| |#2|)) (-15 -3652 (|#2| |#2|)) (-15 -3358 (|#2| |#2|)) (-15 -4242 (|#2| |#2|)) (-15 -3018 (|#2| |#2|)) (-15 -2717 (|#2| |#2|)) (-15 -3304 (|#2| |#2|)) (-15 -3031 (|#2| |#2|)) (-15 -4204 (|#2| |#2|)) (-15 -2245 (|#2| |#2|)) (-15 -2595 (|#2| |#2|)) (-15 -1694 (|#2| |#2|)) (-15 -4063 (|#2| |#2|)) (-15 -4349 (|#2| |#2|)) (-15 -2749 (|#2| |#2|)) (IF (|has| |#1| (-893 |#1|)) (IF (|has| |#1| (-620 (-899 |#1|))) (IF (|has| |#2| (-620 (-899 |#1|))) (IF (|has| |#2| (-893 |#1|)) (-15 -3545 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-2920 (((-112) |#5| $) 68) (((-112) $) 110)) (-4200 ((|#5| |#5| $) 83)) (-1424 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 127)) (-2072 (((-650 |#5|) (-650 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 81)) (-4378 (((-3 $ "failed") (-650 |#5|)) 135)) (-3455 (((-3 $ "failed") $) 120)) (-2561 ((|#5| |#5| $) 102)) (-2914 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 36)) (-1808 ((|#5| |#5| $) 106)) (-3529 ((|#5| (-1 |#5| |#5| |#5|) $ |#5| |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $ |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $) NIL) ((|#5| |#5| $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 77)) (-3169 (((-2 (|:| -4104 (-650 |#5|)) (|:| -1727 (-650 |#5|))) $) 63)) (-3911 (((-112) |#5| $) 66) (((-112) $) 111)) (-2711 ((|#4| $) 116)) (-1728 (((-3 |#5| "failed") $) 118)) (-3185 (((-650 |#5|) $) 55)) (-1329 (((-112) |#5| $) 75) (((-112) $) 115)) (-1695 ((|#5| |#5| $) 89)) (-4122 (((-112) $ $) 29)) (-3236 (((-112) |#5| $) 71) (((-112) $) 113)) (-3339 ((|#5| |#5| $) 86)) (-3443 (((-3 |#5| "failed") $) 117)) (-1558 (($ $ |#5|) 136)) (-1601 (((-777) $) 60)) (-3748 (($ (-650 |#5|)) 133)) (-4280 (($ $ |#4|) 131)) (-2185 (($ $ |#4|) 129)) (-1892 (($ $) 128)) (-3735 (((-868) $) NIL) (((-650 |#5|) $) 121)) (-1633 (((-777) $) 140)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|)) 49) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 51)) (-2844 (((-112) $ (-1 (-112) |#5| (-650 |#5|))) 108)) (-1521 (((-650 |#4|) $) 123)) (-2663 (((-112) |#4| $) 126)) (-2872 (((-112) $ $) 20)))
-(((-1218 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1633 ((-777) |#1|)) (-15 -1558 (|#1| |#1| |#5|)) (-15 -1424 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2663 ((-112) |#4| |#1|)) (-15 -1521 ((-650 |#4|) |#1|)) (-15 -3455 ((-3 |#1| "failed") |#1|)) (-15 -1728 ((-3 |#5| "failed") |#1|)) (-15 -3443 ((-3 |#5| "failed") |#1|)) (-15 -1808 (|#5| |#5| |#1|)) (-15 -1892 (|#1| |#1|)) (-15 -2561 (|#5| |#5| |#1|)) (-15 -1695 (|#5| |#5| |#1|)) (-15 -3339 (|#5| |#5| |#1|)) (-15 -4200 (|#5| |#5| |#1|)) (-15 -2072 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3529 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1329 ((-112) |#1|)) (-15 -3236 ((-112) |#1|)) (-15 -2920 ((-112) |#1|)) (-15 -2844 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -1329 ((-112) |#5| |#1|)) (-15 -3236 ((-112) |#5| |#1|)) (-15 -2920 ((-112) |#5| |#1|)) (-15 -2914 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -3911 ((-112) |#1|)) (-15 -3911 ((-112) |#5| |#1|)) (-15 -3169 ((-2 (|:| -4104 (-650 |#5|)) (|:| -1727 (-650 |#5|))) |#1|)) (-15 -1601 ((-777) |#1|)) (-15 -3185 ((-650 |#5|) |#1|)) (-15 -2659 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2659 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -4122 ((-112) |#1| |#1|)) (-15 -4280 (|#1| |#1| |#4|)) (-15 -2185 (|#1| |#1| |#4|)) (-15 -2711 (|#4| |#1|)) (-15 -4378 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3735 ((-650 |#5|) |#1|)) (-15 -3748 (|#1| (-650 |#5|))) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1424 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-1219 |#2| |#3| |#4| |#5|) (-562) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1218))
-NIL
-(-10 -8 (-15 -1633 ((-777) |#1|)) (-15 -1558 (|#1| |#1| |#5|)) (-15 -1424 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2663 ((-112) |#4| |#1|)) (-15 -1521 ((-650 |#4|) |#1|)) (-15 -3455 ((-3 |#1| "failed") |#1|)) (-15 -1728 ((-3 |#5| "failed") |#1|)) (-15 -3443 ((-3 |#5| "failed") |#1|)) (-15 -1808 (|#5| |#5| |#1|)) (-15 -1892 (|#1| |#1|)) (-15 -2561 (|#5| |#5| |#1|)) (-15 -1695 (|#5| |#5| |#1|)) (-15 -3339 (|#5| |#5| |#1|)) (-15 -4200 (|#5| |#5| |#1|)) (-15 -2072 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3529 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1329 ((-112) |#1|)) (-15 -3236 ((-112) |#1|)) (-15 -2920 ((-112) |#1|)) (-15 -2844 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -1329 ((-112) |#5| |#1|)) (-15 -3236 ((-112) |#5| |#1|)) (-15 -2920 ((-112) |#5| |#1|)) (-15 -2914 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -3911 ((-112) |#1|)) (-15 -3911 ((-112) |#5| |#1|)) (-15 -3169 ((-2 (|:| -4104 (-650 |#5|)) (|:| -1727 (-650 |#5|))) |#1|)) (-15 -1601 ((-777) |#1|)) (-15 -3185 ((-650 |#5|) |#1|)) (-15 -2659 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2659 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -4122 ((-112) |#1| |#1|)) (-15 -4280 (|#1| |#1| |#4|)) (-15 -2185 (|#1| |#1| |#4|)) (-15 -2711 (|#4| |#1|)) (-15 -4378 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3735 ((-650 |#5|) |#1|)) (-15 -3748 (|#1| (-650 |#5|))) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1424 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
-((-2416 (((-112) $ $) 7)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) 86)) (-2411 (((-650 $) (-650 |#4|)) 87)) (-1716 (((-650 |#3|) $) 34)) (-3418 (((-112) $) 27)) (-1536 (((-112) $) 18 (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) 102) (((-112) $) 98)) (-4200 ((|#4| |#4| $) 93)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) 28)) (-3594 (((-112) $ (-777)) 45)) (-1424 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) 80)) (-2450 (($) 46 T CONST)) (-3809 (((-112) $) 23 (|has| |#1| (-562)))) (-2730 (((-112) $ $) 25 (|has| |#1| (-562)))) (-1905 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2374 (((-112) $) 26 (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3742 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-2561 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1808 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) 106)) (-2836 (((-650 |#4|) $) 53 (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) 105) (((-112) $) 104)) (-2711 ((|#3| $) 35)) (-2742 (((-112) $ (-777)) 44)) (-2849 (((-650 |#4|) $) 54 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) 48)) (-3727 (((-650 |#3|) $) 33)) (-1844 (((-112) |#3| $) 32)) (-3452 (((-112) $ (-777)) 43)) (-1903 (((-1168) $) 10)) (-1728 (((-3 |#4| "failed") $) 84)) (-3185 (((-650 |#4|) $) 108)) (-1329 (((-112) |#4| $) 100) (((-112) $) 96)) (-1695 ((|#4| |#4| $) 91)) (-4122 (((-112) $ $) 111)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) 101) (((-112) $) 97)) (-3339 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3802 (((-3 $ "failed") $ |#4|) 79)) (-1558 (($ $ |#4|) 78)) (-1671 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) 39)) (-3329 (((-112) $) 42)) (-3743 (($) 41)) (-1601 (((-777) $) 107)) (-3486 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4448)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4448)))) (-3915 (($ $) 40)) (-1416 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) 61)) (-4280 (($ $ |#3|) 29)) (-2185 (($ $ |#3|) 31)) (-1892 (($ $) 89)) (-1332 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-1633 (((-777) $) 77 (|has| |#3| (-373)))) (-1859 (((-112) $ $) 9)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4368 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) 82)) (-2663 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4448)))))
-(((-1219 |#1| |#2| |#3| |#4|) (-141) (-562) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1219))
-((-4122 (*1 *2 *1 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-2659 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *8)))) (-5 *3 (-650 *8)) (-4 *1 (-1219 *5 *6 *7 *8)))) (-2659 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *9)))) (-5 *3 (-650 *9)) (-4 *1 (-1219 *6 *7 *8 *9)))) (-3185 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *6)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-777)))) (-3169 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-2 (|:| -4104 (-650 *6)) (|:| -1727 (-650 *6)))))) (-3911 (*1 *2 *3 *1) (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3911 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-2914 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1219 *5 *6 *7 *3)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)))) (-2920 (*1 *2 *3 *1) (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3236 (*1 *2 *3 *1) (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-1329 (*1 *2 *3 *1) (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-2844 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-650 *7))) (-4 *1 (-1219 *4 *5 *6 *7)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-2920 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3236 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-1329 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3529 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1219 *5 *6 *7 *2)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *2 (-1074 *5 *6 *7)))) (-2072 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1219 *5 *6 *7 *8)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)))) (-4200 (*1 *2 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-3339 (*1 *2 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1695 (*1 *2 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-2561 (*1 *2 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1892 (*1 *1 *1) (-12 (-4 *1 (-1219 *2 *3 *4 *5)) (-4 *2 (-562)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4)))) (-1808 (*1 *2 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1219 *4 *5 *6 *7)))) (-3383 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| -4104 *1) (|:| -1727 (-650 *7))))) (-5 *3 (-650 *7)) (-4 *1 (-1219 *4 *5 *6 *7)))) (-3443 (*1 *2 *1) (|partial| -12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1728 (*1 *2 *1) (|partial| -12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-3455 (*1 *1 *1) (|partial| -12 (-4 *1 (-1219 *2 *3 *4 *5)) (-4 *2 (-562)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4)))) (-1521 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))) (-2663 (*1 *2 *3 *1) (-12 (-4 *1 (-1219 *4 *5 *3 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112)))) (-1424 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1219 *4 *5 *3 *2)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *2 (-1074 *4 *5 *3)))) (-3802 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1558 (*1 *1 *1 *2) (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1633 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *5 (-373)) (-5 *2 (-777)))))
-(-13 (-985 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4448) (-6 -4449) (-15 -4122 ((-112) $ $)) (-15 -2659 ((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2659 ((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3185 ((-650 |t#4|) $)) (-15 -1601 ((-777) $)) (-15 -3169 ((-2 (|:| -4104 (-650 |t#4|)) (|:| -1727 (-650 |t#4|))) $)) (-15 -3911 ((-112) |t#4| $)) (-15 -3911 ((-112) $)) (-15 -2914 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -2920 ((-112) |t#4| $)) (-15 -3236 ((-112) |t#4| $)) (-15 -1329 ((-112) |t#4| $)) (-15 -2844 ((-112) $ (-1 (-112) |t#4| (-650 |t#4|)))) (-15 -2920 ((-112) $)) (-15 -3236 ((-112) $)) (-15 -1329 ((-112) $)) (-15 -3529 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2072 ((-650 |t#4|) (-650 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -4200 (|t#4| |t#4| $)) (-15 -3339 (|t#4| |t#4| $)) (-15 -1695 (|t#4| |t#4| $)) (-15 -2561 (|t#4| |t#4| $)) (-15 -1892 ($ $)) (-15 -1808 (|t#4| |t#4| $)) (-15 -2411 ((-650 $) (-650 |t#4|))) (-15 -3383 ((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |t#4|)))) (-650 |t#4|))) (-15 -3443 ((-3 |t#4| "failed") $)) (-15 -1728 ((-3 |t#4| "failed") $)) (-15 -3455 ((-3 $ "failed") $)) (-15 -1521 ((-650 |t#3|) $)) (-15 -2663 ((-112) |t#3| $)) (-15 -1424 ((-3 |t#4| "failed") $ |t#3|)) (-15 -3802 ((-3 $ "failed") $ |t#4|)) (-15 -1558 ($ $ |t#4|)) (IF (|has| |t#3| (-373)) (-15 -1633 ((-777) $)) |%noBranch|)))
-(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1226) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1186)) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3208 (((-959 |#1|) $ (-777)) 20) (((-959 |#1|) $ (-777) (-777)) NIL)) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-777) $ (-1186)) NIL) (((-777) $ (-1186) (-777)) NIL)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1550 (((-112) $) NIL)) (-3872 (($ $ (-650 (-1186)) (-650 (-537 (-1186)))) NIL) (($ $ (-1186) (-537 (-1186))) NIL) (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3555 (($ $ (-1186)) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-3034 (($ (-1 $) (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1558 (($ $ (-777)) NIL)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1730 (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3447 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1601 (((-537 (-1186)) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-1186)) NIL) (($ (-959 |#1|)) NIL)) (-1715 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (((-959 |#1|) $ (-777)) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2791 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1220 |#1|) (-13 (-746 |#1| (-1186)) (-10 -8 (-15 -1715 ((-959 |#1|) $ (-777))) (-15 -3735 ($ (-1186))) (-15 -3735 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $ (-1186) |#1|)) (-15 -3034 ($ (-1 $) (-1186) |#1|))) |%noBranch|))) (-1058)) (T -1220))
-((-1715 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-959 *4)) (-5 *1 (-1220 *4)) (-4 *4 (-1058)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1220 *3)) (-4 *3 (-1058)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-5 *1 (-1220 *3)))) (-3555 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *1 (-1220 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))) (-3034 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1220 *4))) (-5 *3 (-1186)) (-5 *1 (-1220 *4)) (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
-(-13 (-746 |#1| (-1186)) (-10 -8 (-15 -1715 ((-959 |#1|) $ (-777))) (-15 -3735 ($ (-1186))) (-15 -3735 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $ (-1186) |#1|)) (-15 -3034 ($ (-1 $) (-1186) |#1|))) |%noBranch|)))
-((-2217 (($ |#1| (-650 (-650 (-950 (-227)))) (-112)) 19)) (-3922 (((-112) $ (-112)) 18)) (-3432 (((-112) $) 17)) (-1404 (((-650 (-650 (-950 (-227)))) $) 13)) (-3995 ((|#1| $) 8)) (-2488 (((-112) $) 15)))
-(((-1221 |#1|) (-10 -8 (-15 -3995 (|#1| $)) (-15 -1404 ((-650 (-650 (-950 (-227)))) $)) (-15 -2488 ((-112) $)) (-15 -3432 ((-112) $)) (-15 -3922 ((-112) $ (-112))) (-15 -2217 ($ |#1| (-650 (-650 (-950 (-227)))) (-112)))) (-983)) (T -1221))
-((-2217 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-112)) (-5 *1 (-1221 *2)) (-4 *2 (-983)))) (-3922 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1221 *3)) (-4 *3 (-983)))) (-3432 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1221 *3)) (-4 *3 (-983)))) (-2488 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1221 *3)) (-4 *3 (-983)))) (-1404 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1221 *3)) (-4 *3 (-983)))) (-3995 (*1 *2 *1) (-12 (-5 *1 (-1221 *2)) (-4 *2 (-983)))))
-(-10 -8 (-15 -3995 (|#1| $)) (-15 -1404 ((-650 (-650 (-950 (-227)))) $)) (-15 -2488 ((-112) $)) (-15 -3432 ((-112) $)) (-15 -3922 ((-112) $ (-112))) (-15 -2217 ($ |#1| (-650 (-650 (-950 (-227)))) (-112))))
-((-3561 (((-950 (-227)) (-950 (-227))) 31)) (-3214 (((-950 (-227)) (-227) (-227) (-227) (-227)) 10)) (-2236 (((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227)))) 60)) (-2809 (((-227) (-950 (-227)) (-950 (-227))) 27)) (-2319 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 28)) (-2973 (((-650 (-650 (-227))) (-570)) 48)) (-2965 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 26)) (-2954 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 24)) (* (((-950 (-227)) (-227) (-950 (-227))) 22)))
-(((-1222) (-10 -7 (-15 -3214 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -2954 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2965 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2809 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -2319 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3561 ((-950 (-227)) (-950 (-227)))) (-15 -2973 ((-650 (-650 (-227))) (-570))) (-15 -2236 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))) (T -1222))
-((-2236 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-650 (-650 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 (-950 *4))) (-5 *1 (-1222)) (-5 *3 (-950 *4)))) (-2973 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1222)))) (-3561 (*1 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)))) (-2319 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)))) (-2809 (*1 *2 *3 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-227)) (-5 *1 (-1222)))) (-2965 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)))) (-2954 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-950 (-227))) (-5 *3 (-227)) (-5 *1 (-1222)))) (-3214 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)) (-5 *3 (-227)))))
-(-10 -7 (-15 -3214 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -2954 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2965 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2809 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -2319 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3561 ((-950 (-227)) (-950 (-227)))) (-15 -2973 ((-650 (-650 (-227))) (-570))) (-15 -2236 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1424 ((|#1| $ (-777)) 18)) (-3788 (((-777) $) 13)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3735 (((-965 |#1|) $) 12) (($ (-965 |#1|)) 11) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2872 (((-112) $ $) 22 (|has| |#1| (-1109)))))
-(((-1223 |#1|) (-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1424 (|#1| $ (-777))) (-15 -3788 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1226)) (T -1223))
-((-1424 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-1223 *2)) (-4 *2 (-1226)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1223 *3)) (-4 *3 (-1226)))))
-(-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1424 (|#1| $ (-777))) (-15 -3788 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
-((-1935 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)) 94)) (-3642 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 86)) (-2946 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 70)))
-(((-1224 |#1|) (-10 -7 (-15 -3642 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -2946 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -1935 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)))) (-354)) (T -1224))
-((-1935 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *5 (-354)) (-5 *2 (-424 (-1182 (-1182 *5)))) (-5 *1 (-1224 *5)) (-5 *3 (-1182 (-1182 *5))))) (-2946 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4)))) (-5 *1 (-1224 *4)) (-5 *3 (-1182 (-1182 *4))))) (-3642 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4)))) (-5 *1 (-1224 *4)) (-5 *3 (-1182 (-1182 *4))))))
-(-10 -7 (-15 -3642 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -2946 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -1935 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 9) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1225) (-1092)) (T -1225))
+((-2108 (((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 67)) (-2524 (((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|)))) 78) (((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|))) 74) (((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186)) 79) (((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186)) 73) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|))))) 106) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|)))) 105) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186))) 107) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 104)))
+(((-1195 |#1|) (-10 -7 (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2108 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))))) (-562)) (T -1195))
+((-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-959 *5)))) (-5 *1 (-1195 *5)))) (-2524 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-298 (-413 (-959 *4)))))) (-2524 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-413 (-959 *4))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5)) (-5 *3 (-298 (-413 (-959 *5)))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5)) (-5 *3 (-413 (-959 *5))))) (-2524 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-1195 *4)) (-5 *3 (-650 (-298 (-413 (-959 *4))))))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-1195 *4)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-1195 *5)) (-5 *3 (-650 (-298 (-413 (-959 *5))))))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186))) (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-1195 *5)))))
+(-10 -7 (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -2524 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -2524 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2108 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))))
+((-3459 (((-1168)) 7)) (-1410 (((-1168)) 11 T CONST)) (-3620 (((-1282) (-1168)) 13)) (-1931 (((-1168)) 8 T CONST)) (-2348 (((-131)) 10 T CONST)))
+(((-1196) (-13 (-1227) (-10 -7 (-15 -3459 ((-1168))) (-15 -1931 ((-1168)) -3640) (-15 -2348 ((-131)) -3640) (-15 -1410 ((-1168)) -3640) (-15 -3620 ((-1282) (-1168)))))) (T -1196))
+((-3459 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-1931 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-2348 (*1 *2) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))) (-1410 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3620 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1196)))))
+(-13 (-1227) (-10 -7 (-15 -3459 ((-1168))) (-15 -1931 ((-1168)) -3640) (-15 -2348 ((-131)) -3640) (-15 -1410 ((-1168)) -3640) (-15 -3620 ((-1282) (-1168)))))
+((-1431 (((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 56)) (-3973 (((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|))) 38)) (-2423 (((-1198 (-650 |#1|)) (-650 |#1|)) 49)) (-1474 (((-650 (-650 |#1|)) (-650 |#1|)) 45)) (-3496 (((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|)))) 53)) (-1553 (((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 |#1|) (-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|)))) 52)) (-2779 (((-650 (-650 |#1|)) (-650 (-650 |#1|))) 43)) (-3174 (((-650 |#1|) (-650 |#1|)) 46)) (-2282 (((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 32)) (-1614 (((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 29)) (-4129 (((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|))) 24)) (-1326 (((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 58)) (-4193 (((-650 (-650 |#1|)) (-1198 (-650 |#1|))) 60)))
+(((-1197 |#1|) (-10 -7 (-15 -4129 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -1614 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2282 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -1431 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1326 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -4193 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -3973 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -2423 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -2779 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -1474 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -3174 ((-650 |#1|) (-650 |#1|))) (-15 -1553 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 |#1|) (-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))))) (-15 -3496 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|)))))) (-856)) (T -1197))
+((-3496 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-2 (|:| |f1| (-650 *4)) (|:| |f2| (-650 (-650 (-650 *4)))) (|:| |f3| (-650 (-650 *4))) (|:| |f4| (-650 (-650 (-650 *4)))))) (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 (-650 *4)))))) (-1553 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-856)) (-5 *3 (-650 *6)) (-5 *5 (-650 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-650 *5)) (|:| |f3| *5) (|:| |f4| (-650 *5)))) (-5 *1 (-1197 *6)) (-5 *4 (-650 *5)))) (-3174 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-1474 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-2779 (*1 *2 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-2423 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-3973 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4)))) (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))) (-4193 (*1 *2 *3) (-12 (-5 *3 (-1198 (-650 *4))) (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))) (-1326 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-4 *4 (-856)))) (-1431 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-2282 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-1614 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-650 *5)) (-4 *5 (-856)) (-5 *1 (-1197 *5)))) (-4129 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-856)) (-5 *4 (-650 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-650 *4)))) (-5 *1 (-1197 *6)) (-5 *5 (-650 *4)))))
+(-10 -7 (-15 -4129 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -1614 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2282 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -1431 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1326 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -4193 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -3973 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -2423 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -2779 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -1474 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -3174 ((-650 |#1|) (-650 |#1|))) (-15 -1553 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 |#1|) (-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))) (-650 (-650 (-650 |#1|))))) (-15 -3496 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|))))))
+((-1906 (($ (-650 (-650 |#1|))) 10)) (-3037 (((-650 (-650 |#1|)) $) 11)) (-3735 (((-868) $) 36)))
+(((-1198 |#1|) (-10 -8 (-15 -1906 ($ (-650 (-650 |#1|)))) (-15 -3037 ((-650 (-650 |#1|)) $)) (-15 -3735 ((-868) $))) (-1109)) (T -1198))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-3037 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 *3))) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-1906 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
+(-10 -8 (-15 -1906 ($ (-650 (-650 |#1|)))) (-15 -3037 ((-650 (-650 |#1|)) $)) (-15 -3735 ((-868) $)))
+((-2417 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4276 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3727 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#2| $ |#1| |#2|) NIL)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) NIL)) (-3761 (($) NIL T CONST)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) NIL)) (-3888 ((|#1| $) NIL (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-2596 ((|#1| $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2761 (((-650 |#1|) $) NIL)) (-2338 (((-112) |#1| $) NIL)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2122 (((-650 |#1|) $) NIL)) (-2083 (((-112) |#1| $) NIL)) (-3479 (((-1129) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3443 ((|#2| $) NIL (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL)) (-3531 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2535 (($) NIL) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-3735 (((-868) $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3866 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) NIL)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) NIL (-2740 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1199 |#1| |#2|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449))) (-1109) (-1109)) (T -1199))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4449)))
+((-2417 (((-112) $ $) NIL)) (-3680 (($ |#1| (-55)) 10)) (-3504 ((|#1| $) 12)) (-4268 (((-1168) $) NIL)) (-4198 (((-112) $ |#1|) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-3866 (((-112) $ $) NIL)) (-4158 (((-55) $) 14)) (-2872 (((-112) $ $) NIL)))
+(((-1200 |#1|) (-13 (-841 |#1|) (-10 -8 (-15 -3680 ($ |#1| (-55))))) (-1109)) (T -1200))
+((-3680 (*1 *1 *2 *3) (-12 (-5 *3 (-55)) (-5 *1 (-1200 *2)) (-4 *2 (-1109)))))
+(-13 (-841 |#1|) (-10 -8 (-15 -3680 ($ |#1| (-55)))))
+((-2512 ((|#1| (-650 |#1|)) 49)) (-2523 ((|#1| |#1| (-570)) 24)) (-3960 (((-1182 |#1|) |#1| (-928)) 20)))
+(((-1201 |#1|) (-10 -7 (-15 -2512 (|#1| (-650 |#1|))) (-15 -3960 ((-1182 |#1|) |#1| (-928))) (-15 -2523 (|#1| |#1| (-570)))) (-368)) (T -1201))
+((-2523 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))) (-3960 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1201 *3)) (-4 *3 (-368)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
+(-10 -7 (-15 -2512 (|#1| (-650 |#1|))) (-15 -3960 ((-1182 |#1|) |#1| (-928))) (-15 -2523 (|#1| |#1| (-570))))
+((-4276 (($) 10) (($ (-650 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)))) 14)) (-3076 (($ (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) $) 67) (($ (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2835 (((-650 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) 39) (((-650 |#3|) $) 41)) (-3776 (($ (-1 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) 57) (($ (-1 |#3| |#3|) $) 33)) (-1352 (($ (-1 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2192 (((-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) $) 60)) (-2599 (($ (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) $) 16)) (-2122 (((-650 |#2|) $) 19)) (-2083 (((-112) |#2| $) 65)) (-3281 (((-3 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) "failed") (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) 64)) (-4223 (((-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) $) 69)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 73)) (-4348 (((-650 |#3|) $) 43)) (-1877 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) NIL) (((-777) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) $) NIL) (((-777) |#3| $) NIL) (((-777) (-1 (-112) |#3|) $) 79)) (-3735 (((-868) $) 27)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 71)) (-2872 (((-112) $ $) 51)))
+(((-1202 |#1| |#2| |#3|) (-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -1352 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4276 (|#1| (-650 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))))) (-15 -4276 (|#1|)) (-15 -1352 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3490 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -2835 ((-650 |#3|) |#1|)) (-15 -3490 ((-777) |#3| |#1|)) (-15 -1877 (|#3| |#1| |#2| |#3|)) (-15 -1877 (|#3| |#1| |#2|)) (-15 -4348 ((-650 |#3|) |#1|)) (-15 -2083 ((-112) |#2| |#1|)) (-15 -2122 ((-650 |#2|) |#1|)) (-15 -3076 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3076 (|#1| (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -3076 (|#1| (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -3281 ((-3 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) "failed") (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -2192 ((-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -2599 (|#1| (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -4223 ((-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -3490 ((-777) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -2835 ((-650 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -3490 ((-777) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -2697 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -2964 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -3776 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -1352 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|))) (-1203 |#2| |#3|) (-1109) (-1109)) (T -1202))
+NIL
+(-10 -8 (-15 -2872 ((-112) |#1| |#1|)) (-15 -3735 ((-868) |#1|)) (-15 -1352 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4276 (|#1| (-650 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))))) (-15 -4276 (|#1|)) (-15 -1352 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3776 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2964 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -2697 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3490 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -2835 ((-650 |#3|) |#1|)) (-15 -3490 ((-777) |#3| |#1|)) (-15 -1877 (|#3| |#1| |#2| |#3|)) (-15 -1877 (|#3| |#1| |#2|)) (-15 -4348 ((-650 |#3|) |#1|)) (-15 -2083 ((-112) |#2| |#1|)) (-15 -2122 ((-650 |#2|) |#1|)) (-15 -3076 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3076 (|#1| (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -3076 (|#1| (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -3281 ((-3 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) "failed") (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -2192 ((-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -2599 (|#1| (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -4223 ((-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -3490 ((-777) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) |#1|)) (-15 -2835 ((-650 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -3490 ((-777) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -2697 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -2964 ((-112) (-1 (-112) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -3776 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)) (-15 -1352 (|#1| (-1 (-2 (|:| -2013 |#2|) (|:| -2224 |#3|)) (-2 (|:| -2013 |#2|) (|:| -2224 |#3|))) |#1|)))
+((-2417 (((-112) $ $) 19 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-4276 (($) 73) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 72)) (-3727 (((-1282) $ |#1| |#1|) 100 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#2| $ |#1| |#2|) 74)) (-3131 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 46 (|has| $ (-6 -4449)))) (-1425 (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 56 (|has| $ (-6 -4449)))) (-2360 (((-3 |#2| "failed") |#1| $) 62)) (-3761 (($) 7 T CONST)) (-3480 (($ $) 59 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3076 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 47 (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 63)) (-1703 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 55 (|has| $ (-6 -4449)))) (-3529 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 57 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 54 (|has| $ (-6 -4449))) (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 53 (|has| $ (-6 -4449)))) (-3789 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4450)))) (-3713 ((|#2| $ |#1|) 89)) (-2835 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 31 (|has| $ (-6 -4449))) (((-650 |#2|) $) 80 (|has| $ (-6 -4449)))) (-1586 (((-112) $ (-777)) 9)) (-3888 ((|#1| $) 97 (|has| |#1| (-856)))) (-3201 (((-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 30 (|has| $ (-6 -4449))) (((-650 |#2|) $) 81 (|has| $ (-6 -4449)))) (-2218 (((-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-2596 ((|#1| $) 96 (|has| |#1| (-856)))) (-3776 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 35 (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4450)))) (-1352 (($ (-1 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71)) (-2113 (((-112) $ (-777)) 10)) (-4268 (((-1168) $) 22 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2761 (((-650 |#1|) $) 64)) (-2338 (((-112) |#1| $) 65)) (-2192 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 40)) (-2599 (($ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 41)) (-2122 (((-650 |#1|) $) 94)) (-2083 (((-112) |#1| $) 93)) (-3479 (((-1129) $) 21 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3443 ((|#2| $) 98 (|has| |#1| (-856)))) (-3281 (((-3 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) "failed") (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 52)) (-3531 (($ $ |#2|) 99 (|has| $ (-6 -4450)))) (-4223 (((-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 42)) (-2697 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 33 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))))) 27 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 26 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) 25 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 24 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)))) (($ $ (-650 |#2|) (-650 |#2|)) 87 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-298 |#2|)) 85 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109)))) (($ $ (-650 (-298 |#2|))) 84 (-12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-4348 (((-650 |#2|) $) 92)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90)) (-2535 (($) 50) (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 49)) (-3490 (((-777) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 32 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4449)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 60 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))))) (-3749 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 51)) (-3735 (((-868) $) 18 (-2740 (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868)))))) (-3866 (((-112) $ $) 23 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-3594 (($ (-650 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) 43)) (-2964 (((-112) (-1 (-112) (-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) $) 34 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (-2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1203 |#1| |#2|) (-141) (-1109) (-1109)) (T -1203))
+((-3894 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4276 (*1 *1) (-12 (-4 *1 (-1203 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4276 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2013 *3) (|:| -2224 *4)))) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *1 (-1203 *3 *4)))) (-1352 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1203 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
+(-13 (-616 |t#1| |t#2|) (-610 |t#1| |t#2|) (-10 -8 (-15 -3894 (|t#2| $ |t#1| |t#2|)) (-15 -4276 ($)) (-15 -4276 ($ (-650 (-2 (|:| -2013 |t#1|) (|:| -2224 |t#2|))))) (-15 -1352 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2013 |#1|) (|:| -2224 |#2|))) . T) ((-102) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-619 (-868)) -2740 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-290 |#1| |#2|) . T) ((-292 |#1| |#2|) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-313 |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-495 #0#) . T) ((-495 |#2|) . T) ((-610 |#1| |#2|) . T) ((-520 #0# #0#) -12 (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-313 (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)))) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-616 |#1| |#2|) . T) ((-1109) -2740 (|has| |#2| (-1109)) (|has| (-2 (|:| -2013 |#1|) (|:| -2224 |#2|)) (-1109))) ((-1227) . T))
+((-2769 (((-112)) 29)) (-2385 (((-1282) (-1168)) 31)) (-4418 (((-112)) 41)) (-2033 (((-1282)) 39)) (-3517 (((-1282) (-1168) (-1168)) 30)) (-3193 (((-112)) 42)) (-2599 (((-1282) |#1| |#2|) 53)) (-1405 (((-1282)) 26)) (-3148 (((-3 |#2| "failed") |#1|) 51)) (-1654 (((-1282)) 40)))
+(((-1204 |#1| |#2|) (-10 -7 (-15 -1405 ((-1282))) (-15 -3517 ((-1282) (-1168) (-1168))) (-15 -2385 ((-1282) (-1168))) (-15 -2033 ((-1282))) (-15 -1654 ((-1282))) (-15 -2769 ((-112))) (-15 -4418 ((-112))) (-15 -3193 ((-112))) (-15 -3148 ((-3 |#2| "failed") |#1|)) (-15 -2599 ((-1282) |#1| |#2|))) (-1109) (-1109)) (T -1204))
+((-2599 (*1 *2 *3 *4) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3148 (*1 *2 *3) (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1204 *3 *2)) (-4 *3 (-1109)))) (-3193 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-4418 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2769 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-1654 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2033 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2385 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-3517 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-1405 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
+(-10 -7 (-15 -1405 ((-1282))) (-15 -3517 ((-1282) (-1168) (-1168))) (-15 -2385 ((-1282) (-1168))) (-15 -2033 ((-1282))) (-15 -1654 ((-1282))) (-15 -2769 ((-112))) (-15 -4418 ((-112))) (-15 -3193 ((-112))) (-15 -3148 ((-3 |#2| "failed") |#1|)) (-15 -2599 ((-1282) |#1| |#2|)))
+((-4195 (((-1168) (-1168)) 22)) (-4025 (((-52) (-1168)) 25)))
+(((-1205) (-10 -7 (-15 -4025 ((-52) (-1168))) (-15 -4195 ((-1168) (-1168))))) (T -1205))
+((-4195 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1205)))) (-4025 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1205)))))
+(-10 -7 (-15 -4025 ((-52) (-1168))) (-15 -4195 ((-1168) (-1168))))
+((-3735 (((-1207) |#1|) 11)))
+(((-1206 |#1|) (-10 -7 (-15 -3735 ((-1207) |#1|))) (-1109)) (T -1206))
+((-3735 (*1 *2 *3) (-12 (-5 *2 (-1207)) (-5 *1 (-1206 *3)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -3735 ((-1207) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-4395 (((-650 (-1168)) $) 39)) (-2175 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-2394 (((-650 (-1168)) $ (-650 (-1168))) 41)) (-3055 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-1514 (((-650 (-1168)) $) 38)) (-4287 (($) 28)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4060 (((-650 (-1168)) $) 40)) (-4131 (((-1282) $ (-570)) 35) (((-1282) $) 36)) (-1417 (($ (-868) (-570)) 33) (($ (-868) (-570) (-868)) NIL)) (-3735 (((-868) $) 49) (($ (-868)) 32)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1207) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1417 ($ (-868) (-570))) (-15 -1417 ($ (-868) (-570) (-868))) (-15 -4131 ((-1282) $ (-570))) (-15 -4131 ((-1282) $)) (-15 -4060 ((-650 (-1168)) $)) (-15 -4395 ((-650 (-1168)) $)) (-15 -4287 ($)) (-15 -1514 ((-650 (-1168)) $)) (-15 -3055 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2175 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2394 ((-650 (-1168)) $ (-650 (-1168))))))) (T -1207))
+((-1417 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207)))) (-1417 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207)))) (-4131 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1207)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1207)))) (-4060 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-4395 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-4287 (*1 *1) (-5 *1 (-1207))) (-1514 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-3055 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-2175 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-2394 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1417 ($ (-868) (-570))) (-15 -1417 ($ (-868) (-570) (-868))) (-15 -4131 ((-1282) $ (-570))) (-15 -4131 ((-1282) $)) (-15 -4060 ((-650 (-1168)) $)) (-15 -4395 ((-650 (-1168)) $)) (-15 -4287 ($)) (-15 -1514 ((-650 (-1168)) $)) (-15 -3055 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2175 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2394 ((-650 (-1168)) $ (-650 (-1168))))))
+((-2417 (((-112) $ $) NIL)) (-3930 (((-1168) $ (-1168)) 17) (((-1168) $) 16)) (-3784 (((-1168) $ (-1168)) 15)) (-2695 (($ $ (-1168)) NIL)) (-2296 (((-3 (-1168) "failed") $) 11)) (-3896 (((-1168) $) 8)) (-2260 (((-3 (-1168) "failed") $) 12)) (-2140 (((-1168) $) 9)) (-1726 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3504 (((-394) $) NIL)) (-4268 (((-1168) $) NIL)) (-3600 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2607 (((-112) $) 21)) (-3735 (((-868) $) NIL)) (-3924 (($ $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1208) (-13 (-369 (-394) (-1168)) (-10 -8 (-15 -3930 ((-1168) $ (-1168))) (-15 -3930 ((-1168) $)) (-15 -3896 ((-1168) $)) (-15 -2296 ((-3 (-1168) "failed") $)) (-15 -2260 ((-3 (-1168) "failed") $)) (-15 -2607 ((-112) $))))) (T -1208))
+((-3930 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-3930 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-3896 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-2296 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-2260 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-2607 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1208)))))
+(-13 (-369 (-394) (-1168)) (-10 -8 (-15 -3930 ((-1168) $ (-1168))) (-15 -3930 ((-1168) $)) (-15 -3896 ((-1168) $)) (-15 -2296 ((-3 (-1168) "failed") $)) (-15 -2260 ((-3 (-1168) "failed") $)) (-15 -2607 ((-112) $))))
+((-2249 (((-3 (-570) "failed") |#1|) 19)) (-3957 (((-3 (-570) "failed") |#1|) 14)) (-2575 (((-570) (-1168)) 33)))
+(((-1209 |#1|) (-10 -7 (-15 -2249 ((-3 (-570) "failed") |#1|)) (-15 -3957 ((-3 (-570) "failed") |#1|)) (-15 -2575 ((-570) (-1168)))) (-1058)) (T -1209))
+((-2575 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1209 *4)) (-4 *4 (-1058)))) (-3957 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))) (-2249 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
+(-10 -7 (-15 -2249 ((-3 (-570) "failed") |#1|)) (-15 -3957 ((-3 (-570) "failed") |#1|)) (-15 -2575 ((-570) (-1168))))
+((-2156 (((-1142 (-227))) 9)))
+(((-1210) (-10 -7 (-15 -2156 ((-1142 (-227)))))) (T -1210))
+((-2156 (*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1210)))))
+(-10 -7 (-15 -2156 ((-1142 (-227)))))
+((-1315 (($) 12)) (-4137 (($ $) 36)) (-4112 (($ $) 34)) (-2647 (($ $) 26)) (-4157 (($ $) 18)) (-1510 (($ $) 16)) (-4150 (($ $) 20)) (-2681 (($ $) 31)) (-4123 (($ $) 35)) (-2660 (($ $) 30)))
+(((-1211 |#1|) (-10 -8 (-15 -1315 (|#1|)) (-15 -4137 (|#1| |#1|)) (-15 -4112 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2660 (|#1| |#1|))) (-1212)) (T -1211))
+NIL
+(-10 -8 (-15 -1315 (|#1|)) (-15 -4137 (|#1| |#1|)) (-15 -4112 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)))
+((-2735 (($ $) 26)) (-2602 (($ $) 11)) (-2712 (($ $) 27)) (-2579 (($ $) 10)) (-4087 (($ $) 28)) (-2622 (($ $) 9)) (-1315 (($) 16)) (-2635 (($ $) 19)) (-4388 (($ $) 18)) (-4098 (($ $) 29)) (-2634 (($ $) 8)) (-2746 (($ $) 30)) (-2612 (($ $) 7)) (-2723 (($ $) 31)) (-2590 (($ $) 6)) (-4137 (($ $) 20)) (-2671 (($ $) 32)) (-4112 (($ $) 21)) (-2647 (($ $) 33)) (-4157 (($ $) 22)) (-2691 (($ $) 34)) (-1510 (($ $) 23)) (-2701 (($ $) 35)) (-4150 (($ $) 24)) (-2681 (($ $) 36)) (-4123 (($ $) 25)) (-2660 (($ $) 37)) (** (($ $ $) 17)))
+(((-1212) (-141)) (T -1212))
+((-1315 (*1 *1) (-4 *1 (-1212))))
+(-13 (-1215) (-95) (-499) (-35) (-288) (-10 -8 (-15 -1315 ($))))
+(((-35) . T) ((-95) . T) ((-288) . T) ((-499) . T) ((-1215) . T))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2196 ((|#1| $) 19)) (-2284 (($ |#1| (-650 $)) 28) (($ (-650 |#1|)) 35) (($ |#1|) 30)) (-4095 (((-112) $ (-777)) 71)) (-3708 ((|#1| $ |#1|) 14 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 13 (|has| $ (-6 -4450)))) (-3761 (($) NIL T CONST)) (-2835 (((-650 |#1|) $) 75 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 63)) (-4329 (((-112) $ $) 49 (|has| |#1| (-1109)))) (-1586 (((-112) $ (-777)) 61)) (-3201 (((-650 |#1|) $) 76 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 74 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3776 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 27)) (-2113 (((-112) $ (-777)) 59)) (-2283 (((-650 |#1|) $) 54)) (-1859 (((-112) $) 52)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2697 (((-112) (-1 (-112) |#1|) $) 73 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 105)) (-3366 (((-112) $) 9)) (-3006 (($) 10)) (-1877 ((|#1| $ "value") NIL)) (-2763 (((-570) $ $) 48)) (-1772 (((-650 $) $) 87)) (-2504 (((-112) $ $) 108)) (-2097 (((-650 $) $) 103)) (-3994 (($ $) 104)) (-2345 (((-112) $) 82)) (-3490 (((-777) (-1 (-112) |#1|) $) 25 (|has| $ (-6 -4449))) (((-777) |#1| $) 17 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3916 (($ $) 86)) (-3735 (((-868) $) 89 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 12)) (-2931 (((-112) $ $) 39 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 72 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 37 (|has| |#1| (-1109)))) (-2426 (((-777) $) 57 (|has| $ (-6 -4449)))))
+(((-1213 |#1|) (-13 (-1019 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -2284 ($ |#1| (-650 $))) (-15 -2284 ($ (-650 |#1|))) (-15 -2284 ($ |#1|)) (-15 -2345 ((-112) $)) (-15 -3994 ($ $)) (-15 -2097 ((-650 $) $)) (-15 -2504 ((-112) $ $)) (-15 -1772 ((-650 $) $)))) (-1109)) (T -1213))
+((-2345 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-2284 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1213 *2))) (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-2284 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1213 *3)))) (-2284 (*1 *1 *2) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-3994 (*1 *1 *1) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-2097 (*1 *2 *1) (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-2504 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-1772 (*1 *2 *1) (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+(-13 (-1019 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -2284 ($ |#1| (-650 $))) (-15 -2284 ($ (-650 |#1|))) (-15 -2284 ($ |#1|)) (-15 -2345 ((-112) $)) (-15 -3994 ($ $)) (-15 -2097 ((-650 $) $)) (-15 -2504 ((-112) $ $)) (-15 -1772 ((-650 $) $))))
+((-2602 (($ $) 15)) (-2622 (($ $) 12)) (-2634 (($ $) 10)) (-2612 (($ $) 17)))
+(((-1214 |#1|) (-10 -8 (-15 -2612 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2602 (|#1| |#1|))) (-1215)) (T -1214))
+NIL
+(-10 -8 (-15 -2612 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2602 (|#1| |#1|)))
+((-2602 (($ $) 11)) (-2579 (($ $) 10)) (-2622 (($ $) 9)) (-2634 (($ $) 8)) (-2612 (($ $) 7)) (-2590 (($ $) 6)))
+(((-1215) (-141)) (T -1215))
+((-2602 (*1 *1 *1) (-4 *1 (-1215))) (-2579 (*1 *1 *1) (-4 *1 (-1215))) (-2622 (*1 *1 *1) (-4 *1 (-1215))) (-2634 (*1 *1 *1) (-4 *1 (-1215))) (-2612 (*1 *1 *1) (-4 *1 (-1215))) (-2590 (*1 *1 *1) (-4 *1 (-1215))))
+(-13 (-10 -8 (-15 -2590 ($ $)) (-15 -2612 ($ $)) (-15 -2634 ($ $)) (-15 -2622 ($ $)) (-15 -2579 ($ $)) (-15 -2602 ($ $))))
+((-3790 ((|#2| |#2|) 98)) (-3060 (((-112) |#2|) 29)) (-3766 ((|#2| |#2|) 33)) (-3779 ((|#2| |#2|) 35)) (-3964 ((|#2| |#2| (-1186)) 92) ((|#2| |#2|) 93)) (-2116 (((-171 |#2|) |#2|) 31)) (-1542 ((|#2| |#2| (-1186)) 94) ((|#2| |#2|) 95)))
+(((-1216 |#1| |#2|) (-10 -7 (-15 -3964 (|#2| |#2|)) (-15 -3964 (|#2| |#2| (-1186))) (-15 -1542 (|#2| |#2|)) (-15 -1542 (|#2| |#2| (-1186))) (-15 -3790 (|#2| |#2|)) (-15 -3766 (|#2| |#2|)) (-15 -3779 (|#2| |#2|)) (-15 -3060 ((-112) |#2|)) (-15 -2116 ((-171 |#2|) |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -1216))
+((-2116 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-171 *3)) (-5 *1 (-1216 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))) (-3060 (*1 *2 *3) (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112)) (-5 *1 (-1216 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))) (-3779 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3766 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3790 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-1542 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))) (-1542 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3964 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))) (-3964 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))))
+(-10 -7 (-15 -3964 (|#2| |#2|)) (-15 -3964 (|#2| |#2| (-1186))) (-15 -1542 (|#2| |#2|)) (-15 -1542 (|#2| |#2| (-1186))) (-15 -3790 (|#2| |#2|)) (-15 -3766 (|#2| |#2|)) (-15 -3779 (|#2| |#2|)) (-15 -3060 ((-112) |#2|)) (-15 -2116 ((-171 |#2|) |#2|)))
+((-2077 ((|#4| |#4| |#1|) 32)) (-3513 ((|#4| |#4| |#1|) 33)))
+(((-1217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2077 (|#4| |#4| |#1|)) (-15 -3513 (|#4| |#4| |#1|))) (-562) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1217))
+((-3513 (*1 *2 *2 *3) (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1217 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))) (-2077 (*1 *2 *2 *3) (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *1 (-1217 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(-10 -7 (-15 -2077 (|#4| |#4| |#1|)) (-15 -3513 (|#4| |#4| |#1|)))
+((-3123 ((|#2| |#2|) 148)) (-3917 ((|#2| |#2|) 145)) (-1335 ((|#2| |#2|) 136)) (-2404 ((|#2| |#2|) 133)) (-3507 ((|#2| |#2|) 141)) (-4318 ((|#2| |#2|) 129)) (-4030 ((|#2| |#2|) 44)) (-3820 ((|#2| |#2|) 105)) (-4196 ((|#2| |#2|) 88)) (-2438 ((|#2| |#2|) 143)) (-3419 ((|#2| |#2|) 131)) (-1655 ((|#2| |#2|) 153)) (-1977 ((|#2| |#2|) 151)) (-2803 ((|#2| |#2|) 152)) (-2926 ((|#2| |#2|) 150)) (-3786 ((|#2| |#2|) 163)) (-1791 ((|#2| |#2|) 30 (-12 (|has| |#2| (-620 (-899 |#1|))) (|has| |#2| (-893 |#1|)) (|has| |#1| (-620 (-899 |#1|))) (|has| |#1| (-893 |#1|))))) (-3853 ((|#2| |#2|) 89)) (-4110 ((|#2| |#2|) 154)) (-1388 ((|#2| |#2|) 155)) (-1585 ((|#2| |#2|) 142)) (-2151 ((|#2| |#2|) 130)) (-3602 ((|#2| |#2|) 149)) (-2628 ((|#2| |#2|) 147)) (-2010 ((|#2| |#2|) 137)) (-3528 ((|#2| |#2|) 135)) (-2144 ((|#2| |#2|) 139)) (-3380 ((|#2| |#2|) 127)))
+(((-1218 |#1| |#2|) (-10 -7 (-15 -1388 (|#2| |#2|)) (-15 -4196 (|#2| |#2|)) (-15 -3786 (|#2| |#2|)) (-15 -3820 (|#2| |#2|)) (-15 -4030 (|#2| |#2|)) (-15 -3853 (|#2| |#2|)) (-15 -4110 (|#2| |#2|)) (-15 -3380 (|#2| |#2|)) (-15 -2144 (|#2| |#2|)) (-15 -2010 (|#2| |#2|)) (-15 -3602 (|#2| |#2|)) (-15 -2151 (|#2| |#2|)) (-15 -1585 (|#2| |#2|)) (-15 -3419 (|#2| |#2|)) (-15 -2438 (|#2| |#2|)) (-15 -4318 (|#2| |#2|)) (-15 -3507 (|#2| |#2|)) (-15 -1335 (|#2| |#2|)) (-15 -3123 (|#2| |#2|)) (-15 -2404 (|#2| |#2|)) (-15 -3917 (|#2| |#2|)) (-15 -3528 (|#2| |#2|)) (-15 -2628 (|#2| |#2|)) (-15 -2926 (|#2| |#2|)) (-15 -1977 (|#2| |#2|)) (-15 -2803 (|#2| |#2|)) (-15 -1655 (|#2| |#2|)) (IF (|has| |#1| (-893 |#1|)) (IF (|has| |#1| (-620 (-899 |#1|))) (IF (|has| |#2| (-620 (-899 |#1|))) (IF (|has| |#2| (-893 |#1|)) (-15 -1791 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-458) (-13 (-436 |#1|) (-1212))) (T -1218))
+((-1791 (*1 *2 *2) (-12 (-4 *3 (-620 (-899 *3))) (-4 *3 (-893 *3)) (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-620 (-899 *3))) (-4 *2 (-893 *3)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1655 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2803 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1977 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2926 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2628 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3528 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3917 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2404 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3123 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1335 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3507 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4318 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2438 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3419 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1585 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2151 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3602 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2010 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2144 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3380 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4110 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3853 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4030 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3820 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3786 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4196 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1388 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))))
+(-10 -7 (-15 -1388 (|#2| |#2|)) (-15 -4196 (|#2| |#2|)) (-15 -3786 (|#2| |#2|)) (-15 -3820 (|#2| |#2|)) (-15 -4030 (|#2| |#2|)) (-15 -3853 (|#2| |#2|)) (-15 -4110 (|#2| |#2|)) (-15 -3380 (|#2| |#2|)) (-15 -2144 (|#2| |#2|)) (-15 -2010 (|#2| |#2|)) (-15 -3602 (|#2| |#2|)) (-15 -2151 (|#2| |#2|)) (-15 -1585 (|#2| |#2|)) (-15 -3419 (|#2| |#2|)) (-15 -2438 (|#2| |#2|)) (-15 -4318 (|#2| |#2|)) (-15 -3507 (|#2| |#2|)) (-15 -1335 (|#2| |#2|)) (-15 -3123 (|#2| |#2|)) (-15 -2404 (|#2| |#2|)) (-15 -3917 (|#2| |#2|)) (-15 -3528 (|#2| |#2|)) (-15 -2628 (|#2| |#2|)) (-15 -2926 (|#2| |#2|)) (-15 -1977 (|#2| |#2|)) (-15 -2803 (|#2| |#2|)) (-15 -1655 (|#2| |#2|)) (IF (|has| |#1| (-893 |#1|)) (IF (|has| |#1| (-620 (-899 |#1|))) (IF (|has| |#2| (-620 (-899 |#1|))) (IF (|has| |#2| (-893 |#1|)) (-15 -1791 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-3821 (((-112) |#5| $) 68) (((-112) $) 110)) (-3870 ((|#5| |#5| $) 83)) (-1425 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 127)) (-2327 (((-650 |#5|) (-650 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 81)) (-4379 (((-3 $ "failed") (-650 |#5|)) 135)) (-3455 (((-3 $ "failed") $) 120)) (-3565 ((|#5| |#5| $) 102)) (-3747 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 36)) (-1544 ((|#5| |#5| $) 106)) (-3529 ((|#5| (-1 |#5| |#5| |#5|) $ |#5| |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $ |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $) NIL) ((|#5| |#5| $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 77)) (-1322 (((-2 (|:| -4104 (-650 |#5|)) (|:| -1726 (-650 |#5|))) $) 63)) (-4071 (((-112) |#5| $) 66) (((-112) $) 111)) (-2451 ((|#4| $) 116)) (-1729 (((-3 |#5| "failed") $) 118)) (-1507 (((-650 |#5|) $) 55)) (-1810 (((-112) |#5| $) 75) (((-112) $) 115)) (-1831 ((|#5| |#5| $) 89)) (-2458 (((-112) $ $) 29)) (-3851 (((-112) |#5| $) 71) (((-112) $) 113)) (-3464 ((|#5| |#5| $) 86)) (-3443 (((-3 |#5| "failed") $) 117)) (-4102 (($ $ |#5|) 136)) (-3221 (((-777) $) 60)) (-3749 (($ (-650 |#5|)) 133)) (-3408 (($ $ |#4|) 131)) (-4164 (($ $ |#4|) 129)) (-4148 (($ $) 128)) (-3735 (((-868) $) NIL) (((-650 |#5|) $) 121)) (-3580 (((-777) $) 140)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|)) 49) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 51)) (-3146 (((-112) $ (-1 (-112) |#5| (-650 |#5|))) 108)) (-3690 (((-650 |#4|) $) 123)) (-2048 (((-112) |#4| $) 126)) (-2872 (((-112) $ $) 20)))
+(((-1219 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3580 ((-777) |#1|)) (-15 -4102 (|#1| |#1| |#5|)) (-15 -1425 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2048 ((-112) |#4| |#1|)) (-15 -3690 ((-650 |#4|) |#1|)) (-15 -3455 ((-3 |#1| "failed") |#1|)) (-15 -1729 ((-3 |#5| "failed") |#1|)) (-15 -3443 ((-3 |#5| "failed") |#1|)) (-15 -1544 (|#5| |#5| |#1|)) (-15 -4148 (|#1| |#1|)) (-15 -3565 (|#5| |#5| |#1|)) (-15 -1831 (|#5| |#5| |#1|)) (-15 -3464 (|#5| |#5| |#1|)) (-15 -3870 (|#5| |#5| |#1|)) (-15 -2327 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3529 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1810 ((-112) |#1|)) (-15 -3851 ((-112) |#1|)) (-15 -3821 ((-112) |#1|)) (-15 -3146 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -1810 ((-112) |#5| |#1|)) (-15 -3851 ((-112) |#5| |#1|)) (-15 -3821 ((-112) |#5| |#1|)) (-15 -3747 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -4071 ((-112) |#1|)) (-15 -4071 ((-112) |#5| |#1|)) (-15 -1322 ((-2 (|:| -4104 (-650 |#5|)) (|:| -1726 (-650 |#5|))) |#1|)) (-15 -3221 ((-777) |#1|)) (-15 -1507 ((-650 |#5|) |#1|)) (-15 -2028 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2028 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2458 ((-112) |#1| |#1|)) (-15 -3408 (|#1| |#1| |#4|)) (-15 -4164 (|#1| |#1| |#4|)) (-15 -2451 (|#4| |#1|)) (-15 -4379 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3735 ((-650 |#5|) |#1|)) (-15 -3749 (|#1| (-650 |#5|))) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1425 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|))) (-1220 |#2| |#3| |#4| |#5|) (-562) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1219))
+NIL
+(-10 -8 (-15 -3580 ((-777) |#1|)) (-15 -4102 (|#1| |#1| |#5|)) (-15 -1425 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2048 ((-112) |#4| |#1|)) (-15 -3690 ((-650 |#4|) |#1|)) (-15 -3455 ((-3 |#1| "failed") |#1|)) (-15 -1729 ((-3 |#5| "failed") |#1|)) (-15 -3443 ((-3 |#5| "failed") |#1|)) (-15 -1544 (|#5| |#5| |#1|)) (-15 -4148 (|#1| |#1|)) (-15 -3565 (|#5| |#5| |#1|)) (-15 -1831 (|#5| |#5| |#1|)) (-15 -3464 (|#5| |#5| |#1|)) (-15 -3870 (|#5| |#5| |#1|)) (-15 -2327 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3529 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1810 ((-112) |#1|)) (-15 -3851 ((-112) |#1|)) (-15 -3821 ((-112) |#1|)) (-15 -3146 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -1810 ((-112) |#5| |#1|)) (-15 -3851 ((-112) |#5| |#1|)) (-15 -3821 ((-112) |#5| |#1|)) (-15 -3747 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -4071 ((-112) |#1|)) (-15 -4071 ((-112) |#5| |#1|)) (-15 -1322 ((-2 (|:| -4104 (-650 |#5|)) (|:| -1726 (-650 |#5|))) |#1|)) (-15 -3221 ((-777) |#1|)) (-15 -1507 ((-650 |#5|) |#1|)) (-15 -2028 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2028 ((-3 (-2 (|:| |bas| |#1|) (|:| -3240 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2458 ((-112) |#1| |#1|)) (-15 -3408 (|#1| |#1| |#4|)) (-15 -4164 (|#1| |#1| |#4|)) (-15 -2451 (|#4| |#1|)) (-15 -4379 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3735 ((-650 |#5|) |#1|)) (-15 -3749 (|#1| (-650 |#5|))) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1425 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3529 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3735 ((-868) |#1|)) (-15 -2872 ((-112) |#1| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) 86)) (-1556 (((-650 $) (-650 |#4|)) 87)) (-1713 (((-650 |#3|) $) 34)) (-2977 (((-112) $) 27)) (-3873 (((-112) $) 18 (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) 102) (((-112) $) 98)) (-3870 ((|#4| |#4| $) 93)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) 28)) (-4095 (((-112) $ (-777)) 45)) (-1425 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-3761 (($) 46 T CONST)) (-2391 (((-112) $) 23 (|has| |#1| (-562)))) (-1475 (((-112) $ $) 25 (|has| |#1| (-562)))) (-2993 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2376 (((-112) $) 26 (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2996 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) 37)) (-3080 (($ (-650 |#4|)) 36)) (-3455 (((-3 $ "failed") $) 83)) (-3565 ((|#4| |#4| $) 90)) (-3480 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) 106)) (-2835 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) 105) (((-112) $) 104)) (-2451 ((|#3| $) 35)) (-1586 (((-112) $ (-777)) 44)) (-3201 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) 48)) (-2881 (((-650 |#3|) $) 33)) (-3710 (((-112) |#3| $) 32)) (-2113 (((-112) $ (-777)) 43)) (-4268 (((-1168) $) 10)) (-1729 (((-3 |#4| "failed") $) 84)) (-1507 (((-650 |#4|) $) 108)) (-1810 (((-112) |#4| $) 100) (((-112) $) 96)) (-1831 ((|#4| |#4| $) 91)) (-2458 (((-112) $ $) 111)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) 101) (((-112) $) 97)) (-3464 ((|#4| |#4| $) 92)) (-3479 (((-1129) $) 11)) (-3443 (((-3 |#4| "failed") $) 85)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2329 (((-3 $ "failed") $ |#4|) 79)) (-4102 (($ $ |#4|) 78)) (-2697 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) 60 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) 58 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) 57 (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) 39)) (-3366 (((-112) $) 42)) (-3006 (($) 41)) (-3221 (((-777) $) 107)) (-3490 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3916 (($ $) 40)) (-1417 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) 61)) (-3408 (($ $ |#3|) 29)) (-4164 (($ $ |#3|) 31)) (-4148 (($ $) 89)) (-1842 (($ $ |#3|) 30)) (-3735 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3580 (((-777) $) 77 (|has| |#3| (-373)))) (-3866 (((-112) $ $) 9)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2964 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) 82)) (-2048 (((-112) |#3| $) 81)) (-2872 (((-112) $ $) 6)) (-2426 (((-777) $) 47 (|has| $ (-6 -4449)))))
+(((-1220 |#1| |#2| |#3| |#4|) (-141) (-562) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1220))
+((-2458 (*1 *2 *1 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-2028 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *8)))) (-5 *3 (-650 *8)) (-4 *1 (-1220 *5 *6 *7 *8)))) (-2028 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *9)))) (-5 *3 (-650 *9)) (-4 *1 (-1220 *6 *7 *8 *9)))) (-1507 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *6)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-777)))) (-1322 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-2 (|:| -4104 (-650 *6)) (|:| -1726 (-650 *6)))))) (-4071 (*1 *2 *3 *1) (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-4071 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3747 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1220 *5 *6 *7 *3)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)))) (-3821 (*1 *2 *3 *1) (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3851 (*1 *2 *3 *1) (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-1810 (*1 *2 *3 *1) (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3146 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-650 *7))) (-4 *1 (-1220 *4 *5 *6 *7)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)))) (-3821 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3851 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-1810 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))) (-3529 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1220 *5 *6 *7 *2)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *2 (-1074 *5 *6 *7)))) (-2327 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1220 *5 *6 *7 *8)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)))) (-3870 (*1 *2 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-3464 (*1 *2 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1831 (*1 *2 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-3565 (*1 *2 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-4148 (*1 *1 *1) (-12 (-4 *1 (-1220 *2 *3 *4 *5)) (-4 *2 (-562)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4)))) (-1544 (*1 *2 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1556 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1220 *4 *5 *6 *7)))) (-2658 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| -4104 *1) (|:| -1726 (-650 *7))))) (-5 *3 (-650 *7)) (-4 *1 (-1220 *4 *5 *6 *7)))) (-3443 (*1 *2 *1) (|partial| -12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-1729 (*1 *2 *1) (|partial| -12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-3455 (*1 *1 *1) (|partial| -12 (-4 *1 (-1220 *2 *3 *4 *5)) (-4 *2 (-562)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4)))) (-3690 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))) (-2048 (*1 *2 *3 *1) (-12 (-4 *1 (-1220 *4 *5 *3 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112)))) (-1425 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1220 *4 *5 *3 *2)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *3 (-856)) (-4 *2 (-1074 *4 *5 *3)))) (-2329 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-4102 (*1 *1 *1 *2) (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))) (-3580 (*1 *2 *1) (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *5 (-373)) (-5 *2 (-777)))))
+(-13 (-985 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -2458 ((-112) $ $)) (-15 -2028 ((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2028 ((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1507 ((-650 |t#4|) $)) (-15 -3221 ((-777) $)) (-15 -1322 ((-2 (|:| -4104 (-650 |t#4|)) (|:| -1726 (-650 |t#4|))) $)) (-15 -4071 ((-112) |t#4| $)) (-15 -4071 ((-112) $)) (-15 -3747 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -3821 ((-112) |t#4| $)) (-15 -3851 ((-112) |t#4| $)) (-15 -1810 ((-112) |t#4| $)) (-15 -3146 ((-112) $ (-1 (-112) |t#4| (-650 |t#4|)))) (-15 -3821 ((-112) $)) (-15 -3851 ((-112) $)) (-15 -1810 ((-112) $)) (-15 -3529 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2327 ((-650 |t#4|) (-650 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3870 (|t#4| |t#4| $)) (-15 -3464 (|t#4| |t#4| $)) (-15 -1831 (|t#4| |t#4| $)) (-15 -3565 (|t#4| |t#4| $)) (-15 -4148 ($ $)) (-15 -1544 (|t#4| |t#4| $)) (-15 -1556 ((-650 $) (-650 |t#4|))) (-15 -2658 ((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |t#4|)))) (-650 |t#4|))) (-15 -3443 ((-3 |t#4| "failed") $)) (-15 -1729 ((-3 |t#4| "failed") $)) (-15 -3455 ((-3 $ "failed") $)) (-15 -3690 ((-650 |t#3|) $)) (-15 -2048 ((-112) |t#3| $)) (-15 -1425 ((-3 |t#4| "failed") $ |t#3|)) (-15 -2329 ((-3 $ "failed") $ |t#4|)) (-15 -4102 ($ $ |t#4|)) (IF (|has| |t#3| (-373)) (-15 -3580 ((-777) $)) |%noBranch|)))
+(((-34) . T) ((-102) . T) ((-619 (-650 |#4|)) . T) ((-619 (-868)) . T) ((-152 |#4|) . T) ((-620 (-542)) |has| |#4| (-620 (-542))) ((-313 |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-495 |#4|) . T) ((-520 |#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))) ((-985 |#1| |#2| |#3| |#4|) . T) ((-1109) . T) ((-1227) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1186)) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-3208 (((-959 |#1|) $ (-777)) 20) (((-959 |#1|) $ (-777) (-777)) NIL)) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-777) $ (-1186)) NIL) (((-777) $ (-1186) (-777)) NIL)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4016 (((-112) $) NIL)) (-3872 (($ $ (-650 (-1186)) (-650 (-537 (-1186)))) NIL) (($ $ (-1186) (-537 (-1186))) NIL) (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3722 (($ $ (-1186)) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-2432 (($ (-1 $) (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4102 (($ $ (-777)) NIL)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1731 (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3447 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3221 (((-537 (-1186)) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-1186)) NIL) (($ (-959 |#1|)) NIL)) (-1983 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (((-959 |#1|) $ (-777)) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2791 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1221 |#1|) (-13 (-746 |#1| (-1186)) (-10 -8 (-15 -1983 ((-959 |#1|) $ (-777))) (-15 -3735 ($ (-1186))) (-15 -3735 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $ (-1186) |#1|)) (-15 -2432 ($ (-1 $) (-1186) |#1|))) |%noBranch|))) (-1058)) (T -1221))
+((-1983 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-959 *4)) (-5 *1 (-1221 *4)) (-4 *4 (-1058)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-1058)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-5 *1 (-1221 *3)))) (-3722 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))) (-2432 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1221 *4))) (-5 *3 (-1186)) (-5 *1 (-1221 *4)) (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
+(-13 (-746 |#1| (-1186)) (-10 -8 (-15 -1983 ((-959 |#1|) $ (-777))) (-15 -3735 ($ (-1186))) (-15 -3735 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $ (-1186) |#1|)) (-15 -2432 ($ (-1 $) (-1186) |#1|))) |%noBranch|)))
+((-3188 (($ |#1| (-650 (-650 (-950 (-227)))) (-112)) 19)) (-4189 (((-112) $ (-112)) 18)) (-1967 (((-112) $) 17)) (-1447 (((-650 (-650 (-950 (-227)))) $) 13)) (-3672 ((|#1| $) 8)) (-4124 (((-112) $) 15)))
+(((-1222 |#1|) (-10 -8 (-15 -3672 (|#1| $)) (-15 -1447 ((-650 (-650 (-950 (-227)))) $)) (-15 -4124 ((-112) $)) (-15 -1967 ((-112) $)) (-15 -4189 ((-112) $ (-112))) (-15 -3188 ($ |#1| (-650 (-650 (-950 (-227)))) (-112)))) (-983)) (T -1222))
+((-3188 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-112)) (-5 *1 (-1222 *2)) (-4 *2 (-983)))) (-4189 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-1967 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-4124 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-1447 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-3672 (*1 *2 *1) (-12 (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
+(-10 -8 (-15 -3672 (|#1| $)) (-15 -1447 ((-650 (-650 (-950 (-227)))) $)) (-15 -4124 ((-112) $)) (-15 -1967 ((-112) $)) (-15 -4189 ((-112) $ (-112))) (-15 -3188 ($ |#1| (-650 (-650 (-950 (-227)))) (-112))))
+((-3800 (((-950 (-227)) (-950 (-227))) 31)) (-3213 (((-950 (-227)) (-227) (-227) (-227) (-227)) 10)) (-3413 (((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227)))) 60)) (-4082 (((-227) (-950 (-227)) (-950 (-227))) 27)) (-3000 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 28)) (-3034 (((-650 (-650 (-227))) (-570)) 48)) (-2965 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 26)) (-2953 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 24)) (* (((-950 (-227)) (-227) (-950 (-227))) 22)))
+(((-1223) (-10 -7 (-15 -3213 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -2953 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2965 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -4082 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -3000 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3800 ((-950 (-227)) (-950 (-227)))) (-15 -3034 ((-650 (-650 (-227))) (-570))) (-15 -3413 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))) (T -1223))
+((-3413 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-650 (-650 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 (-950 *4))) (-5 *1 (-1223)) (-5 *3 (-950 *4)))) (-3034 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1223)))) (-3800 (*1 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-3000 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-4082 (*1 *2 *3 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-227)) (-5 *1 (-1223)))) (-2965 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-2953 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-950 (-227))) (-5 *3 (-227)) (-5 *1 (-1223)))) (-3213 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)) (-5 *3 (-227)))))
+(-10 -7 (-15 -3213 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -2953 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2965 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -4082 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -3000 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3800 ((-950 (-227)) (-950 (-227)))) (-15 -3034 ((-650 (-650 (-227))) (-570))) (-15 -3413 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1425 ((|#1| $ (-777)) 18)) (-3788 (((-777) $) 13)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3735 (((-965 |#1|) $) 12) (($ (-965 |#1|)) 11) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2872 (((-112) $ $) 22 (|has| |#1| (-1109)))))
+(((-1224 |#1|) (-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1425 (|#1| $ (-777))) (-15 -3788 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1224))
+((-1425 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-1224 *2)) (-4 *2 (-1227)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1224 *3)) (-4 *3 (-1227)))))
+(-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1425 (|#1| $ (-777))) (-15 -3788 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
+((-3339 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)) 94)) (-3316 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 86)) (-4097 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 70)))
+(((-1225 |#1|) (-10 -7 (-15 -3316 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -4097 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -3339 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)))) (-354)) (T -1225))
+((-3339 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *5 (-354)) (-5 *2 (-424 (-1182 (-1182 *5)))) (-5 *1 (-1225 *5)) (-5 *3 (-1182 (-1182 *5))))) (-4097 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4)))) (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))) (-3316 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4)))) (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
+(-10 -7 (-15 -3316 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -4097 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -3339 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 9) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1226) (-1092)) (T -1226))
NIL
(-1092)
NIL
-(((-1226) (-141)) (T -1226))
+(((-1227) (-141)) (T -1227))
NIL
(-13 (-10 -7 (-6 -2995)))
-((-2239 (((-112)) 18)) (-1439 (((-1281) (-650 |#1|) (-650 |#1|)) 22) (((-1281) (-650 |#1|)) 23)) (-2742 (((-112) |#1| |#1|) 37 (|has| |#1| (-856)))) (-3452 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 29) (((-3 (-112) "failed") |#1| |#1|) 27)) (-2183 ((|#1| (-650 |#1|)) 38 (|has| |#1| (-856))) ((|#1| (-650 |#1|) (-1 (-112) |#1| |#1|)) 32)) (-2067 (((-2 (|:| -2134 (-650 |#1|)) (|:| -2221 (-650 |#1|)))) 20)))
-(((-1227 |#1|) (-10 -7 (-15 -1439 ((-1281) (-650 |#1|))) (-15 -1439 ((-1281) (-650 |#1|) (-650 |#1|))) (-15 -2067 ((-2 (|:| -2134 (-650 |#1|)) (|:| -2221 (-650 |#1|))))) (-15 -3452 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3452 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2183 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2239 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -2183 (|#1| (-650 |#1|))) (-15 -2742 ((-112) |#1| |#1|))) |%noBranch|)) (-1109)) (T -1227))
-((-2742 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1227 *3)) (-4 *3 (-856)) (-4 *3 (-1109)))) (-2183 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856)) (-5 *1 (-1227 *2)))) (-2239 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1227 *3)) (-4 *3 (-1109)))) (-2183 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1227 *2)) (-4 *2 (-1109)))) (-3452 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1109)) (-5 *2 (-112)) (-5 *1 (-1227 *3)))) (-3452 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1227 *3)) (-4 *3 (-1109)))) (-2067 (*1 *2) (-12 (-5 *2 (-2 (|:| -2134 (-650 *3)) (|:| -2221 (-650 *3)))) (-5 *1 (-1227 *3)) (-4 *3 (-1109)))) (-1439 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1281)) (-5 *1 (-1227 *4)))) (-1439 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1281)) (-5 *1 (-1227 *4)))))
-(-10 -7 (-15 -1439 ((-1281) (-650 |#1|))) (-15 -1439 ((-1281) (-650 |#1|) (-650 |#1|))) (-15 -2067 ((-2 (|:| -2134 (-650 |#1|)) (|:| -2221 (-650 |#1|))))) (-15 -3452 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3452 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2183 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2239 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -2183 (|#1| (-650 |#1|))) (-15 -2742 ((-112) |#1| |#1|))) |%noBranch|))
-((-4041 (((-1281) (-650 (-1186)) (-650 (-1186))) 14) (((-1281) (-650 (-1186))) 12)) (-2103 (((-1281)) 16)) (-2881 (((-2 (|:| -2221 (-650 (-1186))) (|:| -2134 (-650 (-1186))))) 20)))
-(((-1228) (-10 -7 (-15 -4041 ((-1281) (-650 (-1186)))) (-15 -4041 ((-1281) (-650 (-1186)) (-650 (-1186)))) (-15 -2881 ((-2 (|:| -2221 (-650 (-1186))) (|:| -2134 (-650 (-1186)))))) (-15 -2103 ((-1281))))) (T -1228))
-((-2103 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1228)))) (-2881 (*1 *2) (-12 (-5 *2 (-2 (|:| -2221 (-650 (-1186))) (|:| -2134 (-650 (-1186))))) (-5 *1 (-1228)))) (-4041 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1281)) (-5 *1 (-1228)))) (-4041 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1281)) (-5 *1 (-1228)))))
-(-10 -7 (-15 -4041 ((-1281) (-650 (-1186)))) (-15 -4041 ((-1281) (-650 (-1186)) (-650 (-1186)))) (-15 -2881 ((-2 (|:| -2221 (-650 (-1186))) (|:| -2134 (-650 (-1186)))))) (-15 -2103 ((-1281))))
-((-2222 (($ $) 17)) (-1552 (((-112) $) 28)))
-(((-1229 |#1|) (-10 -8 (-15 -2222 (|#1| |#1|)) (-15 -1552 ((-112) |#1|))) (-1230)) (T -1229))
-NIL
-(-10 -8 (-15 -2222 (|#1| |#1|)) (-15 -1552 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 57)) (-1790 (((-424 $) $) 58)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-1552 (((-112) $) 59)) (-2081 (((-112) $) 35)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3738 (((-424 $) $) 56)) (-2407 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
-(((-1230) (-141)) (T -1230))
-((-1552 (*1 *2 *1) (-12 (-4 *1 (-1230)) (-5 *2 (-112)))) (-1790 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1230)))) (-2222 (*1 *1 *1) (-4 *1 (-1230))) (-3738 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1230)))))
-(-13 (-458) (-10 -8 (-15 -1552 ((-112) $)) (-15 -1790 ((-424 $) $)) (-15 -2222 ($ $)) (-15 -3738 ((-424 $) $))))
+((-3452 (((-112)) 18)) (-1516 (((-1282) (-650 |#1|) (-650 |#1|)) 22) (((-1282) (-650 |#1|)) 23)) (-1586 (((-112) |#1| |#1|) 37 (|has| |#1| (-856)))) (-2113 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 29) (((-3 (-112) "failed") |#1| |#1|) 27)) (-4142 ((|#1| (-650 |#1|)) 38 (|has| |#1| (-856))) ((|#1| (-650 |#1|) (-1 (-112) |#1| |#1|)) 32)) (-2279 (((-2 (|:| -1794 (-650 |#1|)) (|:| -3234 (-650 |#1|)))) 20)))
+(((-1228 |#1|) (-10 -7 (-15 -1516 ((-1282) (-650 |#1|))) (-15 -1516 ((-1282) (-650 |#1|) (-650 |#1|))) (-15 -2279 ((-2 (|:| -1794 (-650 |#1|)) (|:| -3234 (-650 |#1|))))) (-15 -2113 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2113 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -4142 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3452 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -4142 (|#1| (-650 |#1|))) (-15 -1586 ((-112) |#1| |#1|))) |%noBranch|)) (-1109)) (T -1228))
+((-1586 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-856)) (-4 *3 (-1109)))) (-4142 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856)) (-5 *1 (-1228 *2)))) (-3452 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-4142 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1228 *2)) (-4 *2 (-1109)))) (-2113 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1109)) (-5 *2 (-112)) (-5 *1 (-1228 *3)))) (-2113 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-2279 (*1 *2) (-12 (-5 *2 (-2 (|:| -1794 (-650 *3)) (|:| -3234 (-650 *3)))) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-1516 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282)) (-5 *1 (-1228 *4)))) (-1516 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282)) (-5 *1 (-1228 *4)))))
+(-10 -7 (-15 -1516 ((-1282) (-650 |#1|))) (-15 -1516 ((-1282) (-650 |#1|) (-650 |#1|))) (-15 -2279 ((-2 (|:| -1794 (-650 |#1|)) (|:| -3234 (-650 |#1|))))) (-15 -2113 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2113 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -4142 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3452 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -4142 (|#1| (-650 |#1|))) (-15 -1586 ((-112) |#1| |#1|))) |%noBranch|))
+((-2865 (((-1282) (-650 (-1186)) (-650 (-1186))) 14) (((-1282) (-650 (-1186))) 12)) (-1463 (((-1282)) 16)) (-3540 (((-2 (|:| -3234 (-650 (-1186))) (|:| -1794 (-650 (-1186))))) 20)))
+(((-1229) (-10 -7 (-15 -2865 ((-1282) (-650 (-1186)))) (-15 -2865 ((-1282) (-650 (-1186)) (-650 (-1186)))) (-15 -3540 ((-2 (|:| -3234 (-650 (-1186))) (|:| -1794 (-650 (-1186)))))) (-15 -1463 ((-1282))))) (T -1229))
+((-1463 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1229)))) (-3540 (*1 *2) (-12 (-5 *2 (-2 (|:| -3234 (-650 (-1186))) (|:| -1794 (-650 (-1186))))) (-5 *1 (-1229)))) (-2865 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))))
+(-10 -7 (-15 -2865 ((-1282) (-650 (-1186)))) (-15 -2865 ((-1282) (-650 (-1186)) (-650 (-1186)))) (-15 -3540 ((-2 (|:| -3234 (-650 (-1186))) (|:| -1794 (-650 (-1186)))))) (-15 -1463 ((-1282))))
+((-3252 (($ $) 17)) (-4037 (((-112) $) 28)))
+(((-1230 |#1|) (-10 -8 (-15 -3252 (|#1| |#1|)) (-15 -4037 ((-112) |#1|))) (-1231)) (T -1230))
+NIL
+(-10 -8 (-15 -3252 (|#1| |#1|)) (-15 -4037 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 57)) (-1378 (((-424 $) $) 58)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4037 (((-112) $) 59)) (-4340 (((-112) $) 35)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3739 (((-424 $) $) 56)) (-2406 (((-3 $ "failed") $ $) 48)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+(((-1231) (-141)) (T -1231))
+((-4037 (*1 *2 *1) (-12 (-4 *1 (-1231)) (-5 *2 (-112)))) (-1378 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231)))) (-3252 (*1 *1 *1) (-4 *1 (-1231))) (-3739 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231)))))
+(-13 (-458) (-10 -8 (-15 -4037 ((-112) $)) (-15 -1378 ((-424 $) $)) (-15 -3252 ($ $)) (-15 -3739 ((-424 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-294) . T) ((-458) . T) ((-562) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-646 $) . T) ((-723 $) . T) ((-732) . T) ((-1060 $) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1375 (($ $ $) NIL)) (-1359 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-1231) (-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))) (T -1231))
-((-1359 (*1 *1 *1 *1) (-5 *1 (-1231))) (-1375 (*1 *1 *1 *1) (-5 *1 (-1231))) (-2450 (*1 *1) (-5 *1 (-1231))))
-(-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1376 (($ $ $) NIL)) (-1360 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-1232) (-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))) (T -1232))
+((-1360 (*1 *1 *1 *1) (-5 *1 (-1232))) (-1376 (*1 *1 *1 *1) (-5 *1 (-1232))) (-3761 (*1 *1) (-5 *1 (-1232))))
+(-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 16)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1375 (($ $ $) NIL)) (-1359 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-1232) (-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))) (T -1232))
-((-1359 (*1 *1 *1 *1) (-5 *1 (-1232))) (-1375 (*1 *1 *1 *1) (-5 *1 (-1232))) (-2450 (*1 *1) (-5 *1 (-1232))))
-(-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1376 (($ $ $) NIL)) (-1360 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-1233) (-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))) (T -1233))
+((-1360 (*1 *1 *1 *1) (-5 *1 (-1233))) (-1376 (*1 *1 *1 *1) (-5 *1 (-1233))) (-3761 (*1 *1) (-5 *1 (-1233))))
+(-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 32)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1375 (($ $ $) NIL)) (-1359 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-1233) (-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))) (T -1233))
-((-1359 (*1 *1 *1 *1) (-5 *1 (-1233))) (-1375 (*1 *1 *1 *1) (-5 *1 (-1233))) (-2450 (*1 *1) (-5 *1 (-1233))))
-(-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1376 (($ $ $) NIL)) (-1360 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-1234) (-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))) (T -1234))
+((-1360 (*1 *1 *1 *1) (-5 *1 (-1234))) (-1376 (*1 *1 *1 *1) (-5 *1 (-1234))) (-3761 (*1 *1) (-5 *1 (-1234))))
+(-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 64)))
-((-2416 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-2450 (($) NIL T CONST)) (-3336 (($) NIL)) (-3310 (($ $ $) NIL) (($) NIL T CONST)) (-3787 (($ $ $) NIL) (($) NIL T CONST)) (-2367 (((-928) $) NIL)) (-1903 (((-1168) $) NIL)) (-2159 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1375 (($ $ $) NIL)) (-1359 (($ $ $) NIL)) (-1859 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
-(((-1234) (-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))) (T -1234))
-((-1359 (*1 *1 *1 *1) (-5 *1 (-1234))) (-1375 (*1 *1 *1 *1) (-5 *1 (-1234))) (-2450 (*1 *1) (-5 *1 (-1234))))
-(-13 (-850) (-10 -8 (-15 -1359 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -2450 ($) -3640)))
+((-2417 (((-112) $ $) NIL)) (-3403 (((-777)) NIL)) (-3761 (($) NIL T CONST)) (-3336 (($) NIL)) (-3311 (($ $ $) NIL) (($) NIL T CONST)) (-2222 (($ $ $) NIL) (($) NIL T CONST)) (-2332 (((-928) $) NIL)) (-4268 (((-1168) $) NIL)) (-2160 (($ (-928)) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) NIL)) (-1376 (($ $ $) NIL)) (-1360 (($ $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-2924 (((-112) $ $) NIL)) (-2904 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL)) (-2894 (((-112) $ $) NIL)))
+(((-1235) (-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))) (T -1235))
+((-1360 (*1 *1 *1 *1) (-5 *1 (-1235))) (-1376 (*1 *1 *1 *1) (-5 *1 (-1235))) (-3761 (*1 *1) (-5 *1 (-1235))))
+(-13 (-850) (-10 -8 (-15 -1360 ($ $ $)) (-15 -1376 ($ $ $)) (-15 -3761 ($) -3640)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 8)))
-((-1351 (((-1240 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1240 |#1| |#3| |#5|)) 23)))
-(((-1235 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1351 ((-1240 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1240 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1235))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1240 *5 *7 *9)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-14 *7 (-1186)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1240 *6 *8 *10)) (-5 *1 (-1235 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1186)))))
-(-10 -7 (-15 -1351 ((-1240 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1240 |#1| |#3| |#5|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3316 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-2230 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 174 (|has| |#1| (-368)))) (-1790 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3753 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) 18 T CONST)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-4076 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-2381 (($ $ $) 168 (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1552 (((-112) $) 176 (|has| |#1| (-368)))) (-4232 (((-112) $) 85)) (-1314 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-570) $) 112) (((-570) $ (-570)) 111)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) 113)) (-3260 (($ (-1 |#1| (-570)) $) 184)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-1550 (((-112) $) 74)) (-3872 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1845 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1903 (((-1168) $) 10)) (-1825 (($ $) 177 (|has| |#1| (-368)))) (-3555 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1211)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3738 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 170 (|has| |#1| (-368)))) (-1558 (($ $ (-570)) 107)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-2272 (((-777) $) 166 (|has| |#1| (-368)))) (-1876 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-1601 (((-570) $) 76)) (-4099 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1715 ((|#1| $ (-570)) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-2177 ((|#1| $) 114)) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4108 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
-(((-1236 |#1|) (-141) (-1058)) (T -1236))
-((-3254 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1236 *3)))) (-3260 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1236 *3)) (-4 *3 (-1058)))) (-4076 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1236 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-4076 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1236 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-3555 (*1 *1 *1) (-12 (-4 *1 (-1236 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-3555 (*1 *1 *1 *2) (-2740 (-12 (-5 *2 (-1186)) (-4 *1 (-1236 *3)) (-4 *3 (-1058)) (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1211)) (-4 *3 (-38 (-413 (-570)))))) (-12 (-5 *2 (-1186)) (-4 *1 (-1236 *3)) (-4 *3 (-1058)) (-12 (|has| *3 (-15 -1716 ((-650 *2) *3))) (|has| *3 (-15 -3555 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
-(-13 (-1254 |t#1| (-570)) (-10 -8 (-15 -3254 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |t#1|))))) (-15 -3260 ($ (-1 |t#1| (-570)) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -4076 ((-413 (-959 |t#1|)) $ (-570))) (-15 -4076 ((-413 (-959 |t#1|)) $ (-570) (-570)))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $)) (IF (|has| |t#1| (-15 -3555 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1716 ((-650 (-1186)) |t#1|))) (-15 -3555 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1211)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -3555 ($ $ (-1186))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1011)) (-6 (-1211))) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-570)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-570) |#1|))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-570) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-368) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1211) |has| |#1| (-38 (-413 (-570)))) ((-1214) |has| |#1| (-38 (-413 (-570)))) ((-1230) |has| |#1| (-368)) ((-1254 |#1| #0#) . T))
-((-4028 (((-112) $) 12)) (-4378 (((-3 |#3| "failed") $) 17) (((-3 (-1186) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL)) (-3080 ((|#3| $) 14) (((-1186) $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL)))
-(((-1237 |#1| |#2| |#3|) (-10 -8 (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -4028 ((-112) |#1|))) (-1238 |#2| |#3|) (-1058) (-1267 |#2|)) (T -1237))
-NIL
-(-10 -8 (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4378 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -4028 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3303 ((|#2| $) 242 (-1765 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1716 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3316 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-2230 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-1636 ((|#2| $) 278)) (-2246 (((-3 |#2| "failed") $) 274)) (-1781 ((|#2| $) 275)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) 20)) (-2615 (((-424 (-1182 $)) (-1182 $)) 251 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2222 (($ $) 174 (|has| |#1| (-368)))) (-1790 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3753 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 248 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-4339 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3140 (((-570) $) 260 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3254 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#2| "failed") $) 281) (((-3 (-570) "failed") $) 271 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) 269 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-1186) "failed") $) 253 (-1765 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-3080 ((|#2| $) 282) (((-570) $) 270 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-413 (-570)) $) 268 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-1186) $) 252 (-1765 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-1576 (($ $) 277) (($ (-570) $) 276)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1890 (($ $) 72)) (-4177 (((-695 |#2|) (-695 $)) 232 (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) 231 (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 230 (-1765 (|has| |#2| (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) 229 (-1765 (|has| |#2| (-645 (-570))) (|has| |#1| (-368))))) (-3413 (((-3 $ "failed") $) 37)) (-4076 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-3336 (($) 244 (-1765 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2381 (($ $ $) 168 (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1552 (((-112) $) 176 (|has| |#1| (-368)))) (-1522 (((-112) $) 258 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-4232 (((-112) $) 85)) (-1314 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 236 (-1765 (|has| |#2| (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 235 (-1765 (|has| |#2| (-893 (-570))) (|has| |#1| (-368))))) (-3157 (((-570) $) 112) (((-570) $ (-570)) 111)) (-2081 (((-112) $) 35)) (-3195 (($ $) 240 (|has| |#1| (-368)))) (-4398 ((|#2| $) 238 (|has| |#1| (-368)))) (-2598 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2885 (((-3 $ "failed") $) 272 (-1765 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-2761 (((-112) $) 259 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3553 (($ $ (-928)) 113)) (-3260 (($ (-1 |#1| (-570)) $) 184)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-1550 (((-112) $) 74)) (-3872 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-3310 (($ $ $) 262 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3787 (($ $ $) 263 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1351 (($ (-1 |#1| |#1|) $) 75) (($ (-1 |#2| |#2|) $) 224 (|has| |#1| (-368)))) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1845 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1791 (($ (-570) |#2|) 279)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 177 (|has| |#1| (-368)))) (-3555 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1211)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-2314 (($) 273 (-1765 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-1965 (($ $) 243 (-1765 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-3739 ((|#2| $) 246 (-1765 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-1885 (((-424 (-1182 $)) (-1182 $)) 249 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1495 (((-424 (-1182 $)) (-1182 $)) 250 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3738 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 170 (|has| |#1| (-368)))) (-1558 (($ $ (-570)) 107)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) |#2|) 223 (-1765 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 |#2|)) 222 (-1765 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-298 |#2|))) 221 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-298 |#2|)) 220 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ |#2| |#2|) 219 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-650 |#2|) (-650 |#2|)) 218 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368))))) (-2272 (((-777) $) 166 (|has| |#1| (-368)))) (-1876 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121))) (($ $ |#2|) 217 (-1765 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-1 |#2| |#2|)) 228 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 227 (|has| |#1| (-368))) (($ $ (-777)) 96 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 94 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 101 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 100 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 99 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 98 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-1418 (($ $) 241 (|has| |#1| (-368)))) (-4412 ((|#2| $) 239 (|has| |#1| (-368)))) (-1601 (((-570) $) 76)) (-4099 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1416 (((-227) $) 257 (-1765 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-384) $) 256 (-1765 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-542) $) 255 (-1765 (|has| |#2| (-620 (-542))) (|has| |#1| (-368)))) (((-899 (-384)) $) 234 (-1765 (|has| |#2| (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) 233 (-1765 (|has| |#2| (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 247 (-1765 (-1765 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#1| (-368))))) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 280) (($ (-1186)) 254 (-1765 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368)))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1715 ((|#1| $ (-570)) 71)) (-1918 (((-3 $ "failed") $) 60 (-2740 (-1765 (-2740 (|has| |#2| (-146)) (-1765 (|has| $ (-146)) (|has| |#2| (-916)))) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-2744 (((-777)) 32 T CONST)) (-2177 ((|#1| $) 114)) (-3754 ((|#2| $) 245 (-1765 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4108 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1423 (($ $) 261 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) 226 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 225 (|has| |#1| (-368))) (($ $ (-777)) 97 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 95 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 105 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 104 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 103 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 102 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-2924 (((-112) $ $) 265 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2904 (((-112) $ $) 266 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2872 (((-112) $ $) 6)) (-2913 (((-112) $ $) 264 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2894 (((-112) $ $) 267 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368))) (($ |#2| |#2|) 237 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ $ |#2|) 216 (|has| |#1| (-368))) (($ |#2| $) 215 (|has| |#1| (-368))) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
-(((-1238 |#1| |#2|) (-141) (-1058) (-1267 |t#1|)) (T -1238))
-((-1601 (*1 *2 *1) (-12 (-4 *1 (-1238 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1267 *3)) (-5 *2 (-570)))) (-1791 (*1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *4 (-1058)) (-4 *1 (-1238 *4 *3)) (-4 *3 (-1267 *4)))) (-1636 (*1 *2 *1) (-12 (-4 *1 (-1238 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1267 *3)))) (-1576 (*1 *1 *1) (-12 (-4 *1 (-1238 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1267 *2)))) (-1576 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-1238 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1267 *3)))) (-1781 (*1 *2 *1) (-12 (-4 *1 (-1238 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1267 *3)))) (-2246 (*1 *2 *1) (|partial| -12 (-4 *1 (-1238 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1267 *3)))))
-(-13 (-1236 |t#1|) (-1047 |t#2|) (-622 |t#2|) (-10 -8 (-15 -1791 ($ (-570) |t#2|)) (-15 -1601 ((-570) $)) (-15 -1636 (|t#2| $)) (-15 -1576 ($ $)) (-15 -1576 ($ (-570) $)) (-15 -1781 (|t#2| $)) (-15 -2246 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-368)) (-6 (-1001 |t#2|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-570)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 |#2|) |has| |#1| (-368)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-368)) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-146))) (|has| |#1| (-146))) ((-148) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-148))) (|has| |#1| (-148))) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 #2=(-1186)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) ((-622 |#1|) |has| |#1| (-174)) ((-622 |#2|) . T) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-620 (-227)) -12 (|has| |#1| (-368)) (|has| |#2| (-1031))) ((-620 (-384)) -12 (|has| |#1| (-368)) (|has| |#2| (-1031))) ((-620 (-542)) -12 (|has| |#1| (-368)) (|has| |#2| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-368)) (|has| |#2| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-368)) (|has| |#2| (-620 (-899 (-570))))) ((-233 |#2|) |has| |#1| (-368)) ((-235) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-235))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 |#2| $) -12 (|has| |#1| (-368)) (|has| |#2| (-290 |#2| |#2|))) ((-290 $ $) |has| (-570) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-313 |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-313 |#2|))) ((-368) |has| |#1| (-368)) ((-343 |#2|) |has| |#1| (-368)) ((-382 |#2|) |has| |#1| (-368)) ((-406 |#2|) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-520 (-1186) |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-520 (-1186) |#2|))) ((-520 |#2| |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-313 |#2|))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 |#2|) |has| |#1| (-368)) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 |#2|) |has| |#1| (-368)) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 |#2|) |has| |#1| (-368)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-645 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-645 (-570)))) ((-645 |#2|) |has| |#1| (-368)) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 |#2|) |has| |#1| (-368)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-797) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-798) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-800) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-801) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-826) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-854) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-856) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-856))) (-12 (|has| |#1| (-368)) (|has| |#2| (-826)))) ((-907 (-1186)) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-907 (-1186)))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) ((-893 (-384)) -12 (|has| |#1| (-368)) (|has| |#2| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-893 (-570)))) ((-891 |#2|) |has| |#1| (-368)) ((-916) -12 (|has| |#1| (-368)) (|has| |#2| (-916))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1001 |#2|) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1031) -12 (|has| |#1| (-368)) (|has| |#2| (-1031))) ((-1047 (-413 (-570))) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-570)))) ((-1047 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-570)))) ((-1047 #2#) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) ((-1047 |#2|) . T) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 |#2|) |has| |#1| (-368)) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 |#2|) |has| |#1| (-368)) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) -12 (|has| |#1| (-368)) (|has| |#2| (-1161))) ((-1211) |has| |#1| (-38 (-413 (-570)))) ((-1214) |has| |#1| (-38 (-413 (-570)))) ((-1226) |has| |#1| (-368)) ((-1230) |has| |#1| (-368)) ((-1236 |#1|) . T) ((-1254 |#1| #0#) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 81)) (-3303 ((|#2| $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 100)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-570)) 109) (($ $ (-570) (-570)) 111)) (-2230 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 51)) (-1636 ((|#2| $) 11)) (-2246 (((-3 |#2| "failed") $) 35)) (-1781 ((|#2| $) 36)) (-2735 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-3140 (((-570) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3254 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 59)) (-4087 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) 157) (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-1186) "failed") $) NIL (-12 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-3080 ((|#2| $) 156) (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-1186) $) NIL (-12 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-1576 (($ $) 65) (($ (-570) $) 28)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-4177 (((-695 |#2|) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#1| (-368))))) (-3413 (((-3 $ "failed") $) 88)) (-4076 (((-413 (-959 |#1|)) $ (-570)) 124 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 126 (|has| |#1| (-562)))) (-3336 (($) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-1522 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-4232 (((-112) $) 74)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#2| (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#2| (-893 (-570))) (|has| |#1| (-368))))) (-3157 (((-570) $) 105) (((-570) $ (-570)) 107)) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL (|has| |#1| (-368)))) (-4398 ((|#2| $) 165 (|has| |#1| (-368)))) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2885 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-2761 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3553 (($ $ (-928)) 148)) (-3260 (($ (-1 |#1| (-570)) $) 144)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-570)) 20) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3310 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3787 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1351 (($ (-1 |#1| |#1|) $) 141) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-368)))) (-2635 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1791 (($ (-570) |#2|) 10)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 159 (|has| |#1| (-368)))) (-3555 (($ $) 228 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 233 (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211)))))) (-2314 (($) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1965 (($ $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-3739 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-570)) 138)) (-2407 (((-3 $ "failed") $ $) 128 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) |#2|) NIL (-12 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 |#2|)) NIL (-12 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-570)) 103) (($ $ $) 90 (|has| (-570) (-1121))) (($ $ |#2|) NIL (-12 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 149 (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) 153 (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-1418 (($ $) NIL (|has| |#1| (-368)))) (-4412 ((|#2| $) 166 (|has| |#1| (-368)))) (-1601 (((-570) $) 12)) (-4099 (($ $) 212 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-1416 (((-227) $) NIL (-12 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-384) $) NIL (-12 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-542) $) NIL (-12 (|has| |#2| (-620 (-542))) (|has| |#1| (-368)))) (((-899 (-384)) $) NIL (-12 (|has| |#2| (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) NIL (-12 (|has| |#2| (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3049 (($ $) 136)) (-3735 (((-868) $) 267) (($ (-570)) 24) (($ |#1|) 22 (|has| |#1| (-174))) (($ |#2|) 21) (($ (-1186)) NIL (-12 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368)))) (($ (-413 (-570))) 169 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1715 ((|#1| $ (-570)) 85)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))) (-12 (|has| |#2| (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-2744 (((-777)) 155 T CONST)) (-2177 ((|#1| $) 102)) (-3754 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) 214 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 222 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) 134 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 224 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 220 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 216 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-1423 (($ $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1812 (($) 13 T CONST)) (-1823 (($) 18 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2924 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2904 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2872 (((-112) $ $) 72)) (-2913 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2894 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 163 (|has| |#1| (-368))) (($ |#2| |#2|) 164 (|has| |#1| (-368)))) (-2965 (($ $) 227) (($ $ $) 78)) (-2954 (($ $ $) 76)) (** (($ $ (-928)) NIL) (($ $ (-777)) 84) (($ $ (-570)) 160 (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 172 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 79) (($ $ |#1|) NIL) (($ |#1| $) 152) (($ $ |#2|) 162 (|has| |#1| (-368))) (($ |#2| $) 161 (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1239 |#1| |#2|) (-1238 |#1| |#2|) (-1058) (-1267 |#1|)) (T -1239))
-NIL
-(-1238 |#1| |#2|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3303 (((-1268 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 10)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3171 (($ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-2720 (((-112) $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3316 (($ $ (-570)) NIL) (($ $ (-570) (-570)) NIL)) (-2230 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-1636 (((-1268 |#1| |#2| |#3|) $) NIL)) (-2246 (((-3 (-1268 |#1| |#2| |#3|) "failed") $) NIL)) (-1781 (((-1268 |#1| |#2| |#3|) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3140 (((-570) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3254 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-1268 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-570) "failed") $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-3080 (((-1268 |#1| |#2| |#3|) $) NIL) (((-1186) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-413 (-570)) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-570) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-1576 (($ $) NIL) (($ (-570) $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-1268 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 (-1268 |#1| |#2| |#3|))) (|:| |vec| (-1276 (-1268 |#1| |#2| |#3|)))) (-695 $) (-1276 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368))))) (-3413 (((-3 $ "failed") $) NIL)) (-4076 (((-413 (-959 |#1|)) $ (-570)) NIL (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) NIL (|has| |#1| (-562)))) (-3336 (($) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-1522 (((-112) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-893 (-570))) (|has| |#1| (-368))))) (-3157 (((-570) $) NIL) (((-570) $ (-570)) NIL)) (-2081 (((-112) $) NIL)) (-3195 (($ $) NIL (|has| |#1| (-368)))) (-4398 (((-1268 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2885 (((-3 $ "failed") $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-2761 (((-112) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3553 (($ $ (-928)) NIL)) (-3260 (($ (-1 |#1| (-570)) $) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-570)) 18) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3310 (($ $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3787 (($ $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1791 (($ (-570) (-1268 |#1| |#2| |#3|)) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-3555 (($ $) 27 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 28 (|has| |#1| (-38 (-413 (-570)))))) (-2314 (($) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1965 (($ $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-3739 (((-1268 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-570)) NIL)) (-2407 (((-3 $ "failed") $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) (-1268 |#1| |#2| |#3|)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-520 (-1186) (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-1268 |#1| |#2| |#3|))) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-520 (-1186) (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-298 (-1268 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-313 (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-298 (-1268 |#1| |#2| |#3|))) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-313 (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-313 (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1268 |#1| |#2| |#3|)) (-650 (-1268 |#1| |#2| |#3|))) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-313 (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-570)) NIL) (($ $ $) NIL (|has| (-570) (-1121))) (($ $ (-1268 |#1| |#2| |#3|)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-290 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-1 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1272 |#2|)) 26) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 25 (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-1418 (($ $) NIL (|has| |#1| (-368)))) (-4412 (((-1268 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-1601 (((-570) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1416 (((-542) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-620 (-542))) (|has| |#1| (-368)))) (((-384) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-227) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-899 (-384)) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1268 |#1| |#2| |#3|)) NIL) (($ (-1272 |#2|)) 24) (($ (-1186)) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (($ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562)))) (($ (-413 (-570))) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-1715 ((|#1| $ (-570)) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 11)) (-3754 (((-1268 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1423 (($ $) NIL (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1812 (($) 20 T CONST)) (-1823 (($) 15 T CONST)) (-2791 (($ $ (-1 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2924 (((-112) $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2904 (((-112) $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2872 (((-112) $ $) NIL)) (-2913 (((-112) $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2894 (((-112) $ $) NIL (-2740 (-12 (|has| (-1268 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1268 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368))) (($ (-1268 |#1| |#2| |#3|) (-1268 |#1| |#2| |#3|)) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 22)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1268 |#1| |#2| |#3|)) NIL (|has| |#1| (-368))) (($ (-1268 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1240 |#1| |#2| |#3|) (-13 (-1238 |#1| (-1268 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1240))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1240 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1240 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1240 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1238 |#1| (-1268 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
-((-3023 (((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112)) 13)) (-3696 (((-424 |#1|) |#1|) 26)) (-3738 (((-424 |#1|) |#1|) 24)))
-(((-1241 |#1|) (-10 -7 (-15 -3738 ((-424 |#1|) |#1|)) (-15 -3696 ((-424 |#1|) |#1|)) (-15 -3023 ((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112)))) (-1252 (-570))) (T -1241))
-((-3023 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570))))))) (-5 *1 (-1241 *3)) (-4 *3 (-1252 (-570))))) (-3696 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1241 *3)) (-4 *3 (-1252 (-570))))) (-3738 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1241 *3)) (-4 *3 (-1252 (-570))))))
-(-10 -7 (-15 -3738 ((-424 |#1|) |#1|)) (-15 -3696 ((-424 |#1|) |#1|)) (-15 -3023 ((-2 (|:| |contp| (-570)) (|:| -1679 (-650 (-2 (|:| |irr| |#1|) (|:| -3465 (-570)))))) |#1| (-112))))
-((-1351 (((-1166 |#2|) (-1 |#2| |#1|) (-1243 |#1|)) 23 (|has| |#1| (-854))) (((-1243 |#2|) (-1 |#2| |#1|) (-1243 |#1|)) 17)))
-(((-1242 |#1| |#2|) (-10 -7 (-15 -1351 ((-1243 |#2|) (-1 |#2| |#1|) (-1243 |#1|))) (IF (|has| |#1| (-854)) (-15 -1351 ((-1166 |#2|) (-1 |#2| |#1|) (-1243 |#1|))) |%noBranch|)) (-1226) (-1226)) (T -1242))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1243 *5)) (-4 *5 (-854)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1166 *6)) (-5 *1 (-1242 *5 *6)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1243 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1243 *6)) (-5 *1 (-1242 *5 *6)))))
-(-10 -7 (-15 -1351 ((-1243 |#2|) (-1 |#2| |#1|) (-1243 |#1|))) (IF (|has| |#1| (-854)) (-15 -1351 ((-1166 |#2|) (-1 |#2| |#1|) (-1243 |#1|))) |%noBranch|))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2782 (($ |#1| |#1|) 11) (($ |#1|) 10)) (-1351 (((-1166 |#1|) (-1 |#1| |#1|) $) 44 (|has| |#1| (-854)))) (-2134 ((|#1| $) 15)) (-1496 ((|#1| $) 12)) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1508 (((-570) $) 19)) (-2221 ((|#1| $) 18)) (-1818 ((|#1| $) 13)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2734 (((-112) $) 17)) (-1387 (((-1166 |#1|) $) 41 (|has| |#1| (-854))) (((-1166 |#1|) (-650 $)) 40 (|has| |#1| (-854)))) (-1416 (($ |#1|) 26)) (-3735 (($ (-1103 |#1|)) 25) (((-868) $) 37 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3576 (($ |#1| |#1|) 21) (($ |#1|) 20)) (-2656 (($ $ (-570)) 14)) (-2872 (((-112) $ $) 30 (|has| |#1| (-1109)))))
-(((-1243 |#1|) (-13 (-1102 |#1|) (-10 -8 (-15 -3576 ($ |#1|)) (-15 -2782 ($ |#1|)) (-15 -3735 ($ (-1103 |#1|))) (-15 -2734 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|))) (-1226)) (T -1243))
-((-3576 (*1 *1 *2) (-12 (-5 *1 (-1243 *2)) (-4 *2 (-1226)))) (-2782 (*1 *1 *2) (-12 (-5 *1 (-1243 *2)) (-4 *2 (-1226)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1103 *3)) (-4 *3 (-1226)) (-5 *1 (-1243 *3)))) (-2734 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1243 *3)) (-4 *3 (-1226)))))
-(-13 (-1102 |#1|) (-10 -8 (-15 -3576 ($ |#1|)) (-15 -2782 ($ |#1|)) (-15 -3735 ($ (-1103 |#1|))) (-15 -2734 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|)))
-((-1351 (((-1249 |#3| |#4|) (-1 |#4| |#2|) (-1249 |#1| |#2|)) 15)))
-(((-1244 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 ((-1249 |#3| |#4|) (-1 |#4| |#2|) (-1249 |#1| |#2|)))) (-1186) (-1058) (-1186) (-1058)) (T -1244))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1249 *5 *6)) (-14 *5 (-1186)) (-4 *6 (-1058)) (-4 *8 (-1058)) (-5 *2 (-1249 *7 *8)) (-5 *1 (-1244 *5 *6 *7 *8)) (-14 *7 (-1186)))))
-(-10 -7 (-15 -1351 ((-1249 |#3| |#4|) (-1 |#4| |#2|) (-1249 |#1| |#2|))))
-((-2504 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-3643 ((|#1| |#3|) 13)) (-1443 ((|#3| |#3|) 19)))
-(((-1245 |#1| |#2| |#3|) (-10 -7 (-15 -3643 (|#1| |#3|)) (-15 -1443 (|#3| |#3|)) (-15 -2504 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-1252 |#2|)) (T -1245))
-((-2504 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1245 *4 *5 *3)) (-4 *3 (-1252 *5)))) (-1443 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-1245 *3 *4 *2)) (-4 *2 (-1252 *4)))) (-3643 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1245 *2 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3643 (|#1| |#3|)) (-15 -1443 (|#3| |#3|)) (-15 -2504 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-1676 (((-3 |#2| "failed") |#2| (-777) |#1|) 37)) (-2122 (((-3 |#2| "failed") |#2| (-777)) 38)) (-2276 (((-3 (-2 (|:| -4397 |#2|) (|:| -4410 |#2|)) "failed") |#2|) 52)) (-2212 (((-650 |#2|) |#2|) 54)) (-3067 (((-3 |#2| "failed") |#2| |#2|) 48)))
-(((-1246 |#1| |#2|) (-10 -7 (-15 -2122 ((-3 |#2| "failed") |#2| (-777))) (-15 -1676 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -3067 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2276 ((-3 (-2 (|:| -4397 |#2|) (|:| -4410 |#2|)) "failed") |#2|)) (-15 -2212 ((-650 |#2|) |#2|))) (-13 (-562) (-148)) (-1252 |#1|)) (T -1246))
-((-2212 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3)) (-5 *1 (-1246 *4 *3)) (-4 *3 (-1252 *4)))) (-2276 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| -4397 *3) (|:| -4410 *3))) (-5 *1 (-1246 *4 *3)) (-4 *3 (-1252 *4)))) (-3067 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1246 *3 *2)) (-4 *2 (-1252 *3)))) (-1676 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1246 *4 *2)) (-4 *2 (-1252 *4)))) (-2122 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1246 *4 *2)) (-4 *2 (-1252 *4)))))
-(-10 -7 (-15 -2122 ((-3 |#2| "failed") |#2| (-777))) (-15 -1676 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -3067 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2276 ((-3 (-2 (|:| -4397 |#2|) (|:| -4410 |#2|)) "failed") |#2|)) (-15 -2212 ((-650 |#2|) |#2|)))
-((-3395 (((-3 (-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) "failed") |#2| |#2|) 30)))
-(((-1247 |#1| |#2|) (-10 -7 (-15 -3395 ((-3 (-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) "failed") |#2| |#2|))) (-562) (-1252 |#1|)) (T -1247))
-((-3395 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1252 *4)))))
-(-10 -7 (-15 -3395 ((-3 (-2 (|:| -3331 |#2|) (|:| -2785 |#2|)) "failed") |#2| |#2|)))
-((-1497 ((|#2| |#2| |#2|) 22)) (-3019 ((|#2| |#2| |#2|) 36)) (-3601 ((|#2| |#2| |#2| (-777) (-777)) 44)))
-(((-1248 |#1| |#2|) (-10 -7 (-15 -1497 (|#2| |#2| |#2|)) (-15 -3019 (|#2| |#2| |#2|)) (-15 -3601 (|#2| |#2| |#2| (-777) (-777)))) (-1058) (-1252 |#1|)) (T -1248))
-((-3601 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1248 *4 *2)) (-4 *2 (-1252 *4)))) (-3019 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1248 *3 *2)) (-4 *2 (-1252 *3)))) (-1497 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1248 *3 *2)) (-4 *2 (-1252 *3)))))
-(-10 -7 (-15 -1497 (|#2| |#2| |#2|)) (-15 -3019 (|#2| |#2| |#2|)) (-15 -3601 (|#2| |#2| |#2| (-777) (-777))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3618 (((-1276 |#2|) $ (-777)) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-3930 (($ (-1182 |#2|)) NIL)) (-3703 (((-1182 $) $ (-1091)) NIL) (((-1182 |#2|) $) NIL)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3171 (($ $) NIL (|has| |#2| (-562)))) (-2720 (((-112) $) NIL (|has| |#2| (-562)))) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3766 (($ $ $) NIL (|has| |#2| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2222 (($ $) NIL (|has| |#2| (-458)))) (-1790 (((-424 $) $) NIL (|has| |#2| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4339 (((-112) $ $) NIL (|has| |#2| (-368)))) (-2662 (($ $ (-777)) NIL)) (-3008 (($ $ (-777)) NIL)) (-2105 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-458)))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-1091) $) NIL)) (-1939 (($ $ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $ $) NIL (|has| |#2| (-174)))) (-2372 (($ $ $) NIL (|has| |#2| (-368)))) (-1890 (($ $) NIL)) (-4177 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#2|)) (|:| |vec| (-1276 |#2|))) (-695 $) (-1276 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-2381 (($ $ $) NIL (|has| |#2| (-368)))) (-3252 (($ $ $) NIL)) (-1325 (($ $ $) NIL (|has| |#2| (-562)))) (-3369 (((-2 (|:| -1441 |#2|) (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-3543 (($ $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-1873 (((-650 $) $) NIL)) (-1552 (((-112) $) NIL (|has| |#2| (-916)))) (-3007 (($ $ |#2| (-777) $) NIL)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-3157 (((-777) $ $) NIL (|has| |#2| (-562)))) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-2885 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-1704 (($ (-1182 |#2|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-3553 (($ $ (-777)) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3872 (($ |#2| (-777)) 18) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1091)) NIL) (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL)) (-4341 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-4414 (($ (-1 (-777) (-777)) $) NIL)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3189 (((-1182 |#2|) $) NIL)) (-3382 (((-3 (-1091) "failed") $) NIL)) (-1855 (($ $) NIL)) (-1864 ((|#2| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1903 (((-1168) $) NIL)) (-3781 (((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777)) NIL)) (-1596 (((-3 (-650 $) "failed") $) NIL)) (-3751 (((-3 (-650 $) "failed") $) NIL)) (-3496 (((-3 (-2 (|:| |var| (-1091)) (|:| -1907 (-777))) "failed") $) NIL)) (-3555 (($ $) NIL (|has| |#2| (-38 (-413 (-570)))))) (-2314 (($) NIL (|has| |#2| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 ((|#2| $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-2096 (($ $ (-777) |#2| $) NIL)) (-1885 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3738 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#2| (-368)))) (-2407 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1730 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) NIL) (($ $ (-650 (-1091)) (-650 |#2|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2272 (((-777) $) NIL (|has| |#2| (-368)))) (-1876 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#2| (-562))) ((|#2| (-413 $) |#2|) NIL (|has| |#2| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#2| (-562)))) (-4112 (((-3 $ "failed") $ (-777)) NIL)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#2| (-368)))) (-2998 (($ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-1601 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1416 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3030 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-2486 (((-3 $ "failed") $ $) NIL (|has| |#2| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#2| (-562)))) (-3735 (((-868) $) 13) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) NIL) (($ (-1272 |#1|)) 20) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1918 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1812 (($) NIL T CONST)) (-1823 (($) 14 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1249 |#1| |#2|) (-13 (-1252 |#2|) (-622 (-1272 |#1|)) (-10 -8 (-15 -2096 ($ $ (-777) |#2| $)))) (-1186) (-1058)) (T -1249))
-((-2096 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1249 *4 *3)) (-14 *4 (-1186)) (-4 *3 (-1058)))))
-(-13 (-1252 |#2|) (-622 (-1272 |#1|)) (-10 -8 (-15 -2096 ($ $ (-777) |#2| $))))
-((-1351 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
-(((-1250 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-1252 |#1|) (-1058) (-1252 |#3|)) (T -1250))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *2 (-1252 *6)) (-5 *1 (-1250 *5 *4 *6 *2)) (-4 *4 (-1252 *5)))))
-(-10 -7 (-15 -1351 (|#4| (-1 |#3| |#1|) |#2|)))
-((-3618 (((-1276 |#2|) $ (-777)) 129)) (-1716 (((-650 (-1091)) $) 16)) (-3930 (($ (-1182 |#2|)) 80)) (-3462 (((-777) $) NIL) (((-777) $ (-650 (-1091))) 21)) (-2615 (((-424 (-1182 $)) (-1182 $)) 204)) (-2222 (($ $) 194)) (-1790 (((-424 $) $) 192)) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 95)) (-2662 (($ $ (-777)) 84)) (-3008 (($ $ (-777)) 86)) (-2105 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 145)) (-4378 (((-3 |#2| "failed") $) 132) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#2| $) 130) (((-413 (-570)) $) NIL) (((-570) $) NIL) (((-1091) $) NIL)) (-1325 (($ $ $) 170)) (-3369 (((-2 (|:| -1441 |#2|) (|:| -3331 $) (|:| -2785 $)) $ $) 172)) (-3157 (((-777) $ $) 189)) (-2885 (((-3 $ "failed") $) 138)) (-3872 (($ |#2| (-777)) NIL) (($ $ (-1091) (-777)) 59) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-4341 (((-777) $) NIL) (((-777) $ (-1091)) 54) (((-650 (-777)) $ (-650 (-1091))) 55)) (-3189 (((-1182 |#2|) $) 72)) (-3382 (((-3 (-1091) "failed") $) 52)) (-3781 (((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777)) 83)) (-3555 (($ $) 219)) (-2314 (($) 134)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 201)) (-1885 (((-424 (-1182 $)) (-1182 $)) 101)) (-1495 (((-424 (-1182 $)) (-1182 $)) 99)) (-3738 (((-424 $) $) 120)) (-1730 (($ $ (-650 (-298 $))) 51) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) 39) (($ $ (-650 (-1091)) (-650 |#2|)) 36) (($ $ (-1091) $) 32) (($ $ (-650 (-1091)) (-650 $)) 30)) (-2272 (((-777) $) 207)) (-1876 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) 164) ((|#2| (-413 $) |#2|) 206) (((-413 $) $ (-413 $)) 188)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 212)) (-3447 (($ $ (-1091)) 157) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) 155) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 154) (($ $ (-1 |#2| |#2|) $) 149)) (-1601 (((-777) $) NIL) (((-777) $ (-1091)) 17) (((-650 (-777)) $ (-650 (-1091))) 23)) (-3030 ((|#2| $) NIL) (($ $ (-1091)) 140)) (-2486 (((-3 $ "failed") $ $) 180) (((-3 (-413 $) "failed") (-413 $) $) 176)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) 64) (($ (-413 (-570))) NIL) (($ $) NIL)))
-(((-1251 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -2222 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -1876 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2272 ((-777) |#1|)) (-15 -2382 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -3555 (|#1| |#1|)) (-15 -1876 (|#2| (-413 |#1|) |#2|)) (-15 -2105 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3369 ((-2 (|:| -1441 |#2|) (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -1325 (|#1| |#1| |#1|)) (-15 -2486 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -2486 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3157 ((-777) |#1| |#1|)) (-15 -1876 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3008 (|#1| |#1| (-777))) (-15 -2662 (|#1| |#1| (-777))) (-15 -3781 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| (-777))) (-15 -3930 (|#1| (-1182 |#2|))) (-15 -3189 ((-1182 |#2|) |#1|)) (-15 -3618 ((-1276 |#2|) |#1| (-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -1876 (|#1| |#1| |#1|)) (-15 -1876 (|#2| |#1| |#2|)) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -2615 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1495 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1885 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3030 (|#1| |#1| (-1091))) (-15 -1716 ((-650 (-1091)) |#1|)) (-15 -3462 ((-777) |#1| (-650 (-1091)))) (-15 -3462 ((-777) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3872 (|#1| |#1| (-1091) (-777))) (-15 -4341 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -4341 ((-777) |#1| (-1091))) (-15 -3382 ((-3 (-1091) "failed") |#1|)) (-15 -1601 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -1601 ((-777) |#1| (-1091))) (-15 -3735 (|#1| (-1091))) (-15 -4378 ((-3 (-1091) "failed") |#1|)) (-15 -3080 ((-1091) |#1|)) (-15 -1730 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1730 (|#1| |#1| (-1091) |#1|)) (-15 -1730 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1730 (|#1| |#1| (-1091) |#2|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1601 ((-777) |#1|)) (-15 -3872 (|#1| |#2| (-777))) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4341 ((-777) |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -3447 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1091) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1091)))) (-15 -3447 (|#1| |#1| (-1091))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1252 |#2|) (-1058)) (T -1251))
-NIL
-(-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -3450 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1790 ((-424 |#1|) |#1|)) (-15 -2222 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -2314 (|#1|)) (-15 -2885 ((-3 |#1| "failed") |#1|)) (-15 -1876 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2272 ((-777) |#1|)) (-15 -2382 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -3555 (|#1| |#1|)) (-15 -1876 (|#2| (-413 |#1|) |#2|)) (-15 -2105 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3369 ((-2 (|:| -1441 |#2|) (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| |#1|)) (-15 -1325 (|#1| |#1| |#1|)) (-15 -2486 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -2486 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3157 ((-777) |#1| |#1|)) (-15 -1876 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3008 (|#1| |#1| (-777))) (-15 -2662 (|#1| |#1| (-777))) (-15 -3781 ((-2 (|:| -3331 |#1|) (|:| -2785 |#1|)) |#1| (-777))) (-15 -3930 (|#1| (-1182 |#2|))) (-15 -3189 ((-1182 |#2|) |#1|)) (-15 -3618 ((-1276 |#2|) |#1| (-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -1876 (|#1| |#1| |#1|)) (-15 -1876 (|#2| |#1| |#2|)) (-15 -3738 ((-424 |#1|) |#1|)) (-15 -2615 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1495 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1885 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3030 (|#1| |#1| (-1091))) (-15 -1716 ((-650 (-1091)) |#1|)) (-15 -3462 ((-777) |#1| (-650 (-1091)))) (-15 -3462 ((-777) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3872 (|#1| |#1| (-1091) (-777))) (-15 -4341 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -4341 ((-777) |#1| (-1091))) (-15 -3382 ((-3 (-1091) "failed") |#1|)) (-15 -1601 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -1601 ((-777) |#1| (-1091))) (-15 -3735 (|#1| (-1091))) (-15 -4378 ((-3 (-1091) "failed") |#1|)) (-15 -3080 ((-1091) |#1|)) (-15 -1730 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1730 (|#1| |#1| (-1091) |#1|)) (-15 -1730 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1730 (|#1| |#1| (-1091) |#2|)) (-15 -1730 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1730 (|#1| |#1| |#1| |#1|)) (-15 -1730 (|#1| |#1| (-298 |#1|))) (-15 -1730 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1601 ((-777) |#1|)) (-15 -3872 (|#1| |#2| (-777))) (-15 -4378 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4378 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4378 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -4341 ((-777) |#1|)) (-15 -3030 (|#2| |#1|)) (-15 -3447 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1091) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1091)))) (-15 -3447 (|#1| |#1| (-1091))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3618 (((-1276 |#1|) $ (-777)) 240)) (-1716 (((-650 (-1091)) $) 112)) (-3930 (($ (-1182 |#1|)) 238)) (-3703 (((-1182 $) $ (-1091)) 127) (((-1182 |#1|) $) 126)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3171 (($ $) 90 (|has| |#1| (-562)))) (-2720 (((-112) $) 92 (|has| |#1| (-562)))) (-3462 (((-777) $) 114) (((-777) $ (-650 (-1091))) 113)) (-3596 (((-3 $ "failed") $ $) 20)) (-3766 (($ $ $) 225 (|has| |#1| (-562)))) (-2615 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-2222 (($ $) 100 (|has| |#1| (-458)))) (-1790 (((-424 $) $) 99 (|has| |#1| (-458)))) (-1659 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-4339 (((-112) $ $) 210 (|has| |#1| (-368)))) (-2662 (($ $ (-777)) 233)) (-3008 (($ $ (-777)) 232)) (-2105 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 220 (|has| |#1| (-458)))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) 138)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) (((-1091) $) 139)) (-1939 (($ $ $ (-1091)) 110 (|has| |#1| (-174))) ((|#1| $ $) 228 (|has| |#1| (-174)))) (-2372 (($ $ $) 214 (|has| |#1| (-368)))) (-1890 (($ $) 156)) (-4177 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 (-570))) (|:| |vec| (-1276 (-570)))) (-695 $) (-1276 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -3442 (-695 |#1|)) (|:| |vec| (-1276 |#1|))) (-695 $) (-1276 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 213 (|has| |#1| (-368)))) (-3252 (($ $ $) 231)) (-1325 (($ $ $) 222 (|has| |#1| (-562)))) (-3369 (((-2 (|:| -1441 |#1|) (|:| -3331 $) (|:| -2785 $)) $ $) 221 (|has| |#1| (-562)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 208 (|has| |#1| (-368)))) (-3543 (($ $) 178 (|has| |#1| (-458))) (($ $ (-1091)) 107 (|has| |#1| (-458)))) (-1873 (((-650 $) $) 111)) (-1552 (((-112) $) 98 (|has| |#1| (-916)))) (-3007 (($ $ |#1| (-777) $) 174)) (-2822 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-3157 (((-777) $ $) 226 (|has| |#1| (-562)))) (-2081 (((-112) $) 35)) (-3797 (((-777) $) 171)) (-2885 (((-3 $ "failed") $) 206 (|has| |#1| (-1161)))) (-1704 (($ (-1182 |#1|) (-1091)) 119) (($ (-1182 $) (-1091)) 118)) (-3553 (($ $ (-777)) 237)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 217 (|has| |#1| (-368)))) (-1435 (((-650 $) $) 128)) (-1550 (((-112) $) 154)) (-3872 (($ |#1| (-777)) 155) (($ $ (-1091) (-777)) 121) (($ $ (-650 (-1091)) (-650 (-777))) 120)) (-2766 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $ (-1091)) 122) (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 235)) (-4341 (((-777) $) 172) (((-777) $ (-1091)) 124) (((-650 (-777)) $ (-650 (-1091))) 123)) (-4414 (($ (-1 (-777) (-777)) $) 173)) (-1351 (($ (-1 |#1| |#1|) $) 153)) (-3189 (((-1182 |#1|) $) 239)) (-3382 (((-3 (-1091) "failed") $) 125)) (-1855 (($ $) 151)) (-1864 ((|#1| $) 150)) (-1845 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1903 (((-1168) $) 10)) (-3781 (((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777)) 234)) (-1596 (((-3 (-650 $) "failed") $) 116)) (-3751 (((-3 (-650 $) "failed") $) 117)) (-3496 (((-3 (-2 (|:| |var| (-1091)) (|:| -1907 (-777))) "failed") $) 115)) (-3555 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2314 (($) 205 (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) 11)) (-1834 (((-112) $) 168)) (-1842 ((|#1| $) 169)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1885 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1495 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3738 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 216 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 215 (|has| |#1| (-368)))) (-2407 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 209 (|has| |#1| (-368)))) (-1730 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ (-1091) |#1|) 143) (($ $ (-650 (-1091)) (-650 |#1|)) 142) (($ $ (-1091) $) 141) (($ $ (-650 (-1091)) (-650 $)) 140)) (-2272 (((-777) $) 211 (|has| |#1| (-368)))) (-1876 ((|#1| $ |#1|) 258) (($ $ $) 257) (((-413 $) (-413 $) (-413 $)) 227 (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) 219 (|has| |#1| (-368))) (((-413 $) $ (-413 $)) 207 (|has| |#1| (-562)))) (-4112 (((-3 $ "failed") $ (-777)) 236)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 212 (|has| |#1| (-368)))) (-2998 (($ $ (-1091)) 109 (|has| |#1| (-174))) ((|#1| $) 229 (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) 46) (($ $ (-650 (-1091))) 45) (($ $ (-1091) (-777)) 44) (($ $ (-650 (-1091)) (-650 (-777))) 43) (($ $ (-777)) 255) (($ $) 253) (($ $ (-1186)) 252 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 251 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 250 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 249 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 242) (($ $ (-1 |#1| |#1|)) 241) (($ $ (-1 |#1| |#1|) $) 230)) (-1601 (((-777) $) 152) (((-777) $ (-1091)) 132) (((-650 (-777)) $ (-650 (-1091))) 131)) (-1416 (((-899 (-384)) $) 84 (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3030 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ (-1091)) 108 (|has| |#1| (-458)))) (-4057 (((-3 (-1276 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-2486 (((-3 $ "failed") $ $) 224 (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) 223 (|has| |#1| (-562)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ (-1091)) 137) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-3009 (((-650 |#1|) $) 170)) (-1715 ((|#1| $ (-777)) 157) (($ $ (-1091) (-777)) 130) (($ $ (-650 (-1091)) (-650 (-777))) 129)) (-1918 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2744 (((-777)) 32 T CONST)) (-3644 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-1091)) 42) (($ $ (-650 (-1091))) 41) (($ $ (-1091) (-777)) 40) (($ $ (-650 (-1091)) (-650 (-777))) 39) (($ $ (-777)) 256) (($ $) 254) (($ $ (-1186)) 248 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 247 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 246 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 245 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 244) (($ $ (-1 |#1| |#1|)) 243)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
-(((-1252 |#1|) (-141) (-1058)) (T -1252))
-((-3618 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1252 *4)) (-4 *4 (-1058)) (-5 *2 (-1276 *4)))) (-3189 (*1 *2 *1) (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))) (-3930 (*1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1252 *3)))) (-3553 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))) (-4112 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))) (-2766 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1252 *3)))) (-3781 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1252 *4)))) (-2662 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))) (-3008 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))) (-3252 (*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)))) (-3447 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))) (-2998 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-1939 (*1 *2 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-1876 (*1 *2 *2 *2) (-12 (-5 *2 (-413 *1)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-3157 (*1 *2 *1 *1) (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1058)) (-4 *3 (-562)) (-5 *2 (-777)))) (-3766 (*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2486 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2486 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-413 *1)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-1325 (*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-3369 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -1441 *3) (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1252 *3)))) (-2105 (*1 *2 *1 *1) (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1252 *3)))) (-1876 (*1 *2 *3 *2) (-12 (-5 *3 (-413 *1)) (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3555 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))))
-(-13 (-956 |t#1| (-777) (-1091)) (-290 |t#1| |t#1|) (-290 $ $) (-235) (-233 |t#1|) (-10 -8 (-15 -3618 ((-1276 |t#1|) $ (-777))) (-15 -3189 ((-1182 |t#1|) $)) (-15 -3930 ($ (-1182 |t#1|))) (-15 -3553 ($ $ (-777))) (-15 -4112 ((-3 $ "failed") $ (-777))) (-15 -2766 ((-2 (|:| -3331 $) (|:| -2785 $)) $ $)) (-15 -3781 ((-2 (|:| -3331 $) (|:| -2785 $)) $ (-777))) (-15 -2662 ($ $ (-777))) (-15 -3008 ($ $ (-777))) (-15 -3252 ($ $ $)) (-15 -3447 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1161)) (-6 (-1161)) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-15 -2998 (|t#1| $)) (-15 -1939 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-6 (-290 (-413 $) (-413 $))) (-15 -1876 ((-413 $) (-413 $) (-413 $))) (-15 -3157 ((-777) $ $)) (-15 -3766 ($ $ $)) (-15 -2486 ((-3 $ "failed") $ $)) (-15 -2486 ((-3 (-413 $) "failed") (-413 $) $)) (-15 -1325 ($ $ $)) (-15 -3369 ((-2 (|:| -1441 |t#1|) (|:| -3331 $) (|:| -2785 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (-15 -2105 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-311)) (-6 -4444) (-15 -1876 (|t#1| (-413 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (-15 -3555 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-777)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 #2=(-1091)) . T) ((-622 |#1|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570))))) ((-233 |#1|) . T) ((-235) . T) ((-290 (-413 $) (-413 $)) |has| |#1| (-562)) ((-290 |#1| |#1|) . T) ((-290 $ $) . T) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-313 $) . T) ((-330 |#1| #0#) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-520 #2# |#1|) . T) ((-520 #2# $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-652 #1#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #1#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-732) . T) ((-907 #2#) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-893 (-384)) -12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384)))) ((-893 (-570)) -12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))) ((-956 |#1| #0# #2#) . T) ((-916) |has| |#1| (-916)) ((-927) |has| |#1| (-368)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #2#) . T) ((-1047 |#1|) . T) ((-1060 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-1161)) ((-1230) |has| |#1| (-916)))
-((-1716 (((-650 (-1091)) $) 34)) (-1890 (($ $) 31)) (-3872 (($ |#2| |#3|) NIL) (($ $ (-1091) |#3|) 28) (($ $ (-650 (-1091)) (-650 |#3|)) 27)) (-1855 (($ $) 14)) (-1864 ((|#2| $) 12)) (-1601 ((|#3| $) 10)))
-(((-1253 |#1| |#2| |#3|) (-10 -8 (-15 -1716 ((-650 (-1091)) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3872 (|#1| |#1| (-1091) |#3|)) (-15 -1890 (|#1| |#1|)) (-15 -3872 (|#1| |#2| |#3|)) (-15 -1601 (|#3| |#1|)) (-15 -1855 (|#1| |#1|)) (-15 -1864 (|#2| |#1|))) (-1254 |#2| |#3|) (-1058) (-798)) (T -1253))
-NIL
-(-10 -8 (-15 -1716 ((-650 (-1091)) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3872 (|#1| |#1| (-1091) |#3|)) (-15 -1890 (|#1| |#1|)) (-15 -3872 (|#1| |#2| |#3|)) (-15 -1601 (|#3| |#1|)) (-15 -1855 (|#1| |#1|)) (-15 -1864 (|#2| |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3316 (($ $ |#2|) 110) (($ $ |#2| |#2|) 109)) (-2230 (((-1166 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 117)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-4232 (((-112) $) 85)) (-3157 ((|#2| $) 112) ((|#2| $ |#2|) 111)) (-2081 (((-112) $) 35)) (-3553 (($ $ (-928)) 113)) (-1550 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73) (($ $ (-1091) |#2|) 88) (($ $ (-650 (-1091)) (-650 |#2|)) 87)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1558 (($ $ |#2|) 107)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1730 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-1876 ((|#1| $ |#2|) 116) (($ $ $) 93 (|has| |#2| (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1601 ((|#2| $) 76)) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1715 ((|#1| $ |#2|) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-2177 ((|#1| $) 114)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-3026 ((|#1| $ |#2|) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
-(((-1254 |#1| |#2|) (-141) (-1058) (-798)) (T -1254))
-((-2230 (*1 *2 *1) (-12 (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1876 (*1 *2 *1 *3) (-12 (-4 *1 (-1254 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2643 (*1 *2 *1) (-12 (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1186)))) (-2177 (*1 *2 *1) (-12 (-4 *1 (-1254 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-3553 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3157 (*1 *2 *1 *2) (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3316 (*1 *1 *1 *2) (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3316 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3026 (*1 *2 *1 *3) (-12 (-4 *1 (-1254 *2 *3)) (-4 *3 (-798)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3735 (*2 (-1186)))) (-4 *2 (-1058)))) (-1558 (*1 *1 *1 *2) (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1730 (*1 *2 *1 *3) (-12 (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1166 *3)))))
-(-13 (-982 |t#1| |t#2| (-1091)) (-10 -8 (-15 -2230 ((-1166 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1876 (|t#1| $ |t#2|)) (-15 -2643 ((-1186) $)) (-15 -2177 (|t#1| $)) (-15 -3553 ($ $ (-928))) (-15 -3157 (|t#2| $)) (-15 -3157 (|t#2| $ |t#2|)) (-15 -3316 ($ $ |t#2|)) (-15 -3316 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3735 (|t#1| (-1186)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3026 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -1558 ($ $ |t#2|)) (IF (|has| |t#2| (-1121)) (-6 (-290 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-235)) (IF (|has| |t#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1730 ((-1166 |t#1|) $ |t#1|)) |%noBranch|)))
+((-1352 (((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)) 23)))
+(((-1236 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1352 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1236))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1241 *5 *7 *9)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-14 *7 (-1186)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1241 *6 *8 *10)) (-5 *1 (-1236 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1186)))))
+(-10 -7 (-15 -1352 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-3235 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-3345 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 174 (|has| |#1| (-368)))) (-1378 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3754 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) 18 T CONST)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-2093 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-2382 (($ $ $) 168 (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-4037 (((-112) $) 176 (|has| |#1| (-368)))) (-4217 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-570) $) 112) (((-570) $ (-570)) 111)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) 113)) (-4059 (($ (-1 |#1| (-570)) $) 184)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-4016 (((-112) $) 74)) (-3872 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-1847 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-4268 (((-1168) $) 10)) (-1826 (($ $) 177 (|has| |#1| (-368)))) (-3722 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3739 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 170 (|has| |#1| (-368)))) (-4102 (($ $ (-570)) 107)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4388 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-2547 (((-777) $) 166 (|has| |#1| (-368)))) (-1877 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-3221 (((-570) $) 76)) (-4098 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1983 ((|#1| $ (-570)) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-2178 ((|#1| $) 114)) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4112 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-570) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(((-1237 |#1|) (-141) (-1058)) (T -1237))
+((-3253 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1237 *3)))) (-4059 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1237 *3)) (-4 *3 (-1058)))) (-2093 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-2093 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-3722 (*1 *1 *1) (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-3722 (*1 *1 *1 *2) (-2740 (-12 (-5 *2 (-1186)) (-4 *1 (-1237 *3)) (-4 *3 (-1058)) (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1212)) (-4 *3 (-38 (-413 (-570)))))) (-12 (-5 *2 (-1186)) (-4 *1 (-1237 *3)) (-4 *3 (-1058)) (-12 (|has| *3 (-15 -1713 ((-650 *2) *3))) (|has| *3 (-15 -3722 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
+(-13 (-1255 |t#1| (-570)) (-10 -8 (-15 -3253 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |t#1|))))) (-15 -4059 ($ (-1 |t#1| (-570)) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -2093 ((-413 (-959 |t#1|)) $ (-570))) (-15 -2093 ((-413 (-959 |t#1|)) $ (-570) (-570)))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $)) (IF (|has| |t#1| (-15 -3722 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1713 ((-650 (-1186)) |t#1|))) (-15 -3722 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -3722 ($ $ (-1186))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1011)) (-6 (-1212))) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-570)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-570) |#1|))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-570) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-368) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1212) |has| |#1| (-38 (-413 (-570)))) ((-1215) |has| |#1| (-38 (-413 (-570)))) ((-1231) |has| |#1| (-368)) ((-1255 |#1| #0#) . T))
+((-2745 (((-112) $) 12)) (-4379 (((-3 |#3| "failed") $) 17) (((-3 (-1186) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL)) (-3080 ((|#3| $) 14) (((-1186) $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL)))
+(((-1238 |#1| |#2| |#3|) (-10 -8 (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -2745 ((-112) |#1|))) (-1239 |#2| |#3|) (-1058) (-1268 |#2|)) (T -1238))
+NIL
+(-10 -8 (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -4379 ((-3 (-1186) "failed") |#1|)) (-15 -3080 ((-1186) |#1|)) (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -2745 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3113 ((|#2| $) 242 (-1765 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1713 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-3235 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-3345 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2392 ((|#2| $) 278)) (-3539 (((-3 |#2| "failed") $) 274)) (-1781 ((|#2| $) 275)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) 20)) (-2810 (((-424 (-1182 $)) (-1182 $)) 251 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3252 (($ $) 174 (|has| |#1| (-368)))) (-1378 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3754 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 248 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2707 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-2249 (((-570) $) 260 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3253 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#2| "failed") $) 281) (((-3 (-570) "failed") $) 271 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) 269 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-1186) "failed") $) 253 (-1765 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-3080 ((|#2| $) 282) (((-570) $) 270 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-413 (-570)) $) 268 (-1765 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-1186) $) 252 (-1765 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-2998 (($ $) 277) (($ (-570) $) 276)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1891 (($ $) 72)) (-1836 (((-695 |#2|) (-695 $)) 232 (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 231 (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 230 (-1765 (|has| |#2| (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) 229 (-1765 (|has| |#2| (-645 (-570))) (|has| |#1| (-368))))) (-2937 (((-3 $ "failed") $) 37)) (-2093 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-3336 (($) 244 (-1765 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2382 (($ $ $) 168 (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-4037 (((-112) $) 176 (|has| |#1| (-368)))) (-3703 (((-112) $) 258 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-4217 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 236 (-1765 (|has| |#2| (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 235 (-1765 (|has| |#2| (-893 (-570))) (|has| |#1| (-368))))) (-4331 (((-570) $) 112) (((-570) $ (-570)) 111)) (-4340 (((-112) $) 35)) (-1607 (($ $) 240 (|has| |#1| (-368)))) (-4399 ((|#2| $) 238 (|has| |#1| (-368)))) (-2665 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3584 (((-3 $ "failed") $) 272 (-1765 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-1774 (((-112) $) 259 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1876 (($ $ (-928)) 113)) (-4059 (($ (-1 |#1| (-570)) $) 184)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-4016 (((-112) $) 74)) (-3872 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-3311 (($ $ $) 262 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2222 (($ $ $) 263 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1352 (($ (-1 |#1| |#1|) $) 75) (($ (-1 |#2| |#2|) $) 224 (|has| |#1| (-368)))) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-1847 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1793 (($ (-570) |#2|) 279)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 177 (|has| |#1| (-368)))) (-3722 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-2315 (($) 273 (-1765 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-2442 (($ $) 243 (-1765 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-2962 ((|#2| $) 246 (-1765 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-4086 (((-424 (-1182 $)) (-1182 $)) 249 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1627 (((-424 (-1182 $)) (-1182 $)) 250 (-1765 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3739 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 170 (|has| |#1| (-368)))) (-4102 (($ $ (-570)) 107)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4388 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) |#2|) 223 (-1765 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 |#2|)) 222 (-1765 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-298 |#2|))) 221 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-298 |#2|)) 220 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ |#2| |#2|) 219 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-650 |#2|) (-650 |#2|)) 218 (-1765 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368))))) (-2547 (((-777) $) 166 (|has| |#1| (-368)))) (-1877 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121))) (($ $ |#2|) 217 (-1765 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-1 |#2| |#2|)) 228 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 227 (|has| |#1| (-368))) (($ $ (-777)) 96 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 94 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 101 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 100 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 99 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 98 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-4428 (($ $) 241 (|has| |#1| (-368)))) (-4413 ((|#2| $) 239 (|has| |#1| (-368)))) (-3221 (((-570) $) 76)) (-4098 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1417 (((-227) $) 257 (-1765 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-384) $) 256 (-1765 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-542) $) 255 (-1765 (|has| |#2| (-620 (-542))) (|has| |#1| (-368)))) (((-899 (-384)) $) 234 (-1765 (|has| |#2| (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) 233 (-1765 (|has| |#2| (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 247 (-1765 (-1765 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#1| (-368))))) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 280) (($ (-1186)) 254 (-1765 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368)))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1983 ((|#1| $ (-570)) 71)) (-3127 (((-3 $ "failed") $) 60 (-2740 (-1765 (-2740 (|has| |#2| (-146)) (-1765 (|has| $ (-146)) (|has| |#2| (-916)))) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-1609 (((-777)) 32 T CONST)) (-2178 ((|#1| $) 114)) (-1963 ((|#2| $) 245 (-1765 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4112 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1367 (($ $) 261 (-1765 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) 226 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 225 (|has| |#1| (-368))) (($ $ (-777)) 97 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 95 (-2740 (-1765 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 105 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 104 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 103 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 102 (-2740 (-1765 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-2924 (((-112) $ $) 265 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2904 (((-112) $ $) 266 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2872 (((-112) $ $) 6)) (-2914 (((-112) $ $) 264 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2894 (((-112) $ $) 267 (-1765 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368))) (($ |#2| |#2|) 237 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ $ |#2|) 216 (|has| |#1| (-368))) (($ |#2| $) 215 (|has| |#1| (-368))) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(((-1239 |#1| |#2|) (-141) (-1058) (-1268 |t#1|)) (T -1239))
+((-3221 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3)) (-5 *2 (-570)))) (-1793 (*1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *4 (-1058)) (-4 *1 (-1239 *4 *3)) (-4 *3 (-1268 *4)))) (-2392 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))) (-2998 (*1 *1 *1) (-12 (-4 *1 (-1239 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1268 *2)))) (-2998 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3)))) (-1781 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))) (-3539 (*1 *2 *1) (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))))
+(-13 (-1237 |t#1|) (-1047 |t#2|) (-622 |t#2|) (-10 -8 (-15 -1793 ($ (-570) |t#2|)) (-15 -3221 ((-570) $)) (-15 -2392 (|t#2| $)) (-15 -2998 ($ $)) (-15 -2998 ($ (-570) $)) (-15 -1781 (|t#2| $)) (-15 -3539 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-368)) (-6 (-1001 |t#2|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-570)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 |#2|) |has| |#1| (-368)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-368)) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-146))) (|has| |#1| (-146))) ((-148) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-148))) (|has| |#1| (-148))) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 #2=(-1186)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) ((-622 |#1|) |has| |#1| (-174)) ((-622 |#2|) . T) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-620 (-227)) -12 (|has| |#1| (-368)) (|has| |#2| (-1031))) ((-620 (-384)) -12 (|has| |#1| (-368)) (|has| |#2| (-1031))) ((-620 (-542)) -12 (|has| |#1| (-368)) (|has| |#2| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| |#1| (-368)) (|has| |#2| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| |#1| (-368)) (|has| |#2| (-620 (-899 (-570))))) ((-233 |#2|) |has| |#1| (-368)) ((-235) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-235))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 |#2| $) -12 (|has| |#1| (-368)) (|has| |#2| (-290 |#2| |#2|))) ((-290 $ $) |has| (-570) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-313 |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-313 |#2|))) ((-368) |has| |#1| (-368)) ((-343 |#2|) |has| |#1| (-368)) ((-382 |#2|) |has| |#1| (-368)) ((-406 |#2|) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-520 (-1186) |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-520 (-1186) |#2|))) ((-520 |#2| |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-313 |#2|))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 |#2|) |has| |#1| (-368)) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 |#2|) |has| |#1| (-368)) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 |#2|) |has| |#1| (-368)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-645 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-645 (-570)))) ((-645 |#2|) |has| |#1| (-368)) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 |#2|) |has| |#1| (-368)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-797) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-798) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-800) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-801) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-826) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-854) -12 (|has| |#1| (-368)) (|has| |#2| (-826))) ((-856) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-856))) (-12 (|has| |#1| (-368)) (|has| |#2| (-826)))) ((-907 (-1186)) -2740 (-12 (|has| |#1| (-368)) (|has| |#2| (-907 (-1186)))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))) ((-893 (-384)) -12 (|has| |#1| (-368)) (|has| |#2| (-893 (-384)))) ((-893 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-893 (-570)))) ((-891 |#2|) |has| |#1| (-368)) ((-916) -12 (|has| |#1| (-368)) (|has| |#2| (-916))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1001 |#2|) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1031) -12 (|has| |#1| (-368)) (|has| |#2| (-1031))) ((-1047 (-413 (-570))) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-570)))) ((-1047 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-570)))) ((-1047 #2#) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) ((-1047 |#2|) . T) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 |#2|) |has| |#1| (-368)) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 |#2|) |has| |#1| (-368)) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) -12 (|has| |#1| (-368)) (|has| |#2| (-1161))) ((-1212) |has| |#1| (-38 (-413 (-570)))) ((-1215) |has| |#1| (-38 (-413 (-570)))) ((-1227) |has| |#1| (-368)) ((-1231) |has| |#1| (-368)) ((-1237 |#1|) . T) ((-1255 |#1| #0#) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 81)) (-3113 ((|#2| $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 100)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-570)) 109) (($ $ (-570) (-570)) 111)) (-3345 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 51)) (-2392 ((|#2| $) 11)) (-3539 (((-3 |#2| "failed") $) 35)) (-1781 ((|#2| $) 36)) (-2735 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-2249 (((-570) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3253 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 59)) (-4087 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) 157) (((-3 (-570) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-1186) "failed") $) NIL (-12 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-3080 ((|#2| $) 156) (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-1186) $) NIL (-12 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-2998 (($ $) 65) (($ (-570) $) 28)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-1836 (((-695 |#2|) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#1| (-368))))) (-2937 (((-3 $ "failed") $) 88)) (-2093 (((-413 (-959 |#1|)) $ (-570)) 124 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 126 (|has| |#1| (-562)))) (-3336 (($) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-3703 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-4217 (((-112) $) 74)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| |#2| (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| |#2| (-893 (-570))) (|has| |#1| (-368))))) (-4331 (((-570) $) 105) (((-570) $ (-570)) 107)) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL (|has| |#1| (-368)))) (-4399 ((|#2| $) 165 (|has| |#1| (-368)))) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3584 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-1774 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1876 (($ $ (-928)) 148)) (-4059 (($ (-1 |#1| (-570)) $) 144)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-570)) 20) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3311 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2222 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1352 (($ (-1 |#1| |#1|) $) 141) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-368)))) (-2635 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1793 (($ (-570) |#2|) 10)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 159 (|has| |#1| (-368)))) (-3722 (($ $) 228 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 233 (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-2315 (($) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2442 (($ $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-2962 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-570)) 138)) (-2406 (((-3 $ "failed") $ $) 128 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) |#2|) NIL (-12 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 |#2|)) NIL (-12 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-298 |#2|))) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-298 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-650 |#2|) (-650 |#2|)) NIL (-12 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-570)) 103) (($ $ $) 90 (|has| (-570) (-1121))) (($ $ |#2|) NIL (-12 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 149 (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) 153 (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-4428 (($ $) NIL (|has| |#1| (-368)))) (-4413 ((|#2| $) 166 (|has| |#1| (-368)))) (-3221 (((-570) $) 12)) (-4098 (($ $) 212 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-1417 (((-227) $) NIL (-12 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-384) $) NIL (-12 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-542) $) NIL (-12 (|has| |#2| (-620 (-542))) (|has| |#1| (-368)))) (((-899 (-384)) $) NIL (-12 (|has| |#2| (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) NIL (-12 (|has| |#2| (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2540 (($ $) 136)) (-3735 (((-868) $) 267) (($ (-570)) 24) (($ |#1|) 22 (|has| |#1| (-174))) (($ |#2|) 21) (($ (-1186)) NIL (-12 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368)))) (($ (-413 (-570))) 169 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1983 ((|#1| $ (-570)) 85)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))) (-12 (|has| |#2| (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-1609 (((-777)) 155 T CONST)) (-2178 ((|#1| $) 102)) (-1963 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) 214 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 222 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) 134 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 224 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 220 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 216 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-1367 (($ $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1814 (($) 13 T CONST)) (-1824 (($) 18 T CONST)) (-2791 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2740 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2924 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2904 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2872 (((-112) $ $) 72)) (-2914 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2894 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 163 (|has| |#1| (-368))) (($ |#2| |#2|) 164 (|has| |#1| (-368)))) (-2965 (($ $) 227) (($ $ $) 78)) (-2953 (($ $ $) 76)) (** (($ $ (-928)) NIL) (($ $ (-777)) 84) (($ $ (-570)) 160 (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 172 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 79) (($ $ |#1|) NIL) (($ |#1| $) 152) (($ $ |#2|) 162 (|has| |#1| (-368))) (($ |#2| $) 161 (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1240 |#1| |#2|) (-1239 |#1| |#2|) (-1058) (-1268 |#1|)) (T -1240))
+NIL
+(-1239 |#1| |#2|)
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3113 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 10)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1345 (($ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1372 (((-112) $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3235 (($ $ (-570)) NIL) (($ $ (-570) (-570)) NIL)) (-3345 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-2392 (((-1269 |#1| |#2| |#3|) $) NIL)) (-3539 (((-3 (-1269 |#1| |#2| |#3|) "failed") $) NIL)) (-1781 (((-1269 |#1| |#2| |#3|) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2249 (((-570) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3253 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-1269 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1186) "failed") $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-570) "failed") $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-3080 (((-1269 |#1| |#2| |#3|) $) NIL) (((-1186) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (((-413 (-570)) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368)))) (((-570) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))))) (-2998 (($ $) NIL) (($ (-570) $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-1269 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 (-1269 |#1| |#2| |#3|))) (|:| |vec| (-1277 (-1269 |#1| |#2| |#3|)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-645 (-570))) (|has| |#1| (-368))))) (-2937 (((-3 $ "failed") $) NIL)) (-2093 (((-413 (-959 |#1|)) $ (-570)) NIL (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) NIL (|has| |#1| (-562)))) (-3336 (($) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-3703 (((-112) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-893 (-570))) (|has| |#1| (-368))))) (-4331 (((-570) $) NIL) (((-570) $ (-570)) NIL)) (-4340 (((-112) $) NIL)) (-1607 (($ $) NIL (|has| |#1| (-368)))) (-4399 (((-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3584 (((-3 $ "failed") $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-1774 (((-112) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1876 (($ $ (-928)) NIL)) (-4059 (($ (-1 |#1| (-570)) $) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-570)) 18) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3311 (($ $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2222 (($ $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1793 (($ (-570) (-1269 |#1| |#2| |#3|)) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-3722 (($ $) 27 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 28 (|has| |#1| (-38 (-413 (-570)))))) (-2315 (($) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2442 (($ $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-2962 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-570)) NIL)) (-2406 (((-3 $ "failed") $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) (-1269 |#1| |#2| |#3|)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-520 (-1186) (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-1269 |#1| |#2| |#3|))) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-520 (-1186) (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-298 (-1269 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-313 (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-298 (-1269 |#1| |#2| |#3|))) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-313 (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-313 (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368)))) (($ $ (-650 (-1269 |#1| |#2| |#3|)) (-650 (-1269 |#1| |#2| |#3|))) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-313 (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-570)) NIL) (($ $ $) NIL (|has| (-570) (-1121))) (($ $ (-1269 |#1| |#2| |#3|)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-290 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (|has| |#1| (-368))))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-1273 |#2|)) 26) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 25 (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-4428 (($ $) NIL (|has| |#1| (-368)))) (-4413 (((-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-3221 (((-570) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1417 (((-542) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-620 (-542))) (|has| |#1| (-368)))) (((-384) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-227) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1031)) (|has| |#1| (-368)))) (((-899 (-384)) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1269 |#1| |#2| |#3|)) NIL) (($ (-1273 |#2|)) 24) (($ (-1186)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-1186))) (|has| |#1| (-368)))) (($ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562)))) (($ (-413 (-570))) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-1983 ((|#1| $ (-570)) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 11)) (-1963 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1367 (($ $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1814 (($) 20 T CONST)) (-1824 (($) 15 T CONST)) (-2791 (($ $ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) NIL (|has| |#1| (-368))) (($ $ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2924 (((-112) $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2904 (((-112) $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2872 (((-112) $ $) NIL)) (-2914 (((-112) $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2894 (((-112) $ $) NIL (-2740 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368))) (($ (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 22)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1269 |#1| |#2| |#3|)) NIL (|has| |#1| (-368))) (($ (-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1241 |#1| |#2| |#3|) (-13 (-1239 |#1| (-1269 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1241))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1239 |#1| (-1269 |#1| |#2| |#3|)) (-10 -8 (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-3553 (((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112)) 13)) (-2595 (((-424 |#1|) |#1|) 26)) (-3739 (((-424 |#1|) |#1|) 24)))
+(((-1242 |#1|) (-10 -7 (-15 -3739 ((-424 |#1|) |#1|)) (-15 -2595 ((-424 |#1|) |#1|)) (-15 -3553 ((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112)))) (-1253 (-570))) (T -1242))
+((-3553 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570))))))) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))) (-2595 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))) (-3739 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
+(-10 -7 (-15 -3739 ((-424 |#1|) |#1|)) (-15 -2595 ((-424 |#1|) |#1|)) (-15 -3553 ((-2 (|:| |contp| (-570)) (|:| -2773 (-650 (-2 (|:| |irr| |#1|) (|:| -2227 (-570)))))) |#1| (-112))))
+((-1352 (((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|)) 23 (|has| |#1| (-854))) (((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|)) 17)))
+(((-1243 |#1| |#2|) (-10 -7 (-15 -1352 ((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) (IF (|has| |#1| (-854)) (-15 -1352 ((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) |%noBranch|)) (-1227) (-1227)) (T -1243))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1244 *5)) (-4 *5 (-854)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1166 *6)) (-5 *1 (-1243 *5 *6)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1244 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1244 *6)) (-5 *1 (-1243 *5 *6)))))
+(-10 -7 (-15 -1352 ((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) (IF (|has| |#1| (-854)) (-15 -1352 ((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) |%noBranch|))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2782 (($ |#1| |#1|) 11) (($ |#1|) 10)) (-1352 (((-1166 |#1|) (-1 |#1| |#1|) $) 44 (|has| |#1| (-854)))) (-1794 ((|#1| $) 15)) (-1498 ((|#1| $) 12)) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1509 (((-570) $) 19)) (-3234 ((|#1| $) 18)) (-1819 ((|#1| $) 13)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1522 (((-112) $) 17)) (-1388 (((-1166 |#1|) $) 41 (|has| |#1| (-854))) (((-1166 |#1|) (-650 $)) 40 (|has| |#1| (-854)))) (-1417 (($ |#1|) 26)) (-3735 (($ (-1103 |#1|)) 25) (((-868) $) 37 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3576 (($ |#1| |#1|) 21) (($ |#1|) 20)) (-2657 (($ $ (-570)) 14)) (-2872 (((-112) $ $) 30 (|has| |#1| (-1109)))))
+(((-1244 |#1|) (-13 (-1102 |#1|) (-10 -8 (-15 -3576 ($ |#1|)) (-15 -2782 ($ |#1|)) (-15 -3735 ($ (-1103 |#1|))) (-15 -1522 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|))) (-1227)) (T -1244))
+((-3576 (*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))) (-2782 (*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1103 *3)) (-4 *3 (-1227)) (-5 *1 (-1244 *3)))) (-1522 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1244 *3)) (-4 *3 (-1227)))))
+(-13 (-1102 |#1|) (-10 -8 (-15 -3576 ($ |#1|)) (-15 -2782 ($ |#1|)) (-15 -3735 ($ (-1103 |#1|))) (-15 -1522 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|)))
+((-1352 (((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|)) 15)))
+(((-1245 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 ((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|)))) (-1186) (-1058) (-1186) (-1058)) (T -1245))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1250 *5 *6)) (-14 *5 (-1186)) (-4 *6 (-1058)) (-4 *8 (-1058)) (-5 *2 (-1250 *7 *8)) (-5 *1 (-1245 *5 *6 *7 *8)) (-14 *7 (-1186)))))
+(-10 -7 (-15 -1352 ((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|))))
+((-4295 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-3329 ((|#1| |#3|) 13)) (-1537 ((|#3| |#3|) 19)))
+(((-1246 |#1| |#2| |#3|) (-10 -7 (-15 -3329 (|#1| |#3|)) (-15 -1537 (|#3| |#3|)) (-15 -4295 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-1253 |#2|)) (T -1246))
+((-4295 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1246 *4 *5 *3)) (-4 *3 (-1253 *5)))) (-1537 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-1246 *3 *4 *2)) (-4 *2 (-1253 *4)))) (-3329 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1246 *2 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -3329 (|#1| |#3|)) (-15 -1537 (|#3| |#3|)) (-15 -4295 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-2742 (((-3 |#2| "failed") |#2| (-777) |#1|) 37)) (-1653 (((-3 |#2| "failed") |#2| (-777)) 38)) (-2578 (((-3 (-2 (|:| -4398 |#2|) (|:| -4411 |#2|)) "failed") |#2|) 52)) (-3133 (((-650 |#2|) |#2|) 54)) (-2715 (((-3 |#2| "failed") |#2| |#2|) 48)))
+(((-1247 |#1| |#2|) (-10 -7 (-15 -1653 ((-3 |#2| "failed") |#2| (-777))) (-15 -2742 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -2715 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2578 ((-3 (-2 (|:| -4398 |#2|) (|:| -4411 |#2|)) "failed") |#2|)) (-15 -3133 ((-650 |#2|) |#2|))) (-13 (-562) (-148)) (-1253 |#1|)) (T -1247))
+((-3133 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3)) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))) (-2578 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| -4398 *3) (|:| -4411 *3))) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))) (-2715 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1247 *3 *2)) (-4 *2 (-1253 *3)))) (-2742 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))) (-1653 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))))
+(-10 -7 (-15 -1653 ((-3 |#2| "failed") |#2| (-777))) (-15 -2742 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -2715 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2578 ((-3 (-2 (|:| -4398 |#2|) (|:| -4411 |#2|)) "failed") |#2|)) (-15 -3133 ((-650 |#2|) |#2|)))
+((-2787 (((-3 (-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) "failed") |#2| |#2|) 30)))
+(((-1248 |#1| |#2|) (-10 -7 (-15 -2787 ((-3 (-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) "failed") |#2| |#2|))) (-562) (-1253 |#1|)) (T -1248))
+((-2787 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-1248 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2787 ((-3 (-2 (|:| -3389 |#2|) (|:| -3831 |#2|)) "failed") |#2| |#2|)))
+((-1640 ((|#2| |#2| |#2|) 22)) (-3519 ((|#2| |#2| |#2|) 36)) (-4182 ((|#2| |#2| |#2| (-777) (-777)) 44)))
+(((-1249 |#1| |#2|) (-10 -7 (-15 -1640 (|#2| |#2| |#2|)) (-15 -3519 (|#2| |#2| |#2|)) (-15 -4182 (|#2| |#2| |#2| (-777) (-777)))) (-1058) (-1253 |#1|)) (T -1249))
+((-4182 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1249 *4 *2)) (-4 *2 (-1253 *4)))) (-3519 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))) (-1640 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -1640 (|#2| |#2| |#2|)) (-15 -3519 (|#2| |#2| |#2|)) (-15 -4182 (|#2| |#2| |#2| (-777) (-777))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3056 (((-1277 |#2|) $ (-777)) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-4267 (($ (-1182 |#2|)) NIL)) (-3702 (((-1182 $) $ (-1091)) NIL) (((-1182 |#2|) $) NIL)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-1345 (($ $) NIL (|has| |#2| (-562)))) (-1372 (((-112) $) NIL (|has| |#2| (-562)))) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-2037 (($ $ $) NIL (|has| |#2| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3252 (($ $) NIL (|has| |#2| (-458)))) (-1378 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2707 (((-112) $ $) NIL (|has| |#2| (-368)))) (-2038 (($ $ (-777)) NIL)) (-3393 (($ $ (-777)) NIL)) (-1484 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-458)))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-1091) $) NIL)) (-3383 (($ $ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $ $) NIL (|has| |#2| (-174)))) (-2372 (($ $ $) NIL (|has| |#2| (-368)))) (-1891 (($ $) NIL)) (-1836 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2382 (($ $ $) NIL (|has| |#2| (-368)))) (-3996 (($ $ $) NIL)) (-1763 (($ $ $) NIL (|has| |#2| (-562)))) (-2526 (((-2 (|:| -1442 |#2|) (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-1767 (($ $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-1872 (((-650 $) $) NIL)) (-4037 (((-112) $) NIL (|has| |#2| (-916)))) (-3382 (($ $ |#2| (-777) $) NIL)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (-12 (|has| (-1091) (-893 (-384))) (|has| |#2| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (-12 (|has| (-1091) (-893 (-570))) (|has| |#2| (-893 (-570)))))) (-4331 (((-777) $ $) NIL (|has| |#2| (-562)))) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-3584 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-1705 (($ (-1182 |#2|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-1876 (($ $ (-777)) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3872 (($ |#2| (-777)) 18) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1091)) NIL) (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL)) (-2730 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-2206 (($ (-1 (-777) (-777)) $) NIL)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-1551 (((-1182 |#2|) $) NIL)) (-2645 (((-3 (-1091) "failed") $) NIL)) (-1857 (($ $) NIL)) (-1865 ((|#2| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-4268 (((-1168) $) NIL)) (-2166 (((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777)) NIL)) (-3176 (((-3 (-650 $) "failed") $) NIL)) (-1955 (((-3 (-650 $) "failed") $) NIL)) (-4415 (((-3 (-2 (|:| |var| (-1091)) (|:| -3011 (-777))) "failed") $) NIL)) (-3722 (($ $) NIL (|has| |#2| (-38 (-413 (-570)))))) (-2315 (($) NIL (|has| |#2| (-1161)) CONST)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 ((|#2| $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1874 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1386 (($ $ (-777) |#2| $) NIL)) (-4086 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3739 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#2| (-368)))) (-2406 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1731 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) NIL) (($ $ (-650 (-1091)) (-650 |#2|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2547 (((-777) $) NIL (|has| |#2| (-368)))) (-1877 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#2| (-562))) ((|#2| (-413 $) |#2|) NIL (|has| |#2| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#2| (-562)))) (-2377 (((-3 $ "failed") $ (-777)) NIL)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#2| (-368)))) (-3290 (($ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $) NIL (|has| |#2| (-174)))) (-3447 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-3221 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1417 (((-899 (-384)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#2| (-620 (-899 (-384)))))) (((-899 (-570)) $) NIL (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#2| (-620 (-899 (-570)))))) (((-542) $) NIL (-12 (|has| (-1091) (-620 (-542))) (|has| |#2| (-620 (-542)))))) (-3621 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-4099 (((-3 $ "failed") $ $) NIL (|has| |#2| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#2| (-562)))) (-3735 (((-868) $) 13) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) NIL) (($ (-1273 |#1|)) 20) (($ (-413 (-570))) NIL (-2740 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3127 (((-3 $ "failed") $) NIL (-2740 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1814 (($) NIL T CONST)) (-1824 (($) 14 T CONST)) (-2791 (($ $ (-1091)) NIL) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) NIL) (($ $ (-1186)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1186) (-777)) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (|has| |#2| (-907 (-1186)))) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1250 |#1| |#2|) (-13 (-1253 |#2|) (-622 (-1273 |#1|)) (-10 -8 (-15 -1386 ($ $ (-777) |#2| $)))) (-1186) (-1058)) (T -1250))
+((-1386 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1250 *4 *3)) (-14 *4 (-1186)) (-4 *3 (-1058)))))
+(-13 (-1253 |#2|) (-622 (-1273 |#1|)) (-10 -8 (-15 -1386 ($ $ (-777) |#2| $))))
+((-1352 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
+(((-1251 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-1253 |#1|) (-1058) (-1253 |#3|)) (T -1251))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *2 (-1253 *6)) (-5 *1 (-1251 *5 *4 *6 *2)) (-4 *4 (-1253 *5)))))
+(-10 -7 (-15 -1352 (|#4| (-1 |#3| |#1|) |#2|)))
+((-3056 (((-1277 |#2|) $ (-777)) 129)) (-1713 (((-650 (-1091)) $) 16)) (-4267 (($ (-1182 |#2|)) 80)) (-2200 (((-777) $) NIL) (((-777) $ (-650 (-1091))) 21)) (-2810 (((-424 (-1182 $)) (-1182 $)) 204)) (-3252 (($ $) 194)) (-1378 (((-424 $) $) 192)) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 95)) (-2038 (($ $ (-777)) 84)) (-3393 (($ $ (-777)) 86)) (-1484 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 145)) (-4379 (((-3 |#2| "failed") $) 132) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-1091) "failed") $) NIL)) (-3080 ((|#2| $) 130) (((-413 (-570)) $) NIL) (((-570) $) NIL) (((-1091) $) NIL)) (-1763 (($ $ $) 170)) (-2526 (((-2 (|:| -1442 |#2|) (|:| -3389 $) (|:| -3831 $)) $ $) 172)) (-4331 (((-777) $ $) 189)) (-3584 (((-3 $ "failed") $) 138)) (-3872 (($ |#2| (-777)) NIL) (($ $ (-1091) (-777)) 59) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2730 (((-777) $) NIL) (((-777) $ (-1091)) 54) (((-650 (-777)) $ (-650 (-1091))) 55)) (-1551 (((-1182 |#2|) $) 72)) (-2645 (((-3 (-1091) "failed") $) 52)) (-2166 (((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777)) 83)) (-3722 (($ $) 219)) (-2315 (($) 134)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 201)) (-4086 (((-424 (-1182 $)) (-1182 $)) 101)) (-1627 (((-424 (-1182 $)) (-1182 $)) 99)) (-3739 (((-424 $) $) 120)) (-1731 (($ $ (-650 (-298 $))) 51) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) 39) (($ $ (-650 (-1091)) (-650 |#2|)) 36) (($ $ (-1091) $) 32) (($ $ (-650 (-1091)) (-650 $)) 30)) (-2547 (((-777) $) 207)) (-1877 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) 164) ((|#2| (-413 $) |#2|) 206) (((-413 $) $ (-413 $)) 188)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 212)) (-3447 (($ $ (-1091)) 157) (($ $ (-650 (-1091))) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL) (($ $ (-777)) NIL) (($ $) 155) (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 154) (($ $ (-1 |#2| |#2|) $) 149)) (-3221 (((-777) $) NIL) (((-777) $ (-1091)) 17) (((-650 (-777)) $ (-650 (-1091))) 23)) (-3621 ((|#2| $) NIL) (($ $ (-1091)) 140)) (-4099 (((-3 $ "failed") $ $) 180) (((-3 (-413 $) "failed") (-413 $) $) 176)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) 64) (($ (-413 (-570))) NIL) (($ $) NIL)))
+(((-1252 |#1| |#2|) (-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -3252 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -1877 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2547 ((-777) |#1|)) (-15 -4378 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -3722 (|#1| |#1|)) (-15 -1877 (|#2| (-413 |#1|) |#2|)) (-15 -1484 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2526 ((-2 (|:| -1442 |#2|) (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -1763 (|#1| |#1| |#1|)) (-15 -4099 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -4099 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4331 ((-777) |#1| |#1|)) (-15 -1877 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3393 (|#1| |#1| (-777))) (-15 -2038 (|#1| |#1| (-777))) (-15 -2166 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| (-777))) (-15 -4267 (|#1| (-1182 |#2|))) (-15 -1551 ((-1182 |#2|) |#1|)) (-15 -3056 ((-1277 |#2|) |#1| (-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -1877 (|#1| |#1| |#1|)) (-15 -1877 (|#2| |#1| |#2|)) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -2810 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1627 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -4086 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3621 (|#1| |#1| (-1091))) (-15 -1713 ((-650 (-1091)) |#1|)) (-15 -2200 ((-777) |#1| (-650 (-1091)))) (-15 -2200 ((-777) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3872 (|#1| |#1| (-1091) (-777))) (-15 -2730 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -2730 ((-777) |#1| (-1091))) (-15 -2645 ((-3 (-1091) "failed") |#1|)) (-15 -3221 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -3221 ((-777) |#1| (-1091))) (-15 -3735 (|#1| (-1091))) (-15 -4379 ((-3 (-1091) "failed") |#1|)) (-15 -3080 ((-1091) |#1|)) (-15 -1731 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1731 (|#1| |#1| (-1091) |#1|)) (-15 -1731 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1731 (|#1| |#1| (-1091) |#2|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3221 ((-777) |#1|)) (-15 -3872 (|#1| |#2| (-777))) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -2730 ((-777) |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -3447 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1091) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1091)))) (-15 -3447 (|#1| |#1| (-1091))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|))) (-1253 |#2|) (-1058)) (T -1252))
+NIL
+(-10 -8 (-15 -3735 (|#1| |#1|)) (-15 -2092 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1378 ((-424 |#1|) |#1|)) (-15 -3252 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -2315 (|#1|)) (-15 -3584 ((-3 |#1| "failed") |#1|)) (-15 -1877 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2547 ((-777) |#1|)) (-15 -4378 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -3722 (|#1| |#1|)) (-15 -1877 (|#2| (-413 |#1|) |#2|)) (-15 -1484 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2526 ((-2 (|:| -1442 |#2|) (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| |#1|)) (-15 -1763 (|#1| |#1| |#1|)) (-15 -4099 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -4099 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4331 ((-777) |#1| |#1|)) (-15 -1877 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3393 (|#1| |#1| (-777))) (-15 -2038 (|#1| |#1| (-777))) (-15 -2166 ((-2 (|:| -3389 |#1|) (|:| -3831 |#1|)) |#1| (-777))) (-15 -4267 (|#1| (-1182 |#2|))) (-15 -1551 ((-1182 |#2|) |#1|)) (-15 -3056 ((-1277 |#2|) |#1| (-777))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3447 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1186) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1186)))) (-15 -3447 (|#1| |#1| (-1186))) (-15 -3447 (|#1| |#1|)) (-15 -3447 (|#1| |#1| (-777))) (-15 -1877 (|#1| |#1| |#1|)) (-15 -1877 (|#2| |#1| |#2|)) (-15 -3739 ((-424 |#1|) |#1|)) (-15 -2810 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1627 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -4086 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2576 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3621 (|#1| |#1| (-1091))) (-15 -1713 ((-650 (-1091)) |#1|)) (-15 -2200 ((-777) |#1| (-650 (-1091)))) (-15 -2200 ((-777) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3872 (|#1| |#1| (-1091) (-777))) (-15 -2730 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -2730 ((-777) |#1| (-1091))) (-15 -2645 ((-3 (-1091) "failed") |#1|)) (-15 -3221 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -3221 ((-777) |#1| (-1091))) (-15 -3735 (|#1| (-1091))) (-15 -4379 ((-3 (-1091) "failed") |#1|)) (-15 -3080 ((-1091) |#1|)) (-15 -1731 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1731 (|#1| |#1| (-1091) |#1|)) (-15 -1731 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1731 (|#1| |#1| (-1091) |#2|)) (-15 -1731 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1731 (|#1| |#1| |#1| |#1|)) (-15 -1731 (|#1| |#1| (-298 |#1|))) (-15 -1731 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3221 ((-777) |#1|)) (-15 -3872 (|#1| |#2| (-777))) (-15 -4379 ((-3 (-570) "failed") |#1|)) (-15 -3080 ((-570) |#1|)) (-15 -4379 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3080 ((-413 (-570)) |#1|)) (-15 -3080 (|#2| |#1|)) (-15 -4379 ((-3 |#2| "failed") |#1|)) (-15 -3735 (|#1| |#2|)) (-15 -2730 ((-777) |#1|)) (-15 -3621 (|#2| |#1|)) (-15 -3447 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3447 (|#1| |#1| (-1091) (-777))) (-15 -3447 (|#1| |#1| (-650 (-1091)))) (-15 -3447 (|#1| |#1| (-1091))) (-15 -3735 (|#1| (-570))) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3056 (((-1277 |#1|) $ (-777)) 240)) (-1713 (((-650 (-1091)) $) 112)) (-4267 (($ (-1182 |#1|)) 238)) (-3702 (((-1182 $) $ (-1091)) 127) (((-1182 |#1|) $) 126)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-1345 (($ $) 90 (|has| |#1| (-562)))) (-1372 (((-112) $) 92 (|has| |#1| (-562)))) (-2200 (((-777) $) 114) (((-777) $ (-650 (-1091))) 113)) (-4119 (((-3 $ "failed") $ $) 20)) (-2037 (($ $ $) 225 (|has| |#1| (-562)))) (-2810 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-3252 (($ $) 100 (|has| |#1| (-458)))) (-1378 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2576 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-2707 (((-112) $ $) 210 (|has| |#1| (-368)))) (-2038 (($ $ (-777)) 233)) (-3393 (($ $ (-777)) 232)) (-1484 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 220 (|has| |#1| (-458)))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 166) (((-3 (-413 (-570)) "failed") $) 163 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 161 (|has| |#1| (-1047 (-570)))) (((-3 (-1091) "failed") $) 138)) (-3080 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) (((-1091) $) 139)) (-3383 (($ $ $ (-1091)) 110 (|has| |#1| (-174))) ((|#1| $ $) 228 (|has| |#1| (-174)))) (-2372 (($ $ $) 214 (|has| |#1| (-368)))) (-1891 (($ $) 156)) (-1836 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2042 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 213 (|has| |#1| (-368)))) (-3996 (($ $ $) 231)) (-1763 (($ $ $) 222 (|has| |#1| (-562)))) (-2526 (((-2 (|:| -1442 |#1|) (|:| -3389 $) (|:| -3831 $)) $ $) 221 (|has| |#1| (-562)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 208 (|has| |#1| (-368)))) (-1767 (($ $) 178 (|has| |#1| (-458))) (($ $ (-1091)) 107 (|has| |#1| (-458)))) (-1872 (((-650 $) $) 111)) (-4037 (((-112) $) 98 (|has| |#1| (-916)))) (-3382 (($ $ |#1| (-777) $) 174)) (-4232 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 86 (-12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384))))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 85 (-12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))))) (-4331 (((-777) $ $) 226 (|has| |#1| (-562)))) (-4340 (((-112) $) 35)) (-2292 (((-777) $) 171)) (-3584 (((-3 $ "failed") $) 206 (|has| |#1| (-1161)))) (-1705 (($ (-1182 |#1|) (-1091)) 119) (($ (-1182 $) (-1091)) 118)) (-1876 (($ $ (-777)) 237)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 217 (|has| |#1| (-368)))) (-1471 (((-650 $) $) 128)) (-4016 (((-112) $) 154)) (-3872 (($ |#1| (-777)) 155) (($ $ (-1091) (-777)) 121) (($ $ (-650 (-1091)) (-650 (-777))) 120)) (-1820 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $ (-1091)) 122) (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 235)) (-2730 (((-777) $) 172) (((-777) $ (-1091)) 124) (((-650 (-777)) $ (-650 (-1091))) 123)) (-2206 (($ (-1 (-777) (-777)) $) 173)) (-1352 (($ (-1 |#1| |#1|) $) 153)) (-1551 (((-1182 |#1|) $) 239)) (-2645 (((-3 (-1091) "failed") $) 125)) (-1857 (($ $) 151)) (-1865 ((|#1| $) 150)) (-1847 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-4268 (((-1168) $) 10)) (-2166 (((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777)) 234)) (-3176 (((-3 (-650 $) "failed") $) 116)) (-1955 (((-3 (-650 $) "failed") $) 117)) (-4415 (((-3 (-2 (|:| |var| (-1091)) (|:| -3011 (-777))) "failed") $) 115)) (-3722 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2315 (($) 205 (|has| |#1| (-1161)) CONST)) (-3479 (((-1129) $) 11)) (-1835 (((-112) $) 168)) (-1846 ((|#1| $) 169)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1874 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-4086 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1627 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3739 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 216 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 215 (|has| |#1| (-368)))) (-2406 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 209 (|has| |#1| (-368)))) (-1731 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ (-1091) |#1|) 143) (($ $ (-650 (-1091)) (-650 |#1|)) 142) (($ $ (-1091) $) 141) (($ $ (-650 (-1091)) (-650 $)) 140)) (-2547 (((-777) $) 211 (|has| |#1| (-368)))) (-1877 ((|#1| $ |#1|) 258) (($ $ $) 257) (((-413 $) (-413 $) (-413 $)) 227 (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) 219 (|has| |#1| (-368))) (((-413 $) $ (-413 $)) 207 (|has| |#1| (-562)))) (-2377 (((-3 $ "failed") $ (-777)) 236)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 212 (|has| |#1| (-368)))) (-3290 (($ $ (-1091)) 109 (|has| |#1| (-174))) ((|#1| $) 229 (|has| |#1| (-174)))) (-3447 (($ $ (-1091)) 46) (($ $ (-650 (-1091))) 45) (($ $ (-1091) (-777)) 44) (($ $ (-650 (-1091)) (-650 (-777))) 43) (($ $ (-777)) 255) (($ $) 253) (($ $ (-1186)) 252 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 251 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 250 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 249 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 242) (($ $ (-1 |#1| |#1|)) 241) (($ $ (-1 |#1| |#1|) $) 230)) (-3221 (((-777) $) 152) (((-777) $ (-1091)) 132) (((-650 (-777)) $ (-650 (-1091))) 131)) (-1417 (((-899 (-384)) $) 84 (-12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384)))))) (((-899 (-570)) $) 83 (-12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570)))))) (((-542) $) 82 (-12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))))) (-3621 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ (-1091)) 108 (|has| |#1| (-458)))) (-3032 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1765 (|has| $ (-146)) (|has| |#1| (-916))))) (-4099 (((-3 $ "failed") $ $) 224 (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) 223 (|has| |#1| (-562)))) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ (-1091)) 137) (($ (-413 (-570))) 80 (-2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-3405 (((-650 |#1|) $) 170)) (-1983 ((|#1| $ (-777)) 157) (($ $ (-1091) (-777)) 130) (($ $ (-650 (-1091)) (-650 (-777))) 129)) (-3127 (((-3 $ "failed") $) 81 (-2740 (-1765 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-1609 (((-777)) 32 T CONST)) (-3340 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-1091)) 42) (($ $ (-650 (-1091))) 41) (($ $ (-1091) (-777)) 40) (($ $ (-650 (-1091)) (-650 (-777))) 39) (($ $ (-777)) 256) (($ $) 254) (($ $ (-1186)) 248 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186))) 247 (|has| |#1| (-907 (-1186)))) (($ $ (-1186) (-777)) 246 (|has| |#1| (-907 (-1186)))) (($ $ (-650 (-1186)) (-650 (-777))) 245 (|has| |#1| (-907 (-1186)))) (($ $ (-1 |#1| |#1|) (-777)) 244) (($ $ (-1 |#1| |#1|)) 243)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 160 (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+(((-1253 |#1|) (-141) (-1058)) (T -1253))
+((-3056 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1253 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4)))) (-1551 (*1 *2 *1) (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))) (-4267 (*1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1253 *3)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-2377 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-1820 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1253 *3)))) (-2166 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1253 *4)))) (-2038 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3393 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3996 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)))) (-3447 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3290 (*1 *2 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-3383 (*1 *2 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-1877 (*1 *2 *2 *2) (-12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-4331 (*1 *2 *1 *1) (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)) (-5 *2 (-777)))) (-2037 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-4099 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-4099 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-1763 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2526 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -1442 *3) (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1253 *3)))) (-1484 (*1 *2 *1 *1) (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1253 *3)))) (-1877 (*1 *2 *3 *2) (-12 (-5 *3 (-413 *1)) (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3722 (*1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))))
+(-13 (-956 |t#1| (-777) (-1091)) (-290 |t#1| |t#1|) (-290 $ $) (-235) (-233 |t#1|) (-10 -8 (-15 -3056 ((-1277 |t#1|) $ (-777))) (-15 -1551 ((-1182 |t#1|) $)) (-15 -4267 ($ (-1182 |t#1|))) (-15 -1876 ($ $ (-777))) (-15 -2377 ((-3 $ "failed") $ (-777))) (-15 -1820 ((-2 (|:| -3389 $) (|:| -3831 $)) $ $)) (-15 -2166 ((-2 (|:| -3389 $) (|:| -3831 $)) $ (-777))) (-15 -2038 ($ $ (-777))) (-15 -3393 ($ $ (-777))) (-15 -3996 ($ $ $)) (-15 -3447 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1161)) (-6 (-1161)) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-15 -3290 (|t#1| $)) (-15 -3383 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-6 (-290 (-413 $) (-413 $))) (-15 -1877 ((-413 $) (-413 $) (-413 $))) (-15 -4331 ((-777) $ $)) (-15 -2037 ($ $ $)) (-15 -4099 ((-3 $ "failed") $ $)) (-15 -4099 ((-3 (-413 $) "failed") (-413 $) $)) (-15 -1763 ($ $ $)) (-15 -2526 ((-2 (|:| -1442 |t#1|) (|:| -3389 $) (|:| -3831 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (-15 -1484 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-311)) (-6 -4445) (-15 -1877 (|t#1| (-413 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (-15 -3722 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-777)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 #2=(-1091)) . T) ((-622 |#1|) . T) ((-622 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-620 (-542)) -12 (|has| (-1091) (-620 (-542))) (|has| |#1| (-620 (-542)))) ((-620 (-899 (-384))) -12 (|has| (-1091) (-620 (-899 (-384)))) (|has| |#1| (-620 (-899 (-384))))) ((-620 (-899 (-570))) -12 (|has| (-1091) (-620 (-899 (-570)))) (|has| |#1| (-620 (-899 (-570))))) ((-233 |#1|) . T) ((-235) . T) ((-290 (-413 $) (-413 $)) |has| |#1| (-562)) ((-290 |#1| |#1|) . T) ((-290 $ $) . T) ((-294) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-313 $) . T) ((-330 |#1| #0#) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2740 (|has| |#1| (-916)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-520 #2# |#1|) . T) ((-520 #2# $) . T) ((-520 $ $) . T) ((-562) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-652 #1#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #1#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-732) . T) ((-907 #2#) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-893 (-384)) -12 (|has| (-1091) (-893 (-384))) (|has| |#1| (-893 (-384)))) ((-893 (-570)) -12 (|has| (-1091) (-893 (-570))) (|has| |#1| (-893 (-570)))) ((-956 |#1| #0# #2#) . T) ((-916) |has| |#1| (-916)) ((-927) |has| |#1| (-368)) ((-1047 (-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((-1047 (-570)) |has| |#1| (-1047 (-570))) ((-1047 #2#) . T) ((-1047 |#1|) . T) ((-1060 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-1161)) ((-1231) |has| |#1| (-916)))
+((-1713 (((-650 (-1091)) $) 34)) (-1891 (($ $) 31)) (-3872 (($ |#2| |#3|) NIL) (($ $ (-1091) |#3|) 28) (($ $ (-650 (-1091)) (-650 |#3|)) 27)) (-1857 (($ $) 14)) (-1865 ((|#2| $) 12)) (-3221 ((|#3| $) 10)))
+(((-1254 |#1| |#2| |#3|) (-10 -8 (-15 -1713 ((-650 (-1091)) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3872 (|#1| |#1| (-1091) |#3|)) (-15 -1891 (|#1| |#1|)) (-15 -3872 (|#1| |#2| |#3|)) (-15 -3221 (|#3| |#1|)) (-15 -1857 (|#1| |#1|)) (-15 -1865 (|#2| |#1|))) (-1255 |#2| |#3|) (-1058) (-798)) (T -1254))
+NIL
+(-10 -8 (-15 -1713 ((-650 (-1091)) |#1|)) (-15 -3872 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3872 (|#1| |#1| (-1091) |#3|)) (-15 -1891 (|#1| |#1|)) (-15 -3872 (|#1| |#2| |#3|)) (-15 -3221 (|#3| |#1|)) (-15 -1857 (|#1| |#1|)) (-15 -1865 (|#2| |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-3235 (($ $ |#2|) 110) (($ $ |#2| |#2|) 109)) (-3345 (((-1166 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 117)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-4217 (((-112) $) 85)) (-4331 ((|#2| $) 112) ((|#2| $ |#2|) 111)) (-4340 (((-112) $) 35)) (-1876 (($ $ (-928)) 113)) (-4016 (((-112) $) 74)) (-3872 (($ |#1| |#2|) 73) (($ $ (-1091) |#2|) 88) (($ $ (-650 (-1091)) (-650 |#2|)) 87)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-4102 (($ $ |#2|) 107)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1731 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-1877 ((|#1| $ |#2|) 116) (($ $ $) 93 (|has| |#2| (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-3221 ((|#2| $) 76)) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1983 ((|#1| $ |#2|) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-2178 ((|#1| $) 114)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-3026 ((|#1| $ |#2|) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(((-1255 |#1| |#2|) (-141) (-1058) (-798)) (T -1255))
+((-3345 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1877 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2643 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1186)))) (-2178 (*1 *2 *1) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-4331 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-4331 (*1 *2 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3235 (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3235 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3026 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3735 (*2 (-1186)))) (-4 *2 (-1058)))) (-4102 (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1731 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1166 *3)))))
+(-13 (-982 |t#1| |t#2| (-1091)) (-10 -8 (-15 -3345 ((-1166 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1877 (|t#1| $ |t#2|)) (-15 -2643 ((-1186) $)) (-15 -2178 (|t#1| $)) (-15 -1876 ($ $ (-928))) (-15 -4331 (|t#2| $)) (-15 -4331 (|t#2| $ |t#2|)) (-15 -3235 ($ $ |t#2|)) (-15 -3235 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3735 (|t#1| (-1186)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3026 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -4102 ($ $ |t#2|)) (IF (|has| |t#2| (-1121)) (-6 (-290 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-235)) (IF (|has| |t#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1731 ((-1166 |t#1|) $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-290 $ $) |has| |#2| (-1121)) ((-294) |has| |#1| (-562)) ((-562) |has| |#1| (-562)) ((-652 #0#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #0#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| |#2| (-1091)) . T) ((-1060 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2222 ((|#2| |#2|) 12)) (-1790 (((-424 |#2|) |#2|) 14)) (-2654 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570)))) 30)))
-(((-1255 |#1| |#2|) (-10 -7 (-15 -1790 ((-424 |#2|) |#2|)) (-15 -2222 (|#2| |#2|)) (-15 -2654 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570)))))) (-562) (-13 (-1252 |#1|) (-562) (-10 -8 (-15 -1874 ($ $ $))))) (T -1255))
-((-2654 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-570)))) (-4 *4 (-13 (-1252 *3) (-562) (-10 -8 (-15 -1874 ($ $ $))))) (-4 *3 (-562)) (-5 *1 (-1255 *3 *4)))) (-2222 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-1255 *3 *2)) (-4 *2 (-13 (-1252 *3) (-562) (-10 -8 (-15 -1874 ($ $ $))))))) (-1790 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-1255 *4 *3)) (-4 *3 (-13 (-1252 *4) (-562) (-10 -8 (-15 -1874 ($ $ $))))))))
-(-10 -7 (-15 -1790 ((-424 |#2|) |#2|)) (-15 -2222 (|#2| |#2|)) (-15 -2654 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))))))
-((-1351 (((-1261 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1261 |#1| |#3| |#5|)) 24)))
-(((-1256 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1351 ((-1261 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1261 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1256))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1261 *5 *7 *9)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-14 *7 (-1186)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1261 *6 *8 *10)) (-5 *1 (-1256 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1186)))))
-(-10 -7 (-15 -1351 ((-1261 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1261 |#1| |#3| |#5|))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 174 (|has| |#1| (-368)))) (-1790 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3753 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) 18 T CONST)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 168 (|has| |#1| (-368)))) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1552 (((-112) $) 176 (|has| |#1| (-368)))) (-4232 (((-112) $) 85)) (-1314 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-1550 (((-112) $) 74)) (-3872 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1845 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1903 (((-1168) $) 10)) (-1825 (($ $) 177 (|has| |#1| (-368)))) (-3555 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1211)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3738 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 170 (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) 107)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) 166 (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-1601 (((-413 (-570)) $) 76)) (-4099 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-2177 ((|#1| $) 114)) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4108 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
-(((-1257 |#1|) (-141) (-1058)) (T -1257))
-((-3254 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4)))) (-4 *4 (-1058)) (-4 *1 (-1257 *4)))) (-3553 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1257 *3)) (-4 *3 (-1058)))) (-3555 (*1 *1 *1) (-12 (-4 *1 (-1257 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-3555 (*1 *1 *1 *2) (-2740 (-12 (-5 *2 (-1186)) (-4 *1 (-1257 *3)) (-4 *3 (-1058)) (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1211)) (-4 *3 (-38 (-413 (-570)))))) (-12 (-5 *2 (-1186)) (-4 *1 (-1257 *3)) (-4 *3 (-1058)) (-12 (|has| *3 (-15 -1716 ((-650 *2) *3))) (|has| *3 (-15 -3555 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
-(-13 (-1254 |t#1| (-413 (-570))) (-10 -8 (-15 -3254 ($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |t#1|))))) (-15 -3553 ($ $ (-413 (-570)))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $)) (IF (|has| |t#1| (-15 -3555 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1716 ((-650 (-1186)) |t#1|))) (-15 -3555 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1211)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -3555 ($ $ (-1186))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1011)) (-6 (-1211))) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-413 (-570))) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-413 (-570)) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-368) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1211) |has| |#1| (-38 (-413 (-570)))) ((-1214) |has| |#1| (-38 (-413 (-570)))) ((-1230) |has| |#1| (-368)) ((-1254 |#1| #0#) . T))
-((-4028 (((-112) $) 12)) (-4378 (((-3 |#3| "failed") $) 17)) (-3080 ((|#3| $) 14)))
-(((-1258 |#1| |#2| |#3|) (-10 -8 (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -4028 ((-112) |#1|))) (-1259 |#2| |#3|) (-1058) (-1236 |#2|)) (T -1258))
-NIL
-(-10 -8 (-15 -4378 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -4028 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 174 (|has| |#1| (-368)))) (-1790 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3753 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#2| "failed") $) 194)) (-3080 ((|#2| $) 195)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-4039 (((-413 (-570)) $) 191)) (-2381 (($ $ $) 168 (|has| |#1| (-368)))) (-1804 (($ (-413 (-570)) |#2|) 192)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1552 (((-112) $) 176 (|has| |#1| (-368)))) (-4232 (((-112) $) 85)) (-1314 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-1550 (((-112) $) 74)) (-3872 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1845 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-2933 ((|#2| $) 190)) (-2232 (((-3 |#2| "failed") $) 188)) (-1791 ((|#2| $) 189)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 177 (|has| |#1| (-368)))) (-3555 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1211)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3738 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 170 (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) 107)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) 166 (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-1601 (((-413 (-570)) $) 76)) (-4099 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 193) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-2177 ((|#1| $) 114)) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4108 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
-(((-1259 |#1| |#2|) (-141) (-1058) (-1236 |t#1|)) (T -1259))
-((-1601 (*1 *2 *1) (-12 (-4 *1 (-1259 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1236 *3)) (-5 *2 (-413 (-570))))) (-1804 (*1 *1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1259 *4 *3)) (-4 *3 (-1236 *4)))) (-4039 (*1 *2 *1) (-12 (-4 *1 (-1259 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1236 *3)) (-5 *2 (-413 (-570))))) (-2933 (*1 *2 *1) (-12 (-4 *1 (-1259 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1236 *3)))) (-1791 (*1 *2 *1) (-12 (-4 *1 (-1259 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1236 *3)))) (-2232 (*1 *2 *1) (|partial| -12 (-4 *1 (-1259 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1236 *3)))))
-(-13 (-1257 |t#1|) (-1047 |t#2|) (-622 |t#2|) (-10 -8 (-15 -1804 ($ (-413 (-570)) |t#2|)) (-15 -4039 ((-413 (-570)) $)) (-15 -2933 (|t#2| $)) (-15 -1601 ((-413 (-570)) $)) (-15 -1791 (|t#2| $)) (-15 -2232 ((-3 |t#2| "failed") $))))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-413 (-570))) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 |#2|) . T) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-413 (-570)) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-368) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1047 |#2|) . T) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1211) |has| |#1| (-38 (-413 (-570)))) ((-1214) |has| |#1| (-38 (-413 (-570)))) ((-1230) |has| |#1| (-368)) ((-1254 |#1| #0#) . T) ((-1257 |#1|) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 104)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) 116) (($ $ (-413 (-570)) (-413 (-570))) 118)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 54)) (-2735 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 65)) (-4087 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 172 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL)) (-3080 ((|#2| $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) 85)) (-4039 (((-413 (-570)) $) 13)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-1804 (($ (-413 (-570)) |#2|) 11)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-4232 (((-112) $) 74)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) 113) (((-413 (-570)) $ (-413 (-570))) 114)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) 130) (($ $ (-413 (-570))) 128)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) 33) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) 125)) (-2635 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2933 ((|#2| $) 12)) (-2232 (((-3 |#2| "failed") $) 44)) (-1791 ((|#2| $) 45)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) 101 (|has| |#1| (-368)))) (-3555 (($ $) 146 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 151 (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211)))))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) 122)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 98 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) 108) (($ $ $) 94 (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) 138 (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 134 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-1601 (((-413 (-570)) $) 16)) (-4099 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 120)) (-3735 (((-868) $) NIL) (($ (-570)) 37) (($ |#1|) 27 (|has| |#1| (-174))) (($ |#2|) 34) (($ (-413 (-570))) 139 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) 107)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) 127 T CONST)) (-2177 ((|#1| $) 106)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 21 T CONST)) (-1823 (($) 17 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) 72)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 100 (|has| |#1| (-368)))) (-2965 (($ $) 142) (($ $ $) 78)) (-2954 (($ $ $) 76)) (** (($ $ (-928)) NIL) (($ $ (-777)) 82) (($ $ (-570)) 157 (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 158 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 80) (($ $ |#1|) NIL) (($ |#1| $) 137) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1260 |#1| |#2|) (-1259 |#1| |#2|) (-1058) (-1236 |#1|)) (T -1260))
-NIL
-(-1259 |#1| |#2|)
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 11)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) NIL (|has| |#1| (-562)))) (-3316 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-2230 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-2222 (($ $) NIL (|has| |#1| (-368)))) (-1790 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4339 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-1240 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1268 |#1| |#2| |#3|) "failed") $) 22)) (-3080 (((-1240 |#1| |#2| |#3|) $) NIL) (((-1268 |#1| |#2| |#3|) $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-4039 (((-413 (-570)) $) 69)) (-2381 (($ $ $) NIL (|has| |#1| (-368)))) (-1804 (($ (-413 (-570)) (-1240 |#1| |#2| |#3|)) NIL)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1552 (((-112) $) NIL (|has| |#1| (-368)))) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-2081 (((-112) $) NIL)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) 30) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1845 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2933 (((-1240 |#1| |#2| |#3|) $) 72)) (-2232 (((-3 (-1240 |#1| |#2| |#3|) "failed") $) NIL)) (-1791 (((-1240 |#1| |#2| |#3|) $) NIL)) (-1903 (((-1168) $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-368)))) (-3555 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 40 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3738 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2044 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) NIL (|has| |#1| (-368)))) (-1558 (($ $ (-413 (-570))) NIL)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1906 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2272 (((-777) $) NIL (|has| |#1| (-368)))) (-1876 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $ (-1272 |#2|)) 38)) (-1601 (((-413 (-570)) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) NIL)) (-3735 (((-868) $) 109) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1240 |#1| |#2| |#3|)) 16) (($ (-1268 |#1| |#2| |#3|)) 17) (($ (-1272 |#2|)) 36) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1715 ((|#1| $ (-413 (-570))) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 12)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) 74 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 32 T CONST)) (-1823 (($) 26 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 34)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1261 |#1| |#2| |#3|) (-13 (-1259 |#1| (-1240 |#1| |#2| |#3|)) (-1047 (-1268 |#1| |#2| |#3|)) (-622 (-1272 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1261))
-((-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1261 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1261 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1259 |#1| (-1240 |#1| |#2| |#3|)) (-1047 (-1268 |#1| |#2| |#3|)) (-622 (-1272 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1272 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 37)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL)) (-3171 (($ $) NIL)) (-2720 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 (-570) "failed") $) NIL (|has| (-1261 |#2| |#3| |#4|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-1261 |#2| |#3| |#4|) (-1047 (-413 (-570))))) (((-3 (-1261 |#2| |#3| |#4|) "failed") $) 22)) (-3080 (((-570) $) NIL (|has| (-1261 |#2| |#3| |#4|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-1261 |#2| |#3| |#4|) (-1047 (-413 (-570))))) (((-1261 |#2| |#3| |#4|) $) NIL)) (-1890 (($ $) 41)) (-3413 (((-3 $ "failed") $) 27)) (-3543 (($ $) NIL (|has| (-1261 |#2| |#3| |#4|) (-458)))) (-3007 (($ $ (-1261 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|) $) NIL)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) 11)) (-1550 (((-112) $) NIL)) (-3872 (($ (-1261 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) 25)) (-4341 (((-323 |#2| |#3| |#4|) $) NIL)) (-4414 (($ (-1 (-323 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) $) NIL)) (-1351 (($ (-1 (-1261 |#2| |#3| |#4|) (-1261 |#2| |#3| |#4|)) $) NIL)) (-2807 (((-3 (-849 |#2|) "failed") $) 90)) (-1855 (($ $) NIL)) (-1864 (((-1261 |#2| |#3| |#4|) $) 20)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1834 (((-112) $) NIL)) (-1842 (((-1261 |#2| |#3| |#4|) $) NIL)) (-2407 (((-3 $ "failed") $ (-1261 |#2| |#3| |#4|)) NIL (|has| (-1261 |#2| |#3| |#4|) (-562))) (((-3 $ "failed") $ $) NIL)) (-2030 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1261 |#2| |#3| |#4|)) (|:| |%expon| (-323 |#2| |#3| |#4|)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#2|)))))) (|:| |%type| (-1168))) "failed") $) 74)) (-1601 (((-323 |#2| |#3| |#4|) $) 17)) (-3030 (((-1261 |#2| |#3| |#4|) $) NIL (|has| (-1261 |#2| |#3| |#4|) (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-1261 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL (-2740 (|has| (-1261 |#2| |#3| |#4|) (-38 (-413 (-570)))) (|has| (-1261 |#2| |#3| |#4|) (-1047 (-413 (-570))))))) (-3009 (((-650 (-1261 |#2| |#3| |#4|)) $) NIL)) (-1715 (((-1261 |#2| |#3| |#4|) $ (-323 |#2| |#3| |#4|)) NIL)) (-1918 (((-3 $ "failed") $) NIL (|has| (-1261 |#2| |#3| |#4|) (-146)))) (-2744 (((-777)) NIL T CONST)) (-3644 (($ $ $ (-777)) NIL (|has| (-1261 |#2| |#3| |#4|) (-174)))) (-1859 (((-112) $ $) NIL)) (-1681 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ (-1261 |#2| |#3| |#4|)) NIL (|has| (-1261 |#2| |#3| |#4|) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-1261 |#2| |#3| |#4|)) NIL) (($ (-1261 |#2| |#3| |#4|) $) NIL) (($ (-413 (-570)) $) NIL (|has| (-1261 |#2| |#3| |#4|) (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| (-1261 |#2| |#3| |#4|) (-38 (-413 (-570)))))))
-(((-1262 |#1| |#2| |#3| |#4|) (-13 (-330 (-1261 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) (-562) (-10 -8 (-15 -2807 ((-3 (-849 |#2|) "failed") $)) (-15 -2030 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1261 |#2| |#3| |#4|)) (|:| |%expon| (-323 |#2| |#3| |#4|)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#2|)))))) (|:| |%type| (-1168))) "failed") $)))) (-13 (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1211) (-436 |#1|)) (-1186) |#2|) (T -1262))
-((-2807 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *2 (-849 *4)) (-5 *1 (-1262 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1211) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4))) (-2030 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1261 *4 *5 *6)) (|:| |%expon| (-323 *4 *5 *6)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4)))))) (|:| |%type| (-1168)))) (-5 *1 (-1262 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1211) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4))))
-(-13 (-330 (-1261 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) (-562) (-10 -8 (-15 -2807 ((-3 (-849 |#2|) "failed") $)) (-15 -2030 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1261 |#2| |#3| |#4|)) (|:| |%expon| (-323 |#2| |#3| |#4|)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#2|)))))) (|:| |%type| (-1168))) "failed") $))))
-((-2195 ((|#2| $) 34)) (-2545 ((|#2| $) 18)) (-1573 (($ $) 52)) (-3284 (($ $ (-570)) 85)) (-3594 (((-112) $ (-777)) 46)) (-1379 ((|#2| $ |#2|) 82)) (-3138 ((|#2| $ |#2|) 78)) (-3895 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 71) (($ $ "rest" $) 75) ((|#2| $ "last" |#2|) 73)) (-2698 (($ $ (-650 $)) 81)) (-2533 ((|#2| $) 17)) (-3455 (($ $) NIL) (($ $ (-777)) 59)) (-3457 (((-650 $) $) 31)) (-1457 (((-112) $ $) 69)) (-2742 (((-112) $ (-777)) 45)) (-3452 (((-112) $ (-777)) 43)) (-3873 (((-112) $) 33)) (-1728 ((|#2| $) 25) (($ $ (-777)) 64)) (-1876 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-3150 (((-112) $) 23)) (-3146 (($ $) 55)) (-2839 (($ $) 86)) (-2409 (((-777) $) 58)) (-2567 (($ $) 57)) (-2439 (($ $ $) 77) (($ |#2| $) NIL)) (-3129 (((-650 $) $) 32)) (-2872 (((-112) $ $) 67)) (-2426 (((-777) $) 51)))
-(((-1263 |#1| |#2|) (-10 -8 (-15 -3284 (|#1| |#1| (-570))) (-15 -3895 (|#2| |#1| "last" |#2|)) (-15 -3138 (|#2| |#1| |#2|)) (-15 -3895 (|#1| |#1| "rest" |#1|)) (-15 -3895 (|#2| |#1| "first" |#2|)) (-15 -2839 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -2409 ((-777) |#1|)) (-15 -2567 (|#1| |#1|)) (-15 -2545 (|#2| |#1|)) (-15 -2533 (|#2| |#1|)) (-15 -1573 (|#1| |#1|)) (-15 -1728 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "last")) (-15 -1728 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1876 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -1876 (|#2| |#1| "first")) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -1379 (|#2| |#1| |#2|)) (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -2698 (|#1| |#1| (-650 |#1|))) (-15 -1457 ((-112) |#1| |#1|)) (-15 -3150 ((-112) |#1|)) (-15 -1876 (|#2| |#1| "value")) (-15 -2195 (|#2| |#1|)) (-15 -3873 ((-112) |#1|)) (-15 -3457 ((-650 |#1|) |#1|)) (-15 -3129 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777)))) (-1264 |#2|) (-1226)) (T -1263))
-NIL
-(-10 -8 (-15 -3284 (|#1| |#1| (-570))) (-15 -3895 (|#2| |#1| "last" |#2|)) (-15 -3138 (|#2| |#1| |#2|)) (-15 -3895 (|#1| |#1| "rest" |#1|)) (-15 -3895 (|#2| |#1| "first" |#2|)) (-15 -2839 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -2409 ((-777) |#1|)) (-15 -2567 (|#1| |#1|)) (-15 -2545 (|#2| |#1|)) (-15 -2533 (|#2| |#1|)) (-15 -1573 (|#1| |#1|)) (-15 -1728 (|#1| |#1| (-777))) (-15 -1876 (|#2| |#1| "last")) (-15 -1728 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1876 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -1876 (|#2| |#1| "first")) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -1379 (|#2| |#1| |#2|)) (-15 -3895 (|#2| |#1| "value" |#2|)) (-15 -2698 (|#1| |#1| (-650 |#1|))) (-15 -1457 ((-112) |#1| |#1|)) (-15 -3150 ((-112) |#1|)) (-15 -1876 (|#2| |#1| "value")) (-15 -2195 (|#2| |#1|)) (-15 -3873 ((-112) |#1|)) (-15 -3457 ((-650 |#1|) |#1|)) (-15 -3129 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -3594 ((-112) |#1| (-777))) (-15 -2742 ((-112) |#1| (-777))) (-15 -3452 ((-112) |#1| (-777))))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2195 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1573 (($ $) 68)) (-3284 (($ $ (-570)) 53 (|has| $ (-6 -4449)))) (-3594 (((-112) $ (-777)) 8)) (-1379 ((|#1| $ |#1|) 40 (|has| $ (-6 -4449)))) (-2512 (($ $ $) 57 (|has| $ (-6 -4449)))) (-3138 ((|#1| $ |#1|) 55 (|has| $ (-6 -4449)))) (-2854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4449)))) (-3895 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4449))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4449))) (($ $ "rest" $) 56 (|has| $ (-6 -4449))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4449)))) (-2698 (($ $ (-650 $)) 42 (|has| $ (-6 -4449)))) (-2533 ((|#1| $) 67)) (-2450 (($) 7 T CONST)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-3457 (((-650 $) $) 51)) (-1457 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2742 (((-112) $ (-777)) 9)) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36)) (-3452 (((-112) $ (-777)) 10)) (-2282 (((-650 |#1|) $) 46)) (-3873 (((-112) $) 50)) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1728 ((|#1| $) 71) (($ $ (-777)) 69)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70)) (-1678 (((-570) $ $) 45)) (-3150 (((-112) $) 47)) (-3146 (($ $) 63)) (-2839 (($ $) 60 (|has| $ (-6 -4449)))) (-2409 (((-777) $) 64)) (-2567 (($ $) 65)) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-3915 (($ $) 13)) (-2850 (($ $ $) 62 (|has| $ (-6 -4449))) (($ $ |#1|) 61 (|has| $ (-6 -4449)))) (-2439 (($ $ $) 79) (($ |#1| $) 78)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3129 (((-650 $) $) 52)) (-2016 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1264 |#1|) (-141) (-1226)) (T -1264))
-((-2439 (*1 *1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2439 (*1 *1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-3443 (*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-3443 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1264 *3)) (-4 *3 (-1226)))) (-3455 (*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1264 *3)) (-4 *3 (-1226)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1264 *3)) (-4 *3 (-1226)))) (-1728 (*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-1876 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-1728 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1264 *3)) (-4 *3 (-1226)))) (-1573 (*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2533 (*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2545 (*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2567 (*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2409 (*1 *2 *1) (-12 (-4 *1 (-1264 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))) (-3146 (*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2850 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2850 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2839 (*1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2854 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-3895 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-2512 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-3895 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4449)) (-4 *1 (-1264 *3)) (-4 *3 (-1226)))) (-3138 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-3895 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))) (-3284 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4449)) (-4 *1 (-1264 *3)) (-4 *3 (-1226)))))
-(-13 (-1019 |t#1|) (-10 -8 (-15 -2439 ($ $ $)) (-15 -2439 ($ |t#1| $)) (-15 -3443 (|t#1| $)) (-15 -1876 (|t#1| $ "first")) (-15 -3443 ($ $ (-777))) (-15 -3455 ($ $)) (-15 -1876 ($ $ "rest")) (-15 -3455 ($ $ (-777))) (-15 -1728 (|t#1| $)) (-15 -1876 (|t#1| $ "last")) (-15 -1728 ($ $ (-777))) (-15 -1573 ($ $)) (-15 -2533 (|t#1| $)) (-15 -2545 (|t#1| $)) (-15 -2567 ($ $)) (-15 -2409 ((-777) $)) (-15 -3146 ($ $)) (IF (|has| $ (-6 -4449)) (PROGN (-15 -2850 ($ $ $)) (-15 -2850 ($ $ |t#1|)) (-15 -2839 ($ $)) (-15 -2854 (|t#1| $ |t#1|)) (-15 -3895 (|t#1| $ "first" |t#1|)) (-15 -2512 ($ $ $)) (-15 -3895 ($ $ "rest" $)) (-15 -3138 (|t#1| $ |t#1|)) (-15 -3895 (|t#1| $ "last" |t#1|)) (-15 -3284 ($ $ (-570)))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1226) . T))
-((-1351 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1265 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1351 (|#4| (-1 |#2| |#1|) |#3|))) (-1058) (-1058) (-1267 |#1|) (-1267 |#2|)) (T -1265))
-((-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *2 (-1267 *6)) (-5 *1 (-1265 *5 *6 *4 *2)) (-4 *4 (-1267 *5)))))
-(-10 -7 (-15 -1351 (|#4| (-1 |#2| |#1|) |#3|)))
-((-4028 (((-112) $) 17)) (-2735 (($ $) 106)) (-2602 (($ $) 82)) (-2712 (($ $) 102)) (-2579 (($ $) 78)) (-4087 (($ $) 110)) (-2622 (($ $) 86)) (-2635 (($ $) 76)) (-4387 (($ $) 74)) (-4099 (($ $) 112)) (-2634 (($ $) 88)) (-2746 (($ $) 108)) (-2611 (($ $) 84)) (-2723 (($ $) 104)) (-2590 (($ $) 80)) (-3735 (((-868) $) 62) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-4138 (($ $) 118)) (-2671 (($ $) 94)) (-4108 (($ $) 114)) (-2647 (($ $) 90)) (-4161 (($ $) 122)) (-2691 (($ $) 98)) (-1509 (($ $) 124)) (-2701 (($ $) 100)) (-4150 (($ $) 120)) (-2681 (($ $) 96)) (-4123 (($ $) 116)) (-2660 (($ $) 92)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#2|) 66) (($ $ $) 69) (($ $ (-413 (-570))) 72)))
-(((-1266 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2611 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2701 (|#1| |#1|)) (-15 -2691 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4099 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -1509 (|#1| |#1|)) (-15 -4161 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -4028 ((-112) |#1|)) (-15 -3735 ((-868) |#1|))) (-1267 |#2|) (-1058)) (T -1266))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2611 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2701 (|#1| |#1|)) (-15 -2691 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4099 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -1509 (|#1| |#1|)) (-15 -4161 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -4028 ((-112) |#1|)) (-15 -3735 ((-868) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-1716 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3171 (($ $) 64 (|has| |#1| (-562)))) (-2720 (((-112) $) 66 (|has| |#1| (-562)))) (-3316 (($ $ (-777)) 110) (($ $ (-777) (-777)) 109)) (-2230 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) 20)) (-3753 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 167) (($ (-1166 |#1|)) 165)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) 18 T CONST)) (-1890 (($ $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-4396 (($ $) 164)) (-3208 (((-959 |#1|) $ (-777)) 162) (((-959 |#1|) $ (-777) (-777)) 161)) (-4232 (((-112) $) 85)) (-1314 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-777) $) 112) (((-777) $ (-777)) 111)) (-2081 (((-112) $) 35)) (-2598 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3553 (($ $ (-928)) 113)) (-3260 (($ (-1 |#1| (-570)) $) 163)) (-1550 (((-112) $) 74)) (-3872 (($ |#1| (-777)) 73) (($ $ (-1091) (-777)) 88) (($ $ (-650 (-1091)) (-650 (-777))) 87)) (-1351 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) 77)) (-1864 ((|#1| $) 78)) (-1903 (((-1168) $) 10)) (-3555 (($ $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 158 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1211)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-1558 (($ $ (-777)) 107)) (-2407 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1730 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1876 ((|#1| $ (-777)) 116) (($ $ $) 93 (|has| (-777) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-1601 (((-777) $) 76)) (-4099 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-3009 (((-1166 |#1|) $) 166)) (-1715 ((|#1| $ (-777)) 71)) (-1918 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2744 (((-777)) 32 T CONST)) (-2177 ((|#1| $) 114)) (-1859 (((-112) $ $) 9)) (-4138 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4108 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-777)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ |#1|) 160 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
-(((-1267 |#1|) (-141) (-1058)) (T -1267))
-((-3254 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-777)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1267 *3)))) (-3009 (*1 *2 *1) (-12 (-4 *1 (-1267 *3)) (-4 *3 (-1058)) (-5 *2 (-1166 *3)))) (-3254 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-4 *1 (-1267 *3)))) (-4396 (*1 *1 *1) (-12 (-4 *1 (-1267 *2)) (-4 *2 (-1058)))) (-3260 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1267 *3)) (-4 *3 (-1058)))) (-3208 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1267 *4)) (-4 *4 (-1058)) (-5 *2 (-959 *4)))) (-3208 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1267 *4)) (-4 *4 (-1058)) (-5 *2 (-959 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1267 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3555 (*1 *1 *1) (-12 (-4 *1 (-1267 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-3555 (*1 *1 *1 *2) (-2740 (-12 (-5 *2 (-1186)) (-4 *1 (-1267 *3)) (-4 *3 (-1058)) (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1211)) (-4 *3 (-38 (-413 (-570)))))) (-12 (-5 *2 (-1186)) (-4 *1 (-1267 *3)) (-4 *3 (-1058)) (-12 (|has| *3 (-15 -1716 ((-650 *2) *3))) (|has| *3 (-15 -3555 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
-(-13 (-1254 |t#1| (-777)) (-10 -8 (-15 -3254 ($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |t#1|))))) (-15 -3009 ((-1166 |t#1|) $)) (-15 -3254 ($ (-1166 |t#1|))) (-15 -4396 ($ $)) (-15 -3260 ($ (-1 |t#1| (-570)) $)) (-15 -3208 ((-959 |t#1|) $ (-777))) (-15 -3208 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-368)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3555 ($ $)) (IF (|has| |t#1| (-15 -3555 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1716 ((-650 (-1186)) |t#1|))) (-15 -3555 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1211)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -3555 ($ $ (-1186))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1011)) (-6 (-1211))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-777)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-777) |#1|))) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-777) (-1121)) ((-294) |has| |#1| (-562)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) |has| |#1| (-562)) ((-652 #1#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #1#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1211) |has| |#1| (-38 (-413 (-570)))) ((-1214) |has| |#1| (-38 (-413 (-570)))) ((-1254 |#1| #0#) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-1716 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 92)) (-2012 (((-1249 |#2| |#1|) $ (-777)) 73)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3171 (($ $) NIL (|has| |#1| (-562)))) (-2720 (((-112) $) 144 (|has| |#1| (-562)))) (-3316 (($ $ (-777)) 129) (($ $ (-777) (-777)) 132)) (-2230 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 43)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3596 (((-3 $ "failed") $ $) NIL)) (-3753 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3254 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 52) (($ (-1166 |#1|)) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2450 (($) NIL T CONST)) (-3363 (($ $) 136)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-4396 (($ $) 142)) (-3208 (((-959 |#1|) $ (-777)) 63) (((-959 |#1|) $ (-777) (-777)) 65)) (-4232 (((-112) $) NIL)) (-1314 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3157 (((-777) $) NIL) (((-777) $ (-777)) NIL)) (-2081 (((-112) $) NIL)) (-2127 (($ $) 119)) (-2598 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1696 (($ (-570) (-570) $) 138)) (-3553 (($ $ (-928)) 141)) (-3260 (($ (-1 |#1| (-570)) $) 113)) (-1550 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 16) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1351 (($ (-1 |#1| |#1|) $) 100)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1855 (($ $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3623 (($ $) 117)) (-3108 (($ $) 115)) (-3335 (($ (-570) (-570) $) 140)) (-3555 (($ $) 152 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 158 (-2740 (-12 (|has| |#1| (-15 -3555 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1716 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1211))))) (($ $ (-1272 |#2|)) 153 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-3783 (($ $ (-570) (-570)) 123)) (-1558 (($ $ (-777)) 125)) (-2407 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3072 (($ $) 121)) (-1730 (((-1166 |#1|) $ |#1|) 102 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1876 ((|#1| $ (-777)) 97) (($ $ $) 134 (|has| (-777) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) 110 (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 104 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $ (-1272 |#2|)) 105)) (-1601 (((-777) $) NIL)) (-4099 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2611 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3049 (($ $) 127)) (-3735 (((-868) $) NIL) (($ (-570)) 26) (($ (-413 (-570))) 150 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 25 (|has| |#1| (-174))) (($ (-1249 |#2| |#1|)) 83) (($ (-1272 |#2|)) 22)) (-3009 (((-1166 |#1|) $) NIL)) (-1715 ((|#1| $ (-777)) 96)) (-1918 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2744 (((-777)) NIL T CONST)) (-2177 ((|#1| $) 93)) (-1859 (((-112) $ $) NIL)) (-4138 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1681 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4108 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4161 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-777)) 91 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1509 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1812 (($) 18 T CONST)) (-1823 (($) 13 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 109)) (-2954 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#1|) 147 (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 108) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
-(((-1268 |#1| |#2| |#3|) (-13 (-1267 |#1|) (-10 -8 (-15 -3735 ($ (-1249 |#2| |#1|))) (-15 -2012 ((-1249 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (-15 -3108 ($ $)) (-15 -3623 ($ $)) (-15 -2127 ($ $)) (-15 -3072 ($ $)) (-15 -3783 ($ $ (-570) (-570))) (-15 -3363 ($ $)) (-15 -1696 ($ (-570) (-570) $)) (-15 -3335 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1268))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-1249 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1268 *3 *4 *5)))) (-2012 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1249 *5 *4)) (-5 *1 (-1268 *4 *5 *6)) (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3108 (*1 *1 *1) (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3623 (*1 *1 *1) (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2127 (*1 *1 *1) (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3072 (*1 *1 *1) (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3783 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-3363 (*1 *1 *1) (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-1696 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-3335 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(-13 (-1267 |#1|) (-10 -8 (-15 -3735 ($ (-1249 |#2| |#1|))) (-15 -2012 ((-1249 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1272 |#2|))) (-15 -3447 ($ $ (-1272 |#2|))) (-15 -3108 ($ $)) (-15 -3623 ($ $)) (-15 -2127 ($ $)) (-15 -3072 ($ $)) (-15 -3783 ($ $ (-570) (-570))) (-15 -3363 ($ $)) (-15 -1696 ($ (-570) (-570) $)) (-15 -3335 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3555 ($ $ (-1272 |#2|))) |%noBranch|)))
-((-2586 (((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|))) 24)) (-1976 (((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-2358 (((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|)) 13)) (-2317 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2937 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-1383 ((|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|)) 60)) (-2302 (((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))) 66)) (-2745 ((|#2| |#2| |#2|) 43)))
-(((-1269 |#1| |#2|) (-10 -7 (-15 -2358 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -1976 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2586 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -2745 (|#2| |#2| |#2|)) (-15 -2937 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2317 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1383 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -2302 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))))) (-38 (-413 (-570))) (-1267 |#1|)) (T -1269))
-((-2302 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 (-1 *6 (-650 *6)))) (-4 *5 (-38 (-413 (-570)))) (-4 *6 (-1267 *5)) (-5 *2 (-650 *6)) (-5 *1 (-1269 *5 *6)))) (-1383 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-650 *2))) (-5 *4 (-650 *5)) (-4 *5 (-38 (-413 (-570)))) (-4 *2 (-1267 *5)) (-5 *1 (-1269 *5 *2)))) (-2317 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1267 *4)) (-5 *1 (-1269 *4 *2)) (-4 *4 (-38 (-413 (-570)))))) (-2937 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1267 *4)) (-5 *1 (-1269 *4 *2)) (-4 *4 (-38 (-413 (-570)))))) (-2745 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1269 *3 *2)) (-4 *2 (-1267 *3)))) (-2586 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-650 *5))) (-4 *5 (-1267 *4)) (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-650 (-1166 *4)))) (-5 *1 (-1269 *4 *5)))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1267 *4)) (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-1166 *4) (-1166 *4))) (-5 *1 (-1269 *4 *5)))) (-2358 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1267 *4)) (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-1166 *4))) (-5 *1 (-1269 *4 *5)))))
-(-10 -7 (-15 -2358 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -1976 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2586 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -2745 (|#2| |#2| |#2|)) (-15 -2937 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2317 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1383 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -2302 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|))))))
-((-3367 ((|#2| |#4| (-777)) 34)) (-3297 ((|#4| |#2|) 29)) (-1338 ((|#4| (-413 |#2|)) 53 (|has| |#1| (-562)))) (-2563 (((-1 |#4| (-650 |#4|)) |#3|) 46)))
-(((-1270 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3297 (|#4| |#2|)) (-15 -3367 (|#2| |#4| (-777))) (-15 -2563 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -1338 (|#4| (-413 |#2|))) |%noBranch|)) (-1058) (-1252 |#1|) (-662 |#2|) (-1267 |#1|)) (T -1270))
-((-1338 (*1 *2 *3) (-12 (-5 *3 (-413 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-562)) (-4 *4 (-1058)) (-4 *2 (-1267 *4)) (-5 *1 (-1270 *4 *5 *6 *2)) (-4 *6 (-662 *5)))) (-2563 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-1252 *4)) (-5 *2 (-1 *6 (-650 *6))) (-5 *1 (-1270 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-1267 *4)))) (-3367 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-4 *2 (-1252 *5)) (-5 *1 (-1270 *5 *2 *6 *3)) (-4 *6 (-662 *2)) (-4 *3 (-1267 *5)))) (-3297 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *3 (-1252 *4)) (-4 *2 (-1267 *4)) (-5 *1 (-1270 *4 *3 *5 *2)) (-4 *5 (-662 *3)))))
-(-10 -7 (-15 -3297 (|#4| |#2|)) (-15 -3367 (|#2| |#4| (-777))) (-15 -2563 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -1338 (|#4| (-413 |#2|))) |%noBranch|))
-NIL
-(((-1271) (-141)) (T -1271))
+((-3252 ((|#2| |#2|) 12)) (-1378 (((-424 |#2|) |#2|) 14)) (-2000 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570)))) 30)))
+(((-1256 |#1| |#2|) (-10 -7 (-15 -1378 ((-424 |#2|) |#2|)) (-15 -3252 (|#2| |#2|)) (-15 -2000 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570)))))) (-562) (-13 (-1253 |#1|) (-562) (-10 -8 (-15 -1874 ($ $ $))))) (T -1256))
+((-2000 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-570)))) (-4 *4 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1874 ($ $ $))))) (-4 *3 (-562)) (-5 *1 (-1256 *3 *4)))) (-3252 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-1256 *3 *2)) (-4 *2 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1874 ($ $ $))))))) (-1378 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-1256 *4 *3)) (-4 *3 (-13 (-1253 *4) (-562) (-10 -8 (-15 -1874 ($ $ $))))))))
+(-10 -7 (-15 -1378 ((-424 |#2|) |#2|)) (-15 -3252 (|#2| |#2|)) (-15 -2000 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))))))
+((-1352 (((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|)) 24)))
+(((-1257 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1352 ((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1257))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1262 *5 *7 *9)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-14 *7 (-1186)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1262 *6 *8 *10)) (-5 *1 (-1257 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1186)))))
+(-10 -7 (-15 -1352 ((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 174 (|has| |#1| (-368)))) (-1378 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3754 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) 18 T CONST)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 168 (|has| |#1| (-368)))) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-4037 (((-112) $) 176 (|has| |#1| (-368)))) (-4217 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-4016 (((-112) $) 74)) (-3872 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-1847 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-4268 (((-1168) $) 10)) (-1826 (($ $) 177 (|has| |#1| (-368)))) (-3722 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3739 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 170 (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) 107)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4388 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) 166 (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-3221 (((-413 (-570)) $) 76)) (-4098 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-2178 ((|#1| $) 114)) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4112 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(((-1258 |#1|) (-141) (-1058)) (T -1258))
+((-3253 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4)))) (-4 *4 (-1058)) (-4 *1 (-1258 *4)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1258 *3)) (-4 *3 (-1058)))) (-3722 (*1 *1 *1) (-12 (-4 *1 (-1258 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-3722 (*1 *1 *1 *2) (-2740 (-12 (-5 *2 (-1186)) (-4 *1 (-1258 *3)) (-4 *3 (-1058)) (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1212)) (-4 *3 (-38 (-413 (-570)))))) (-12 (-5 *2 (-1186)) (-4 *1 (-1258 *3)) (-4 *3 (-1058)) (-12 (|has| *3 (-15 -1713 ((-650 *2) *3))) (|has| *3 (-15 -3722 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
+(-13 (-1255 |t#1| (-413 (-570))) (-10 -8 (-15 -3253 ($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |t#1|))))) (-15 -1876 ($ $ (-413 (-570)))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $)) (IF (|has| |t#1| (-15 -3722 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1713 ((-650 (-1186)) |t#1|))) (-15 -3722 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -3722 ($ $ (-1186))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1011)) (-6 (-1212))) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-413 (-570))) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-413 (-570)) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-368) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1212) |has| |#1| (-38 (-413 (-570)))) ((-1215) |has| |#1| (-38 (-413 (-570)))) ((-1231) |has| |#1| (-368)) ((-1255 |#1| #0#) . T))
+((-2745 (((-112) $) 12)) (-4379 (((-3 |#3| "failed") $) 17)) (-3080 ((|#3| $) 14)))
+(((-1259 |#1| |#2| |#3|) (-10 -8 (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -2745 ((-112) |#1|))) (-1260 |#2| |#3|) (-1058) (-1237 |#2|)) (T -1259))
+NIL
+(-10 -8 (-15 -4379 ((-3 |#3| "failed") |#1|)) (-15 -3080 (|#3| |#1|)) (-15 -2745 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 174 (|has| |#1| (-368)))) (-1378 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3754 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#2| "failed") $) 194)) (-3080 ((|#2| $) 195)) (-2372 (($ $ $) 169 (|has| |#1| (-368)))) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-2845 (((-413 (-570)) $) 191)) (-2382 (($ $ $) 168 (|has| |#1| (-368)))) (-1805 (($ (-413 (-570)) |#2|) 192)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-4037 (((-112) $) 176 (|has| |#1| (-368)))) (-4217 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-4016 (((-112) $) 74)) (-3872 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-1847 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-3958 ((|#2| $) 190)) (-3367 (((-3 |#2| "failed") $) 188)) (-1793 ((|#2| $) 189)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 177 (|has| |#1| (-368)))) (-3722 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1874 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3739 (((-424 $) $) 173 (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 170 (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) 107)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4388 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) 166 (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 167 (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-3221 (((-413 (-570)) $) 76)) (-4098 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 193) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-2178 ((|#1| $) 114)) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4112 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 178 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(((-1260 |#1| |#2|) (-141) (-1058) (-1237 |t#1|)) (T -1260))
+((-3221 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3)) (-5 *2 (-413 (-570))))) (-1805 (*1 *1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1260 *4 *3)) (-4 *3 (-1237 *4)))) (-2845 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3)) (-5 *2 (-413 (-570))))) (-3958 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))) (-1793 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))) (-3367 (*1 *2 *1) (|partial| -12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))))
+(-13 (-1258 |t#1|) (-1047 |t#2|) (-622 |t#2|) (-10 -8 (-15 -1805 ($ (-413 (-570)) |t#2|)) (-15 -2845 ((-413 (-570)) $)) (-15 -3958 (|t#2| $)) (-15 -3221 ((-413 (-570)) $)) (-15 -1793 (|t#2| $)) (-15 -3367 ((-3 |t#2| "failed") $))))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-413 (-570))) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 |#2|) . T) ((-622 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) ((-245) |has| |#1| (-368)) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-413 (-570)) (-1121)) ((-294) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-311) |has| |#1| (-368)) ((-368) |has| |#1| (-368)) ((-458) |has| |#1| (-368)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-927) |has| |#1| (-368)) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1047 |#2|) . T) ((-1060 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2740 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1212) |has| |#1| (-38 (-413 (-570)))) ((-1215) |has| |#1| (-38 (-413 (-570)))) ((-1231) |has| |#1| (-368)) ((-1255 |#1| #0#) . T) ((-1258 |#1|) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 104)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) 116) (($ $ (-413 (-570)) (-413 (-570))) 118)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 54)) (-2735 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 65)) (-4087 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 172 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL)) (-3080 ((|#2| $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) 85)) (-2845 (((-413 (-570)) $) 13)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-1805 (($ (-413 (-570)) |#2|) 11)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-4217 (((-112) $) 74)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) 113) (((-413 (-570)) $ (-413 (-570))) 114)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) 130) (($ $ (-413 (-570))) 128)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) 33) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) 125)) (-2635 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3958 ((|#2| $) 12)) (-3367 (((-3 |#2| "failed") $) 44)) (-1793 ((|#2| $) 45)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) 101 (|has| |#1| (-368)))) (-3722 (($ $) 146 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 151 (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) 122)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 98 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) 108) (($ $ $) 94 (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) 138 (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 134 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-3221 (((-413 (-570)) $) 16)) (-4098 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 120)) (-3735 (((-868) $) NIL) (($ (-570)) 37) (($ |#1|) 27 (|has| |#1| (-174))) (($ |#2|) 34) (($ (-413 (-570))) 139 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) 107)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) 127 T CONST)) (-2178 ((|#1| $) 106)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 21 T CONST)) (-1824 (($) 17 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) 72)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 100 (|has| |#1| (-368)))) (-2965 (($ $) 142) (($ $ $) 78)) (-2953 (($ $ $) 76)) (** (($ $ (-928)) NIL) (($ $ (-777)) 82) (($ $ (-570)) 157 (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 158 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 80) (($ $ |#1|) NIL) (($ |#1| $) 137) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1261 |#1| |#2|) (-1260 |#1| |#2|) (-1058) (-1237 |#1|)) (T -1261))
+NIL
+(-1260 |#1| |#2|)
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 11)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) NIL (|has| |#1| (-562)))) (-3235 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3345 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3252 (($ $) NIL (|has| |#1| (-368)))) (-1378 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2707 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-1241 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1269 |#1| |#2| |#3|) "failed") $) 22)) (-3080 (((-1241 |#1| |#2| |#3|) $) NIL) (((-1269 |#1| |#2| |#3|) $) NIL)) (-2372 (($ $ $) NIL (|has| |#1| (-368)))) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2845 (((-413 (-570)) $) 69)) (-2382 (($ $ $) NIL (|has| |#1| (-368)))) (-1805 (($ (-413 (-570)) (-1241 |#1| |#2| |#3|)) NIL)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4037 (((-112) $) NIL (|has| |#1| (-368)))) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4340 (((-112) $) NIL)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-413 (-570))) 30) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-1847 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-1241 |#1| |#2| |#3|) $) 72)) (-3367 (((-3 (-1241 |#1| |#2| |#3|) "failed") $) NIL)) (-1793 (((-1241 |#1| |#2| |#3|) $) NIL)) (-4268 (((-1168) $) NIL)) (-1826 (($ $) NIL (|has| |#1| (-368)))) (-3722 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 40 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1874 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3739 (((-424 $) $) NIL (|has| |#1| (-368)))) (-2074 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) NIL (|has| |#1| (-368)))) (-4102 (($ $ (-413 (-570))) NIL)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3003 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2547 (((-777) $) NIL (|has| |#1| (-368)))) (-1877 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) NIL (|has| |#1| (-368)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $ (-1273 |#2|)) 38)) (-3221 (((-413 (-570)) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) NIL)) (-3735 (((-868) $) 109) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-1241 |#1| |#2| |#3|)) 16) (($ (-1269 |#1| |#2| |#3|)) 17) (($ (-1273 |#2|)) 36) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1983 ((|#1| $ (-413 (-570))) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 12)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-413 (-570))) 74 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 32 T CONST)) (-1824 (($) 26 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 34)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1262 |#1| |#2| |#3|) (-13 (-1260 |#1| (-1241 |#1| |#2| |#3|)) (-1047 (-1269 |#1| |#2| |#3|)) (-622 (-1273 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1262))
+((-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1262 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1262 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1260 |#1| (-1241 |#1| |#2| |#3|)) (-1047 (-1269 |#1| |#2| |#3|)) (-622 (-1273 |#2|)) (-10 -8 (-15 -3447 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 37)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-1345 (($ $) NIL)) (-1372 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 (-570) "failed") $) NIL (|has| (-1262 |#2| |#3| |#4|) (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-1262 |#2| |#3| |#4|) (-1047 (-413 (-570))))) (((-3 (-1262 |#2| |#3| |#4|) "failed") $) 22)) (-3080 (((-570) $) NIL (|has| (-1262 |#2| |#3| |#4|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-1262 |#2| |#3| |#4|) (-1047 (-413 (-570))))) (((-1262 |#2| |#3| |#4|) $) NIL)) (-1891 (($ $) 41)) (-2937 (((-3 $ "failed") $) 27)) (-1767 (($ $) NIL (|has| (-1262 |#2| |#3| |#4|) (-458)))) (-3382 (($ $ (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|) $) NIL)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) 11)) (-4016 (((-112) $) NIL)) (-3872 (($ (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) 25)) (-2730 (((-323 |#2| |#3| |#4|) $) NIL)) (-2206 (($ (-1 (-323 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) $) NIL)) (-1352 (($ (-1 (-1262 |#2| |#3| |#4|) (-1262 |#2| |#3| |#4|)) $) NIL)) (-4061 (((-3 (-849 |#2|) "failed") $) 90)) (-1857 (($ $) NIL)) (-1865 (((-1262 |#2| |#3| |#4|) $) 20)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1835 (((-112) $) NIL)) (-1846 (((-1262 |#2| |#3| |#4|) $) NIL)) (-2406 (((-3 $ "failed") $ (-1262 |#2| |#3| |#4|)) NIL (|has| (-1262 |#2| |#3| |#4|) (-562))) (((-3 $ "failed") $ $) NIL)) (-1961 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1262 |#2| |#3| |#4|)) (|:| |%expon| (-323 |#2| |#3| |#4|)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#2|)))))) (|:| |%type| (-1168))) "failed") $) 74)) (-3221 (((-323 |#2| |#3| |#4|) $) 17)) (-3621 (((-1262 |#2| |#3| |#4|) $) NIL (|has| (-1262 |#2| |#3| |#4|) (-458)))) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ (-1262 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL (-2740 (|has| (-1262 |#2| |#3| |#4|) (-38 (-413 (-570)))) (|has| (-1262 |#2| |#3| |#4|) (-1047 (-413 (-570))))))) (-3405 (((-650 (-1262 |#2| |#3| |#4|)) $) NIL)) (-1983 (((-1262 |#2| |#3| |#4|) $ (-323 |#2| |#3| |#4|)) NIL)) (-3127 (((-3 $ "failed") $) NIL (|has| (-1262 |#2| |#3| |#4|) (-146)))) (-1609 (((-777)) NIL T CONST)) (-3340 (($ $ $ (-777)) NIL (|has| (-1262 |#2| |#3| |#4|) (-174)))) (-3866 (((-112) $ $) NIL)) (-2795 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ (-1262 |#2| |#3| |#4|)) NIL (|has| (-1262 |#2| |#3| |#4|) (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-1262 |#2| |#3| |#4|)) NIL) (($ (-1262 |#2| |#3| |#4|) $) NIL) (($ (-413 (-570)) $) NIL (|has| (-1262 |#2| |#3| |#4|) (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| (-1262 |#2| |#3| |#4|) (-38 (-413 (-570)))))))
+(((-1263 |#1| |#2| |#3| |#4|) (-13 (-330 (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) (-562) (-10 -8 (-15 -4061 ((-3 (-849 |#2|) "failed") $)) (-15 -1961 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1262 |#2| |#3| |#4|)) (|:| |%expon| (-323 |#2| |#3| |#4|)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#2|)))))) (|:| |%type| (-1168))) "failed") $)))) (-13 (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -1263))
+((-4061 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *2 (-849 *4)) (-5 *1 (-1263 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4))) (-1961 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1262 *4 *5 *6)) (|:| |%expon| (-323 *4 *5 *6)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4)))))) (|:| |%type| (-1168)))) (-5 *1 (-1263 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3))) (-14 *5 (-1186)) (-14 *6 *4))))
+(-13 (-330 (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) (-562) (-10 -8 (-15 -4061 ((-3 (-849 |#2|) "failed") $)) (-15 -1961 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1262 |#2| |#3| |#4|)) (|:| |%expon| (-323 |#2| |#3| |#4|)) (|:| |%expTerms| (-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#2|)))))) (|:| |%type| (-1168))) "failed") $))))
+((-2196 ((|#2| $) 34)) (-2545 ((|#2| $) 18)) (-1574 (($ $) 52)) (-4264 (($ $ (-570)) 85)) (-4095 (((-112) $ (-777)) 46)) (-3708 ((|#2| $ |#2|) 82)) (-2230 ((|#2| $ |#2|) 78)) (-3894 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 71) (($ $ "rest" $) 75) ((|#2| $ "last" |#2|) 73)) (-2355 (($ $ (-650 $)) 81)) (-2533 ((|#2| $) 17)) (-3455 (($ $) NIL) (($ $ (-777)) 59)) (-2150 (((-650 $) $) 31)) (-4329 (((-112) $ $) 69)) (-1586 (((-112) $ (-777)) 45)) (-2113 (((-112) $ (-777)) 43)) (-1859 (((-112) $) 33)) (-1729 ((|#2| $) 25) (($ $ (-777)) 64)) (-1877 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2345 (((-112) $) 23)) (-2308 (($ $) 55)) (-3103 (($ $) 86)) (-1535 (((-777) $) 58)) (-3631 (($ $) 57)) (-2439 (($ $ $) 77) (($ |#2| $) NIL)) (-2153 (((-650 $) $) 32)) (-2872 (((-112) $ $) 67)) (-2426 (((-777) $) 51)))
+(((-1264 |#1| |#2|) (-10 -8 (-15 -4264 (|#1| |#1| (-570))) (-15 -3894 (|#2| |#1| "last" |#2|)) (-15 -2230 (|#2| |#1| |#2|)) (-15 -3894 (|#1| |#1| "rest" |#1|)) (-15 -3894 (|#2| |#1| "first" |#2|)) (-15 -3103 (|#1| |#1|)) (-15 -2308 (|#1| |#1|)) (-15 -1535 ((-777) |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -2545 (|#2| |#1|)) (-15 -2533 (|#2| |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -1729 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "last")) (-15 -1729 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1877 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -1877 (|#2| |#1| "first")) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -3708 (|#2| |#1| |#2|)) (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -2355 (|#1| |#1| (-650 |#1|))) (-15 -4329 ((-112) |#1| |#1|)) (-15 -2345 ((-112) |#1|)) (-15 -1877 (|#2| |#1| "value")) (-15 -2196 (|#2| |#1|)) (-15 -1859 ((-112) |#1|)) (-15 -2150 ((-650 |#1|) |#1|)) (-15 -2153 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777)))) (-1265 |#2|) (-1227)) (T -1264))
+NIL
+(-10 -8 (-15 -4264 (|#1| |#1| (-570))) (-15 -3894 (|#2| |#1| "last" |#2|)) (-15 -2230 (|#2| |#1| |#2|)) (-15 -3894 (|#1| |#1| "rest" |#1|)) (-15 -3894 (|#2| |#1| "first" |#2|)) (-15 -3103 (|#1| |#1|)) (-15 -2308 (|#1| |#1|)) (-15 -1535 ((-777) |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -2545 (|#2| |#1|)) (-15 -2533 (|#2| |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -1729 (|#1| |#1| (-777))) (-15 -1877 (|#2| |#1| "last")) (-15 -1729 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-777))) (-15 -1877 (|#1| |#1| "rest")) (-15 -3455 (|#1| |#1|)) (-15 -1877 (|#2| |#1| "first")) (-15 -2439 (|#1| |#2| |#1|)) (-15 -2439 (|#1| |#1| |#1|)) (-15 -3708 (|#2| |#1| |#2|)) (-15 -3894 (|#2| |#1| "value" |#2|)) (-15 -2355 (|#1| |#1| (-650 |#1|))) (-15 -4329 ((-112) |#1| |#1|)) (-15 -2345 ((-112) |#1|)) (-15 -1877 (|#2| |#1| "value")) (-15 -2196 (|#2| |#1|)) (-15 -1859 ((-112) |#1|)) (-15 -2150 ((-650 |#1|) |#1|)) (-15 -2153 ((-650 |#1|) |#1|)) (-15 -2872 ((-112) |#1| |#1|)) (-15 -2426 ((-777) |#1|)) (-15 -4095 ((-112) |#1| (-777))) (-15 -1586 ((-112) |#1| (-777))) (-15 -2113 ((-112) |#1| (-777))))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2196 ((|#1| $) 49)) (-2545 ((|#1| $) 66)) (-1574 (($ $) 68)) (-4264 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4095 (((-112) $ (-777)) 8)) (-3708 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3066 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2230 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-3269 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3894 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4450))) (($ $ "rest" $) 56 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4450)))) (-2355 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-2533 ((|#1| $) 67)) (-3761 (($) 7 T CONST)) (-3455 (($ $) 74) (($ $ (-777)) 72)) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2150 (((-650 $) $) 51)) (-4329 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-1586 (((-112) $ (-777)) 9)) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36)) (-2113 (((-112) $ (-777)) 10)) (-2283 (((-650 |#1|) $) 46)) (-1859 (((-112) $) 50)) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1729 ((|#1| $) 71) (($ $ (-777)) 69)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 77) (($ $ (-777)) 75)) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70)) (-2763 (((-570) $ $) 45)) (-2345 (((-112) $) 47)) (-2308 (($ $) 63)) (-3103 (($ $) 60 (|has| $ (-6 -4450)))) (-1535 (((-777) $) 64)) (-3631 (($ $) 65)) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3916 (($ $) 13)) (-3214 (($ $ $) 62 (|has| $ (-6 -4450))) (($ $ |#1|) 61 (|has| $ (-6 -4450)))) (-2439 (($ $ $) 79) (($ |#1| $) 78)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2153 (((-650 $) $) 52)) (-2931 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1265 |#1|) (-141) (-1227)) (T -1265))
+((-2439 (*1 *1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2439 (*1 *1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3443 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3443 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3455 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1877 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-1729 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1877 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1729 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-1574 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2533 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2545 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3631 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1535 (*1 *2 *1) (-12 (-4 *1 (-1265 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-2308 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3214 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3214 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3103 (*1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3269 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3894 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3066 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3894 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-2230 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3894 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-4264 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))))
+(-13 (-1019 |t#1|) (-10 -8 (-15 -2439 ($ $ $)) (-15 -2439 ($ |t#1| $)) (-15 -3443 (|t#1| $)) (-15 -1877 (|t#1| $ "first")) (-15 -3443 ($ $ (-777))) (-15 -3455 ($ $)) (-15 -1877 ($ $ "rest")) (-15 -3455 ($ $ (-777))) (-15 -1729 (|t#1| $)) (-15 -1877 (|t#1| $ "last")) (-15 -1729 ($ $ (-777))) (-15 -1574 ($ $)) (-15 -2533 (|t#1| $)) (-15 -2545 (|t#1| $)) (-15 -3631 ($ $)) (-15 -1535 ((-777) $)) (-15 -2308 ($ $)) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3214 ($ $ $)) (-15 -3214 ($ $ |t#1|)) (-15 -3103 ($ $)) (-15 -3269 (|t#1| $ |t#1|)) (-15 -3894 (|t#1| $ "first" |t#1|)) (-15 -3066 ($ $ $)) (-15 -3894 ($ $ "rest" $)) (-15 -2230 (|t#1| $ |t#1|)) (-15 -3894 (|t#1| $ "last" |t#1|)) (-15 -4264 ($ $ (-570)))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-619 (-868)))) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-495 |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-1019 |#1|) . T) ((-1109) |has| |#1| (-1109)) ((-1227) . T))
+((-1352 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1266 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1352 (|#4| (-1 |#2| |#1|) |#3|))) (-1058) (-1058) (-1268 |#1|) (-1268 |#2|)) (T -1266))
+((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058)) (-4 *2 (-1268 *6)) (-5 *1 (-1266 *5 *6 *4 *2)) (-4 *4 (-1268 *5)))))
+(-10 -7 (-15 -1352 (|#4| (-1 |#2| |#1|) |#3|)))
+((-2745 (((-112) $) 17)) (-2735 (($ $) 106)) (-2602 (($ $) 82)) (-2712 (($ $) 102)) (-2579 (($ $) 78)) (-4087 (($ $) 110)) (-2622 (($ $) 86)) (-2635 (($ $) 76)) (-4388 (($ $) 74)) (-4098 (($ $) 112)) (-2634 (($ $) 88)) (-2746 (($ $) 108)) (-2612 (($ $) 84)) (-2723 (($ $) 104)) (-2590 (($ $) 80)) (-3735 (((-868) $) 62) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-4137 (($ $) 118)) (-2671 (($ $) 94)) (-4112 (($ $) 114)) (-2647 (($ $) 90)) (-4157 (($ $) 122)) (-2691 (($ $) 98)) (-1510 (($ $) 124)) (-2701 (($ $) 100)) (-4150 (($ $) 120)) (-2681 (($ $) 96)) (-4123 (($ $) 116)) (-2660 (($ $) 92)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#2|) 66) (($ $ $) 69) (($ $ (-413 (-570))) 72)))
+(((-1267 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2612 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2701 (|#1| |#1|)) (-15 -2691 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4098 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -4112 (|#1| |#1|)) (-15 -4137 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4388 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -2745 ((-112) |#1|)) (-15 -3735 ((-868) |#1|))) (-1268 |#2|) (-1058)) (T -1267))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2602 (|#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2634 (|#1| |#1|)) (-15 -2612 (|#1| |#1|)) (-15 -2590 (|#1| |#1|)) (-15 -2660 (|#1| |#1|)) (-15 -2681 (|#1| |#1|)) (-15 -2701 (|#1| |#1|)) (-15 -2691 (|#1| |#1|)) (-15 -2647 (|#1| |#1|)) (-15 -2671 (|#1| |#1|)) (-15 -2723 (|#1| |#1|)) (-15 -2746 (|#1| |#1|)) (-15 -4098 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -2712 (|#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -4123 (|#1| |#1|)) (-15 -4150 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -4112 (|#1| |#1|)) (-15 -4137 (|#1| |#1|)) (-15 -2635 (|#1| |#1|)) (-15 -4388 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3735 (|#1| |#2|)) (-15 -3735 (|#1| |#1|)) (-15 -3735 (|#1| (-413 (-570)))) (-15 -3735 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -2745 ((-112) |#1|)) (-15 -3735 ((-868) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-1713 (((-650 (-1091)) $) 86)) (-2643 (((-1186) $) 115)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-1345 (($ $) 64 (|has| |#1| (-562)))) (-1372 (((-112) $) 66 (|has| |#1| (-562)))) (-3235 (($ $ (-777)) 110) (($ $ (-777) (-777)) 109)) (-3345 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 117)) (-2735 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) 20)) (-3754 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 167) (($ (-1166 |#1|)) 165)) (-4087 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) 18 T CONST)) (-1891 (($ $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-2089 (($ $) 164)) (-3208 (((-959 |#1|) $ (-777)) 162) (((-959 |#1|) $ (-777) (-777)) 161)) (-4217 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-777) $) 112) (((-777) $ (-777)) 111)) (-4340 (((-112) $) 35)) (-2665 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-1876 (($ $ (-928)) 113)) (-4059 (($ (-1 |#1| (-570)) $) 163)) (-4016 (((-112) $) 74)) (-3872 (($ |#1| (-777)) 73) (($ $ (-1091) (-777)) 88) (($ $ (-650 (-1091)) (-650 (-777))) 87)) (-1352 (($ (-1 |#1| |#1|) $) 75)) (-2635 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) 77)) (-1865 ((|#1| $) 78)) (-4268 (((-1168) $) 10)) (-3722 (($ $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 158 (-2740 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3479 (((-1129) $) 11)) (-4102 (($ $ (-777)) 107)) (-2406 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-4388 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1731 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1877 ((|#1| $ (-777)) 116) (($ $ $) 93 (|has| (-777) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) 101 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186) (-777)) 100 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-650 (-1186))) 99 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186)) 98 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-777)) 96 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-3221 (((-777) $) 76)) (-4098 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 84)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-3405 (((-1166 |#1|) $) 166)) (-1983 ((|#1| $ (-777)) 71)) (-3127 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-1609 (((-777)) 32 T CONST)) (-2178 ((|#1| $) 114)) (-3866 (((-112) $ $) 9)) (-4137 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4112 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-777)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) 105 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186) (-777)) 104 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-650 (-1186))) 103 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-1186)) 102 (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (($ $ (-777)) 97 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ |#1|) 160 (|has| |#1| (-368))) (($ $ $) 156 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 127 (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-413 (-570)) $) 68 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) 67 (|has| |#1| (-38 (-413 (-570)))))))
+(((-1268 |#1|) (-141) (-1058)) (T -1268))
+((-3253 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-777)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1268 *3)))) (-3405 (*1 *2 *1) (-12 (-4 *1 (-1268 *3)) (-4 *3 (-1058)) (-5 *2 (-1166 *3)))) (-3253 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-4 *1 (-1268 *3)))) (-2089 (*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)))) (-4059 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1268 *3)) (-4 *3 (-1058)))) (-3208 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058)) (-5 *2 (-959 *4)))) (-3208 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058)) (-5 *2 (-959 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3722 (*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-3722 (*1 *1 *1 *2) (-2740 (-12 (-5 *2 (-1186)) (-4 *1 (-1268 *3)) (-4 *3 (-1058)) (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1212)) (-4 *3 (-38 (-413 (-570)))))) (-12 (-5 *2 (-1186)) (-4 *1 (-1268 *3)) (-4 *3 (-1058)) (-12 (|has| *3 (-15 -1713 ((-650 *2) *3))) (|has| *3 (-15 -3722 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
+(-13 (-1255 |t#1| (-777)) (-10 -8 (-15 -3253 ($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |t#1|))))) (-15 -3405 ((-1166 |t#1|) $)) (-15 -3253 ($ (-1166 |t#1|))) (-15 -2089 ($ $)) (-15 -4059 ($ (-1 |t#1| (-570)) $)) (-15 -3208 ((-959 |t#1|) $ (-777))) (-15 -3208 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-368)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -3722 ($ $)) (IF (|has| |t#1| (-15 -3722 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1713 ((-650 (-1186)) |t#1|))) (-15 -3722 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -3722 ($ $ (-1186))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1011)) (-6 (-1212))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-777)) . T) ((-25) . T) ((-38 #1=(-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) |has| |#1| (-562)) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) |has| |#1| (-38 (-413 (-570)))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-235) |has| |#1| (-15 * (|#1| (-777) |#1|))) ((-288) |has| |#1| (-38 (-413 (-570)))) ((-290 $ $) |has| (-777) (-1121)) ((-294) |has| |#1| (-562)) ((-499) |has| |#1| (-38 (-413 (-570)))) ((-562) |has| |#1| (-562)) ((-652 #1#) |has| |#1| (-38 (-413 (-570)))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) |has| |#1| (-38 (-413 (-570)))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) |has| |#1| (-38 (-413 (-570)))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) |has| |#1| (-562)) ((-723 #1#) |has| |#1| (-38 (-413 (-570)))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) |has| |#1| (-562)) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186)))) ((-982 |#1| #0# (-1091)) . T) ((-1011) |has| |#1| (-38 (-413 (-570)))) ((-1060 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1060 |#1|) . T) ((-1060 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2740 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1212) |has| |#1| (-38 (-413 (-570)))) ((-1215) |has| |#1| (-38 (-413 (-570)))) ((-1255 |#1| #0#) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-1713 (((-650 (-1091)) $) NIL)) (-2643 (((-1186) $) 92)) (-2900 (((-1250 |#2| |#1|) $ (-777)) 73)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-1345 (($ $) NIL (|has| |#1| (-562)))) (-1372 (((-112) $) 144 (|has| |#1| (-562)))) (-3235 (($ $ (-777)) 129) (($ $ (-777) (-777)) 132)) (-3345 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 43)) (-2735 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2602 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4119 (((-3 $ "failed") $ $) NIL)) (-3754 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2712 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3253 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 52) (($ (-1166 |#1|)) NIL)) (-4087 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3761 (($) NIL T CONST)) (-2472 (($ $) 136)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2089 (($ $) 142)) (-3208 (((-959 |#1|) $ (-777)) 63) (((-959 |#1|) $ (-777) (-777)) 65)) (-4217 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4331 (((-777) $) NIL) (((-777) $ (-777)) NIL)) (-4340 (((-112) $) NIL)) (-1708 (($ $) 119)) (-2665 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1841 (($ (-570) (-570) $) 138)) (-1876 (($ $ (-928)) 141)) (-4059 (($ (-1 |#1| (-570)) $) 113)) (-4016 (((-112) $) NIL)) (-3872 (($ |#1| (-777)) 16) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1352 (($ (-1 |#1| |#1|) $) 100)) (-2635 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1857 (($ $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3098 (($ $) 117)) (-1970 (($ $) 115)) (-3439 (($ (-570) (-570) $) 140)) (-3722 (($ $) 152 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 158 (-2740 (-12 (|has| |#1| (-15 -3722 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1713 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212))))) (($ $ (-1273 |#2|)) 153 (|has| |#1| (-38 (-413 (-570)))))) (-3479 (((-1129) $) NIL)) (-2185 (($ $ (-570) (-570)) 123)) (-4102 (($ $ (-777)) 125)) (-2406 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4388 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2759 (($ $) 121)) (-1731 (((-1166 |#1|) $ |#1|) 102 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1877 ((|#1| $ (-777)) 97) (($ $ $) 134 (|has| (-777) (-1121)))) (-3447 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) 110 (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 104 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $ (-1273 |#2|)) 105)) (-3221 (((-777) $) NIL)) (-4098 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2634 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2746 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2612 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2723 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2590 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2540 (($ $) 127)) (-3735 (((-868) $) NIL) (($ (-570)) 26) (($ (-413 (-570))) 150 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 25 (|has| |#1| (-174))) (($ (-1250 |#2| |#1|)) 83) (($ (-1273 |#2|)) 22)) (-3405 (((-1166 |#1|) $) NIL)) (-1983 ((|#1| $ (-777)) 96)) (-3127 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-1609 (((-777)) NIL T CONST)) (-2178 ((|#1| $) 93)) (-3866 (((-112) $ $) NIL)) (-4137 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2671 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2795 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4112 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2647 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2691 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3026 ((|#1| $ (-777)) 91 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3735 (|#1| (-1186))))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2701 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4150 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2681 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4123 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1814 (($) 18 T CONST)) (-1824 (($) 13 T CONST)) (-2791 (($ $ (-650 (-1186)) (-650 (-777))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186) (-777)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-650 (-1186))) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-1186)) NIL (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|))))) (-2872 (((-112) $ $) NIL)) (-2975 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) 109)) (-2953 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#1|) 147 (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 108) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570)))))))
+(((-1269 |#1| |#2| |#3|) (-13 (-1268 |#1|) (-10 -8 (-15 -3735 ($ (-1250 |#2| |#1|))) (-15 -2900 ((-1250 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (-15 -1970 ($ $)) (-15 -3098 ($ $)) (-15 -1708 ($ $)) (-15 -2759 ($ $)) (-15 -2185 ($ $ (-570) (-570))) (-15 -2472 ($ $)) (-15 -1841 ($ (-570) (-570) $)) (-15 -3439 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1269))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1269 *3 *4 *5)))) (-2900 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1250 *5 *4)) (-5 *1 (-1269 *4 *5 *6)) (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-1970 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3098 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-1708 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2759 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2185 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-2472 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-1841 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-3439 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-3722 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(-13 (-1268 |#1|) (-10 -8 (-15 -3735 ($ (-1250 |#2| |#1|))) (-15 -2900 ((-1250 |#2| |#1|) $ (-777))) (-15 -3735 ($ (-1273 |#2|))) (-15 -3447 ($ $ (-1273 |#2|))) (-15 -1970 ($ $)) (-15 -3098 ($ $)) (-15 -1708 ($ $)) (-15 -2759 ($ $)) (-15 -2185 ($ $ (-570) (-570))) (-15 -2472 ($ $)) (-15 -1841 ($ (-570) (-570) $)) (-15 -3439 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -3722 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2543 (((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|))) 24)) (-2541 (((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-2254 (((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|)) 13)) (-2978 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-4000 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3267 ((|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|)) 60)) (-2833 (((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))) 66)) (-1620 ((|#2| |#2| |#2|) 43)))
+(((-1270 |#1| |#2|) (-10 -7 (-15 -2254 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -2541 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2543 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -1620 (|#2| |#2| |#2|)) (-15 -4000 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2978 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3267 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -2833 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))))) (-38 (-413 (-570))) (-1268 |#1|)) (T -1270))
+((-2833 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 (-1 *6 (-650 *6)))) (-4 *5 (-38 (-413 (-570)))) (-4 *6 (-1268 *5)) (-5 *2 (-650 *6)) (-5 *1 (-1270 *5 *6)))) (-3267 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-650 *2))) (-5 *4 (-650 *5)) (-4 *5 (-38 (-413 (-570)))) (-4 *2 (-1268 *5)) (-5 *1 (-1270 *5 *2)))) (-2978 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2)) (-4 *4 (-38 (-413 (-570)))))) (-4000 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2)) (-4 *4 (-38 (-413 (-570)))))) (-1620 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1270 *3 *2)) (-4 *2 (-1268 *3)))) (-2543 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-650 *5))) (-4 *5 (-1268 *4)) (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-650 (-1166 *4)))) (-5 *1 (-1270 *4 *5)))) (-2541 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1268 *4)) (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-1166 *4) (-1166 *4))) (-5 *1 (-1270 *4 *5)))) (-2254 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1268 *4)) (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-1166 *4))) (-5 *1 (-1270 *4 *5)))))
+(-10 -7 (-15 -2254 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -2541 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2543 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -1620 (|#2| |#2| |#2|)) (-15 -4000 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2978 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3267 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -2833 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|))))))
+((-2507 ((|#2| |#4| (-777)) 34)) (-3061 ((|#4| |#2|) 29)) (-1897 ((|#4| (-413 |#2|)) 53 (|has| |#1| (-562)))) (-3590 (((-1 |#4| (-650 |#4|)) |#3|) 46)))
+(((-1271 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3061 (|#4| |#2|)) (-15 -2507 (|#2| |#4| (-777))) (-15 -3590 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -1897 (|#4| (-413 |#2|))) |%noBranch|)) (-1058) (-1253 |#1|) (-662 |#2|) (-1268 |#1|)) (T -1271))
+((-1897 (*1 *2 *3) (-12 (-5 *3 (-413 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-562)) (-4 *4 (-1058)) (-4 *2 (-1268 *4)) (-5 *1 (-1271 *4 *5 *6 *2)) (-4 *6 (-662 *5)))) (-3590 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-1253 *4)) (-5 *2 (-1 *6 (-650 *6))) (-5 *1 (-1271 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-1268 *4)))) (-2507 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-4 *2 (-1253 *5)) (-5 *1 (-1271 *5 *2 *6 *3)) (-4 *6 (-662 *2)) (-4 *3 (-1268 *5)))) (-3061 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-4 *3 (-1253 *4)) (-4 *2 (-1268 *4)) (-5 *1 (-1271 *4 *3 *5 *2)) (-4 *5 (-662 *3)))))
+(-10 -7 (-15 -3061 (|#4| |#2|)) (-15 -2507 (|#2| |#4| (-777))) (-15 -3590 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -1897 (|#4| (-413 |#2|))) |%noBranch|))
+NIL
+(((-1272) (-141)) (T -1272))
NIL
(-13 (-10 -7 (-6 -2995)))
-((-2416 (((-112) $ $) NIL)) (-2643 (((-1186)) 12)) (-1903 (((-1168) $) 18)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11) (((-1186) $) 8)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 15)))
-(((-1272 |#1|) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3735 ((-1186) $)) (-15 -2643 ((-1186))))) (-1186)) (T -1272))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1272 *3)) (-14 *3 *2))) (-2643 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1272 *3)) (-14 *3 *2))))
+((-2417 (((-112) $ $) NIL)) (-2643 (((-1186)) 12)) (-4268 (((-1168) $) 18)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 11) (((-1186) $) 8)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) 15)))
+(((-1273 |#1|) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3735 ((-1186) $)) (-15 -2643 ((-1186))))) (-1186)) (T -1273))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))) (-2643 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))))
(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3735 ((-1186) $)) (-15 -2643 ((-1186)))))
-((-3397 (($ (-777)) 19)) (-1374 (((-695 |#2|) $ $) 41)) (-2645 ((|#2| $) 51)) (-3788 ((|#2| $) 50)) (-2809 ((|#2| $ $) 36)) (-2319 (($ $ $) 47)) (-2965 (($ $) 23) (($ $ $) 29)) (-2954 (($ $ $) 15)) (* (($ (-570) $) 26) (($ |#2| $) 32) (($ $ |#2|) 31)))
-(((-1273 |#1| |#2|) (-10 -8 (-15 -2645 (|#2| |#1|)) (-15 -3788 (|#2| |#1|)) (-15 -2319 (|#1| |#1| |#1|)) (-15 -1374 ((-695 |#2|) |#1| |#1|)) (-15 -2809 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -3397 (|#1| (-777))) (-15 -2954 (|#1| |#1| |#1|))) (-1274 |#2|) (-1226)) (T -1273))
-NIL
-(-10 -8 (-15 -2645 (|#2| |#1|)) (-15 -3788 (|#2| |#1|)) (-15 -2319 (|#1| |#1| |#1|)) (-15 -1374 ((-695 |#2|) |#1| |#1|)) (-15 -2809 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -3397 (|#1| (-777))) (-15 -2954 (|#1| |#1| |#1|)))
-((-2416 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3397 (($ (-777)) 113 (|has| |#1| (-23)))) (-3225 (((-1281) $ (-570) (-570)) 41 (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4449))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4449))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) 8)) (-3895 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) 59 (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4448)))) (-2450 (($) 7 T CONST)) (-2697 (($ $) 91 (|has| $ (-6 -4449)))) (-2258 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1702 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) 31 (|has| $ (-6 -4448)))) (-1374 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4286 (($ (-777) |#1|) 70)) (-2742 (((-112) $ (-777)) 9)) (-2790 (((-570) $) 44 (|has| (-570) (-856)))) (-3310 (($ $ $) 88 (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) 30 (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-4329 (((-570) $) 45 (|has| (-570) (-856)))) (-3787 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2645 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-3452 (((-112) $ (-777)) 10)) (-3788 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-1903 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2344 (((-650 (-570)) $) 47)) (-1354 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1952 (($ $ |#1|) 42 (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) 14)) (-3262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) 49)) (-3329 (((-112) $) 11)) (-3743 (($) 12)) (-1876 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1243 (-570))) 64)) (-2809 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-4320 (($ $ (-570)) 63) (($ $ (-1243 (-570))) 62)) (-2319 (($ $ $) 105 (|has| |#1| (-1058)))) (-3486 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4448))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4448))))) (-1806 (($ $ $ (-570)) 92 (|has| $ (-6 -4449)))) (-3915 (($ $) 13)) (-1416 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2913 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2965 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-2954 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4448)))))
-(((-1274 |#1|) (-141) (-1226)) (T -1274))
-((-2954 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-25)))) (-3397 (*1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1274 *3)) (-4 *3 (-23)) (-4 *3 (-1226)))) (-2965 (*1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-21)))) (-2965 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-1274 *3)) (-4 *3 (-1226)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-732)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-732)))) (-2809 (*1 *2 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1058)))) (-1374 (*1 *2 *1 *1) (-12 (-4 *1 (-1274 *3)) (-4 *3 (-1226)) (-4 *3 (-1058)) (-5 *2 (-695 *3)))) (-2319 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1058)))) (-3788 (*1 *2 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1011)) (-4 *2 (-1058)))) (-2645 (*1 *2 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1011)) (-4 *2 (-1058)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -2954 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3397 ($ (-777))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -2965 ($ $)) (-15 -2965 ($ $ $)) (-15 * ($ (-570) $))) |%noBranch|) (IF (|has| |t#1| (-732)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1058)) (PROGN (-15 -2809 (|t#1| $ $)) (-15 -1374 ((-695 |t#1|) $ $)) (-15 -2319 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-1011)) (IF (|has| |t#1| (-1058)) (PROGN (-15 -3788 (|t#1| $)) (-15 -2645 (|t#1| $))) |%noBranch|) |%noBranch|)))
-(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-19 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1226) . T))
-((-3734 (((-1276 |#2|) (-1 |#2| |#1| |#2|) (-1276 |#1|) |#2|) 13)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-1276 |#1|) |#2|) 15)) (-1351 (((-3 (-1276 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1276 |#1|)) 30) (((-1276 |#2|) (-1 |#2| |#1|) (-1276 |#1|)) 18)))
-(((-1275 |#1| |#2|) (-10 -7 (-15 -3734 ((-1276 |#2|) (-1 |#2| |#1| |#2|) (-1276 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-1276 |#1|) |#2|)) (-15 -1351 ((-1276 |#2|) (-1 |#2| |#1|) (-1276 |#1|))) (-15 -1351 ((-3 (-1276 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1276 |#1|)))) (-1226) (-1226)) (T -1275))
-((-1351 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1276 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1276 *6)) (-5 *1 (-1275 *5 *6)))) (-1351 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1276 *5)) (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1276 *6)) (-5 *1 (-1275 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1276 *5)) (-4 *5 (-1226)) (-4 *2 (-1226)) (-5 *1 (-1275 *5 *2)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1276 *6)) (-4 *6 (-1226)) (-4 *5 (-1226)) (-5 *2 (-1276 *5)) (-5 *1 (-1275 *6 *5)))))
-(-10 -7 (-15 -3734 ((-1276 |#2|) (-1 |#2| |#1| |#2|) (-1276 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-1276 |#1|) |#2|)) (-15 -1351 ((-1276 |#2|) (-1 |#2| |#1|) (-1276 |#1|))) (-15 -1351 ((-3 (-1276 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1276 |#1|))))
-((-2416 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777)) NIL (|has| |#1| (-23)))) (-3434 (($ (-650 |#1|)) 11)) (-3225 (((-1281) $ (-570) (-570)) NIL (|has| $ (-6 -4449)))) (-4254 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3239 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4449))) (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-856))))) (-3288 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-3594 (((-112) $ (-777)) NIL)) (-3895 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449))) ((|#1| $ (-1243 (-570)) |#1|) NIL (|has| $ (-6 -4449)))) (-1424 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2450 (($) NIL T CONST)) (-2697 (($ $) NIL (|has| $ (-6 -4449)))) (-2258 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1702 (($ |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4448))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4448)))) (-3790 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4449)))) (-3712 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2836 (((-650 |#1|) $) 16 (|has| $ (-6 -4448)))) (-1374 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4286 (($ (-777) |#1|) NIL)) (-2742 (((-112) $ (-777)) NIL)) (-2790 (((-570) $) NIL (|has| (-570) (-856)))) (-3310 (($ $ $) NIL (|has| |#1| (-856)))) (-3068 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2849 (((-650 |#1|) $) NIL (|has| $ (-6 -4448)))) (-3464 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4329 (((-570) $) 12 (|has| (-570) (-856)))) (-3787 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2645 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3452 (((-112) $ (-777)) NIL)) (-3788 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-1903 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4285 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2344 (((-650 (-570)) $) NIL)) (-1354 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3321 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1952 (($ $ |#1|) NIL (|has| $ (-6 -4449)))) (-1671 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-4245 (((-650 |#1|) $) NIL)) (-3329 (((-112) $) NIL)) (-3743 (($) NIL)) (-1876 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-2809 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4320 (($ $ (-570)) NIL) (($ $ (-1243 (-570))) NIL)) (-2319 (($ $ $) NIL (|has| |#1| (-1058)))) (-3486 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#1| (-1109))))) (-1806 (($ $ $ (-570)) NIL (|has| $ (-6 -4449)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) 20 (|has| |#1| (-620 (-542))))) (-3748 (($ (-650 |#1|)) 10)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1859 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4368 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4448)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2913 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2954 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1276 |#1|) (-13 (-1274 |#1|) (-10 -8 (-15 -3434 ($ (-650 |#1|))))) (-1226)) (T -1276))
-((-3434 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-1276 *3)))))
-(-13 (-1274 |#1|) (-10 -8 (-15 -3434 ($ (-650 |#1|)))))
-((-2416 (((-112) $ $) NIL)) (-1756 (((-1168) $ (-1168)) 107) (((-1168) $ (-1168) (-1168)) 105) (((-1168) $ (-1168) (-650 (-1168))) 104)) (-2028 (($) 69)) (-3943 (((-1281) $ (-474) (-928)) 54)) (-3087 (((-1281) $ (-928) (-1168)) 89) (((-1281) $ (-928) (-880)) 90)) (-2866 (((-1281) $ (-928) (-384) (-384)) 57)) (-3261 (((-1281) $ (-1168)) 84)) (-3051 (((-1281) $ (-928) (-1168)) 94)) (-3944 (((-1281) $ (-928) (-384) (-384)) 58)) (-3815 (((-1281) $ (-928) (-928)) 55)) (-1731 (((-1281) $) 85)) (-4014 (((-1281) $ (-928) (-1168)) 93)) (-4024 (((-1281) $ (-474) (-928)) 41)) (-3178 (((-1281) $ (-928) (-1168)) 92)) (-3280 (((-650 (-266)) $) 29) (($ $ (-650 (-266))) 30)) (-3190 (((-1281) $ (-777) (-777)) 52)) (-3250 (($ $) 70) (($ (-474) (-650 (-266))) 71)) (-1903 (((-1168) $) NIL)) (-2013 (((-570) $) 48)) (-3479 (((-1129) $) NIL)) (-2641 (((-1276 (-3 (-474) "undefined")) $) 47)) (-3665 (((-1276 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3178 (-570)) (|:| -3845 (-570)) (|:| |spline| (-570)) (|:| -2523 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $) 46)) (-1915 (((-1281) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570)) 83)) (-4264 (((-650 (-950 (-227))) $) NIL)) (-1917 (((-474) $ (-928)) 43)) (-2803 (((-1281) $ (-777) (-777) (-928) (-928)) 50)) (-4227 (((-1281) $ (-1168)) 95)) (-3845 (((-1281) $ (-928) (-1168)) 91)) (-3735 (((-868) $) 102)) (-4104 (((-1281) $) 96)) (-1859 (((-112) $ $) NIL)) (-2523 (((-1281) $ (-928) (-1168)) 87) (((-1281) $ (-928) (-880)) 88)) (-2872 (((-112) $ $) NIL)))
-(((-1277) (-13 (-1109) (-10 -8 (-15 -4264 ((-650 (-950 (-227))) $)) (-15 -2028 ($)) (-15 -3250 ($ $)) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -3250 ($ (-474) (-650 (-266)))) (-15 -1915 ((-1281) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -3665 ((-1276 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3178 (-570)) (|:| -3845 (-570)) (|:| |spline| (-570)) (|:| -2523 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -2641 ((-1276 (-3 (-474) "undefined")) $)) (-15 -3261 ((-1281) $ (-1168))) (-15 -4024 ((-1281) $ (-474) (-928))) (-15 -1917 ((-474) $ (-928))) (-15 -2523 ((-1281) $ (-928) (-1168))) (-15 -2523 ((-1281) $ (-928) (-880))) (-15 -3087 ((-1281) $ (-928) (-1168))) (-15 -3087 ((-1281) $ (-928) (-880))) (-15 -3178 ((-1281) $ (-928) (-1168))) (-15 -4014 ((-1281) $ (-928) (-1168))) (-15 -3845 ((-1281) $ (-928) (-1168))) (-15 -4227 ((-1281) $ (-1168))) (-15 -4104 ((-1281) $)) (-15 -2803 ((-1281) $ (-777) (-777) (-928) (-928))) (-15 -3944 ((-1281) $ (-928) (-384) (-384))) (-15 -2866 ((-1281) $ (-928) (-384) (-384))) (-15 -3051 ((-1281) $ (-928) (-1168))) (-15 -3190 ((-1281) $ (-777) (-777))) (-15 -3943 ((-1281) $ (-474) (-928))) (-15 -3815 ((-1281) $ (-928) (-928))) (-15 -1756 ((-1168) $ (-1168))) (-15 -1756 ((-1168) $ (-1168) (-1168))) (-15 -1756 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1731 ((-1281) $)) (-15 -2013 ((-570) $)) (-15 -3735 ((-868) $))))) (T -1277))
-((-3735 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1277)))) (-4264 (*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1277)))) (-2028 (*1 *1) (-5 *1 (-1277))) (-3250 (*1 *1 *1) (-5 *1 (-1277))) (-3280 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1277)))) (-3280 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1277)))) (-3250 (*1 *1 *2 *3) (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1277)))) (-1915 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-928)) (-5 *4 (-227)) (-5 *5 (-570)) (-5 *6 (-880)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3665 (*1 *2 *1) (-12 (-5 *2 (-1276 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3178 (-570)) (|:| -3845 (-570)) (|:| |spline| (-570)) (|:| -2523 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570))))) (-5 *1 (-1277)))) (-2641 (*1 *2 *1) (-12 (-5 *2 (-1276 (-3 (-474) "undefined"))) (-5 *1 (-1277)))) (-3261 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-4024 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-1917 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1277)))) (-2523 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-2523 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3087 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3087 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3178 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-4014 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3845 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-4227 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-4104 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1277)))) (-2803 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3944 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-2866 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3051 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3190 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3943 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-3815 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277)))) (-1756 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1277)))) (-1756 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1277)))) (-1756 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1277)))) (-1731 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1277)))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1277)))))
-(-13 (-1109) (-10 -8 (-15 -4264 ((-650 (-950 (-227))) $)) (-15 -2028 ($)) (-15 -3250 ($ $)) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -3250 ($ (-474) (-650 (-266)))) (-15 -1915 ((-1281) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -3665 ((-1276 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3178 (-570)) (|:| -3845 (-570)) (|:| |spline| (-570)) (|:| -2523 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -2641 ((-1276 (-3 (-474) "undefined")) $)) (-15 -3261 ((-1281) $ (-1168))) (-15 -4024 ((-1281) $ (-474) (-928))) (-15 -1917 ((-474) $ (-928))) (-15 -2523 ((-1281) $ (-928) (-1168))) (-15 -2523 ((-1281) $ (-928) (-880))) (-15 -3087 ((-1281) $ (-928) (-1168))) (-15 -3087 ((-1281) $ (-928) (-880))) (-15 -3178 ((-1281) $ (-928) (-1168))) (-15 -4014 ((-1281) $ (-928) (-1168))) (-15 -3845 ((-1281) $ (-928) (-1168))) (-15 -4227 ((-1281) $ (-1168))) (-15 -4104 ((-1281) $)) (-15 -2803 ((-1281) $ (-777) (-777) (-928) (-928))) (-15 -3944 ((-1281) $ (-928) (-384) (-384))) (-15 -2866 ((-1281) $ (-928) (-384) (-384))) (-15 -3051 ((-1281) $ (-928) (-1168))) (-15 -3190 ((-1281) $ (-777) (-777))) (-15 -3943 ((-1281) $ (-474) (-928))) (-15 -3815 ((-1281) $ (-928) (-928))) (-15 -1756 ((-1168) $ (-1168))) (-15 -1756 ((-1168) $ (-1168) (-1168))) (-15 -1756 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1731 ((-1281) $)) (-15 -2013 ((-570) $)) (-15 -3735 ((-868) $))))
-((-2416 (((-112) $ $) NIL)) (-2435 (((-1281) $ (-384)) 169) (((-1281) $ (-384) (-384) (-384)) 170)) (-1756 (((-1168) $ (-1168)) 179) (((-1168) $ (-1168) (-1168)) 177) (((-1168) $ (-1168) (-650 (-1168))) 176)) (-3237 (($) 67)) (-1833 (((-1281) $ (-384) (-384) (-384) (-384) (-384)) 141) (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $) 139) (((-1281) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 140) (((-1281) $ (-570) (-570) (-384) (-384) (-384)) 144) (((-1281) $ (-384) (-384)) 145) (((-1281) $ (-384) (-384) (-384)) 152)) (-1319 (((-384)) 122) (((-384) (-384)) 123)) (-3768 (((-384)) 117) (((-384) (-384)) 119)) (-3563 (((-384)) 120) (((-384) (-384)) 121)) (-2617 (((-384)) 126) (((-384) (-384)) 127)) (-3350 (((-384)) 124) (((-384) (-384)) 125)) (-2866 (((-1281) $ (-384) (-384)) 171)) (-3261 (((-1281) $ (-1168)) 153)) (-2779 (((-1142 (-227)) $) 68) (($ $ (-1142 (-227))) 69)) (-3749 (((-1281) $ (-1168)) 187)) (-3341 (((-1281) $ (-1168)) 188)) (-2961 (((-1281) $ (-384) (-384)) 151) (((-1281) $ (-570) (-570)) 168)) (-3815 (((-1281) $ (-928) (-928)) 160)) (-1731 (((-1281) $) 137)) (-1971 (((-1281) $ (-1168)) 186)) (-2199 (((-1281) $ (-1168)) 134)) (-3280 (((-650 (-266)) $) 70) (($ $ (-650 (-266))) 71)) (-3190 (((-1281) $ (-777) (-777)) 159)) (-1773 (((-1281) $ (-777) (-950 (-227))) 193)) (-3982 (($ $) 73) (($ (-1142 (-227)) (-1168)) 74) (($ (-1142 (-227)) (-650 (-266))) 75)) (-4144 (((-1281) $ (-384) (-384) (-384)) 131)) (-1903 (((-1168) $) NIL)) (-2013 (((-570) $) 128)) (-1792 (((-1281) $ (-384)) 174)) (-2355 (((-1281) $ (-384)) 191)) (-3479 (((-1129) $) NIL)) (-1449 (((-1281) $ (-384)) 190)) (-3439 (((-1281) $ (-1168)) 136)) (-2803 (((-1281) $ (-777) (-777) (-928) (-928)) 158)) (-3599 (((-1281) $ (-1168)) 133)) (-4227 (((-1281) $ (-1168)) 135)) (-3981 (((-1281) $ (-158) (-158)) 157)) (-3735 (((-868) $) 166)) (-4104 (((-1281) $) 138)) (-2944 (((-1281) $ (-1168)) 189)) (-1859 (((-112) $ $) NIL)) (-2523 (((-1281) $ (-1168)) 132)) (-2872 (((-112) $ $) NIL)))
-(((-1278) (-13 (-1109) (-10 -8 (-15 -3768 ((-384))) (-15 -3768 ((-384) (-384))) (-15 -3563 ((-384))) (-15 -3563 ((-384) (-384))) (-15 -1319 ((-384))) (-15 -1319 ((-384) (-384))) (-15 -3350 ((-384))) (-15 -3350 ((-384) (-384))) (-15 -2617 ((-384))) (-15 -2617 ((-384) (-384))) (-15 -3237 ($)) (-15 -3982 ($ $)) (-15 -3982 ($ (-1142 (-227)) (-1168))) (-15 -3982 ($ (-1142 (-227)) (-650 (-266)))) (-15 -2779 ((-1142 (-227)) $)) (-15 -2779 ($ $ (-1142 (-227)))) (-15 -1773 ((-1281) $ (-777) (-950 (-227)))) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -3190 ((-1281) $ (-777) (-777))) (-15 -3815 ((-1281) $ (-928) (-928))) (-15 -3261 ((-1281) $ (-1168))) (-15 -2803 ((-1281) $ (-777) (-777) (-928) (-928))) (-15 -1833 ((-1281) $ (-384) (-384) (-384) (-384) (-384))) (-15 -1833 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -1833 ((-1281) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -1833 ((-1281) $ (-570) (-570) (-384) (-384) (-384))) (-15 -1833 ((-1281) $ (-384) (-384))) (-15 -1833 ((-1281) $ (-384) (-384) (-384))) (-15 -4227 ((-1281) $ (-1168))) (-15 -2523 ((-1281) $ (-1168))) (-15 -3599 ((-1281) $ (-1168))) (-15 -2199 ((-1281) $ (-1168))) (-15 -3439 ((-1281) $ (-1168))) (-15 -2961 ((-1281) $ (-384) (-384))) (-15 -2961 ((-1281) $ (-570) (-570))) (-15 -2435 ((-1281) $ (-384))) (-15 -2435 ((-1281) $ (-384) (-384) (-384))) (-15 -2866 ((-1281) $ (-384) (-384))) (-15 -1971 ((-1281) $ (-1168))) (-15 -1449 ((-1281) $ (-384))) (-15 -2355 ((-1281) $ (-384))) (-15 -3749 ((-1281) $ (-1168))) (-15 -3341 ((-1281) $ (-1168))) (-15 -2944 ((-1281) $ (-1168))) (-15 -4144 ((-1281) $ (-384) (-384) (-384))) (-15 -1792 ((-1281) $ (-384))) (-15 -1731 ((-1281) $)) (-15 -3981 ((-1281) $ (-158) (-158))) (-15 -1756 ((-1168) $ (-1168))) (-15 -1756 ((-1168) $ (-1168) (-1168))) (-15 -1756 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4104 ((-1281) $)) (-15 -2013 ((-570) $))))) (T -1278))
-((-3768 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-3768 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-3563 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-3563 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-1319 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-1319 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-3350 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-3350 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-2617 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-2617 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))) (-3237 (*1 *1) (-5 *1 (-1278))) (-3982 (*1 *1 *1) (-5 *1 (-1278))) (-3982 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1168)) (-5 *1 (-1278)))) (-3982 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-650 (-266))) (-5 *1 (-1278)))) (-2779 (*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1278)))) (-2779 (*1 *1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1278)))) (-1773 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-950 (-227))) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3280 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3280 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3190 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3815 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3261 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2803 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1833 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1833 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-1278)))) (-1833 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1833 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-570)) (-5 *4 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1833 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1833 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-4227 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2523 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3599 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2199 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3439 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2961 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2961 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2435 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2435 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2866 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1971 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1449 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2355 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2944 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-4144 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1792 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1731 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1278)))) (-3981 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-158)) (-5 *2 (-1281)) (-5 *1 (-1278)))) (-1756 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1756 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1756 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1278)))) (-4104 (*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1278)))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1278)))))
-(-13 (-1109) (-10 -8 (-15 -3768 ((-384))) (-15 -3768 ((-384) (-384))) (-15 -3563 ((-384))) (-15 -3563 ((-384) (-384))) (-15 -1319 ((-384))) (-15 -1319 ((-384) (-384))) (-15 -3350 ((-384))) (-15 -3350 ((-384) (-384))) (-15 -2617 ((-384))) (-15 -2617 ((-384) (-384))) (-15 -3237 ($)) (-15 -3982 ($ $)) (-15 -3982 ($ (-1142 (-227)) (-1168))) (-15 -3982 ($ (-1142 (-227)) (-650 (-266)))) (-15 -2779 ((-1142 (-227)) $)) (-15 -2779 ($ $ (-1142 (-227)))) (-15 -1773 ((-1281) $ (-777) (-950 (-227)))) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -3190 ((-1281) $ (-777) (-777))) (-15 -3815 ((-1281) $ (-928) (-928))) (-15 -3261 ((-1281) $ (-1168))) (-15 -2803 ((-1281) $ (-777) (-777) (-928) (-928))) (-15 -1833 ((-1281) $ (-384) (-384) (-384) (-384) (-384))) (-15 -1833 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -1833 ((-1281) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -1833 ((-1281) $ (-570) (-570) (-384) (-384) (-384))) (-15 -1833 ((-1281) $ (-384) (-384))) (-15 -1833 ((-1281) $ (-384) (-384) (-384))) (-15 -4227 ((-1281) $ (-1168))) (-15 -2523 ((-1281) $ (-1168))) (-15 -3599 ((-1281) $ (-1168))) (-15 -2199 ((-1281) $ (-1168))) (-15 -3439 ((-1281) $ (-1168))) (-15 -2961 ((-1281) $ (-384) (-384))) (-15 -2961 ((-1281) $ (-570) (-570))) (-15 -2435 ((-1281) $ (-384))) (-15 -2435 ((-1281) $ (-384) (-384) (-384))) (-15 -2866 ((-1281) $ (-384) (-384))) (-15 -1971 ((-1281) $ (-1168))) (-15 -1449 ((-1281) $ (-384))) (-15 -2355 ((-1281) $ (-384))) (-15 -3749 ((-1281) $ (-1168))) (-15 -3341 ((-1281) $ (-1168))) (-15 -2944 ((-1281) $ (-1168))) (-15 -4144 ((-1281) $ (-384) (-384) (-384))) (-15 -1792 ((-1281) $ (-384))) (-15 -1731 ((-1281) $)) (-15 -3981 ((-1281) $ (-158) (-158))) (-15 -1756 ((-1168) $ (-1168))) (-15 -1756 ((-1168) $ (-1168) (-1168))) (-15 -1756 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4104 ((-1281) $)) (-15 -2013 ((-570) $))))
-((-3469 (((-650 (-1168)) (-650 (-1168))) 104) (((-650 (-1168))) 96)) (-1947 (((-650 (-1168))) 94)) (-3942 (((-650 (-928)) (-650 (-928))) 69) (((-650 (-928))) 64)) (-2942 (((-650 (-777)) (-650 (-777))) 61) (((-650 (-777))) 55)) (-1709 (((-1281)) 71)) (-3616 (((-928) (-928)) 87) (((-928)) 86)) (-3551 (((-928) (-928)) 85) (((-928)) 84)) (-1556 (((-880) (-880)) 81) (((-880)) 80)) (-3567 (((-227)) 91) (((-227) (-384)) 93)) (-2053 (((-928)) 88) (((-928) (-928)) 89)) (-1603 (((-928) (-928)) 83) (((-928)) 82)) (-4367 (((-880) (-880)) 75) (((-880)) 73)) (-3976 (((-880) (-880)) 77) (((-880)) 76)) (-1901 (((-880) (-880)) 79) (((-880)) 78)))
-(((-1279) (-10 -7 (-15 -4367 ((-880))) (-15 -4367 ((-880) (-880))) (-15 -3976 ((-880))) (-15 -3976 ((-880) (-880))) (-15 -1901 ((-880))) (-15 -1901 ((-880) (-880))) (-15 -1556 ((-880))) (-15 -1556 ((-880) (-880))) (-15 -1603 ((-928))) (-15 -1603 ((-928) (-928))) (-15 -2942 ((-650 (-777)))) (-15 -2942 ((-650 (-777)) (-650 (-777)))) (-15 -3942 ((-650 (-928)))) (-15 -3942 ((-650 (-928)) (-650 (-928)))) (-15 -1709 ((-1281))) (-15 -3469 ((-650 (-1168)))) (-15 -3469 ((-650 (-1168)) (-650 (-1168)))) (-15 -1947 ((-650 (-1168)))) (-15 -3551 ((-928))) (-15 -3616 ((-928))) (-15 -3551 ((-928) (-928))) (-15 -3616 ((-928) (-928))) (-15 -2053 ((-928) (-928))) (-15 -2053 ((-928))) (-15 -3567 ((-227) (-384))) (-15 -3567 ((-227))))) (T -1279))
-((-3567 (*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1279)))) (-3567 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1279)))) (-2053 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-2053 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-3616 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-3551 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-3616 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-3551 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-1947 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1279)))) (-3469 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1279)))) (-3469 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1279)))) (-1709 (*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1279)))) (-3942 (*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1279)))) (-3942 (*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1279)))) (-2942 (*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1279)))) (-2942 (*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1279)))) (-1603 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-1603 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))) (-1556 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-1556 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-1901 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-1901 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-3976 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-3976 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-4367 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))) (-4367 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))))
-(-10 -7 (-15 -4367 ((-880))) (-15 -4367 ((-880) (-880))) (-15 -3976 ((-880))) (-15 -3976 ((-880) (-880))) (-15 -1901 ((-880))) (-15 -1901 ((-880) (-880))) (-15 -1556 ((-880))) (-15 -1556 ((-880) (-880))) (-15 -1603 ((-928))) (-15 -1603 ((-928) (-928))) (-15 -2942 ((-650 (-777)))) (-15 -2942 ((-650 (-777)) (-650 (-777)))) (-15 -3942 ((-650 (-928)))) (-15 -3942 ((-650 (-928)) (-650 (-928)))) (-15 -1709 ((-1281))) (-15 -3469 ((-650 (-1168)))) (-15 -3469 ((-650 (-1168)) (-650 (-1168)))) (-15 -1947 ((-650 (-1168)))) (-15 -3551 ((-928))) (-15 -3616 ((-928))) (-15 -3551 ((-928) (-928))) (-15 -3616 ((-928) (-928))) (-15 -2053 ((-928) (-928))) (-15 -2053 ((-928))) (-15 -3567 ((-227) (-384))) (-15 -3567 ((-227))))
-((-3104 (((-474) (-650 (-650 (-950 (-227)))) (-650 (-266))) 22) (((-474) (-650 (-650 (-950 (-227))))) 21) (((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266))) 20)) (-2997 (((-1277) (-650 (-650 (-950 (-227)))) (-650 (-266))) 33) (((-1277) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266))) 32)) (-3735 (((-1277) (-474)) 48)))
-(((-1280) (-10 -7 (-15 -3104 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -3104 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -3104 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -2997 ((-1277) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -2997 ((-1277) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3735 ((-1277) (-474))))) (T -1280))
-((-3735 (*1 *2 *3) (-12 (-5 *3 (-474)) (-5 *2 (-1277)) (-5 *1 (-1280)))) (-2997 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-1280)))) (-2997 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-1280)))) (-3104 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1280)))) (-3104 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474)) (-5 *1 (-1280)))) (-3104 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1280)))))
-(-10 -7 (-15 -3104 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -3104 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -3104 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -2997 ((-1277) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -2997 ((-1277) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3735 ((-1277) (-474))))
+((-3397 (($ (-777)) 19)) (-1375 (((-695 |#2|) $ $) 41)) (-1935 ((|#2| $) 51)) (-3788 ((|#2| $) 50)) (-4082 ((|#2| $ $) 36)) (-3000 (($ $ $) 47)) (-2965 (($ $) 23) (($ $ $) 29)) (-2953 (($ $ $) 15)) (* (($ (-570) $) 26) (($ |#2| $) 32) (($ $ |#2|) 31)))
+(((-1274 |#1| |#2|) (-10 -8 (-15 -1935 (|#2| |#1|)) (-15 -3788 (|#2| |#1|)) (-15 -3000 (|#1| |#1| |#1|)) (-15 -1375 ((-695 |#2|) |#1| |#1|)) (-15 -4082 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -3397 (|#1| (-777))) (-15 -2953 (|#1| |#1| |#1|))) (-1275 |#2|) (-1227)) (T -1274))
+NIL
+(-10 -8 (-15 -1935 (|#2| |#1|)) (-15 -3788 (|#2| |#1|)) (-15 -3000 (|#1| |#1| |#1|)) (-15 -1375 ((-695 |#2|) |#1| |#1|)) (-15 -4082 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -2965 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1|)) (-15 -3397 (|#1| (-777))) (-15 -2953 (|#1| |#1| |#1|)))
+((-2417 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3397 (($ (-777)) 113 (|has| |#1| (-23)))) (-3727 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) 8)) (-3894 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-3761 (($) 7 T CONST)) (-2347 (($ $) 91 (|has| $ (-6 -4450)))) (-2261 (($ $) 101)) (-3480 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1703 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) 52)) (-3998 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1375 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4287 (($ (-777) |#1|) 70)) (-1586 (((-112) $ (-777)) 9)) (-3888 (((-570) $) 44 (|has| (-570) (-856)))) (-3311 (($ $ $) 88 (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2596 (((-570) $) 45 (|has| (-570) (-856)))) (-2222 (($ $ $) 87 (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-1935 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-2113 (((-112) $ (-777)) 10)) (-3788 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-4268 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2122 (((-650 (-570)) $) 47)) (-2083 (((-112) (-570) $) 48)) (-3479 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3443 ((|#1| $) 43 (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3531 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) 27 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) 26 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) 24 (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) 14)) (-4068 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) 49)) (-3366 (((-112) $) 11)) (-3006 (($) 12)) (-1877 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4082 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-4320 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3000 (($ $ $) 105 (|has| |#1| (-1058)))) (-3490 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1523 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3916 (($ $) 13)) (-1417 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 71)) (-2439 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3735 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) 85 (|has| |#1| (-856)))) (-2904 (((-112) $ $) 84 (|has| |#1| (-856)))) (-2872 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2914 (((-112) $ $) 86 (|has| |#1| (-856)))) (-2894 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2965 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-2953 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2426 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(((-1275 |#1|) (-141) (-1227)) (T -1275))
+((-2953 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-25)))) (-3397 (*1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1275 *3)) (-4 *3 (-23)) (-4 *3 (-1227)))) (-2965 (*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-21)))) (-2965 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-732)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-732)))) (-4082 (*1 *2 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (-1375 (*1 *2 *1 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-1058)) (-5 *2 (-695 *3)))) (-3000 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (-3788 (*1 *2 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011)) (-4 *2 (-1058)))) (-1935 (*1 *2 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011)) (-4 *2 (-1058)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -2953 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3397 ($ (-777))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -2965 ($ $)) (-15 -2965 ($ $ $)) (-15 * ($ (-570) $))) |%noBranch|) (IF (|has| |t#1| (-732)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1058)) (PROGN (-15 -4082 (|t#1| $ $)) (-15 -1375 ((-695 |t#1|) $ $)) (-15 -3000 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-1011)) (IF (|has| |t#1| (-1058)) (PROGN (-15 -3788 (|t#1| $)) (-15 -1935 (|t#1| $))) |%noBranch|) |%noBranch|)))
+(((-34) . T) ((-102) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856)) (|has| |#1| (-619 (-868)))) ((-152 |#1|) . T) ((-620 (-542)) |has| |#1| (-620 (-542))) ((-290 #0=(-570) |#1|) . T) ((-292 #0# |#1|) . T) ((-313 |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-378 |#1|) . T) ((-495 |#1|) . T) ((-610 #0# |#1|) . T) ((-520 |#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((-657 |#1|) . T) ((-19 |#1|) . T) ((-856) |has| |#1| (-856)) ((-1109) -2740 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
+((-2942 (((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|) 13)) (-3529 ((|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|) 15)) (-1352 (((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|)) 30) (((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|)) 18)))
+(((-1276 |#1| |#2|) (-10 -7 (-15 -2942 ((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -1352 ((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|))) (-15 -1352 ((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|)))) (-1227) (-1227)) (T -1276))
+((-1352 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1277 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1277 *6)) (-5 *1 (-1276 *5 *6)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1277 *6)) (-5 *1 (-1276 *5 *6)))) (-3529 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1277 *5)) (-4 *5 (-1227)) (-4 *2 (-1227)) (-5 *1 (-1276 *5 *2)))) (-2942 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1277 *6)) (-4 *6 (-1227)) (-4 *5 (-1227)) (-5 *2 (-1277 *5)) (-5 *1 (-1276 *6 *5)))))
+(-10 -7 (-15 -2942 ((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -3529 (|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -1352 ((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|))) (-15 -1352 ((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|))))
+((-2417 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3397 (($ (-777)) NIL (|has| |#1| (-23)))) (-3434 (($ (-650 |#1|)) 11)) (-3727 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4429 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3885 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3287 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4095 (((-112) $ (-777)) NIL)) (-3894 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1425 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3761 (($) NIL T CONST)) (-2347 (($ $) NIL (|has| $ (-6 -4450)))) (-2261 (($ $) NIL)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1703 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3529 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4449))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4449)))) (-3789 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3713 ((|#1| $ (-570)) NIL)) (-3998 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-2835 (((-650 |#1|) $) 16 (|has| $ (-6 -4449)))) (-1375 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4287 (($ (-777) |#1|) NIL)) (-1586 (((-112) $ (-777)) NIL)) (-3888 (((-570) $) NIL (|has| (-570) (-856)))) (-3311 (($ $ $) NIL (|has| |#1| (-856)))) (-2727 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-3201 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2218 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2596 (((-570) $) 12 (|has| (-570) (-856)))) (-2222 (($ $ $) NIL (|has| |#1| (-856)))) (-3776 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1935 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-2113 (((-112) $ (-777)) NIL)) (-3788 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-4268 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4286 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2122 (((-650 (-570)) $) NIL)) (-2083 (((-112) (-570) $) NIL)) (-3479 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3443 ((|#1| $) NIL (|has| (-570) (-856)))) (-3281 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3531 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2697 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 (-298 |#1|))) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-298 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109)))) (($ $ (-650 |#1|) (-650 |#1|)) NIL (-12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))) (-2621 (((-112) $ $) NIL)) (-4068 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-4348 (((-650 |#1|) $) NIL)) (-3366 (((-112) $) NIL)) (-3006 (($) NIL)) (-1877 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4082 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4320 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3000 (($ $ $) NIL (|has| |#1| (-1058)))) (-3490 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1523 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) 20 (|has| |#1| (-620 (-542))))) (-3749 (($ (-650 |#1|)) 10)) (-2439 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3735 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2964 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2924 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2904 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2872 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2914 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2894 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2965 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2953 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1277 |#1|) (-13 (-1275 |#1|) (-10 -8 (-15 -3434 ($ (-650 |#1|))))) (-1227)) (T -1277))
+((-3434 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1277 *3)))))
+(-13 (-1275 |#1|) (-10 -8 (-15 -3434 ($ (-650 |#1|)))))
+((-2417 (((-112) $ $) NIL)) (-1757 (((-1168) $ (-1168)) 107) (((-1168) $ (-1168) (-1168)) 105) (((-1168) $ (-1168) (-650 (-1168))) 104)) (-1944 (($) 69)) (-3945 (((-1282) $ (-474) (-928)) 54)) (-3087 (((-1282) $ (-928) (-1168)) 89) (((-1282) $ (-928) (-880)) 90)) (-2866 (((-1282) $ (-928) (-384) (-384)) 57)) (-3261 (((-1282) $ (-1168)) 84)) (-3051 (((-1282) $ (-928) (-1168)) 94)) (-3094 (((-1282) $ (-928) (-384) (-384)) 58)) (-2425 (((-1282) $ (-928) (-928)) 55)) (-1732 (((-1282) $) 85)) (-2591 (((-1282) $ (-928) (-1168)) 93)) (-2700 (((-1282) $ (-474) (-928)) 41)) (-1424 (((-1282) $ (-928) (-1168)) 92)) (-3280 (((-650 (-266)) $) 29) (($ $ (-650 (-266))) 30)) (-1561 (((-1282) $ (-777) (-777)) 52)) (-3974 (($ $) 70) (($ (-474) (-650 (-266))) 71)) (-4268 (((-1168) $) NIL)) (-2013 (((-570) $) 48)) (-3479 (((-1129) $) NIL)) (-3014 (((-1277 (-3 (-474) "undefined")) $) 47)) (-3555 (((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1424 (-570)) (|:| -1563 (-570)) (|:| |spline| (-570)) (|:| -3162 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $) 46)) (-3095 (((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570)) 83)) (-3219 (((-650 (-950 (-227))) $) NIL)) (-3117 (((-474) $ (-928)) 43)) (-4020 (((-1282) $ (-777) (-777) (-928) (-928)) 50)) (-4162 (((-1282) $ (-1168)) 95)) (-1563 (((-1282) $ (-928) (-1168)) 91)) (-3735 (((-868) $) 102)) (-4104 (((-1282) $) 96)) (-3866 (((-112) $ $) NIL)) (-3162 (((-1282) $ (-928) (-1168)) 87) (((-1282) $ (-928) (-880)) 88)) (-2872 (((-112) $ $) NIL)))
+(((-1278) (-13 (-1109) (-10 -8 (-15 -3219 ((-650 (-950 (-227))) $)) (-15 -1944 ($)) (-15 -3974 ($ $)) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -3974 ($ (-474) (-650 (-266)))) (-15 -3095 ((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -3555 ((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1424 (-570)) (|:| -1563 (-570)) (|:| |spline| (-570)) (|:| -3162 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -3014 ((-1277 (-3 (-474) "undefined")) $)) (-15 -3261 ((-1282) $ (-1168))) (-15 -2700 ((-1282) $ (-474) (-928))) (-15 -3117 ((-474) $ (-928))) (-15 -3162 ((-1282) $ (-928) (-1168))) (-15 -3162 ((-1282) $ (-928) (-880))) (-15 -3087 ((-1282) $ (-928) (-1168))) (-15 -3087 ((-1282) $ (-928) (-880))) (-15 -1424 ((-1282) $ (-928) (-1168))) (-15 -2591 ((-1282) $ (-928) (-1168))) (-15 -1563 ((-1282) $ (-928) (-1168))) (-15 -4162 ((-1282) $ (-1168))) (-15 -4104 ((-1282) $)) (-15 -4020 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -3094 ((-1282) $ (-928) (-384) (-384))) (-15 -2866 ((-1282) $ (-928) (-384) (-384))) (-15 -3051 ((-1282) $ (-928) (-1168))) (-15 -1561 ((-1282) $ (-777) (-777))) (-15 -3945 ((-1282) $ (-474) (-928))) (-15 -2425 ((-1282) $ (-928) (-928))) (-15 -1757 ((-1168) $ (-1168))) (-15 -1757 ((-1168) $ (-1168) (-1168))) (-15 -1757 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1732 ((-1282) $)) (-15 -2013 ((-570) $)) (-15 -3735 ((-868) $))))) (T -1278))
+((-3735 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1278)))) (-3219 (*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1278)))) (-1944 (*1 *1) (-5 *1 (-1278))) (-3974 (*1 *1 *1) (-5 *1 (-1278))) (-3280 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3280 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3974 (*1 *1 *2 *3) (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1278)))) (-3095 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-928)) (-5 *4 (-227)) (-5 *5 (-570)) (-5 *6 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3555 (*1 *2 *1) (-12 (-5 *2 (-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1424 (-570)) (|:| -1563 (-570)) (|:| |spline| (-570)) (|:| -3162 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570))))) (-5 *1 (-1278)))) (-3014 (*1 *2 *1) (-12 (-5 *2 (-1277 (-3 (-474) "undefined"))) (-5 *1 (-1278)))) (-3261 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2700 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3117 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1278)))) (-3162 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3162 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3087 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3087 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1424 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2591 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1563 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4162 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4104 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4020 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3094 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2866 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3051 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1561 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3945 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2425 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1757 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1757 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1757 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1732 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1278)))))
+(-13 (-1109) (-10 -8 (-15 -3219 ((-650 (-950 (-227))) $)) (-15 -1944 ($)) (-15 -3974 ($ $)) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -3974 ($ (-474) (-650 (-266)))) (-15 -3095 ((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -3555 ((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1424 (-570)) (|:| -1563 (-570)) (|:| |spline| (-570)) (|:| -3162 (-570)) (|:| |axesColor| (-880)) (|:| -3087 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -3014 ((-1277 (-3 (-474) "undefined")) $)) (-15 -3261 ((-1282) $ (-1168))) (-15 -2700 ((-1282) $ (-474) (-928))) (-15 -3117 ((-474) $ (-928))) (-15 -3162 ((-1282) $ (-928) (-1168))) (-15 -3162 ((-1282) $ (-928) (-880))) (-15 -3087 ((-1282) $ (-928) (-1168))) (-15 -3087 ((-1282) $ (-928) (-880))) (-15 -1424 ((-1282) $ (-928) (-1168))) (-15 -2591 ((-1282) $ (-928) (-1168))) (-15 -1563 ((-1282) $ (-928) (-1168))) (-15 -4162 ((-1282) $ (-1168))) (-15 -4104 ((-1282) $)) (-15 -4020 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -3094 ((-1282) $ (-928) (-384) (-384))) (-15 -2866 ((-1282) $ (-928) (-384) (-384))) (-15 -3051 ((-1282) $ (-928) (-1168))) (-15 -1561 ((-1282) $ (-777) (-777))) (-15 -3945 ((-1282) $ (-474) (-928))) (-15 -2425 ((-1282) $ (-928) (-928))) (-15 -1757 ((-1168) $ (-1168))) (-15 -1757 ((-1168) $ (-1168) (-1168))) (-15 -1757 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1732 ((-1282) $)) (-15 -2013 ((-570) $)) (-15 -3735 ((-868) $))))
+((-2417 (((-112) $ $) NIL)) (-1780 (((-1282) $ (-384)) 169) (((-1282) $ (-384) (-384) (-384)) 170)) (-1757 (((-1168) $ (-1168)) 179) (((-1168) $ (-1168) (-1168)) 177) (((-1168) $ (-1168) (-650 (-1168))) 176)) (-3862 (($) 67)) (-1789 (((-1282) $ (-384) (-384) (-384) (-384) (-384)) 141) (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $) 139) (((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 140) (((-1282) $ (-570) (-570) (-384) (-384) (-384)) 144) (((-1282) $ (-384) (-384)) 145) (((-1282) $ (-384) (-384) (-384)) 152)) (-1699 (((-384)) 122) (((-384) (-384)) 123)) (-2058 (((-384)) 117) (((-384) (-384)) 119)) (-3823 (((-384)) 120) (((-384) (-384)) 121)) (-2829 (((-384)) 126) (((-384) (-384)) 127)) (-3581 (((-384)) 124) (((-384) (-384)) 125)) (-2866 (((-1282) $ (-384) (-384)) 171)) (-3261 (((-1282) $ (-1168)) 153)) (-3796 (((-1142 (-227)) $) 68) (($ $ (-1142 (-227))) 69)) (-1936 (((-1282) $ (-1168)) 187)) (-3489 (((-1282) $ (-1168)) 188)) (-4235 (((-1282) $ (-384) (-384)) 151) (((-1282) $ (-570) (-570)) 168)) (-2425 (((-1282) $ (-928) (-928)) 160)) (-1732 (((-1282) $) 137)) (-2494 (((-1282) $ (-1168)) 186)) (-4300 (((-1282) $ (-1168)) 134)) (-3280 (((-650 (-266)) $) 70) (($ $ (-650 (-266))) 71)) (-1561 (((-1282) $ (-777) (-777)) 159)) (-4344 (((-1282) $ (-777) (-950 (-227))) 193)) (-3541 (($ $) 73) (($ (-1142 (-227)) (-1168)) 74) (($ (-1142 (-227)) (-650 (-266))) 75)) (-1490 (((-1282) $ (-384) (-384) (-384)) 131)) (-4268 (((-1168) $) NIL)) (-2013 (((-570) $) 128)) (-1389 (((-1282) $ (-384)) 174)) (-2228 (((-1282) $ (-384)) 191)) (-3479 (((-1129) $) NIL)) (-1604 (((-1282) $ (-384)) 190)) (-2014 (((-1282) $ (-1168)) 136)) (-4020 (((-1282) $ (-777) (-777) (-928) (-928)) 158)) (-4160 (((-1282) $ (-1168)) 133)) (-4162 (((-1282) $ (-1168)) 135)) (-3530 (((-1282) $ (-158) (-158)) 157)) (-3735 (((-868) $) 166)) (-4104 (((-1282) $) 138)) (-4074 (((-1282) $ (-1168)) 189)) (-3866 (((-112) $ $) NIL)) (-3162 (((-1282) $ (-1168)) 132)) (-2872 (((-112) $ $) NIL)))
+(((-1279) (-13 (-1109) (-10 -8 (-15 -2058 ((-384))) (-15 -2058 ((-384) (-384))) (-15 -3823 ((-384))) (-15 -3823 ((-384) (-384))) (-15 -1699 ((-384))) (-15 -1699 ((-384) (-384))) (-15 -3581 ((-384))) (-15 -3581 ((-384) (-384))) (-15 -2829 ((-384))) (-15 -2829 ((-384) (-384))) (-15 -3862 ($)) (-15 -3541 ($ $)) (-15 -3541 ($ (-1142 (-227)) (-1168))) (-15 -3541 ($ (-1142 (-227)) (-650 (-266)))) (-15 -3796 ((-1142 (-227)) $)) (-15 -3796 ($ $ (-1142 (-227)))) (-15 -4344 ((-1282) $ (-777) (-950 (-227)))) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -1561 ((-1282) $ (-777) (-777))) (-15 -2425 ((-1282) $ (-928) (-928))) (-15 -3261 ((-1282) $ (-1168))) (-15 -4020 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -1789 ((-1282) $ (-384) (-384) (-384) (-384) (-384))) (-15 -1789 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -1789 ((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -1789 ((-1282) $ (-570) (-570) (-384) (-384) (-384))) (-15 -1789 ((-1282) $ (-384) (-384))) (-15 -1789 ((-1282) $ (-384) (-384) (-384))) (-15 -4162 ((-1282) $ (-1168))) (-15 -3162 ((-1282) $ (-1168))) (-15 -4160 ((-1282) $ (-1168))) (-15 -4300 ((-1282) $ (-1168))) (-15 -2014 ((-1282) $ (-1168))) (-15 -4235 ((-1282) $ (-384) (-384))) (-15 -4235 ((-1282) $ (-570) (-570))) (-15 -1780 ((-1282) $ (-384))) (-15 -1780 ((-1282) $ (-384) (-384) (-384))) (-15 -2866 ((-1282) $ (-384) (-384))) (-15 -2494 ((-1282) $ (-1168))) (-15 -1604 ((-1282) $ (-384))) (-15 -2228 ((-1282) $ (-384))) (-15 -1936 ((-1282) $ (-1168))) (-15 -3489 ((-1282) $ (-1168))) (-15 -4074 ((-1282) $ (-1168))) (-15 -1490 ((-1282) $ (-384) (-384) (-384))) (-15 -1389 ((-1282) $ (-384))) (-15 -1732 ((-1282) $)) (-15 -3530 ((-1282) $ (-158) (-158))) (-15 -1757 ((-1168) $ (-1168))) (-15 -1757 ((-1168) $ (-1168) (-1168))) (-15 -1757 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4104 ((-1282) $)) (-15 -2013 ((-570) $))))) (T -1279))
+((-2058 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2058 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3823 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3823 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-1699 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-1699 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3581 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3581 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2829 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2829 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3862 (*1 *1) (-5 *1 (-1279))) (-3541 (*1 *1 *1) (-5 *1 (-1279))) (-3541 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1168)) (-5 *1 (-1279)))) (-3541 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-650 (-266))) (-5 *1 (-1279)))) (-3796 (*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))) (-3796 (*1 *1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))) (-4344 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3280 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))) (-3280 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))) (-1561 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2425 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3261 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4020 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1789 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1789 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-1279)))) (-1789 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1789 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-570)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1789 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1789 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4162 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3162 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4160 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4300 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2014 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4235 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4235 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1780 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1780 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2866 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2494 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1604 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2228 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1936 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3489 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4074 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1490 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1389 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1732 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3530 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-158)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1757 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))) (-1757 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))) (-1757 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1279)))) (-4104 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1279)))))
+(-13 (-1109) (-10 -8 (-15 -2058 ((-384))) (-15 -2058 ((-384) (-384))) (-15 -3823 ((-384))) (-15 -3823 ((-384) (-384))) (-15 -1699 ((-384))) (-15 -1699 ((-384) (-384))) (-15 -3581 ((-384))) (-15 -3581 ((-384) (-384))) (-15 -2829 ((-384))) (-15 -2829 ((-384) (-384))) (-15 -3862 ($)) (-15 -3541 ($ $)) (-15 -3541 ($ (-1142 (-227)) (-1168))) (-15 -3541 ($ (-1142 (-227)) (-650 (-266)))) (-15 -3796 ((-1142 (-227)) $)) (-15 -3796 ($ $ (-1142 (-227)))) (-15 -4344 ((-1282) $ (-777) (-950 (-227)))) (-15 -3280 ((-650 (-266)) $)) (-15 -3280 ($ $ (-650 (-266)))) (-15 -1561 ((-1282) $ (-777) (-777))) (-15 -2425 ((-1282) $ (-928) (-928))) (-15 -3261 ((-1282) $ (-1168))) (-15 -4020 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -1789 ((-1282) $ (-384) (-384) (-384) (-384) (-384))) (-15 -1789 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -1789 ((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -1789 ((-1282) $ (-570) (-570) (-384) (-384) (-384))) (-15 -1789 ((-1282) $ (-384) (-384))) (-15 -1789 ((-1282) $ (-384) (-384) (-384))) (-15 -4162 ((-1282) $ (-1168))) (-15 -3162 ((-1282) $ (-1168))) (-15 -4160 ((-1282) $ (-1168))) (-15 -4300 ((-1282) $ (-1168))) (-15 -2014 ((-1282) $ (-1168))) (-15 -4235 ((-1282) $ (-384) (-384))) (-15 -4235 ((-1282) $ (-570) (-570))) (-15 -1780 ((-1282) $ (-384))) (-15 -1780 ((-1282) $ (-384) (-384) (-384))) (-15 -2866 ((-1282) $ (-384) (-384))) (-15 -2494 ((-1282) $ (-1168))) (-15 -1604 ((-1282) $ (-384))) (-15 -2228 ((-1282) $ (-384))) (-15 -1936 ((-1282) $ (-1168))) (-15 -3489 ((-1282) $ (-1168))) (-15 -4074 ((-1282) $ (-1168))) (-15 -1490 ((-1282) $ (-384) (-384) (-384))) (-15 -1389 ((-1282) $ (-384))) (-15 -1732 ((-1282) $)) (-15 -3530 ((-1282) $ (-158) (-158))) (-15 -1757 ((-1168) $ (-1168))) (-15 -1757 ((-1168) $ (-1168) (-1168))) (-15 -1757 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4104 ((-1282) $)) (-15 -2013 ((-570) $))))
+((-2255 (((-650 (-1168)) (-650 (-1168))) 104) (((-650 (-1168))) 96)) (-3469 (((-650 (-1168))) 94)) (-4387 (((-650 (-928)) (-650 (-928))) 69) (((-650 (-928))) 64)) (-4053 (((-650 (-777)) (-650 (-777))) 61) (((-650 (-777))) 55)) (-1938 (((-1282)) 71)) (-4337 (((-928) (-928)) 87) (((-928)) 86)) (-1855 (((-928) (-928)) 85) (((-928)) 84)) (-4078 (((-880) (-880)) 81) (((-880)) 80)) (-3869 (((-227)) 91) (((-227) (-384)) 93)) (-2154 (((-928)) 88) (((-928) (-928)) 89)) (-3249 (((-928) (-928)) 83) (((-928)) 82)) (-2954 (((-880) (-880)) 75) (((-880)) 73)) (-3466 (((-880) (-880)) 77) (((-880)) 76)) (-4245 (((-880) (-880)) 79) (((-880)) 78)))
+(((-1280) (-10 -7 (-15 -2954 ((-880))) (-15 -2954 ((-880) (-880))) (-15 -3466 ((-880))) (-15 -3466 ((-880) (-880))) (-15 -4245 ((-880))) (-15 -4245 ((-880) (-880))) (-15 -4078 ((-880))) (-15 -4078 ((-880) (-880))) (-15 -3249 ((-928))) (-15 -3249 ((-928) (-928))) (-15 -4053 ((-650 (-777)))) (-15 -4053 ((-650 (-777)) (-650 (-777)))) (-15 -4387 ((-650 (-928)))) (-15 -4387 ((-650 (-928)) (-650 (-928)))) (-15 -1938 ((-1282))) (-15 -2255 ((-650 (-1168)))) (-15 -2255 ((-650 (-1168)) (-650 (-1168)))) (-15 -3469 ((-650 (-1168)))) (-15 -1855 ((-928))) (-15 -4337 ((-928))) (-15 -1855 ((-928) (-928))) (-15 -4337 ((-928) (-928))) (-15 -2154 ((-928) (-928))) (-15 -2154 ((-928))) (-15 -3869 ((-227) (-384))) (-15 -3869 ((-227))))) (T -1280))
+((-3869 (*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1280)))) (-3869 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1280)))) (-2154 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-2154 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-4337 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1855 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-4337 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1855 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-3469 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-2255 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-2255 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-1938 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1280)))) (-4387 (*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))) (-4387 (*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))) (-4053 (*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))) (-4053 (*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))) (-3249 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-3249 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-4078 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-4078 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-4245 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-4245 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3466 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3466 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2954 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2954 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(-10 -7 (-15 -2954 ((-880))) (-15 -2954 ((-880) (-880))) (-15 -3466 ((-880))) (-15 -3466 ((-880) (-880))) (-15 -4245 ((-880))) (-15 -4245 ((-880) (-880))) (-15 -4078 ((-880))) (-15 -4078 ((-880) (-880))) (-15 -3249 ((-928))) (-15 -3249 ((-928) (-928))) (-15 -4053 ((-650 (-777)))) (-15 -4053 ((-650 (-777)) (-650 (-777)))) (-15 -4387 ((-650 (-928)))) (-15 -4387 ((-650 (-928)) (-650 (-928)))) (-15 -1938 ((-1282))) (-15 -2255 ((-650 (-1168)))) (-15 -2255 ((-650 (-1168)) (-650 (-1168)))) (-15 -3469 ((-650 (-1168)))) (-15 -1855 ((-928))) (-15 -4337 ((-928))) (-15 -1855 ((-928) (-928))) (-15 -4337 ((-928) (-928))) (-15 -2154 ((-928) (-928))) (-15 -2154 ((-928))) (-15 -3869 ((-227) (-384))) (-15 -3869 ((-227))))
+((-1934 (((-474) (-650 (-650 (-950 (-227)))) (-650 (-266))) 22) (((-474) (-650 (-650 (-950 (-227))))) 21) (((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266))) 20)) (-3273 (((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266))) 33) (((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266))) 32)) (-3735 (((-1278) (-474)) 48)))
+(((-1281) (-10 -7 (-15 -1934 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -1934 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -1934 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3273 ((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -3273 ((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3735 ((-1278) (-474))))) (T -1281))
+((-3735 (*1 *2 *3) (-12 (-5 *3 (-474)) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-3273 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-3273 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-1934 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1281)))) (-1934 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474)) (-5 *1 (-1281)))) (-1934 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1281)))))
+(-10 -7 (-15 -1934 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -1934 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -1934 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3273 ((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -3273 ((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3735 ((-1278) (-474))))
((-2559 (($) 6)) (-3735 (((-868) $) 9)))
-(((-1281) (-13 (-619 (-868)) (-10 -8 (-15 -2559 ($))))) (T -1281))
-((-2559 (*1 *1) (-5 *1 (-1281))))
+(((-1282) (-13 (-619 (-868)) (-10 -8 (-15 -2559 ($))))) (T -1282))
+((-2559 (*1 *1) (-5 *1 (-1282))))
(-13 (-619 (-868)) (-10 -8 (-15 -2559 ($))))
((-2975 (($ $ |#2|) 10)))
-(((-1282 |#1| |#2|) (-10 -8 (-15 -2975 (|#1| |#1| |#2|))) (-1283 |#2|) (-368)) (T -1282))
+(((-1283 |#1| |#2|) (-10 -8 (-15 -2975 (|#1| |#1| |#2|))) (-1284 |#2|) (-368)) (T -1283))
NIL
(-10 -8 (-15 -2975 (|#1| |#1| |#2|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-2184 (((-135)) 33)) (-3735 (((-868) $) 12)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 34)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
-(((-1283 |#1|) (-141) (-368)) (T -1283))
-((-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-1283 *2)) (-4 *2 (-368)))) (-2184 (*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-368)) (-5 *2 (-135)))))
-(-13 (-723 |t#1|) (-10 -8 (-15 -2975 ($ $ |t#1|)) (-15 -2184 ((-135)))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-4154 (((-135)) 33)) (-3735 (((-868) $) 12)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-2872 (((-112) $ $) 6)) (-2975 (($ $ |#1|) 34)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+(((-1284 |#1|) (-141) (-368)) (T -1284))
+((-2975 (*1 *1 *1 *2) (-12 (-4 *1 (-1284 *2)) (-4 *2 (-368)))) (-4154 (*1 *2) (-12 (-4 *1 (-1284 *3)) (-4 *3 (-368)) (-5 *2 (-135)))))
+(-13 (-723 |t#1|) (-10 -8 (-15 -2975 ($ $ |t#1|)) (-15 -4154 ((-135)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-654 |#1|) . T) ((-646 |#1|) . T) ((-723 |#1|) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1109) . T))
-((-2254 (((-650 (-1220 |#1|)) (-1186) (-1220 |#1|)) 83)) (-2491 (((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|))) 63)) (-3188 (((-1 (-1166 (-1220 |#1|)) (-1166 (-1220 |#1|))) (-777) (-1220 |#1|) (-1166 (-1220 |#1|))) 74)) (-1545 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 65)) (-3515 (((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186)) 32)) (-4185 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 64)))
-(((-1284 |#1|) (-10 -7 (-15 -1545 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -4185 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -2491 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -3515 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -2254 ((-650 (-1220 |#1|)) (-1186) (-1220 |#1|))) (-15 -3188 ((-1 (-1166 (-1220 |#1|)) (-1166 (-1220 |#1|))) (-777) (-1220 |#1|) (-1166 (-1220 |#1|))))) (-368)) (T -1284))
-((-3188 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-777)) (-4 *6 (-368)) (-5 *4 (-1220 *6)) (-5 *2 (-1 (-1166 *4) (-1166 *4))) (-5 *1 (-1284 *6)) (-5 *5 (-1166 *4)))) (-2254 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1220 *5))) (-5 *1 (-1284 *5)) (-5 *4 (-1220 *5)))) (-3515 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4))) (-5 *1 (-1284 *4)) (-4 *4 (-368)))) (-2491 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-1166 (-1166 (-959 *5)))) (-5 *1 (-1284 *5)) (-5 *4 (-1166 (-959 *5))))) (-4185 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4)))) (-5 *1 (-1284 *4)) (-4 *4 (-368)))) (-1545 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4)))) (-5 *1 (-1284 *4)) (-4 *4 (-368)))))
-(-10 -7 (-15 -1545 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -4185 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -2491 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -3515 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -2254 ((-650 (-1220 |#1|)) (-1186) (-1220 |#1|))) (-15 -3188 ((-1 (-1166 (-1220 |#1|)) (-1166 (-1220 |#1|))) (-777) (-1220 |#1|) (-1166 (-1220 |#1|)))))
-((-2196 (((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 82)) (-3223 (((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 81)))
-(((-1285 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3223 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -2196 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|))) (-354) (-1252 |#1|) (-1252 |#2|) (-415 |#2| |#3|)) (T -1285))
-((-2196 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 *3)) (-5 *2 (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-1285 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))) (-3223 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 *4)) (-5 *2 (-2 (|:| -2331 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-1285 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
-(-10 -7 (-15 -3223 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -2196 ((-2 (|:| -2331 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)))
-((-2416 (((-112) $ $) NIL)) (-2061 (((-1144) $) 11)) (-3945 (((-1144) $) 9)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1286) (-13 (-1092) (-10 -8 (-15 -3945 ((-1144) $)) (-15 -2061 ((-1144) $))))) (T -1286))
-((-3945 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1286)))) (-2061 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1286)))))
-(-13 (-1092) (-10 -8 (-15 -3945 ((-1144) $)) (-15 -2061 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2387 (((-1144) $) 9)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1859 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
-(((-1287) (-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $))))) (T -1287))
-((-2387 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
+((-3627 (((-650 (-1221 |#1|)) (-1186) (-1221 |#1|)) 83)) (-4161 (((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|))) 63)) (-1540 (((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|))) 74)) (-3972 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 65)) (-1489 (((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186)) 32)) (-1898 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 64)))
+(((-1285 |#1|) (-10 -7 (-15 -3972 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -1898 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -4161 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -1489 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -3627 ((-650 (-1221 |#1|)) (-1186) (-1221 |#1|))) (-15 -1540 ((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|))))) (-368)) (T -1285))
+((-1540 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-777)) (-4 *6 (-368)) (-5 *4 (-1221 *6)) (-5 *2 (-1 (-1166 *4) (-1166 *4))) (-5 *1 (-1285 *6)) (-5 *5 (-1166 *4)))) (-3627 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1221 *5))) (-5 *1 (-1285 *5)) (-5 *4 (-1221 *5)))) (-1489 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))) (-4161 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-1166 (-1166 (-959 *5)))) (-5 *1 (-1285 *5)) (-5 *4 (-1166 (-959 *5))))) (-1898 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4)))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))) (-3972 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4)))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
+(-10 -7 (-15 -3972 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -1898 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -4161 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -1489 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -3627 ((-650 (-1221 |#1|)) (-1186) (-1221 |#1|))) (-15 -1540 ((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|)))))
+((-4265 (((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 82)) (-3705 (((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 81)))
+(((-1286 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3705 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4265 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|))) (-354) (-1253 |#1|) (-1253 |#2|) (-415 |#2| |#3|)) (T -1286))
+((-4265 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3)) (-5 *2 (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-1286 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))) (-3705 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -2003 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-1286 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
+(-10 -7 (-15 -3705 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4265 ((-2 (|:| -2003 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)))
+((-2417 (((-112) $ $) NIL)) (-2231 (((-1144) $) 11)) (-3104 (((-1144) $) 9)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1287) (-13 (-1092) (-10 -8 (-15 -3104 ((-1144) $)) (-15 -2231 ((-1144) $))))) (T -1287))
+((-3104 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))) (-2231 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
+(-13 (-1092) (-10 -8 (-15 -3104 ((-1144) $)) (-15 -2231 ((-1144) $))))
+((-2417 (((-112) $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-2387 (((-1144) $) 9)) (-3735 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3866 (((-112) $ $) NIL)) (-2872 (((-112) $ $) NIL)))
+(((-1288) (-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $))))) (T -1288))
+((-2387 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1288)))))
(-13 (-1092) (-10 -8 (-15 -2387 ((-1144) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 58)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) NIL)) (-2081 (((-112) $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 81) (($ (-570)) NIL) (($ |#4|) 65) ((|#4| $) 70) (($ |#1|) NIL (|has| |#1| (-174)))) (-2744 (((-777)) NIL T CONST)) (-4343 (((-1281) (-777)) 16)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 37 T CONST)) (-1823 (($) 84 T CONST)) (-2872 (((-112) $ $) 87)) (-2975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) 89) (($ $ $) NIL)) (-2954 (($ $ $) 63)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 91) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
-(((-1288 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1058) (-496 |#4|) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -4343 ((-1281) (-777))))) (-1058) (-856) (-799) (-956 |#1| |#3| |#2|) (-650 |#2|) (-650 (-777)) (-777)) (T -1288))
-((-2975 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-368)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-799)) (-14 *6 (-650 *3)) (-5 *1 (-1288 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-956 *2 *4 *3)) (-14 *7 (-650 (-777))) (-14 *8 (-777)))) (-4343 (*1 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-4 *5 (-856)) (-4 *6 (-799)) (-14 *8 (-650 *5)) (-5 *2 (-1281)) (-5 *1 (-1288 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-956 *4 *6 *5)) (-14 *9 (-650 *3)) (-14 *10 *3))))
-(-13 (-1058) (-496 |#4|) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -4343 ((-1281) (-777)))))
-((-2416 (((-112) $ $) NIL)) (-3383 (((-650 (-2 (|:| -4104 $) (|:| -1727 (-650 |#4|)))) (-650 |#4|)) NIL)) (-2411 (((-650 $) (-650 |#4|)) 96)) (-1716 (((-650 |#3|) $) NIL)) (-3418 (((-112) $) NIL)) (-1536 (((-112) $) NIL (|has| |#1| (-562)))) (-2920 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-3288 (((-2 (|:| |under| $) (|:| -3739 $) (|:| |upper| $)) $ |#3|) NIL)) (-3594 (((-112) $ (-777)) NIL)) (-1424 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448))) (((-3 |#4| "failed") $ |#3|) NIL)) (-2450 (($) NIL T CONST)) (-3809 (((-112) $) NIL (|has| |#1| (-562)))) (-2730 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1905 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2374 (((-112) $) NIL (|has| |#1| (-562)))) (-2072 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 31)) (-3742 (((-650 |#4|) (-650 |#4|) $) 28 (|has| |#1| (-562)))) (-4205 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4378 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 78)) (-2561 ((|#4| |#4| $) 83)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-1702 (($ |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-2785 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2914 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1808 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4448))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4448))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3169 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1727 (-650 |#4|))) $) NIL)) (-2836 (((-650 |#4|) $) NIL (|has| $ (-6 -4448)))) (-3911 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2711 ((|#3| $) 84)) (-2742 (((-112) $ (-777)) NIL)) (-2849 (((-650 |#4|) $) 32 (|has| $ (-6 -4448)))) (-3464 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109))))) (-1613 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 35) (((-3 $ "failed") (-650 |#4|)) 38)) (-3776 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4449)))) (-1351 (($ (-1 |#4| |#4|) $) NIL)) (-3727 (((-650 |#3|) $) NIL)) (-1844 (((-112) |#3| $) NIL)) (-3452 (((-112) $ (-777)) NIL)) (-1903 (((-1168) $) NIL)) (-1728 (((-3 |#4| "failed") $) NIL)) (-3185 (((-650 |#4|) $) 54)) (-1329 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1695 ((|#4| |#4| $) 82)) (-4122 (((-112) $ $) 93)) (-3880 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3236 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3339 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 77)) (-3321 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3802 (((-3 $ "failed") $ |#4|) NIL)) (-1558 (($ $ |#4|) NIL)) (-1671 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1730 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-4017 (((-112) $ $) NIL)) (-3329 (((-112) $) 75)) (-3743 (($) 46)) (-1601 (((-777) $) NIL)) (-3486 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4448)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-3915 (($ $) NIL)) (-1416 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3748 (($ (-650 |#4|)) NIL)) (-4280 (($ $ |#3|) NIL)) (-2185 (($ $ |#3|) NIL)) (-1892 (($ $) NIL)) (-1332 (($ $ |#3|) NIL)) (-3735 (((-868) $) NIL) (((-650 |#4|) $) 63)) (-1633 (((-777) $) NIL (|has| |#3| (-373)))) (-3786 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 44) (((-3 $ "failed") (-650 |#4|)) 45)) (-1672 (((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 73) (((-650 $) (-650 |#4|)) 74)) (-1859 (((-112) $ $) NIL)) (-2659 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 27) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2844 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4368 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4448)))) (-1521 (((-650 |#3|) $) NIL)) (-2663 (((-112) |#3| $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4448)))))
-(((-1289 |#1| |#2| |#3| |#4|) (-13 (-1219 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1613 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1613 ((-3 $ "failed") (-650 |#4|))) (-15 -3786 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3786 ((-3 $ "failed") (-650 |#4|))) (-15 -1672 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1672 ((-650 $) (-650 |#4|))))) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1289))
-((-1613 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1289 *5 *6 *7 *8)))) (-1613 (*1 *1 *2) (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1289 *3 *4 *5 *6)))) (-3786 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1289 *5 *6 *7 *8)))) (-3786 (*1 *1 *2) (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1289 *3 *4 *5 *6)))) (-1672 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-650 (-1289 *6 *7 *8 *9))) (-5 *1 (-1289 *6 *7 *8 *9)))) (-1672 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-1289 *4 *5 *6 *7))) (-5 *1 (-1289 *4 *5 *6 *7)))))
-(-13 (-1219 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1613 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1613 ((-3 $ "failed") (-650 |#4|))) (-15 -3786 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3786 ((-3 $ "failed") (-650 |#4|))) (-15 -1672 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1672 ((-650 $) (-650 |#4|)))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3596 (((-3 $ "failed") $ $) 20)) (-2450 (($) 18 T CONST)) (-3413 (((-3 $ "failed") $) 37)) (-2081 (((-112) $) 35)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 47) (($ |#1| $) 46)))
-(((-1290 |#1|) (-141) (-1058)) (T -1290))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 58)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) NIL)) (-4340 (((-112) $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3735 (((-868) $) 81) (($ (-570)) NIL) (($ |#4|) 65) ((|#4| $) 70) (($ |#1|) NIL (|has| |#1| (-174)))) (-1609 (((-777)) NIL T CONST)) (-2752 (((-1282) (-777)) 16)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 37 T CONST)) (-1824 (($) 84 T CONST)) (-2872 (((-112) $ $) 87)) (-2975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2965 (($ $) 89) (($ $ $) NIL)) (-2953 (($ $ $) 63)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 91) (($ |#1| $) NIL (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
+(((-1289 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1058) (-496 |#4|) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2752 ((-1282) (-777))))) (-1058) (-856) (-799) (-956 |#1| |#3| |#2|) (-650 |#2|) (-650 (-777)) (-777)) (T -1289))
+((-2975 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-368)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-799)) (-14 *6 (-650 *3)) (-5 *1 (-1289 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-956 *2 *4 *3)) (-14 *7 (-650 (-777))) (-14 *8 (-777)))) (-2752 (*1 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-4 *5 (-856)) (-4 *6 (-799)) (-14 *8 (-650 *5)) (-5 *2 (-1282)) (-5 *1 (-1289 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-956 *4 *6 *5)) (-14 *9 (-650 *3)) (-14 *10 *3))))
+(-13 (-1058) (-496 |#4|) (-10 -8 (IF (|has| |#1| (-174)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2975 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2752 ((-1282) (-777)))))
+((-2417 (((-112) $ $) NIL)) (-2658 (((-650 (-2 (|:| -4104 $) (|:| -1726 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1556 (((-650 $) (-650 |#4|)) 96)) (-1713 (((-650 |#3|) $) NIL)) (-2977 (((-112) $) NIL)) (-3873 (((-112) $) NIL (|has| |#1| (-562)))) (-3821 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3870 ((|#4| |#4| $) NIL)) (-3287 (((-2 (|:| |under| $) (|:| -2962 $) (|:| |upper| $)) $ |#3|) NIL)) (-4095 (((-112) $ (-777)) NIL)) (-1425 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3761 (($) NIL T CONST)) (-2391 (((-112) $) NIL (|has| |#1| (-562)))) (-1475 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2993 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2376 (((-112) $) NIL (|has| |#1| (-562)))) (-2327 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 31)) (-2996 (((-650 |#4|) (-650 |#4|) $) 28 (|has| |#1| (-562)))) (-3928 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4379 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3080 (($ (-650 |#4|)) NIL)) (-3455 (((-3 $ "failed") $) 78)) (-3565 ((|#4| |#4| $) 83)) (-3480 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1703 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3831 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3747 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3529 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4449))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4449))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1322 (((-2 (|:| -4104 (-650 |#4|)) (|:| -1726 (-650 |#4|))) $) NIL)) (-2835 (((-650 |#4|) $) NIL (|has| $ (-6 -4449)))) (-4071 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2451 ((|#3| $) 84)) (-1586 (((-112) $ (-777)) NIL)) (-3201 (((-650 |#4|) $) 32 (|has| $ (-6 -4449)))) (-2218 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3365 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 35) (((-3 $ "failed") (-650 |#4|)) 38)) (-3776 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4450)))) (-1352 (($ (-1 |#4| |#4|) $) NIL)) (-2881 (((-650 |#3|) $) NIL)) (-3710 (((-112) |#3| $) NIL)) (-2113 (((-112) $ (-777)) NIL)) (-4268 (((-1168) $) NIL)) (-1729 (((-3 |#4| "failed") $) NIL)) (-1507 (((-650 |#4|) $) 54)) (-1810 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1831 ((|#4| |#4| $) 82)) (-2458 (((-112) $ $) 93)) (-1920 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3851 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3464 ((|#4| |#4| $) NIL)) (-3479 (((-1129) $) NIL)) (-3443 (((-3 |#4| "failed") $) 77)) (-3281 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2329 (((-3 $ "failed") $ |#4|) NIL)) (-4102 (($ $ |#4|) NIL)) (-2697 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1731 (($ $ (-650 |#4|) (-650 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-298 |#4|)) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109)))) (($ $ (-650 (-298 |#4|))) NIL (-12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))) (-2621 (((-112) $ $) NIL)) (-3366 (((-112) $) 75)) (-3006 (($) 46)) (-3221 (((-777) $) NIL)) (-3490 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3916 (($ $) NIL)) (-1417 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3749 (($ (-650 |#4|)) NIL)) (-3408 (($ $ |#3|) NIL)) (-4164 (($ $ |#3|) NIL)) (-4148 (($ $) NIL)) (-1842 (($ $ |#3|) NIL)) (-3735 (((-868) $) NIL) (((-650 |#4|) $) 63)) (-3580 (((-777) $) NIL (|has| |#3| (-373)))) (-2214 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 44) (((-3 $ "failed") (-650 |#4|)) 45)) (-2708 (((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 73) (((-650 $) (-650 |#4|)) 74)) (-3866 (((-112) $ $) NIL)) (-2028 (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 27) (((-3 (-2 (|:| |bas| $) (|:| -3240 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3146 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-2964 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3690 (((-650 |#3|) $) NIL)) (-2048 (((-112) |#3| $) NIL)) (-2872 (((-112) $ $) NIL)) (-2426 (((-777) $) NIL (|has| $ (-6 -4449)))))
+(((-1290 |#1| |#2| |#3| |#4|) (-13 (-1220 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3365 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3365 ((-3 $ "failed") (-650 |#4|))) (-15 -2214 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2214 ((-3 $ "failed") (-650 |#4|))) (-15 -2708 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2708 ((-650 $) (-650 |#4|))))) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1290))
+((-3365 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1290 *5 *6 *7 *8)))) (-3365 (*1 *1 *2) (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1290 *3 *4 *5 *6)))) (-2214 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1290 *5 *6 *7 *8)))) (-2214 (*1 *1 *2) (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1290 *3 *4 *5 *6)))) (-2708 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-650 (-1290 *6 *7 *8 *9))) (-5 *1 (-1290 *6 *7 *8 *9)))) (-2708 (*1 *2 *3) (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-1290 *4 *5 *6 *7))) (-5 *1 (-1290 *4 *5 *6 *7)))))
+(-13 (-1220 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3365 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3365 ((-3 $ "failed") (-650 |#4|))) (-15 -2214 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2214 ((-3 $ "failed") (-650 |#4|))) (-15 -2708 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2708 ((-650 $) (-650 |#4|)))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-4119 (((-3 $ "failed") $ $) 20)) (-3761 (($) 18 T CONST)) (-2937 (((-3 $ "failed") $) 37)) (-4340 (((-112) $) 35)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 47) (($ |#1| $) 46)))
+(((-1291 |#1|) (-141) (-1058)) (T -1291))
NIL
(-13 (-1058) (-111 |t#1| |t#1|) (-622 |t#1|) (-10 -7 (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-174)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 |#1|) |has| |#1| (-174)) ((-723 |#1|) |has| |#1| (-174)) ((-732) . T) ((-1060 |#1|) . T) ((-1065 |#1|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2416 (((-112) $ $) 67)) (-4028 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 52)) (-2464 (($ $ (-777)) 46)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2830 (($ $ (-777)) 24 (|has| |#2| (-174))) (($ $ $) 25 (|has| |#2| (-174)))) (-2450 (($) NIL T CONST)) (-2477 (($ $ $) 70) (($ $ (-825 |#1|)) 56) (($ $ |#1|) 60)) (-4378 (((-3 (-825 |#1|) "failed") $) NIL)) (-3080 (((-825 |#1|) $) NIL)) (-1890 (($ $) 39)) (-3413 (((-3 $ "failed") $) NIL)) (-3489 (((-112) $) NIL)) (-1323 (($ $) NIL)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3278 (($ (-825 |#1|) |#2|) 38)) (-2543 (($ $) 40)) (-3794 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 12)) (-4110 (((-825 |#1|) $) NIL)) (-4207 (((-825 |#1|) $) 41)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3996 (($ $ $) 69) (($ $ (-825 |#1|)) 58) (($ $ |#1|) 62)) (-3864 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1855 (((-825 |#1|) $) 35)) (-1864 ((|#2| $) 37)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1601 (((-777) $) 43)) (-3267 (((-112) $) 47)) (-3640 ((|#2| $) NIL)) (-3735 (((-868) $) NIL) (($ (-825 |#1|)) 30) (($ |#1|) 31) (($ |#2|) NIL) (($ (-570)) NIL)) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-825 |#1|)) NIL)) (-1441 ((|#2| $ $) 76) ((|#2| $ (-825 |#1|)) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 13 T CONST)) (-1823 (($) 19 T CONST)) (-2824 (((-650 (-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2872 (((-112) $ $) 44)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 28)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#2| $) 27) (($ $ |#2|) 68) (($ |#2| (-825 |#1|)) NIL) (($ |#1| $) 33) (($ $ $) NIL)))
-(((-1291 |#1| |#2|) (-13 (-387 |#2| (-825 |#1|)) (-1297 |#1| |#2|)) (-856) (-1058)) (T -1291))
-NIL
-(-13 (-387 |#2| (-825 |#1|)) (-1297 |#1| |#2|))
-((-2635 ((|#3| |#3| (-777)) 30)) (-4387 ((|#3| |#3| (-777)) 36)) (-3606 ((|#3| |#3| |#3| (-777)) 37)))
-(((-1292 |#1| |#2| |#3|) (-10 -7 (-15 -4387 (|#3| |#3| (-777))) (-15 -2635 (|#3| |#3| (-777))) (-15 -3606 (|#3| |#3| |#3| (-777)))) (-13 (-1058) (-723 (-413 (-570)))) (-856) (-1297 |#2| |#1|)) (T -1292))
-((-3606 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570))))) (-4 *5 (-856)) (-5 *1 (-1292 *4 *5 *2)) (-4 *2 (-1297 *5 *4)))) (-2635 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570))))) (-4 *5 (-856)) (-5 *1 (-1292 *4 *5 *2)) (-4 *2 (-1297 *5 *4)))) (-4387 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570))))) (-4 *5 (-856)) (-5 *1 (-1292 *4 *5 *2)) (-4 *2 (-1297 *5 *4)))))
-(-10 -7 (-15 -4387 (|#3| |#3| (-777))) (-15 -2635 (|#3| |#3| (-777))) (-15 -3606 (|#3| |#3| |#3| (-777))))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3039 (((-650 |#1|) $) 47)) (-3596 (((-3 $ "failed") $ $) 20)) (-2830 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-2450 (($) 18 T CONST)) (-2477 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4378 (((-3 (-825 |#1|) "failed") $) 71)) (-3080 (((-825 |#1|) $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-3489 (((-112) $) 52)) (-1323 (($ $) 51)) (-2081 (((-112) $) 35)) (-1550 (((-112) $) 57)) (-3278 (($ (-825 |#1|) |#2|) 58)) (-2543 (($ $) 56)) (-3794 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-4110 (((-825 |#1|) $) 68)) (-1351 (($ (-1 |#2| |#2|) $) 48)) (-3996 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3267 (((-112) $) 54)) (-3640 ((|#2| $) 53)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1441 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
-(((-1293 |#1| |#2|) (-141) (-856) (-1058)) (T -1293))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1293 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-4110 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-3794 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))) (-1441 (*1 *2 *1 *3) (-12 (-5 *3 (-825 *4)) (-4 *1 (-1293 *4 *2)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1441 (*1 *2 *1 *1) (-12 (-4 *1 (-1293 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-3996 (*1 *1 *1 *2) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3996 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3996 (*1 *1 *1 *1) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-2477 (*1 *1 *1 *2) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-2477 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-2477 (*1 *1 *1 *1) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3278 (*1 *1 *2 *3) (-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1293 *4 *3)) (-4 *3 (-1058)))) (-1550 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-2543 (*1 *1 *1) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3735 (*1 *1 *2) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3267 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3640 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-3489 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-1323 (*1 *1 *1) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-2830 (*1 *1 *1 *1) (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)) (-4 *3 (-174)))) (-2830 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-4 *4 (-174)))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3039 (*1 *2 *1) (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-650 *3)))))
-(-13 (-1058) (-1290 |t#2|) (-1047 (-825 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -4110 ((-825 |t#1|) $)) (-15 -3794 ((-2 (|:| |k| (-825 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -1441 (|t#2| $ (-825 |t#1|))) (-15 -1441 (|t#2| $ $)) (-15 -3996 ($ $ |t#1|)) (-15 -3996 ($ $ (-825 |t#1|))) (-15 -3996 ($ $ $)) (-15 -2477 ($ $ |t#1|)) (-15 -2477 ($ $ (-825 |t#1|))) (-15 -2477 ($ $ $)) (-15 -3278 ($ (-825 |t#1|) |t#2|)) (-15 -1550 ((-112) $)) (-15 -2543 ($ $)) (-15 -3735 ($ |t#1|)) (-15 -3267 ((-112) $)) (-15 -3640 (|t#2| $)) (-15 -3489 ((-112) $)) (-15 -1323 ($ $)) (IF (|has| |t#2| (-174)) (PROGN (-15 -2830 ($ $ $)) (-15 -2830 ($ $ (-777)))) |%noBranch|) (-15 -1351 ($ (-1 |t#2| |t#2|) $)) (-15 -3039 ((-650 |t#1|) $)) (IF (|has| |t#2| (-6 -4441)) (-6 -4441) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-174)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 #0=(-825 |#1|)) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-652 $) . T) ((-654 |#2|) . T) ((-654 $) . T) ((-646 |#2|) |has| |#2| (-174)) ((-723 |#2|) |has| |#2| (-174)) ((-732) . T) ((-1047 #0#) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1290 |#2|) . T))
-((-2980 (((-112) $) 15)) (-2663 (((-112) $) 14)) (-3741 (($ $) 19) (($ $ (-777)) 21)))
-(((-1294 |#1| |#2|) (-10 -8 (-15 -3741 (|#1| |#1| (-777))) (-15 -3741 (|#1| |#1|)) (-15 -2980 ((-112) |#1|)) (-15 -2663 ((-112) |#1|))) (-1295 |#2|) (-368)) (T -1294))
-NIL
-(-10 -8 (-15 -3741 (|#1| |#1| (-777))) (-15 -3741 (|#1| |#1|)) (-15 -2980 ((-112) |#1|)) (-15 -2663 ((-112) |#1|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3732 (((-2 (|:| -1733 $) (|:| -4435 $) (|:| |associate| $)) $) 47)) (-3171 (($ $) 46)) (-2720 (((-112) $) 44)) (-2980 (((-112) $) 104)) (-2412 (((-777)) 100)) (-3596 (((-3 $ "failed") $ $) 20)) (-2222 (($ $) 81)) (-1790 (((-424 $) $) 80)) (-4339 (((-112) $ $) 65)) (-2450 (($) 18 T CONST)) (-4378 (((-3 |#1| "failed") $) 111)) (-3080 ((|#1| $) 112)) (-2372 (($ $ $) 61)) (-3413 (((-3 $ "failed") $) 37)) (-2381 (($ $ $) 62)) (-3984 (((-2 (|:| -1441 (-650 $)) (|:| -2339 $)) (-650 $)) 57)) (-2774 (($ $ (-777)) 97 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1552 (((-112) $) 79)) (-3157 (((-839 (-928)) $) 94 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2081 (((-112) $) 35)) (-2041 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1845 (($ $ $) 52) (($ (-650 $)) 51)) (-1903 (((-1168) $) 10)) (-1825 (($ $) 78)) (-2289 (((-112) $) 103)) (-3479 (((-1129) $) 11)) (-3450 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3738 (((-424 $) $) 82)) (-3916 (((-839 (-928))) 101)) (-2044 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2339 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2407 (((-3 $ "failed") $ $) 48)) (-1906 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2272 (((-777) $) 64)) (-2382 (((-2 (|:| -3331 $) (|:| -2785 $)) $ $) 63)) (-2845 (((-3 (-777) "failed") $ $) 95 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2184 (((-135)) 109)) (-1601 (((-839 (-928)) $) 102)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-1918 (((-3 $ "failed") $) 93 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1681 (((-112) $ $) 45)) (-2663 (((-112) $) 105)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-3741 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73) (($ $ |#1|) 108)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
-(((-1295 |#1|) (-141) (-368)) (T -1295))
-((-2663 (*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-2980 (*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-2289 (*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-3916 (*1 *2) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-2412 (*1 *2) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-777)))) (-3741 (*1 *1 *1) (-12 (-4 *1 (-1295 *2)) (-4 *2 (-368)) (-4 *2 (-373)))) (-3741 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-4 *3 (-373)))))
-(-13 (-368) (-1047 |t#1|) (-1283 |t#1|) (-10 -8 (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-408)) |%noBranch|) (-15 -2663 ((-112) $)) (-15 -2980 ((-112) $)) (-15 -2289 ((-112) $)) (-15 -1601 ((-839 (-928)) $)) (-15 -3916 ((-839 (-928)))) (-15 -2412 ((-777))) (IF (|has| |t#1| (-373)) (PROGN (-6 (-408)) (-15 -3741 ($ $)) (-15 -3741 ($ $ (-777)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-408) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 |#1|) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1230) . T) ((-1283 |#1|) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 98)) (-2464 (($ $ (-777)) 102)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2830 (($ $ $) NIL (|has| |#2| (-174))) (($ $ (-777)) NIL (|has| |#2| (-174)))) (-2450 (($) NIL T CONST)) (-2477 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-4378 (((-3 (-825 |#1|) "failed") $) NIL) (((-3 (-900 |#1|) "failed") $) NIL)) (-3080 (((-825 |#1|) $) NIL) (((-900 |#1|) $) NIL)) (-1890 (($ $) 101)) (-3413 (((-3 $ "failed") $) NIL)) (-3489 (((-112) $) 90)) (-1323 (($ $) 93)) (-2213 (($ $ $ (-777)) 103)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3278 (($ (-825 |#1|) |#2|) NIL) (($ (-900 |#1|) |#2|) 29)) (-2543 (($ $) 120)) (-3794 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-4110 (((-825 |#1|) $) NIL)) (-4207 (((-825 |#1|) $) NIL)) (-1351 (($ (-1 |#2| |#2|) $) NIL)) (-3996 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-2635 (($ $ (-777)) 113 (|has| |#2| (-723 (-413 (-570)))))) (-3864 (((-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1855 (((-900 |#1|) $) 83)) (-1864 ((|#2| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4387 (($ $ (-777)) 110 (|has| |#2| (-723 (-413 (-570)))))) (-1601 (((-777) $) 99)) (-3267 (((-112) $) 84)) (-3640 ((|#2| $) 88)) (-3735 (((-868) $) 69) (($ (-570)) NIL) (($ |#2|) 60) (($ (-825 |#1|)) NIL) (($ |#1|) 71) (($ (-900 |#1|)) NIL) (($ (-670 |#1| |#2|)) 48) (((-1291 |#1| |#2|) $) 76) (((-1300 |#1| |#2|) $) 81)) (-3009 (((-650 |#2|) $) NIL)) (-1715 ((|#2| $ (-900 |#1|)) NIL)) (-1441 ((|#2| $ (-825 |#1|)) NIL) ((|#2| $ $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 21 T CONST)) (-1823 (($) 28 T CONST)) (-2824 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2045 (((-3 (-670 |#1| |#2|) "failed") $) 119)) (-2872 (((-112) $ $) 77)) (-2965 (($ $) 112) (($ $ $) 111)) (-2954 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 49) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-900 |#1|)) NIL)))
-(((-1296 |#1| |#2|) (-13 (-1297 |#1| |#2|) (-387 |#2| (-900 |#1|)) (-10 -8 (-15 -3735 ($ (-670 |#1| |#2|))) (-15 -3735 ((-1291 |#1| |#2|) $)) (-15 -3735 ((-1300 |#1| |#2|) $)) (-15 -2045 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -2213 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4387 ($ $ (-777))) (-15 -2635 ($ $ (-777)))) |%noBranch|))) (-856) (-174)) (T -1296))
-((-3735 (*1 *1 *2) (-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-1296 *3 *4)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1291 *3 *4)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1300 *3 *4)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-2045 (*1 *2 *1) (|partial| -12 (-5 *2 (-670 *3 *4)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-2213 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4387 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1296 *3 *4)) (-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))) (-2635 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1296 *3 *4)) (-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))))
-(-13 (-1297 |#1| |#2|) (-387 |#2| (-900 |#1|)) (-10 -8 (-15 -3735 ($ (-670 |#1| |#2|))) (-15 -3735 ((-1291 |#1| |#2|) $)) (-15 -3735 ((-1300 |#1| |#2|) $)) (-15 -2045 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -2213 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4387 ($ $ (-777))) (-15 -2635 ($ $ (-777)))) |%noBranch|)))
-((-2416 (((-112) $ $) 7)) (-4028 (((-112) $) 17)) (-3039 (((-650 |#1|) $) 47)) (-2464 (($ $ (-777)) 80)) (-3596 (((-3 $ "failed") $ $) 20)) (-2830 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-2450 (($) 18 T CONST)) (-2477 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4378 (((-3 (-825 |#1|) "failed") $) 71)) (-3080 (((-825 |#1|) $) 72)) (-3413 (((-3 $ "failed") $) 37)) (-3489 (((-112) $) 52)) (-1323 (($ $) 51)) (-2081 (((-112) $) 35)) (-1550 (((-112) $) 57)) (-3278 (($ (-825 |#1|) |#2|) 58)) (-2543 (($ $) 56)) (-3794 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-4110 (((-825 |#1|) $) 68)) (-4207 (((-825 |#1|) $) 82)) (-1351 (($ (-1 |#2| |#2|) $) 48)) (-3996 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-1903 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-1601 (((-777) $) 81)) (-3267 (((-112) $) 54)) (-3640 ((|#2| $) 53)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1441 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-2744 (((-777)) 32 T CONST)) (-1859 (((-112) $ $) 9)) (-1812 (($) 19 T CONST)) (-1823 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2954 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
-(((-1297 |#1| |#2|) (-141) (-856) (-1058)) (T -1297))
-((-4207 (*1 *2 *1) (-12 (-4 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-1601 (*1 *2 *1) (-12 (-4 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-2464 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
-(-13 (-1293 |t#1| |t#2|) (-10 -8 (-15 -4207 ((-825 |t#1|) $)) (-15 -1601 ((-777) $)) (-15 -2464 ($ $ (-777)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-174)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 #0=(-825 |#1|)) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-652 $) . T) ((-654 |#2|) . T) ((-654 $) . T) ((-646 |#2|) |has| |#2| (-174)) ((-723 |#2|) |has| |#2| (-174)) ((-732) . T) ((-1047 #0#) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1290 |#2|) . T) ((-1293 |#1| |#2|) . T))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3039 (((-650 (-1186)) $) NIL)) (-3445 (($ (-1291 (-1186) |#1|)) NIL)) (-2464 (($ $ (-777)) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2830 (($ $ $) NIL (|has| |#1| (-174))) (($ $ (-777)) NIL (|has| |#1| (-174)))) (-2450 (($) NIL T CONST)) (-2477 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-4378 (((-3 (-825 (-1186)) "failed") $) NIL)) (-3080 (((-825 (-1186)) $) NIL)) (-3413 (((-3 $ "failed") $) NIL)) (-3489 (((-112) $) NIL)) (-1323 (($ $) NIL)) (-2081 (((-112) $) NIL)) (-1550 (((-112) $) NIL)) (-3278 (($ (-825 (-1186)) |#1|) NIL)) (-2543 (($ $) NIL)) (-3794 (((-2 (|:| |k| (-825 (-1186))) (|:| |c| |#1|)) $) NIL)) (-4110 (((-825 (-1186)) $) NIL)) (-4207 (((-825 (-1186)) $) NIL)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3996 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1387 (((-1291 (-1186) |#1|) $) NIL)) (-1601 (((-777) $) NIL)) (-3267 (((-112) $) NIL)) (-3640 ((|#1| $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-825 (-1186))) NIL) (($ (-1186)) NIL)) (-1441 ((|#1| $ (-825 (-1186))) NIL) ((|#1| $ $) NIL)) (-2744 (((-777)) NIL T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) NIL T CONST)) (-1577 (((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $) NIL)) (-1823 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1186) $) NIL)))
-(((-1298 |#1|) (-13 (-1297 (-1186) |#1|) (-10 -8 (-15 -1387 ((-1291 (-1186) |#1|) $)) (-15 -3445 ($ (-1291 (-1186) |#1|))) (-15 -1577 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $)))) (-1058)) (T -1298))
-((-1387 (*1 *2 *1) (-12 (-5 *2 (-1291 (-1186) *3)) (-5 *1 (-1298 *3)) (-4 *3 (-1058)))) (-3445 (*1 *1 *2) (-12 (-5 *2 (-1291 (-1186) *3)) (-4 *3 (-1058)) (-5 *1 (-1298 *3)))) (-1577 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| (-1186)) (|:| |c| (-1298 *3))))) (-5 *1 (-1298 *3)) (-4 *3 (-1058)))))
-(-13 (-1297 (-1186) |#1|) (-10 -8 (-15 -1387 ((-1291 (-1186) |#1|) $)) (-15 -3445 ($ (-1291 (-1186) |#1|))) (-15 -1577 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $))))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) NIL)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2450 (($) NIL T CONST)) (-4378 (((-3 |#2| "failed") $) NIL)) (-3080 ((|#2| $) NIL)) (-1890 (($ $) NIL)) (-3413 (((-3 $ "failed") $) 42)) (-3489 (((-112) $) 35)) (-1323 (($ $) 37)) (-2081 (((-112) $) NIL)) (-3797 (((-777) $) NIL)) (-1435 (((-650 $) $) NIL)) (-1550 (((-112) $) NIL)) (-3278 (($ |#2| |#1|) NIL)) (-4110 ((|#2| $) 24)) (-4207 ((|#2| $) 22)) (-1351 (($ (-1 |#1| |#1|) $) NIL)) (-3864 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1855 ((|#2| $) NIL)) (-1864 ((|#1| $) NIL)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3267 (((-112) $) 32)) (-3640 ((|#1| $) 33)) (-3735 (((-868) $) 65) (($ (-570)) 46) (($ |#1|) 41) (($ |#2|) NIL)) (-3009 (((-650 |#1|) $) NIL)) (-1715 ((|#1| $ |#2|) NIL)) (-1441 ((|#1| $ |#2|) 28)) (-2744 (((-777)) 14 T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 29 T CONST)) (-1823 (($) 11 T CONST)) (-2824 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-2872 (((-112) $ $) 30)) (-2975 (($ $ |#1|) 67 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2954 (($ $ $) 50)) (** (($ $ (-928)) NIL) (($ $ (-777)) 52)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 51) (($ |#1| $) 47) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-2426 (((-777) $) 16)))
-(((-1299 |#1| |#2|) (-13 (-1058) (-1290 |#1|) (-387 |#1| |#2|) (-622 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2426 ((-777) $)) (-15 -4207 (|#2| $)) (-15 -4110 (|#2| $)) (-15 -1890 ($ $)) (-15 -1441 (|#1| $ |#2|)) (-15 -3267 ((-112) $)) (-15 -3640 (|#1| $)) (-15 -3489 ((-112) $)) (-15 -1323 ($ $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -2975 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4441)) (-6 -4441) |%noBranch|) (IF (|has| |#1| (-6 -4445)) (-6 -4445) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|))) (-1058) (-852)) (T -1299))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1890 (*1 *1 *1) (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1351 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-1299 *3 *4)) (-4 *4 (-852)))) (-2426 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1299 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-4207 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1299 *3 *2)) (-4 *3 (-1058)))) (-4110 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1299 *3 *2)) (-4 *3 (-1058)))) (-1441 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-1299 *2 *3)) (-4 *3 (-852)))) (-3267 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1299 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3640 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-1299 *2 *3)) (-4 *3 (-852)))) (-3489 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1299 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-1323 (*1 *1 *1) (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-2975 (*1 *1 *1 *2) (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-368)) (-4 *2 (-1058)) (-4 *3 (-852)))))
-(-13 (-1058) (-1290 |#1|) (-387 |#1| |#2|) (-622 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2426 ((-777) $)) (-15 -4207 (|#2| $)) (-15 -4110 (|#2| $)) (-15 -1890 ($ $)) (-15 -1441 (|#1| $ |#2|)) (-15 -3267 ((-112) $)) (-15 -3640 (|#1| $)) (-15 -3489 ((-112) $)) (-15 -1323 ($ $)) (-15 -1351 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -2975 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4441)) (-6 -4441) |%noBranch|) (IF (|has| |#1| (-6 -4445)) (-6 -4445) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|)))
-((-2416 (((-112) $ $) 27)) (-4028 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 132)) (-3445 (($ (-1291 |#1| |#2|)) 50)) (-2464 (($ $ (-777)) 38)) (-3596 (((-3 $ "failed") $ $) NIL)) (-2830 (($ $ $) 54 (|has| |#2| (-174))) (($ $ (-777)) 52 (|has| |#2| (-174)))) (-2450 (($) NIL T CONST)) (-2477 (($ $ |#1|) 114) (($ $ (-825 |#1|)) 115) (($ $ $) 26)) (-4378 (((-3 (-825 |#1|) "failed") $) NIL)) (-3080 (((-825 |#1|) $) NIL)) (-3413 (((-3 $ "failed") $) 122)) (-3489 (((-112) $) 117)) (-1323 (($ $) 118)) (-2081 (((-112) $) NIL)) (-1550 (((-112) $) NIL)) (-3278 (($ (-825 |#1|) |#2|) 20)) (-2543 (($ $) NIL)) (-3794 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-4110 (((-825 |#1|) $) 123)) (-4207 (((-825 |#1|) $) 126)) (-1351 (($ (-1 |#2| |#2|) $) 131)) (-3996 (($ $ |#1|) 112) (($ $ (-825 |#1|)) 113) (($ $ $) 62)) (-1903 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1387 (((-1291 |#1| |#2|) $) 94)) (-1601 (((-777) $) 129)) (-3267 (((-112) $) 81)) (-3640 ((|#2| $) 32)) (-3735 (((-868) $) 73) (($ (-570)) 87) (($ |#2|) 85) (($ (-825 |#1|)) 18) (($ |#1|) 84)) (-1441 ((|#2| $ (-825 |#1|)) 116) ((|#2| $ $) 28)) (-2744 (((-777)) 120 T CONST)) (-1859 (((-112) $ $) NIL)) (-1812 (($) 15 T CONST)) (-1577 (((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 59)) (-1823 (($) 33 T CONST)) (-2872 (((-112) $ $) 14)) (-2965 (($ $) 98) (($ $ $) 101)) (-2954 (($ $ $) 61)) (** (($ $ (-928)) NIL) (($ $ (-777)) 55)) (* (($ (-928) $) NIL) (($ (-777) $) 53) (($ (-570) $) 106) (($ $ $) 22) (($ |#2| $) 19) (($ $ |#2|) 21) (($ |#1| $) 92)))
-(((-1300 |#1| |#2|) (-13 (-1297 |#1| |#2|) (-10 -8 (-15 -1387 ((-1291 |#1| |#2|) $)) (-15 -3445 ($ (-1291 |#1| |#2|))) (-15 -1577 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-856) (-1058)) (T -1300))
-((-1387 (*1 *2 *1) (-12 (-5 *2 (-1291 *3 *4)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3445 (*1 *1 *2) (-12 (-5 *2 (-1291 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *1 (-1300 *3 *4)))) (-1577 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| *3) (|:| |c| (-1300 *3 *4))))) (-5 *1 (-1300 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
-(-13 (-1297 |#1| |#2|) (-10 -8 (-15 -1387 ((-1291 |#1| |#2|) $)) (-15 -3445 ($ (-1291 |#1| |#2|))) (-15 -1577 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-1547 (((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)) 20) (((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|))) 13)))
-(((-1301 |#1|) (-10 -7 (-15 -1547 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1547 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)))) (-1226)) (T -1301))
-((-1547 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-650 (-1166 *5)) (-650 (-1166 *5)))) (-5 *4 (-570)) (-5 *2 (-650 (-1166 *5))) (-5 *1 (-1301 *5)) (-4 *5 (-1226)))) (-1547 (*1 *2 *3) (-12 (-5 *3 (-1 (-1166 *4) (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1301 *4)) (-4 *4 (-1226)))))
-(-10 -7 (-15 -1547 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1547 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570))))
-((-3909 (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 174) (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 173) (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 172) (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112)) 171) (((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-1055 |#1| |#2|)) 156)) (-3096 (((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|))) 85) (((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112)) 84) (((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112)) 83)) (-1790 (((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|)) 73)) (-2008 (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|))) 140) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112)) 139) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112)) 138) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112)) 137) (((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|)) 132)) (-1819 (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|))) 145) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112)) 144) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112)) 143) (((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|)) 142)) (-1416 (((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) 111) (((-1182 (-1033 (-413 |#1|))) (-1182 |#1|)) 102) (((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|))) 109) (((-959 (-1033 (-413 |#1|))) (-959 |#1|)) 107) (((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|))) 33)))
-(((-1302 |#1| |#2| |#3|) (-10 -7 (-15 -3096 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3096 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -3096 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1790 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1416 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1416 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1416 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1416 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1416 ((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))))) (-13 (-854) (-311) (-148) (-1031)) (-650 (-1186)) (-650 (-1186))) (T -1302))
-((-1416 (*1 *2 *3) (-12 (-5 *3 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6)))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-786 *4 (-870 *6)))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-1182 (-1033 (-413 *4)))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-786 *4 (-870 *6))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *6 (-650 (-1186))) (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-786 *4 (-870 *5))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-786 *4 (-870 *6))) (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-1790 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6))))) (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-1819 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1819 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-1819 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-1819 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-2008 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-2008 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2008 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2008 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2008 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-3909 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *4)) (|:| -1807 (-650 (-959 *4)))))) (-5 *1 (-1302 *4 *5 *6)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-3909 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5)))))) (-5 *1 (-1302 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3909 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5)))))) (-5 *1 (-1302 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3909 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5)))))) (-5 *1 (-1302 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3909 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-2 (|:| -3130 (-1182 *4)) (|:| -1807 (-650 (-959 *4)))))) (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-3096 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *4 *5))) (-5 *1 (-1302 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-3096 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3096 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1302 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))))
-(-10 -7 (-15 -3096 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3096 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -3096 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3909 ((-650 (-2 (|:| -3130 (-1182 |#1|)) (|:| -1807 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -2008 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1819 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1790 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1416 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1416 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1416 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1416 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1416 ((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|))))))
-((-3811 (((-3 (-1276 (-413 (-570))) "failed") (-1276 |#1|) |#1|) 21)) (-3722 (((-112) (-1276 |#1|)) 12)) (-4328 (((-3 (-1276 (-570)) "failed") (-1276 |#1|)) 16)))
-(((-1303 |#1|) (-10 -7 (-15 -3722 ((-112) (-1276 |#1|))) (-15 -4328 ((-3 (-1276 (-570)) "failed") (-1276 |#1|))) (-15 -3811 ((-3 (-1276 (-413 (-570))) "failed") (-1276 |#1|) |#1|))) (-645 (-570))) (T -1303))
-((-3811 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1276 (-413 (-570)))) (-5 *1 (-1303 *4)))) (-4328 (*1 *2 *3) (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1276 (-570))) (-5 *1 (-1303 *4)))) (-3722 (*1 *2 *3) (-12 (-5 *3 (-1276 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112)) (-5 *1 (-1303 *4)))))
-(-10 -7 (-15 -3722 ((-112) (-1276 |#1|))) (-15 -4328 ((-3 (-1276 (-570)) "failed") (-1276 |#1|))) (-15 -3811 ((-3 (-1276 (-413 (-570))) "failed") (-1276 |#1|) |#1|)))
-((-2416 (((-112) $ $) NIL)) (-4028 (((-112) $) 11)) (-3596 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777)) 8)) (-2450 (($) NIL T CONST)) (-3413 (((-3 $ "failed") $) 58)) (-3336 (($) 49)) (-2081 (((-112) $) 57)) (-2885 (((-3 $ "failed") $) 40)) (-2367 (((-928) $) 15)) (-1903 (((-1168) $) NIL)) (-2314 (($) 32 T CONST)) (-2159 (($ (-928)) 50)) (-3479 (((-1129) $) NIL)) (-1416 (((-570) $) 13)) (-3735 (((-868) $) 27) (($ (-570)) 24)) (-2744 (((-777)) 9 T CONST)) (-1859 (((-112) $ $) 60)) (-1812 (($) 29 T CONST)) (-1823 (($) 31 T CONST)) (-2872 (((-112) $ $) 38)) (-2965 (($ $) 52) (($ $ $) 47)) (-2954 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) 54)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 44) (($ $ $) 43)))
-(((-1304 |#1|) (-13 (-174) (-373) (-620 (-570)) (-1161)) (-928)) (T -1304))
+((-2417 (((-112) $ $) 67)) (-2745 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 52)) (-3895 (($ $ (-777)) 46)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4322 (($ $ (-777)) 24 (|has| |#2| (-174))) (($ $ $) 25 (|has| |#2| (-174)))) (-3761 (($) NIL T CONST)) (-4034 (($ $ $) 70) (($ $ (-825 |#1|)) 56) (($ $ |#1|) 60)) (-4379 (((-3 (-825 |#1|) "failed") $) NIL)) (-3080 (((-825 |#1|) $) NIL)) (-1891 (($ $) 39)) (-2937 (((-3 $ "failed") $) NIL)) (-2411 (((-112) $) NIL)) (-1751 (($ $) NIL)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3278 (($ (-825 |#1|) |#2|) 38)) (-3374 (($ $) 40)) (-2262 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 12)) (-2359 (((-825 |#1|) $) NIL)) (-3951 (((-825 |#1|) $) 41)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-3684 (($ $ $) 69) (($ $ (-825 |#1|)) 58) (($ $ |#1|) 62)) (-1773 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1857 (((-825 |#1|) $) 35)) (-1865 ((|#2| $) 37)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-3221 (((-777) $) 43)) (-4116 (((-112) $) 47)) (-3640 ((|#2| $) NIL)) (-3735 (((-868) $) NIL) (($ (-825 |#1|)) 30) (($ |#1|) 31) (($ |#2|) NIL) (($ (-570)) NIL)) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-825 |#1|)) NIL)) (-1442 ((|#2| $ $) 76) ((|#2| $ (-825 |#1|)) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 13 T CONST)) (-1824 (($) 19 T CONST)) (-4256 (((-650 (-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2872 (((-112) $ $) 44)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 28)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#2| $) 27) (($ $ |#2|) 68) (($ |#2| (-825 |#1|)) NIL) (($ |#1| $) 33) (($ $ $) NIL)))
+(((-1292 |#1| |#2|) (-13 (-387 |#2| (-825 |#1|)) (-1298 |#1| |#2|)) (-856) (-1058)) (T -1292))
+NIL
+(-13 (-387 |#2| (-825 |#1|)) (-1298 |#1| |#2|))
+((-2635 ((|#3| |#3| (-777)) 30)) (-4388 ((|#3| |#3| (-777)) 36)) (-4237 ((|#3| |#3| |#3| (-777)) 37)))
+(((-1293 |#1| |#2| |#3|) (-10 -7 (-15 -4388 (|#3| |#3| (-777))) (-15 -2635 (|#3| |#3| (-777))) (-15 -4237 (|#3| |#3| |#3| (-777)))) (-13 (-1058) (-723 (-413 (-570)))) (-856) (-1298 |#2| |#1|)) (T -1293))
+((-4237 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570))))) (-4 *5 (-856)) (-5 *1 (-1293 *4 *5 *2)) (-4 *2 (-1298 *5 *4)))) (-2635 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570))))) (-4 *5 (-856)) (-5 *1 (-1293 *4 *5 *2)) (-4 *2 (-1298 *5 *4)))) (-4388 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570))))) (-4 *5 (-856)) (-5 *1 (-1293 *4 *5 *2)) (-4 *2 (-1298 *5 *4)))))
+(-10 -7 (-15 -4388 (|#3| |#3| (-777))) (-15 -2635 (|#3| |#3| (-777))) (-15 -4237 (|#3| |#3| |#3| (-777))))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3039 (((-650 |#1|) $) 47)) (-4119 (((-3 $ "failed") $ $) 20)) (-4322 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-3761 (($) 18 T CONST)) (-4034 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4379 (((-3 (-825 |#1|) "failed") $) 71)) (-3080 (((-825 |#1|) $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-2411 (((-112) $) 52)) (-1751 (($ $) 51)) (-4340 (((-112) $) 35)) (-4016 (((-112) $) 57)) (-3278 (($ (-825 |#1|) |#2|) 58)) (-3374 (($ $) 56)) (-2262 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-2359 (((-825 |#1|) $) 68)) (-1352 (($ (-1 |#2| |#2|) $) 48)) (-3684 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-4116 (((-112) $) 54)) (-3640 ((|#2| $) 53)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1442 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
+(((-1294 |#1| |#2|) (-141) (-856) (-1058)) (T -1294))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-2262 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))) (-1442 (*1 *2 *1 *3) (-12 (-5 *3 (-825 *4)) (-4 *1 (-1294 *4 *2)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1442 (*1 *2 *1 *1) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-3684 (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3684 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3684 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-4034 (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-4034 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-4034 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3278 (*1 *1 *2 *3) (-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1294 *4 *3)) (-4 *3 (-1058)))) (-4016 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3374 (*1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3735 (*1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-4116 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3640 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-1751 (*1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-4322 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)) (-4 *3 (-174)))) (-4322 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-4 *4 (-174)))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3039 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-650 *3)))))
+(-13 (-1058) (-1291 |t#2|) (-1047 (-825 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -2359 ((-825 |t#1|) $)) (-15 -2262 ((-2 (|:| |k| (-825 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -1442 (|t#2| $ (-825 |t#1|))) (-15 -1442 (|t#2| $ $)) (-15 -3684 ($ $ |t#1|)) (-15 -3684 ($ $ (-825 |t#1|))) (-15 -3684 ($ $ $)) (-15 -4034 ($ $ |t#1|)) (-15 -4034 ($ $ (-825 |t#1|))) (-15 -4034 ($ $ $)) (-15 -3278 ($ (-825 |t#1|) |t#2|)) (-15 -4016 ((-112) $)) (-15 -3374 ($ $)) (-15 -3735 ($ |t#1|)) (-15 -4116 ((-112) $)) (-15 -3640 (|t#2| $)) (-15 -2411 ((-112) $)) (-15 -1751 ($ $)) (IF (|has| |t#2| (-174)) (PROGN (-15 -4322 ($ $ $)) (-15 -4322 ($ $ (-777)))) |%noBranch|) (-15 -1352 ($ (-1 |t#2| |t#2|) $)) (-15 -3039 ((-650 |t#1|) $)) (IF (|has| |t#2| (-6 -4442)) (-6 -4442) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-174)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 #0=(-825 |#1|)) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-652 $) . T) ((-654 |#2|) . T) ((-654 $) . T) ((-646 |#2|) |has| |#2| (-174)) ((-723 |#2|) |has| |#2| (-174)) ((-732) . T) ((-1047 #0#) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1291 |#2|) . T))
+((-3096 (((-112) $) 15)) (-2048 (((-112) $) 14)) (-2984 (($ $) 19) (($ $ (-777)) 21)))
+(((-1295 |#1| |#2|) (-10 -8 (-15 -2984 (|#1| |#1| (-777))) (-15 -2984 (|#1| |#1|)) (-15 -3096 ((-112) |#1|)) (-15 -2048 ((-112) |#1|))) (-1296 |#2|) (-368)) (T -1295))
+NIL
+(-10 -8 (-15 -2984 (|#1| |#1| (-777))) (-15 -2984 (|#1| |#1|)) (-15 -3096 ((-112) |#1|)) (-15 -2048 ((-112) |#1|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-2921 (((-2 (|:| -2101 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-1345 (($ $) 46)) (-1372 (((-112) $) 44)) (-3096 (((-112) $) 104)) (-1566 (((-777)) 100)) (-4119 (((-3 $ "failed") $ $) 20)) (-3252 (($ $) 81)) (-1378 (((-424 $) $) 80)) (-2707 (((-112) $ $) 65)) (-3761 (($) 18 T CONST)) (-4379 (((-3 |#1| "failed") $) 111)) (-3080 ((|#1| $) 112)) (-2372 (($ $ $) 61)) (-2937 (((-3 $ "failed") $) 37)) (-2382 (($ $ $) 62)) (-3561 (((-2 (|:| -1442 (-650 $)) (|:| -2340 $)) (-650 $)) 57)) (-1901 (($ $ (-777)) 97 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4037 (((-112) $) 79)) (-4331 (((-839 (-928)) $) 94 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4340 (((-112) $) 35)) (-2045 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1847 (($ $ $) 52) (($ (-650 $)) 51)) (-4268 (((-1168) $) 10)) (-1826 (($ $) 78)) (-2699 (((-112) $) 103)) (-3479 (((-1129) $) 11)) (-2092 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1874 (($ $ $) 54) (($ (-650 $)) 53)) (-3739 (((-424 $) $) 82)) (-4118 (((-839 (-928))) 101)) (-2074 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2340 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2406 (((-3 $ "failed") $ $) 48)) (-3003 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2547 (((-777) $) 64)) (-4378 (((-2 (|:| -3389 $) (|:| -3831 $)) $ $) 63)) (-3156 (((-3 (-777) "failed") $ $) 95 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4154 (((-135)) 109)) (-3221 (((-839 (-928)) $) 102)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-3127 (((-3 $ "failed") $) 93 (-2740 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-2795 (((-112) $ $) 45)) (-2048 (((-112) $) 105)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2984 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-2872 (((-112) $ $) 6)) (-2975 (($ $ $) 73) (($ $ |#1|) 108)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
+(((-1296 |#1|) (-141) (-368)) (T -1296))
+((-2048 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-3096 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-2699 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-4118 (*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-1566 (*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-777)))) (-2984 (*1 *1 *1) (-12 (-4 *1 (-1296 *2)) (-4 *2 (-368)) (-4 *2 (-373)))) (-2984 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-4 *3 (-373)))))
+(-13 (-368) (-1047 |t#1|) (-1284 |t#1|) (-10 -8 (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-408)) |%noBranch|) (-15 -2048 ((-112) $)) (-15 -3096 ((-112) $)) (-15 -2699 ((-112) $)) (-15 -3221 ((-839 (-928)) $)) (-15 -4118 ((-839 (-928)))) (-15 -1566 ((-777))) (IF (|has| |t#1| (-373)) (PROGN (-6 (-408)) (-15 -2984 ($ $)) (-15 -2984 ($ $ (-777)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) . T) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) . T) ((-619 (-868)) . T) ((-174) . T) ((-245) . T) ((-294) . T) ((-311) . T) ((-368) . T) ((-408) -2740 (|has| |#1| (-373)) (|has| |#1| (-146))) ((-458) . T) ((-562) . T) ((-652 #0#) . T) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) . T) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-723 #0#) . T) ((-723 |#1|) . T) ((-723 $) . T) ((-732) . T) ((-927) . T) ((-1047 |#1|) . T) ((-1060 #0#) . T) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) . T) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) . T) ((-1284 |#1|) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 98)) (-3895 (($ $ (-777)) 102)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4322 (($ $ $) NIL (|has| |#2| (-174))) (($ $ (-777)) NIL (|has| |#2| (-174)))) (-3761 (($) NIL T CONST)) (-4034 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-4379 (((-3 (-825 |#1|) "failed") $) NIL) (((-3 (-900 |#1|) "failed") $) NIL)) (-3080 (((-825 |#1|) $) NIL) (((-900 |#1|) $) NIL)) (-1891 (($ $) 101)) (-2937 (((-3 $ "failed") $) NIL)) (-2411 (((-112) $) 90)) (-1751 (($ $) 93)) (-3144 (($ $ $ (-777)) 103)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3278 (($ (-825 |#1|) |#2|) NIL) (($ (-900 |#1|) |#2|) 29)) (-3374 (($ $) 120)) (-2262 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2359 (((-825 |#1|) $) NIL)) (-3951 (((-825 |#1|) $) NIL)) (-1352 (($ (-1 |#2| |#2|) $) NIL)) (-3684 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-2635 (($ $ (-777)) 113 (|has| |#2| (-723 (-413 (-570)))))) (-1773 (((-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1857 (((-900 |#1|) $) 83)) (-1865 ((|#2| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4388 (($ $ (-777)) 110 (|has| |#2| (-723 (-413 (-570)))))) (-3221 (((-777) $) 99)) (-4116 (((-112) $) 84)) (-3640 ((|#2| $) 88)) (-3735 (((-868) $) 69) (($ (-570)) NIL) (($ |#2|) 60) (($ (-825 |#1|)) NIL) (($ |#1|) 71) (($ (-900 |#1|)) NIL) (($ (-670 |#1| |#2|)) 48) (((-1292 |#1| |#2|) $) 76) (((-1301 |#1| |#2|) $) 81)) (-3405 (((-650 |#2|) $) NIL)) (-1983 ((|#2| $ (-900 |#1|)) NIL)) (-1442 ((|#2| $ (-825 |#1|)) NIL) ((|#2| $ $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 21 T CONST)) (-1824 (($) 28 T CONST)) (-4256 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2086 (((-3 (-670 |#1| |#2|) "failed") $) 119)) (-2872 (((-112) $ $) 77)) (-2965 (($ $) 112) (($ $ $) 111)) (-2953 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 49) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-900 |#1|)) NIL)))
+(((-1297 |#1| |#2|) (-13 (-1298 |#1| |#2|) (-387 |#2| (-900 |#1|)) (-10 -8 (-15 -3735 ($ (-670 |#1| |#2|))) (-15 -3735 ((-1292 |#1| |#2|) $)) (-15 -3735 ((-1301 |#1| |#2|) $)) (-15 -2086 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -3144 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4388 ($ $ (-777))) (-15 -2635 ($ $ (-777)))) |%noBranch|))) (-856) (-174)) (T -1297))
+((-3735 (*1 *1 *2) (-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-1297 *3 *4)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-2086 (*1 *2 *1) (|partial| -12 (-5 *2 (-670 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3144 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4388 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))) (-2635 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))))
+(-13 (-1298 |#1| |#2|) (-387 |#2| (-900 |#1|)) (-10 -8 (-15 -3735 ($ (-670 |#1| |#2|))) (-15 -3735 ((-1292 |#1| |#2|) $)) (-15 -3735 ((-1301 |#1| |#2|) $)) (-15 -2086 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -3144 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4388 ($ $ (-777))) (-15 -2635 ($ $ (-777)))) |%noBranch|)))
+((-2417 (((-112) $ $) 7)) (-2745 (((-112) $) 17)) (-3039 (((-650 |#1|) $) 47)) (-3895 (($ $ (-777)) 80)) (-4119 (((-3 $ "failed") $ $) 20)) (-4322 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-3761 (($) 18 T CONST)) (-4034 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4379 (((-3 (-825 |#1|) "failed") $) 71)) (-3080 (((-825 |#1|) $) 72)) (-2937 (((-3 $ "failed") $) 37)) (-2411 (((-112) $) 52)) (-1751 (($ $) 51)) (-4340 (((-112) $) 35)) (-4016 (((-112) $) 57)) (-3278 (($ (-825 |#1|) |#2|) 58)) (-3374 (($ $) 56)) (-2262 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-2359 (((-825 |#1|) $) 68)) (-3951 (((-825 |#1|) $) 82)) (-1352 (($ (-1 |#2| |#2|) $) 48)) (-3684 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-4268 (((-1168) $) 10)) (-3479 (((-1129) $) 11)) (-3221 (((-777) $) 81)) (-4116 (((-112) $) 54)) (-3640 ((|#2| $) 53)) (-3735 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1442 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-1609 (((-777)) 32 T CONST)) (-3866 (((-112) $ $) 9)) (-1814 (($) 19 T CONST)) (-1824 (($) 34 T CONST)) (-2872 (((-112) $ $) 6)) (-2965 (($ $) 23) (($ $ $) 22)) (-2953 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
+(((-1298 |#1| |#2|) (-141) (-856) (-1058)) (T -1298))
+((-3951 (*1 *2 *1) (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-3895 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
+(-13 (-1294 |t#1| |t#2|) (-10 -8 (-15 -3951 ((-825 |t#1|) $)) (-15 -3221 ((-777) $)) (-15 -3895 ($ $ (-777)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-174)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-132) . T) ((-622 (-570)) . T) ((-622 #0=(-825 |#1|)) . T) ((-622 |#2|) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-652 |#2|) . T) ((-652 $) . T) ((-654 |#2|) . T) ((-654 $) . T) ((-646 |#2|) |has| |#2| (-174)) ((-723 |#2|) |has| |#2| (-174)) ((-732) . T) ((-1047 #0#) . T) ((-1060 |#2|) . T) ((-1065 |#2|) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1291 |#2|) . T) ((-1294 |#1| |#2|) . T))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-3039 (((-650 (-1186)) $) NIL)) (-2062 (($ (-1292 (-1186) |#1|)) NIL)) (-3895 (($ $ (-777)) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4322 (($ $ $) NIL (|has| |#1| (-174))) (($ $ (-777)) NIL (|has| |#1| (-174)))) (-3761 (($) NIL T CONST)) (-4034 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-4379 (((-3 (-825 (-1186)) "failed") $) NIL)) (-3080 (((-825 (-1186)) $) NIL)) (-2937 (((-3 $ "failed") $) NIL)) (-2411 (((-112) $) NIL)) (-1751 (($ $) NIL)) (-4340 (((-112) $) NIL)) (-4016 (((-112) $) NIL)) (-3278 (($ (-825 (-1186)) |#1|) NIL)) (-3374 (($ $) NIL)) (-2262 (((-2 (|:| |k| (-825 (-1186))) (|:| |c| |#1|)) $) NIL)) (-2359 (((-825 (-1186)) $) NIL)) (-3951 (((-825 (-1186)) $) NIL)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-3684 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1388 (((-1292 (-1186) |#1|) $) NIL)) (-3221 (((-777) $) NIL)) (-4116 (((-112) $) NIL)) (-3640 ((|#1| $) NIL)) (-3735 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-825 (-1186))) NIL) (($ (-1186)) NIL)) (-1442 ((|#1| $ (-825 (-1186))) NIL) ((|#1| $ $) NIL)) (-1609 (((-777)) NIL T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) NIL T CONST)) (-3008 (((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $) NIL)) (-1824 (($) NIL T CONST)) (-2872 (((-112) $ $) NIL)) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1186) $) NIL)))
+(((-1299 |#1|) (-13 (-1298 (-1186) |#1|) (-10 -8 (-15 -1388 ((-1292 (-1186) |#1|) $)) (-15 -2062 ($ (-1292 (-1186) |#1|))) (-15 -3008 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $)))) (-1058)) (T -1299))
+((-1388 (*1 *2 *1) (-12 (-5 *2 (-1292 (-1186) *3)) (-5 *1 (-1299 *3)) (-4 *3 (-1058)))) (-2062 (*1 *1 *2) (-12 (-5 *2 (-1292 (-1186) *3)) (-4 *3 (-1058)) (-5 *1 (-1299 *3)))) (-3008 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| (-1186)) (|:| |c| (-1299 *3))))) (-5 *1 (-1299 *3)) (-4 *3 (-1058)))))
+(-13 (-1298 (-1186) |#1|) (-10 -8 (-15 -1388 ((-1292 (-1186) |#1|) $)) (-15 -2062 ($ (-1292 (-1186) |#1|))) (-15 -3008 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $))))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) NIL)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3761 (($) NIL T CONST)) (-4379 (((-3 |#2| "failed") $) NIL)) (-3080 ((|#2| $) NIL)) (-1891 (($ $) NIL)) (-2937 (((-3 $ "failed") $) 42)) (-2411 (((-112) $) 35)) (-1751 (($ $) 37)) (-4340 (((-112) $) NIL)) (-2292 (((-777) $) NIL)) (-1471 (((-650 $) $) NIL)) (-4016 (((-112) $) NIL)) (-3278 (($ |#2| |#1|) NIL)) (-2359 ((|#2| $) 24)) (-3951 ((|#2| $) 22)) (-1352 (($ (-1 |#1| |#1|) $) NIL)) (-1773 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1857 ((|#2| $) NIL)) (-1865 ((|#1| $) NIL)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-4116 (((-112) $) 32)) (-3640 ((|#1| $) 33)) (-3735 (((-868) $) 65) (($ (-570)) 46) (($ |#1|) 41) (($ |#2|) NIL)) (-3405 (((-650 |#1|) $) NIL)) (-1983 ((|#1| $ |#2|) NIL)) (-1442 ((|#1| $ |#2|) 28)) (-1609 (((-777)) 14 T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 29 T CONST)) (-1824 (($) 11 T CONST)) (-4256 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-2872 (((-112) $ $) 30)) (-2975 (($ $ |#1|) 67 (|has| |#1| (-368)))) (-2965 (($ $) NIL) (($ $ $) NIL)) (-2953 (($ $ $) 50)) (** (($ $ (-928)) NIL) (($ $ (-777)) 52)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 51) (($ |#1| $) 47) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-2426 (((-777) $) 16)))
+(((-1300 |#1| |#2|) (-13 (-1058) (-1291 |#1|) (-387 |#1| |#2|) (-622 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2426 ((-777) $)) (-15 -3951 (|#2| $)) (-15 -2359 (|#2| $)) (-15 -1891 ($ $)) (-15 -1442 (|#1| $ |#2|)) (-15 -4116 ((-112) $)) (-15 -3640 (|#1| $)) (-15 -2411 ((-112) $)) (-15 -1751 ($ $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -2975 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4442)) (-6 -4442) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|))) (-1058) (-852)) (T -1300))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1891 (*1 *1 *1) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1352 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-1300 *3 *4)) (-4 *4 (-852)))) (-2426 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3951 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))) (-2359 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))) (-1442 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))) (-4116 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3640 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))) (-2411 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-1751 (*1 *1 *1) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-2975 (*1 *1 *1 *2) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-368)) (-4 *2 (-1058)) (-4 *3 (-852)))))
+(-13 (-1058) (-1291 |#1|) (-387 |#1| |#2|) (-622 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2426 ((-777) $)) (-15 -3951 (|#2| $)) (-15 -2359 (|#2| $)) (-15 -1891 ($ $)) (-15 -1442 (|#1| $ |#2|)) (-15 -4116 ((-112) $)) (-15 -3640 (|#1| $)) (-15 -2411 ((-112) $)) (-15 -1751 ($ $)) (-15 -1352 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -2975 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4442)) (-6 -4442) |%noBranch|) (IF (|has| |#1| (-6 -4446)) (-6 -4446) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|)))
+((-2417 (((-112) $ $) 27)) (-2745 (((-112) $) NIL)) (-3039 (((-650 |#1|) $) 132)) (-2062 (($ (-1292 |#1| |#2|)) 50)) (-3895 (($ $ (-777)) 38)) (-4119 (((-3 $ "failed") $ $) NIL)) (-4322 (($ $ $) 54 (|has| |#2| (-174))) (($ $ (-777)) 52 (|has| |#2| (-174)))) (-3761 (($) NIL T CONST)) (-4034 (($ $ |#1|) 114) (($ $ (-825 |#1|)) 115) (($ $ $) 26)) (-4379 (((-3 (-825 |#1|) "failed") $) NIL)) (-3080 (((-825 |#1|) $) NIL)) (-2937 (((-3 $ "failed") $) 122)) (-2411 (((-112) $) 117)) (-1751 (($ $) 118)) (-4340 (((-112) $) NIL)) (-4016 (((-112) $) NIL)) (-3278 (($ (-825 |#1|) |#2|) 20)) (-3374 (($ $) NIL)) (-2262 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2359 (((-825 |#1|) $) 123)) (-3951 (((-825 |#1|) $) 126)) (-1352 (($ (-1 |#2| |#2|) $) 131)) (-3684 (($ $ |#1|) 112) (($ $ (-825 |#1|)) 113) (($ $ $) 62)) (-4268 (((-1168) $) NIL)) (-3479 (((-1129) $) NIL)) (-1388 (((-1292 |#1| |#2|) $) 94)) (-3221 (((-777) $) 129)) (-4116 (((-112) $) 81)) (-3640 ((|#2| $) 32)) (-3735 (((-868) $) 73) (($ (-570)) 87) (($ |#2|) 85) (($ (-825 |#1|)) 18) (($ |#1|) 84)) (-1442 ((|#2| $ (-825 |#1|)) 116) ((|#2| $ $) 28)) (-1609 (((-777)) 120 T CONST)) (-3866 (((-112) $ $) NIL)) (-1814 (($) 15 T CONST)) (-3008 (((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 59)) (-1824 (($) 33 T CONST)) (-2872 (((-112) $ $) 14)) (-2965 (($ $) 98) (($ $ $) 101)) (-2953 (($ $ $) 61)) (** (($ $ (-928)) NIL) (($ $ (-777)) 55)) (* (($ (-928) $) NIL) (($ (-777) $) 53) (($ (-570) $) 106) (($ $ $) 22) (($ |#2| $) 19) (($ $ |#2|) 21) (($ |#1| $) 92)))
+(((-1301 |#1| |#2|) (-13 (-1298 |#1| |#2|) (-10 -8 (-15 -1388 ((-1292 |#1| |#2|) $)) (-15 -2062 ($ (-1292 |#1| |#2|))) (-15 -3008 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-856) (-1058)) (T -1301))
+((-1388 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1301 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-2062 (*1 *1 *2) (-12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *1 (-1301 *3 *4)))) (-3008 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |k| *3) (|:| |c| (-1301 *3 *4))))) (-5 *1 (-1301 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
+(-13 (-1298 |#1| |#2|) (-10 -8 (-15 -1388 ((-1292 |#1| |#2|) $)) (-15 -2062 ($ (-1292 |#1| |#2|))) (-15 -3008 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-1548 (((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)) 20) (((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|))) 13)))
+(((-1302 |#1|) (-10 -7 (-15 -1548 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1548 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)))) (-1227)) (T -1302))
+((-1548 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-650 (-1166 *5)) (-650 (-1166 *5)))) (-5 *4 (-570)) (-5 *2 (-650 (-1166 *5))) (-5 *1 (-1302 *5)) (-4 *5 (-1227)))) (-1548 (*1 *2 *3) (-12 (-5 *3 (-1 (-1166 *4) (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1302 *4)) (-4 *4 (-1227)))))
+(-10 -7 (-15 -1548 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1548 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570))))
+((-4051 (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 174) (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 173) (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 172) (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112)) 171) (((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-1055 |#1| |#2|)) 156)) (-2961 (((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|))) 85) (((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112)) 84) (((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112)) 83)) (-1378 (((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|)) 73)) (-2858 (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|))) 140) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112)) 139) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112)) 138) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112)) 137) (((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|)) 132)) (-1646 (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|))) 145) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112)) 144) (((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112)) 143) (((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|)) 142)) (-1417 (((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) 111) (((-1182 (-1033 (-413 |#1|))) (-1182 |#1|)) 102) (((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|))) 109) (((-959 (-1033 (-413 |#1|))) (-959 |#1|)) 107) (((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|))) 33)))
+(((-1303 |#1| |#2| |#3|) (-10 -7 (-15 -2961 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2961 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -2961 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1378 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1417 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1417 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1417 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1417 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1417 ((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))))) (-13 (-854) (-311) (-148) (-1031)) (-650 (-1186)) (-650 (-1186))) (T -1303))
+((-1417 (*1 *2 *3) (-12 (-5 *3 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6)))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-786 *4 (-870 *6)))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-1182 (-1033 (-413 *4)))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-786 *4 (-870 *6))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *6 (-650 (-1186))) (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-786 *4 (-870 *5))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-786 *4 (-870 *6))) (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-1378 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-1646 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1646 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-1646 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-1646 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-2858 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-2858 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2858 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2858 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2858 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-4051 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *4)) (|:| -1533 (-650 (-959 *4)))))) (-5 *1 (-1303 *4 *5 *6)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-4051 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5)))))) (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-4051 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5)))))) (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-4051 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5)))))) (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-4051 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-2 (|:| -2164 (-1182 *4)) (|:| -1533 (-650 (-959 *4)))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-2961 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *4 *5))) (-5 *1 (-1303 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-2961 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2961 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1303 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))))
+(-10 -7 (-15 -2961 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2961 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -2961 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -4051 ((-650 (-2 (|:| -2164 (-1182 |#1|)) (|:| -1533 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -2858 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1646 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1378 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1417 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1417 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1417 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1417 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1417 ((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|))))))
+((-2407 (((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|) 21)) (-2840 (((-112) (-1277 |#1|)) 12)) (-2586 (((-3 (-1277 (-570)) "failed") (-1277 |#1|)) 16)))
+(((-1304 |#1|) (-10 -7 (-15 -2840 ((-112) (-1277 |#1|))) (-15 -2586 ((-3 (-1277 (-570)) "failed") (-1277 |#1|))) (-15 -2407 ((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|))) (-645 (-570))) (T -1304))
+((-2407 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1277 (-413 (-570)))) (-5 *1 (-1304 *4)))) (-2586 (*1 *2 *3) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1277 (-570))) (-5 *1 (-1304 *4)))) (-2840 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112)) (-5 *1 (-1304 *4)))))
+(-10 -7 (-15 -2840 ((-112) (-1277 |#1|))) (-15 -2586 ((-3 (-1277 (-570)) "failed") (-1277 |#1|))) (-15 -2407 ((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|)))
+((-2417 (((-112) $ $) NIL)) (-2745 (((-112) $) 11)) (-4119 (((-3 $ "failed") $ $) NIL)) (-3403 (((-777)) 8)) (-3761 (($) NIL T CONST)) (-2937 (((-3 $ "failed") $) 58)) (-3336 (($) 49)) (-4340 (((-112) $) 57)) (-3584 (((-3 $ "failed") $) 40)) (-2332 (((-928) $) 15)) (-4268 (((-1168) $) NIL)) (-2315 (($) 32 T CONST)) (-2160 (($ (-928)) 50)) (-3479 (((-1129) $) NIL)) (-1417 (((-570) $) 13)) (-3735 (((-868) $) 27) (($ (-570)) 24)) (-1609 (((-777)) 9 T CONST)) (-3866 (((-112) $ $) 60)) (-1814 (($) 29 T CONST)) (-1824 (($) 31 T CONST)) (-2872 (((-112) $ $) 38)) (-2965 (($ $) 52) (($ $ $) 47)) (-2953 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) 54)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 44) (($ $ $) 43)))
+(((-1305 |#1|) (-13 (-174) (-373) (-620 (-570)) (-1161)) (-928)) (T -1305))
NIL
(-13 (-174) (-373) (-620 (-570)) (-1161))
NIL
@@ -5379,4 +5383,4 @@ NIL
NIL
NIL
NIL
-((-3 3228194 3228199 3228204 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3228179 3228184 3228189 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3228164 3228169 3228174 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3228149 3228154 3228159 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1304 3227292 3228024 3228101 "ZMOD" 3228106 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1303 3226402 3226566 3226775 "ZLINDEP" 3227124 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1302 3215702 3217470 3219442 "ZDSOLVE" 3224532 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1301 3214948 3215089 3215278 "YSTREAM" 3215548 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1300 3212722 3214249 3214453 "XRPOLY" 3214791 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1299 3209275 3210593 3211168 "XPR" 3212194 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1298 3206996 3208606 3208810 "XPOLY" 3209106 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1297 3204649 3206017 3206072 "XPOLYC" 3206360 NIL XPOLYC (NIL T T) -9 NIL 3206473 NIL) (-1296 3201025 3203166 3203554 "XPBWPOLY" 3204307 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1295 3196720 3199015 3199057 "XF" 3199678 NIL XF (NIL T) -9 NIL 3200078 NIL) (-1294 3196341 3196429 3196598 "XF-" 3196603 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1293 3191537 3192826 3192881 "XFALG" 3195053 NIL XFALG (NIL T T) -9 NIL 3195842 NIL) (-1292 3190670 3190774 3190979 "XEXPPKG" 3191429 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1291 3188779 3190520 3190616 "XDPOLY" 3190621 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1290 3187586 3188186 3188229 "XALG" 3188234 NIL XALG (NIL T) -9 NIL 3188345 NIL) (-1289 3181028 3185563 3186057 "WUTSET" 3187178 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1288 3179284 3180080 3180403 "WP" 3180839 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1287 3178886 3179106 3179176 "WHILEAST" 3179236 T WHILEAST (NIL) -8 NIL NIL NIL) (-1286 3178358 3178603 3178697 "WHEREAST" 3178814 T WHEREAST (NIL) -8 NIL NIL NIL) (-1285 3177244 3177442 3177737 "WFFINTBS" 3178155 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1284 3175148 3175575 3176037 "WEIER" 3176816 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1283 3174194 3174644 3174686 "VSPACE" 3174822 NIL VSPACE (NIL T) -9 NIL 3174896 NIL) (-1282 3174032 3174059 3174150 "VSPACE-" 3174155 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1281 3173841 3173883 3173951 "VOID" 3173986 T VOID (NIL) -8 NIL NIL NIL) (-1280 3171977 3172336 3172742 "VIEW" 3173457 T VIEW (NIL) -7 NIL NIL NIL) (-1279 3168401 3169040 3169777 "VIEWDEF" 3171262 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1278 3157705 3159949 3162122 "VIEW3D" 3166250 T VIEW3D (NIL) -8 NIL NIL NIL) (-1277 3149956 3151616 3153195 "VIEW2D" 3156148 T VIEW2D (NIL) -8 NIL NIL NIL) (-1276 3145309 3149726 3149818 "VECTOR" 3149899 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1275 3143886 3144145 3144463 "VECTOR2" 3145039 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1274 3137360 3141667 3141710 "VECTCAT" 3142705 NIL VECTCAT (NIL T) -9 NIL 3143292 NIL) (-1273 3136374 3136628 3137018 "VECTCAT-" 3137023 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1272 3135828 3136025 3136145 "VARIABLE" 3136289 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1271 3135761 3135766 3135796 "UTYPE" 3135801 T UTYPE (NIL) -9 NIL NIL NIL) (-1270 3134591 3134745 3135007 "UTSODETL" 3135587 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1269 3132031 3132491 3133015 "UTSODE" 3134132 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1268 3123868 3129657 3130146 "UTS" 3131600 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1267 3114742 3120109 3120152 "UTSCAT" 3121264 NIL UTSCAT (NIL T) -9 NIL 3122022 NIL) (-1266 3112089 3112812 3113801 "UTSCAT-" 3113806 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1265 3111716 3111759 3111892 "UTS2" 3112040 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1264 3105942 3108554 3108597 "URAGG" 3110667 NIL URAGG (NIL T) -9 NIL 3111390 NIL) (-1263 3102881 3103744 3104867 "URAGG-" 3104872 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1262 3098590 3101516 3101981 "UPXSSING" 3102545 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1261 3090656 3097837 3098110 "UPXS" 3098375 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1260 3083729 3090560 3090632 "UPXSCONS" 3090637 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1259 3073474 3080267 3080329 "UPXSCCA" 3080903 NIL UPXSCCA (NIL T T) -9 NIL 3081136 NIL) (-1258 3073112 3073197 3073371 "UPXSCCA-" 3073376 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1257 3062709 3069275 3069318 "UPXSCAT" 3069966 NIL UPXSCAT (NIL T) -9 NIL 3070575 NIL) (-1256 3062139 3062218 3062397 "UPXS2" 3062624 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1255 3060793 3061046 3061397 "UPSQFREE" 3061882 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1254 3054214 3057271 3057326 "UPSCAT" 3058487 NIL UPSCAT (NIL T T) -9 NIL 3059261 NIL) (-1253 3053418 3053625 3053952 "UPSCAT-" 3053957 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1252 3039073 3046841 3046884 "UPOLYC" 3048985 NIL UPOLYC (NIL T) -9 NIL 3050206 NIL) (-1251 3030401 3032827 3035974 "UPOLYC-" 3035979 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1250 3030028 3030071 3030204 "UPOLYC2" 3030352 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1249 3021839 3029711 3029840 "UP" 3029947 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1248 3021178 3021285 3021449 "UPMP" 3021728 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1247 3020731 3020812 3020951 "UPDIVP" 3021091 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1246 3019299 3019548 3019864 "UPDECOMP" 3020480 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1245 3018530 3018642 3018828 "UPCDEN" 3019183 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1244 3018049 3018118 3018267 "UP2" 3018455 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1243 3016516 3017253 3017530 "UNISEG" 3017807 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1242 3015731 3015858 3016063 "UNISEG2" 3016359 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1241 3014791 3014971 3015197 "UNIFACT" 3015547 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1240 2998723 3013968 3014219 "ULS" 3014598 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1239 2986721 2998627 2998699 "ULSCONS" 2998704 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1238 2968738 2980723 2980785 "ULSCCAT" 2981423 NIL ULSCCAT (NIL T T) -9 NIL 2981712 NIL) (-1237 2967788 2968033 2968421 "ULSCCAT-" 2968426 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1236 2957162 2963642 2963685 "ULSCAT" 2964548 NIL ULSCAT (NIL T) -9 NIL 2965279 NIL) (-1235 2956592 2956671 2956850 "ULS2" 2957077 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1234 2955719 2956229 2956336 "UINT8" 2956447 T UINT8 (NIL) -8 NIL NIL 2956532) (-1233 2954845 2955355 2955462 "UINT64" 2955573 T UINT64 (NIL) -8 NIL NIL 2955658) (-1232 2953971 2954481 2954588 "UINT32" 2954699 T UINT32 (NIL) -8 NIL NIL 2954784) (-1231 2953097 2953607 2953714 "UINT16" 2953825 T UINT16 (NIL) -8 NIL NIL 2953910) (-1230 2951400 2952357 2952387 "UFD" 2952599 T UFD (NIL) -9 NIL 2952713 NIL) (-1229 2951194 2951240 2951335 "UFD-" 2951340 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1228 2950276 2950459 2950675 "UDVO" 2951000 T UDVO (NIL) -7 NIL NIL NIL) (-1227 2948092 2948501 2948972 "UDPO" 2949840 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1226 2948025 2948030 2948060 "TYPE" 2948065 T TYPE (NIL) -9 NIL NIL NIL) (-1225 2947785 2947980 2948011 "TYPEAST" 2948016 T TYPEAST (NIL) -8 NIL NIL NIL) (-1224 2946756 2946958 2947198 "TWOFACT" 2947579 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1223 2945779 2946165 2946400 "TUPLE" 2946556 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1222 2943470 2943989 2944528 "TUBETOOL" 2945262 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1221 2942319 2942524 2942765 "TUBE" 2943263 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1220 2937048 2941291 2941574 "TS" 2942071 NIL TS (NIL T) -8 NIL NIL NIL) (-1219 2925688 2929807 2929904 "TSETCAT" 2935173 NIL TSETCAT (NIL T T T T) -9 NIL 2936704 NIL) (-1218 2920420 2922020 2923911 "TSETCAT-" 2923916 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1217 2915059 2915906 2916835 "TRMANIP" 2919556 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1216 2914500 2914563 2914726 "TRIMAT" 2914991 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1215 2912366 2912603 2912960 "TRIGMNIP" 2914249 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1214 2911886 2911999 2912029 "TRIGCAT" 2912242 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1213 2911555 2911634 2911775 "TRIGCAT-" 2911780 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1212 2908400 2910413 2910694 "TREE" 2911309 NIL TREE (NIL T) -8 NIL NIL NIL) (-1211 2907674 2908202 2908232 "TRANFUN" 2908267 T TRANFUN (NIL) -9 NIL 2908333 NIL) (-1210 2906953 2907144 2907424 "TRANFUN-" 2907429 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1209 2906757 2906789 2906850 "TOPSP" 2906914 T TOPSP (NIL) -7 NIL NIL NIL) (-1208 2906105 2906220 2906374 "TOOLSIGN" 2906638 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1207 2904739 2905282 2905521 "TEXTFILE" 2905888 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1206 2902651 2903192 2903621 "TEX" 2904332 T TEX (NIL) -8 NIL NIL NIL) (-1205 2902432 2902463 2902535 "TEX1" 2902614 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1204 2902080 2902143 2902233 "TEMUTL" 2902364 T TEMUTL (NIL) -7 NIL NIL NIL) (-1203 2900234 2900514 2900839 "TBCMPPK" 2901803 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1202 2892011 2898394 2898450 "TBAGG" 2898850 NIL TBAGG (NIL T T) -9 NIL 2899061 NIL) (-1201 2887081 2888569 2890323 "TBAGG-" 2890328 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1200 2886465 2886572 2886717 "TANEXP" 2886970 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1199 2879855 2886322 2886415 "TABLE" 2886420 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1198 2879267 2879366 2879504 "TABLEAU" 2879752 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1197 2873875 2875095 2876343 "TABLBUMP" 2878053 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1196 2873097 2873244 2873425 "SYSTEM" 2873716 T SYSTEM (NIL) -8 NIL NIL NIL) (-1195 2869556 2870255 2871038 "SYSSOLP" 2872348 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1194 2869354 2869511 2869542 "SYSPTR" 2869547 T SYSPTR (NIL) -8 NIL NIL NIL) (-1193 2868398 2868903 2869022 "SYSNNI" 2869208 NIL SYSNNI (NIL NIL) -8 NIL NIL 2869293) (-1192 2867705 2868164 2868243 "SYSINT" 2868303 NIL SYSINT (NIL NIL) -8 NIL NIL 2868348) (-1191 2864037 2864983 2865693 "SYNTAX" 2867017 T SYNTAX (NIL) -8 NIL NIL NIL) (-1190 2861195 2861797 2862429 "SYMTAB" 2863427 T SYMTAB (NIL) -8 NIL NIL NIL) (-1189 2856444 2857346 2858329 "SYMS" 2860234 T SYMS (NIL) -8 NIL NIL NIL) (-1188 2853679 2855902 2856132 "SYMPOLY" 2856249 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1187 2853196 2853271 2853394 "SYMFUNC" 2853591 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1186 2849216 2850508 2851321 "SYMBOL" 2852405 T SYMBOL (NIL) -8 NIL NIL NIL) (-1185 2842755 2844444 2846164 "SWITCH" 2847518 T SWITCH (NIL) -8 NIL NIL NIL) (-1184 2835989 2841576 2841879 "SUTS" 2842510 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1183 2828055 2835236 2835509 "SUPXS" 2835774 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1182 2819814 2827673 2827799 "SUP" 2827964 NIL SUP (NIL T) -8 NIL NIL NIL) (-1181 2818973 2819100 2819317 "SUPFRACF" 2819682 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1180 2818594 2818653 2818766 "SUP2" 2818908 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1179 2817042 2817316 2817672 "SUMRF" 2818293 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1178 2816377 2816443 2816635 "SUMFS" 2816963 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1177 2800344 2815554 2815805 "SULS" 2816184 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1176 2799946 2800166 2800236 "SUCHTAST" 2800296 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1175 2799241 2799471 2799611 "SUCH" 2799854 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1174 2793107 2794147 2795106 "SUBSPACE" 2798329 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1173 2792537 2792627 2792791 "SUBRESP" 2792995 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1172 2785903 2787202 2788513 "STTF" 2791273 NIL STTF (NIL T) -7 NIL NIL NIL) (-1171 2780076 2781196 2782343 "STTFNC" 2784803 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1170 2771387 2773258 2775052 "STTAYLOR" 2778317 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1169 2764517 2771251 2771334 "STRTBL" 2771339 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1168 2759881 2764472 2764503 "STRING" 2764508 T STRING (NIL) -8 NIL NIL NIL) (-1167 2754742 2759254 2759284 "STRICAT" 2759343 T STRICAT (NIL) -9 NIL 2759405 NIL) (-1166 2747495 2752361 2752972 "STREAM" 2754166 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1165 2747005 2747082 2747226 "STREAM3" 2747412 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1164 2745987 2746170 2746405 "STREAM2" 2746818 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1163 2745675 2745727 2745820 "STREAM1" 2745929 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1162 2744691 2744872 2745103 "STINPROD" 2745491 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1161 2744243 2744453 2744483 "STEP" 2744563 T STEP (NIL) -9 NIL 2744641 NIL) (-1160 2743430 2743732 2743880 "STEPAST" 2744117 T STEPAST (NIL) -8 NIL NIL NIL) (-1159 2736862 2743329 2743406 "STBL" 2743411 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1158 2731988 2736083 2736126 "STAGG" 2736279 NIL STAGG (NIL T) -9 NIL 2736368 NIL) (-1157 2729690 2730292 2731164 "STAGG-" 2731169 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1156 2727837 2729460 2729552 "STACK" 2729633 NIL STACK (NIL T) -8 NIL NIL NIL) (-1155 2720532 2725978 2726434 "SREGSET" 2727467 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1154 2712957 2714326 2715839 "SRDCMPK" 2719138 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1153 2705874 2710397 2710427 "SRAGG" 2711730 T SRAGG (NIL) -9 NIL 2712338 NIL) (-1152 2704891 2705146 2705525 "SRAGG-" 2705530 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1151 2699351 2703838 2704259 "SQMATRIX" 2704517 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1150 2693036 2696069 2696796 "SPLTREE" 2698696 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1149 2688999 2689692 2690338 "SPLNODE" 2692462 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1148 2688046 2688279 2688309 "SPFCAT" 2688753 T SPFCAT (NIL) -9 NIL NIL NIL) (-1147 2686783 2686993 2687257 "SPECOUT" 2687804 T SPECOUT (NIL) -7 NIL NIL NIL) (-1146 2677893 2679765 2679795 "SPADXPT" 2684471 T SPADXPT (NIL) -9 NIL 2686635 NIL) (-1145 2677654 2677694 2677763 "SPADPRSR" 2677846 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1144 2675703 2677609 2677640 "SPADAST" 2677645 T SPADAST (NIL) -8 NIL NIL NIL) (-1143 2667648 2669421 2669464 "SPACEC" 2673837 NIL SPACEC (NIL T) -9 NIL 2675653 NIL) (-1142 2665778 2667580 2667629 "SPACE3" 2667634 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1141 2664530 2664701 2664992 "SORTPAK" 2665583 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1140 2662622 2662925 2663337 "SOLVETRA" 2664194 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1139 2661672 2661894 2662155 "SOLVESER" 2662395 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1138 2656976 2657864 2658859 "SOLVERAD" 2660724 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1137 2652791 2653400 2654129 "SOLVEFOR" 2656343 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1136 2647061 2652140 2652237 "SNTSCAT" 2652242 NIL SNTSCAT (NIL T T T T) -9 NIL 2652312 NIL) (-1135 2641167 2645384 2645775 "SMTS" 2646751 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1134 2635852 2641055 2641132 "SMP" 2641137 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1133 2634011 2634312 2634710 "SMITH" 2635549 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1132 2626724 2630920 2631023 "SMATCAT" 2632374 NIL SMATCAT (NIL NIL T T T) -9 NIL 2632924 NIL) (-1131 2623664 2624487 2625665 "SMATCAT-" 2625670 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1130 2621330 2622900 2622943 "SKAGG" 2623204 NIL SKAGG (NIL T) -9 NIL 2623339 NIL) (-1129 2617656 2620803 2620987 "SINT" 2621139 T SINT (NIL) -8 NIL NIL 2621301) (-1128 2617428 2617466 2617532 "SIMPAN" 2617612 T SIMPAN (NIL) -7 NIL NIL NIL) (-1127 2616707 2616963 2617103 "SIG" 2617310 T SIG (NIL) -8 NIL NIL NIL) (-1126 2615545 2615766 2616041 "SIGNRF" 2616466 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1125 2614378 2614529 2614813 "SIGNEF" 2615374 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1124 2613684 2613961 2614085 "SIGAST" 2614276 T SIGAST (NIL) -8 NIL NIL NIL) (-1123 2611374 2611828 2612334 "SHP" 2613225 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1122 2605226 2611275 2611351 "SHDP" 2611356 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1121 2604799 2604991 2605021 "SGROUP" 2605114 T SGROUP (NIL) -9 NIL 2605176 NIL) (-1120 2604657 2604683 2604756 "SGROUP-" 2604761 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1119 2601492 2602190 2602913 "SGCF" 2603956 T SGCF (NIL) -7 NIL NIL NIL) (-1118 2595860 2600939 2601036 "SFRTCAT" 2601041 NIL SFRTCAT (NIL T T T T) -9 NIL 2601080 NIL) (-1117 2589281 2590299 2591435 "SFRGCD" 2594843 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1116 2582407 2583480 2584666 "SFQCMPK" 2588214 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1115 2582027 2582116 2582227 "SFORT" 2582348 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1114 2581145 2581867 2581988 "SEXOF" 2581993 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1113 2580252 2581026 2581094 "SEX" 2581099 T SEX (NIL) -8 NIL NIL NIL) (-1112 2575765 2576480 2576575 "SEXCAT" 2579512 NIL SEXCAT (NIL T T T T T) -9 NIL 2580090 NIL) (-1111 2572918 2575699 2575747 "SET" 2575752 NIL SET (NIL T) -8 NIL NIL NIL) (-1110 2571142 2571631 2571936 "SETMN" 2572659 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1109 2570638 2570790 2570820 "SETCAT" 2570996 T SETCAT (NIL) -9 NIL 2571106 NIL) (-1108 2570330 2570408 2570538 "SETCAT-" 2570543 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1107 2566691 2568791 2568834 "SETAGG" 2569704 NIL SETAGG (NIL T) -9 NIL 2570044 NIL) (-1106 2566149 2566265 2566502 "SETAGG-" 2566507 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1105 2565592 2565845 2565946 "SEQAST" 2566070 T SEQAST (NIL) -8 NIL NIL NIL) (-1104 2564791 2565085 2565146 "SEGXCAT" 2565432 NIL SEGXCAT (NIL T T) -9 NIL 2565552 NIL) (-1103 2563797 2564457 2564639 "SEG" 2564644 NIL SEG (NIL T) -8 NIL NIL NIL) (-1102 2562776 2562990 2563033 "SEGCAT" 2563555 NIL SEGCAT (NIL T) -9 NIL 2563776 NIL) (-1101 2561708 2562139 2562347 "SEGBIND" 2562603 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1100 2561329 2561388 2561501 "SEGBIND2" 2561643 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1099 2560902 2561130 2561207 "SEGAST" 2561274 T SEGAST (NIL) -8 NIL NIL NIL) (-1098 2560121 2560247 2560451 "SEG2" 2560746 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1097 2559531 2560056 2560103 "SDVAR" 2560108 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1096 2552058 2559301 2559431 "SDPOL" 2559436 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1095 2550651 2550917 2551236 "SCPKG" 2551773 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1094 2549815 2549987 2550179 "SCOPE" 2550481 T SCOPE (NIL) -8 NIL NIL NIL) (-1093 2549035 2549169 2549348 "SCACHE" 2549670 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1092 2548681 2548867 2548897 "SASTCAT" 2548902 T SASTCAT (NIL) -9 NIL 2548915 NIL) (-1091 2548168 2548516 2548592 "SAOS" 2548627 T SAOS (NIL) -8 NIL NIL NIL) (-1090 2547733 2547768 2547941 "SAERFFC" 2548127 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1089 2541672 2547630 2547710 "SAE" 2547715 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1088 2541265 2541300 2541459 "SAEFACT" 2541631 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1087 2539586 2539900 2540301 "RURPK" 2540931 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1086 2538223 2538529 2538834 "RULESET" 2539420 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1085 2535446 2535976 2536434 "RULE" 2537904 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1084 2535058 2535240 2535323 "RULECOLD" 2535398 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1083 2534848 2534876 2534947 "RTVALUE" 2535009 T RTVALUE (NIL) -8 NIL NIL NIL) (-1082 2534319 2534565 2534659 "RSTRCAST" 2534776 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1081 2529167 2529962 2530882 "RSETGCD" 2533518 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1080 2518397 2523476 2523573 "RSETCAT" 2527692 NIL RSETCAT (NIL T T T T) -9 NIL 2528789 NIL) (-1079 2516324 2516863 2517687 "RSETCAT-" 2517692 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1078 2508710 2510086 2511606 "RSDCMPK" 2514923 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1077 2506689 2507156 2507230 "RRCC" 2508316 NIL RRCC (NIL T T) -9 NIL 2508660 NIL) (-1076 2506040 2506214 2506493 "RRCC-" 2506498 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1075 2505483 2505736 2505837 "RPTAST" 2505961 T RPTAST (NIL) -8 NIL NIL NIL) (-1074 2479329 2488688 2488755 "RPOLCAT" 2499421 NIL RPOLCAT (NIL T T T) -9 NIL 2502581 NIL) (-1073 2470827 2473167 2476289 "RPOLCAT-" 2476294 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1072 2461758 2469038 2469520 "ROUTINE" 2470367 T ROUTINE (NIL) -8 NIL NIL NIL) (-1071 2458556 2461384 2461524 "ROMAN" 2461640 T ROMAN (NIL) -8 NIL NIL NIL) (-1070 2456800 2457416 2457676 "ROIRC" 2458361 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1069 2453032 2455316 2455346 "RNS" 2455650 T RNS (NIL) -9 NIL 2455924 NIL) (-1068 2451541 2451924 2452458 "RNS-" 2452533 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1067 2450944 2451352 2451382 "RNG" 2451387 T RNG (NIL) -9 NIL 2451408 NIL) (-1066 2449947 2450309 2450511 "RNGBIND" 2450795 NIL RNGBIND (NIL T T) -8 NIL NIL NIL) (-1065 2449346 2449734 2449777 "RMODULE" 2449782 NIL RMODULE (NIL T) -9 NIL 2449809 NIL) (-1064 2448182 2448276 2448612 "RMCAT2" 2449247 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1063 2445032 2447528 2447825 "RMATRIX" 2447944 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1062 2437859 2440119 2440234 "RMATCAT" 2443593 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2444575 NIL) (-1061 2437234 2437381 2437688 "RMATCAT-" 2437693 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1060 2436635 2436856 2436899 "RLINSET" 2437093 NIL RLINSET (NIL T) -9 NIL 2437184 NIL) (-1059 2436202 2436277 2436405 "RINTERP" 2436554 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1058 2435260 2435814 2435844 "RING" 2435900 T RING (NIL) -9 NIL 2435992 NIL) (-1057 2435052 2435096 2435193 "RING-" 2435198 NIL RING- (NIL T) -8 NIL NIL NIL) (-1056 2433893 2434130 2434388 "RIDIST" 2434816 T RIDIST (NIL) -7 NIL NIL NIL) (-1055 2425182 2433361 2433567 "RGCHAIN" 2433741 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1054 2424532 2424938 2424979 "RGBCSPC" 2425037 NIL RGBCSPC (NIL T) -9 NIL 2425089 NIL) (-1053 2423690 2424071 2424112 "RGBCMDL" 2424344 NIL RGBCMDL (NIL T) -9 NIL 2424458 NIL) (-1052 2420684 2421298 2421968 "RF" 2423054 NIL RF (NIL T) -7 NIL NIL NIL) (-1051 2420330 2420393 2420496 "RFFACTOR" 2420615 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1050 2420055 2420090 2420187 "RFFACT" 2420289 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1049 2418172 2418536 2418918 "RFDIST" 2419695 T RFDIST (NIL) -7 NIL NIL NIL) (-1048 2417625 2417717 2417880 "RETSOL" 2418074 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1047 2417261 2417341 2417384 "RETRACT" 2417517 NIL RETRACT (NIL T) -9 NIL 2417604 NIL) (-1046 2417110 2417135 2417222 "RETRACT-" 2417227 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1045 2416712 2416932 2417002 "RETAST" 2417062 T RETAST (NIL) -8 NIL NIL NIL) (-1044 2409450 2416365 2416492 "RESULT" 2416607 T RESULT (NIL) -8 NIL NIL NIL) (-1043 2408041 2408719 2408918 "RESRING" 2409353 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1042 2407677 2407726 2407824 "RESLATC" 2407978 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1041 2407382 2407417 2407524 "REPSQ" 2407636 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1040 2404804 2405384 2405986 "REP" 2406802 T REP (NIL) -7 NIL NIL NIL) (-1039 2404501 2404536 2404647 "REPDB" 2404763 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1038 2398401 2399790 2401013 "REP2" 2403313 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1037 2394778 2395459 2396267 "REP1" 2397628 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1036 2387474 2392919 2393375 "REGSET" 2394408 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1035 2386239 2386622 2386872 "REF" 2387259 NIL REF (NIL T) -8 NIL NIL NIL) (-1034 2385616 2385719 2385886 "REDORDER" 2386123 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1033 2381584 2384829 2385056 "RECLOS" 2385444 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1032 2380636 2380817 2381032 "REALSOLV" 2381391 T REALSOLV (NIL) -7 NIL NIL NIL) (-1031 2380482 2380523 2380553 "REAL" 2380558 T REAL (NIL) -9 NIL 2380593 NIL) (-1030 2376965 2377767 2378651 "REAL0Q" 2379647 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1029 2372566 2373554 2374615 "REAL0" 2375946 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1028 2372037 2372283 2372377 "RDUCEAST" 2372494 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1027 2371442 2371514 2371721 "RDIV" 2371959 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1026 2370510 2370684 2370897 "RDIST" 2371264 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1025 2369107 2369394 2369766 "RDETRS" 2370218 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1024 2366919 2367373 2367911 "RDETR" 2368649 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1023 2365544 2365822 2366219 "RDEEFS" 2366635 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1022 2364053 2364359 2364784 "RDEEF" 2365232 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1021 2358114 2361034 2361064 "RCFIELD" 2362359 T RCFIELD (NIL) -9 NIL 2363090 NIL) (-1020 2356178 2356682 2357378 "RCFIELD-" 2357453 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1019 2352447 2354279 2354322 "RCAGG" 2355406 NIL RCAGG (NIL T) -9 NIL 2355871 NIL) (-1018 2352075 2352169 2352332 "RCAGG-" 2352337 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1017 2351410 2351522 2351687 "RATRET" 2351959 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1016 2350963 2351030 2351151 "RATFACT" 2351338 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1015 2350271 2350391 2350543 "RANDSRC" 2350833 T RANDSRC (NIL) -7 NIL NIL NIL) (-1014 2350005 2350049 2350122 "RADUTIL" 2350220 T RADUTIL (NIL) -7 NIL NIL NIL) (-1013 2343119 2348836 2349147 "RADIX" 2349728 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-1012 2334738 2342961 2343091 "RADFF" 2343096 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-1011 2334385 2334460 2334490 "RADCAT" 2334650 T RADCAT (NIL) -9 NIL NIL NIL) (-1010 2334167 2334215 2334315 "RADCAT-" 2334320 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-1009 2332265 2333937 2334029 "QUEUE" 2334110 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-1008 2328802 2332198 2332246 "QUAT" 2332251 NIL QUAT (NIL T) -8 NIL NIL NIL) (-1007 2328433 2328476 2328607 "QUATCT2" 2328753 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-1006 2321882 2325227 2325269 "QUATCAT" 2326060 NIL QUATCAT (NIL T) -9 NIL 2326826 NIL) (-1005 2318021 2319058 2320448 "QUATCAT-" 2320544 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-1004 2315486 2317097 2317140 "QUAGG" 2317521 NIL QUAGG (NIL T) -9 NIL 2317696 NIL) (-1003 2315088 2315308 2315378 "QQUTAST" 2315438 T QQUTAST (NIL) -8 NIL NIL NIL) (-1002 2313981 2314481 2314655 "QFORM" 2314960 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-1001 2304974 2310213 2310255 "QFCAT" 2310923 NIL QFCAT (NIL T) -9 NIL 2311924 NIL) (-1000 2300541 2301742 2303336 "QFCAT-" 2303432 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-999 2300175 2300218 2300347 "QFCAT2" 2300492 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-998 2299635 2299745 2299875 "QEQUAT" 2300065 T QEQUAT (NIL) -8 NIL NIL NIL) (-997 2292781 2293854 2295038 "QCMPACK" 2298568 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-996 2290330 2290778 2291206 "QALGSET" 2292436 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-995 2289575 2289749 2289981 "QALGSET2" 2290150 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-994 2288265 2288489 2288806 "PWFFINTB" 2289348 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-993 2286447 2286615 2286969 "PUSHVAR" 2288079 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-992 2282365 2283419 2283460 "PTRANFN" 2285344 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-991 2280767 2281058 2281380 "PTPACK" 2282076 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-990 2280399 2280456 2280565 "PTFUNC2" 2280704 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-989 2274876 2279271 2279312 "PTCAT" 2279608 NIL PTCAT (NIL T) -9 NIL 2279761 NIL) (-988 2274534 2274569 2274693 "PSQFR" 2274835 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-987 2273129 2273427 2273761 "PSEUDLIN" 2274232 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-986 2259892 2262263 2264587 "PSETPK" 2270889 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-985 2252910 2255650 2255746 "PSETCAT" 2258767 NIL PSETCAT (NIL T T T T) -9 NIL 2259581 NIL) (-984 2250746 2251380 2252201 "PSETCAT-" 2252206 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-983 2250095 2250260 2250288 "PSCURVE" 2250556 T PSCURVE (NIL) -9 NIL 2250723 NIL) (-982 2246093 2247609 2247674 "PSCAT" 2248518 NIL PSCAT (NIL T T T) -9 NIL 2248758 NIL) (-981 2245156 2245372 2245772 "PSCAT-" 2245777 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-980 2243834 2244500 2244712 "PRTITION" 2244964 T PRTITION (NIL) -8 NIL NIL NIL) (-979 2243309 2243555 2243647 "PRTDAST" 2243762 T PRTDAST (NIL) -8 NIL NIL NIL) (-978 2232399 2234613 2236801 "PRS" 2241171 NIL PRS (NIL T T) -7 NIL NIL NIL) (-977 2230210 2231749 2231789 "PRQAGG" 2231972 NIL PRQAGG (NIL T) -9 NIL 2232074 NIL) (-976 2229546 2229851 2229879 "PROPLOG" 2230018 T PROPLOG (NIL) -9 NIL 2230133 NIL) (-975 2229150 2229207 2229330 "PROPFUN2" 2229469 NIL PROPFUN2 (NIL T T) -8 NIL NIL NIL) (-974 2228465 2228586 2228758 "PROPFUN1" 2229011 NIL PROPFUN1 (NIL T) -8 NIL NIL NIL) (-973 2226646 2227212 2227509 "PROPFRML" 2228201 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-972 2226115 2226222 2226350 "PROPERTY" 2226538 T PROPERTY (NIL) -8 NIL NIL NIL) (-971 2220173 2224281 2225101 "PRODUCT" 2225341 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-970 2217451 2219631 2219865 "PR" 2219984 NIL PR (NIL T T) -8 NIL NIL NIL) (-969 2217247 2217279 2217338 "PRINT" 2217412 T PRINT (NIL) -7 NIL NIL NIL) (-968 2216587 2216704 2216856 "PRIMES" 2217127 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-967 2214652 2215053 2215519 "PRIMELT" 2216166 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-966 2214381 2214430 2214458 "PRIMCAT" 2214582 T PRIMCAT (NIL) -9 NIL NIL NIL) (-965 2210496 2214319 2214364 "PRIMARR" 2214369 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-964 2209503 2209681 2209909 "PRIMARR2" 2210314 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-963 2209146 2209202 2209313 "PREASSOC" 2209441 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-962 2208621 2208754 2208782 "PPCURVE" 2208987 T PPCURVE (NIL) -9 NIL 2209123 NIL) (-961 2208216 2208416 2208499 "PORTNUM" 2208558 T PORTNUM (NIL) -8 NIL NIL NIL) (-960 2205575 2205974 2206566 "POLYROOT" 2207797 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-959 2199757 2205179 2205339 "POLY" 2205448 NIL POLY (NIL T) -8 NIL NIL NIL) (-958 2199140 2199198 2199432 "POLYLIFT" 2199693 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-957 2195415 2195864 2196493 "POLYCATQ" 2198685 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-956 2182127 2187255 2187320 "POLYCAT" 2190834 NIL POLYCAT (NIL T T T) -9 NIL 2192712 NIL) (-955 2175576 2177438 2179822 "POLYCAT-" 2179827 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-954 2175163 2175231 2175351 "POLY2UP" 2175502 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-953 2174795 2174852 2174961 "POLY2" 2175100 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-952 2173480 2173719 2173995 "POLUTIL" 2174569 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-951 2171835 2172112 2172443 "POLTOPOL" 2173202 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-950 2167300 2171771 2171817 "POINT" 2171822 NIL POINT (NIL T) -8 NIL NIL NIL) (-949 2165487 2165844 2166219 "PNTHEORY" 2166945 T PNTHEORY (NIL) -7 NIL NIL NIL) (-948 2163945 2164242 2164641 "PMTOOLS" 2165185 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-947 2163538 2163616 2163733 "PMSYM" 2163861 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-946 2163046 2163115 2163290 "PMQFCAT" 2163463 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-945 2162401 2162511 2162667 "PMPRED" 2162923 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-944 2161794 2161880 2162042 "PMPREDFS" 2162302 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-943 2160458 2160666 2161044 "PMPLCAT" 2161556 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-942 2159990 2160069 2160221 "PMLSAGG" 2160373 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-941 2159463 2159539 2159721 "PMKERNEL" 2159908 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-940 2159080 2159155 2159268 "PMINS" 2159382 NIL PMINS (NIL T) -7 NIL NIL NIL) (-939 2158522 2158591 2158800 "PMFS" 2159005 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-938 2157750 2157868 2158073 "PMDOWN" 2158399 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-937 2156917 2157075 2157256 "PMASS" 2157589 T PMASS (NIL) -7 NIL NIL NIL) (-936 2156190 2156300 2156463 "PMASSFS" 2156804 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-935 2155845 2155913 2156007 "PLOTTOOL" 2156116 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-934 2150452 2151656 2152804 "PLOT" 2154717 T PLOT (NIL) -8 NIL NIL NIL) (-933 2146256 2147300 2148221 "PLOT3D" 2149551 T PLOT3D (NIL) -8 NIL NIL NIL) (-932 2145168 2145345 2145580 "PLOT1" 2146060 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-931 2120557 2125234 2130085 "PLEQN" 2140434 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-930 2119875 2119997 2120177 "PINTERP" 2120422 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-929 2119568 2119615 2119718 "PINTERPA" 2119822 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-928 2118789 2119337 2119424 "PI" 2119464 T PI (NIL) -8 NIL NIL 2119531) (-927 2117086 2118061 2118089 "PID" 2118271 T PID (NIL) -9 NIL 2118405 NIL) (-926 2116837 2116874 2116949 "PICOERCE" 2117043 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-925 2116157 2116296 2116472 "PGROEB" 2116693 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-924 2111744 2112558 2113463 "PGE" 2115272 T PGE (NIL) -7 NIL NIL NIL) (-923 2109867 2110114 2110480 "PGCD" 2111461 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-922 2109205 2109308 2109469 "PFRPAC" 2109751 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-921 2105845 2107753 2108106 "PFR" 2108884 NIL PFR (NIL T) -8 NIL NIL NIL) (-920 2104234 2104478 2104803 "PFOTOOLS" 2105592 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-919 2102767 2103006 2103357 "PFOQ" 2103991 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-918 2101268 2101480 2101836 "PFO" 2102551 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-917 2097821 2101157 2101226 "PF" 2101231 NIL PF (NIL NIL) -8 NIL NIL NIL) (-916 2095155 2096426 2096454 "PFECAT" 2097039 T PFECAT (NIL) -9 NIL 2097423 NIL) (-915 2094600 2094754 2094968 "PFECAT-" 2094973 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-914 2093203 2093455 2093756 "PFBRU" 2094349 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-913 2091069 2091421 2091853 "PFBR" 2092854 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-912 2086951 2088445 2089121 "PERM" 2090426 NIL PERM (NIL T) -8 NIL NIL NIL) (-911 2082185 2083158 2084028 "PERMGRP" 2086114 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-910 2080291 2081248 2081289 "PERMCAT" 2081735 NIL PERMCAT (NIL T) -9 NIL 2082040 NIL) (-909 2079944 2079985 2080109 "PERMAN" 2080244 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-908 2077432 2079609 2079731 "PENDTREE" 2079855 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-907 2075456 2076224 2076265 "PDRING" 2076922 NIL PDRING (NIL T) -9 NIL 2077208 NIL) (-906 2074559 2074777 2075139 "PDRING-" 2075144 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-905 2071774 2072552 2073220 "PDEPROB" 2073911 T PDEPROB (NIL) -8 NIL NIL NIL) (-904 2069319 2069823 2070378 "PDEPACK" 2071239 T PDEPACK (NIL) -7 NIL NIL NIL) (-903 2068231 2068421 2068672 "PDECOMP" 2069118 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-902 2065810 2066653 2066681 "PDECAT" 2067468 T PDECAT (NIL) -9 NIL 2068181 NIL) (-901 2065561 2065594 2065684 "PCOMP" 2065771 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-900 2063739 2064362 2064659 "PBWLB" 2065290 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-899 2056212 2057812 2059150 "PATTERN" 2062422 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-898 2055844 2055901 2056010 "PATTERN2" 2056149 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-897 2053601 2053989 2054446 "PATTERN1" 2055433 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-896 2050969 2051550 2052031 "PATRES" 2053166 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-895 2050533 2050600 2050732 "PATRES2" 2050896 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-894 2048416 2048821 2049228 "PATMATCH" 2050200 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-893 2047926 2048135 2048176 "PATMAB" 2048283 NIL PATMAB (NIL T) -9 NIL 2048366 NIL) (-892 2046444 2046780 2047038 "PATLRES" 2047731 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-891 2045990 2046113 2046154 "PATAB" 2046159 NIL PATAB (NIL T) -9 NIL 2046331 NIL) (-890 2043471 2044003 2044576 "PARTPERM" 2045437 T PARTPERM (NIL) -7 NIL NIL NIL) (-889 2043092 2043155 2043257 "PARSURF" 2043402 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-888 2042724 2042781 2042890 "PARSU2" 2043029 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-887 2042488 2042528 2042595 "PARSER" 2042677 T PARSER (NIL) -7 NIL NIL NIL) (-886 2042109 2042172 2042274 "PARSCURV" 2042419 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-885 2041741 2041798 2041907 "PARSC2" 2042046 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-884 2041380 2041438 2041535 "PARPCURV" 2041677 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-883 2041012 2041069 2041178 "PARPC2" 2041317 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-882 2040073 2040385 2040567 "PARAMAST" 2040850 T PARAMAST (NIL) -8 NIL NIL NIL) (-881 2039593 2039679 2039798 "PAN2EXPR" 2039974 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-880 2038370 2038714 2038942 "PALETTE" 2039385 T PALETTE (NIL) -8 NIL NIL NIL) (-879 2036763 2037375 2037735 "PAIR" 2038056 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-878 2030631 2036020 2036215 "PADICRC" 2036617 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-877 2023858 2029975 2030160 "PADICRAT" 2030478 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-876 2022173 2023795 2023840 "PADIC" 2023845 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-875 2019283 2020847 2020887 "PADICCT" 2021468 NIL PADICCT (NIL NIL) -9 NIL 2021750 NIL) (-874 2018240 2018440 2018708 "PADEPAC" 2019070 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-873 2017452 2017585 2017791 "PADE" 2018102 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-872 2015839 2016660 2016940 "OWP" 2017256 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-871 2015332 2015545 2015642 "OVERSET" 2015762 T OVERSET (NIL) -8 NIL NIL NIL) (-870 2014378 2014937 2015109 "OVAR" 2015200 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-869 2013642 2013763 2013924 "OUT" 2014237 T OUT (NIL) -7 NIL NIL NIL) (-868 2002514 2004751 2006951 "OUTFORM" 2011462 T OUTFORM (NIL) -8 NIL NIL NIL) (-867 2001850 2002111 2002238 "OUTBFILE" 2002407 T OUTBFILE (NIL) -8 NIL NIL NIL) (-866 2001157 2001322 2001350 "OUTBCON" 2001668 T OUTBCON (NIL) -9 NIL 2001834 NIL) (-865 2000758 2000870 2001027 "OUTBCON-" 2001032 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-864 2000138 2000487 2000576 "OSI" 2000689 T OSI (NIL) -8 NIL NIL NIL) (-863 1999668 2000006 2000034 "OSGROUP" 2000039 T OSGROUP (NIL) -9 NIL 2000061 NIL) (-862 1998413 1998640 1998925 "ORTHPOL" 1999415 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-861 1995964 1998248 1998369 "OREUP" 1998374 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-860 1993367 1995655 1995782 "ORESUP" 1995906 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-859 1990895 1991395 1991956 "OREPCTO" 1992856 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-858 1984581 1986782 1986823 "OREPCAT" 1989171 NIL OREPCAT (NIL T) -9 NIL 1990275 NIL) (-857 1981728 1982510 1983568 "OREPCAT-" 1983573 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-856 1980879 1981177 1981205 "ORDSET" 1981514 T ORDSET (NIL) -9 NIL 1981678 NIL) (-855 1980310 1980458 1980682 "ORDSET-" 1980687 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-854 1978875 1979666 1979694 "ORDRING" 1979896 T ORDRING (NIL) -9 NIL 1980021 NIL) (-853 1978520 1978614 1978758 "ORDRING-" 1978763 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-852 1977900 1978363 1978391 "ORDMON" 1978396 T ORDMON (NIL) -9 NIL 1978417 NIL) (-851 1977062 1977209 1977404 "ORDFUNS" 1977749 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-850 1976400 1976819 1976847 "ORDFIN" 1976912 T ORDFIN (NIL) -9 NIL 1976986 NIL) (-849 1972959 1974986 1975395 "ORDCOMP" 1976024 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-848 1972225 1972352 1972538 "ORDCOMP2" 1972819 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-847 1968806 1969716 1970530 "OPTPROB" 1971431 T OPTPROB (NIL) -8 NIL NIL NIL) (-846 1965608 1966247 1966951 "OPTPACK" 1968122 T OPTPACK (NIL) -7 NIL NIL NIL) (-845 1963295 1964061 1964089 "OPTCAT" 1964908 T OPTCAT (NIL) -9 NIL 1965558 NIL) (-844 1962679 1962972 1963077 "OPSIG" 1963210 T OPSIG (NIL) -8 NIL NIL NIL) (-843 1962447 1962486 1962552 "OPQUERY" 1962633 T OPQUERY (NIL) -7 NIL NIL NIL) (-842 1959578 1960758 1961262 "OP" 1961976 NIL OP (NIL T) -8 NIL NIL NIL) (-841 1958952 1959178 1959219 "OPERCAT" 1959431 NIL OPERCAT (NIL T) -9 NIL 1959528 NIL) (-840 1958707 1958763 1958880 "OPERCAT-" 1958885 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-839 1955520 1957504 1957873 "ONECOMP" 1958371 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-838 1954825 1954940 1955114 "ONECOMP2" 1955392 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-837 1954244 1954350 1954480 "OMSERVER" 1954715 T OMSERVER (NIL) -7 NIL NIL NIL) (-836 1951106 1953684 1953724 "OMSAGG" 1953785 NIL OMSAGG (NIL T) -9 NIL 1953849 NIL) (-835 1949729 1949992 1950274 "OMPKG" 1950844 T OMPKG (NIL) -7 NIL NIL NIL) (-834 1949159 1949262 1949290 "OM" 1949589 T OM (NIL) -9 NIL NIL NIL) (-833 1947706 1948708 1948877 "OMLO" 1949040 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-832 1946666 1946813 1947033 "OMEXPR" 1947532 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-831 1945957 1946212 1946348 "OMERR" 1946550 T OMERR (NIL) -8 NIL NIL NIL) (-830 1945108 1945378 1945538 "OMERRK" 1945817 T OMERRK (NIL) -8 NIL NIL NIL) (-829 1944559 1944785 1944893 "OMENC" 1945020 T OMENC (NIL) -8 NIL NIL NIL) (-828 1938454 1939639 1940810 "OMDEV" 1943408 T OMDEV (NIL) -8 NIL NIL NIL) (-827 1937523 1937694 1937888 "OMCONN" 1938280 T OMCONN (NIL) -8 NIL NIL NIL) (-826 1936044 1937020 1937048 "OINTDOM" 1937053 T OINTDOM (NIL) -9 NIL 1937074 NIL) (-825 1933382 1934732 1935069 "OFMONOID" 1935739 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-824 1932793 1933319 1933364 "ODVAR" 1933369 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-823 1930216 1932538 1932693 "ODR" 1932698 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-822 1922797 1929992 1930118 "ODPOL" 1930123 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-821 1916619 1922669 1922774 "ODP" 1922779 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-820 1915385 1915600 1915875 "ODETOOLS" 1916393 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-819 1912352 1913010 1913726 "ODESYS" 1914718 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-818 1907234 1908142 1909167 "ODERTRIC" 1911427 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-817 1906660 1906742 1906936 "ODERED" 1907146 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-816 1903548 1904096 1904773 "ODERAT" 1906083 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-815 1900505 1900972 1901569 "ODEPRRIC" 1903077 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-814 1898448 1899044 1899530 "ODEPROB" 1900039 T ODEPROB (NIL) -8 NIL NIL NIL) (-813 1894968 1895453 1896100 "ODEPRIM" 1897927 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-812 1894217 1894319 1894579 "ODEPAL" 1894860 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-811 1890379 1891170 1892034 "ODEPACK" 1893373 T ODEPACK (NIL) -7 NIL NIL NIL) (-810 1889440 1889547 1889769 "ODEINT" 1890268 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-809 1883541 1884966 1886413 "ODEIFTBL" 1888013 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-808 1878939 1879725 1880677 "ODEEF" 1882700 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-807 1878288 1878377 1878600 "ODECONST" 1878844 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-806 1876413 1877074 1877102 "ODECAT" 1877707 T ODECAT (NIL) -9 NIL 1878238 NIL) (-805 1873268 1876118 1876240 "OCT" 1876323 NIL OCT (NIL T) -8 NIL NIL NIL) (-804 1872906 1872949 1873076 "OCTCT2" 1873219 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-803 1867555 1869990 1870030 "OC" 1871127 NIL OC (NIL T) -9 NIL 1871985 NIL) (-802 1864782 1865530 1866520 "OC-" 1866614 NIL OC- (NIL T T) -8 NIL NIL NIL) (-801 1864134 1864602 1864630 "OCAMON" 1864635 T OCAMON (NIL) -9 NIL 1864656 NIL) (-800 1863665 1864006 1864034 "OASGP" 1864039 T OASGP (NIL) -9 NIL 1864059 NIL) (-799 1862926 1863415 1863443 "OAMONS" 1863483 T OAMONS (NIL) -9 NIL 1863526 NIL) (-798 1862340 1862773 1862801 "OAMON" 1862806 T OAMON (NIL) -9 NIL 1862826 NIL) (-797 1861598 1862116 1862144 "OAGROUP" 1862149 T OAGROUP (NIL) -9 NIL 1862169 NIL) (-796 1861288 1861338 1861426 "NUMTUBE" 1861542 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-795 1854861 1856379 1857915 "NUMQUAD" 1859772 T NUMQUAD (NIL) -7 NIL NIL NIL) (-794 1850617 1851605 1852630 "NUMODE" 1853856 T NUMODE (NIL) -7 NIL NIL NIL) (-793 1847972 1848852 1848880 "NUMINT" 1849803 T NUMINT (NIL) -9 NIL 1850567 NIL) (-792 1846920 1847117 1847335 "NUMFMT" 1847774 T NUMFMT (NIL) -7 NIL NIL NIL) (-791 1833279 1836224 1838756 "NUMERIC" 1844427 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-790 1827649 1832728 1832823 "NTSCAT" 1832828 NIL NTSCAT (NIL T T T T) -9 NIL 1832867 NIL) (-789 1826843 1827008 1827201 "NTPOLFN" 1827488 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-788 1814920 1823668 1824480 "NSUP" 1826064 NIL NSUP (NIL T) -8 NIL NIL NIL) (-787 1814552 1814609 1814718 "NSUP2" 1814857 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-786 1804778 1814326 1814459 "NSMP" 1814464 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-785 1803210 1803511 1803868 "NREP" 1804466 NIL NREP (NIL T) -7 NIL NIL NIL) (-784 1801801 1802053 1802411 "NPCOEF" 1802953 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-783 1800867 1800982 1801198 "NORMRETR" 1801682 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-782 1798908 1799198 1799607 "NORMPK" 1800575 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-781 1798593 1798621 1798745 "NORMMA" 1798874 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-780 1798393 1798550 1798579 "NONE" 1798584 T NONE (NIL) -8 NIL NIL NIL) (-779 1798182 1798211 1798280 "NONE1" 1798357 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-778 1797679 1797741 1797920 "NODE1" 1798114 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-777 1795964 1796815 1797070 "NNI" 1797417 T NNI (NIL) -8 NIL NIL 1797652) (-776 1794384 1794697 1795061 "NLINSOL" 1795632 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-775 1790625 1791620 1792519 "NIPROB" 1793505 T NIPROB (NIL) -8 NIL NIL NIL) (-774 1789382 1789616 1789918 "NFINTBAS" 1790387 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-773 1788556 1789032 1789073 "NETCLT" 1789245 NIL NETCLT (NIL T) -9 NIL 1789327 NIL) (-772 1787264 1787495 1787776 "NCODIV" 1788324 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-771 1787026 1787063 1787138 "NCNTFRAC" 1787221 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-770 1785206 1785570 1785990 "NCEP" 1786651 NIL NCEP (NIL T) -7 NIL NIL NIL) (-769 1784057 1784830 1784858 "NASRING" 1784968 T NASRING (NIL) -9 NIL 1785048 NIL) (-768 1783852 1783896 1783990 "NASRING-" 1783995 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-767 1782959 1783484 1783512 "NARNG" 1783629 T NARNG (NIL) -9 NIL 1783720 NIL) (-766 1782651 1782718 1782852 "NARNG-" 1782857 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-765 1781530 1781737 1781972 "NAGSP" 1782436 T NAGSP (NIL) -7 NIL NIL NIL) (-764 1772802 1774486 1776159 "NAGS" 1779877 T NAGS (NIL) -7 NIL NIL NIL) (-763 1771350 1771658 1771989 "NAGF07" 1772491 T NAGF07 (NIL) -7 NIL NIL NIL) (-762 1765888 1767179 1768486 "NAGF04" 1770063 T NAGF04 (NIL) -7 NIL NIL NIL) (-761 1758856 1760470 1762103 "NAGF02" 1764275 T NAGF02 (NIL) -7 NIL NIL NIL) (-760 1754080 1755180 1756297 "NAGF01" 1757759 T NAGF01 (NIL) -7 NIL NIL NIL) (-759 1747708 1749274 1750859 "NAGE04" 1752515 T NAGE04 (NIL) -7 NIL NIL NIL) (-758 1738877 1740998 1743128 "NAGE02" 1745598 T NAGE02 (NIL) -7 NIL NIL NIL) (-757 1734830 1735777 1736741 "NAGE01" 1737933 T NAGE01 (NIL) -7 NIL NIL NIL) (-756 1732625 1733159 1733717 "NAGD03" 1734292 T NAGD03 (NIL) -7 NIL NIL NIL) (-755 1724375 1726303 1728257 "NAGD02" 1730691 T NAGD02 (NIL) -7 NIL NIL NIL) (-754 1718186 1719611 1721051 "NAGD01" 1722955 T NAGD01 (NIL) -7 NIL NIL NIL) (-753 1714395 1715217 1716054 "NAGC06" 1717369 T NAGC06 (NIL) -7 NIL NIL NIL) (-752 1712860 1713192 1713548 "NAGC05" 1714059 T NAGC05 (NIL) -7 NIL NIL NIL) (-751 1712236 1712355 1712499 "NAGC02" 1712736 T NAGC02 (NIL) -7 NIL NIL NIL) (-750 1711195 1711778 1711818 "NAALG" 1711897 NIL NAALG (NIL T) -9 NIL 1711958 NIL) (-749 1711030 1711059 1711149 "NAALG-" 1711154 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-748 1704980 1706088 1707275 "MULTSQFR" 1709926 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-747 1704299 1704374 1704558 "MULTFACT" 1704892 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-746 1697023 1700936 1700989 "MTSCAT" 1702059 NIL MTSCAT (NIL T T) -9 NIL 1702574 NIL) (-745 1696735 1696789 1696881 "MTHING" 1696963 NIL MTHING (NIL T) -7 NIL NIL NIL) (-744 1696527 1696560 1696620 "MSYSCMD" 1696695 T MSYSCMD (NIL) -7 NIL NIL NIL) (-743 1692609 1695282 1695602 "MSET" 1696240 NIL MSET (NIL T) -8 NIL NIL NIL) (-742 1689678 1692170 1692211 "MSETAGG" 1692216 NIL MSETAGG (NIL T) -9 NIL 1692250 NIL) (-741 1685519 1687057 1687802 "MRING" 1688978 NIL MRING (NIL T T) -8 NIL NIL NIL) (-740 1685085 1685152 1685283 "MRF2" 1685446 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-739 1684703 1684738 1684882 "MRATFAC" 1685044 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-738 1682315 1682610 1683041 "MPRFF" 1684408 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-737 1676612 1682169 1682266 "MPOLY" 1682271 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-736 1676102 1676137 1676345 "MPCPF" 1676571 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-735 1675616 1675659 1675843 "MPC3" 1676053 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-734 1674811 1674892 1675113 "MPC2" 1675531 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-733 1673112 1673449 1673839 "MONOTOOL" 1674471 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-732 1672337 1672654 1672682 "MONOID" 1672901 T MONOID (NIL) -9 NIL 1673048 NIL) (-731 1671883 1672002 1672183 "MONOID-" 1672188 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-730 1662358 1668309 1668368 "MONOGEN" 1669042 NIL MONOGEN (NIL T T) -9 NIL 1669498 NIL) (-729 1659576 1660311 1661311 "MONOGEN-" 1661430 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-728 1658409 1658855 1658883 "MONADWU" 1659275 T MONADWU (NIL) -9 NIL 1659513 NIL) (-727 1657781 1657940 1658188 "MONADWU-" 1658193 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-726 1657140 1657384 1657412 "MONAD" 1657619 T MONAD (NIL) -9 NIL 1657731 NIL) (-725 1656825 1656903 1657035 "MONAD-" 1657040 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-724 1655114 1655738 1656017 "MOEBIUS" 1656578 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-723 1654392 1654796 1654836 "MODULE" 1654841 NIL MODULE (NIL T) -9 NIL 1654880 NIL) (-722 1653960 1654056 1654246 "MODULE-" 1654251 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-721 1651640 1652324 1652651 "MODRING" 1653784 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-720 1648584 1649745 1650266 "MODOP" 1651169 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-719 1647172 1647651 1647928 "MODMONOM" 1648447 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-718 1637214 1645463 1645877 "MODMON" 1646809 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-717 1634370 1636058 1636334 "MODFIELD" 1637089 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-716 1633347 1633651 1633841 "MMLFORM" 1634200 T MMLFORM (NIL) -8 NIL NIL NIL) (-715 1632873 1632916 1633095 "MMAP" 1633298 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-714 1630952 1631719 1631760 "MLO" 1632183 NIL MLO (NIL T) -9 NIL 1632425 NIL) (-713 1628318 1628834 1629436 "MLIFT" 1630433 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-712 1627709 1627793 1627947 "MKUCFUNC" 1628229 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-711 1627308 1627378 1627501 "MKRECORD" 1627632 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-710 1626355 1626517 1626745 "MKFUNC" 1627119 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-709 1625743 1625847 1626003 "MKFLCFN" 1626238 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-708 1625020 1625122 1625307 "MKBCFUNC" 1625636 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-707 1621727 1624574 1624710 "MINT" 1624904 T MINT (NIL) -8 NIL NIL NIL) (-706 1620539 1620782 1621059 "MHROWRED" 1621482 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-705 1615919 1619074 1619479 "MFLOAT" 1620154 T MFLOAT (NIL) -8 NIL NIL NIL) (-704 1615276 1615352 1615523 "MFINFACT" 1615831 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-703 1611591 1612439 1613323 "MESH" 1614412 T MESH (NIL) -7 NIL NIL NIL) (-702 1609981 1610293 1610646 "MDDFACT" 1611278 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-701 1606776 1609140 1609181 "MDAGG" 1609436 NIL MDAGG (NIL T) -9 NIL 1609579 NIL) (-700 1596516 1606069 1606276 "MCMPLX" 1606589 T MCMPLX (NIL) -8 NIL NIL NIL) (-699 1595653 1595799 1596000 "MCDEN" 1596365 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-698 1593543 1593813 1594193 "MCALCFN" 1595383 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-697 1592468 1592708 1592941 "MAYBE" 1593349 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-696 1590080 1590603 1591165 "MATSTOR" 1591939 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-695 1586037 1589452 1589700 "MATRIX" 1589865 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-694 1581801 1582510 1583246 "MATLIN" 1585394 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-693 1571907 1575093 1575170 "MATCAT" 1580050 NIL MATCAT (NIL T T T) -9 NIL 1581467 NIL) (-692 1568263 1569284 1570640 "MATCAT-" 1570645 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-691 1566857 1567010 1567343 "MATCAT2" 1568098 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-690 1564969 1565293 1565677 "MAPPKG3" 1566532 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-689 1563950 1564123 1564345 "MAPPKG2" 1564793 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-688 1562449 1562733 1563060 "MAPPKG1" 1563656 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-687 1561528 1561855 1562032 "MAPPAST" 1562292 T MAPPAST (NIL) -8 NIL NIL NIL) (-686 1561139 1561197 1561320 "MAPHACK3" 1561464 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-685 1560731 1560792 1560906 "MAPHACK2" 1561071 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-684 1560168 1560272 1560414 "MAPHACK1" 1560622 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-683 1558247 1558868 1559172 "MAGMA" 1559896 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-682 1557726 1557971 1558062 "MACROAST" 1558176 T MACROAST (NIL) -8 NIL NIL NIL) (-681 1554144 1555965 1556426 "M3D" 1557298 NIL M3D (NIL T) -8 NIL NIL NIL) (-680 1548250 1552513 1552554 "LZSTAGG" 1553336 NIL LZSTAGG (NIL T) -9 NIL 1553631 NIL) (-679 1544207 1545381 1546838 "LZSTAGG-" 1546843 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-678 1541294 1542098 1542585 "LWORD" 1543752 NIL LWORD (NIL T) -8 NIL NIL NIL) (-677 1540870 1541098 1541173 "LSTAST" 1541239 T LSTAST (NIL) -8 NIL NIL NIL) (-676 1534036 1540641 1540775 "LSQM" 1540780 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-675 1533260 1533399 1533627 "LSPP" 1533891 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-674 1531072 1531373 1531829 "LSMP" 1532949 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-673 1527851 1528525 1529255 "LSMP1" 1530374 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-672 1521728 1527018 1527059 "LSAGG" 1527121 NIL LSAGG (NIL T) -9 NIL 1527199 NIL) (-671 1518423 1519347 1520560 "LSAGG-" 1520565 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-670 1516022 1517567 1517816 "LPOLY" 1518218 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-669 1515604 1515689 1515812 "LPEFRAC" 1515931 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-668 1513925 1514698 1514951 "LO" 1515436 NIL LO (NIL T T T) -8 NIL NIL NIL) (-667 1513577 1513689 1513717 "LOGIC" 1513828 T LOGIC (NIL) -9 NIL 1513909 NIL) (-666 1513439 1513462 1513533 "LOGIC-" 1513538 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-665 1512632 1512772 1512965 "LODOOPS" 1513295 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-664 1510055 1512548 1512614 "LODO" 1512619 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-663 1508593 1508828 1509181 "LODOF" 1509802 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-662 1504811 1507242 1507283 "LODOCAT" 1507721 NIL LODOCAT (NIL T) -9 NIL 1507932 NIL) (-661 1504544 1504602 1504729 "LODOCAT-" 1504734 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-660 1501864 1504385 1504503 "LODO2" 1504508 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-659 1499299 1501801 1501846 "LODO1" 1501851 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-658 1498180 1498345 1498650 "LODEEF" 1499122 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-657 1493419 1496310 1496351 "LNAGG" 1497298 NIL LNAGG (NIL T) -9 NIL 1497742 NIL) (-656 1492566 1492780 1493122 "LNAGG-" 1493127 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-655 1488702 1489491 1490130 "LMOPS" 1491981 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-654 1488105 1488493 1488534 "LMODULE" 1488539 NIL LMODULE (NIL T) -9 NIL 1488565 NIL) (-653 1485303 1487750 1487873 "LMDICT" 1488015 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-652 1484709 1484930 1484971 "LLINSET" 1485162 NIL LLINSET (NIL T) -9 NIL 1485253 NIL) (-651 1484408 1484617 1484677 "LITERAL" 1484682 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-650 1477571 1483342 1483646 "LIST" 1484137 NIL LIST (NIL T) -8 NIL NIL NIL) (-649 1477096 1477170 1477309 "LIST3" 1477491 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-648 1476103 1476281 1476509 "LIST2" 1476914 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-647 1474237 1474549 1474948 "LIST2MAP" 1475750 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-646 1473833 1474070 1474111 "LINSET" 1474116 NIL LINSET (NIL T) -9 NIL 1474150 NIL) (-645 1472494 1473164 1473205 "LINEXP" 1473460 NIL LINEXP (NIL T) -9 NIL 1473609 NIL) (-644 1471141 1471401 1471698 "LINDEP" 1472246 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-643 1467908 1468627 1469404 "LIMITRF" 1470396 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-642 1466211 1466507 1466916 "LIMITPS" 1467603 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-641 1460639 1465722 1465950 "LIE" 1466032 NIL LIE (NIL T T) -8 NIL NIL NIL) (-640 1459587 1460056 1460096 "LIECAT" 1460236 NIL LIECAT (NIL T) -9 NIL 1460387 NIL) (-639 1459428 1459455 1459543 "LIECAT-" 1459548 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-638 1451924 1458877 1459042 "LIB" 1459283 T LIB (NIL) -8 NIL NIL NIL) (-637 1447559 1448442 1449377 "LGROBP" 1451041 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-636 1445557 1445831 1446181 "LF" 1447280 NIL LF (NIL T T) -7 NIL NIL NIL) (-635 1444397 1445089 1445117 "LFCAT" 1445324 T LFCAT (NIL) -9 NIL 1445463 NIL) (-634 1441299 1441929 1442617 "LEXTRIPK" 1443761 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-633 1438043 1438869 1439372 "LEXP" 1440879 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-632 1437519 1437764 1437856 "LETAST" 1437971 T LETAST (NIL) -8 NIL NIL NIL) (-631 1435917 1436230 1436631 "LEADCDET" 1437201 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-630 1435107 1435181 1435410 "LAZM3PK" 1435838 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-629 1430024 1433184 1433722 "LAUPOL" 1434619 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-628 1429603 1429647 1429808 "LAPLACE" 1429974 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-627 1427542 1428704 1428955 "LA" 1429436 NIL LA (NIL T T T) -8 NIL NIL NIL) (-626 1426536 1427120 1427161 "LALG" 1427223 NIL LALG (NIL T) -9 NIL 1427282 NIL) (-625 1426250 1426309 1426445 "LALG-" 1426450 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-624 1426085 1426109 1426150 "KVTFROM" 1426212 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-623 1425008 1425452 1425637 "KTVLOGIC" 1425920 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-622 1424843 1424867 1424908 "KRCFROM" 1424970 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-621 1423747 1423934 1424233 "KOVACIC" 1424643 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-620 1423582 1423606 1423647 "KONVERT" 1423709 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-619 1423417 1423441 1423482 "KOERCE" 1423544 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-618 1421247 1422010 1422387 "KERNEL" 1423073 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-617 1420743 1420824 1420956 "KERNEL2" 1421161 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-616 1414513 1419282 1419336 "KDAGG" 1419713 NIL KDAGG (NIL T T) -9 NIL 1419919 NIL) (-615 1414042 1414166 1414371 "KDAGG-" 1414376 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-614 1407190 1413703 1413858 "KAFILE" 1413920 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-613 1401618 1406701 1406929 "JORDAN" 1407011 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-612 1400997 1401267 1401388 "JOINAST" 1401517 T JOINAST (NIL) -8 NIL NIL NIL) (-611 1400843 1400902 1400957 "JAVACODE" 1400962 T JAVACODE (NIL) -8 NIL NIL NIL) (-610 1397095 1399048 1399102 "IXAGG" 1400031 NIL IXAGG (NIL T T) -9 NIL 1400490 NIL) (-609 1396014 1396320 1396739 "IXAGG-" 1396744 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-608 1391544 1395936 1395995 "IVECTOR" 1396000 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-607 1390310 1390547 1390813 "ITUPLE" 1391311 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-606 1388812 1388989 1389284 "ITRIGMNP" 1390132 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-605 1387557 1387761 1388044 "ITFUN3" 1388588 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-604 1387189 1387246 1387355 "ITFUN2" 1387494 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-603 1386348 1386669 1386843 "ITFORM" 1387035 T ITFORM (NIL) -8 NIL NIL NIL) (-602 1384309 1385368 1385646 "ITAYLOR" 1386103 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-601 1373254 1378446 1379609 "ISUPS" 1383179 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-600 1372358 1372498 1372734 "ISUMP" 1373101 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-599 1367733 1372303 1372344 "ISTRING" 1372349 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-598 1367209 1367454 1367546 "ISAST" 1367661 T ISAST (NIL) -8 NIL NIL NIL) (-597 1366418 1366500 1366716 "IRURPK" 1367123 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-596 1365354 1365555 1365795 "IRSN" 1366198 T IRSN (NIL) -7 NIL NIL NIL) (-595 1363425 1363780 1364209 "IRRF2F" 1364992 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-594 1363172 1363210 1363286 "IRREDFFX" 1363381 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-593 1361787 1362046 1362345 "IROOT" 1362905 NIL IROOT (NIL T) -7 NIL NIL NIL) (-592 1358391 1359471 1360163 "IR" 1361127 NIL IR (NIL T) -8 NIL NIL NIL) (-591 1357596 1357884 1358035 "IRFORM" 1358260 T IRFORM (NIL) -8 NIL NIL NIL) (-590 1355209 1355704 1356270 "IR2" 1357074 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-589 1354309 1354422 1354636 "IR2F" 1355092 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-588 1354100 1354134 1354194 "IPRNTPK" 1354269 T IPRNTPK (NIL) -7 NIL NIL NIL) (-587 1350681 1353989 1354058 "IPF" 1354063 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-586 1349008 1350606 1350663 "IPADIC" 1350668 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-585 1348320 1348568 1348698 "IP4ADDR" 1348898 T IP4ADDR (NIL) -8 NIL NIL NIL) (-584 1347694 1347949 1348081 "IOMODE" 1348208 T IOMODE (NIL) -8 NIL NIL NIL) (-583 1346767 1347291 1347418 "IOBFILE" 1347587 T IOBFILE (NIL) -8 NIL NIL NIL) (-582 1346255 1346671 1346699 "IOBCON" 1346704 T IOBCON (NIL) -9 NIL 1346725 NIL) (-581 1345766 1345824 1346007 "INVLAPLA" 1346191 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-580 1335414 1337768 1340154 "INTTR" 1343430 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-579 1331749 1332491 1333356 "INTTOOLS" 1334599 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-578 1331335 1331426 1331543 "INTSLPE" 1331652 T INTSLPE (NIL) -7 NIL NIL NIL) (-577 1329288 1331258 1331317 "INTRVL" 1331322 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-576 1326890 1327402 1327977 "INTRF" 1328773 NIL INTRF (NIL T) -7 NIL NIL NIL) (-575 1326301 1326398 1326540 "INTRET" 1326788 NIL INTRET (NIL T) -7 NIL NIL NIL) (-574 1324298 1324687 1325157 "INTRAT" 1325909 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-573 1321561 1322144 1322763 "INTPM" 1323783 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-572 1318306 1318905 1319643 "INTPAF" 1320947 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-571 1313485 1314447 1315498 "INTPACK" 1317275 T INTPACK (NIL) -7 NIL NIL NIL) (-570 1310433 1313282 1313391 "INT" 1313396 T INT (NIL) -8 NIL NIL NIL) (-569 1309685 1309837 1310045 "INTHERTR" 1310275 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-568 1309124 1309204 1309392 "INTHERAL" 1309599 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-567 1306970 1307413 1307870 "INTHEORY" 1308687 T INTHEORY (NIL) -7 NIL NIL NIL) (-566 1298376 1299997 1301769 "INTG0" 1305322 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-565 1278949 1283739 1288549 "INTFTBL" 1293586 T INTFTBL (NIL) -8 NIL NIL NIL) (-564 1278198 1278336 1278509 "INTFACT" 1278808 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-563 1275625 1276071 1276628 "INTEF" 1277752 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-562 1273992 1274731 1274759 "INTDOM" 1275060 T INTDOM (NIL) -9 NIL 1275267 NIL) (-561 1273361 1273535 1273777 "INTDOM-" 1273782 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-560 1269749 1271677 1271731 "INTCAT" 1272530 NIL INTCAT (NIL T) -9 NIL 1272851 NIL) (-559 1269221 1269324 1269452 "INTBIT" 1269641 T INTBIT (NIL) -7 NIL NIL NIL) (-558 1267920 1268074 1268381 "INTALG" 1269066 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-557 1267403 1267493 1267650 "INTAF" 1267824 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-556 1260746 1267213 1267353 "INTABL" 1267358 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-555 1260087 1260553 1260618 "INT8" 1260652 T INT8 (NIL) -8 NIL NIL 1260697) (-554 1259427 1259893 1259958 "INT64" 1259992 T INT64 (NIL) -8 NIL NIL 1260037) (-553 1258767 1259233 1259298 "INT32" 1259332 T INT32 (NIL) -8 NIL NIL 1259377) (-552 1258107 1258573 1258638 "INT16" 1258672 T INT16 (NIL) -8 NIL NIL 1258717) (-551 1253017 1255730 1255758 "INS" 1256692 T INS (NIL) -9 NIL 1257357 NIL) (-550 1250257 1251028 1252002 "INS-" 1252075 NIL INS- (NIL T) -8 NIL NIL NIL) (-549 1249032 1249259 1249557 "INPSIGN" 1250010 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-548 1248150 1248267 1248464 "INPRODPF" 1248912 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-547 1247044 1247161 1247398 "INPRODFF" 1248030 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-546 1246044 1246196 1246456 "INNMFACT" 1246880 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-545 1245241 1245338 1245526 "INMODGCD" 1245943 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-544 1243749 1243994 1244318 "INFSP" 1244986 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-543 1242933 1243050 1243233 "INFPROD0" 1243629 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-542 1239788 1240998 1241513 "INFORM" 1242426 T INFORM (NIL) -8 NIL NIL NIL) (-541 1239398 1239458 1239556 "INFORM1" 1239723 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-540 1238921 1239010 1239124 "INFINITY" 1239304 T INFINITY (NIL) -7 NIL NIL NIL) (-539 1238097 1238641 1238742 "INETCLTS" 1238840 T INETCLTS (NIL) -8 NIL NIL NIL) (-538 1236713 1236963 1237284 "INEP" 1237845 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-537 1235962 1236610 1236675 "INDE" 1236680 NIL INDE (NIL T) -8 NIL NIL NIL) (-536 1235526 1235594 1235711 "INCRMAPS" 1235889 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-535 1234344 1234795 1235001 "INBFILE" 1235340 T INBFILE (NIL) -8 NIL NIL NIL) (-534 1229644 1230580 1231524 "INBFF" 1233432 NIL INBFF (NIL T) -7 NIL NIL NIL) (-533 1228552 1228821 1228849 "INBCON" 1229362 T INBCON (NIL) -9 NIL 1229628 NIL) (-532 1227804 1228027 1228303 "INBCON-" 1228308 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-531 1227283 1227528 1227619 "INAST" 1227733 T INAST (NIL) -8 NIL NIL NIL) (-530 1226710 1226962 1227068 "IMPTAST" 1227197 T IMPTAST (NIL) -8 NIL NIL NIL) (-529 1223156 1226554 1226658 "IMATRIX" 1226663 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-528 1221864 1221987 1222303 "IMATQF" 1223012 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-527 1220084 1220311 1220648 "IMATLIN" 1221620 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-526 1214662 1220008 1220066 "ILIST" 1220071 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-525 1212567 1214522 1214635 "IIARRAY2" 1214640 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-524 1207965 1212478 1212542 "IFF" 1212547 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-523 1207312 1207582 1207698 "IFAST" 1207869 T IFAST (NIL) -8 NIL NIL NIL) (-522 1202307 1206604 1206792 "IFARRAY" 1207169 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-521 1201487 1202211 1202284 "IFAMON" 1202289 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-520 1201071 1201136 1201190 "IEVALAB" 1201397 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-519 1200746 1200814 1200974 "IEVALAB-" 1200979 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-518 1200377 1200660 1200723 "IDPO" 1200728 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-517 1199627 1200266 1200341 "IDPOAMS" 1200346 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-516 1198934 1199516 1199591 "IDPOAM" 1199596 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-515 1197993 1198269 1198322 "IDPC" 1198735 NIL IDPC (NIL T T) -9 NIL 1198884 NIL) (-514 1197462 1197885 1197958 "IDPAM" 1197963 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-513 1196838 1197354 1197427 "IDPAG" 1197432 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-512 1196483 1196674 1196749 "IDENT" 1196783 T IDENT (NIL) -8 NIL NIL NIL) (-511 1192738 1193586 1194481 "IDECOMP" 1195640 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-510 1185576 1186661 1187708 "IDEAL" 1191774 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-509 1184736 1184848 1185048 "ICDEN" 1185460 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-508 1183807 1184216 1184363 "ICARD" 1184609 T ICARD (NIL) -8 NIL NIL NIL) (-507 1181867 1182180 1182585 "IBPTOOLS" 1183484 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-506 1177474 1181487 1181600 "IBITS" 1181786 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-505 1174197 1174773 1175468 "IBATOOL" 1176891 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-504 1171976 1172438 1172971 "IBACHIN" 1173732 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-503 1169805 1171822 1171925 "IARRAY2" 1171930 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-502 1165911 1169731 1169788 "IARRAY1" 1169793 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-501 1160020 1164323 1164804 "IAN" 1165450 T IAN (NIL) -8 NIL NIL NIL) (-500 1159531 1159588 1159761 "IALGFACT" 1159957 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-499 1159059 1159172 1159200 "HYPCAT" 1159407 T HYPCAT (NIL) -9 NIL NIL NIL) (-498 1158597 1158714 1158900 "HYPCAT-" 1158905 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-497 1158192 1158392 1158475 "HOSTNAME" 1158534 T HOSTNAME (NIL) -8 NIL NIL NIL) (-496 1158037 1158074 1158115 "HOMOTOP" 1158120 NIL HOMOTOP (NIL T) -9 NIL 1158153 NIL) (-495 1154669 1156047 1156088 "HOAGG" 1157069 NIL HOAGG (NIL T) -9 NIL 1157748 NIL) (-494 1153263 1153662 1154188 "HOAGG-" 1154193 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-493 1147265 1152856 1153006 "HEXADEC" 1153133 T HEXADEC (NIL) -8 NIL NIL NIL) (-492 1146013 1146235 1146498 "HEUGCD" 1147042 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-491 1145089 1145850 1145980 "HELLFDIV" 1145985 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-490 1143268 1144866 1144954 "HEAP" 1145033 NIL HEAP (NIL T) -8 NIL NIL NIL) (-489 1142531 1142820 1142954 "HEADAST" 1143154 T HEADAST (NIL) -8 NIL NIL NIL) (-488 1136397 1142446 1142508 "HDP" 1142513 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-487 1130385 1136032 1136184 "HDMP" 1136298 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-486 1129709 1129849 1130013 "HB" 1130241 T HB (NIL) -7 NIL NIL NIL) (-485 1123095 1129555 1129659 "HASHTBL" 1129664 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-484 1122571 1122816 1122908 "HASAST" 1123023 T HASAST (NIL) -8 NIL NIL NIL) (-483 1120349 1122193 1122375 "HACKPI" 1122409 T HACKPI (NIL) -8 NIL NIL NIL) (-482 1116017 1120202 1120315 "GTSET" 1120320 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-481 1109432 1115895 1115993 "GSTBL" 1115998 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-480 1101710 1108463 1108728 "GSERIES" 1109223 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-479 1100851 1101268 1101296 "GROUP" 1101499 T GROUP (NIL) -9 NIL 1101633 NIL) (-478 1100217 1100376 1100627 "GROUP-" 1100632 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-477 1098584 1098905 1099292 "GROEBSOL" 1099894 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-476 1097498 1097786 1097837 "GRMOD" 1098366 NIL GRMOD (NIL T T) -9 NIL 1098534 NIL) (-475 1097266 1097302 1097430 "GRMOD-" 1097435 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-474 1092556 1093620 1094620 "GRIMAGE" 1096286 T GRIMAGE (NIL) -8 NIL NIL NIL) (-473 1091022 1091283 1091607 "GRDEF" 1092252 T GRDEF (NIL) -7 NIL NIL NIL) (-472 1090466 1090582 1090723 "GRAY" 1090901 T GRAY (NIL) -7 NIL NIL NIL) (-471 1089653 1090059 1090110 "GRALG" 1090263 NIL GRALG (NIL T T) -9 NIL 1090356 NIL) (-470 1089314 1089387 1089550 "GRALG-" 1089555 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-469 1086091 1088899 1089077 "GPOLSET" 1089221 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-468 1085445 1085502 1085760 "GOSPER" 1086028 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-467 1081177 1081883 1082409 "GMODPOL" 1085144 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-466 1080182 1080366 1080604 "GHENSEL" 1080989 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-465 1074338 1075181 1076201 "GENUPS" 1079266 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-464 1074035 1074086 1074175 "GENUFACT" 1074281 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-463 1073447 1073524 1073689 "GENPGCD" 1073953 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-462 1072921 1072956 1073169 "GENMFACT" 1073406 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-461 1071487 1071744 1072051 "GENEEZ" 1072664 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-460 1065633 1071098 1071260 "GDMP" 1071410 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-459 1054975 1059404 1060510 "GCNAALG" 1064616 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-458 1053302 1054164 1054192 "GCDDOM" 1054447 T GCDDOM (NIL) -9 NIL 1054604 NIL) (-457 1052772 1052899 1053114 "GCDDOM-" 1053119 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-456 1051444 1051629 1051933 "GB" 1052551 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-455 1040060 1042390 1044782 "GBINTERN" 1049135 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-454 1037897 1038189 1038610 "GBF" 1039735 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-453 1036678 1036843 1037110 "GBEUCLID" 1037713 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-452 1036027 1036152 1036301 "GAUSSFAC" 1036549 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-451 1034394 1034696 1035010 "GALUTIL" 1035746 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-450 1032702 1032976 1033300 "GALPOLYU" 1034121 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-449 1030067 1030357 1030764 "GALFACTU" 1032399 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-448 1021872 1023372 1024980 "GALFACT" 1028499 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-447 1019260 1019918 1019946 "FVFUN" 1021102 T FVFUN (NIL) -9 NIL 1021822 NIL) (-446 1018526 1018708 1018736 "FVC" 1019027 T FVC (NIL) -9 NIL 1019210 NIL) (-445 1018169 1018351 1018419 "FUNDESC" 1018478 T FUNDESC (NIL) -8 NIL NIL NIL) (-444 1017784 1017966 1018047 "FUNCTION" 1018121 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-443 1015528 1016106 1016572 "FT" 1017338 T FT (NIL) -8 NIL NIL NIL) (-442 1014319 1014829 1015032 "FTEM" 1015345 T FTEM (NIL) -8 NIL NIL NIL) (-441 1012610 1012899 1013296 "FSUPFACT" 1014010 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-440 1011007 1011296 1011628 "FST" 1012298 T FST (NIL) -8 NIL NIL NIL) (-439 1010206 1010312 1010500 "FSRED" 1010889 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-438 1008905 1009161 1009508 "FSPRMELT" 1009921 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-437 1006211 1006649 1007135 "FSPECF" 1008468 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-436 987849 996180 996221 "FS" 1000105 NIL FS (NIL T) -9 NIL 1002394 NIL) (-435 976492 979485 983542 "FS-" 983842 NIL FS- (NIL T T) -8 NIL NIL NIL) (-434 976020 976074 976244 "FSINT" 976433 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-433 974312 975013 975316 "FSERIES" 975799 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-432 973354 973470 973694 "FSCINT" 974192 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-431 969562 972298 972339 "FSAGG" 972709 NIL FSAGG (NIL T) -9 NIL 972968 NIL) (-430 967324 967925 968721 "FSAGG-" 968816 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-429 966366 966509 966736 "FSAGG2" 967177 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-428 964048 964328 964875 "FS2UPS" 966084 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-427 963682 963725 963854 "FS2" 963999 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-426 962560 962731 963033 "FS2EXPXP" 963507 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-425 961986 962101 962253 "FRUTIL" 962440 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-424 953399 957481 958839 "FR" 960660 NIL FR (NIL T) -8 NIL NIL NIL) (-423 948368 951042 951082 "FRNAALG" 952478 NIL FRNAALG (NIL T) -9 NIL 953085 NIL) (-422 944041 945117 946392 "FRNAALG-" 947142 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-421 943679 943722 943849 "FRNAAF2" 943992 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-420 942054 942528 942824 "FRMOD" 943491 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-419 939797 940429 940747 "FRIDEAL" 941845 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-418 938988 939075 939366 "FRIDEAL2" 939704 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-417 938121 938535 938576 "FRETRCT" 938581 NIL FRETRCT (NIL T) -9 NIL 938757 NIL) (-416 937233 937464 937815 "FRETRCT-" 937820 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-415 934321 935531 935590 "FRAMALG" 936472 NIL FRAMALG (NIL T T) -9 NIL 936764 NIL) (-414 932455 932910 933540 "FRAMALG-" 933763 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-413 926374 931928 932205 "FRAC" 932210 NIL FRAC (NIL T) -8 NIL NIL NIL) (-412 926010 926067 926174 "FRAC2" 926311 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-411 925646 925703 925810 "FR2" 925947 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-410 920159 923052 923080 "FPS" 924199 T FPS (NIL) -9 NIL 924756 NIL) (-409 919608 919717 919881 "FPS-" 920027 NIL FPS- (NIL T) -8 NIL NIL NIL) (-408 916910 918579 918607 "FPC" 918832 T FPC (NIL) -9 NIL 918974 NIL) (-407 916703 916743 916840 "FPC-" 916845 NIL FPC- (NIL T) -8 NIL NIL NIL) (-406 915493 916191 916232 "FPATMAB" 916237 NIL FPATMAB (NIL T) -9 NIL 916389 NIL) (-405 913166 913669 914095 "FPARFRAC" 915130 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-404 908560 909058 909740 "FORTRAN" 912598 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-403 906276 906776 907315 "FORT" 908041 T FORT (NIL) -7 NIL NIL NIL) (-402 903952 904514 904542 "FORTFN" 905602 T FORTFN (NIL) -9 NIL 906226 NIL) (-401 903716 903766 903794 "FORTCAT" 903853 T FORTCAT (NIL) -9 NIL 903915 NIL) (-400 901822 902332 902722 "FORMULA" 903346 T FORMULA (NIL) -8 NIL NIL NIL) (-399 901610 901640 901709 "FORMULA1" 901786 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-398 901133 901185 901358 "FORDER" 901552 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-397 900229 900393 900586 "FOP" 900960 T FOP (NIL) -7 NIL NIL NIL) (-396 898810 899509 899683 "FNLA" 900111 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-395 897539 897954 897982 "FNCAT" 898442 T FNCAT (NIL) -9 NIL 898702 NIL) (-394 897078 897498 897526 "FNAME" 897531 T FNAME (NIL) -8 NIL NIL NIL) (-393 895641 896604 896632 "FMTC" 896637 T FMTC (NIL) -9 NIL 896673 NIL) (-392 894387 895577 895623 "FMONOID" 895628 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-391 891215 892383 892424 "FMONCAT" 893641 NIL FMONCAT (NIL T) -9 NIL 894246 NIL) (-390 890407 890957 891106 "FM" 891111 NIL FM (NIL T T) -8 NIL NIL NIL) (-389 887831 888477 888505 "FMFUN" 889649 T FMFUN (NIL) -9 NIL 890357 NIL) (-388 887100 887281 887309 "FMC" 887599 T FMC (NIL) -9 NIL 887781 NIL) (-387 884179 885039 885093 "FMCAT" 886288 NIL FMCAT (NIL T T) -9 NIL 886783 NIL) (-386 883045 883945 884045 "FM1" 884124 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-385 880819 881235 881729 "FLOATRP" 882596 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-384 874393 878548 879169 "FLOAT" 880218 T FLOAT (NIL) -8 NIL NIL NIL) (-383 871831 872331 872909 "FLOATCP" 873860 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-382 870571 871409 871450 "FLINEXP" 871455 NIL FLINEXP (NIL T) -9 NIL 871548 NIL) (-381 869725 869960 870288 "FLINEXP-" 870293 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-380 868801 868945 869169 "FLASORT" 869577 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-379 865917 866785 866837 "FLALG" 868064 NIL FLALG (NIL T T) -9 NIL 868531 NIL) (-378 859653 863403 863444 "FLAGG" 864706 NIL FLAGG (NIL T) -9 NIL 865358 NIL) (-377 858379 858718 859208 "FLAGG-" 859213 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-376 857421 857564 857791 "FLAGG2" 858232 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-375 854272 855280 855339 "FINRALG" 856467 NIL FINRALG (NIL T T) -9 NIL 856975 NIL) (-374 853432 853661 854000 "FINRALG-" 854005 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-373 852812 853051 853079 "FINITE" 853275 T FINITE (NIL) -9 NIL 853382 NIL) (-372 845169 847356 847396 "FINAALG" 851063 NIL FINAALG (NIL T) -9 NIL 852516 NIL) (-371 840501 841551 842695 "FINAALG-" 844074 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-370 839869 840256 840359 "FILE" 840431 NIL FILE (NIL T) -8 NIL NIL NIL) (-369 838527 838865 838919 "FILECAT" 839603 NIL FILECAT (NIL T T) -9 NIL 839819 NIL) (-368 836243 837771 837799 "FIELD" 837839 T FIELD (NIL) -9 NIL 837919 NIL) (-367 834863 835248 835759 "FIELD-" 835764 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-366 832713 833498 833845 "FGROUP" 834549 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-365 831803 831967 832187 "FGLMICPK" 832545 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-364 827635 831728 831785 "FFX" 831790 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-363 827236 827297 827432 "FFSLPE" 827568 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-362 823226 824008 824804 "FFPOLY" 826472 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-361 822730 822766 822975 "FFPOLY2" 823184 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-360 818574 822649 822712 "FFP" 822717 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-359 813972 818485 818549 "FF" 818554 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-358 809098 813315 813505 "FFNBX" 813826 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-357 804026 808233 808491 "FFNBP" 808952 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-356 798659 803310 803521 "FFNB" 803859 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-355 797491 797689 798004 "FFINTBAS" 798456 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-354 793560 795780 795808 "FFIELDC" 796428 T FFIELDC (NIL) -9 NIL 796804 NIL) (-353 792222 792593 793090 "FFIELDC-" 793095 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-352 791791 791837 791961 "FFHOM" 792164 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-351 789486 789973 790490 "FFF" 791306 NIL FFF (NIL T) -7 NIL NIL NIL) (-350 785104 789228 789329 "FFCGX" 789429 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-349 780726 784836 784943 "FFCGP" 785047 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-348 775909 780453 780561 "FFCG" 780662 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-347 757305 766386 766472 "FFCAT" 771637 NIL FFCAT (NIL T T T) -9 NIL 773088 NIL) (-346 752502 753550 754864 "FFCAT-" 756094 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-345 751913 751956 752191 "FFCAT2" 752453 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-344 741236 744885 746105 "FEXPR" 750765 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-343 740236 740671 740712 "FEVALAB" 740796 NIL FEVALAB (NIL T) -9 NIL 741057 NIL) (-342 739395 739605 739943 "FEVALAB-" 739948 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-341 737961 738778 738981 "FDIV" 739294 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-340 734981 735722 735837 "FDIVCAT" 737405 NIL FDIVCAT (NIL T T T T) -9 NIL 737842 NIL) (-339 734743 734770 734940 "FDIVCAT-" 734945 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-338 733963 734050 734327 "FDIV2" 734650 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-337 732937 733258 733460 "FCTRDATA" 733781 T FCTRDATA (NIL) -8 NIL NIL NIL) (-336 731623 731882 732171 "FCPAK1" 732668 T FCPAK1 (NIL) -7 NIL NIL NIL) (-335 730722 731123 731264 "FCOMP" 731514 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-334 714427 717872 721410 "FC" 727204 T FC (NIL) -8 NIL NIL NIL) (-333 706790 710818 710858 "FAXF" 712660 NIL FAXF (NIL T) -9 NIL 713352 NIL) (-332 704066 704724 705549 "FAXF-" 706014 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-331 699118 703442 703618 "FARRAY" 703923 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-330 694012 696079 696132 "FAMR" 697155 NIL FAMR (NIL T T) -9 NIL 697615 NIL) (-329 692902 693204 693639 "FAMR-" 693644 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-328 692071 692824 692877 "FAMONOID" 692882 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-327 689857 690567 690620 "FAMONC" 691561 NIL FAMONC (NIL T T) -9 NIL 691947 NIL) (-326 688521 689611 689748 "FAGROUP" 689753 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-325 686316 686635 687038 "FACUTIL" 688202 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-324 685415 685600 685822 "FACTFUNC" 686126 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-323 677837 684718 684917 "EXPUPXS" 685271 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-322 675320 675860 676446 "EXPRTUBE" 677271 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-321 671591 672183 672913 "EXPRODE" 674659 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-320 657076 670240 670669 "EXPR" 671195 NIL EXPR (NIL T) -8 NIL NIL NIL) (-319 651630 652217 653023 "EXPR2UPS" 656374 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-318 651262 651319 651428 "EXPR2" 651567 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-317 642650 650413 650704 "EXPEXPAN" 651098 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-316 642450 642607 642636 "EXIT" 642641 T EXIT (NIL) -8 NIL NIL NIL) (-315 641930 642174 642265 "EXITAST" 642379 T EXITAST (NIL) -8 NIL NIL NIL) (-314 641557 641619 641732 "EVALCYC" 641862 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-313 641098 641216 641257 "EVALAB" 641427 NIL EVALAB (NIL T) -9 NIL 641531 NIL) (-312 640579 640701 640922 "EVALAB-" 640927 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-311 637947 639249 639277 "EUCDOM" 639832 T EUCDOM (NIL) -9 NIL 640182 NIL) (-310 636352 636794 637384 "EUCDOM-" 637389 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-309 623890 626650 629400 "ESTOOLS" 633622 T ESTOOLS (NIL) -7 NIL NIL NIL) (-308 623522 623579 623688 "ESTOOLS2" 623827 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-307 623273 623315 623395 "ESTOOLS1" 623474 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-306 617310 618918 618946 "ES" 621714 T ES (NIL) -9 NIL 623124 NIL) (-305 612257 613544 615361 "ES-" 615525 NIL ES- (NIL T) -8 NIL NIL NIL) (-304 608631 609392 610172 "ESCONT" 611497 T ESCONT (NIL) -7 NIL NIL NIL) (-303 608376 608408 608490 "ESCONT1" 608593 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-302 608051 608101 608201 "ES2" 608320 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-301 607681 607739 607848 "ES1" 607987 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-300 606897 607026 607202 "ERROR" 607525 T ERROR (NIL) -7 NIL NIL NIL) (-299 600289 606756 606847 "EQTBL" 606852 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-298 592792 595603 597052 "EQ" 598873 NIL -2098 (NIL T) -8 NIL NIL NIL) (-297 592424 592481 592590 "EQ2" 592729 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-296 587714 588762 589855 "EP" 591363 NIL EP (NIL T) -7 NIL NIL NIL) (-295 586314 586605 586911 "ENV" 587428 T ENV (NIL) -8 NIL NIL NIL) (-294 585408 585962 585990 "ENTIRER" 585995 T ENTIRER (NIL) -9 NIL 586041 NIL) (-293 581875 583363 583733 "EMR" 585207 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-292 581019 581204 581258 "ELTAGG" 581638 NIL ELTAGG (NIL T T) -9 NIL 581849 NIL) (-291 580738 580800 580941 "ELTAGG-" 580946 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-290 580527 580556 580610 "ELTAB" 580694 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-289 579653 579799 579998 "ELFUTS" 580378 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-288 579395 579451 579479 "ELEMFUN" 579584 T ELEMFUN (NIL) -9 NIL NIL NIL) (-287 579265 579286 579354 "ELEMFUN-" 579359 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-286 574109 577365 577406 "ELAGG" 578346 NIL ELAGG (NIL T) -9 NIL 578809 NIL) (-285 572394 572828 573491 "ELAGG-" 573496 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-284 571706 571843 571999 "ELABOR" 572258 T ELABOR (NIL) -8 NIL NIL NIL) (-283 570367 570646 570940 "ELABEXPR" 571432 T ELABEXPR (NIL) -8 NIL NIL NIL) (-282 563231 565034 565861 "EFUPXS" 569643 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-281 556681 558482 559292 "EFULS" 562507 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-280 554166 554524 554996 "EFSTRUC" 556313 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-279 543957 545523 547071 "EF" 552681 NIL EF (NIL T T) -7 NIL NIL NIL) (-278 543031 543442 543591 "EAB" 543828 T EAB (NIL) -8 NIL NIL NIL) (-277 542213 542990 543018 "E04UCFA" 543023 T E04UCFA (NIL) -8 NIL NIL NIL) (-276 541395 542172 542200 "E04NAFA" 542205 T E04NAFA (NIL) -8 NIL NIL NIL) (-275 540577 541354 541382 "E04MBFA" 541387 T E04MBFA (NIL) -8 NIL NIL NIL) (-274 539759 540536 540564 "E04JAFA" 540569 T E04JAFA (NIL) -8 NIL NIL NIL) (-273 538943 539718 539746 "E04GCFA" 539751 T E04GCFA (NIL) -8 NIL NIL NIL) (-272 538127 538902 538930 "E04FDFA" 538935 T E04FDFA (NIL) -8 NIL NIL NIL) (-271 537309 538086 538114 "E04DGFA" 538119 T E04DGFA (NIL) -8 NIL NIL NIL) (-270 531482 532834 534198 "E04AGNT" 535965 T E04AGNT (NIL) -7 NIL NIL NIL) (-269 530162 530668 530708 "DVARCAT" 531183 NIL DVARCAT (NIL T) -9 NIL 531382 NIL) (-268 529366 529578 529892 "DVARCAT-" 529897 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-267 522503 529165 529294 "DSMP" 529299 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-266 517284 518448 519516 "DROPT" 521455 T DROPT (NIL) -8 NIL NIL NIL) (-265 516949 517008 517106 "DROPT1" 517219 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-264 512064 513190 514327 "DROPT0" 515832 T DROPT0 (NIL) -7 NIL NIL NIL) (-263 510409 510734 511120 "DRAWPT" 511698 T DRAWPT (NIL) -7 NIL NIL NIL) (-262 504996 505919 506998 "DRAW" 509383 NIL DRAW (NIL T) -7 NIL NIL NIL) (-261 504629 504682 504800 "DRAWHACK" 504937 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-260 503360 503629 503920 "DRAWCX" 504358 T DRAWCX (NIL) -7 NIL NIL NIL) (-259 502875 502944 503095 "DRAWCURV" 503286 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-258 493343 495305 497420 "DRAWCFUN" 500780 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-257 490107 492036 492077 "DQAGG" 492706 NIL DQAGG (NIL T) -9 NIL 492980 NIL) (-256 478231 484700 484783 "DPOLCAT" 486635 NIL DPOLCAT (NIL T T T T) -9 NIL 487180 NIL) (-255 473067 474416 476374 "DPOLCAT-" 476379 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-254 466189 472928 473026 "DPMO" 473031 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-253 459214 465969 466136 "DPMM" 466141 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-252 458692 458906 459004 "DOMTMPLT" 459136 T DOMTMPLT (NIL) -8 NIL NIL NIL) (-251 458125 458494 458574 "DOMCTOR" 458632 T DOMCTOR (NIL) -8 NIL NIL NIL) (-250 457337 457605 457756 "DOMAIN" 457994 T DOMAIN (NIL) -8 NIL NIL NIL) (-249 451325 456972 457124 "DMP" 457238 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-248 450925 450981 451125 "DLP" 451263 NIL DLP (NIL T) -7 NIL NIL NIL) (-247 444747 450252 450442 "DLIST" 450767 NIL DLIST (NIL T) -8 NIL NIL NIL) (-246 441544 443600 443641 "DLAGG" 444191 NIL DLAGG (NIL T) -9 NIL 444421 NIL) (-245 440220 440884 440912 "DIVRING" 441004 T DIVRING (NIL) -9 NIL 441087 NIL) (-244 439457 439647 439947 "DIVRING-" 439952 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-243 437559 437916 438322 "DISPLAY" 439071 T DISPLAY (NIL) -7 NIL NIL NIL) (-242 431447 437473 437536 "DIRPROD" 437541 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-241 430295 430498 430763 "DIRPROD2" 431240 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-240 419070 425076 425129 "DIRPCAT" 425539 NIL DIRPCAT (NIL NIL T) -9 NIL 426379 NIL) (-239 416396 417038 417919 "DIRPCAT-" 418256 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-238 415683 415843 416029 "DIOSP" 416230 T DIOSP (NIL) -7 NIL NIL NIL) (-237 412338 414595 414636 "DIOPS" 415070 NIL DIOPS (NIL T) -9 NIL 415299 NIL) (-236 411887 412001 412192 "DIOPS-" 412197 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-235 410710 411338 411366 "DIFRING" 411553 T DIFRING (NIL) -9 NIL 411663 NIL) (-234 410356 410433 410585 "DIFRING-" 410590 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-233 408092 409364 409405 "DIFEXT" 409768 NIL DIFEXT (NIL T) -9 NIL 410062 NIL) (-232 406377 406805 407471 "DIFEXT-" 407476 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-231 403652 405909 405950 "DIAGG" 405955 NIL DIAGG (NIL T) -9 NIL 405975 NIL) (-230 403036 403193 403445 "DIAGG-" 403450 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-229 398453 401995 402272 "DHMATRIX" 402805 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-228 394065 394974 395984 "DFSFUN" 397463 T DFSFUN (NIL) -7 NIL NIL NIL) (-227 389144 392996 393308 "DFLOAT" 393773 T DFLOAT (NIL) -8 NIL NIL NIL) (-226 387407 387688 388077 "DFINTTLS" 388852 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-225 384436 385428 385828 "DERHAM" 387073 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-224 382237 384211 384300 "DEQUEUE" 384380 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-223 381491 381624 381807 "DEGRED" 382099 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-222 377921 378666 379512 "DEFINTRF" 380719 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-221 375476 375945 376537 "DEFINTEF" 377440 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-220 374826 375096 375211 "DEFAST" 375381 T DEFAST (NIL) -8 NIL NIL NIL) (-219 368828 374419 374569 "DECIMAL" 374696 T DECIMAL (NIL) -8 NIL NIL NIL) (-218 366340 366798 367304 "DDFACT" 368372 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-217 365936 365979 366130 "DBLRESP" 366291 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-216 363808 364169 364529 "DBASE" 365703 NIL DBASE (NIL T) -8 NIL NIL NIL) (-215 363050 363288 363434 "DATAARY" 363707 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-214 362156 363009 363037 "D03FAFA" 363042 T D03FAFA (NIL) -8 NIL NIL NIL) (-213 361263 362115 362143 "D03EEFA" 362148 T D03EEFA (NIL) -8 NIL NIL NIL) (-212 359213 359679 360168 "D03AGNT" 360794 T D03AGNT (NIL) -7 NIL NIL NIL) (-211 358502 359172 359200 "D02EJFA" 359205 T D02EJFA (NIL) -8 NIL NIL NIL) (-210 357791 358461 358489 "D02CJFA" 358494 T D02CJFA (NIL) -8 NIL NIL NIL) (-209 357080 357750 357778 "D02BHFA" 357783 T D02BHFA (NIL) -8 NIL NIL NIL) (-208 356369 357039 357067 "D02BBFA" 357072 T D02BBFA (NIL) -8 NIL NIL NIL) (-207 349566 351155 352761 "D02AGNT" 354783 T D02AGNT (NIL) -7 NIL NIL NIL) (-206 347334 347857 348403 "D01WGTS" 349040 T D01WGTS (NIL) -7 NIL NIL NIL) (-205 346401 347293 347321 "D01TRNS" 347326 T D01TRNS (NIL) -8 NIL NIL NIL) (-204 345469 346360 346388 "D01GBFA" 346393 T D01GBFA (NIL) -8 NIL NIL NIL) (-203 344537 345428 345456 "D01FCFA" 345461 T D01FCFA (NIL) -8 NIL NIL NIL) (-202 343605 344496 344524 "D01ASFA" 344529 T D01ASFA (NIL) -8 NIL NIL NIL) (-201 342673 343564 343592 "D01AQFA" 343597 T D01AQFA (NIL) -8 NIL NIL NIL) (-200 341741 342632 342660 "D01APFA" 342665 T D01APFA (NIL) -8 NIL NIL NIL) (-199 340809 341700 341728 "D01ANFA" 341733 T D01ANFA (NIL) -8 NIL NIL NIL) (-198 339877 340768 340796 "D01AMFA" 340801 T D01AMFA (NIL) -8 NIL NIL NIL) (-197 338945 339836 339864 "D01ALFA" 339869 T D01ALFA (NIL) -8 NIL NIL NIL) (-196 338013 338904 338932 "D01AKFA" 338937 T D01AKFA (NIL) -8 NIL NIL NIL) (-195 337081 337972 338000 "D01AJFA" 338005 T D01AJFA (NIL) -8 NIL NIL NIL) (-194 330376 331929 333490 "D01AGNT" 335540 T D01AGNT (NIL) -7 NIL NIL NIL) (-193 329713 329841 329993 "CYCLOTOM" 330244 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-192 326448 327161 327888 "CYCLES" 329006 T CYCLES (NIL) -7 NIL NIL NIL) (-191 325760 325894 326065 "CVMP" 326309 NIL CVMP (NIL T) -7 NIL NIL NIL) (-190 323601 323859 324228 "CTRIGMNP" 325488 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-189 323037 323395 323468 "CTOR" 323548 T CTOR (NIL) -8 NIL NIL NIL) (-188 322546 322768 322869 "CTORKIND" 322956 T CTORKIND (NIL) -8 NIL NIL NIL) (-187 321837 322153 322181 "CTORCAT" 322363 T CTORCAT (NIL) -9 NIL 322476 NIL) (-186 321435 321546 321705 "CTORCAT-" 321710 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-185 320897 321109 321217 "CTORCALL" 321359 NIL CTORCALL (NIL T) -8 NIL NIL NIL) (-184 320271 320370 320523 "CSTTOOLS" 320794 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-183 316070 316727 317485 "CRFP" 319583 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-182 315545 315791 315883 "CRCEAST" 315998 T CRCEAST (NIL) -8 NIL NIL NIL) (-181 314592 314777 315005 "CRAPACK" 315349 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-180 313976 314077 314281 "CPMATCH" 314468 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-179 313701 313729 313835 "CPIMA" 313942 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-178 310049 310721 311440 "COORDSYS" 313036 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-177 309461 309582 309724 "CONTOUR" 309927 T CONTOUR (NIL) -8 NIL NIL NIL) (-176 305352 307464 307956 "CONTFRAC" 309001 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-175 305232 305253 305281 "CONDUIT" 305318 T CONDUIT (NIL) -9 NIL NIL NIL) (-174 304320 304874 304902 "COMRING" 304907 T COMRING (NIL) -9 NIL 304959 NIL) (-173 303374 303678 303862 "COMPPROP" 304156 T COMPPROP (NIL) -8 NIL NIL NIL) (-172 303035 303070 303198 "COMPLPAT" 303333 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-171 293326 302844 302953 "COMPLEX" 302958 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-170 292962 293019 293126 "COMPLEX2" 293263 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-169 292301 292422 292582 "COMPILER" 292822 T COMPILER (NIL) -8 NIL NIL NIL) (-168 292019 292054 292152 "COMPFACT" 292260 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-167 276099 286093 286133 "COMPCAT" 287137 NIL COMPCAT (NIL T) -9 NIL 288485 NIL) (-166 265611 268538 272165 "COMPCAT-" 272521 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-165 265340 265368 265471 "COMMUPC" 265577 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-164 265134 265168 265227 "COMMONOP" 265301 T COMMONOP (NIL) -7 NIL NIL NIL) (-163 264690 264885 264972 "COMM" 265067 T COMM (NIL) -8 NIL NIL NIL) (-162 264266 264494 264569 "COMMAAST" 264635 T COMMAAST (NIL) -8 NIL NIL NIL) (-161 263515 263709 263737 "COMBOPC" 264075 T COMBOPC (NIL) -9 NIL 264250 NIL) (-160 262411 262621 262863 "COMBINAT" 263305 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-159 258868 259442 260069 "COMBF" 261833 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-158 257626 257984 258219 "COLOR" 258653 T COLOR (NIL) -8 NIL NIL NIL) (-157 257102 257347 257439 "COLONAST" 257554 T COLONAST (NIL) -8 NIL NIL NIL) (-156 256742 256789 256914 "CMPLXRT" 257049 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-155 256190 256442 256541 "CLLCTAST" 256663 T CLLCTAST (NIL) -8 NIL NIL NIL) (-154 251689 252720 253800 "CLIP" 255130 T CLIP (NIL) -7 NIL NIL NIL) (-153 250030 250790 251030 "CLIF" 251516 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-152 246205 248176 248217 "CLAGG" 249146 NIL CLAGG (NIL T) -9 NIL 249682 NIL) (-151 244627 245084 245667 "CLAGG-" 245672 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-150 244171 244256 244396 "CINTSLPE" 244536 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-149 241672 242143 242691 "CHVAR" 243699 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-148 240846 241400 241428 "CHARZ" 241433 T CHARZ (NIL) -9 NIL 241448 NIL) (-147 240600 240640 240718 "CHARPOL" 240800 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-146 239658 240245 240273 "CHARNZ" 240320 T CHARNZ (NIL) -9 NIL 240376 NIL) (-145 237564 238312 238665 "CHAR" 239325 T CHAR (NIL) -8 NIL NIL NIL) (-144 237290 237351 237379 "CFCAT" 237490 T CFCAT (NIL) -9 NIL NIL NIL) (-143 236531 236642 236825 "CDEN" 237174 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-142 232496 235684 235964 "CCLASS" 236271 T CCLASS (NIL) -8 NIL NIL NIL) (-141 231747 231904 232081 "CATEGORY" 232339 T -10 (NIL) -8 NIL NIL NIL) (-140 231320 231666 231714 "CATCTOR" 231719 T CATCTOR (NIL) -8 NIL NIL NIL) (-139 230771 231023 231121 "CATAST" 231242 T CATAST (NIL) -8 NIL NIL NIL) (-138 230247 230492 230584 "CASEAST" 230699 T CASEAST (NIL) -8 NIL NIL NIL) (-137 225256 226276 227029 "CARTEN" 229550 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-136 224364 224512 224733 "CARTEN2" 225103 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-135 222680 223514 223771 "CARD" 224127 T CARD (NIL) -8 NIL NIL NIL) (-134 222256 222484 222559 "CAPSLAST" 222625 T CAPSLAST (NIL) -8 NIL NIL NIL) (-133 221760 221968 221996 "CACHSET" 222128 T CACHSET (NIL) -9 NIL 222206 NIL) (-132 221230 221552 221580 "CABMON" 221630 T CABMON (NIL) -9 NIL 221686 NIL) (-131 220703 220934 221044 "BYTEORD" 221140 T BYTEORD (NIL) -8 NIL NIL NIL) (-130 219685 220237 220379 "BYTE" 220542 T BYTE (NIL) -8 NIL NIL 220664) (-129 215035 219190 219362 "BYTEBUF" 219533 T BYTEBUF (NIL) -8 NIL NIL NIL) (-128 212544 214727 214834 "BTREE" 214961 NIL BTREE (NIL T) -8 NIL NIL NIL) (-127 209993 212192 212314 "BTOURN" 212454 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-126 207363 209463 209504 "BTCAT" 209572 NIL BTCAT (NIL T) -9 NIL 209649 NIL) (-125 207030 207110 207259 "BTCAT-" 207264 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-124 202440 206319 206347 "BTAGG" 206461 T BTAGG (NIL) -9 NIL 206571 NIL) (-123 201930 202055 202261 "BTAGG-" 202266 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-122 198925 201208 201423 "BSTREE" 201747 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-121 198063 198189 198373 "BRILL" 198781 NIL BRILL (NIL T) -7 NIL NIL NIL) (-120 194715 196789 196830 "BRAGG" 197479 NIL BRAGG (NIL T) -9 NIL 197737 NIL) (-119 193244 193650 194205 "BRAGG-" 194210 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-118 186471 192588 192773 "BPADICRT" 193091 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-117 184786 186408 186453 "BPADIC" 186458 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-116 184484 184514 184628 "BOUNDZRO" 184750 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-115 179712 180910 181822 "BOP" 183592 T BOP (NIL) -8 NIL NIL NIL) (-114 177493 177897 178372 "BOP1" 179270 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-113 177194 177255 177283 "BOOLE" 177394 T BOOLE (NIL) -9 NIL 177476 NIL) (-112 176019 176768 176917 "BOOLEAN" 177065 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 175298 175702 175756 "BMODULE" 175761 NIL BMODULE (NIL T T) -9 NIL 175826 NIL) (-110 171099 175096 175169 "BITS" 175245 T BITS (NIL) -8 NIL NIL NIL) (-109 170520 170639 170779 "BINDING" 170979 T BINDING (NIL) -8 NIL NIL NIL) (-108 164525 170115 170264 "BINARY" 170391 T BINARY (NIL) -8 NIL NIL NIL) (-107 162305 163780 163821 "BGAGG" 164081 NIL BGAGG (NIL T) -9 NIL 164218 NIL) (-106 162136 162168 162259 "BGAGG-" 162264 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 161207 161520 161725 "BFUNCT" 161951 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159897 160075 160363 "BEZOUT" 161031 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 156366 158749 159079 "BBTREE" 159600 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 156100 156153 156181 "BASTYPE" 156300 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155952 155981 156054 "BASTYPE-" 156059 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 155386 155462 155614 "BALFACT" 155863 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 154242 154801 154987 "AUTOMOR" 155231 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153968 153973 153999 "ATTREG" 154004 T ATTREG (NIL) -9 NIL NIL NIL) (-97 152220 152665 153017 "ATTRBUT" 153634 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151828 152048 152114 "ATTRAST" 152172 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 151364 151477 151503 "ATRIG" 151704 T ATRIG (NIL) -9 NIL NIL NIL) (-94 151173 151214 151301 "ATRIG-" 151306 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150818 151004 151030 "ASTCAT" 151035 T ASTCAT (NIL) -9 NIL 151065 NIL) (-92 150545 150604 150723 "ASTCAT-" 150728 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148694 150321 150409 "ASTACK" 150488 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 147199 147496 147861 "ASSOCEQ" 148376 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 146231 146858 146982 "ASP9" 147106 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145994 146179 146218 "ASP8" 146223 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144862 145599 145741 "ASP80" 145883 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143760 144497 144629 "ASP7" 144761 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142714 143437 143555 "ASP78" 143673 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141683 142394 142511 "ASP77" 142628 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 140595 141321 141452 "ASP74" 141583 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 139495 140230 140362 "ASP73" 140494 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138599 139321 139421 "ASP6" 139426 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 137544 138276 138394 "ASP55" 138512 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 136493 137218 137337 "ASP50" 137456 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 135581 136194 136304 "ASP4" 136414 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134669 135282 135392 "ASP49" 135502 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 133453 134208 134376 "ASP42" 134558 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 132229 132986 133156 "ASP41" 133340 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 131179 131906 132024 "ASP35" 132142 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130944 131127 131166 "ASP34" 131171 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130681 130748 130824 "ASP33" 130899 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 129574 130316 130448 "ASP31" 130580 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 129339 129522 129561 "ASP30" 129566 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 129074 129143 129219 "ASP29" 129294 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128839 129022 129061 "ASP28" 129066 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128604 128787 128826 "ASP27" 128831 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127688 128302 128413 "ASP24" 128524 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126764 127490 127602 "ASP20" 127607 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125852 126465 126575 "ASP1" 126685 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124794 125526 125645 "ASP19" 125764 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 124531 124598 124674 "ASP12" 124749 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 123383 124130 124274 "ASP10" 124418 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 121234 123227 123318 "ARRAY2" 123323 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116999 120882 120996 "ARRAY1" 121151 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 116031 116204 116425 "ARRAY12" 116822 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 110343 112261 112336 "ARR2CAT" 114966 NIL ARR2CAT (NIL T T T) -9 NIL 115724 NIL) (-56 107777 108521 109475 "ARR2CAT-" 109480 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 107094 107404 107529 "ARITY" 107670 T ARITY (NIL) -8 NIL NIL NIL) (-54 105870 106022 106321 "APPRULE" 106930 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105521 105569 105688 "APPLYORE" 105816 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104875 105114 105234 "ANY" 105419 T ANY (NIL) -8 NIL NIL NIL) (-51 104153 104276 104433 "ANY1" 104749 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101683 102590 102917 "ANTISYM" 103877 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 101175 101390 101486 "ANON" 101605 T ANON (NIL) -8 NIL NIL NIL) (-48 95424 99714 100168 "AN" 100739 T AN (NIL) -8 NIL NIL NIL) (-47 91322 92710 92761 "AMR" 93509 NIL AMR (NIL T T) -9 NIL 94109 NIL) (-46 90434 90655 91018 "AMR-" 91023 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74873 90351 90412 "ALIST" 90417 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71676 74467 74636 "ALGSC" 74791 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68231 68786 69393 "ALGPKG" 71116 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67508 67609 67793 "ALGMFACT" 68117 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63543 64122 64716 "ALGMANIP" 67092 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54913 63169 63319 "ALGFF" 63476 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 54109 54240 54419 "ALGFACT" 54771 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 53050 53650 53688 "ALGEBRA" 53693 NIL ALGEBRA (NIL T) -9 NIL 53734 NIL) (-37 52768 52827 52959 "ALGEBRA-" 52964 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34861 50770 50822 "ALAGG" 50958 NIL ALAGG (NIL T T) -9 NIL 51119 NIL) (-35 34397 34510 34536 "AHYP" 34737 T AHYP (NIL) -9 NIL NIL NIL) (-34 33328 33576 33602 "AGG" 34101 T AGG (NIL) -9 NIL 34380 NIL) (-33 32762 32924 33138 "AGG-" 33143 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30568 30991 31396 "AF" 32404 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 30048 30293 30383 "ADDAST" 30496 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29316 29575 29731 "ACPLOT" 29910 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18639 26443 26481 "ACFS" 27088 NIL ACFS (NIL T) -9 NIL 27327 NIL) (-28 16666 17156 17918 "ACFS-" 17923 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12784 14713 14739 "ACF" 15618 T ACF (NIL) -9 NIL 16031 NIL) (-26 11488 11822 12315 "ACF-" 12320 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 11060 11255 11281 "ABELSG" 11373 T ABELSG (NIL) -9 NIL 11438 NIL) (-24 10927 10952 11018 "ABELSG-" 11023 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10270 10557 10583 "ABELMON" 10753 T ABELMON (NIL) -9 NIL 10865 NIL) (-22 9934 10018 10156 "ABELMON-" 10161 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9282 9654 9680 "ABELGRP" 9752 T ABELGRP (NIL) -9 NIL 9827 NIL) (-20 8745 8874 9090 "ABELGRP-" 9095 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4334 8084 8123 "A1AGG" 8128 NIL A1AGG (NIL T) -9 NIL 8168 NIL) (-18 30 1252 2814 "A1AGG-" 2819 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
+((-3 3228626 3228631 3228636 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3228611 3228616 3228621 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3228596 3228601 3228606 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3228581 3228586 3228591 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1305 3227724 3228456 3228533 "ZMOD" 3228538 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1304 3226834 3226998 3227207 "ZLINDEP" 3227556 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1303 3216134 3217902 3219874 "ZDSOLVE" 3224964 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1302 3215380 3215521 3215710 "YSTREAM" 3215980 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1301 3213154 3214681 3214885 "XRPOLY" 3215223 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1300 3209707 3211025 3211600 "XPR" 3212626 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1299 3207428 3209038 3209242 "XPOLY" 3209538 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1298 3205081 3206449 3206504 "XPOLYC" 3206792 NIL XPOLYC (NIL T T) -9 NIL 3206905 NIL) (-1297 3201457 3203598 3203986 "XPBWPOLY" 3204739 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1296 3197152 3199447 3199489 "XF" 3200110 NIL XF (NIL T) -9 NIL 3200510 NIL) (-1295 3196773 3196861 3197030 "XF-" 3197035 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1294 3191969 3193258 3193313 "XFALG" 3195485 NIL XFALG (NIL T T) -9 NIL 3196274 NIL) (-1293 3191102 3191206 3191411 "XEXPPKG" 3191861 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1292 3189211 3190952 3191048 "XDPOLY" 3191053 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1291 3188018 3188618 3188661 "XALG" 3188666 NIL XALG (NIL T) -9 NIL 3188777 NIL) (-1290 3181460 3185995 3186489 "WUTSET" 3187610 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1289 3179716 3180512 3180835 "WP" 3181271 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1288 3179318 3179538 3179608 "WHILEAST" 3179668 T WHILEAST (NIL) -8 NIL NIL NIL) (-1287 3178790 3179035 3179129 "WHEREAST" 3179246 T WHEREAST (NIL) -8 NIL NIL NIL) (-1286 3177676 3177874 3178169 "WFFINTBS" 3178587 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1285 3175580 3176007 3176469 "WEIER" 3177248 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1284 3174626 3175076 3175118 "VSPACE" 3175254 NIL VSPACE (NIL T) -9 NIL 3175328 NIL) (-1283 3174464 3174491 3174582 "VSPACE-" 3174587 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1282 3174273 3174315 3174383 "VOID" 3174418 T VOID (NIL) -8 NIL NIL NIL) (-1281 3172409 3172768 3173174 "VIEW" 3173889 T VIEW (NIL) -7 NIL NIL NIL) (-1280 3168833 3169472 3170209 "VIEWDEF" 3171694 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1279 3158137 3160381 3162554 "VIEW3D" 3166682 T VIEW3D (NIL) -8 NIL NIL NIL) (-1278 3150388 3152048 3153627 "VIEW2D" 3156580 T VIEW2D (NIL) -8 NIL NIL NIL) (-1277 3145741 3150158 3150250 "VECTOR" 3150331 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1276 3144318 3144577 3144895 "VECTOR2" 3145471 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1275 3137792 3142099 3142142 "VECTCAT" 3143137 NIL VECTCAT (NIL T) -9 NIL 3143724 NIL) (-1274 3136806 3137060 3137450 "VECTCAT-" 3137455 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1273 3136260 3136457 3136577 "VARIABLE" 3136721 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1272 3136193 3136198 3136228 "UTYPE" 3136233 T UTYPE (NIL) -9 NIL NIL NIL) (-1271 3135023 3135177 3135439 "UTSODETL" 3136019 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1270 3132463 3132923 3133447 "UTSODE" 3134564 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1269 3124300 3130089 3130578 "UTS" 3132032 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1268 3115174 3120541 3120584 "UTSCAT" 3121696 NIL UTSCAT (NIL T) -9 NIL 3122454 NIL) (-1267 3112521 3113244 3114233 "UTSCAT-" 3114238 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1266 3112148 3112191 3112324 "UTS2" 3112472 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1265 3106374 3108986 3109029 "URAGG" 3111099 NIL URAGG (NIL T) -9 NIL 3111822 NIL) (-1264 3103313 3104176 3105299 "URAGG-" 3105304 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1263 3099022 3101948 3102413 "UPXSSING" 3102977 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1262 3091088 3098269 3098542 "UPXS" 3098807 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1261 3084161 3090992 3091064 "UPXSCONS" 3091069 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1260 3073906 3080699 3080761 "UPXSCCA" 3081335 NIL UPXSCCA (NIL T T) -9 NIL 3081568 NIL) (-1259 3073544 3073629 3073803 "UPXSCCA-" 3073808 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1258 3063141 3069707 3069750 "UPXSCAT" 3070398 NIL UPXSCAT (NIL T) -9 NIL 3071007 NIL) (-1257 3062571 3062650 3062829 "UPXS2" 3063056 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1256 3061225 3061478 3061829 "UPSQFREE" 3062314 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1255 3054646 3057703 3057758 "UPSCAT" 3058919 NIL UPSCAT (NIL T T) -9 NIL 3059693 NIL) (-1254 3053850 3054057 3054384 "UPSCAT-" 3054389 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1253 3039505 3047273 3047316 "UPOLYC" 3049417 NIL UPOLYC (NIL T) -9 NIL 3050638 NIL) (-1252 3030833 3033259 3036406 "UPOLYC-" 3036411 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1251 3030460 3030503 3030636 "UPOLYC2" 3030784 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1250 3022271 3030143 3030272 "UP" 3030379 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1249 3021610 3021717 3021881 "UPMP" 3022160 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1248 3021163 3021244 3021383 "UPDIVP" 3021523 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1247 3019731 3019980 3020296 "UPDECOMP" 3020912 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1246 3018962 3019074 3019260 "UPCDEN" 3019615 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1245 3018481 3018550 3018699 "UP2" 3018887 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1244 3016948 3017685 3017962 "UNISEG" 3018239 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1243 3016163 3016290 3016495 "UNISEG2" 3016791 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1242 3015223 3015403 3015629 "UNIFACT" 3015979 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1241 2999155 3014400 3014651 "ULS" 3015030 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1240 2987153 2999059 2999131 "ULSCONS" 2999136 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1239 2969170 2981155 2981217 "ULSCCAT" 2981855 NIL ULSCCAT (NIL T T) -9 NIL 2982144 NIL) (-1238 2968220 2968465 2968853 "ULSCCAT-" 2968858 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1237 2957594 2964074 2964117 "ULSCAT" 2964980 NIL ULSCAT (NIL T) -9 NIL 2965711 NIL) (-1236 2957024 2957103 2957282 "ULS2" 2957509 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1235 2956151 2956661 2956768 "UINT8" 2956879 T UINT8 (NIL) -8 NIL NIL 2956964) (-1234 2955277 2955787 2955894 "UINT64" 2956005 T UINT64 (NIL) -8 NIL NIL 2956090) (-1233 2954403 2954913 2955020 "UINT32" 2955131 T UINT32 (NIL) -8 NIL NIL 2955216) (-1232 2953529 2954039 2954146 "UINT16" 2954257 T UINT16 (NIL) -8 NIL NIL 2954342) (-1231 2951832 2952789 2952819 "UFD" 2953031 T UFD (NIL) -9 NIL 2953145 NIL) (-1230 2951626 2951672 2951767 "UFD-" 2951772 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1229 2950708 2950891 2951107 "UDVO" 2951432 T UDVO (NIL) -7 NIL NIL NIL) (-1228 2948524 2948933 2949404 "UDPO" 2950272 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1227 2948457 2948462 2948492 "TYPE" 2948497 T TYPE (NIL) -9 NIL NIL NIL) (-1226 2948217 2948412 2948443 "TYPEAST" 2948448 T TYPEAST (NIL) -8 NIL NIL NIL) (-1225 2947188 2947390 2947630 "TWOFACT" 2948011 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1224 2946211 2946597 2946832 "TUPLE" 2946988 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1223 2943902 2944421 2944960 "TUBETOOL" 2945694 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1222 2942751 2942956 2943197 "TUBE" 2943695 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1221 2937480 2941723 2942006 "TS" 2942503 NIL TS (NIL T) -8 NIL NIL NIL) (-1220 2926120 2930239 2930336 "TSETCAT" 2935605 NIL TSETCAT (NIL T T T T) -9 NIL 2937136 NIL) (-1219 2920852 2922452 2924343 "TSETCAT-" 2924348 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1218 2915491 2916338 2917267 "TRMANIP" 2919988 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1217 2914932 2914995 2915158 "TRIMAT" 2915423 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1216 2912798 2913035 2913392 "TRIGMNIP" 2914681 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1215 2912318 2912431 2912461 "TRIGCAT" 2912674 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1214 2911987 2912066 2912207 "TRIGCAT-" 2912212 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1213 2908832 2910845 2911126 "TREE" 2911741 NIL TREE (NIL T) -8 NIL NIL NIL) (-1212 2908106 2908634 2908664 "TRANFUN" 2908699 T TRANFUN (NIL) -9 NIL 2908765 NIL) (-1211 2907385 2907576 2907856 "TRANFUN-" 2907861 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1210 2907189 2907221 2907282 "TOPSP" 2907346 T TOPSP (NIL) -7 NIL NIL NIL) (-1209 2906537 2906652 2906806 "TOOLSIGN" 2907070 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1208 2905171 2905714 2905953 "TEXTFILE" 2906320 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1207 2903083 2903624 2904053 "TEX" 2904764 T TEX (NIL) -8 NIL NIL NIL) (-1206 2902864 2902895 2902967 "TEX1" 2903046 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1205 2902512 2902575 2902665 "TEMUTL" 2902796 T TEMUTL (NIL) -7 NIL NIL NIL) (-1204 2900666 2900946 2901271 "TBCMPPK" 2902235 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1203 2892443 2898826 2898882 "TBAGG" 2899282 NIL TBAGG (NIL T T) -9 NIL 2899493 NIL) (-1202 2887513 2889001 2890755 "TBAGG-" 2890760 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1201 2886897 2887004 2887149 "TANEXP" 2887402 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1200 2886408 2886672 2886762 "TALGOP" 2886842 NIL TALGOP (NIL T) -8 NIL NIL NIL) (-1199 2879798 2886265 2886358 "TABLE" 2886363 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1198 2879210 2879309 2879447 "TABLEAU" 2879695 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1197 2873818 2875038 2876286 "TABLBUMP" 2877996 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1196 2873040 2873187 2873368 "SYSTEM" 2873659 T SYSTEM (NIL) -8 NIL NIL NIL) (-1195 2869499 2870198 2870981 "SYSSOLP" 2872291 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1194 2869297 2869454 2869485 "SYSPTR" 2869490 T SYSPTR (NIL) -8 NIL NIL NIL) (-1193 2868341 2868846 2868965 "SYSNNI" 2869151 NIL SYSNNI (NIL NIL) -8 NIL NIL 2869236) (-1192 2867648 2868107 2868186 "SYSINT" 2868246 NIL SYSINT (NIL NIL) -8 NIL NIL 2868291) (-1191 2863980 2864926 2865636 "SYNTAX" 2866960 T SYNTAX (NIL) -8 NIL NIL NIL) (-1190 2861138 2861740 2862372 "SYMTAB" 2863370 T SYMTAB (NIL) -8 NIL NIL NIL) (-1189 2856387 2857289 2858272 "SYMS" 2860177 T SYMS (NIL) -8 NIL NIL NIL) (-1188 2853622 2855845 2856075 "SYMPOLY" 2856192 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1187 2853139 2853214 2853337 "SYMFUNC" 2853534 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1186 2849159 2850451 2851264 "SYMBOL" 2852348 T SYMBOL (NIL) -8 NIL NIL NIL) (-1185 2842698 2844387 2846107 "SWITCH" 2847461 T SWITCH (NIL) -8 NIL NIL NIL) (-1184 2835932 2841519 2841822 "SUTS" 2842453 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1183 2827998 2835179 2835452 "SUPXS" 2835717 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1182 2819757 2827616 2827742 "SUP" 2827907 NIL SUP (NIL T) -8 NIL NIL NIL) (-1181 2818916 2819043 2819260 "SUPFRACF" 2819625 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1180 2818537 2818596 2818709 "SUP2" 2818851 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1179 2816985 2817259 2817615 "SUMRF" 2818236 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1178 2816320 2816386 2816578 "SUMFS" 2816906 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1177 2800287 2815497 2815748 "SULS" 2816127 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1176 2799889 2800109 2800179 "SUCHTAST" 2800239 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1175 2799184 2799414 2799554 "SUCH" 2799797 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1174 2793050 2794090 2795049 "SUBSPACE" 2798272 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1173 2792480 2792570 2792734 "SUBRESP" 2792938 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1172 2785846 2787145 2788456 "STTF" 2791216 NIL STTF (NIL T) -7 NIL NIL NIL) (-1171 2780019 2781139 2782286 "STTFNC" 2784746 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1170 2771330 2773201 2774995 "STTAYLOR" 2778260 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1169 2764460 2771194 2771277 "STRTBL" 2771282 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1168 2759824 2764415 2764446 "STRING" 2764451 T STRING (NIL) -8 NIL NIL NIL) (-1167 2754685 2759197 2759227 "STRICAT" 2759286 T STRICAT (NIL) -9 NIL 2759348 NIL) (-1166 2747438 2752304 2752915 "STREAM" 2754109 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1165 2746948 2747025 2747169 "STREAM3" 2747355 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1164 2745930 2746113 2746348 "STREAM2" 2746761 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1163 2745618 2745670 2745763 "STREAM1" 2745872 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1162 2744634 2744815 2745046 "STINPROD" 2745434 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1161 2744186 2744396 2744426 "STEP" 2744506 T STEP (NIL) -9 NIL 2744584 NIL) (-1160 2743373 2743675 2743823 "STEPAST" 2744060 T STEPAST (NIL) -8 NIL NIL NIL) (-1159 2736805 2743272 2743349 "STBL" 2743354 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1158 2731931 2736026 2736069 "STAGG" 2736222 NIL STAGG (NIL T) -9 NIL 2736311 NIL) (-1157 2729633 2730235 2731107 "STAGG-" 2731112 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1156 2727780 2729403 2729495 "STACK" 2729576 NIL STACK (NIL T) -8 NIL NIL NIL) (-1155 2720475 2725921 2726377 "SREGSET" 2727410 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1154 2712900 2714269 2715782 "SRDCMPK" 2719081 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1153 2705817 2710340 2710370 "SRAGG" 2711673 T SRAGG (NIL) -9 NIL 2712281 NIL) (-1152 2704834 2705089 2705468 "SRAGG-" 2705473 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1151 2699294 2703781 2704202 "SQMATRIX" 2704460 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1150 2692979 2696012 2696739 "SPLTREE" 2698639 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1149 2688942 2689635 2690281 "SPLNODE" 2692405 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1148 2687989 2688222 2688252 "SPFCAT" 2688696 T SPFCAT (NIL) -9 NIL NIL NIL) (-1147 2686726 2686936 2687200 "SPECOUT" 2687747 T SPECOUT (NIL) -7 NIL NIL NIL) (-1146 2677836 2679708 2679738 "SPADXPT" 2684414 T SPADXPT (NIL) -9 NIL 2686578 NIL) (-1145 2677597 2677637 2677706 "SPADPRSR" 2677789 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1144 2675646 2677552 2677583 "SPADAST" 2677588 T SPADAST (NIL) -8 NIL NIL NIL) (-1143 2667591 2669364 2669407 "SPACEC" 2673780 NIL SPACEC (NIL T) -9 NIL 2675596 NIL) (-1142 2665721 2667523 2667572 "SPACE3" 2667577 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1141 2664473 2664644 2664935 "SORTPAK" 2665526 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1140 2662565 2662868 2663280 "SOLVETRA" 2664137 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1139 2661615 2661837 2662098 "SOLVESER" 2662338 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1138 2656919 2657807 2658802 "SOLVERAD" 2660667 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1137 2652734 2653343 2654072 "SOLVEFOR" 2656286 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1136 2647004 2652083 2652180 "SNTSCAT" 2652185 NIL SNTSCAT (NIL T T T T) -9 NIL 2652255 NIL) (-1135 2641110 2645327 2645718 "SMTS" 2646694 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1134 2635795 2640998 2641075 "SMP" 2641080 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1133 2633954 2634255 2634653 "SMITH" 2635492 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1132 2626667 2630863 2630966 "SMATCAT" 2632317 NIL SMATCAT (NIL NIL T T T) -9 NIL 2632867 NIL) (-1131 2623607 2624430 2625608 "SMATCAT-" 2625613 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1130 2621273 2622843 2622886 "SKAGG" 2623147 NIL SKAGG (NIL T) -9 NIL 2623282 NIL) (-1129 2617599 2620746 2620930 "SINT" 2621082 T SINT (NIL) -8 NIL NIL 2621244) (-1128 2617371 2617409 2617475 "SIMPAN" 2617555 T SIMPAN (NIL) -7 NIL NIL NIL) (-1127 2616650 2616906 2617046 "SIG" 2617253 T SIG (NIL) -8 NIL NIL NIL) (-1126 2615488 2615709 2615984 "SIGNRF" 2616409 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1125 2614321 2614472 2614756 "SIGNEF" 2615317 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1124 2613627 2613904 2614028 "SIGAST" 2614219 T SIGAST (NIL) -8 NIL NIL NIL) (-1123 2611317 2611771 2612277 "SHP" 2613168 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1122 2605169 2611218 2611294 "SHDP" 2611299 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1121 2604742 2604934 2604964 "SGROUP" 2605057 T SGROUP (NIL) -9 NIL 2605119 NIL) (-1120 2604600 2604626 2604699 "SGROUP-" 2604704 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1119 2601435 2602133 2602856 "SGCF" 2603899 T SGCF (NIL) -7 NIL NIL NIL) (-1118 2595803 2600882 2600979 "SFRTCAT" 2600984 NIL SFRTCAT (NIL T T T T) -9 NIL 2601023 NIL) (-1117 2589224 2590242 2591378 "SFRGCD" 2594786 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1116 2582350 2583423 2584609 "SFQCMPK" 2588157 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1115 2581970 2582059 2582170 "SFORT" 2582291 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1114 2581088 2581810 2581931 "SEXOF" 2581936 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1113 2580195 2580969 2581037 "SEX" 2581042 T SEX (NIL) -8 NIL NIL NIL) (-1112 2575708 2576423 2576518 "SEXCAT" 2579455 NIL SEXCAT (NIL T T T T T) -9 NIL 2580033 NIL) (-1111 2572861 2575642 2575690 "SET" 2575695 NIL SET (NIL T) -8 NIL NIL NIL) (-1110 2571085 2571574 2571879 "SETMN" 2572602 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1109 2570581 2570733 2570763 "SETCAT" 2570939 T SETCAT (NIL) -9 NIL 2571049 NIL) (-1108 2570273 2570351 2570481 "SETCAT-" 2570486 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1107 2566634 2568734 2568777 "SETAGG" 2569647 NIL SETAGG (NIL T) -9 NIL 2569987 NIL) (-1106 2566092 2566208 2566445 "SETAGG-" 2566450 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1105 2565535 2565788 2565889 "SEQAST" 2566013 T SEQAST (NIL) -8 NIL NIL NIL) (-1104 2564734 2565028 2565089 "SEGXCAT" 2565375 NIL SEGXCAT (NIL T T) -9 NIL 2565495 NIL) (-1103 2563740 2564400 2564582 "SEG" 2564587 NIL SEG (NIL T) -8 NIL NIL NIL) (-1102 2562719 2562933 2562976 "SEGCAT" 2563498 NIL SEGCAT (NIL T) -9 NIL 2563719 NIL) (-1101 2561651 2562082 2562290 "SEGBIND" 2562546 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1100 2561272 2561331 2561444 "SEGBIND2" 2561586 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1099 2560845 2561073 2561150 "SEGAST" 2561217 T SEGAST (NIL) -8 NIL NIL NIL) (-1098 2560064 2560190 2560394 "SEG2" 2560689 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1097 2559474 2559999 2560046 "SDVAR" 2560051 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1096 2552001 2559244 2559374 "SDPOL" 2559379 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1095 2550594 2550860 2551179 "SCPKG" 2551716 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1094 2549758 2549930 2550122 "SCOPE" 2550424 T SCOPE (NIL) -8 NIL NIL NIL) (-1093 2548978 2549112 2549291 "SCACHE" 2549613 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1092 2548624 2548810 2548840 "SASTCAT" 2548845 T SASTCAT (NIL) -9 NIL 2548858 NIL) (-1091 2548111 2548459 2548535 "SAOS" 2548570 T SAOS (NIL) -8 NIL NIL NIL) (-1090 2547676 2547711 2547884 "SAERFFC" 2548070 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1089 2541615 2547573 2547653 "SAE" 2547658 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1088 2541208 2541243 2541402 "SAEFACT" 2541574 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1087 2539529 2539843 2540244 "RURPK" 2540874 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1086 2538166 2538472 2538777 "RULESET" 2539363 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1085 2535389 2535919 2536377 "RULE" 2537847 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1084 2535001 2535183 2535266 "RULECOLD" 2535341 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1083 2534791 2534819 2534890 "RTVALUE" 2534952 T RTVALUE (NIL) -8 NIL NIL NIL) (-1082 2534262 2534508 2534602 "RSTRCAST" 2534719 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1081 2529110 2529905 2530825 "RSETGCD" 2533461 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1080 2518340 2523419 2523516 "RSETCAT" 2527635 NIL RSETCAT (NIL T T T T) -9 NIL 2528732 NIL) (-1079 2516267 2516806 2517630 "RSETCAT-" 2517635 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1078 2508653 2510029 2511549 "RSDCMPK" 2514866 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1077 2506632 2507099 2507173 "RRCC" 2508259 NIL RRCC (NIL T T) -9 NIL 2508603 NIL) (-1076 2505983 2506157 2506436 "RRCC-" 2506441 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1075 2505426 2505679 2505780 "RPTAST" 2505904 T RPTAST (NIL) -8 NIL NIL NIL) (-1074 2479272 2488631 2488698 "RPOLCAT" 2499364 NIL RPOLCAT (NIL T T T) -9 NIL 2502524 NIL) (-1073 2470770 2473110 2476232 "RPOLCAT-" 2476237 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1072 2461701 2468981 2469463 "ROUTINE" 2470310 T ROUTINE (NIL) -8 NIL NIL NIL) (-1071 2458499 2461327 2461467 "ROMAN" 2461583 T ROMAN (NIL) -8 NIL NIL NIL) (-1070 2456743 2457359 2457619 "ROIRC" 2458304 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1069 2452975 2455259 2455289 "RNS" 2455593 T RNS (NIL) -9 NIL 2455867 NIL) (-1068 2451484 2451867 2452401 "RNS-" 2452476 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1067 2450887 2451295 2451325 "RNG" 2451330 T RNG (NIL) -9 NIL 2451351 NIL) (-1066 2449890 2450252 2450454 "RNGBIND" 2450738 NIL RNGBIND (NIL T T) -8 NIL NIL NIL) (-1065 2449289 2449677 2449720 "RMODULE" 2449725 NIL RMODULE (NIL T) -9 NIL 2449752 NIL) (-1064 2448125 2448219 2448555 "RMCAT2" 2449190 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1063 2444975 2447471 2447768 "RMATRIX" 2447887 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1062 2437802 2440062 2440177 "RMATCAT" 2443536 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2444518 NIL) (-1061 2437177 2437324 2437631 "RMATCAT-" 2437636 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1060 2436578 2436799 2436842 "RLINSET" 2437036 NIL RLINSET (NIL T) -9 NIL 2437127 NIL) (-1059 2436145 2436220 2436348 "RINTERP" 2436497 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1058 2435203 2435757 2435787 "RING" 2435843 T RING (NIL) -9 NIL 2435935 NIL) (-1057 2434995 2435039 2435136 "RING-" 2435141 NIL RING- (NIL T) -8 NIL NIL NIL) (-1056 2433836 2434073 2434331 "RIDIST" 2434759 T RIDIST (NIL) -7 NIL NIL NIL) (-1055 2425125 2433304 2433510 "RGCHAIN" 2433684 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1054 2424475 2424881 2424922 "RGBCSPC" 2424980 NIL RGBCSPC (NIL T) -9 NIL 2425032 NIL) (-1053 2423633 2424014 2424055 "RGBCMDL" 2424287 NIL RGBCMDL (NIL T) -9 NIL 2424401 NIL) (-1052 2420627 2421241 2421911 "RF" 2422997 NIL RF (NIL T) -7 NIL NIL NIL) (-1051 2420273 2420336 2420439 "RFFACTOR" 2420558 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1050 2419998 2420033 2420130 "RFFACT" 2420232 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1049 2418115 2418479 2418861 "RFDIST" 2419638 T RFDIST (NIL) -7 NIL NIL NIL) (-1048 2417568 2417660 2417823 "RETSOL" 2418017 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1047 2417204 2417284 2417327 "RETRACT" 2417460 NIL RETRACT (NIL T) -9 NIL 2417547 NIL) (-1046 2417053 2417078 2417165 "RETRACT-" 2417170 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1045 2416655 2416875 2416945 "RETAST" 2417005 T RETAST (NIL) -8 NIL NIL NIL) (-1044 2409393 2416308 2416435 "RESULT" 2416550 T RESULT (NIL) -8 NIL NIL NIL) (-1043 2407984 2408662 2408861 "RESRING" 2409296 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1042 2407620 2407669 2407767 "RESLATC" 2407921 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1041 2407325 2407360 2407467 "REPSQ" 2407579 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1040 2404747 2405327 2405929 "REP" 2406745 T REP (NIL) -7 NIL NIL NIL) (-1039 2404444 2404479 2404590 "REPDB" 2404706 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1038 2398344 2399733 2400956 "REP2" 2403256 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1037 2394721 2395402 2396210 "REP1" 2397571 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1036 2387417 2392862 2393318 "REGSET" 2394351 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1035 2386182 2386565 2386815 "REF" 2387202 NIL REF (NIL T) -8 NIL NIL NIL) (-1034 2385559 2385662 2385829 "REDORDER" 2386066 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1033 2381527 2384772 2384999 "RECLOS" 2385387 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1032 2380579 2380760 2380975 "REALSOLV" 2381334 T REALSOLV (NIL) -7 NIL NIL NIL) (-1031 2380425 2380466 2380496 "REAL" 2380501 T REAL (NIL) -9 NIL 2380536 NIL) (-1030 2376908 2377710 2378594 "REAL0Q" 2379590 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1029 2372509 2373497 2374558 "REAL0" 2375889 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1028 2371980 2372226 2372320 "RDUCEAST" 2372437 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1027 2371385 2371457 2371664 "RDIV" 2371902 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1026 2370453 2370627 2370840 "RDIST" 2371207 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1025 2369050 2369337 2369709 "RDETRS" 2370161 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1024 2366862 2367316 2367854 "RDETR" 2368592 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1023 2365487 2365765 2366162 "RDEEFS" 2366578 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1022 2363996 2364302 2364727 "RDEEF" 2365175 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1021 2358057 2360977 2361007 "RCFIELD" 2362302 T RCFIELD (NIL) -9 NIL 2363033 NIL) (-1020 2356121 2356625 2357321 "RCFIELD-" 2357396 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1019 2352390 2354222 2354265 "RCAGG" 2355349 NIL RCAGG (NIL T) -9 NIL 2355814 NIL) (-1018 2352018 2352112 2352275 "RCAGG-" 2352280 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1017 2351353 2351465 2351630 "RATRET" 2351902 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1016 2350906 2350973 2351094 "RATFACT" 2351281 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1015 2350214 2350334 2350486 "RANDSRC" 2350776 T RANDSRC (NIL) -7 NIL NIL NIL) (-1014 2349948 2349992 2350065 "RADUTIL" 2350163 T RADUTIL (NIL) -7 NIL NIL NIL) (-1013 2343062 2348779 2349090 "RADIX" 2349671 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-1012 2334681 2342904 2343034 "RADFF" 2343039 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-1011 2334328 2334403 2334433 "RADCAT" 2334593 T RADCAT (NIL) -9 NIL NIL NIL) (-1010 2334110 2334158 2334258 "RADCAT-" 2334263 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-1009 2332208 2333880 2333972 "QUEUE" 2334053 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-1008 2328745 2332141 2332189 "QUAT" 2332194 NIL QUAT (NIL T) -8 NIL NIL NIL) (-1007 2328376 2328419 2328550 "QUATCT2" 2328696 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-1006 2321825 2325170 2325212 "QUATCAT" 2326003 NIL QUATCAT (NIL T) -9 NIL 2326769 NIL) (-1005 2317964 2319001 2320391 "QUATCAT-" 2320487 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-1004 2315429 2317040 2317083 "QUAGG" 2317464 NIL QUAGG (NIL T) -9 NIL 2317639 NIL) (-1003 2315031 2315251 2315321 "QQUTAST" 2315381 T QQUTAST (NIL) -8 NIL NIL NIL) (-1002 2313924 2314424 2314598 "QFORM" 2314903 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-1001 2304917 2310156 2310198 "QFCAT" 2310866 NIL QFCAT (NIL T) -9 NIL 2311867 NIL) (-1000 2300484 2301685 2303279 "QFCAT-" 2303375 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-999 2300118 2300161 2300290 "QFCAT2" 2300435 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-998 2299578 2299688 2299818 "QEQUAT" 2300008 T QEQUAT (NIL) -8 NIL NIL NIL) (-997 2292724 2293797 2294981 "QCMPACK" 2298511 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-996 2290273 2290721 2291149 "QALGSET" 2292379 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-995 2289518 2289692 2289924 "QALGSET2" 2290093 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-994 2288208 2288432 2288749 "PWFFINTB" 2289291 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-993 2286390 2286558 2286912 "PUSHVAR" 2288022 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-992 2282308 2283362 2283403 "PTRANFN" 2285287 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-991 2280710 2281001 2281323 "PTPACK" 2282019 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-990 2280342 2280399 2280508 "PTFUNC2" 2280647 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-989 2274819 2279214 2279255 "PTCAT" 2279551 NIL PTCAT (NIL T) -9 NIL 2279704 NIL) (-988 2274477 2274512 2274636 "PSQFR" 2274778 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-987 2273072 2273370 2273704 "PSEUDLIN" 2274175 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-986 2259835 2262206 2264530 "PSETPK" 2270832 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-985 2252853 2255593 2255689 "PSETCAT" 2258710 NIL PSETCAT (NIL T T T T) -9 NIL 2259524 NIL) (-984 2250689 2251323 2252144 "PSETCAT-" 2252149 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-983 2250038 2250203 2250231 "PSCURVE" 2250499 T PSCURVE (NIL) -9 NIL 2250666 NIL) (-982 2246036 2247552 2247617 "PSCAT" 2248461 NIL PSCAT (NIL T T T) -9 NIL 2248701 NIL) (-981 2245099 2245315 2245715 "PSCAT-" 2245720 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-980 2243835 2244489 2244689 "PRTITION" 2244919 T PRTITION (NIL) -8 NIL NIL NIL) (-979 2243310 2243556 2243648 "PRTDAST" 2243763 T PRTDAST (NIL) -8 NIL NIL NIL) (-978 2232400 2234614 2236802 "PRS" 2241172 NIL PRS (NIL T T) -7 NIL NIL NIL) (-977 2230211 2231750 2231790 "PRQAGG" 2231973 NIL PRQAGG (NIL T) -9 NIL 2232075 NIL) (-976 2229547 2229852 2229880 "PROPLOG" 2230019 T PROPLOG (NIL) -9 NIL 2230134 NIL) (-975 2229151 2229208 2229331 "PROPFUN2" 2229470 NIL PROPFUN2 (NIL T T) -8 NIL NIL NIL) (-974 2228466 2228587 2228759 "PROPFUN1" 2229012 NIL PROPFUN1 (NIL T) -8 NIL NIL NIL) (-973 2226647 2227213 2227510 "PROPFRML" 2228202 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-972 2226116 2226223 2226351 "PROPERTY" 2226539 T PROPERTY (NIL) -8 NIL NIL NIL) (-971 2220174 2224282 2225102 "PRODUCT" 2225342 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-970 2217452 2219632 2219866 "PR" 2219985 NIL PR (NIL T T) -8 NIL NIL NIL) (-969 2217248 2217280 2217339 "PRINT" 2217413 T PRINT (NIL) -7 NIL NIL NIL) (-968 2216588 2216705 2216857 "PRIMES" 2217128 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-967 2214653 2215054 2215520 "PRIMELT" 2216167 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-966 2214382 2214431 2214459 "PRIMCAT" 2214583 T PRIMCAT (NIL) -9 NIL NIL NIL) (-965 2210497 2214320 2214365 "PRIMARR" 2214370 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-964 2209504 2209682 2209910 "PRIMARR2" 2210315 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-963 2209147 2209203 2209314 "PREASSOC" 2209442 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-962 2208622 2208755 2208783 "PPCURVE" 2208988 T PPCURVE (NIL) -9 NIL 2209124 NIL) (-961 2208217 2208417 2208500 "PORTNUM" 2208559 T PORTNUM (NIL) -8 NIL NIL NIL) (-960 2205576 2205975 2206567 "POLYROOT" 2207798 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-959 2199758 2205180 2205340 "POLY" 2205449 NIL POLY (NIL T) -8 NIL NIL NIL) (-958 2199141 2199199 2199433 "POLYLIFT" 2199694 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-957 2195416 2195865 2196494 "POLYCATQ" 2198686 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-956 2182128 2187256 2187321 "POLYCAT" 2190835 NIL POLYCAT (NIL T T T) -9 NIL 2192713 NIL) (-955 2175577 2177439 2179823 "POLYCAT-" 2179828 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-954 2175164 2175232 2175352 "POLY2UP" 2175503 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-953 2174796 2174853 2174962 "POLY2" 2175101 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-952 2173481 2173720 2173996 "POLUTIL" 2174570 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-951 2171836 2172113 2172444 "POLTOPOL" 2173203 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-950 2167301 2171772 2171818 "POINT" 2171823 NIL POINT (NIL T) -8 NIL NIL NIL) (-949 2165488 2165845 2166220 "PNTHEORY" 2166946 T PNTHEORY (NIL) -7 NIL NIL NIL) (-948 2163946 2164243 2164642 "PMTOOLS" 2165186 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-947 2163539 2163617 2163734 "PMSYM" 2163862 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-946 2163047 2163116 2163291 "PMQFCAT" 2163464 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-945 2162402 2162512 2162668 "PMPRED" 2162924 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-944 2161795 2161881 2162043 "PMPREDFS" 2162303 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-943 2160459 2160667 2161045 "PMPLCAT" 2161557 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-942 2159991 2160070 2160222 "PMLSAGG" 2160374 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-941 2159464 2159540 2159722 "PMKERNEL" 2159909 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-940 2159081 2159156 2159269 "PMINS" 2159383 NIL PMINS (NIL T) -7 NIL NIL NIL) (-939 2158523 2158592 2158801 "PMFS" 2159006 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-938 2157751 2157869 2158074 "PMDOWN" 2158400 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-937 2156918 2157076 2157257 "PMASS" 2157590 T PMASS (NIL) -7 NIL NIL NIL) (-936 2156191 2156301 2156464 "PMASSFS" 2156805 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-935 2155846 2155914 2156008 "PLOTTOOL" 2156117 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-934 2150453 2151657 2152805 "PLOT" 2154718 T PLOT (NIL) -8 NIL NIL NIL) (-933 2146257 2147301 2148222 "PLOT3D" 2149552 T PLOT3D (NIL) -8 NIL NIL NIL) (-932 2145169 2145346 2145581 "PLOT1" 2146061 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-931 2120558 2125235 2130086 "PLEQN" 2140435 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-930 2119876 2119998 2120178 "PINTERP" 2120423 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-929 2119569 2119616 2119719 "PINTERPA" 2119823 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-928 2118790 2119338 2119425 "PI" 2119465 T PI (NIL) -8 NIL NIL 2119532) (-927 2117087 2118062 2118090 "PID" 2118272 T PID (NIL) -9 NIL 2118406 NIL) (-926 2116838 2116875 2116950 "PICOERCE" 2117044 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-925 2116158 2116297 2116473 "PGROEB" 2116694 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-924 2111745 2112559 2113464 "PGE" 2115273 T PGE (NIL) -7 NIL NIL NIL) (-923 2109868 2110115 2110481 "PGCD" 2111462 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-922 2109206 2109309 2109470 "PFRPAC" 2109752 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-921 2105846 2107754 2108107 "PFR" 2108885 NIL PFR (NIL T) -8 NIL NIL NIL) (-920 2104235 2104479 2104804 "PFOTOOLS" 2105593 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-919 2102768 2103007 2103358 "PFOQ" 2103992 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-918 2101269 2101481 2101837 "PFO" 2102552 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-917 2097822 2101158 2101227 "PF" 2101232 NIL PF (NIL NIL) -8 NIL NIL NIL) (-916 2095156 2096427 2096455 "PFECAT" 2097040 T PFECAT (NIL) -9 NIL 2097424 NIL) (-915 2094601 2094755 2094969 "PFECAT-" 2094974 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-914 2093204 2093456 2093757 "PFBRU" 2094350 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-913 2091070 2091422 2091854 "PFBR" 2092855 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-912 2086952 2088446 2089122 "PERM" 2090427 NIL PERM (NIL T) -8 NIL NIL NIL) (-911 2082186 2083159 2084029 "PERMGRP" 2086115 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-910 2080292 2081249 2081290 "PERMCAT" 2081736 NIL PERMCAT (NIL T) -9 NIL 2082041 NIL) (-909 2079945 2079986 2080110 "PERMAN" 2080245 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-908 2077433 2079610 2079732 "PENDTREE" 2079856 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-907 2075457 2076225 2076266 "PDRING" 2076923 NIL PDRING (NIL T) -9 NIL 2077209 NIL) (-906 2074560 2074778 2075140 "PDRING-" 2075145 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-905 2071775 2072553 2073221 "PDEPROB" 2073912 T PDEPROB (NIL) -8 NIL NIL NIL) (-904 2069320 2069824 2070379 "PDEPACK" 2071240 T PDEPACK (NIL) -7 NIL NIL NIL) (-903 2068232 2068422 2068673 "PDECOMP" 2069119 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-902 2065811 2066654 2066682 "PDECAT" 2067469 T PDECAT (NIL) -9 NIL 2068182 NIL) (-901 2065562 2065595 2065685 "PCOMP" 2065772 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-900 2063740 2064363 2064660 "PBWLB" 2065291 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-899 2056213 2057813 2059151 "PATTERN" 2062423 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-898 2055845 2055902 2056011 "PATTERN2" 2056150 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-897 2053602 2053990 2054447 "PATTERN1" 2055434 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-896 2050970 2051551 2052032 "PATRES" 2053167 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-895 2050534 2050601 2050733 "PATRES2" 2050897 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-894 2048417 2048822 2049229 "PATMATCH" 2050201 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-893 2047927 2048136 2048177 "PATMAB" 2048284 NIL PATMAB (NIL T) -9 NIL 2048367 NIL) (-892 2046445 2046781 2047039 "PATLRES" 2047732 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-891 2045991 2046114 2046155 "PATAB" 2046160 NIL PATAB (NIL T) -9 NIL 2046332 NIL) (-890 2043472 2044004 2044577 "PARTPERM" 2045438 T PARTPERM (NIL) -7 NIL NIL NIL) (-889 2043093 2043156 2043258 "PARSURF" 2043403 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-888 2042725 2042782 2042891 "PARSU2" 2043030 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-887 2042489 2042529 2042596 "PARSER" 2042678 T PARSER (NIL) -7 NIL NIL NIL) (-886 2042110 2042173 2042275 "PARSCURV" 2042420 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-885 2041742 2041799 2041908 "PARSC2" 2042047 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-884 2041381 2041439 2041536 "PARPCURV" 2041678 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-883 2041013 2041070 2041179 "PARPC2" 2041318 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-882 2040074 2040386 2040568 "PARAMAST" 2040851 T PARAMAST (NIL) -8 NIL NIL NIL) (-881 2039594 2039680 2039799 "PAN2EXPR" 2039975 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-880 2038371 2038715 2038943 "PALETTE" 2039386 T PALETTE (NIL) -8 NIL NIL NIL) (-879 2036764 2037376 2037736 "PAIR" 2038057 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-878 2030632 2036021 2036216 "PADICRC" 2036618 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-877 2023859 2029976 2030161 "PADICRAT" 2030479 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-876 2022174 2023796 2023841 "PADIC" 2023846 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-875 2019284 2020848 2020888 "PADICCT" 2021469 NIL PADICCT (NIL NIL) -9 NIL 2021751 NIL) (-874 2018241 2018441 2018709 "PADEPAC" 2019071 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-873 2017453 2017586 2017792 "PADE" 2018103 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-872 2015840 2016661 2016941 "OWP" 2017257 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-871 2015333 2015546 2015643 "OVERSET" 2015763 T OVERSET (NIL) -8 NIL NIL NIL) (-870 2014379 2014938 2015110 "OVAR" 2015201 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-869 2013643 2013764 2013925 "OUT" 2014238 T OUT (NIL) -7 NIL NIL NIL) (-868 2002515 2004752 2006952 "OUTFORM" 2011463 T OUTFORM (NIL) -8 NIL NIL NIL) (-867 2001851 2002112 2002239 "OUTBFILE" 2002408 T OUTBFILE (NIL) -8 NIL NIL NIL) (-866 2001158 2001323 2001351 "OUTBCON" 2001669 T OUTBCON (NIL) -9 NIL 2001835 NIL) (-865 2000759 2000871 2001028 "OUTBCON-" 2001033 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-864 2000139 2000488 2000577 "OSI" 2000690 T OSI (NIL) -8 NIL NIL NIL) (-863 1999669 2000007 2000035 "OSGROUP" 2000040 T OSGROUP (NIL) -9 NIL 2000062 NIL) (-862 1998414 1998641 1998926 "ORTHPOL" 1999416 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-861 1995965 1998249 1998370 "OREUP" 1998375 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-860 1993368 1995656 1995783 "ORESUP" 1995907 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-859 1990896 1991396 1991957 "OREPCTO" 1992857 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-858 1984582 1986783 1986824 "OREPCAT" 1989172 NIL OREPCAT (NIL T) -9 NIL 1990276 NIL) (-857 1981729 1982511 1983569 "OREPCAT-" 1983574 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-856 1980880 1981178 1981206 "ORDSET" 1981515 T ORDSET (NIL) -9 NIL 1981679 NIL) (-855 1980311 1980459 1980683 "ORDSET-" 1980688 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-854 1978876 1979667 1979695 "ORDRING" 1979897 T ORDRING (NIL) -9 NIL 1980022 NIL) (-853 1978521 1978615 1978759 "ORDRING-" 1978764 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-852 1977901 1978364 1978392 "ORDMON" 1978397 T ORDMON (NIL) -9 NIL 1978418 NIL) (-851 1977063 1977210 1977405 "ORDFUNS" 1977750 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-850 1976401 1976820 1976848 "ORDFIN" 1976913 T ORDFIN (NIL) -9 NIL 1976987 NIL) (-849 1972960 1974987 1975396 "ORDCOMP" 1976025 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-848 1972226 1972353 1972539 "ORDCOMP2" 1972820 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-847 1968807 1969717 1970531 "OPTPROB" 1971432 T OPTPROB (NIL) -8 NIL NIL NIL) (-846 1965609 1966248 1966952 "OPTPACK" 1968123 T OPTPACK (NIL) -7 NIL NIL NIL) (-845 1963296 1964062 1964090 "OPTCAT" 1964909 T OPTCAT (NIL) -9 NIL 1965559 NIL) (-844 1962680 1962973 1963078 "OPSIG" 1963211 T OPSIG (NIL) -8 NIL NIL NIL) (-843 1962448 1962487 1962553 "OPQUERY" 1962634 T OPQUERY (NIL) -7 NIL NIL NIL) (-842 1959579 1960759 1961263 "OP" 1961977 NIL OP (NIL T) -8 NIL NIL NIL) (-841 1958953 1959179 1959220 "OPERCAT" 1959432 NIL OPERCAT (NIL T) -9 NIL 1959529 NIL) (-840 1958708 1958764 1958881 "OPERCAT-" 1958886 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-839 1955521 1957505 1957874 "ONECOMP" 1958372 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-838 1954826 1954941 1955115 "ONECOMP2" 1955393 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-837 1954245 1954351 1954481 "OMSERVER" 1954716 T OMSERVER (NIL) -7 NIL NIL NIL) (-836 1951107 1953685 1953725 "OMSAGG" 1953786 NIL OMSAGG (NIL T) -9 NIL 1953850 NIL) (-835 1949730 1949993 1950275 "OMPKG" 1950845 T OMPKG (NIL) -7 NIL NIL NIL) (-834 1949160 1949263 1949291 "OM" 1949590 T OM (NIL) -9 NIL NIL NIL) (-833 1947707 1948709 1948878 "OMLO" 1949041 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-832 1946667 1946814 1947034 "OMEXPR" 1947533 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-831 1945958 1946213 1946349 "OMERR" 1946551 T OMERR (NIL) -8 NIL NIL NIL) (-830 1945109 1945379 1945539 "OMERRK" 1945818 T OMERRK (NIL) -8 NIL NIL NIL) (-829 1944560 1944786 1944894 "OMENC" 1945021 T OMENC (NIL) -8 NIL NIL NIL) (-828 1938455 1939640 1940811 "OMDEV" 1943409 T OMDEV (NIL) -8 NIL NIL NIL) (-827 1937524 1937695 1937889 "OMCONN" 1938281 T OMCONN (NIL) -8 NIL NIL NIL) (-826 1936045 1937021 1937049 "OINTDOM" 1937054 T OINTDOM (NIL) -9 NIL 1937075 NIL) (-825 1933383 1934733 1935070 "OFMONOID" 1935740 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-824 1932794 1933320 1933365 "ODVAR" 1933370 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-823 1930217 1932539 1932694 "ODR" 1932699 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-822 1922798 1929993 1930119 "ODPOL" 1930124 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-821 1916620 1922670 1922775 "ODP" 1922780 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-820 1915386 1915601 1915876 "ODETOOLS" 1916394 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-819 1912353 1913011 1913727 "ODESYS" 1914719 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-818 1907235 1908143 1909168 "ODERTRIC" 1911428 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-817 1906661 1906743 1906937 "ODERED" 1907147 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-816 1903549 1904097 1904774 "ODERAT" 1906084 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-815 1900506 1900973 1901570 "ODEPRRIC" 1903078 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-814 1898449 1899045 1899531 "ODEPROB" 1900040 T ODEPROB (NIL) -8 NIL NIL NIL) (-813 1894969 1895454 1896101 "ODEPRIM" 1897928 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-812 1894218 1894320 1894580 "ODEPAL" 1894861 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-811 1890380 1891171 1892035 "ODEPACK" 1893374 T ODEPACK (NIL) -7 NIL NIL NIL) (-810 1889441 1889548 1889770 "ODEINT" 1890269 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-809 1883542 1884967 1886414 "ODEIFTBL" 1888014 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-808 1878940 1879726 1880678 "ODEEF" 1882701 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-807 1878289 1878378 1878601 "ODECONST" 1878845 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-806 1876414 1877075 1877103 "ODECAT" 1877708 T ODECAT (NIL) -9 NIL 1878239 NIL) (-805 1873269 1876119 1876241 "OCT" 1876324 NIL OCT (NIL T) -8 NIL NIL NIL) (-804 1872907 1872950 1873077 "OCTCT2" 1873220 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-803 1867556 1869991 1870031 "OC" 1871128 NIL OC (NIL T) -9 NIL 1871986 NIL) (-802 1864783 1865531 1866521 "OC-" 1866615 NIL OC- (NIL T T) -8 NIL NIL NIL) (-801 1864135 1864603 1864631 "OCAMON" 1864636 T OCAMON (NIL) -9 NIL 1864657 NIL) (-800 1863666 1864007 1864035 "OASGP" 1864040 T OASGP (NIL) -9 NIL 1864060 NIL) (-799 1862927 1863416 1863444 "OAMONS" 1863484 T OAMONS (NIL) -9 NIL 1863527 NIL) (-798 1862341 1862774 1862802 "OAMON" 1862807 T OAMON (NIL) -9 NIL 1862827 NIL) (-797 1861599 1862117 1862145 "OAGROUP" 1862150 T OAGROUP (NIL) -9 NIL 1862170 NIL) (-796 1861289 1861339 1861427 "NUMTUBE" 1861543 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-795 1854862 1856380 1857916 "NUMQUAD" 1859773 T NUMQUAD (NIL) -7 NIL NIL NIL) (-794 1850618 1851606 1852631 "NUMODE" 1853857 T NUMODE (NIL) -7 NIL NIL NIL) (-793 1847973 1848853 1848881 "NUMINT" 1849804 T NUMINT (NIL) -9 NIL 1850568 NIL) (-792 1846921 1847118 1847336 "NUMFMT" 1847775 T NUMFMT (NIL) -7 NIL NIL NIL) (-791 1833280 1836225 1838757 "NUMERIC" 1844428 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-790 1827650 1832729 1832824 "NTSCAT" 1832829 NIL NTSCAT (NIL T T T T) -9 NIL 1832868 NIL) (-789 1826844 1827009 1827202 "NTPOLFN" 1827489 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-788 1814921 1823669 1824481 "NSUP" 1826065 NIL NSUP (NIL T) -8 NIL NIL NIL) (-787 1814553 1814610 1814719 "NSUP2" 1814858 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-786 1804779 1814327 1814460 "NSMP" 1814465 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-785 1803211 1803512 1803869 "NREP" 1804467 NIL NREP (NIL T) -7 NIL NIL NIL) (-784 1801802 1802054 1802412 "NPCOEF" 1802954 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-783 1800868 1800983 1801199 "NORMRETR" 1801683 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-782 1798909 1799199 1799608 "NORMPK" 1800576 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-781 1798594 1798622 1798746 "NORMMA" 1798875 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-780 1798394 1798551 1798580 "NONE" 1798585 T NONE (NIL) -8 NIL NIL NIL) (-779 1798183 1798212 1798281 "NONE1" 1798358 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-778 1797680 1797742 1797921 "NODE1" 1798115 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-777 1795965 1796816 1797071 "NNI" 1797418 T NNI (NIL) -8 NIL NIL 1797653) (-776 1794385 1794698 1795062 "NLINSOL" 1795633 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-775 1790626 1791621 1792520 "NIPROB" 1793506 T NIPROB (NIL) -8 NIL NIL NIL) (-774 1789383 1789617 1789919 "NFINTBAS" 1790388 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-773 1788557 1789033 1789074 "NETCLT" 1789246 NIL NETCLT (NIL T) -9 NIL 1789328 NIL) (-772 1787265 1787496 1787777 "NCODIV" 1788325 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-771 1787027 1787064 1787139 "NCNTFRAC" 1787222 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-770 1785207 1785571 1785991 "NCEP" 1786652 NIL NCEP (NIL T) -7 NIL NIL NIL) (-769 1784058 1784831 1784859 "NASRING" 1784969 T NASRING (NIL) -9 NIL 1785049 NIL) (-768 1783853 1783897 1783991 "NASRING-" 1783996 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-767 1782960 1783485 1783513 "NARNG" 1783630 T NARNG (NIL) -9 NIL 1783721 NIL) (-766 1782652 1782719 1782853 "NARNG-" 1782858 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-765 1781531 1781738 1781973 "NAGSP" 1782437 T NAGSP (NIL) -7 NIL NIL NIL) (-764 1772803 1774487 1776160 "NAGS" 1779878 T NAGS (NIL) -7 NIL NIL NIL) (-763 1771351 1771659 1771990 "NAGF07" 1772492 T NAGF07 (NIL) -7 NIL NIL NIL) (-762 1765889 1767180 1768487 "NAGF04" 1770064 T NAGF04 (NIL) -7 NIL NIL NIL) (-761 1758857 1760471 1762104 "NAGF02" 1764276 T NAGF02 (NIL) -7 NIL NIL NIL) (-760 1754081 1755181 1756298 "NAGF01" 1757760 T NAGF01 (NIL) -7 NIL NIL NIL) (-759 1747709 1749275 1750860 "NAGE04" 1752516 T NAGE04 (NIL) -7 NIL NIL NIL) (-758 1738878 1740999 1743129 "NAGE02" 1745599 T NAGE02 (NIL) -7 NIL NIL NIL) (-757 1734831 1735778 1736742 "NAGE01" 1737934 T NAGE01 (NIL) -7 NIL NIL NIL) (-756 1732626 1733160 1733718 "NAGD03" 1734293 T NAGD03 (NIL) -7 NIL NIL NIL) (-755 1724376 1726304 1728258 "NAGD02" 1730692 T NAGD02 (NIL) -7 NIL NIL NIL) (-754 1718187 1719612 1721052 "NAGD01" 1722956 T NAGD01 (NIL) -7 NIL NIL NIL) (-753 1714396 1715218 1716055 "NAGC06" 1717370 T NAGC06 (NIL) -7 NIL NIL NIL) (-752 1712861 1713193 1713549 "NAGC05" 1714060 T NAGC05 (NIL) -7 NIL NIL NIL) (-751 1712237 1712356 1712500 "NAGC02" 1712737 T NAGC02 (NIL) -7 NIL NIL NIL) (-750 1711196 1711779 1711819 "NAALG" 1711898 NIL NAALG (NIL T) -9 NIL 1711959 NIL) (-749 1711031 1711060 1711150 "NAALG-" 1711155 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-748 1704981 1706089 1707276 "MULTSQFR" 1709927 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-747 1704300 1704375 1704559 "MULTFACT" 1704893 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-746 1697024 1700937 1700990 "MTSCAT" 1702060 NIL MTSCAT (NIL T T) -9 NIL 1702575 NIL) (-745 1696736 1696790 1696882 "MTHING" 1696964 NIL MTHING (NIL T) -7 NIL NIL NIL) (-744 1696528 1696561 1696621 "MSYSCMD" 1696696 T MSYSCMD (NIL) -7 NIL NIL NIL) (-743 1692610 1695283 1695603 "MSET" 1696241 NIL MSET (NIL T) -8 NIL NIL NIL) (-742 1689679 1692171 1692212 "MSETAGG" 1692217 NIL MSETAGG (NIL T) -9 NIL 1692251 NIL) (-741 1685520 1687058 1687803 "MRING" 1688979 NIL MRING (NIL T T) -8 NIL NIL NIL) (-740 1685086 1685153 1685284 "MRF2" 1685447 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-739 1684704 1684739 1684883 "MRATFAC" 1685045 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-738 1682316 1682611 1683042 "MPRFF" 1684409 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-737 1676613 1682170 1682267 "MPOLY" 1682272 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-736 1676103 1676138 1676346 "MPCPF" 1676572 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-735 1675617 1675660 1675844 "MPC3" 1676054 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-734 1674812 1674893 1675114 "MPC2" 1675532 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-733 1673113 1673450 1673840 "MONOTOOL" 1674472 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-732 1672338 1672655 1672683 "MONOID" 1672902 T MONOID (NIL) -9 NIL 1673049 NIL) (-731 1671884 1672003 1672184 "MONOID-" 1672189 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-730 1662359 1668310 1668369 "MONOGEN" 1669043 NIL MONOGEN (NIL T T) -9 NIL 1669499 NIL) (-729 1659577 1660312 1661312 "MONOGEN-" 1661431 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-728 1658410 1658856 1658884 "MONADWU" 1659276 T MONADWU (NIL) -9 NIL 1659514 NIL) (-727 1657782 1657941 1658189 "MONADWU-" 1658194 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-726 1657141 1657385 1657413 "MONAD" 1657620 T MONAD (NIL) -9 NIL 1657732 NIL) (-725 1656826 1656904 1657036 "MONAD-" 1657041 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-724 1655115 1655739 1656018 "MOEBIUS" 1656579 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-723 1654393 1654797 1654837 "MODULE" 1654842 NIL MODULE (NIL T) -9 NIL 1654881 NIL) (-722 1653961 1654057 1654247 "MODULE-" 1654252 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-721 1651641 1652325 1652652 "MODRING" 1653785 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-720 1648585 1649746 1650267 "MODOP" 1651170 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-719 1647173 1647652 1647929 "MODMONOM" 1648448 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-718 1637215 1645464 1645878 "MODMON" 1646810 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-717 1634371 1636059 1636335 "MODFIELD" 1637090 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-716 1633348 1633652 1633842 "MMLFORM" 1634201 T MMLFORM (NIL) -8 NIL NIL NIL) (-715 1632874 1632917 1633096 "MMAP" 1633299 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-714 1630953 1631720 1631761 "MLO" 1632184 NIL MLO (NIL T) -9 NIL 1632426 NIL) (-713 1628319 1628835 1629437 "MLIFT" 1630434 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-712 1627710 1627794 1627948 "MKUCFUNC" 1628230 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-711 1627309 1627379 1627502 "MKRECORD" 1627633 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-710 1626356 1626518 1626746 "MKFUNC" 1627120 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-709 1625744 1625848 1626004 "MKFLCFN" 1626239 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-708 1625021 1625123 1625308 "MKBCFUNC" 1625637 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-707 1621728 1624575 1624711 "MINT" 1624905 T MINT (NIL) -8 NIL NIL NIL) (-706 1620540 1620783 1621060 "MHROWRED" 1621483 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-705 1615920 1619075 1619480 "MFLOAT" 1620155 T MFLOAT (NIL) -8 NIL NIL NIL) (-704 1615277 1615353 1615524 "MFINFACT" 1615832 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-703 1611592 1612440 1613324 "MESH" 1614413 T MESH (NIL) -7 NIL NIL NIL) (-702 1609982 1610294 1610647 "MDDFACT" 1611279 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-701 1606777 1609141 1609182 "MDAGG" 1609437 NIL MDAGG (NIL T) -9 NIL 1609580 NIL) (-700 1596517 1606070 1606277 "MCMPLX" 1606590 T MCMPLX (NIL) -8 NIL NIL NIL) (-699 1595654 1595800 1596001 "MCDEN" 1596366 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-698 1593544 1593814 1594194 "MCALCFN" 1595384 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-697 1592469 1592709 1592942 "MAYBE" 1593350 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-696 1590081 1590604 1591166 "MATSTOR" 1591940 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-695 1586038 1589453 1589701 "MATRIX" 1589866 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-694 1581802 1582511 1583247 "MATLIN" 1585395 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-693 1571908 1575094 1575171 "MATCAT" 1580051 NIL MATCAT (NIL T T T) -9 NIL 1581468 NIL) (-692 1568264 1569285 1570641 "MATCAT-" 1570646 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-691 1566858 1567011 1567344 "MATCAT2" 1568099 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-690 1564970 1565294 1565678 "MAPPKG3" 1566533 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-689 1563951 1564124 1564346 "MAPPKG2" 1564794 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-688 1562450 1562734 1563061 "MAPPKG1" 1563657 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-687 1561529 1561856 1562033 "MAPPAST" 1562293 T MAPPAST (NIL) -8 NIL NIL NIL) (-686 1561140 1561198 1561321 "MAPHACK3" 1561465 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-685 1560732 1560793 1560907 "MAPHACK2" 1561072 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-684 1560169 1560273 1560415 "MAPHACK1" 1560623 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-683 1558248 1558869 1559173 "MAGMA" 1559897 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-682 1557727 1557972 1558063 "MACROAST" 1558177 T MACROAST (NIL) -8 NIL NIL NIL) (-681 1554145 1555966 1556427 "M3D" 1557299 NIL M3D (NIL T) -8 NIL NIL NIL) (-680 1548251 1552514 1552555 "LZSTAGG" 1553337 NIL LZSTAGG (NIL T) -9 NIL 1553632 NIL) (-679 1544208 1545382 1546839 "LZSTAGG-" 1546844 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-678 1541295 1542099 1542586 "LWORD" 1543753 NIL LWORD (NIL T) -8 NIL NIL NIL) (-677 1540871 1541099 1541174 "LSTAST" 1541240 T LSTAST (NIL) -8 NIL NIL NIL) (-676 1534037 1540642 1540776 "LSQM" 1540781 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-675 1533261 1533400 1533628 "LSPP" 1533892 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-674 1531073 1531374 1531830 "LSMP" 1532950 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-673 1527852 1528526 1529256 "LSMP1" 1530375 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-672 1521729 1527019 1527060 "LSAGG" 1527122 NIL LSAGG (NIL T) -9 NIL 1527200 NIL) (-671 1518424 1519348 1520561 "LSAGG-" 1520566 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-670 1516023 1517568 1517817 "LPOLY" 1518219 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-669 1515605 1515690 1515813 "LPEFRAC" 1515932 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-668 1513926 1514699 1514952 "LO" 1515437 NIL LO (NIL T T T) -8 NIL NIL NIL) (-667 1513578 1513690 1513718 "LOGIC" 1513829 T LOGIC (NIL) -9 NIL 1513910 NIL) (-666 1513440 1513463 1513534 "LOGIC-" 1513539 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-665 1512633 1512773 1512966 "LODOOPS" 1513296 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-664 1510056 1512549 1512615 "LODO" 1512620 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-663 1508594 1508829 1509182 "LODOF" 1509803 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-662 1504812 1507243 1507284 "LODOCAT" 1507722 NIL LODOCAT (NIL T) -9 NIL 1507933 NIL) (-661 1504545 1504603 1504730 "LODOCAT-" 1504735 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-660 1501865 1504386 1504504 "LODO2" 1504509 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-659 1499300 1501802 1501847 "LODO1" 1501852 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-658 1498181 1498346 1498651 "LODEEF" 1499123 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-657 1493420 1496311 1496352 "LNAGG" 1497299 NIL LNAGG (NIL T) -9 NIL 1497743 NIL) (-656 1492567 1492781 1493123 "LNAGG-" 1493128 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-655 1488703 1489492 1490131 "LMOPS" 1491982 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-654 1488106 1488494 1488535 "LMODULE" 1488540 NIL LMODULE (NIL T) -9 NIL 1488566 NIL) (-653 1485304 1487751 1487874 "LMDICT" 1488016 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-652 1484710 1484931 1484972 "LLINSET" 1485163 NIL LLINSET (NIL T) -9 NIL 1485254 NIL) (-651 1484409 1484618 1484678 "LITERAL" 1484683 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-650 1477572 1483343 1483647 "LIST" 1484138 NIL LIST (NIL T) -8 NIL NIL NIL) (-649 1477097 1477171 1477310 "LIST3" 1477492 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-648 1476104 1476282 1476510 "LIST2" 1476915 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-647 1474238 1474550 1474949 "LIST2MAP" 1475751 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-646 1473834 1474071 1474112 "LINSET" 1474117 NIL LINSET (NIL T) -9 NIL 1474151 NIL) (-645 1472495 1473165 1473206 "LINEXP" 1473461 NIL LINEXP (NIL T) -9 NIL 1473610 NIL) (-644 1471142 1471402 1471699 "LINDEP" 1472247 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-643 1467909 1468628 1469405 "LIMITRF" 1470397 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-642 1466212 1466508 1466917 "LIMITPS" 1467604 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-641 1460640 1465723 1465951 "LIE" 1466033 NIL LIE (NIL T T) -8 NIL NIL NIL) (-640 1459588 1460057 1460097 "LIECAT" 1460237 NIL LIECAT (NIL T) -9 NIL 1460388 NIL) (-639 1459429 1459456 1459544 "LIECAT-" 1459549 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-638 1451925 1458878 1459043 "LIB" 1459284 T LIB (NIL) -8 NIL NIL NIL) (-637 1447560 1448443 1449378 "LGROBP" 1451042 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-636 1445558 1445832 1446182 "LF" 1447281 NIL LF (NIL T T) -7 NIL NIL NIL) (-635 1444398 1445090 1445118 "LFCAT" 1445325 T LFCAT (NIL) -9 NIL 1445464 NIL) (-634 1441300 1441930 1442618 "LEXTRIPK" 1443762 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-633 1438044 1438870 1439373 "LEXP" 1440880 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-632 1437520 1437765 1437857 "LETAST" 1437972 T LETAST (NIL) -8 NIL NIL NIL) (-631 1435918 1436231 1436632 "LEADCDET" 1437202 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-630 1435108 1435182 1435411 "LAZM3PK" 1435839 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-629 1430025 1433185 1433723 "LAUPOL" 1434620 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-628 1429604 1429648 1429809 "LAPLACE" 1429975 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-627 1427543 1428705 1428956 "LA" 1429437 NIL LA (NIL T T T) -8 NIL NIL NIL) (-626 1426537 1427121 1427162 "LALG" 1427224 NIL LALG (NIL T) -9 NIL 1427283 NIL) (-625 1426251 1426310 1426446 "LALG-" 1426451 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-624 1426086 1426110 1426151 "KVTFROM" 1426213 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-623 1425009 1425453 1425638 "KTVLOGIC" 1425921 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-622 1424844 1424868 1424909 "KRCFROM" 1424971 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-621 1423748 1423935 1424234 "KOVACIC" 1424644 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-620 1423583 1423607 1423648 "KONVERT" 1423710 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-619 1423418 1423442 1423483 "KOERCE" 1423545 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-618 1421248 1422011 1422388 "KERNEL" 1423074 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-617 1420744 1420825 1420957 "KERNEL2" 1421162 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-616 1414514 1419283 1419337 "KDAGG" 1419714 NIL KDAGG (NIL T T) -9 NIL 1419920 NIL) (-615 1414043 1414167 1414372 "KDAGG-" 1414377 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-614 1407191 1413704 1413859 "KAFILE" 1413921 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-613 1401619 1406702 1406930 "JORDAN" 1407012 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-612 1400998 1401268 1401389 "JOINAST" 1401518 T JOINAST (NIL) -8 NIL NIL NIL) (-611 1400844 1400903 1400958 "JAVACODE" 1400963 T JAVACODE (NIL) -8 NIL NIL NIL) (-610 1397096 1399049 1399103 "IXAGG" 1400032 NIL IXAGG (NIL T T) -9 NIL 1400491 NIL) (-609 1396015 1396321 1396740 "IXAGG-" 1396745 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-608 1391545 1395937 1395996 "IVECTOR" 1396001 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-607 1390311 1390548 1390814 "ITUPLE" 1391312 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-606 1388813 1388990 1389285 "ITRIGMNP" 1390133 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-605 1387558 1387762 1388045 "ITFUN3" 1388589 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-604 1387190 1387247 1387356 "ITFUN2" 1387495 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-603 1386349 1386670 1386844 "ITFORM" 1387036 T ITFORM (NIL) -8 NIL NIL NIL) (-602 1384310 1385369 1385647 "ITAYLOR" 1386104 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-601 1373255 1378447 1379610 "ISUPS" 1383180 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-600 1372359 1372499 1372735 "ISUMP" 1373102 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-599 1367734 1372304 1372345 "ISTRING" 1372350 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-598 1367210 1367455 1367547 "ISAST" 1367662 T ISAST (NIL) -8 NIL NIL NIL) (-597 1366419 1366501 1366717 "IRURPK" 1367124 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-596 1365355 1365556 1365796 "IRSN" 1366199 T IRSN (NIL) -7 NIL NIL NIL) (-595 1363426 1363781 1364210 "IRRF2F" 1364993 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-594 1363173 1363211 1363287 "IRREDFFX" 1363382 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-593 1361788 1362047 1362346 "IROOT" 1362906 NIL IROOT (NIL T) -7 NIL NIL NIL) (-592 1358392 1359472 1360164 "IR" 1361128 NIL IR (NIL T) -8 NIL NIL NIL) (-591 1357597 1357885 1358036 "IRFORM" 1358261 T IRFORM (NIL) -8 NIL NIL NIL) (-590 1355210 1355705 1356271 "IR2" 1357075 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-589 1354310 1354423 1354637 "IR2F" 1355093 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-588 1354101 1354135 1354195 "IPRNTPK" 1354270 T IPRNTPK (NIL) -7 NIL NIL NIL) (-587 1350682 1353990 1354059 "IPF" 1354064 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-586 1349009 1350607 1350664 "IPADIC" 1350669 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-585 1348321 1348569 1348699 "IP4ADDR" 1348899 T IP4ADDR (NIL) -8 NIL NIL NIL) (-584 1347695 1347950 1348082 "IOMODE" 1348209 T IOMODE (NIL) -8 NIL NIL NIL) (-583 1346768 1347292 1347419 "IOBFILE" 1347588 T IOBFILE (NIL) -8 NIL NIL NIL) (-582 1346256 1346672 1346700 "IOBCON" 1346705 T IOBCON (NIL) -9 NIL 1346726 NIL) (-581 1345767 1345825 1346008 "INVLAPLA" 1346192 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-580 1335415 1337769 1340155 "INTTR" 1343431 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-579 1331750 1332492 1333357 "INTTOOLS" 1334600 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-578 1331336 1331427 1331544 "INTSLPE" 1331653 T INTSLPE (NIL) -7 NIL NIL NIL) (-577 1329289 1331259 1331318 "INTRVL" 1331323 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-576 1326891 1327403 1327978 "INTRF" 1328774 NIL INTRF (NIL T) -7 NIL NIL NIL) (-575 1326302 1326399 1326541 "INTRET" 1326789 NIL INTRET (NIL T) -7 NIL NIL NIL) (-574 1324299 1324688 1325158 "INTRAT" 1325910 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-573 1321562 1322145 1322764 "INTPM" 1323784 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-572 1318307 1318906 1319644 "INTPAF" 1320948 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-571 1313486 1314448 1315499 "INTPACK" 1317276 T INTPACK (NIL) -7 NIL NIL NIL) (-570 1310434 1313283 1313392 "INT" 1313397 T INT (NIL) -8 NIL NIL NIL) (-569 1309686 1309838 1310046 "INTHERTR" 1310276 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-568 1309125 1309205 1309393 "INTHERAL" 1309600 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-567 1306971 1307414 1307871 "INTHEORY" 1308688 T INTHEORY (NIL) -7 NIL NIL NIL) (-566 1298377 1299998 1301770 "INTG0" 1305323 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-565 1278950 1283740 1288550 "INTFTBL" 1293587 T INTFTBL (NIL) -8 NIL NIL NIL) (-564 1278199 1278337 1278510 "INTFACT" 1278809 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-563 1275626 1276072 1276629 "INTEF" 1277753 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-562 1273993 1274732 1274760 "INTDOM" 1275061 T INTDOM (NIL) -9 NIL 1275268 NIL) (-561 1273362 1273536 1273778 "INTDOM-" 1273783 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-560 1269750 1271678 1271732 "INTCAT" 1272531 NIL INTCAT (NIL T) -9 NIL 1272852 NIL) (-559 1269222 1269325 1269453 "INTBIT" 1269642 T INTBIT (NIL) -7 NIL NIL NIL) (-558 1267921 1268075 1268382 "INTALG" 1269067 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-557 1267404 1267494 1267651 "INTAF" 1267825 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-556 1260747 1267214 1267354 "INTABL" 1267359 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-555 1260088 1260554 1260619 "INT8" 1260653 T INT8 (NIL) -8 NIL NIL 1260698) (-554 1259428 1259894 1259959 "INT64" 1259993 T INT64 (NIL) -8 NIL NIL 1260038) (-553 1258768 1259234 1259299 "INT32" 1259333 T INT32 (NIL) -8 NIL NIL 1259378) (-552 1258108 1258574 1258639 "INT16" 1258673 T INT16 (NIL) -8 NIL NIL 1258718) (-551 1253018 1255731 1255759 "INS" 1256693 T INS (NIL) -9 NIL 1257358 NIL) (-550 1250258 1251029 1252003 "INS-" 1252076 NIL INS- (NIL T) -8 NIL NIL NIL) (-549 1249033 1249260 1249558 "INPSIGN" 1250011 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-548 1248151 1248268 1248465 "INPRODPF" 1248913 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-547 1247045 1247162 1247399 "INPRODFF" 1248031 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-546 1246045 1246197 1246457 "INNMFACT" 1246881 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-545 1245242 1245339 1245527 "INMODGCD" 1245944 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-544 1243750 1243995 1244319 "INFSP" 1244987 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-543 1242934 1243051 1243234 "INFPROD0" 1243630 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-542 1239789 1240999 1241514 "INFORM" 1242427 T INFORM (NIL) -8 NIL NIL NIL) (-541 1239399 1239459 1239557 "INFORM1" 1239724 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-540 1238922 1239011 1239125 "INFINITY" 1239305 T INFINITY (NIL) -7 NIL NIL NIL) (-539 1238098 1238642 1238743 "INETCLTS" 1238841 T INETCLTS (NIL) -8 NIL NIL NIL) (-538 1236714 1236964 1237285 "INEP" 1237846 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-537 1235963 1236611 1236676 "INDE" 1236681 NIL INDE (NIL T) -8 NIL NIL NIL) (-536 1235527 1235595 1235712 "INCRMAPS" 1235890 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-535 1234345 1234796 1235002 "INBFILE" 1235341 T INBFILE (NIL) -8 NIL NIL NIL) (-534 1229645 1230581 1231525 "INBFF" 1233433 NIL INBFF (NIL T) -7 NIL NIL NIL) (-533 1228553 1228822 1228850 "INBCON" 1229363 T INBCON (NIL) -9 NIL 1229629 NIL) (-532 1227805 1228028 1228304 "INBCON-" 1228309 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-531 1227284 1227529 1227620 "INAST" 1227734 T INAST (NIL) -8 NIL NIL NIL) (-530 1226711 1226963 1227069 "IMPTAST" 1227198 T IMPTAST (NIL) -8 NIL NIL NIL) (-529 1223157 1226555 1226659 "IMATRIX" 1226664 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-528 1221865 1221988 1222304 "IMATQF" 1223013 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-527 1220085 1220312 1220649 "IMATLIN" 1221621 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-526 1214663 1220009 1220067 "ILIST" 1220072 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-525 1212568 1214523 1214636 "IIARRAY2" 1214641 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-524 1207966 1212479 1212543 "IFF" 1212548 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-523 1207313 1207583 1207699 "IFAST" 1207870 T IFAST (NIL) -8 NIL NIL NIL) (-522 1202308 1206605 1206793 "IFARRAY" 1207170 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-521 1201488 1202212 1202285 "IFAMON" 1202290 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-520 1201072 1201137 1201191 "IEVALAB" 1201398 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-519 1200747 1200815 1200975 "IEVALAB-" 1200980 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-518 1200378 1200661 1200724 "IDPO" 1200729 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-517 1199628 1200267 1200342 "IDPOAMS" 1200347 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-516 1198935 1199517 1199592 "IDPOAM" 1199597 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-515 1197994 1198270 1198323 "IDPC" 1198736 NIL IDPC (NIL T T) -9 NIL 1198885 NIL) (-514 1197463 1197886 1197959 "IDPAM" 1197964 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-513 1196839 1197355 1197428 "IDPAG" 1197433 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-512 1196484 1196675 1196750 "IDENT" 1196784 T IDENT (NIL) -8 NIL NIL NIL) (-511 1192739 1193587 1194482 "IDECOMP" 1195641 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-510 1185577 1186662 1187709 "IDEAL" 1191775 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-509 1184737 1184849 1185049 "ICDEN" 1185461 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-508 1183808 1184217 1184364 "ICARD" 1184610 T ICARD (NIL) -8 NIL NIL NIL) (-507 1181868 1182181 1182586 "IBPTOOLS" 1183485 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-506 1177475 1181488 1181601 "IBITS" 1181787 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-505 1174198 1174774 1175469 "IBATOOL" 1176892 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-504 1171977 1172439 1172972 "IBACHIN" 1173733 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-503 1169806 1171823 1171926 "IARRAY2" 1171931 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-502 1165912 1169732 1169789 "IARRAY1" 1169794 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-501 1160021 1164324 1164805 "IAN" 1165451 T IAN (NIL) -8 NIL NIL NIL) (-500 1159532 1159589 1159762 "IALGFACT" 1159958 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-499 1159060 1159173 1159201 "HYPCAT" 1159408 T HYPCAT (NIL) -9 NIL NIL NIL) (-498 1158598 1158715 1158901 "HYPCAT-" 1158906 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-497 1158193 1158393 1158476 "HOSTNAME" 1158535 T HOSTNAME (NIL) -8 NIL NIL NIL) (-496 1158038 1158075 1158116 "HOMOTOP" 1158121 NIL HOMOTOP (NIL T) -9 NIL 1158154 NIL) (-495 1154670 1156048 1156089 "HOAGG" 1157070 NIL HOAGG (NIL T) -9 NIL 1157749 NIL) (-494 1153264 1153663 1154189 "HOAGG-" 1154194 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-493 1147266 1152857 1153007 "HEXADEC" 1153134 T HEXADEC (NIL) -8 NIL NIL NIL) (-492 1146014 1146236 1146499 "HEUGCD" 1147043 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-491 1145090 1145851 1145981 "HELLFDIV" 1145986 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-490 1143269 1144867 1144955 "HEAP" 1145034 NIL HEAP (NIL T) -8 NIL NIL NIL) (-489 1142532 1142821 1142955 "HEADAST" 1143155 T HEADAST (NIL) -8 NIL NIL NIL) (-488 1136398 1142447 1142509 "HDP" 1142514 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-487 1130386 1136033 1136185 "HDMP" 1136299 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-486 1129710 1129850 1130014 "HB" 1130242 T HB (NIL) -7 NIL NIL NIL) (-485 1123096 1129556 1129660 "HASHTBL" 1129665 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-484 1122572 1122817 1122909 "HASAST" 1123024 T HASAST (NIL) -8 NIL NIL NIL) (-483 1120350 1122194 1122376 "HACKPI" 1122410 T HACKPI (NIL) -8 NIL NIL NIL) (-482 1116018 1120203 1120316 "GTSET" 1120321 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-481 1109433 1115896 1115994 "GSTBL" 1115999 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-480 1101711 1108464 1108729 "GSERIES" 1109224 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-479 1100852 1101269 1101297 "GROUP" 1101500 T GROUP (NIL) -9 NIL 1101634 NIL) (-478 1100218 1100377 1100628 "GROUP-" 1100633 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-477 1098585 1098906 1099293 "GROEBSOL" 1099895 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-476 1097499 1097787 1097838 "GRMOD" 1098367 NIL GRMOD (NIL T T) -9 NIL 1098535 NIL) (-475 1097267 1097303 1097431 "GRMOD-" 1097436 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-474 1092557 1093621 1094621 "GRIMAGE" 1096287 T GRIMAGE (NIL) -8 NIL NIL NIL) (-473 1091023 1091284 1091608 "GRDEF" 1092253 T GRDEF (NIL) -7 NIL NIL NIL) (-472 1090467 1090583 1090724 "GRAY" 1090902 T GRAY (NIL) -7 NIL NIL NIL) (-471 1089654 1090060 1090111 "GRALG" 1090264 NIL GRALG (NIL T T) -9 NIL 1090357 NIL) (-470 1089315 1089388 1089551 "GRALG-" 1089556 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-469 1086092 1088900 1089078 "GPOLSET" 1089222 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-468 1085446 1085503 1085761 "GOSPER" 1086029 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-467 1081178 1081884 1082410 "GMODPOL" 1085145 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-466 1080183 1080367 1080605 "GHENSEL" 1080990 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-465 1074339 1075182 1076202 "GENUPS" 1079267 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-464 1074036 1074087 1074176 "GENUFACT" 1074282 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-463 1073448 1073525 1073690 "GENPGCD" 1073954 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-462 1072922 1072957 1073170 "GENMFACT" 1073407 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-461 1071488 1071745 1072052 "GENEEZ" 1072665 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-460 1065634 1071099 1071261 "GDMP" 1071411 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-459 1054976 1059405 1060511 "GCNAALG" 1064617 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-458 1053303 1054165 1054193 "GCDDOM" 1054448 T GCDDOM (NIL) -9 NIL 1054605 NIL) (-457 1052773 1052900 1053115 "GCDDOM-" 1053120 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-456 1051445 1051630 1051934 "GB" 1052552 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-455 1040061 1042391 1044783 "GBINTERN" 1049136 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-454 1037898 1038190 1038611 "GBF" 1039736 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-453 1036679 1036844 1037111 "GBEUCLID" 1037714 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-452 1036028 1036153 1036302 "GAUSSFAC" 1036550 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-451 1034395 1034697 1035011 "GALUTIL" 1035747 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-450 1032703 1032977 1033301 "GALPOLYU" 1034122 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-449 1030068 1030358 1030765 "GALFACTU" 1032400 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-448 1021873 1023373 1024981 "GALFACT" 1028500 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-447 1019261 1019919 1019947 "FVFUN" 1021103 T FVFUN (NIL) -9 NIL 1021823 NIL) (-446 1018527 1018709 1018737 "FVC" 1019028 T FVC (NIL) -9 NIL 1019211 NIL) (-445 1018170 1018352 1018420 "FUNDESC" 1018479 T FUNDESC (NIL) -8 NIL NIL NIL) (-444 1017785 1017967 1018048 "FUNCTION" 1018122 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-443 1015529 1016107 1016573 "FT" 1017339 T FT (NIL) -8 NIL NIL NIL) (-442 1014320 1014830 1015033 "FTEM" 1015346 T FTEM (NIL) -8 NIL NIL NIL) (-441 1012611 1012900 1013297 "FSUPFACT" 1014011 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-440 1011008 1011297 1011629 "FST" 1012299 T FST (NIL) -8 NIL NIL NIL) (-439 1010207 1010313 1010501 "FSRED" 1010890 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-438 1008906 1009162 1009509 "FSPRMELT" 1009922 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-437 1006212 1006650 1007136 "FSPECF" 1008469 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-436 987850 996181 996222 "FS" 1000106 NIL FS (NIL T) -9 NIL 1002395 NIL) (-435 976493 979486 983543 "FS-" 983843 NIL FS- (NIL T T) -8 NIL NIL NIL) (-434 976021 976075 976245 "FSINT" 976434 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-433 974313 975014 975317 "FSERIES" 975800 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-432 973355 973471 973695 "FSCINT" 974193 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-431 969563 972299 972340 "FSAGG" 972710 NIL FSAGG (NIL T) -9 NIL 972969 NIL) (-430 967325 967926 968722 "FSAGG-" 968817 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-429 966367 966510 966737 "FSAGG2" 967178 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-428 964049 964329 964876 "FS2UPS" 966085 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-427 963683 963726 963855 "FS2" 964000 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-426 962561 962732 963034 "FS2EXPXP" 963508 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-425 961987 962102 962254 "FRUTIL" 962441 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-424 953400 957482 958840 "FR" 960661 NIL FR (NIL T) -8 NIL NIL NIL) (-423 948369 951043 951083 "FRNAALG" 952479 NIL FRNAALG (NIL T) -9 NIL 953086 NIL) (-422 944042 945118 946393 "FRNAALG-" 947143 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-421 943680 943723 943850 "FRNAAF2" 943993 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-420 942055 942529 942825 "FRMOD" 943492 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-419 939798 940430 940748 "FRIDEAL" 941846 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-418 938989 939076 939367 "FRIDEAL2" 939705 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-417 938122 938536 938577 "FRETRCT" 938582 NIL FRETRCT (NIL T) -9 NIL 938758 NIL) (-416 937234 937465 937816 "FRETRCT-" 937821 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-415 934322 935532 935591 "FRAMALG" 936473 NIL FRAMALG (NIL T T) -9 NIL 936765 NIL) (-414 932456 932911 933541 "FRAMALG-" 933764 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-413 926375 931929 932206 "FRAC" 932211 NIL FRAC (NIL T) -8 NIL NIL NIL) (-412 926011 926068 926175 "FRAC2" 926312 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-411 925647 925704 925811 "FR2" 925948 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-410 920160 923053 923081 "FPS" 924200 T FPS (NIL) -9 NIL 924757 NIL) (-409 919609 919718 919882 "FPS-" 920028 NIL FPS- (NIL T) -8 NIL NIL NIL) (-408 916911 918580 918608 "FPC" 918833 T FPC (NIL) -9 NIL 918975 NIL) (-407 916704 916744 916841 "FPC-" 916846 NIL FPC- (NIL T) -8 NIL NIL NIL) (-406 915494 916192 916233 "FPATMAB" 916238 NIL FPATMAB (NIL T) -9 NIL 916390 NIL) (-405 913167 913670 914096 "FPARFRAC" 915131 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-404 908561 909059 909741 "FORTRAN" 912599 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-403 906277 906777 907316 "FORT" 908042 T FORT (NIL) -7 NIL NIL NIL) (-402 903953 904515 904543 "FORTFN" 905603 T FORTFN (NIL) -9 NIL 906227 NIL) (-401 903717 903767 903795 "FORTCAT" 903854 T FORTCAT (NIL) -9 NIL 903916 NIL) (-400 901823 902333 902723 "FORMULA" 903347 T FORMULA (NIL) -8 NIL NIL NIL) (-399 901611 901641 901710 "FORMULA1" 901787 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-398 901134 901186 901359 "FORDER" 901553 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-397 900230 900394 900587 "FOP" 900961 T FOP (NIL) -7 NIL NIL NIL) (-396 898811 899510 899684 "FNLA" 900112 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-395 897540 897955 897983 "FNCAT" 898443 T FNCAT (NIL) -9 NIL 898703 NIL) (-394 897079 897499 897527 "FNAME" 897532 T FNAME (NIL) -8 NIL NIL NIL) (-393 895642 896605 896633 "FMTC" 896638 T FMTC (NIL) -9 NIL 896674 NIL) (-392 894388 895578 895624 "FMONOID" 895629 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-391 891216 892384 892425 "FMONCAT" 893642 NIL FMONCAT (NIL T) -9 NIL 894247 NIL) (-390 890408 890958 891107 "FM" 891112 NIL FM (NIL T T) -8 NIL NIL NIL) (-389 887832 888478 888506 "FMFUN" 889650 T FMFUN (NIL) -9 NIL 890358 NIL) (-388 887101 887282 887310 "FMC" 887600 T FMC (NIL) -9 NIL 887782 NIL) (-387 884180 885040 885094 "FMCAT" 886289 NIL FMCAT (NIL T T) -9 NIL 886784 NIL) (-386 883046 883946 884046 "FM1" 884125 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-385 880820 881236 881730 "FLOATRP" 882597 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-384 874394 878549 879170 "FLOAT" 880219 T FLOAT (NIL) -8 NIL NIL NIL) (-383 871832 872332 872910 "FLOATCP" 873861 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-382 870572 871410 871451 "FLINEXP" 871456 NIL FLINEXP (NIL T) -9 NIL 871549 NIL) (-381 869726 869961 870289 "FLINEXP-" 870294 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-380 868802 868946 869170 "FLASORT" 869578 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-379 865918 866786 866838 "FLALG" 868065 NIL FLALG (NIL T T) -9 NIL 868532 NIL) (-378 859654 863404 863445 "FLAGG" 864707 NIL FLAGG (NIL T) -9 NIL 865359 NIL) (-377 858380 858719 859209 "FLAGG-" 859214 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-376 857422 857565 857792 "FLAGG2" 858233 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-375 854273 855281 855340 "FINRALG" 856468 NIL FINRALG (NIL T T) -9 NIL 856976 NIL) (-374 853433 853662 854001 "FINRALG-" 854006 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-373 852813 853052 853080 "FINITE" 853276 T FINITE (NIL) -9 NIL 853383 NIL) (-372 845170 847357 847397 "FINAALG" 851064 NIL FINAALG (NIL T) -9 NIL 852517 NIL) (-371 840502 841552 842696 "FINAALG-" 844075 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-370 839870 840257 840360 "FILE" 840432 NIL FILE (NIL T) -8 NIL NIL NIL) (-369 838528 838866 838920 "FILECAT" 839604 NIL FILECAT (NIL T T) -9 NIL 839820 NIL) (-368 836244 837772 837800 "FIELD" 837840 T FIELD (NIL) -9 NIL 837920 NIL) (-367 834864 835249 835760 "FIELD-" 835765 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-366 832714 833499 833846 "FGROUP" 834550 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-365 831804 831968 832188 "FGLMICPK" 832546 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-364 827636 831729 831786 "FFX" 831791 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-363 827237 827298 827433 "FFSLPE" 827569 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-362 823227 824009 824805 "FFPOLY" 826473 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-361 822731 822767 822976 "FFPOLY2" 823185 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-360 818575 822650 822713 "FFP" 822718 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-359 813973 818486 818550 "FF" 818555 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-358 809099 813316 813506 "FFNBX" 813827 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-357 804027 808234 808492 "FFNBP" 808953 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-356 798660 803311 803522 "FFNB" 803860 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-355 797492 797690 798005 "FFINTBAS" 798457 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-354 793561 795781 795809 "FFIELDC" 796429 T FFIELDC (NIL) -9 NIL 796805 NIL) (-353 792223 792594 793091 "FFIELDC-" 793096 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-352 791792 791838 791962 "FFHOM" 792165 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-351 789487 789974 790491 "FFF" 791307 NIL FFF (NIL T) -7 NIL NIL NIL) (-350 785105 789229 789330 "FFCGX" 789430 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-349 780727 784837 784944 "FFCGP" 785048 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-348 775910 780454 780562 "FFCG" 780663 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-347 757306 766387 766473 "FFCAT" 771638 NIL FFCAT (NIL T T T) -9 NIL 773089 NIL) (-346 752503 753551 754865 "FFCAT-" 756095 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-345 751914 751957 752192 "FFCAT2" 752454 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-344 741237 744886 746106 "FEXPR" 750766 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-343 740237 740672 740713 "FEVALAB" 740797 NIL FEVALAB (NIL T) -9 NIL 741058 NIL) (-342 739396 739606 739944 "FEVALAB-" 739949 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-341 737962 738779 738982 "FDIV" 739295 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-340 734982 735723 735838 "FDIVCAT" 737406 NIL FDIVCAT (NIL T T T T) -9 NIL 737843 NIL) (-339 734744 734771 734941 "FDIVCAT-" 734946 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-338 733964 734051 734328 "FDIV2" 734651 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-337 732938 733259 733461 "FCTRDATA" 733782 T FCTRDATA (NIL) -8 NIL NIL NIL) (-336 731624 731883 732172 "FCPAK1" 732669 T FCPAK1 (NIL) -7 NIL NIL NIL) (-335 730723 731124 731265 "FCOMP" 731515 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-334 714428 717873 721411 "FC" 727205 T FC (NIL) -8 NIL NIL NIL) (-333 706791 710819 710859 "FAXF" 712661 NIL FAXF (NIL T) -9 NIL 713353 NIL) (-332 704067 704725 705550 "FAXF-" 706015 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-331 699119 703443 703619 "FARRAY" 703924 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-330 694013 696080 696133 "FAMR" 697156 NIL FAMR (NIL T T) -9 NIL 697616 NIL) (-329 692903 693205 693640 "FAMR-" 693645 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-328 692072 692825 692878 "FAMONOID" 692883 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-327 689858 690568 690621 "FAMONC" 691562 NIL FAMONC (NIL T T) -9 NIL 691948 NIL) (-326 688522 689612 689749 "FAGROUP" 689754 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-325 686317 686636 687039 "FACUTIL" 688203 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-324 685416 685601 685823 "FACTFUNC" 686127 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-323 677838 684719 684918 "EXPUPXS" 685272 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-322 675321 675861 676447 "EXPRTUBE" 677272 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-321 671592 672184 672914 "EXPRODE" 674660 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-320 657077 670241 670670 "EXPR" 671196 NIL EXPR (NIL T) -8 NIL NIL NIL) (-319 651631 652218 653024 "EXPR2UPS" 656375 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-318 651263 651320 651429 "EXPR2" 651568 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-317 642651 650414 650705 "EXPEXPAN" 651099 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-316 642451 642608 642637 "EXIT" 642642 T EXIT (NIL) -8 NIL NIL NIL) (-315 641931 642175 642266 "EXITAST" 642380 T EXITAST (NIL) -8 NIL NIL NIL) (-314 641558 641620 641733 "EVALCYC" 641863 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-313 641099 641217 641258 "EVALAB" 641428 NIL EVALAB (NIL T) -9 NIL 641532 NIL) (-312 640580 640702 640923 "EVALAB-" 640928 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-311 637948 639250 639278 "EUCDOM" 639833 T EUCDOM (NIL) -9 NIL 640183 NIL) (-310 636353 636795 637385 "EUCDOM-" 637390 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-309 623891 626651 629401 "ESTOOLS" 633623 T ESTOOLS (NIL) -7 NIL NIL NIL) (-308 623523 623580 623689 "ESTOOLS2" 623828 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-307 623274 623316 623396 "ESTOOLS1" 623475 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-306 617311 618919 618947 "ES" 621715 T ES (NIL) -9 NIL 623125 NIL) (-305 612258 613545 615362 "ES-" 615526 NIL ES- (NIL T) -8 NIL NIL NIL) (-304 608632 609393 610173 "ESCONT" 611498 T ESCONT (NIL) -7 NIL NIL NIL) (-303 608377 608409 608491 "ESCONT1" 608594 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-302 608052 608102 608202 "ES2" 608321 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-301 607682 607740 607849 "ES1" 607988 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-300 606898 607027 607203 "ERROR" 607526 T ERROR (NIL) -7 NIL NIL NIL) (-299 600290 606757 606848 "EQTBL" 606853 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-298 592793 595604 597053 "EQ" 598874 NIL -2099 (NIL T) -8 NIL NIL NIL) (-297 592425 592482 592591 "EQ2" 592730 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-296 587715 588763 589856 "EP" 591364 NIL EP (NIL T) -7 NIL NIL NIL) (-295 586315 586606 586912 "ENV" 587429 T ENV (NIL) -8 NIL NIL NIL) (-294 585409 585963 585991 "ENTIRER" 585996 T ENTIRER (NIL) -9 NIL 586042 NIL) (-293 581876 583364 583734 "EMR" 585208 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-292 581020 581205 581259 "ELTAGG" 581639 NIL ELTAGG (NIL T T) -9 NIL 581850 NIL) (-291 580739 580801 580942 "ELTAGG-" 580947 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-290 580528 580557 580611 "ELTAB" 580695 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-289 579654 579800 579999 "ELFUTS" 580379 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-288 579396 579452 579480 "ELEMFUN" 579585 T ELEMFUN (NIL) -9 NIL NIL NIL) (-287 579266 579287 579355 "ELEMFUN-" 579360 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-286 574110 577366 577407 "ELAGG" 578347 NIL ELAGG (NIL T) -9 NIL 578810 NIL) (-285 572395 572829 573492 "ELAGG-" 573497 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-284 571707 571844 572000 "ELABOR" 572259 T ELABOR (NIL) -8 NIL NIL NIL) (-283 570368 570647 570941 "ELABEXPR" 571433 T ELABEXPR (NIL) -8 NIL NIL NIL) (-282 563232 565035 565862 "EFUPXS" 569644 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-281 556682 558483 559293 "EFULS" 562508 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-280 554167 554525 554997 "EFSTRUC" 556314 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-279 543958 545524 547072 "EF" 552682 NIL EF (NIL T T) -7 NIL NIL NIL) (-278 543032 543443 543592 "EAB" 543829 T EAB (NIL) -8 NIL NIL NIL) (-277 542214 542991 543019 "E04UCFA" 543024 T E04UCFA (NIL) -8 NIL NIL NIL) (-276 541396 542173 542201 "E04NAFA" 542206 T E04NAFA (NIL) -8 NIL NIL NIL) (-275 540578 541355 541383 "E04MBFA" 541388 T E04MBFA (NIL) -8 NIL NIL NIL) (-274 539760 540537 540565 "E04JAFA" 540570 T E04JAFA (NIL) -8 NIL NIL NIL) (-273 538944 539719 539747 "E04GCFA" 539752 T E04GCFA (NIL) -8 NIL NIL NIL) (-272 538128 538903 538931 "E04FDFA" 538936 T E04FDFA (NIL) -8 NIL NIL NIL) (-271 537310 538087 538115 "E04DGFA" 538120 T E04DGFA (NIL) -8 NIL NIL NIL) (-270 531483 532835 534199 "E04AGNT" 535966 T E04AGNT (NIL) -7 NIL NIL NIL) (-269 530163 530669 530709 "DVARCAT" 531184 NIL DVARCAT (NIL T) -9 NIL 531383 NIL) (-268 529367 529579 529893 "DVARCAT-" 529898 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-267 522504 529166 529295 "DSMP" 529300 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-266 517285 518449 519517 "DROPT" 521456 T DROPT (NIL) -8 NIL NIL NIL) (-265 516950 517009 517107 "DROPT1" 517220 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-264 512065 513191 514328 "DROPT0" 515833 T DROPT0 (NIL) -7 NIL NIL NIL) (-263 510410 510735 511121 "DRAWPT" 511699 T DRAWPT (NIL) -7 NIL NIL NIL) (-262 504997 505920 506999 "DRAW" 509384 NIL DRAW (NIL T) -7 NIL NIL NIL) (-261 504630 504683 504801 "DRAWHACK" 504938 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-260 503361 503630 503921 "DRAWCX" 504359 T DRAWCX (NIL) -7 NIL NIL NIL) (-259 502876 502945 503096 "DRAWCURV" 503287 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-258 493344 495306 497421 "DRAWCFUN" 500781 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-257 490108 492037 492078 "DQAGG" 492707 NIL DQAGG (NIL T) -9 NIL 492981 NIL) (-256 478232 484701 484784 "DPOLCAT" 486636 NIL DPOLCAT (NIL T T T T) -9 NIL 487181 NIL) (-255 473068 474417 476375 "DPOLCAT-" 476380 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-254 466190 472929 473027 "DPMO" 473032 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-253 459215 465970 466137 "DPMM" 466142 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-252 458693 458907 459005 "DOMTMPLT" 459137 T DOMTMPLT (NIL) -8 NIL NIL NIL) (-251 458126 458495 458575 "DOMCTOR" 458633 T DOMCTOR (NIL) -8 NIL NIL NIL) (-250 457338 457606 457757 "DOMAIN" 457995 T DOMAIN (NIL) -8 NIL NIL NIL) (-249 451326 456973 457125 "DMP" 457239 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-248 450926 450982 451126 "DLP" 451264 NIL DLP (NIL T) -7 NIL NIL NIL) (-247 444748 450253 450443 "DLIST" 450768 NIL DLIST (NIL T) -8 NIL NIL NIL) (-246 441545 443601 443642 "DLAGG" 444192 NIL DLAGG (NIL T) -9 NIL 444422 NIL) (-245 440221 440885 440913 "DIVRING" 441005 T DIVRING (NIL) -9 NIL 441088 NIL) (-244 439458 439648 439948 "DIVRING-" 439953 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-243 437560 437917 438323 "DISPLAY" 439072 T DISPLAY (NIL) -7 NIL NIL NIL) (-242 431448 437474 437537 "DIRPROD" 437542 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-241 430296 430499 430764 "DIRPROD2" 431241 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-240 419071 425077 425130 "DIRPCAT" 425540 NIL DIRPCAT (NIL NIL T) -9 NIL 426380 NIL) (-239 416397 417039 417920 "DIRPCAT-" 418257 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-238 415684 415844 416030 "DIOSP" 416231 T DIOSP (NIL) -7 NIL NIL NIL) (-237 412339 414596 414637 "DIOPS" 415071 NIL DIOPS (NIL T) -9 NIL 415300 NIL) (-236 411888 412002 412193 "DIOPS-" 412198 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-235 410711 411339 411367 "DIFRING" 411554 T DIFRING (NIL) -9 NIL 411664 NIL) (-234 410357 410434 410586 "DIFRING-" 410591 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-233 408093 409365 409406 "DIFEXT" 409769 NIL DIFEXT (NIL T) -9 NIL 410063 NIL) (-232 406378 406806 407472 "DIFEXT-" 407477 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-231 403653 405910 405951 "DIAGG" 405956 NIL DIAGG (NIL T) -9 NIL 405976 NIL) (-230 403037 403194 403446 "DIAGG-" 403451 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-229 398454 401996 402273 "DHMATRIX" 402806 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-228 394066 394975 395985 "DFSFUN" 397464 T DFSFUN (NIL) -7 NIL NIL NIL) (-227 389145 392997 393309 "DFLOAT" 393774 T DFLOAT (NIL) -8 NIL NIL NIL) (-226 387408 387689 388078 "DFINTTLS" 388853 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-225 384437 385429 385829 "DERHAM" 387074 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-224 382238 384212 384301 "DEQUEUE" 384381 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-223 381492 381625 381808 "DEGRED" 382100 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-222 377922 378667 379513 "DEFINTRF" 380720 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-221 375477 375946 376538 "DEFINTEF" 377441 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-220 374827 375097 375212 "DEFAST" 375382 T DEFAST (NIL) -8 NIL NIL NIL) (-219 368829 374420 374570 "DECIMAL" 374697 T DECIMAL (NIL) -8 NIL NIL NIL) (-218 366341 366799 367305 "DDFACT" 368373 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-217 365937 365980 366131 "DBLRESP" 366292 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-216 363809 364170 364530 "DBASE" 365704 NIL DBASE (NIL T) -8 NIL NIL NIL) (-215 363051 363289 363435 "DATAARY" 363708 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-214 362157 363010 363038 "D03FAFA" 363043 T D03FAFA (NIL) -8 NIL NIL NIL) (-213 361264 362116 362144 "D03EEFA" 362149 T D03EEFA (NIL) -8 NIL NIL NIL) (-212 359214 359680 360169 "D03AGNT" 360795 T D03AGNT (NIL) -7 NIL NIL NIL) (-211 358503 359173 359201 "D02EJFA" 359206 T D02EJFA (NIL) -8 NIL NIL NIL) (-210 357792 358462 358490 "D02CJFA" 358495 T D02CJFA (NIL) -8 NIL NIL NIL) (-209 357081 357751 357779 "D02BHFA" 357784 T D02BHFA (NIL) -8 NIL NIL NIL) (-208 356370 357040 357068 "D02BBFA" 357073 T D02BBFA (NIL) -8 NIL NIL NIL) (-207 349567 351156 352762 "D02AGNT" 354784 T D02AGNT (NIL) -7 NIL NIL NIL) (-206 347335 347858 348404 "D01WGTS" 349041 T D01WGTS (NIL) -7 NIL NIL NIL) (-205 346402 347294 347322 "D01TRNS" 347327 T D01TRNS (NIL) -8 NIL NIL NIL) (-204 345470 346361 346389 "D01GBFA" 346394 T D01GBFA (NIL) -8 NIL NIL NIL) (-203 344538 345429 345457 "D01FCFA" 345462 T D01FCFA (NIL) -8 NIL NIL NIL) (-202 343606 344497 344525 "D01ASFA" 344530 T D01ASFA (NIL) -8 NIL NIL NIL) (-201 342674 343565 343593 "D01AQFA" 343598 T D01AQFA (NIL) -8 NIL NIL NIL) (-200 341742 342633 342661 "D01APFA" 342666 T D01APFA (NIL) -8 NIL NIL NIL) (-199 340810 341701 341729 "D01ANFA" 341734 T D01ANFA (NIL) -8 NIL NIL NIL) (-198 339878 340769 340797 "D01AMFA" 340802 T D01AMFA (NIL) -8 NIL NIL NIL) (-197 338946 339837 339865 "D01ALFA" 339870 T D01ALFA (NIL) -8 NIL NIL NIL) (-196 338014 338905 338933 "D01AKFA" 338938 T D01AKFA (NIL) -8 NIL NIL NIL) (-195 337082 337973 338001 "D01AJFA" 338006 T D01AJFA (NIL) -8 NIL NIL NIL) (-194 330377 331930 333491 "D01AGNT" 335541 T D01AGNT (NIL) -7 NIL NIL NIL) (-193 329714 329842 329994 "CYCLOTOM" 330245 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-192 326448 327162 327889 "CYCLES" 329007 T CYCLES (NIL) -7 NIL NIL NIL) (-191 325760 325894 326065 "CVMP" 326309 NIL CVMP (NIL T) -7 NIL NIL NIL) (-190 323601 323859 324228 "CTRIGMNP" 325488 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-189 323037 323395 323468 "CTOR" 323548 T CTOR (NIL) -8 NIL NIL NIL) (-188 322546 322768 322869 "CTORKIND" 322956 T CTORKIND (NIL) -8 NIL NIL NIL) (-187 321837 322153 322181 "CTORCAT" 322363 T CTORCAT (NIL) -9 NIL 322476 NIL) (-186 321435 321546 321705 "CTORCAT-" 321710 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-185 320897 321109 321217 "CTORCALL" 321359 NIL CTORCALL (NIL T) -8 NIL NIL NIL) (-184 320271 320370 320523 "CSTTOOLS" 320794 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-183 316070 316727 317485 "CRFP" 319583 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-182 315545 315791 315883 "CRCEAST" 315998 T CRCEAST (NIL) -8 NIL NIL NIL) (-181 314592 314777 315005 "CRAPACK" 315349 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-180 313976 314077 314281 "CPMATCH" 314468 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-179 313701 313729 313835 "CPIMA" 313942 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-178 310049 310721 311440 "COORDSYS" 313036 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-177 309461 309582 309724 "CONTOUR" 309927 T CONTOUR (NIL) -8 NIL NIL NIL) (-176 305352 307464 307956 "CONTFRAC" 309001 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-175 305232 305253 305281 "CONDUIT" 305318 T CONDUIT (NIL) -9 NIL NIL NIL) (-174 304320 304874 304902 "COMRING" 304907 T COMRING (NIL) -9 NIL 304959 NIL) (-173 303374 303678 303862 "COMPPROP" 304156 T COMPPROP (NIL) -8 NIL NIL NIL) (-172 303035 303070 303198 "COMPLPAT" 303333 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-171 293326 302844 302953 "COMPLEX" 302958 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-170 292962 293019 293126 "COMPLEX2" 293263 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-169 292301 292422 292582 "COMPILER" 292822 T COMPILER (NIL) -8 NIL NIL NIL) (-168 292019 292054 292152 "COMPFACT" 292260 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-167 276099 286093 286133 "COMPCAT" 287137 NIL COMPCAT (NIL T) -9 NIL 288485 NIL) (-166 265611 268538 272165 "COMPCAT-" 272521 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-165 265340 265368 265471 "COMMUPC" 265577 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-164 265134 265168 265227 "COMMONOP" 265301 T COMMONOP (NIL) -7 NIL NIL NIL) (-163 264690 264885 264972 "COMM" 265067 T COMM (NIL) -8 NIL NIL NIL) (-162 264266 264494 264569 "COMMAAST" 264635 T COMMAAST (NIL) -8 NIL NIL NIL) (-161 263515 263709 263737 "COMBOPC" 264075 T COMBOPC (NIL) -9 NIL 264250 NIL) (-160 262411 262621 262863 "COMBINAT" 263305 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-159 258868 259442 260069 "COMBF" 261833 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-158 257626 257984 258219 "COLOR" 258653 T COLOR (NIL) -8 NIL NIL NIL) (-157 257102 257347 257439 "COLONAST" 257554 T COLONAST (NIL) -8 NIL NIL NIL) (-156 256742 256789 256914 "CMPLXRT" 257049 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-155 256190 256442 256541 "CLLCTAST" 256663 T CLLCTAST (NIL) -8 NIL NIL NIL) (-154 251689 252720 253800 "CLIP" 255130 T CLIP (NIL) -7 NIL NIL NIL) (-153 250030 250790 251030 "CLIF" 251516 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-152 246205 248176 248217 "CLAGG" 249146 NIL CLAGG (NIL T) -9 NIL 249682 NIL) (-151 244627 245084 245667 "CLAGG-" 245672 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-150 244171 244256 244396 "CINTSLPE" 244536 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-149 241672 242143 242691 "CHVAR" 243699 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-148 240846 241400 241428 "CHARZ" 241433 T CHARZ (NIL) -9 NIL 241448 NIL) (-147 240600 240640 240718 "CHARPOL" 240800 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-146 239658 240245 240273 "CHARNZ" 240320 T CHARNZ (NIL) -9 NIL 240376 NIL) (-145 237564 238312 238665 "CHAR" 239325 T CHAR (NIL) -8 NIL NIL NIL) (-144 237290 237351 237379 "CFCAT" 237490 T CFCAT (NIL) -9 NIL NIL NIL) (-143 236531 236642 236825 "CDEN" 237174 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-142 232496 235684 235964 "CCLASS" 236271 T CCLASS (NIL) -8 NIL NIL NIL) (-141 231747 231904 232081 "CATEGORY" 232339 T -10 (NIL) -8 NIL NIL NIL) (-140 231320 231666 231714 "CATCTOR" 231719 T CATCTOR (NIL) -8 NIL NIL NIL) (-139 230771 231023 231121 "CATAST" 231242 T CATAST (NIL) -8 NIL NIL NIL) (-138 230247 230492 230584 "CASEAST" 230699 T CASEAST (NIL) -8 NIL NIL NIL) (-137 225256 226276 227029 "CARTEN" 229550 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-136 224364 224512 224733 "CARTEN2" 225103 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-135 222680 223514 223771 "CARD" 224127 T CARD (NIL) -8 NIL NIL NIL) (-134 222256 222484 222559 "CAPSLAST" 222625 T CAPSLAST (NIL) -8 NIL NIL NIL) (-133 221760 221968 221996 "CACHSET" 222128 T CACHSET (NIL) -9 NIL 222206 NIL) (-132 221230 221552 221580 "CABMON" 221630 T CABMON (NIL) -9 NIL 221686 NIL) (-131 220703 220934 221044 "BYTEORD" 221140 T BYTEORD (NIL) -8 NIL NIL NIL) (-130 219685 220237 220379 "BYTE" 220542 T BYTE (NIL) -8 NIL NIL 220664) (-129 215035 219190 219362 "BYTEBUF" 219533 T BYTEBUF (NIL) -8 NIL NIL NIL) (-128 212544 214727 214834 "BTREE" 214961 NIL BTREE (NIL T) -8 NIL NIL NIL) (-127 209993 212192 212314 "BTOURN" 212454 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-126 207363 209463 209504 "BTCAT" 209572 NIL BTCAT (NIL T) -9 NIL 209649 NIL) (-125 207030 207110 207259 "BTCAT-" 207264 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-124 202440 206319 206347 "BTAGG" 206461 T BTAGG (NIL) -9 NIL 206571 NIL) (-123 201930 202055 202261 "BTAGG-" 202266 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-122 198925 201208 201423 "BSTREE" 201747 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-121 198063 198189 198373 "BRILL" 198781 NIL BRILL (NIL T) -7 NIL NIL NIL) (-120 194715 196789 196830 "BRAGG" 197479 NIL BRAGG (NIL T) -9 NIL 197737 NIL) (-119 193244 193650 194205 "BRAGG-" 194210 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-118 186471 192588 192773 "BPADICRT" 193091 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-117 184786 186408 186453 "BPADIC" 186458 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-116 184484 184514 184628 "BOUNDZRO" 184750 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-115 179712 180910 181822 "BOP" 183592 T BOP (NIL) -8 NIL NIL NIL) (-114 177493 177897 178372 "BOP1" 179270 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-113 177194 177255 177283 "BOOLE" 177394 T BOOLE (NIL) -9 NIL 177476 NIL) (-112 176019 176768 176917 "BOOLEAN" 177065 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 175298 175702 175756 "BMODULE" 175761 NIL BMODULE (NIL T T) -9 NIL 175826 NIL) (-110 171099 175096 175169 "BITS" 175245 T BITS (NIL) -8 NIL NIL NIL) (-109 170520 170639 170779 "BINDING" 170979 T BINDING (NIL) -8 NIL NIL NIL) (-108 164525 170115 170264 "BINARY" 170391 T BINARY (NIL) -8 NIL NIL NIL) (-107 162305 163780 163821 "BGAGG" 164081 NIL BGAGG (NIL T) -9 NIL 164218 NIL) (-106 162136 162168 162259 "BGAGG-" 162264 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 161207 161520 161725 "BFUNCT" 161951 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159897 160075 160363 "BEZOUT" 161031 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 156366 158749 159079 "BBTREE" 159600 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 156100 156153 156181 "BASTYPE" 156300 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155952 155981 156054 "BASTYPE-" 156059 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 155386 155462 155614 "BALFACT" 155863 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 154242 154801 154987 "AUTOMOR" 155231 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153968 153973 153999 "ATTREG" 154004 T ATTREG (NIL) -9 NIL NIL NIL) (-97 152220 152665 153017 "ATTRBUT" 153634 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151828 152048 152114 "ATTRAST" 152172 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 151364 151477 151503 "ATRIG" 151704 T ATRIG (NIL) -9 NIL NIL NIL) (-94 151173 151214 151301 "ATRIG-" 151306 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150818 151004 151030 "ASTCAT" 151035 T ASTCAT (NIL) -9 NIL 151065 NIL) (-92 150545 150604 150723 "ASTCAT-" 150728 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148694 150321 150409 "ASTACK" 150488 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 147199 147496 147861 "ASSOCEQ" 148376 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 146231 146858 146982 "ASP9" 147106 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145994 146179 146218 "ASP8" 146223 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144862 145599 145741 "ASP80" 145883 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143760 144497 144629 "ASP7" 144761 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142714 143437 143555 "ASP78" 143673 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141683 142394 142511 "ASP77" 142628 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 140595 141321 141452 "ASP74" 141583 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 139495 140230 140362 "ASP73" 140494 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138599 139321 139421 "ASP6" 139426 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 137544 138276 138394 "ASP55" 138512 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 136493 137218 137337 "ASP50" 137456 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 135581 136194 136304 "ASP4" 136414 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134669 135282 135392 "ASP49" 135502 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 133453 134208 134376 "ASP42" 134558 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 132229 132986 133156 "ASP41" 133340 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 131179 131906 132024 "ASP35" 132142 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130944 131127 131166 "ASP34" 131171 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130681 130748 130824 "ASP33" 130899 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 129574 130316 130448 "ASP31" 130580 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 129339 129522 129561 "ASP30" 129566 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 129074 129143 129219 "ASP29" 129294 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128839 129022 129061 "ASP28" 129066 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128604 128787 128826 "ASP27" 128831 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127688 128302 128413 "ASP24" 128524 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126764 127490 127602 "ASP20" 127607 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125852 126465 126575 "ASP1" 126685 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124794 125526 125645 "ASP19" 125764 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 124531 124598 124674 "ASP12" 124749 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 123383 124130 124274 "ASP10" 124418 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 121234 123227 123318 "ARRAY2" 123323 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116999 120882 120996 "ARRAY1" 121151 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 116031 116204 116425 "ARRAY12" 116822 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 110343 112261 112336 "ARR2CAT" 114966 NIL ARR2CAT (NIL T T T) -9 NIL 115724 NIL) (-56 107777 108521 109475 "ARR2CAT-" 109480 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 107094 107404 107529 "ARITY" 107670 T ARITY (NIL) -8 NIL NIL NIL) (-54 105870 106022 106321 "APPRULE" 106930 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105521 105569 105688 "APPLYORE" 105816 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104875 105114 105234 "ANY" 105419 T ANY (NIL) -8 NIL NIL NIL) (-51 104153 104276 104433 "ANY1" 104749 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101683 102590 102917 "ANTISYM" 103877 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 101175 101390 101486 "ANON" 101605 T ANON (NIL) -8 NIL NIL NIL) (-48 95424 99714 100168 "AN" 100739 T AN (NIL) -8 NIL NIL NIL) (-47 91322 92710 92761 "AMR" 93509 NIL AMR (NIL T T) -9 NIL 94109 NIL) (-46 90434 90655 91018 "AMR-" 91023 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74873 90351 90412 "ALIST" 90417 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71676 74467 74636 "ALGSC" 74791 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68231 68786 69393 "ALGPKG" 71116 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67508 67609 67793 "ALGMFACT" 68117 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63543 64122 64716 "ALGMANIP" 67092 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54913 63169 63319 "ALGFF" 63476 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 54109 54240 54419 "ALGFACT" 54771 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 53050 53650 53688 "ALGEBRA" 53693 NIL ALGEBRA (NIL T) -9 NIL 53734 NIL) (-37 52768 52827 52959 "ALGEBRA-" 52964 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34861 50770 50822 "ALAGG" 50958 NIL ALAGG (NIL T T) -9 NIL 51119 NIL) (-35 34397 34510 34536 "AHYP" 34737 T AHYP (NIL) -9 NIL NIL NIL) (-34 33328 33576 33602 "AGG" 34101 T AGG (NIL) -9 NIL 34380 NIL) (-33 32762 32924 33138 "AGG-" 33143 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30568 30991 31396 "AF" 32404 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 30048 30293 30383 "ADDAST" 30496 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29316 29575 29731 "ACPLOT" 29910 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18639 26443 26481 "ACFS" 27088 NIL ACFS (NIL T) -9 NIL 27327 NIL) (-28 16666 17156 17918 "ACFS-" 17923 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12784 14713 14739 "ACF" 15618 T ACF (NIL) -9 NIL 16031 NIL) (-26 11488 11822 12315 "ACF-" 12320 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 11060 11255 11281 "ABELSG" 11373 T ABELSG (NIL) -9 NIL 11438 NIL) (-24 10927 10952 11018 "ABELSG-" 11023 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10270 10557 10583 "ABELMON" 10753 T ABELMON (NIL) -9 NIL 10865 NIL) (-22 9934 10018 10156 "ABELMON-" 10161 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9282 9654 9680 "ABELGRP" 9752 T ABELGRP (NIL) -9 NIL 9827 NIL) (-20 8745 8874 9090 "ABELGRP-" 9095 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4334 8084 8123 "A1AGG" 8128 NIL A1AGG (NIL T) -9 NIL 8168 NIL) (-18 30 1252 2814 "A1AGG-" 2819 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
diff --git a/src/share/algebra/operation.daase b/src/share/algebra/operation.daase
index 6b307f17..16f49c90 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,65 +1,69 @@
-(733502 . 3480528376)
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -1939 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(733547 . 3480551178)
+(((*1 *2 *1)
+ (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227))
+ (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-562))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562))
- (-4 *3 (-1058)))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856))
- (-5 *1 (-1197 *4)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
+ (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *1) (-5 *1 (-158)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-757)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
(((*1 *1 *1 *1) (-4 *1 (-667))))
(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3011 (-570))))
+ (-4 *1 (-436 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-115)) (-4 *4 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3011 (-570))))
+ (-4 *1 (-436 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3011 (-570))))
+ (-4 *1 (-436 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3011 (-777))))
+ (-5 *1 (-899 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-2 (|:| |var| *5) (|:| -3011 (-777))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
+ (-4 *7 (-956 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -3011 (-570))))
+ (-5 *1 (-957 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $))
+ (-15 -4413 (*7 $))))))))
(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1230)) (-4 *5 (-1252 (-413 *2)))
- (-4 *2 (-1252 *4)) (-5 *1 (-346 *3 *4 *2 *5))
- (-4 *3 (-347 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1230))
- (-4 *4 (-1252 (-413 *2))) (-4 *2 (-1252 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2))
- (-4 *2 (-1267 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1252 *3))
- (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1267 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2))
- (-4 *2 (-1267 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148)))
- (-5 *1 (-1162 *3)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-798)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-545 *4 *2 *5 *6))
- (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))))
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
- (-12 (-4 *3 (-1001 *2)) (-4 *4 (-1252 *3)) (-4 *2 (-311))
+ (-12 (-4 *3 (-1001 *2)) (-4 *4 (-1253 *3)) (-4 *2 (-311))
(-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3)))))
((*1 *2 *1)
(-12 (-4 *3 (-562)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1)))
@@ -72,53 +76,47 @@
(-12 (-4 *4 (-174)) (-4 *2 (|SubsetCategory| (-732) *4))
(-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4))))
((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))))
-(((*1 *2 *3) (-12 (-5 *3 (-650 (-52))) (-5 *2 (-1281)) (-5 *1 (-869)))))
-(((*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1226))))
+(((*1 *2 *3) (-12 (-5 *3 (-650 (-52))) (-5 *2 (-1282)) (-5 *1 (-869)))))
+(((*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227))))
((*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856))))
((*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856))))
((*1 *1 *1) (-5 *1 (-868)))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-570))) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-562)) (-4 *8 (-956 *7 *5 *6))
+ (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *9) (|:| |radicand| *9)))
+ (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777))
+ (-4 *9
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-799))
- (-4 *5 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *6 (-562))
- (-5 *2 (-2 (|:| -3947 (-959 *6)) (|:| -1718 (-959 *6))))
- (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
+ (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
(((*1 *1 *1 *1) (-4 *1 (-667))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-618 *5))) (-4 *4 (-1109)) (-5 *2 (-618 *5))
- (-5 *1 (-579 *4 *5)) (-4 *5 (-436 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7)))
- (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-916)) (-4 *5 (-1252 *4)) (-5 *2 (-424 (-1182 *5)))
- (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4))
- (-14 *3 (-928)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1276 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368))
- (-4 *1 (-730 *5 *6)) (-4 *5 (-174)) (-4 *6 (-1252 *5))
- (-5 *2 (-695 *5)))))
+ (-12 (-4 *5 (-368)) (-4 *7 (-1253 *5)) (-4 *4 (-730 *5 *7))
+ (-5 *2 (-2 (|:| -2042 (-695 *6)) (|:| |vec| (-1277 *5))))
+ (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4))
+ (-5 *1 (-270)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
- (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4))
- (-5 *2 (-1276 *6)) (-5 *1 (-419 *3 *4 *5 *6))
+ (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4))
+ (-5 *2 (-1277 *6)) (-5 *1 (-419 *3 *4 *5 *6))
(-4 *6 (-13 (-415 *4 *5) (-1047 *4)))))
((*1 *2 *1)
(-12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1)))
@@ -131,31 +129,32 @@
(-12 (-4 *3 (-174)) (-4 *2 (-723 *3)) (-5 *1 (-668 *2 *3 *4))
(-4 *4 (|SubsetCategory| (-732) *3))))
((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))))
-(((*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1226))))
+(((*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227))))
((*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856))))
((*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856))))
((*1 *1 *1) (-5 *1 (-868)))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1267 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112))
- (-5 *1 (-678 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *1 *1) (-4 *1 (-144)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2))
+ (-4 *3 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-171 *4)))
+ (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
+(((*1 *1) (-5 *1 (-142))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570)))
+ (-5 *1 (-890)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
(((*1 *1 *2)
(-12 (-5 *2 (-650 (-570))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
(-14 *4 (-650 (-1186)))))
@@ -163,11 +162,11 @@
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1) (-4 *1 (-288)))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
@@ -184,32 +183,70 @@
(-5 *1 (-1172 *3))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570)))))
- (-4 *5 (-856)) (-5 *1 (-1292 *4 *5 *2)) (-4 *2 (-1297 *5 *4))))
+ (-4 *5 (-856)) (-5 *1 (-1293 *4 *5 *2)) (-4 *2 (-1298 *5 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-1296 *3 *4))
+ (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4))
(-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
+(((*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-298 (-849 *3))) (-4 *3 (-13 (-27) (-1212) (-436 *5)))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (-849 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-849 *3) "failed")))
+ "failed"))
+ (-5 *1 (-642 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-298 *3)) (-5 *5 (-1168))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-849 *3)) (-5 *1 (-642 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-298 (-849 (-959 *5)))) (-4 *5 (-458))
+ (-5 *2
+ (-3 (-849 (-413 (-959 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-849 (-413 (-959 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-643 *5)) (-5 *3 (-413 (-959 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5)))
+ (-4 *5 (-458))
+ (-5 *2
+ (-3 (-849 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-849 *3) "failed")))
+ "failed"))
+ (-5 *1 (-643 *5))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-298 (-413 (-959 *6)))) (-5 *5 (-1168))
+ (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-849 *3))
+ (-5 *1 (-643 *6)))))
(((*1 *1 *1) (-5 *1 (-542))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1874 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+ (|partial| -12
+ (-5 *2 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 (-899 *3)))))
+ (-5 *1 (-899 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-899 *4)))
+ (-5 *1 (-899 *4)) (-4 *4 (-1109)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1226))))
+ (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-959 (-384))) (-5 *1 (-344 *3 *4 *5))
(-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186)))
@@ -262,47 +299,47 @@
((*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-4 *1 (-402))))
((*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-4 *1 (-402))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1276 (-413 (-959 (-570))))) (-4 *1 (-447))))
+ (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1276 (-413 (-959 (-384))))) (-4 *1 (-447))))
+ (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1276 (-959 (-570)))) (-4 *1 (-447))))
+ (|partial| -12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1276 (-959 (-384)))) (-4 *1 (-447))))
+ (|partial| -12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1276 (-320 (-570)))) (-4 *1 (-447))))
+ (|partial| -12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1276 (-320 (-384)))) (-4 *1 (-447))))
+ (|partial| -12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1252 *5))
+ (|partial| -12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1253 *5))
(-5 *2 (-1182 (-1182 *4))) (-5 *1 (-783 *4 *5 *6 *3 *7))
- (-4 *3 (-1252 *6)) (-14 *7 (-928))))
+ (-4 *3 (-1253 *6)) (-14 *7 (-928))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5))
(-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
(-4 *1 (-985 *3 *4 *5 *6))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
(|partial| -2740
(-12 (-5 *2 (-959 *3))
- (-12 (-1754 (-4 *3 (-38 (-413 (-570)))))
- (-1754 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186))))
+ (-12 (-1753 (-4 *3 (-38 (-413 (-570)))))
+ (-1753 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799))
(-4 *5 (-856)))
(-12 (-5 *2 (-959 *3))
- (-12 (-1754 (-4 *3 (-551))) (-1754 (-4 *3 (-38 (-413 (-570)))))
+ (-12 (-1753 (-4 *3 (-551))) (-1753 (-4 *3 (-38 (-413 (-570)))))
(-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799))
(-4 *5 (-856)))
(-12 (-5 *2 (-959 *3))
- (-12 (-1754 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570))))
+ (-12 (-1753 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570))))
(-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799))
(-4 *5 (-856)))))
((*1 *1 *2)
(|partial| -2740
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
- (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
+ (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
(-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
@@ -312,531 +349,142 @@
(|partial| -12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5))
(-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186)))
(-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-695 *7)) (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5))
- (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1276 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
- (-5 *2 (-1276 *4)) (-5 *1 (-644 *4 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-311))))
+ ((*1 *2 *1 *1)
+ (|partial| -12 (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |lm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3389 (-777)) (|:| -3831 (-777))))
+ (-5 *1 (-777))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8))))
- (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4448)) (-4 *1 (-495 *4))
- (-4 *4 (-1226)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
- ((*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-650 (-1276 *4))) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
- (-5 *2 (-650 (-1276 *3))))))
+ (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-5 *2 (-570))
+ (-5 *1 (-449 *5 *3 *6)) (-4 *3 (-1253 *5))
+ (-4 *6 (-13 (-410) (-1047 *5) (-368) (-1212) (-288)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5))
+ (-4 *3 (-1253 *4))
+ (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562))))
+ ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-570)) (-5 *4 (-424 *2)) (-4 *2 (-956 *7 *5 *6))
- (-5 *1 (-748 *5 *6 *7 *2)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-311)))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-419 *3 *4 *5 *6)) (-4 *6 (-1047 *4)) (-4 *3 (-311))
+ (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-4 *6 (-415 *4 *5))
+ (-14 *7 (-1277 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1277 *6)) (-4 *6 (-415 *4 *5)) (-4 *4 (-1001 *3))
+ (-4 *5 (-1253 *4)) (-4 *3 (-311)) (-5 *1 (-420 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1186))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-650 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -3585 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1212) (-27) (-436 *8)))
+ (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570))
+ (-5 *2 (-650 *4)) (-5 *1 (-1023 *8 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 (-959 *6))) (-4 *6 (-562))
+ (-4 *2 (-956 (-413 (-959 *6)) *5 *4)) (-5 *1 (-738 *5 *4 *6 *2))
+ (-4 *5 (-799))
+ (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))))))
+(((*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-4 *7 (-956 *4 *6 *5))
+ (-5 *2
+ (-2 (|:| |sysok| (-112)) (|:| |z0| (-650 *7)) (|:| |n0| (-650 *7))))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))))
(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186)))
- (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
(((*1 *1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868)))
- (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868)))
+ (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868)))
+ (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868)))
(|:| |args| (-650 (-868)))))
(-5 *1 (-1186))))
((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-1186)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-13 (-311) (-148)))
- (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799))
- (-5 *2 (-650 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7))
- (-4 *7 (-956 *4 *6 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31))))
((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) ((*1 *1) (-4 *1 (-551)))
((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705))))
((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-545 *4 *2 *5 *6))
- (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-854)) (-4 *4 (-368)) (-5 *2 (-777))
- (-5 *1 (-952 *4 *5)) (-4 *5 (-1252 *4)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -2331 (-650 *1))))
- (-4 *1 (-372 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-459 *3 *4 *5 *6))
- (|:| -2331 (-650 (-459 *3 *4 *5 *6)))))
- (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1182 *6)) (-5 *3 (-570)) (-4 *6 (-311)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
- (-5 *2
- (-2 (|:| -3178 (-777)) (|:| |curves| (-777))
- (|:| |polygons| (-777)) (|:| |constructs| (-777)))))))
-(((*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1015)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-193)) (-5 *3 (-570))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-174))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *2 (-650 *3)) (-5 *1 (-931 *4 *5 *6 *3))
- (-4 *3 (-956 *4 *6 *5)))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |h| *6)
- (|:| |c1| (-413 *6)) (|:| |c2| (-413 *6)) (|:| -3607 *6)))
- (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-872 *4 *5 *6 *7))
- (-4 *4 (-1058)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 *3))
- (-14 *7 *3)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-4 *5 (-856)) (-4 *6 (-799))
- (-14 *8 (-650 *5)) (-5 *2 (-1281))
- (-5 *1 (-1288 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-956 *4 *6 *5))
- (-14 *9 (-650 *3)) (-14 *10 *3))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
- (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-330 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
- ((*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *3 (-856)) (-5 *2 (-777)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8))) (-4 *7 (-856))
- (-4 *8 (-311)) (-4 *6 (-799)) (-4 *9 (-956 *8 *6 *7))
- (-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-650 (-2 (|:| -3738 (-1182 *9)) (|:| -1907 (-570)))))))
- (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867))))
- ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5)))
- (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-777)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *5 (-1252 *4)) (-5 *2 (-1182 (-413 *5))) (-5 *1 (-621 *4 *5))
- (-5 *3 (-413 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-1182 (-413 *6))) (-5 *1 (-621 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1207)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1226)) (-4 *2 (-1109))
- (-4 *2 (-856)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 (-570)))
- (-5 *2 (-1276 (-570))) (-5 *1 (-1303 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1208 *4))
- (-4 *4 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-249 *4 *5))
- (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
- (-5 *1 (-754)))))
-(((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-174)) (-4 *2 (-23)) (-5 *1 (-293 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1252 *3)) (-14 *5 (-1 *4 *4 *2))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2))
- (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-717 *3 *2 *4 *5 *6)) (-4 *3 (-174))
- (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
- ((*1 *2)
- (-12 (-4 *2 (-1252 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-721 *3 *2 *4 *5 *6)) (-4 *3 (-174))
- (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
- ((*1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-220))))
- ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-445))))
- ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-844))))
- ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1124))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1191))) (-5 *3 (-1191)) (-5 *1 (-1127)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2))
- (-4 *2 (-13 (-27) (-1211) (-436 (-171 *3))))))
+ (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2))
+ (-4 *2 (-1268 *3))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1243 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1226)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |c| (-413 *6))
- (|:| -3607 *6)))
- (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4))
- (-4 *4 (-1252 *2)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-959 *6)) (-5 *4 (-1186))
- (-5 *5 (-849 *7))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-4 *7 (-13 (-1211) (-29 *6))) (-5 *1 (-226 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1182 *6)) (-5 *4 (-849 *6))
- (-4 *6 (-13 (-1211) (-29 *5)))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-226 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-1141 *4 *2))
- (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4448) (-6 -4449))))))
+ (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1253 *3))
+ (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1268 *5))))
((*1 *2 *2)
- (-12 (-4 *3 (-856)) (-4 *3 (-1226)) (-5 *1 (-1141 *3 *2))
- (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4448) (-6 -4449)))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-777)) (-4 *2 (-1109))
- (-5 *1 (-684 *2)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-799)) (-4 *2 (-956 *4 *5 *6)) (-5 *1 (-455 *4 *5 *6 *2))
- (-4 *4 (-458)) (-4 *6 (-856)))))
-(((*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058))))
- ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
- (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-650 (-777)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
- (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 (-777))))))
-(((*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-592 *3)) (-4 *3 (-368)))))
-(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -3282 *4))) (-5 *5 (-777))
- (-4 *4 (-956 *6 *7 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-455 *6 *7 *8 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1083))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *4)) (-4 *4 (-1058)) (-4 *2 (-1252 *4))
- (-5 *1 (-450 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-413 (-1182 (-320 *5)))) (-5 *3 (-1276 (-320 *5)))
- (-5 *4 (-570)) (-4 *5 (-562)) (-5 *1 (-1139 *5)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1276 (-570))) (-5 *3 (-570)) (-5 *1 (-1119))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1276 (-570))) (-5 *3 (-650 (-570))) (-5 *4 (-570))
- (-5 *1 (-1119)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856)))
- (-14 *3 (-650 (-1186))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-562))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))))
-(((*1 *1) (-5 *1 (-142))))
-(((*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174))))
- ((*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2))))
- ((*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799))
- (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))))
-(((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-777)) (-4 *3 (-1226)) (-4 *1 (-57 *3 *4 *5))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
- ((*1 *1) (-5 *1 (-173)))
- ((*1 *1) (-12 (-5 *1 (-215 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1109))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395))))
- ((*1 *1) (-5 *1 (-400)))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *1 (-657 *3)) (-4 *3 (-1226))))
- ((*1 *1)
- (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109))
- (-4 *4 (-672 *3))))
- ((*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109))))
- ((*1 *1 *2)
- (-12 (-5 *1 (-1151 *3 *2)) (-14 *3 (-777)) (-4 *2 (-1058))))
- ((*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058))))
- ((*1 *1 *1) (-5 *1 (-1186))) ((*1 *1) (-5 *1 (-1186)))
- ((*1 *1) (-5 *1 (-1206))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1226))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-657 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-1182 *4))) (-5 *3 (-1182 *4))
- (-4 *4 (-916)) (-5 *1 (-669 *4)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-306)) (-4 *2 (-1226))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-618 *1))) (-5 *3 (-650 *1)) (-4 *1 (-306))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *1))) (-4 *1 (-306))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-298 *1)) (-4 *1 (-306)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109))
- (-5 *2 (-650 (-2 (|:| -2223 *3) (|:| -3486 (-777))))))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *6))))
- (-5 *4 (-1035 (-849 (-570)))) (-5 *5 (-1186)) (-5 *7 (-413 (-570)))
- (-4 *6 (-1058)) (-5 *2 (-868)) (-5 *1 (-601 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
- (-14 *4 (-777)) (-4 *5 (-174)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-2 (|:| -2013 *3) (|:| -2223 *4))))
- (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *1 (-1202 *3 *4))))
- ((*1 *1) (-12 (-4 *1 (-1202 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
- (-14 *6 (-650 (-1186)))
- (-5 *2
- (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6)))))
- (-5 *1 (-634 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-777) *2)) (-5 *4 (-777)) (-4 *2 (-1109))
- (-5 *1 (-684 *2))))
+ (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2))
+ (-4 *2 (-1268 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-777) *3)) (-4 *3 (-1109)) (-5 *1 (-688 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856))))
- ((*1 *1 *1 *1)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148)))
+ (-5 *1 (-1162 *3)))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-650 *9)) (-5 *3 (-1 (-112) *9))
+ (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799))
+ (-4 *8 (-856)) (-5 *1 (-986 *6 *7 *8 *9)))))
+(((*1 *1 *1 *1)
(-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))
- (-5 *2 (-384)) (-5 *1 (-270))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-695 (-413 (-959 (-570)))))
- (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040))
- (-5 *3 (-320 (-570))))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1277)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
- (-5 *2 (-650 (-650 (-950 *3))))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *4 (-1058))
- (-4 *1 (-1143 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 (-650 (-950 *3)))) (-4 *3 (-1058))
- (-4 *1 (-1143 *3))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-112))
- (-4 *1 (-1143 *4)) (-4 *4 (-1058))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112))
- (-4 *1 (-1143 *4)) (-4 *4 (-1058))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-650 (-173)))
- (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-650 (-650 (-950 *5)))) (-5 *3 (-650 (-173)))
- (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
+ (-4 *4 (-856)) (-4 *2 (-562))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562)))))
(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
- (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9))
- (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6))
- (-4 *8 (-378 *7)) (-4 *9 (-378 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058))
- (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-368))))
- ((*1 *2 *2)
- (|partial| -12 (-4 *3 (-368)) (-4 *3 (-174)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
- (-4 *2 (-693 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-695 *2)) (-4 *2 (-368)) (-4 *2 (-1058))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1132 *2 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-240 *2 *3)) (-4 *5 (-240 *2 *3)) (-4 *3 (-368))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-1197 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-899 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1109))
- (-4 *5 (-1226)) (-5 *1 (-897 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-899 *4)) (-5 *3 (-650 (-1 (-112) *5))) (-4 *4 (-1109))
- (-4 *5 (-1226)) (-5 *1 (-897 *4 *5))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-899 *5)) (-5 *3 (-650 (-1186)))
- (-5 *4 (-1 (-112) (-650 *6))) (-4 *5 (-1109)) (-4 *6 (-1226))
- (-5 *1 (-897 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1226)) (-4 *4 (-1109))
- (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-1 (-112) *5))) (-4 *5 (-1226)) (-4 *4 (-1109))
- (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1226))
- (-5 *2 (-320 (-570))) (-5 *1 (-945 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-650 (-1 (-112) *5))) (-4 *5 (-1226))
- (-5 *2 (-320 (-570))) (-5 *1 (-945 *5))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1 (-112) (-650 *6)))
- (-4 *6 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))) (-4 *4 (-1109))
- (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
- (-5 *1 (-1085 *4 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1226)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-120 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-1252 *2)) (-4 *2 (-1252 *4)) (-5 *1 (-994 *4 *2 *3 *5))
- (-4 *4 (-354)) (-4 *5 (-730 *2 *3)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-378 *3)) (-4 *3 (-1226)) (-4 *3 (-856)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-378 *4)) (-4 *4 (-1226))
- (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))))
-(((*1 *1) (-5 *1 (-142))))
-(((*1 *1 *1) (-5 *1 (-112))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
+ (-5 *2
+ (-2 (|:| -1424 (-777)) (|:| |curves| (-777))
+ (|:| |polygons| (-777)) (|:| |constructs| (-777)))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -844,9 +492,9 @@
(-2
(|:| -2013
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
- (|:| -2223
+ (|:| -2224
(-2
(|:| |endPointContinuity|
(-3 (|:| |continuous| "Continuous at the end points")
@@ -862,7 +510,7 @@
(-3 (|:| |str| (-1166 (-227)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -3758
+ (|:| -1990
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite|
"The bottom of range is infinite")
@@ -872,18 +520,238 @@
(|:| |notEvaluated| "Range not yet evaluated"))))))))
(-5 *1 (-565))))
((*1 *2 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226))
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
(-5 *2 (-650 *4)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *2 *2 *3)
+ (|partial| -12
+ (-5 *3 (-650 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
+ (-4 *2 (-13 (-436 *4) (-1011))) (-4 *4 (-562))
+ (-5 *1 (-279 *4 *2)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-777)) (-5 *3 (-950 *4)) (-4 *1 (-1143 *4))
+ (-4 *4 (-1058))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-777)) (-5 *4 (-950 (-227))) (-5 *2 (-1282))
+ (-5 *1 (-1279)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-2 (|:| -3603 (-570)) (|:| -2773 (-650 *3))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-728)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-732)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
(-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
(-5 *2 (-1044)) (-5 *1 (-762)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4))
+ (-4 *2 (-1253 *4)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3))
+ (-4 *3 (-13 (-436 *4) (-1011))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
+ (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
+ (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-928))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-341 *4 *5 *6 *7)) (-4 *4 (-13 (-373) (-368)))
+ (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-4 *7 (-347 *4 *5 *6))
+ (-5 *2 (-777)) (-5 *1 (-398 *4 *5 *6 *7))))
+ ((*1 *2 *1) (-12 (-4 *1 (-408)) (-5 *2 (-839 (-928)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4))
+ (-4 *4 (-1253 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-746 *4 *3)) (-4 *4 (-1058))
+ (-4 *3 (-856))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856))
+ (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4))
+ (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6)))
+ (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570))))
+ (-5 *2 (-777)) (-5 *1 (-918 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6))
+ (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-1253 (-413 *4)))
+ (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-777))
+ (-5 *1 (-919 *4 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-341 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-368))
+ (-4 *7 (-1253 *6)) (-4 *4 (-1253 (-413 *7))) (-4 *8 (-347 *6 *7 *4))
+ (-4 *9 (-13 (-373) (-368))) (-5 *2 (-777))
+ (-5 *1 (-1027 *6 *7 *4 *8 *9))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562))
+ (-5 *2 (-777))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -4411 *6) (|:| |sol?| (-112))) (-570)
+ *6))
+ (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
+ (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-171 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1211)))
- (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1211)))
+ (-12 (-5 *3 (-171 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1212)))
+ (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1212)))
(-5 *1 (-606 *4 *5 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-320 *5)))
+ (-5 *1 (-1138 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-320 *5))))
+ (-5 *1 (-1138 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129))))))
+ (-4 *4 (-354)) (-5 *2 (-777)) (-5 *1 (-351 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-356 *3 *4)) (-14 *3 (-928))
+ (-14 *4 (-928))))
+ ((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354))
+ (-14 *4
+ (-3 (-1182 *3)
+ (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
+ (-14 *4 (-928)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-934))
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
+ (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
+ (-5 *1 (-154))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570)))
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
+ (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
+ (-5 *1 (-154))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
+ (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
+ (-5 *1 (-154)) (-5 *3 (-650 (-950 (-227))))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
+ (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
+ (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 (-227)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-220))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-445))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-844))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1124))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1191))) (-5 *3 (-1191)) (-5 *1 (-1127)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-1058)) (-4 *4 (-174))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))
+ (-4 *3 (-174)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
+ (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9))
+ (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6))
+ (-4 *8 (-378 *7)) (-4 *9 (-378 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
+ (-4 *4 (-378 *2)) (-4 *2 (-311))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
+ (-4 *2 (-693 *3 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1062 *2 *3 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *2 *4)) (-4 *4 (-311)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-1101 (-959 (-570)))) (-5 *2 (-334))
+ (-5 *1 (-336))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058))
+ (-4 *3 (-1109)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1148))))
+(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
+ *4 *6 *4)
+ (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-681 (-227)))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-756)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-4 *4 (-458))
+ (-5 *2 (-650 (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4)))))
+ (-5 *1 (-296 *4)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227)))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))
+ (-5 *2 (-1044)) (-5 *1 (-759)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-777)) (-4 *2 (-1109))
+ (-5 *1 (-684 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
+(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3)))))
((*1 *1 *2)
@@ -892,15 +760,51 @@
(-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3))))
- ((*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
+(((*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *4 *4 *5 *3 *6)
+ (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-5 *6 (-1182 *3))
+ (-4 *3 (-13 (-436 *7) (-27) (-1212)))
+ (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109))))
+ ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
+ (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3))
+ (-5 *6 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *7) (-27) (-1212)))
+ (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1083))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 *5)) (-4 *5 (-368)) (-5 *2 (-650 *6))
+ (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| -1442 (-570)) (|:| |var| (-618 *1))))
+ (-4 *1 (-436 *3)))))
+(((*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4449)) (-4 *4 (-368)) (-4 *5 (-378 *4))
+ (-12 (|has| *6 (-6 -4450)) (-4 *4 (-368)) (-4 *5 (-378 *4))
(-4 *6 (-378 *4)) (-5 *2 (-650 *6)) (-5 *1 (-527 *4 *5 *6 *3))
(-4 *3 (-693 *4 *5 *6))))
((*1 *2 *3)
- (-12 (|has| *9 (-6 -4449)) (-4 *4 (-562)) (-4 *5 (-378 *4))
+ (-12 (|has| *9 (-6 -4450)) (-4 *4 (-562)) (-4 *5 (-378 *4))
(-4 *6 (-378 *4)) (-4 *7 (-1001 *4)) (-4 *8 (-378 *7))
(-4 *9 (-378 *7)) (-5 *2 (-650 *6))
(-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-693 *4 *5 *6))
@@ -916,7 +820,120 @@
(-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
(-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562))
(-5 *2 (-650 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-143 *4 *5 *3))
+ (-4 *3 (-378 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-509 *4 *5 *6 *3)) (-4 *6 (-378 *4)) (-4 *3 (-378 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |num| (-695 *4)) (|:| |den| *4)))
+ (-5 *1 (-699 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *6 (-1253 *5))
+ (-5 *2 (-2 (|:| -4302 *7) (|:| |rh| (-650 (-413 *6)))))
+ (-5 *1 (-813 *5 *6 *7 *3)) (-5 *4 (-650 (-413 *6)))
+ (-4 *7 (-662 *6)) (-4 *3 (-662 (-413 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1246 *4 *5 *3))
+ (-4 *3 (-1253 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227)))))
+ (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48)))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *2 (-2 (|:| |less| (-122 *3)) (|:| |greater| (-122 *3))))
+ (-5 *1 (-122 *3)) (-4 *3 (-856))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-592 *4)) (-4 *4 (-13 (-29 *3) (-1212)))
+ (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-589 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-592 (-413 (-959 *3))))
+ (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-595 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| -3294 *3) (|:| |special| *3))) (-5 *1 (-733 *5 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
+ (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
+ (-5 *3 (-650 (-695 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1277 (-1277 *5))) (-4 *5 (-368)) (-4 *5 (-1058))
+ (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
+ (-5 *3 (-650 (-695 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-650 *1)) (-4 *1 (-1153))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-145)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186))))
+ (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *2)) (-4 *2 (-956 *3 *5 *4)))))
+(((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-777)) (-4 *3 (-1227)) (-4 *1 (-57 *3 *4 *5))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
+ ((*1 *1) (-5 *1 (-173)))
+ ((*1 *1) (-12 (-5 *1 (-215 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1109))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395))))
+ ((*1 *1) (-5 *1 (-400)))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *1 (-657 *3)) (-4 *3 (-1227))))
+ ((*1 *1)
+ (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109))
+ (-4 *4 (-672 *3))))
+ ((*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109))))
+ ((*1 *1 *2)
+ (-12 (-5 *1 (-1151 *3 *2)) (-14 *3 (-777)) (-4 *2 (-1058))))
+ ((*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058))))
+ ((*1 *1 *1) (-5 *1 (-1186))) ((*1 *1) (-5 *1 (-1186)))
+ ((*1 *1) (-5 *1 (-1207))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-657 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-306)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-618 *1))) (-5 *3 (-650 *1)) (-4 *1 (-306))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *1))) (-4 *1 (-306))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-298 *1)) (-4 *1 (-306)))))
(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -2003 (-650 *1))))
+ (-4 *1 (-372 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-459 *3 *4 *5 *6))
+ (|:| -2003 (-650 (-459 *3 *4 *5 *6)))))
+ (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777))
+ (-5 *2 (-695 (-227))) (-5 *1 (-270)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-2 (|:| -2013 *3) (|:| -2224 *4))))
+ (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *1 (-1203 *3 *4))))
+ ((*1 *1) (-12 (-4 *1 (-1203 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2))
+ (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-570))) (-5 *4 (-912 (-570)))
(-5 *2 (-695 (-570))) (-5 *1 (-596))))
@@ -926,6 +943,59 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-570))) (-5 *4 (-650 (-912 (-570))))
(-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
+ (-5 *2 (-1182 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34)))
+ (-4 *2 (-13 (-1109) (-34))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1212) (-966))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-575 *3)) (-4 *3 (-1047 (-570)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1253 *3)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-5 *1 (-774 *4 *5)) (-4 *5 (-415 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-5 *1 (-994 *4 *3 *5 *6)) (-4 *6 (-730 *3 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-5 *1 (-1286 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3))
+ (-4 *3 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-38 (-413 (-570))))
+ (-5 *2 (-2 (|:| -2579 (-1166 *4)) (|:| -2590 (-1166 *4))))
+ (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
(-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
@@ -935,176 +1005,288 @@
(-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
(-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-899 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1109))
+ (-4 *5 (-1227)) (-5 *1 (-897 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-899 *4)) (-5 *3 (-650 (-1 (-112) *5))) (-4 *4 (-1109))
+ (-4 *5 (-1227)) (-5 *1 (-897 *4 *5))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-899 *5)) (-5 *3 (-650 (-1186)))
+ (-5 *4 (-1 (-112) (-650 *6))) (-4 *5 (-1109)) (-4 *6 (-1227))
+ (-5 *1 (-897 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1227)) (-4 *4 (-1109))
+ (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 (-1 (-112) *5))) (-4 *5 (-1227)) (-4 *4 (-1109))
+ (-5 *1 (-944 *4 *2 *5)) (-4 *2 (-436 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1227))
+ (-5 *2 (-320 (-570))) (-5 *1 (-945 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-650 (-1 (-112) *5))) (-4 *5 (-1227))
+ (-5 *2 (-320 (-570))) (-5 *1 (-945 *5))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1 (-112) (-650 *6)))
+ (-4 *6 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))) (-4 *4 (-1109))
+ (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
+ (-5 *1 (-1085 *4 *5 *6)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3383 *3) (|:| |coef1| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3))
+ (-4 *3 (-368)))))
+(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-650 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |k| (-900 *3)) (|:| |c| *4))))
+ (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
+ (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-678 *3))) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
+ (-5 *2 (-1182 *3)))))
+(((*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-695 *2)) (-5 *4 (-777))
+ (-4 *2 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826))
+ (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
+(((*1 *1 *1) (-5 *1 (-112))))
+(((*1 *2 *2 *3)
(|partial| -12 (-5 *2 (-629 *4 *5))
(-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -4410 *4) (|:| |sol?| (-112)))
+ (-1 (-2 (|:| |ans| *4) (|:| -4411 *4) (|:| |sol?| (-112)))
(-570) *4))
- (-4 *4 (-368)) (-4 *5 (-1252 *4)) (-5 *1 (-580 *4 *5)))))
+ (-4 *4 (-368)) (-4 *5 (-1253 *4)) (-5 *1 (-580 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928))
+ (-14 *4 (-928)))))
+(((*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2)
+ (-12
+ (-5 *2
+ (-1277 (-650 (-2 (|:| -2196 (-917 *3)) (|:| -2160 (-1129))))))
+ (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129))))))
+ (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129))))))
+ (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
+ (-5 *1 (-534 *4)))))
(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
(-5 *1 (-761)))))
-(((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798))
- (-4 *5 (-856)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-224 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-4 *1 (-257 *3))))
- ((*1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-148)) (-4 *2 (-311)) (-4 *2 (-458)) (-4 *3 (-856))
- (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-320 (-570))) (-5 *1 (-1128))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570)))))
+ (-4 *5 (-856)) (-5 *1 (-1293 *4 *5 *2)) (-4 *2 (-1298 *5 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
+ (-4 *3 (-167 *6)) (-4 (-959 *6) (-893 *5))
+ (-4 *6 (-13 (-893 *5) (-174))) (-5 *1 (-180 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-896 *4 *1)) (-5 *3 (-899 *4)) (-4 *1 (-893 *4))
+ (-4 *4 (-1109))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
+ (-4 *6 (-13 (-1109) (-1047 *3))) (-4 *3 (-893 *5))
+ (-5 *1 (-938 *5 *3 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109))
+ (-4 *3 (-13 (-436 *6) (-620 *4) (-893 *5) (-1047 (-618 $))))
+ (-5 *4 (-899 *5)) (-4 *6 (-13 (-562) (-893 *5)))
+ (-5 *1 (-939 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 (-570) *3)) (-5 *4 (-899 (-570))) (-4 *3 (-551))
+ (-5 *1 (-940 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 *6)) (-5 *3 (-618 *6)) (-4 *5 (-1109))
+ (-4 *6 (-13 (-1109) (-1047 (-618 $)) (-620 *4) (-893 *5)))
+ (-5 *4 (-899 *5)) (-5 *1 (-941 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-892 *5 *6 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
+ (-4 *6 (-893 *5)) (-4 *3 (-672 *6)) (-5 *1 (-942 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-896 *6 *3) *8 (-899 *6) (-896 *6 *3)))
+ (-4 *8 (-856)) (-5 *2 (-896 *6 *3)) (-5 *4 (-899 *6))
+ (-4 *6 (-1109)) (-4 *3 (-13 (-956 *9 *7 *8) (-620 *4)))
+ (-4 *7 (-799)) (-4 *9 (-13 (-1058) (-893 *6)))
+ (-5 *1 (-943 *6 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109))
+ (-4 *3 (-13 (-956 *8 *6 *7) (-620 *4))) (-5 *4 (-899 *5))
+ (-4 *7 (-893 *5)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *8 (-13 (-1058) (-893 *5))) (-5 *1 (-943 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-1001 *6))
+ (-4 *6 (-13 (-562) (-893 *5) (-620 *4))) (-5 *4 (-899 *5))
+ (-5 *1 (-946 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-896 *5 (-1186))) (-5 *3 (-1186)) (-5 *4 (-899 *5))
+ (-4 *5 (-1109)) (-5 *1 (-947 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-650 (-899 *7))) (-5 *5 (-1 *9 (-650 *9)))
+ (-5 *6 (-1 (-896 *7 *9) *9 (-899 *7) (-896 *7 *9))) (-4 *7 (-1109))
+ (-4 *9 (-13 (-1058) (-620 (-899 *7)) (-1047 *8)))
+ (-5 *2 (-896 *7 *9)) (-5 *3 (-650 *9)) (-4 *8 (-1058))
+ (-5 *1 (-948 *7 *8 *9)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-650
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856))
+ (-5 *1 (-455 *3 *4 *5 *6)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))))
(((*1 *1 *2)
(-12 (-5 *2 (-650 (-1085 *3 *4 *5))) (-4 *3 (-1109))
(-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))
(-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3))))
(-5 *1 (-1086 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
- (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-4 *3 (-13 (-27) (-1211) (-436 *6) (-10 -8 (-15 -3735 ($ *7)))))
- (-4 *7 (-854))
- (-4 *8
- (-13 (-1254 *3 *7) (-368) (-1211)
- (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))))
- (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8))
- (-14 *10 (-1186)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
- (-4 *2 (-174)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112))
- (-5 *1 (-226 *4 *5)) (-4 *5 (-13 (-1211) (-29 *4))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-650 (-618 *6))) (-5 *4 (-1186)) (-5 *2 (-618 *6))
- (-4 *6 (-436 *5)) (-4 *5 (-1109)) (-5 *1 (-579 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1204)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2))
- (-4 *2 (-1252 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458))
- (-5 *1 (-925 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-743 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109))))
+ ((*1 *1) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-825 *3))))
+ (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3))))
+ (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777))
+ (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174))))
+ ((*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2))))
+ ((*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
((*1 *2 *1)
- (-12 (-4 *2 (-852)) (-5 *1 (-1299 *3 *2)) (-4 *3 (-1058)))))
+ (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-4 *5 (-856)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-650 (-870 *4)))
+ (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-477 *4 *5 *6))
+ (-4 *6 (-458)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1111 *4)) (-4 *4 (-1109)) (-5 *2 (-1 *4))
- (-5 *1 (-1026 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
- (-4 *3 (-562)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856))
+ (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174))
+ (-4 *3 (-240 (-2426 *4) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *3))
+ (-2 (|:| -2160 *5) (|:| -3011 *3))))
+ (-5 *1 (-467 *4 *2 *5 *3 *6 *7)) (-4 *5 (-856))
+ (-4 *7 (-956 *2 *3 (-870 *4))))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))))
+(((*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-354)) (-4 *2 (-1058)) (-5 *1 (-718 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-856))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-224 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-257 *3))))
+ ((*1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-928)) (-4 *5 (-311)) (-4 *3 (-1253 *5))
+ (-5 *2 (-2 (|:| |plist| (-650 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-466 *5 *3)) (-5 *4 (-650 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-266)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1207)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-112)) (-5 *5 (-570)) (-4 *6 (-368)) (-4 *6 (-373))
- (-4 *6 (-1058)) (-5 *2 (-650 (-650 (-695 *6)))) (-5 *1 (-1038 *6))
- (-5 *3 (-650 (-695 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-4 *4 (-373)) (-4 *4 (-1058))
- (-5 *2 (-650 (-650 (-695 *4)))) (-5 *1 (-1038 *4))
- (-5 *3 (-650 (-695 *4)))))
+ (|partial| -12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2))
+ (-4 *2 (-680 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-1277 *5))) (-5 *4 (-570)) (-5 *2 (-1277 *5))
+ (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1186)) (-5 *2 (-112)) (-5 *1 (-618 *4))
+ (-4 *4 (-1109))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-112))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058))
- (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
- (-5 *3 (-650 (-695 *5)))))
+ (-12 (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-894 *5 *3 *4))
+ (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-928)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058))
- (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
- (-5 *3 (-650 (-695 *5))))))
+ (-12 (-5 *3 (-650 *6)) (-4 *6 (-893 *5)) (-4 *5 (-1109))
+ (-5 *2 (-112)) (-5 *1 (-894 *5 *6 *4)) (-4 *4 (-620 (-899 *5))))))
(((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-638)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306))))
- ((*1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-148)) (-4 *2 (-311)) (-4 *2 (-458)) (-4 *3 (-856))
+ (-4 *4 (-799)) (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-320 (-570))) (-5 *1 (-1128))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1205)))))
(((*1 *1 *2 *3)
(-12 (-5 *2 (-1186)) (-5 *3 (-650 *1)) (-4 *1 (-436 *4))
(-4 *4 (-1109))))
@@ -1116,497 +1298,549 @@
(-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-997 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-1116 *5 *6 *7 *8 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562)))))
-(((*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
- (-5 *1 (-1284 *4)) (-4 *4 (-368)))))
+ (-12 (-5 *3 (-1198 (-650 *4))) (-4 *4 (-856))
+ (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306))))
+ ((*1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227)))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))
+ (-5 *2 (-1044)) (-5 *1 (-759)))))
(((*1 *2 *1)
(|partial| -12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115))))
((*1 *1) (-5 *1 (-584))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34)))
+ (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1150 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570))))
- (-5 *1 (-192)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-986 *5 *6 *7 *8)))))
+ (-12 (-4 *4 (-1058))
+ (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1249 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *1) (-4 *1 (-354)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-13 (-562) (-148)))
+ (-5 *2
+ (-2 (|:| |primelt| *5) (|:| |poly| (-650 (-1182 *5)))
+ (|:| |prim| (-1182 *5))))
+ (-5 *1 (-438 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-562) (-148)))
+ (-5 *2
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1182 *3))
+ (|:| |pol2| (-1182 *3)) (|:| |prim| (-1182 *3))))
+ (-5 *1 (-438 *4 *3)) (-4 *3 (-27)) (-4 *3 (-436 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-959 *5)) (-5 *4 (-1186)) (-4 *5 (-13 (-368) (-148)))
+ (-5 *2
+ (-2 (|:| |coef1| (-570)) (|:| |coef2| (-570))
+ (|:| |prim| (-1182 *5))))
+ (-5 *1 (-967 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186)))
+ (-4 *5 (-13 (-368) (-148)))
+ (-5 *2
+ (-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 *5)))
+ (|:| |prim| (-1182 *5))))
+ (-5 *1 (-967 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-5 *5 (-1186))
+ (-4 *6 (-13 (-368) (-148)))
+ (-5 *2
+ (-2 (|:| -1442 (-650 (-570))) (|:| |poly| (-650 (-1182 *6)))
+ (|:| |prim| (-1182 *6))))
+ (-5 *1 (-967 *6)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-827)))))
(((*1 *2 *2)
(-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3))))
((*1 *2 *3)
(-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266)))
- (-5 *1 (-264))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-487 *5 *6))) (-5 *3 (-487 *5 *6))
- (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-1276 *6))
- (-5 *1 (-637 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *1)) (-5 *4 (-1276 *1)) (-4 *1 (-645 *5))
- (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -3442 (-695 *5)) (|:| |vec| (-1276 *5))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058))
- (-5 *2 (-695 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368))
- (-14 *4 (-1186)) (-14 *5 *3))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
+ (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1212))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
- (-5 *2 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129))))))
- (-5 *1 (-351 *4)))))
+ (-12 (-4 *4 (-13 (-368) (-1047 (-413 *2)))) (-5 *2 (-570))
+ (-5 *1 (-116 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))))
+(((*1 *1) (-5 *1 (-829))))
(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (|has| *1 (-6 -4439)) (-4 *1 (-410))
- (-5 *2 (-928)))))
+ (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27))
+ (-5 *2 (-650 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
- (-5 *2 (-650 (-650 (-650 (-950 *3))))))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))
- (-5 *2 (-1044)) (-5 *1 (-755))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))
- (-5 *8 (-394)) (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
+ (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-911 *4))
+ (-4 *4 (-1109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1281)) (-5 *1 (-1189))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1281))
- (-5 *1 (-1189))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1281))
- (-5 *1 (-1189)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))))
-(((*1 *1 *1 *1) (-4 *1 (-976))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-176 *6))
- (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1267 *5)) (-4 *6 (-1252 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))))
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1250 *5 *4)))
+ (-5 *1 (-1123 *4 *5)) (-5 *3 (-1250 *5 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-413 *5))
+ (|:| |c2| (-413 *5)) (|:| |deg| (-777))))
+ (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-1166 (-1166 (-959 *5))))
+ (-5 *1 (-1285 *5)) (-5 *4 (-1166 (-959 *5))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void")))
- (-5 *1 (-443)))))
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384))))
- ((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-384)))))
-(((*1 *1 *1 *1) (-5 *1 (-163)))
- ((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
- (-5 *4 (-320 (-171 (-384)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
- (-5 *4 (-320 (-384))) (-5 *1 (-334))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
- (-5 *4 (-320 (-570))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-171 (-384)))))
- (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-384)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-570)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-171 (-384)))))
- (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-384)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-570)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-171 (-384)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-384))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-570))) (-5 *1 (-334))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
- (-5 *4 (-320 (-700))) (-5 *1 (-334))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
- (-5 *4 (-320 (-705))) (-5 *1 (-334))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
- (-5 *4 (-320 (-707))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-700)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-705)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-320 (-707)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-700)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-705)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-707)))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-700))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-705))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-707))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-700))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-705))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-707))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-700))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-705))) (-5 *1 (-334))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-707))) (-5 *1 (-334))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-334))))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1276 *5)) (-4 *5 (-798)) (-5 *2 (-112))
- (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 *8))
- (-4 *7 (-856)) (-4 *8 (-1058)) (-4 *9 (-956 *8 *6 *7))
- (-4 *6 (-799)) (-5 *2 (-1182 *8)) (-5 *1 (-325 *6 *7 *8 *9)))))
-(((*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
+ (-5 *3 (-650 (-570))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570))))))
+ (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4))
+ (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-298 (-413 (-959 (-171 (-570)))))))
+ (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4))
+ (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 (-171 (-570)))))
+ (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4))
+ (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-298 (-413 (-959 (-171 (-570))))))
+ (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4))
+ (-4 *4 (-13 (-368) (-854))))))
+(((*1 *2)
+ (-12 (-14 *4 (-777)) (-4 *5 (-1227)) (-5 *2 (-135))
+ (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-368)) (-5 *2 (-135)) (-5 *1 (-332 *3 *4))
+ (-4 *3 (-333 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-174))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
+ (-5 *2 (-570)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-989 *3)) (-4 *3 (-1058)) (-5 *2 (-928))))
+ ((*1 *2) (-12 (-4 *1 (-1284 *3)) (-4 *3 (-368)) (-5 *2 (-135)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
+ (-14 *4 (-777)) (-4 *5 (-174)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-311))
+ (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *2 (-1044)) (-5 *1 (-757)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 (-570)))))
- (-5 *2
- (-650
- (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570))
- (|:| |radvect| (-650 (-695 (-320 (-570))))))))
- (-5 *1 (-1040)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 *5)) (-4 *5 (-368))
- (-4 *5 (-562)) (-5 *2 (-1276 *5)) (-5 *1 (-644 *5 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 *5))
- (-1754 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1276 (-413 *5)))
- (-5 *1 (-644 *5 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1220 *2 *3 *4 *5)) (-4 *2 (-562)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551))
+ (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551))
+ (-4 *3 (-562))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-551)) (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551))
+ (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551))
+ (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551))
+ (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551))
+ (-5 *2 (-413 (-570)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3))
+ (-4 *3 (-1047 *2)))))
(((*1 *1 *1) (-4 *1 (-635)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011) (-1211))))))
+ (-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 *6)) (-4 *5 (-1231)) (-4 *6 (-1253 *5))
+ (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *3) (|:| |radicand| *6)))
+ (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1253 *3)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *2)) (-5 *4 (-1186)) (-4 *2 (-436 *5))
- (-5 *1 (-32 *5 *2)) (-4 *5 (-562))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-4 *1 (-1021))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-5 *4 (-868))
- (-4 *1 (-1021))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-928)) (-4 *4 (-13 (-854) (-368)))
- (-4 *1 (-1077 *4 *2)) (-4 *2 (-1252 *4)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112))
- (-5 *2 (-1044)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186)))
+ (-14 *4 (-650 (-1186))) (-4 *5 (-393))))
+ ((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186)))
+ (-14 *4 (-650 (-1186))) (-4 *5 (-393)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1228 *2))
+ (-4 *2 (-1109))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856))
+ (-5 *1 (-1228 *2)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1070 (-1033 *4) (-1182 (-1033 *4)))) (-5 *3 (-868))
+ (-5 *1 (-1033 *4)) (-4 *4 (-13 (-854) (-368) (-1031))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1231)) (-5 *1 (-149 *2 *4 *3))
+ (-4 *3 (-1253 (-413 *4))))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
+ (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4))
+ (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4302 *5))))
+ (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5))
+ (-4 *6 (-662 (-413 *5))))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1211)))
- (-5 *1 (-606 *4 *3 *2)) (-4 *3 (-13 (-436 *4) (-1011) (-1211))))))
-(((*1 *2)
- (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
(((*1 *2 *3)
(-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)) (-5 *3 (-1168))))
((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243))))
((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52))
+ (-5 *1 (-1014)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-868))) (-5 *1 (-115))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115))))
((*1 *2 *1)
(|partial| -12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115))))
((*1 *2 *1)
- (-12 (-5 *2 (-1281)) (-5 *1 (-216 *3))
+ (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3))
(-4 *3
(-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 (*2 $))
- (-15 -2919 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-400))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-400))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-508))))
- ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-716))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1206))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1206)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
- (-5 *1 (-754)))))
+ (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 (*2 $))
+ (-15 -3807 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-400))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-400))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-716))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1207))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1207)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-311))
- (-5 *2 (-413 (-424 (-959 *4)))) (-5 *1 (-1051 *4)))))
+ (-12 (-4 *1 (-806))
+ (-5 *3
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2 (-1044)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-856)) (-5 *4 (-650 *6))
+ (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-650 *4))))
+ (-5 *1 (-1197 *6)) (-5 *5 (-650 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1109)) (-4 *5 (-1109))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)))))
+ (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186)))
+ (-4 *5 (-458))
+ (-5 *2
+ (-2 (|:| |gblist| (-650 (-249 *4 *5)))
+ (|:| |gvlist| (-650 (-570)))))
+ (-5 *1 (-637 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
(((*1 *1) (-5 *1 (-334))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
- ((*1 *1 *2)
- (-12 (-4 *2 (-1058)) (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
- (-4 *5 (-240 *3 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef2| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058))))
((*1 *2 *1 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))))
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -1874 *1) (|:| |coef2| *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *6)) (-4 *5 (-1109))
- (-4 *6 (-1226)) (-5 *2 (-1 *6 *5)) (-5 *1 (-647 *5 *6))))
+ (-4 *6 (-1227)) (-5 *2 (-1 *6 *5)) (-5 *1 (-647 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-4 *5 (-1109))
- (-4 *2 (-1226)) (-5 *1 (-647 *5 *2))))
+ (-4 *2 (-1227)) (-5 *1 (-647 *5 *2))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-650 *6)) (-5 *4 (-650 *5)) (-4 *6 (-1109))
- (-4 *5 (-1226)) (-5 *2 (-1 *5 *6)) (-5 *1 (-647 *6 *5))))
+ (-4 *5 (-1227)) (-5 *2 (-1 *5 *6)) (-5 *1 (-647 *6 *5))))
((*1 *2 *3 *4 *5 *2)
(-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-4 *5 (-1109))
- (-4 *2 (-1226)) (-5 *1 (-647 *5 *2))))
+ (-4 *2 (-1227)) (-5 *1 (-647 *5 *2))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-650 *5)) (-5 *4 (-650 *6))
- (-4 *5 (-1109)) (-4 *6 (-1226)) (-5 *1 (-647 *5 *6))))
+ (-4 *5 (-1109)) (-4 *6 (-1227)) (-5 *1 (-647 *5 *6))))
((*1 *2 *3 *4 *5 *6)
(-12 (-5 *3 (-650 *5)) (-5 *4 (-650 *2)) (-5 *6 (-1 *2 *5))
- (-4 *5 (-1109)) (-4 *2 (-1226)) (-5 *1 (-647 *5 *2))))
+ (-4 *5 (-1109)) (-4 *2 (-1227)) (-5 *1 (-647 *5 *2))))
((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-777)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *1 *1) (-5 *1 (-227)))
- ((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1) (-4 *1 (-1148))) ((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-650 (-1182 *13))) (-5 *3 (-1182 *13))
- (-5 *4 (-650 *12)) (-5 *5 (-650 *10)) (-5 *6 (-650 *13))
- (-5 *7 (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| *13)))))
- (-5 *8 (-650 (-777))) (-5 *9 (-1276 (-650 (-1182 *10))))
- (-4 *12 (-856)) (-4 *10 (-311)) (-4 *13 (-956 *10 *11 *12))
- (-4 *11 (-799)) (-5 *1 (-713 *11 *12 *10 *13)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3))
- (-4 *3 (-13 (-1211) (-29 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148)))
- (-5 *2 (-592 (-413 (-959 *5)))) (-5 *1 (-576 *5))
- (-5 *3 (-413 (-959 *5))))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-825 *3))))
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-455 *5 *6 *7 *3)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-132))))
+(((*1 *2)
+ (-12 (-4 *4 (-368)) (-5 *2 (-928)) (-5 *1 (-332 *3 *4))
+ (-4 *3 (-333 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-368)) (-5 *2 (-839 (-928))) (-5 *1 (-332 *3 *4))
+ (-4 *3 (-333 *4))))
+ ((*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
((*1 *2 *1)
- (-12 (-4 *2 (-852)) (-5 *1 (-1299 *3 *2)) (-4 *3 (-1058)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4))
- (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))))
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-852)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129))))))
+ (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-868) (-868) (-868))) (-5 *4 (-570)) (-5 *2 (-868))
+ (-5 *1 (-655 *5 *6 *7)) (-4 *5 (-1109)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-868)) (-5 *1 (-860 *3 *4 *5)) (-4 *3 (-1058))
+ (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-868))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-868))))
+ ((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-868)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6) (-10 -8 (-15 -3735 ($ *7)))))
+ (-4 *7 (-854))
+ (-4 *8
+ (-13 (-1255 *3 *7) (-368) (-1212)
+ (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))))
+ (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8))
+ (-14 *10 (-1186)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
- (-4 *2 (-174)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1278)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4))
+ (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1058))
+ (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *3 *2)
+ (|partial| -12 (-5 *2 (-777))
+ (-4 *3 (-13 (-732) (-373) (-10 -7 (-15 ** (*3 *3 (-570))))))
+ (-5 *1 (-248 *3)))))
(((*1 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856)))
- (-14 *3 (-650 (-1186))))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535))))
+ ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-1276 *2)) (-4 *5 (-311))
- (-4 *6 (-1001 *5)) (-4 *2 (-13 (-415 *6 *7) (-1047 *6)))
- (-5 *1 (-419 *5 *6 *7 *2)) (-4 *7 (-1252 *6)))))
+ (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148)))
+ (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5)))))
+ (-5 *1 (-1138 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148)))
+ (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5)))))
+ (-5 *1 (-1138 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-176 *3)) (-4 *3 (-311))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-680 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-746 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-856))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *1 (-989 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
+ (-5 *2 (-1044)) (-5 *1 (-762)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058))
+ (-4 *3 (-562))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1) (-4 *1 (-499)))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
@@ -1614,119 +1848,43 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *1 *2 *3 *4)
- (-12
- (-5 *3
- (-650
- (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *2))
- (|:| |logand| (-1182 *2)))))
- (-5 *4 (-650 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-368)) (-5 *1 (-592 *2)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
- *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
- *9)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *6 (-227))
- (-5 *7 (-695 (-570)))
- (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))
- (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-759)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $))
- (-15 -4412 ((-1134 *3 (-618 $)) $))
- (-15 -3735 ($ (-1134 *3 (-618 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $))
- (-15 -4412 ((-1134 *3 (-618 $)) $))
- (-15 -3735 ($ (-1134 *3 (-618 $)))))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *4 (-618 $)) $))
- (-15 -4412 ((-1134 *4 (-618 $)) $))
- (-15 -3735 ($ (-1134 *4 (-618 $)))))))
- (-4 *4 (-562)) (-5 *1 (-41 *4 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-618 *2)))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *4 (-618 $)) $))
- (-15 -4412 ((-1134 *4 (-618 $)) $))
- (-15 -3735 ($ (-1134 *4 (-618 $)))))))
- (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))))
(((*1 *2 *3)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570)))
- (-5 *4 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570))) (-5 *4 (-413 (-570)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-413 (-570)))
- (-5 *2 (-650 (-2 (|:| -4397 *5) (|:| -4410 *5)))) (-5 *1 (-1029 *3))
- (-4 *3 (-1252 (-570))) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5)))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1030 *3)) (-4 *3 (-1252 (-413 (-570))))))
+ (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
+ (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-331 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 *2))))
+(((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1253 *4)) (-5 *1 (-813 *4 *2 *3 *5))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2))
+ (-4 *5 (-662 (-413 *2)))))
((*1 *2 *3 *4)
- (-12
+ (-12 (-4 *2 (-1253 *4)) (-5 *1 (-813 *4 *2 *5 *3))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-662 *2))
+ (-4 *3 (-662 (-413 *2))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
(-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1030 *3)) (-4 *3 (-1252 (-413 (-570))))
- (-5 *4 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-413 (-570)))
- (-5 *2 (-650 (-2 (|:| -4397 *4) (|:| -4410 *4)))) (-5 *1 (-1030 *3))
- (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-413 (-570)))
- (-5 *2 (-650 (-2 (|:| -4397 *5) (|:| -4410 *5)))) (-5 *1 (-1030 *3))
- (-4 *3 (-1252 *5)) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *6)) (-4 *6 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-1182 *7)) (-5 *1 (-325 *4 *5 *6 *7))
- (-4 *7 (-956 *6 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4))
- (-4 *4 (-1058)))))
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2998 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1) (-4 *1 (-499)))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
@@ -1735,588 +1893,584 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-659 (-413 *2))) (-4 *2 (-1252 *4)) (-5 *1 (-816 *4 *2))
- (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-660 *2 (-413 *2))) (-4 *2 (-1252 *4))
- (-5 *1 (-816 *4 *2))
- (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *6 (-562)) (-4 *2 (-956 *3 *5 *4))
- (-5 *1 (-738 *5 *4 *6 *2)) (-5 *3 (-413 (-959 *6))) (-4 *5 (-799))
- (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))))))
+ (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
(((*1 *2 *3 *2)
(-12 (-5 *1 (-685 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-1111 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-650 *4))) (-5 *1 (-911 *4))
- (-5 *3 (-650 *4))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-1111 *4))) (-5 *1 (-911 *4))
- (-5 *3 (-1111 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-650 *2) *2 *2 *2)) (-4 *2 (-1109))
- (-5 *1 (-103 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8))))
- (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
-(((*1 *2)
- (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-1236 *4)) (-4 *4 (-1058)) (-4 *4 (-562))
- (-5 *2 (-413 (-959 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-1236 *4)) (-4 *4 (-1058)) (-4 *4 (-562))
- (-5 *2 (-413 (-959 *4))))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1186)) (-5 *6 (-650 (-618 *3)))
- (-5 *5 (-618 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *7)))
- (-4 *7 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3)))
- (-5 *1 (-563 *7 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
-(((*1 *1 *1 *1) (-4 *1 (-976))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
- (-4 *4 (-1058)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
+ (-4 *5 (-1253 *4)) (-5 *2 (-695 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4))
+ (-5 *1 (-414 *3 *4 *5)) (-4 *3 (-415 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3))
+ (-5 *2 (-695 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1227)) (-4 *2 (-1058))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868))))
+ ((*1 *1 *1) (-5 *1 (-868)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-950 (-227))) (-5 *2 (-227)) (-5 *1 (-1223))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1252 *3))
- (-4 *3 (-13 (-368) (-148) (-1047 (-570)))) (-5 *1 (-574 *3 *4)))))
-(((*1 *1 *1) (-4 *1 (-144)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-311))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-453 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
+ (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-453 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
+ (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-453 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1230)) (-4 *5 (-1252 *4))
- (-5 *2 (-2 (|:| |radicand| (-413 *5)) (|:| |deg| (-777))))
- (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1252 (-413 *5))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-777)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384)))
- (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281))
+ (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-112))
+ (-5 *1 (-365 *4 *5)) (-14 *5 (-650 (-1186)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-786 *4 (-870 *5)))) (-4 *4 (-458))
+ (-14 *5 (-650 (-1186))) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-650
+ (-2
+ (|:| -2013
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227))))
+ (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227)))
+ (|:| |g| (-320 (-227))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (|:| -2224
+ (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
+ (|:| |expense| (-384)) (|:| |accuracy| (-384))
+ (|:| |intermediateResults| (-384)))))))
+ (-5 *1 (-809)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
+ (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384)))
+ (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282))
(-5 *1 (-794)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-760)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-610 *4 *3)) (-4 *4 (-1109))
+ (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-570))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
+ (-4 *2 (-174)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *4)) (-5 *1 (-892 *3 *4 *5))
+ (-4 *3 (-1109)) (-4 *5 (-672 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4))
+ (-5 *1 (-974 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227))))
+ (-5 *2 (-1044)) (-5 *1 (-760)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
+ (-5 *2 (-849 *4)) (-5 *1 (-317 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1212) (-436 *3))) (-14 *5 (-1186))
+ (-14 *6 *4)))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
+ (-5 *2 (-849 *4)) (-5 *1 (-1263 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1212) (-436 *3))) (-14 *5 (-1186))
+ (-14 *6 *4))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-601 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1237 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1268 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-334)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112))
+ (-5 *1 (-226 *4 *5)) (-4 *5 (-13 (-1212) (-29 *4))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5))
+ (-4 *3 (-1253 *4))
+ (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))))))
+(((*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-286 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1276 *1))))
+ (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-14 *5 (-650 (-1186)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *4)) (|:| -1533 (-650 (-959 *4))))))
+ (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5))))))
+ (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5))))))
+ (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5))))))
+ (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916))
- (-5 *2 (-1276 *1)))))
+ (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *4)) (|:| -1533 (-650 (-959 *4))))))
+ (-5 *1 (-1303 *4 *5 *6)) (-5 *3 (-650 (-959 *4)))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
(((*1 *2 *1)
- (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-14 *6
- (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *2))
- (-2 (|:| -2159 *5) (|:| -1907 *2))))
- (-4 *2 (-240 (-2426 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1281)) (-5 *1 (-837)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-424 *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-1058)) (-5 *2 (-650 *6)) (-5 *1 (-450 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+ (-12 (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
+ (-5 *2 (-1277 *6)) (-5 *1 (-341 *3 *4 *5 *6))
+ (-4 *6 (-347 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-311)) (-5 *1 (-461 *3 *2)) (-4 *2 (-1252 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-311)) (-5 *1 (-466 *3 *2)) (-4 *2 (-1252 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-311)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-777)))
- (-5 *1 (-545 *3 *2 *4 *5)) (-4 *2 (-1252 *3)))))
+ (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2))
+ (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-892 *3 *4 *5))
+ (-4 *3 (-1109)) (-4 *5 (-672 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-618 *6))) (-5 *4 (-1186)) (-5 *2 (-618 *6))
+ (-4 *6 (-436 *5)) (-4 *5 (-1109)) (-5 *1 (-579 *5 *6)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
+ (-5 *2 (-1182 *3)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
+ (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))))
+(((*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4))
- (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112))))
+ (-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2))
+ (-4 *2 (-436 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
+ (-5 *1 (-159 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *1) (-5 *1 (-603))))
+(((*1 *2 *3) (-12 (-5 *3 (-171 (-570))) (-5 *2 (-112)) (-5 *1 (-452))))
((*1 *2 *3)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3))))
+ (-12
+ (-5 *3
+ (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
+ (-249 *4 (-413 (-570)))))
+ (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112))
+ (-5 *1 (-511 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-968 *3)) (-4 *3 (-551))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1231)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-562))
+ (-5 *2 (-2 (|:| -2042 (-695 *5)) (|:| |vec| (-1277 (-650 (-928))))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-174))))
+ ((*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
+ (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-1058))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))))
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3))
- (-4 *3 (-1074 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4)))))
- ((*1 *1 *1) (-5 *1 (-384)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562))
- (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $))
- (-15 -4412 ((-1134 *3 (-618 $)) $))
- (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
-(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *6 (-620 (-1186)))
+ (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *2 (-1175 (-650 (-959 *4)) (-650 (-298 (-959 *4)))))
+ (-5 *1 (-510 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1281)) (-5 *1 (-1228))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1281)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-171 (-227))))
- (-5 *2 (-1044)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227))
+ (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-757)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1259 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1236 *3))
- (-5 *2 (-413 (-570))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-777)) (-5 *5 (-650 *3)) (-4 *3 (-311)) (-4 *6 (-856))
- (-4 *7 (-799)) (-5 *2 (-112)) (-5 *1 (-631 *6 *7 *3 *8))
- (-4 *8 (-956 *3 *7 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
- (-5 *3 (-570)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))))
+ (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-884 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-886 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *7 (-907 *6))
- (-5 *2 (-695 *7)) (-5 *1 (-698 *6 *7 *3 *4)) (-4 *3 (-378 *7))
- (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4448)))))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1205)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
- (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))))
-(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
+ (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129)))
+ (-5 *1 (-351 *4)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1)))
+ (-4 *1 (-391 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-652 *3)) (-4 *3 (-1067)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1060 *3)) (-4 *3 (-1067)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
- (-4 *3 (-1252 *4)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-650 (-650 (-950 (-227)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-650 (-650 (-950 (-227))))))))
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-629 *3 *4))
+ (-4 *4 (-1253 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-732))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-112)))))
(((*1 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281))
- (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281))
- (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-366 (-115))) (-4 *2 (-1058)) (-5 *1 (-720 *2 *4))
- (-4 *4 (-654 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-366 (-115))) (-5 *1 (-842 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4450 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2))
- (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1252 *2))
- (-4 *4 (-693 *2 *5 *6)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1252 *4)) (-4 *4 (-1230))
- (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1252 (-413 *3))))))
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-456 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-456 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-456 *4 *5 *6 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
+ (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458))
+ (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458))
- (-5 *1 (-925 *4)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3))
- (-4 *3 (-13 (-436 *6) (-27) (-1211)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3)))
- (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3)))
- (-4 *3 (-13 (-436 *6) (-27) (-1211)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3)))
- (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-662 *3)) (-4 *3 (-1058)) (-4 *3 (-368))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368))
- (-5 *1 (-665 *5 *2)) (-4 *2 (-662 *5)))))
+ (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058))
+ (-5 *1 (-1037 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (-4 *4 (-1058))
+ (-5 *1 (-1037 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
+ (-4 *3 (-1253 (-171 *2)))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
+ (-4 *3 (-1253 (-171 *2))))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4))
+ (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6)))
+ (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570))))
+ (-5 *2 (-2 (|:| -4331 (-777)) (|:| -1704 *8)))
+ (-5 *1 (-918 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6))
+ (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-1253 (-413 *4)))
+ (-4 *6 (-347 (-413 (-570)) *4 *5))
+ (-5 *2 (-2 (|:| -4331 (-777)) (|:| -1704 *6)))
+ (-5 *1 (-919 *4 *5 *6)))))
(((*1 *2 *1)
(-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *5)) (-5 *1 (-892 *3 *4 *5))
(-4 *3 (-1109)) (-4 *5 (-672 *4)))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-1058)) (-5 *2 (-1276 *4))
- (-5 *1 (-1187 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-928)) (-5 *2 (-1276 *3)) (-5 *1 (-1187 *3))
- (-4 *3 (-1058)))))
(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2))
- (-4 *2 (-662 *4)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *5 *6))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-455 *4 *5 *6 *7)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))))
(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368))
- (-5 *2 (-1182 (-959 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3))
- (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-458)) (-4 *4 (-1109))
+ (-5 *1 (-579 *4 *2)) (-4 *2 (-288)) (-4 *2 (-436 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-235)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4))
+ (-4 *6 (-799)) (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799))
+ (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-269 *2)) (-4 *2 (-856)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1939 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-618 *4)) (-5 *6 (-1182 *4))
- (-4 *4 (-13 (-436 *7) (-27) (-1211)))
- (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-618 *4)) (-5 *6 (-413 (-1182 *4)))
- (-4 *4 (-13 (-436 *7) (-27) (-1211)))
- (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2))
+ (-4 *4 (-38 (-413 (-570)))))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1149 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1150 *5 *6)))))
(((*1 *2 *1) (-12 (-4 *1 (-133)) (-5 *2 (-777))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1226))
+ (-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1227))
(-4 *3 (-1109))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-378 *3)) (-4 *3 (-1226)) (-4 *3 (-1109))
+ (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
(-5 *2 (-570))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-378 *4)) (-4 *4 (-1226))
+ (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227))
(-5 *2 (-570))))
((*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-535))))
((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)) (-5 *3 (-142))))
((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1186))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-650 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -1400 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1211) (-27) (-436 *8)))
- (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -4410 *4) (|:| |sol?| (-112))))
- (-5 *1 (-1022 *8 *4)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1300 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-174))))
- ((*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-825 *3)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *1 (-1221 *2)) (-4 *2 (-983)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-171 *5)) (-5 *1 (-606 *4 *5 *3))
- (-4 *5 (-13 (-436 *4) (-1011) (-1211)))
- (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1211))))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-650
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-777)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-799)) (-4 *6 (-956 *4 *3 *5)) (-4 *4 (-458)) (-4 *5 (-856))
- (-5 *1 (-455 *4 *3 *5 *6)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-2 (|:| -3854 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-777)) (-4 *5 (-562))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-227) (-227) (-227)))
+ (-5 *4 (-1 (-227) (-227) (-227) (-227)))
+ (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *1 (-703)))))
+(((*1 *1) (-5 *1 (-1189))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
+ ((*1 *1 *1) (|partial| -4 *1 (-728))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *3 (-928)) (-5 *1 (-448 *2))
+ (-4 *2 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-928)) (-5 *4 (-777)) (-5 *1 (-448 *2))
+ (-4 *2 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *1 (-448 *2))
+ (-4 *2 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777))
+ (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *4 *5 *6)
+ (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777))
+ (-5 *6 (-112)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1253 *5))
+ (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2))
+ (-4 *2 (-1253 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1441 (-650 *1)) (|:| -2339 *1)))
- (-5 *3 (-650 *1)))))
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4))
+ (-5 *1 (-820 *4 *5)) (-4 *5 (-662 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-368))
+ (-5 *2 (-695 *5)) (-5 *1 (-820 *5 *6)) (-4 *6 (-662 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *1) (-5 *1 (-565))))
+(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5))
+ (-5 *2 (-419 *4 (-413 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1277 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4)))
+ (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4)) (-4 *3 (-311))
+ (-5 *1 (-419 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *2 (-1276 (-320 (-384))))
- (-5 *1 (-309)))))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-650 (-266))) (-5 *1 (-1278))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1168)) (-5 *1 (-1278))))
+ (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1278))))
((*1 *1 *1) (-5 *1 (-1278))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-158)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
- (-5 *2 (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -2785 *1)))
- (-4 *1 (-1074 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -2785 *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-246 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1226)) (-5 *2 (-112))
- (-5 *1 (-1166 *4)))))
-(((*1 *2 *3 *4 *3 *3)
- (-12 (-5 *3 (-298 *6)) (-5 *4 (-115)) (-4 *6 (-436 *5))
- (-4 *5 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *5 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-650 *7))
- (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *6 *7))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7))
- (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-650 (-298 *8))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *8))
- (-5 *6 (-650 *8)) (-4 *8 (-436 *7))
- (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *7 *8))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7))
- (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-115))) (-5 *6 (-650 (-298 *8)))
- (-4 *8 (-436 *7)) (-5 *5 (-298 *8))
- (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *7 *8))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-298 *5)) (-5 *4 (-115)) (-4 *5 (-436 *6))
- (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *6 *5))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6))
- (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *6 *3))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6))
- (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-5 *6 (-650 *3))
- (-4 *3 (-436 *7)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
- (-5 *1 (-321 *7 *3)))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4))))
+ (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
+ (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458))
+ (-5 *1 (-925 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-588)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
+ (-5 *1 (-207)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
+ (-5 *1 (-997 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
+ (-5 *1 (-1116 *3 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2))
+ (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570))))
+ (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3)))))
+ ((*1 *2 *2 *3)
(-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-432 *4 *2)) (-4 *2 (-13 (-1211) (-29 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *5))
- (-5 *1 (-595 *5)))))
+ (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-1216 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1201 *3))
+ (-4 *3 (-368)))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1253 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *2 (-174))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
- (-4 *3 (-1109)))))
-(((*1 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281))
- (-5 *1 (-997 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281))
- (-5 *1 (-1116 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-1186))
- (-4 *2 (-13 (-27) (-1211) (-436 *5)))
- (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *5 *2)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-1168))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1044))
- (-5 *1 (-756)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3))
- (-4 *3 (-13 (-436 *6) (-27) (-1211)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-572 *6 *3 *7)) (-4 *7 (-1109)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-455 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))))
-(((*1 *2 *3 *3 *4 *3)
+(((*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
- (-14 *4 (-777)) (-4 *5 (-174)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (|has| *4 (-6 (-4450 "*")))
- (-4 *4 (-1058)) (-5 *1 (-1037 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928))
- (|has| *4 (-6 (-4450 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
- (-12 (-5 *2 (-570))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856))
- (-5 *1 (-455 *5 *6 *7 *4)))))
+ (-5 *1 (-753)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2))
- (-4 *2 (-662 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227))))
- (-5 *1 (-309)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-384)) (-5 *1 (-194)))))
-(((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+ (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-825 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))))
(((*1 *2 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868)))))
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-882))))
((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-882))))
@@ -2340,7 +2494,7 @@
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-155))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1160))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-531))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1287))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1288))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1075))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-523))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-687))))
@@ -2349,7 +2503,7 @@
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-134))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-612))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-139))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1286))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1287))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-682))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-220))))
((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-530))))
@@ -2357,71 +2511,87 @@
((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191))))
((*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191))))
((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))))
-(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
- ((*1 *1 *1) (-4 *1 (-1153))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211)))))
- ((*1 *1 *1 *1) (-4 *1 (-799))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
- (-14 *4 (-650 (-1186)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
- (-14 *4 (-650 (-1186))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1286)))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
- ((*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562)))))
+(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-4 *6 (-1253 *9)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-311))
+ (-4 *10 (-956 *9 *7 *8))
+ (-5 *2
+ (-2 (|:| |deter| (-650 (-1182 *10)))
+ (|:| |dterm|
+ (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-650 *6)) (|:| |nlead| (-650 *10))))
+ (-5 *1 (-784 *6 *7 *8 *9 *10)) (-5 *3 (-1182 *10)) (-5 *4 (-650 *6))
+ (-5 *5 (-650 *10)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-650 (-1186))) (-14 *5 (-777))
+ (-5 *2
+ (-650
+ (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
+ (-249 *4 (-413 (-570))))))
+ (-5 *1 (-511 *4 *5))
+ (-5 *3
+ (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
+ (-249 *4 (-413 (-570))))))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1279)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2))
- (-4 *2 (-1267 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1252 *3))
- (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1267 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2))
- (-4 *2 (-1267 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148)))
- (-5 *1 (-1162 *3)))))
+ (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| -3933 (-777))
+ (|:| |eqns|
+ (-650
+ (-2 (|:| |det| *7) (|:| |rows| (-650 (-570)))
+ (|:| |cols| (-650 (-570))))))
+ (|:| |fgb| (-650 *7)))))
+ (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148)))
+ (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777))
+ (-5 *1 (-931 *4 *5 *6 *7)))))
+(((*1 *1) (-5 *1 (-158)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))))
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5))))
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1111 *4)) (-4 *4 (-1109)) (-5 *2 (-1 *4))
+ (-5 *1 (-1026 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384))))
((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
- (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9))
- (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6))
- (-4 *8 (-378 *7)) (-4 *9 (-378 *7))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2)) (-4 *2 (-311))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
- (-4 *2 (-693 *3 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1062 *2 *3 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *2 *4)) (-4 *4 (-311)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227)))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))
- (-5 *2 (-1044)) (-5 *1 (-759)))))
+ (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368))
+ (-5 *2
+ (-2 (|:| A (-695 *5))
+ (|:| |eqs|
+ (-650
+ (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)) (|:| -4302 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *5)) (-5 *4 (-1277 *5))
+ (-4 *6 (-662 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368)) (-4 *6 (-662 *5))
+ (-5 *2 (-2 (|:| -2042 (-695 *6)) (|:| |vec| (-1277 *5))))
+ (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058))
+ (-5 *1 (-1170 *4)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227))
+ (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *1)
(-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
(-14 *4 *2) (-4 *5 (-174))))
@@ -2430,17 +2600,17 @@
(-4 *3 (-167 *4))))
((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-928))))
((*1 *2)
- (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3))
+ (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3))
(-5 *2 (-928))))
((*1 *2 *3)
(-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
(-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)) (-4 *5 (-368))
+ (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368))
(-5 *2 (-777)) (-5 *1 (-673 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449))))
- (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-5 *2 (-777))
+ (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450))))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-5 *2 (-777))
(-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
@@ -2453,43 +2623,46 @@
(-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
(-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562))
(-5 *2 (-777)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *5)) (-4 *5 (-368)) (-5 *2 (-650 *6))
- (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1252 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
- (-5 *2 (-1182 *3)))))
-(((*1 *2)
- (-12
- (-5 *2
- (-1276 (-650 (-2 (|:| -2195 (-917 *3)) (|:| -2159 (-1129))))))
- (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928))))
- ((*1 *2)
- (-12 (-5 *2 (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129))))))
- (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129))))))
- (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777))
- (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-354)) (-4 *2 (-1058)) (-5 *1 (-718 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))))
+ (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270))))
+ ((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1235))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *1) (-4 *1 (-354))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
+ (-4 *3 (-562)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| -3585 (-413 *6)) (|:| |coeff| (-413 *6))))
+ (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -4411 *7) (|:| |sol?| (-112)))
+ (-570) *7))
+ (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1253 *7))
+ (-5 *3 (-413 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-580 *7 *8)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1182 *7))
+ (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *2 (-1253 *5))
+ (-5 *1 (-507 *5 *2 *6 *7)) (-4 *6 (-1253 *2)))))
+(((*1 *1 *1) (-4 *1 (-175)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109))
(-5 *1 (-579 *3 *4))))
@@ -2498,45 +2671,20 @@
((*1 *1 *2 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1221 *3)) (-4 *3 (-983)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-1047 (-413 *2)))) (-5 *2 (-570))
- (-5 *1 (-116 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-911 *4))
- (-4 *4 (-1109))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570))))))
- (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4))
- (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-298 (-413 (-959 (-171 (-570)))))))
- (-5 *2 (-650 (-650 (-298 (-959 (-171 *4)))))) (-5 *1 (-383 *4))
- (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 (-171 (-570)))))
- (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4))
- (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-298 (-413 (-959 (-171 (-570))))))
- (-5 *2 (-650 (-298 (-959 (-171 *4))))) (-5 *1 (-383 *4))
- (-4 *4 (-13 (-368) (-854))))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52))
- (-5 *1 (-1014)))))
-(((*1 *2)
- (-12 (-4 *4 (-368)) (-5 *2 (-928)) (-5 *1 (-332 *3 *4))
- (-4 *3 (-333 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-368)) (-5 *2 (-839 (-928))) (-5 *1 (-332 *3 *4))
- (-4 *3 (-333 *4))))
- ((*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928))))
- ((*1 *2)
- (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*1 *1 *1) (-4 *1 (-34))) ((*1 *1 *1) (-5 *1 (-115)))
((*1 *1 *1) (-5 *1 (-173))) ((*1 *1 *1) (-4 *1 (-551)))
((*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109))))
@@ -2544,172 +2692,147 @@
((*1 *1 *1)
(-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
(-4 *3 (-13 (-1109) (-34))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535))))
- ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-331 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1226)) (-14 *4 *2))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-311))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-453 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
- (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-453 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
- (-4 *4 (-311)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-453 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-14 *5 (-650 (-1186)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *4)) (|:| -1807 (-650 (-959 *4))))))
- (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5))))))
- (-5 *1 (-1302 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5))))))
- (-5 *1 (-1302 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5))))))
- (-5 *1 (-1302 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *4)) (|:| -1807 (-650 (-959 *4))))))
- (-5 *1 (-1302 *4 *5 *6)) (-5 *3 (-650 (-959 *4)))
- (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-562))
- (-5 *2 (-2 (|:| -3442 (-695 *5)) (|:| |vec| (-1276 (-650 (-928))))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1)))
- (-4 *1 (-391 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1) (-4 *1 (-1148))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-158))))
+ ((*1 *2 *1) (-12 (-5 *2 (-158)) (-5 *1 (-880))))
+ ((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4))
- (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6)))
- (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570))))
- (-5 *2 (-2 (|:| -3157 (-777)) (|:| -1703 *8)))
- (-5 *1 (-918 *4 *5 *6 *7 *8))))
+ (-12 (-4 *1 (-845))
+ (-5 *3
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (-5 *2 (-1044))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6))
- (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-1252 (-413 *4)))
- (-4 *6 (-347 (-413 (-570)) *4 *5))
- (-5 *2 (-2 (|:| -3157 (-777)) (|:| -1703 *6)))
- (-5 *1 (-919 *4 *5 *6)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-2 (|:| -3854 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3)
- (-12
+ (-12 (-4 *1 (-845))
(-5 *3
- (-650
- (-2 (|:| -3934 (-777))
- (|:| |eqns|
- (-650
- (-2 (|:| |det| *7) (|:| |rows| (-650 (-570)))
- (|:| |cols| (-650 (-570))))))
- (|:| |fgb| (-650 *7)))))
- (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148)))
- (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777))
- (-5 *1 (-931 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))
+ (-5 *2 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336)))))
(((*1 *2 *3 *4 *5 *3 *6 *3)
(-12 (-5 *3 (-570)) (-5 *5 (-171 (-227))) (-5 *6 (-1168))
(-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8)))
+ (-4 *7 (-856)) (-4 *8 (-311)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799))
+ (-5 *2
+ (-2 (|:| |upol| (-1182 *8)) (|:| |Lval| (-650 *8))
+ (|:| |Lfact|
+ (-650 (-2 (|:| -3739 (-1182 *8)) (|:| -3011 (-570)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-748 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-899 *6)))
+ (-5 *5 (-1 (-896 *6 *8) *8 (-899 *6) (-896 *6 *8))) (-4 *6 (-1109))
+ (-4 *8 (-13 (-1058) (-620 (-899 *6)) (-1047 *7)))
+ (-5 *2 (-896 *6 *8)) (-4 *7 (-1058)) (-5 *1 (-948 *6 *7 *8)))))
+(((*1 *1)
+ (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
+ (-4 *4 (-174)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
+ (-5 *3 (-650 (-570)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
+ (-5 *3 (-650 (-570))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-266)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1253 (-413 (-570))))
+ (-5 *2 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))
+ (-5 *1 (-920 *3 *4)) (-4 *4 (-1253 (-413 *3)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3))
+ (-4 *3 (-1253 (-413 *4))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-1253 (-413 *3))) (-5 *2 (-928))
+ (-5 *1 (-920 *4 *5)) (-4 *5 (-1253 (-413 *4))))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1008 *3)) (-4 *3 (-174)) (-5 *1 (-805 *3)))))
+(((*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-174))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1298 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-1058)))))
(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1226))
+ (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1227))
(-4 *4 (-378 *2)) (-4 *5 (-378 *2))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4449)) (-4 *1 (-120 *3))
- (-4 *3 (-1226))))
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3))
+ (-4 *3 (-1227))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4449)) (-4 *1 (-120 *3))
- (-4 *3 (-1226))))
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3))
+ (-4 *3 (-1227))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
- (-4 *2 (-1226))))
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
+ (-4 *2 (-1227))))
((*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1186)) (-5 *1 (-638))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-1243 (-570))) (|has| *1 (-6 -4449)) (-4 *1 (-657 *2))
- (-4 *2 (-1226))))
+ (-12 (-5 *3 (-1244 (-570))) (|has| *1 (-6 -4450)) (-4 *1 (-657 *2))
+ (-4 *2 (-1227))))
((*1 *1 *1 *2 *2 *1)
(-12 (-5 *2 (-650 (-570))) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "value") (|has| *1 (-6 -4449)) (-4 *1 (-1019 *2))
- (-4 *2 (-1226))))
- ((*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226))))
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2))
+ (-4 *2 (-1227))))
+ ((*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227))))
((*1 *2 *1 *3 *2)
- (-12 (-4 *1 (-1202 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109))))
+ (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2))
- (-4 *2 (-1226))))
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2))
+ (-4 *2 (-1227))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4449)) (-4 *1 (-1264 *3))
- (-4 *3 (-1226))))
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3))
+ (-4 *3 (-1227))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2))
- (-4 *2 (-1226)))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1252 *3)) (-5 *1 (-405 *3 *2))
- (-4 *3 (-13 (-368) (-148))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
- (|:| |expense| (-384)) (|:| |accuracy| (-384))
- (|:| |intermediateResults| (-384))))
- (-5 *2 (-1044)) (-5 *1 (-309)))))
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2))
+ (-4 *2 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1231)) (-4 *5 (-1253 *3)) (-4 *6 (-1253 (-413 *5)))
+ (-5 *2 (-112)) (-5 *1 (-346 *4 *3 *5 *6)) (-4 *4 (-347 *3 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))))
(((*1 *2 *1)
(-12 (-5 *2 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
-(((*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-650 *8)) (-5 *4 (-137 *5 *6 *7)) (-14 *5 (-570))
(-14 *6 (-777)) (-4 *7 (-174)) (-4 *8 (-174))
@@ -2719,52 +2842,89 @@
(-4 *8 (-1058)) (-4 *2 (-956 *9 *7 *5))
(-5 *1 (-734 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-799))
(-4 *4 (-956 *8 *6 *5)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-1047 (-48)))
- (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
- (-5 *2 (-424 (-1182 (-48)))) (-5 *1 (-441 *4 *5 *3))
- (-4 *3 (-1252 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-695 *4))) (-4 *4 (-174))
- (-5 *2 (-1276 (-695 (-959 *4)))) (-5 *1 (-191 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *1) (-5 *1 (-131))))
-(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109))
+ (-4 *2 (-856)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1253 *3)) (-5 *1 (-405 *3 *2))
+ (-4 *3 (-13 (-368) (-148))))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-378 *2)) (-4 *2 (-1227))
+ (-4 *2 (-856))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4450))
+ (-4 *1 (-378 *3)) (-4 *3 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
-(((*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-980)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *2)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite| "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))
+ (-5 *1 (-194)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *1) (-5 *1 (-829))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-816 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-659 (-413 *6))) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-2 (|:| -2003 (-650 (-413 *6))) (|:| -2042 (-695 *5))))
+ (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-816 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-660 *6 (-413 *6))) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-2 (|:| -2003 (-650 (-413 *6))) (|:| -2042 (-695 *5))))
+ (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227))))
+ (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-650 (-320 (-227))))
+ (|:| -2315 (-650 (-227)))))))
+ (-5 *2 (-650 (-1168))) (-5 *1 (-270)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058))))
- ((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))))
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 *5)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
- (-14 *4 (-777)) (-4 *5 (-174)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
+ (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-5 *2 (-112)))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))))
((*1 *1 *2 *3)
@@ -2774,15 +2934,15 @@
(-12 (-5 *3 (-719 *5 *6 *7)) (-4 *5 (-856))
(-4 *6 (-240 (-2426 *4) (-777)))
(-14 *7
- (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *6))
- (-2 (|:| -2159 *5) (|:| -1907 *6))))
+ (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *6))
+ (-2 (|:| -2160 *5) (|:| -3011 *6))))
(-14 *4 (-650 (-1186))) (-4 *2 (-174))
(-5 *1 (-467 *4 *2 *5 *6 *7 *8)) (-4 *8 (-956 *2 *6 (-870 *4)))))
((*1 *1 *2 *3)
(-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856))))
((*1 *1 *2 *3)
(-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4))
- (-4 *4 (-1252 *2))))
+ (-4 *4 (-1253 *2))))
((*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-741 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-732))))
@@ -2805,491 +2965,513 @@
((*1 *1 *1 *2 *3)
(-12 (-4 *1 (-982 *4 *3 *2)) (-4 *4 (-1058)) (-4 *3 (-798))
(-4 *2 (-856)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1226))
- (-4 *3 (-378 *4)) (-4 *5 (-378 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058))
- (-5 *1 (-1038 *4)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))))
+ (-12 (-5 *2 (-650 *5)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
+ (-14 *4 (-777)) (-4 *5 (-174)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1280))))
+ ((*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1280)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354))
+ (-5 *1 (-534 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-677))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928))
+ (-14 *4 (-928)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-458))
- (-5 *2
- (-650
- (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4))))
- (|:| |geneigvec| (-650 (-695 (-413 (-959 *4))))))))
- (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1166 *3))) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
+ (|:| |expense| (-384)) (|:| |accuracy| (-384))
+ (|:| |intermediateResults| (-384))))
+ (-5 *2 (-1044)) (-5 *1 (-309)))))
+(((*1 *1) (-5 *1 (-1279))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-458)) (-4 *4 (-856))
+ (-4 *5 (-799)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
+ ((*1 *1 *1) (|partial| -4 *1 (-728))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
- (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
- (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-854)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -1679 (-424 *3))))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *1 *1) (-5 *1 (-868))))
+ (-12 (-5 *3 (-650 *6)) (-5 *4 (-1186)) (-4 *6 (-436 *5))
+ (-4 *5 (-1109)) (-5 *2 (-650 (-618 *6))) (-5 *1 (-579 *5 *6)))))
(((*1 *2)
- (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5)))
- (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
- (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2)))))
+ (-12 (-4 *1 (-354))
+ (-5 *2 (-650 (-2 (|:| -3739 (-570)) (|:| -3011 (-570))))))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -3585 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
+ (-2 (|:| -3585 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
(((*1 *1 *2)
(-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-562))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-650 (-112))) (-5 *7 (-695 (-227)))
- (-5 *8 (-695 (-570))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *5 (-112))
- (-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-650
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-799)) (-4 *3 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856))
- (-5 *1 (-455 *4 *5 *6 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1166 *7))) (-4 *6 (-856))
- (-4 *7 (-956 *5 (-537 *6) *6)) (-4 *5 (-1058))
- (-5 *2 (-1 (-1166 *7) *7)) (-5 *1 (-1135 *5 *6 *7)))))
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-112)) (-5 *5 (-570)) (-4 *6 (-368)) (-4 *6 (-373))
+ (-4 *6 (-1058)) (-5 *2 (-650 (-650 (-695 *6)))) (-5 *1 (-1038 *6))
+ (-5 *3 (-650 (-695 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-368)) (-4 *4 (-373)) (-4 *4 (-1058))
+ (-5 *2 (-650 (-650 (-695 *4)))) (-5 *1 (-1038 *4))
+ (-5 *3 (-650 (-695 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058))
+ (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
+ (-5 *3 (-650 (-695 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-928)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058))
+ (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
+ (-5 *3 (-650 (-695 *5))))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
+ (-12 (-5 *3 (-650 (-2 (|:| -3739 (-1182 *6)) (|:| -3011 (-570)))))
+ (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570))
+ (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-570) "failed") *5)) (-4 *5 (-1058))
+ (-5 *2 (-570)) (-5 *1 (-549 *5 *3)) (-4 *3 (-1253 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058))
+ (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058))
+ (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4450 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2))
- (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1252 *2))
- (-4 *4 (-693 *2 *5 *6)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856))
+ (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))))
(((*1 *2 *1) (-12 (-5 *2 (-188)) (-5 *1 (-139))))
((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2))
- (-4 *2 (-13 (-27) (-1211) (-436 (-171 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570))))
- (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-956 *3 *5 *4)) (-5 *1 (-996 *3 *4 *5 *2))
- (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))))
+ (|partial| -12 (-4 *5 (-1047 (-48)))
+ (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
+ (-5 *2 (-424 (-1182 (-48)))) (-5 *1 (-441 *4 *5 *3))
+ (-4 *3 (-1253 *5)))))
+(((*1 *1) (-5 *1 (-295))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 (-112) (-650 *1)))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-753)))))
+(((*1 *1 *1 *1) (-4 *1 (-551))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
- (-4 *2 (-13 (-856) (-21))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-777)) (-4 *4 (-354))
+ (-5 *1 (-534 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))))
+(((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *4))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *4)))))))
+ (-5 *3 (-650 *7)) (-4 *4 (-13 (-311) (-148)))
+ (-4 *7 (-956 *4 *6 *5)) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-618 *3))
+ (-4 *3 (-13 (-436 *5) (-27) (-1212)))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1109)) (-5 *1 (-971 *3 *2)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-115)) (-5 *4 (-777))
+ (-4 *5 (-13 (-458) (-1047 (-570)))) (-4 *5 (-562))
+ (-5 *1 (-41 *5 *2)) (-4 *2 (-436 *5))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *5 (-618 $)) $))
+ (-15 -4413 ((-1134 *5 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *5 (-618 $))))))))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-177))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-1094)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6))
- (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-986 *4 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-5 *1 (-227)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174))
+ (-5 *2 (-1277 (-695 (-959 *4)))) (-5 *1 (-191 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-144)))
((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049))))
- ((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *2 (-650 (-650 (-570))))
- (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *6 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551))))
+ ((*1 *1 *1 *1) (-5 *1 (-868)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056))
+ (-5 *3 (-570)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1253 *6))
+ (-4 *6 (-13 (-368) (-148) (-1047 *4))) (-5 *4 (-570))
+ (-5 *2
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
+ (|:| -4302
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-1024 *6 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 *4))))
(-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))))
((*1 *2 *1)
(-12 (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109))
(-4 *7 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-1112 *3 *4 *5 *6 *7)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-563 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-570) (-928)))) (-5 *1 (-980)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410))))
+ ((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410))))
+ ((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928))))
+ ((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-1166 (-570))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-650 (-959 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-650 (-959 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-650 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3)))))
+ (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194))))
((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-459 *4 *5 *6 *7))) (-5 *2 (-650 (-959 *4)))
- (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-562)) (-4 *4 (-174))
- (-14 *5 (-928)) (-14 *6 (-650 (-1186))) (-14 *7 (-1276 (-695 *4))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-570))) (-5 *5 (-1 (-1166 *4))) (-4 *4 (-368))
- (-4 *4 (-1058)) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373))
- (-4 *3 (-1109)))))
-(((*1 *1) (-5 *1 (-158)))
- ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-570))) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-562)) (-4 *8 (-956 *7 *5 *6))
- (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *9) (|:| |radicand| *9)))
- (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777))
- (-4 *9
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *8)) (-15 -4398 (*8 $)) (-15 -4412 (*8 $))))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))))
+ (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109))))
((*1 *1 *2) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-182))))
- ((*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-687))))
- ((*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-979))))
- ((*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-1082))))
+(((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-182))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-687))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-979))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-1082))))
((*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-1127)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1874 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
((*1 *1 *1) (-5 *1 (-868)))
((*1 *1 *2)
(-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3))))
((*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1276 *4)) (-4 *4 (-645 (-570)))
- (-5 *2 (-1276 (-413 (-570)))) (-5 *1 (-1303 *4)))))
-(((*1 *1) (-5 *1 (-1072))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *1 *2 *3 *3 *4 *5)
+ (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
+ (-5 *4 (-650 (-928))) (-5 *5 (-650 (-266))) (-5 *1 (-474))))
+ ((*1 *1 *2 *3 *3 *4)
+ (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
+ (-5 *4 (-650 (-928))) (-5 *1 (-474))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474))))
+ ((*1 *1 *1) (-5 *1 (-474))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-650 *7) *7 (-1182 *7))) (-5 *5 (-1 (-424 *7) *7))
- (-4 *7 (-1252 *6)) (-4 *6 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-5 *2 (-650 (-2 (|:| |frac| (-413 *7)) (|:| -4300 *3))))
- (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7))
- (-4 *8 (-662 (-413 *7)))))
+ (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934))
+ (-5 *1 (-932 *3)) (-4 *3 (-620 (-542)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-12 (-5 *4 (-1186)) (-5 *2 (-934)) (-5 *1 (-932 *3))
+ (-4 *3 (-620 (-542)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-934))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-216 *4))
+ (-4 *4
+ (-13 (-856)
+ (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 (*2 $))
+ (-15 -3807 (*2 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3))
+ (-4 *3
+ (-13 (-856)
+ (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 (*2 $))
+ (-15 -3807 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
(-5 *2
- (-650 (-2 (|:| |frac| (-413 *6)) (|:| -4300 (-660 *6 (-413 *6))))))
- (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1058))
- (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288)))
- (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4))))
+ (-2 (|:| |solns| (-650 *5))
+ (|:| |maps| (-650 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1137 *3 *5)) (-4 *3 (-1253 *5)))))
+(((*1 *1) (-5 *1 (-131))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-928)) (-4 *5 (-1058))
- (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1211) (-288)))
- (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1252 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1) (-5 *1 (-868)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *3 (-570)) (-4 *1 (-875 *4)))))
-(((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *5 (-928))
- (-5 *2 (-1281)) (-5 *1 (-474))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1281)) (-5 *1 (-474))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-880)) (-5 *5 (-928))
- (-5 *2 (-1281)) (-5 *1 (-474)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4439)) (-4 *1 (-410))))
- ((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
+ (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1109)) (-4 *2 (-907 *4)) (-5 *1 (-698 *4 *2 *5 *3))
+ (-4 *5 (-378 *2)) (-4 *3 (-13 (-378 *4) (-10 -7 (-6 -4449)))))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
((*1 *2 *1)
(-12
(-5 *2
- (-2 (|:| -1810 (-650 (-868))) (|:| -3947 (-650 (-868)))
- (|:| |presup| (-650 (-868))) (|:| -1895 (-650 (-868)))
+ (-2 (|:| -1564 (-650 (-868))) (|:| -3125 (-650 (-868)))
+ (|:| |presup| (-650 (-868))) (|:| -4180 (-650 (-868)))
(|:| |args| (-650 (-868)))))
(-5 *1 (-1186)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3097 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227)))
- (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
- (-5 *2 (-777))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-777))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-732)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-650 (-695 *6))) (-5 *4 (-112)) (-5 *5 (-570))
- (-5 *2 (-695 *6)) (-5 *1 (-1038 *6)) (-4 *6 (-368)) (-4 *6 (-1058))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4))
- (-4 *4 (-368)) (-4 *4 (-1058))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-5 *2 (-695 *5))
- (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-1058)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-928)) (-4 *1 (-240 *3 *4)) (-4 *4 (-1058))
+ (-4 *4 (-1227))))
+ ((*1 *1 *2)
+ (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
+ (-4 *5 (-240 (-2426 *3) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *5))
+ (-2 (|:| -2160 *2) (|:| -3011 *5))))
+ (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *2 (-856))
+ (-4 *7 (-956 *4 *5 (-870 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-650
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856))
- (-5 *1 (-455 *3 *4 *5 *6)))))
+ (|partial| -12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458))
+ (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458))
+ (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
+ (-4 *2 (-13 (-856) (-21))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1190)))))
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-1174 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-761)))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *2 (-1222 (-933)))
+ (-5 *1 (-322))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *7 (-1168))
+ (-5 *2 (-1222 (-933))) (-5 *1 (-322))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570))
+ (-5 *2 (-1222 (-933))) (-5 *1 (-322))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570)) (-5 *8 (-1168))
+ (-5 *2 (-1222 (-933))) (-5 *1 (-322)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1276 *4)) (-4 *4 (-1226)) (-4 *1 (-240 *3 *4)))))
+ (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1227)) (-4 *1 (-240 *3 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2))
+ (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))))
(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1226))
+ (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1227))
(-4 *4 (-378 *2)) (-4 *5 (-378 *2))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
- (-4 *2 (-1226)))))
-(((*1 *1) (-5 *1 (-131))))
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
+ (-4 *2 (-1227)))))
(((*1 *2 *3)
(-12 (-4 *4 (-1058))
- (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288)))
- (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4))))
+ (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4))))
((*1 *1 *1) (-4 *1 (-551)))
((*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-678 *3)) (-4 *3 (-856))))
((*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-683 *3)) (-4 *3 (-856))))
((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-825 *3)) (-4 *3 (-856))))
((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-900 *3)) (-4 *3 (-856))))
- ((*1 *2 *1) (-12 (-4 *1 (-1004 *3)) (-4 *3 (-1226)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1223 *3)) (-4 *3 (-1226))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1004 *3)) (-4 *3 (-1227)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1224 *3)) (-4 *3 (-1227))))
((*1 *2 *1)
- (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1011))
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011))
(-4 *2 (-1058)))))
-(((*1 *1)
- (-12 (-4 *1 (-410)) (-1754 (|has| *1 (-6 -4439)))
- (-1754 (|has| *1 (-6 -4431)))))
- ((*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856))))
- ((*1 *1) (-4 *1 (-850))) ((*1 *1 *1 *1) (-4 *1 (-856)))
- ((*1 *2 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5))
- (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-1289 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1289 *5 *6 *7 *8)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058))
- (-5 *1 (-1170 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058))
- (-14 *4 (-1186)) (-14 *5 *3))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
- (-5 *2 (-650 *4)) (-5 *1 (-1123 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-1058))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1252 *4)))))
-(((*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1209)))))
+ (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1250 *5 *4)))
+ (-5 *1 (-1123 *4 *5)) (-5 *3 (-1250 *5 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
+(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))))
(((*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4))
- (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4))))))
+ (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4))))))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
+ (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))))
+(((*1 *1) (-5 *1 (-158))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *3))
- (-4 *3 (-1226)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2))
- (-4 *2 (-1267 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1252 *3))
- (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1267 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2))
- (-4 *2 (-1267 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148)))
- (-5 *1 (-1162 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-959 (-570)))) (-5 *1 (-443))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-227))) (-5 *2 (-1113))
- (-5 *1 (-765))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-570))) (-5 *2 (-1113))
- (-5 *1 (-765)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4450)) (-4 *1 (-495 *3))
+ (-4 *3 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-695 (-570))) (-5 *5 (-112)) (-5 *7 (-695 (-227)))
+ (-5 *3 (-570)) (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-760)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8))
- (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148)))
- (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-112))
- (-5 *1 (-931 *5 *6 *7 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-1216 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-562)) (-4 *2 (-1058))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1))))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))))
+ (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-1277 *5)) (-4 *5 (-311))
+ (-4 *5 (-1058)) (-5 *2 (-695 *5)) (-5 *1 (-1038 *5)))))
+(((*1 *2)
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4))))
- (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1227))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1109)) (-4 *4 (-1109))
+ (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *5 *4 *6)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
+ (-12 (-5 *2 (-777))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4))
- (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4))))))
+ (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4))))))
((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174))))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |c| (-413 *6))
+ (|:| -3608 *6)))
+ (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
(((*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-512))) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-882))) (-5 *1 (-489)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-928))
- (-5 *2 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129))))))
- (-5 *1 (-351 *4)) (-4 *4 (-354)))))
-(((*1 *1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1) (-4 *1 (-306))))
-(((*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-413 (-570))))) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))))
-(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-687))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
+ ((*1 *1) (-5 *1 (-130)))
+ ((*1 *1)
+ (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
+ (-4 *4 (-174))))
+ ((*1 *1) (-5 *1 (-552))) ((*1 *1) (-5 *1 (-553)))
+ ((*1 *1) (-5 *1 (-554))) ((*1 *1) (-5 *1 (-555)))
+ ((*1 *1) (-4 *1 (-732))) ((*1 *1) (-5 *1 (-1186)))
+ ((*1 *1) (-12 (-5 *1 (-1192 *2)) (-14 *2 (-928))))
+ ((*1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928))))
+ ((*1 *1) (-5 *1 (-1232))) ((*1 *1) (-5 *1 (-1233)))
+ ((*1 *1) (-5 *1 (-1234))) ((*1 *1) (-5 *1 (-1235))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-249 *5 *6))) (-4 *6 (-458))
+ (-5 *2 (-249 *5 *6)) (-14 *5 (-650 (-1186))) (-5 *1 (-637 *5 *6)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
+ (-4 *2 (-1253 (-171 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-687))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1127)))))
-(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
- ((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |k| (-678 *3)) (|:| |c| *4))))
+ (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
+ (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))))
(((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -3299,34 +3481,21 @@
((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1021))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-928))))
((*1 *1 *1) (-4 *1 (-1021))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227)))))
((*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4))
+ (-4 *4 (-1253 *2)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-650 *1))
- (-4 *1 (-436 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
- (-4 *3 (-1109))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
- (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3))
- (-5 *1 (-957 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $))
- (-15 -4412 (*7 $))))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-4 *1 (-152 *3))))
+ (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
+ (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-152 *3))))
((*1 *1 *2)
(-12
- (-5 *2 (-650 (-2 (|:| -1907 (-777)) (|:| -2177 *4) (|:| |num| *4))))
- (-4 *4 (-1252 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4))))
+ (-5 *2 (-650 (-2 (|:| -3011 (-777)) (|:| -2178 *4) (|:| |num| *4))))
+ (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void")))
(-5 *3 (-650 (-959 (-570)))) (-5 *4 (-112)) (-5 *1 (-443))))
@@ -3334,7 +3503,7 @@
(-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void")))
(-5 *3 (-650 (-1186))) (-5 *4 (-112)) (-5 *1 (-443))))
((*1 *2 *1)
- (-12 (-5 *2 (-1166 *3)) (-5 *1 (-607 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1166 *3)) (-5 *1 (-607 *3)) (-4 *3 (-1227))))
((*1 *1 *1 *1) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4))
@@ -3351,13 +3520,13 @@
((*1 *1 *2 *3)
(-12 (-5 *1 (-719 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-1109))
(-14 *4
- (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *3))
- (-2 (|:| -2159 *2) (|:| -1907 *3))))))
+ (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *3))
+ (-2 (|:| -2160 *2) (|:| -3011 *3))))))
((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-844))))
((*1 *1 *2 *3)
- (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1226)) (-4 *3 (-1226))))
+ (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227))))
((*1 *1 *2)
- (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 *4))))
(-4 *4 (-1109)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-650 *5)) (-4 *5 (-13 (-1109) (-34)))
@@ -3392,68 +3561,52 @@
((*1 *1 *2 *3)
(-12 (-5 *1 (-1175 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-650 (-650 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-650 (-650 *5)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-650 *3))) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
-(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1220 *5 *6 *7 *3))
+ (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-618 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4)))
+ (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *4 *2)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1211) (-966)))))
+ (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1212) (-966)))))
((*1 *1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
((*1 *1 *1) (-5 *1 (-868)))
((*1 *2 *3)
(-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))))
-(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-295)))
- ((*1 *1) (-5 *1 (-868)))
- ((*1 *1)
- (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799))
- (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1094)))
- ((*1 *1)
- (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34)))))
- ((*1 *1) (-5 *1 (-1189))) ((*1 *1) (-5 *1 (-1190))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
- (-4 *3 (-562)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-354)) (-4 *4 (-333 *3)) (-4 *5 (-1252 *4))
- (-5 *1 (-783 *3 *4 *5 *2 *6)) (-4 *2 (-1252 *5)) (-14 *6 (-928))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-4 *3 (-373))))
- ((*1 *1 *1) (-12 (-4 *1 (-1295 *2)) (-4 *2 (-368)) (-4 *2 (-373)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-38 (-413 (-570))))
+ (-5 *2 (-2 (|:| -2712 (-1166 *4)) (|:| -2723 (-1166 *4))))
+ (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *2)) (-5 *1 (-181 *2)) (-4 *2 (-311))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-650 (-650 *4))) (-5 *2 (-650 *4)) (-4 *4 (-311))
- (-5 *1 (-181 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 *8))
- (-5 *4
- (-650
- (-2 (|:| -2331 (-695 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-695 *7)))))
- (-5 *5 (-777)) (-4 *8 (-1252 *7)) (-4 *7 (-1252 *6)) (-4 *6 (-354))
- (-5 *2
- (-2 (|:| -2331 (-695 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-695 *7))))
- (-5 *1 (-504 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
- ((*1 *1 *1) (-4 *1 (-1069))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570))))
+ (-5 *1 (-192)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-650 (-48))) (-5 *2 (-424 *3)) (-5 *1 (-39 *3))
- (-4 *3 (-1252 (-48)))))
+ (-4 *3 (-1253 (-48)))))
((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48)))))
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-650 (-48))) (-4 *5 (-856)) (-4 *6 (-799))
(-5 *2 (-424 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-956 (-48) *6 *5))))
@@ -3463,33 +3616,33 @@
(-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1182 *7))))
((*1 *2 *3)
(-12 (-4 *4 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-168 *4 *3))
- (-4 *3 (-1252 (-171 *4)))))
+ (-4 *3 (-1253 (-171 *4)))))
((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4)))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4)))))
((*1 *2 *3 *4)
(-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4)))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4)))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3))
- (-4 *3 (-1252 *4))))
+ (-4 *3 (-1253 *4))))
((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
- (-4 *3 (-1252 (-570)))))
+ (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
- (-4 *3 (-1252 (-570)))))
+ (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3))
- (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4 *4)
(-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
- (-4 *3 (-1252 (-570)))))
+ (-4 *3 (-1253 (-570)))))
((*1 *2 *3)
(-12 (-5 *2 (-424 (-171 (-570)))) (-5 *1 (-452))
(-5 *3 (-171 (-570)))))
@@ -3497,7 +3650,7 @@
(-12
(-4 *4
(-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
+ (-10 -8 (-15 -1417 ((-1186) $))
(-15 -2643 ((-3 $ "failed") (-1186))))))
(-4 *5 (-799)) (-4 *7 (-562)) (-5 *2 (-424 *3))
(-5 *1 (-462 *4 *5 *6 *7 *3)) (-4 *6 (-562))
@@ -3506,9 +3659,9 @@
(-12 (-4 *4 (-311)) (-5 *2 (-424 (-1182 *4))) (-5 *1 (-464 *4))
(-5 *3 (-1182 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368))
+ (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
(-4 *7 (-13 (-368) (-148) (-730 *5 *6))) (-5 *2 (-424 *3))
- (-5 *1 (-500 *5 *6 *7 *3)) (-4 *3 (-1252 *7))))
+ (-5 *1 (-500 *5 *6 *7 *3)) (-4 *3 (-1253 *7))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1 (-424 (-1182 *7)) (-1182 *7)))
(-4 *7 (-13 (-311) (-148))) (-4 *5 (-856)) (-4 *6 (-799))
@@ -3523,19 +3676,19 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-1 (-650 *5) *6))
(-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *6 (-1252 *5)) (-5 *2 (-650 (-659 (-413 *6))))
+ (-4 *6 (-1253 *5)) (-5 *2 (-650 (-659 (-413 *6))))
(-5 *1 (-663 *5 *6)) (-5 *3 (-659 (-413 *6)))))
((*1 *2 *3)
(-12 (-4 *4 (-27))
(-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *5 (-1252 *4)) (-5 *2 (-650 (-659 (-413 *5))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-650 (-659 (-413 *5))))
(-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5)))))
((*1 *2 *3)
(-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-678 *4)))
(-5 *1 (-678 *4))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-570)) (-5 *2 (-650 *3)) (-5 *1 (-702 *3))
- (-4 *3 (-1252 *4))))
+ (-4 *3 (-1253 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-354)) (-5 *2 (-424 *3))
(-5 *1 (-704 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4))))
@@ -3547,13 +3700,13 @@
(-12 (-4 *4 (-799))
(-4 *5
(-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
+ (-10 -8 (-15 -1417 ((-1186) $))
(-15 -2643 ((-3 $ "failed") (-1186))))))
(-4 *6 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-736 *4 *5 *6 *3))
(-4 *3 (-956 (-959 *6) *4 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-799))
- (-4 *5 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *6 (-562))
+ (-4 *5 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *6 (-562))
(-5 *2 (-424 *3)) (-5 *1 (-738 *4 *5 *6 *3))
(-4 *3 (-956 (-413 (-959 *6)) *4 *5))))
((*1 *2 *3)
@@ -3570,91 +3723,96 @@
(-5 *1 (-747 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
((*1 *2 *3)
(-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3))
- (-4 *3 (-1252 (-413 (-570))))))
+ (-4 *3 (-1253 (-413 (-570))))))
((*1 *2 *3)
(-12 (-5 *2 (-424 *3)) (-5 *1 (-1050 *3))
- (-4 *3 (-1252 (-413 (-959 (-570)))))))
+ (-4 *3 (-1253 (-413 (-959 (-570)))))))
((*1 *2 *3)
- (-12 (-4 *4 (-1252 (-413 (-570))))
+ (-12 (-4 *4 (-1253 (-413 (-570))))
(-4 *5 (-13 (-368) (-148) (-730 (-413 (-570)) *4)))
- (-5 *2 (-424 *3)) (-5 *1 (-1088 *4 *5 *3)) (-4 *3 (-1252 *5))))
+ (-5 *2 (-424 *3)) (-5 *1 (-1088 *4 *5 *3)) (-4 *3 (-1253 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-1252 (-413 (-959 (-570)))))
+ (-12 (-4 *4 (-1253 (-413 (-959 (-570)))))
(-4 *5 (-13 (-368) (-148) (-730 (-413 (-959 (-570))) *4)))
- (-5 *2 (-424 *3)) (-5 *1 (-1090 *4 *5 *3)) (-4 *3 (-1252 *5))))
+ (-5 *2 (-424 *3)) (-5 *1 (-1090 *4 *5 *3)) (-4 *3 (-1253 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458))
(-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7))))
(-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1230))))
+ ((*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231))))
((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-1241 *3)) (-4 *3 (-1252 (-570))))))
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-90 *4 *5))
+ (-5 *3 (-695 *4)) (-4 *5 (-662 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227)))))
((*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-368)) (-14 *6 (-1276 (-695 *3)))
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-368)) (-14 *6 (-1277 (-695 *3)))
(-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-928)) (-14 *5 (-650 (-1186)))))
((*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1226))))
+ ((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1227))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'JINT 'X 'ELAM) (-3748) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'JINT 'X 'ELAM) (-3749) (-705))))
(-5 *1 (-61 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 'XC) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 'XC) (-705))))
(-5 *1 (-63 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3748 'X) (-3748) (-705))) (-5 *1 (-64 *3))
+ (-12 (-5 *2 (-344 (-3749 'X) (-3749) (-705))) (-5 *1 (-64 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3748) (-3748 'XC) (-705))) (-5 *1 (-66 *3))
+ (-12 (-5 *2 (-344 (-3749) (-3749 'XC) (-705))) (-5 *1 (-66 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'X) (-3748 '-1547) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'X) (-3749 '-1548) (-705))))
(-5 *1 (-71 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 'X) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 'X) (-705))))
(-5 *1 (-74 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'X 'EPS) (-3748 '-1547) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'X 'EPS) (-3749 '-1548) (-705))))
(-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186))
(-14 *5 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'EPS) (-3748 'YA 'YB) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'EPS) (-3749 'YA 'YB) (-705))))
(-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186))
(-14 *5 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3748) (-3748 'X) (-705))) (-5 *1 (-77 *3))
+ (-12 (-5 *2 (-344 (-3749) (-3749 'X) (-705))) (-5 *1 (-77 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3748) (-3748 'X) (-705))) (-5 *1 (-78 *3))
+ (-12 (-5 *2 (-344 (-3749) (-3749 'X) (-705))) (-5 *1 (-78 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 'XC) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 'XC) (-705))))
(-5 *1 (-79 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748) (-3748 'X) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749) (-3749 'X) (-705))))
(-5 *1 (-80 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'X '-1547) (-3748) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'X '-1548) (-3749) (-705))))
(-5 *1 (-82 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-695 (-344 (-3748 'X '-1547) (-3748) (-705))))
+ (-12 (-5 *2 (-695 (-344 (-3749 'X '-1548) (-3749) (-705))))
(-5 *1 (-83 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-695 (-344 (-3748 'X) (-3748) (-705)))) (-5 *1 (-84 *3))
+ (-12 (-5 *2 (-695 (-344 (-3749 'X) (-3749) (-705)))) (-5 *1 (-84 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'X) (-3748) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'X) (-3749) (-705))))
(-5 *1 (-85 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-344 (-3748 'X) (-3748 '-1547) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3749 'X) (-3749 '-1548) (-705))))
(-5 *1 (-86 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-695 (-344 (-3748 'XL 'XR 'ELAM) (-3748) (-705))))
+ (-12 (-5 *2 (-695 (-344 (-3749 'XL 'XR 'ELAM) (-3749) (-705))))
(-5 *1 (-87 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3748 'X) (-3748 '-1547) (-705))) (-5 *1 (-89 *3))
+ (-12 (-5 *2 (-344 (-3749 'X) (-3749 '-1548) (-705))) (-5 *1 (-89 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
(-12 (-5 *2 (-650 (-137 *3 *4 *5))) (-5 *1 (-137 *3 *4 *5))
@@ -3669,8 +3827,8 @@
(-12 (-5 *2 (-242 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174))
(-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))))
((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-695 *4))) (-4 *4 (-174))
- (-5 *2 (-1276 (-695 (-413 (-959 *4))))) (-5 *1 (-191 *4))))
+ (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174))
+ (-5 *2 (-1277 (-695 (-413 (-959 *4))))) (-5 *1 (-191 *4))))
((*1 *2 *3)
(-12 (-5 *3 (-1101 (-320 *4)))
(-4 *4 (-13 (-856) (-562) (-620 (-384)))) (-5 *2 (-1101 (-384)))
@@ -3678,12 +3836,12 @@
((*1 *1 *2) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278))))
((*1 *2 *1)
- (-12 (-4 *2 (-1252 *3)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7))
+ (-12 (-4 *2 (-1253 *3)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7))
(-4 *3 (-174)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *2 "failed") *2 *2 *4))))
((*1 *1 *2)
- (-12 (-5 *2 (-1261 *4 *5 *6)) (-4 *4 (-13 (-27) (-1211) (-436 *3)))
+ (-12 (-5 *2 (-1262 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3)))
(-14 *5 (-1186)) (-14 *6 *4)
(-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
(-5 *1 (-317 *3 *4 *5 *6))))
@@ -3698,10 +3856,10 @@
(-4 *3 (-333 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
- (-5 *2 (-1300 *3 *4))))
+ (-5 *2 (-1301 *3 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
- (-5 *2 (-1291 *3 *4))))
+ (-5 *2 (-1292 *3 *4))))
((*1 *1 *2) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174))))
((*1 *1 *2)
(-12
@@ -3814,7 +3972,7 @@
(-4 *1 (-446))))
((*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-446))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-446))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-705))) (-4 *1 (-446))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-705))) (-4 *1 (-446))))
((*1 *1 *2)
(-12
(-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3136 (-650 (-334)))))
@@ -3822,34 +3980,34 @@
((*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-447))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-447))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-413 (-959 *3)))) (-4 *3 (-174))
- (-14 *6 (-1276 (-695 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-12 (-5 *2 (-1277 (-413 (-959 *3)))) (-4 *3 (-174))
+ (-14 *6 (-1277 (-695 *3))) (-5 *1 (-459 *3 *4 *5 *6))
(-14 *4 (-928)) (-14 *5 (-650 (-1186)))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474))))
((*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-474))))
((*1 *1 *2)
- (-12 (-5 *2 (-1261 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186))
+ (-12 (-5 *2 (-1262 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186))
(-14 *5 *3) (-5 *1 (-480 *3 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501))))
((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-508))))
((*1 *1 *2)
(-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368))
(-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-530))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-612))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612))))
((*1 *1 *2)
(-12 (-4 *3 (-174)) (-5 *1 (-613 *3 *2)) (-4 *2 (-750 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-619 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2) (-12 (-4 *1 (-622 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (-12 (-4 *1 (-619 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2) (-12 (-4 *1 (-622 *2)) (-4 *2 (-1227))))
((*1 *1 *2) (-12 (-4 *1 (-626 *2)) (-4 *2 (-1058))))
((*1 *2 *1)
- (-12 (-5 *2 (-1296 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
+ (-12 (-5 *2 (-1297 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
(-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928))))
((*1 *2 *1)
- (-12 (-5 *2 (-1291 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
+ (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
(-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928))))
((*1 *1 *2)
(-12 (-4 *3 (-174)) (-5 *1 (-641 *3 *2)) (-4 *2 (-750 *3))))
@@ -3886,7 +4044,7 @@
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-650 (-2 (|:| -1441 *3) (|:| -3278 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -1442 *3) (|:| -3278 *4))))
(-4 *3 (-1058)) (-4 *4 (-732)) (-5 *1 (-741 *3 *4))))
((*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-769))))
((*1 *1 *2)
@@ -3895,33 +4053,33 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(|:| |mdnia|
(-2 (|:| |fn| (-320 (-227)))
- (|:| -3758 (-650 (-1103 (-849 (-227)))))
+ (|:| -1990 (-650 (-1103 (-849 (-227)))))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))))
(-5 *1 (-775))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |fn| (-320 (-227)))
- (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
+ (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *1 (-775))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *1 (-775))))
- ((*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1226))))
+ ((*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1227))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
(|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))
(-5 *1 (-814))))
@@ -3931,23 +4089,23 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
(|:| |lb| (-650 (-849 (-227))))
(|:| |cf| (-650 (-320 (-227))))
(|:| |ub| (-650 (-849 (-227))))))
(|:| |lsa|
(-2 (|:| |lfn| (-650 (-320 (-227))))
- (|:| -2314 (-650 (-227)))))))
+ (|:| -2315 (-650 (-227)))))))
(-5 *1 (-847))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))
(-5 *1 (-847))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
(|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
(|:| |ub| (-650 (-849 (-227))))))
(-5 *1 (-847))))
@@ -3985,8 +4143,8 @@
((*1 *2 *3)
(-12 (-5 *3 (-483)) (-5 *2 (-320 *4)) (-5 *1 (-926 *4))
(-4 *4 (-562))))
- ((*1 *2 *3) (-12 (-5 *2 (-1281)) (-5 *1 (-1042 *3)) (-4 *3 (-1226))))
- ((*1 *2 *3) (-12 (-5 *3 (-316)) (-5 *1 (-1042 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1282)) (-5 *1 (-1042 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *3) (-12 (-5 *3 (-316)) (-5 *1 (-1042 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
(-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
(-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *2 (-956 *3 *4 *5))
@@ -4004,13 +4162,13 @@
((*1 *2 *3)
(-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058))))
((*1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1249 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186))
+ (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186))
(-14 *5 *3) (-5 *1 (-1184 *3 *4 *5))))
((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1185))))
((*1 *2 *1) (-12 (-5 *2 (-1199 (-1186) (-443))) (-5 *1 (-1190))))
@@ -4019,173 +4177,350 @@
((*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191))))
((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191))))
((*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1198 *3)) (-4 *3 (-1109))))
- ((*1 *2 *3) (-12 (-5 *2 (-1206)) (-5 *1 (-1205 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1207)) (-5 *1 (-1206 *3)) (-4 *3 (-1109))))
((*1 *1 *2)
- (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-5 *1 (-1220 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1220 *3)) (-4 *3 (-1058))))
+ (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-5 *1 (-1221 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-1058))))
((*1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1240 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1103 *3)) (-4 *3 (-1226)) (-5 *1 (-1243 *3))))
+ (-12 (-5 *2 (-1103 *3)) (-4 *3 (-1227)) (-5 *1 (-1244 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1268 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1249 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186))
- (-14 *5 *3) (-5 *1 (-1268 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1272 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1277))))
- ((*1 *2 *3) (-12 (-5 *3 (-474)) (-5 *2 (-1277)) (-5 *1 (-1280))))
+ (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186))
+ (-14 *5 *3) (-5 *1 (-1269 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1278))))
+ ((*1 *2 *3) (-12 (-5 *3 (-474)) (-5 *2 (-1278)) (-5 *1 (-1281))))
((*1 *1 *2)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
((*1 *2 *1)
- (-12 (-5 *2 (-1300 *3 *4)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856))
+ (-12 (-5 *2 (-1301 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856))
(-4 *4 (-174))))
((*1 *2 *1)
- (-12 (-5 *2 (-1291 *3 *4)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856))
+ (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856))
(-4 *4 (-174))))
((*1 *1 *2)
(-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
- (-5 *1 (-1296 *3 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1226))
- (-4 *5 (-1226)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-242 *6 *7)) (-14 *6 (-777))
- (-4 *7 (-1226)) (-4 *5 (-1226)) (-5 *2 (-242 *6 *5))
- (-5 *1 (-241 *6 *7 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1226)) (-4 *5 (-1226))
- (-4 *2 (-378 *5)) (-5 *1 (-376 *6 *4 *5 *2)) (-4 *4 (-378 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1109)) (-4 *5 (-1109))
- (-4 *2 (-431 *5)) (-5 *1 (-429 *6 *4 *5 *2)) (-4 *4 (-431 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-650 *6)) (-4 *6 (-1226))
- (-4 *5 (-1226)) (-5 *2 (-650 *5)) (-5 *1 (-648 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-965 *6)) (-4 *6 (-1226))
- (-4 *5 (-1226)) (-5 *2 (-965 *5)) (-5 *1 (-964 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1166 *6)) (-4 *6 (-1226))
- (-4 *3 (-1226)) (-5 *2 (-1166 *3)) (-5 *1 (-1164 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1276 *6)) (-4 *6 (-1226))
- (-4 *5 (-1226)) (-5 *2 (-1276 *5)) (-5 *1 (-1275 *6 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058))
- (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))))
+ (-5 *1 (-1297 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -1733 *1) (|:| -4435 *1) (|:| |associate| *1)))
- (-4 *1 (-562)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+ (-12
+ (-5 *2
+ (-650
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-570)))))
+ (-5 *1 (-424 *3)) (-4 *3 (-562))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-777)) (-4 *3 (-354)) (-4 *5 (-1253 *3))
+ (-5 *2 (-650 (-1182 *3))) (-5 *1 (-504 *3 *5 *6))
+ (-4 *6 (-1253 *5)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-4 *5 (-1253 *4)) (-5 *2 (-1282))
+ (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1253 (-413 *5))) (-14 *7 *6))))
(((*1 *2 *3)
(-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4))))
+ (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4))))
((*1 *2 *3 *3)
(-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))))
-(((*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(((*1 *2 *3 *3 *4)
+ (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))))
+(((*1 *2 *3 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-610 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1227)) (-5 *2 (-1282)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777))
- (-5 *2
- (-2 (|:| |contp| (-570))
- (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570)))))))
- (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
- (-4 *2 (-1252 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1252 *3)))))
+ (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4))
+ (-4 *4 (-1253 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*1 *2 *1 *3 *2)
(-12 (-5 *3 (-777)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928))
(-4 *2 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1101 (-849 *3))) (-4 *3 (-13 (-1212) (-966) (-29 *5)))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-221 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1101 (-849 *3))) (-5 *5 (-1168))
+ (-4 *3 (-13 (-1212) (-966) (-29 *6)))
+ (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-221 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1101 (-849 (-320 *5))))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-222 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1101 (-849 (-320 *6))))
+ (-5 *5 (-1168))
+ (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-222 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1101 (-849 (-413 (-959 *5))))) (-5 *3 (-413 (-959 *5)))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-222 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1101 (-849 (-413 (-959 *6))))) (-5 *5 (-1168))
+ (-5 *3 (-413 (-959 *6)))
+ (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-222 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-3 *3 (-650 *3))) (-5 *1 (-434 *5 *3))
+ (-4 *3 (-13 (-1212) (-966) (-29 *5)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
+ (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
+ (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
+ (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
+ (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
+ (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
+ (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
+ (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
+ (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384))))
+ (-5 *5 (-1168)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384))))
+ (-5 *5 (-1186)) (-5 *2 (-1044)) (-5 *1 (-571))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4))
+ (-5 *2 (-592 (-413 *5))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-3 (-320 *5) (-650 (-320 *5)))) (-5 *1 (-595 *5))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-746 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-856))
+ (-4 *3 (-38 (-413 (-570))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-959 *3)) (-4 *3 (-38 (-413 (-570))))
+ (-4 *3 (-1058))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-4 *2 (-856))
+ (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058))
+ (-5 *1 (-1170 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-38 (-413 (-570))))
+ (-4 *3 (-1058))))
+ ((*1 *1 *1 *2)
+ (-2740
+ (-12 (-5 *2 (-1186)) (-4 *1 (-1237 *3)) (-4 *3 (-1058))
+ (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1212))
+ (-4 *3 (-38 (-413 (-570))))))
+ (-12 (-5 *2 (-1186)) (-4 *1 (-1237 *3)) (-4 *3 (-1058))
+ (-12 (|has| *3 (-15 -1713 ((-650 *2) *3)))
+ (|has| *3 (-15 -3722 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
+ ((*1 *1 *1 *2)
+ (-2740
+ (-12 (-5 *2 (-1186)) (-4 *1 (-1258 *3)) (-4 *3 (-1058))
+ (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1212))
+ (-4 *3 (-38 (-413 (-570))))))
+ (-12 (-5 *2 (-1186)) (-4 *1 (-1258 *3)) (-4 *3 (-1058))
+ (-12 (|has| *3 (-15 -1713 ((-650 *2) *3)))
+ (|has| *3 (-15 -3722 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1258 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1262 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-2740
+ (-12 (-5 *2 (-1186)) (-4 *1 (-1268 *3)) (-4 *3 (-1058))
+ (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1212))
+ (-4 *3 (-38 (-413 (-570))))))
+ (-12 (-5 *2 (-1186)) (-4 *1 (-1268 *3)) (-4 *3 (-1058))
+ (-12 (|has| *3 (-15 -1713 ((-650 *2) *3)))
+ (|has| *3 (-15 -3722 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112))
- (-5 *1 (-1303 *4)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -3282 *3))))
- (-5 *4 (-777)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799))
- (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-158))))
- ((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3383 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
+(((*1 *2 *3)
(-12
(-5 *3
- (-650
- (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
- (|:| |wcond| (-650 (-959 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *5))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *5))))))))))
- (-5 *4 (-1168)) (-4 *5 (-13 (-311) (-148))) (-4 *8 (-956 *5 *7 *6))
- (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-570))
- (-5 *1 (-931 *5 *6 *7 *8)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-763)))))
-(((*1 *1 *1) (-4 *1 (-875 *2))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-173)) (-5 *1 (-1174 *4 *5))
- (-14 *4 (-928)) (-4 *5 (-1058)))))
+ (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
+ (-249 *4 (-413 (-570)))))
+ (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112))
+ (-5 *1 (-511 *4 *5)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2))
- (-4 *5 (-378 *2)) (-4 *2 (-1226))))
+ (-4 *5 (-378 *2)) (-4 *2 (-1227))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-777)) (-4 *2 (-1109)) (-5 *1 (-215 *4 *2))
(-14 *4 (-928))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226))))
+ (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7))
(-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-959 *6)) (-5 *4 (-1186))
+ (-5 *5 (-849 *7))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-4 *7 (-13 (-1212) (-29 *6))) (-5 *1 (-226 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1182 *6)) (-5 *4 (-849 *6))
+ (-4 *6 (-13 (-1212) (-29 *5)))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-226 *5 *6)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-334))))
((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-897 *4 *3))
- (-4 *3 (-1226))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227)))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058))
- (-5 *2 (-777)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
- (-5 *1 (-580 *5 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-985 *4 *5 *3 *6)) (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-368) (-148)))
+ (-5 *2 (-650 (-2 (|:| -3011 (-777)) (|:| -2178 *4) (|:| |num| *4))))
+ (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-618 *4)) (-5 *6 (-1182 *4))
+ (-4 *4 (-13 (-436 *7) (-27) (-1212)))
+ (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-618 *4)) (-5 *6 (-413 (-1182 *4)))
+ (-4 *4 (-13 (-436 *7) (-27) (-1212)))
+ (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
+ (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1253 (-570)))
+ (-5 *2
+ (-2 (|:| -2003 (-695 (-570))) (|:| |basisDen| (-570))
+ (|:| |basisInv| (-695 (-570)))))
+ (-5 *1 (-774 *3 *4)) (-4 *4 (-415 (-570) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-695 *4))))
+ (-5 *1 (-994 *3 *4 *5 *6)) (-4 *6 (-730 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-695 *4))))
+ (-5 *1 (-1286 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
+ (-4 *3 (-1253 *4)) (-5 *2 (-112)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-618 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109))
(-4 *4 (-562)) (-5 *2 (-413 (-1182 *1)))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1211)))
+ (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *6) (-27) (-1212)))
(-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
(-5 *2 (-1182 (-413 (-1182 *3)))) (-5 *1 (-566 *6 *3 *7))
(-5 *5 (-1182 *3)) (-4 *7 (-1109))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1272 *5)) (-14 *5 (-1186)) (-4 *6 (-1058))
- (-5 *2 (-1249 *5 (-959 *6))) (-5 *1 (-954 *5 *6)) (-5 *3 (-959 *6))))
+ (-12 (-5 *4 (-1273 *5)) (-14 *5 (-1186)) (-4 *6 (-1058))
+ (-5 *2 (-1250 *5 (-959 *6))) (-5 *1 (-954 *5 *6)) (-5 *3 (-959 *6))))
((*1 *2 *1)
(-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
(-4 *5 (-856)) (-5 *2 (-1182 *3))))
@@ -4198,95 +4533,153 @@
(-5 *1 (-957 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $)))))))
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1182 *3))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $)))))
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))
(-4 *7 (-956 *6 *5 *4)) (-4 *5 (-799)) (-4 *4 (-856))
(-4 *6 (-1058)) (-5 *1 (-957 *5 *4 *6 *7 *3))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1186)) (-4 *5 (-562))
(-5 *2 (-413 (-1182 (-413 (-959 *5))))) (-5 *1 (-1052 *5))
(-5 *3 (-413 (-959 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-764)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-650
+ (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *3))
+ (|:| |logand| (-1182 *3)))))
+ (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1186))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-650 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -3585 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1212) (-27) (-436 *8)))
+ (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -4411 *4) (|:| |sol?| (-112))))
+ (-5 *1 (-1022 *8 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4))
- (-4 *4 (-1109)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-115)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *2))
- (-4 *2 (-654 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-5 *1 (-842 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
- (-5 *3 (-570)))))
-(((*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3))
- (-4 *3 (-1252 *4))))
+ (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1227))
+ (-4 *5 (-378 *4)) (-4 *3 (-378 *4)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570))))
((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *3 *5 *6 *7))
+ (-4 *3 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227))
+ (-4 *7 (-1227))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
- (-4 *3 (-1252 (-570)))))
+ (-12 (-5 *4 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *3 *5 *6))
+ (-4 *3 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)))))
+(((*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *1) (-5 *1 (-638))))
+(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799))
+ (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1078 *7 *8 *9 *3 *4)) (-4 *4 (-1080 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
- (-4 *3 (-1252 (-570)))))
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799))
+ (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1154 *7 *8 *9 *3 *4)) (-4 *4 (-1118 *7 *8 *9 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3))
- (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
- (-4 *3 (-1252 (-570)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3))
- (-4 *3 (-1252 (-413 (-570))))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-1241 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562))
- (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (|has| *1 (-6 -4439)) (-4 *1 (-410))
- (-5 *2 (-928)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *7 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
- (-4 *8 (-956 *7 *5 *6))
- (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *3) (|:| |radicand| *3)))
- (-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *8)) (-15 -4398 (*8 $)) (-15 -4412 (*8 $))))))))
-(((*1 *1 *1 *1) (-4 *1 (-479))) ((*1 *1 *1 *1) (-4 *1 (-767))))
-(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
- ((*1 *1 *1 *1) (-4 *1 (-479)))
- ((*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-890))))
- ((*1 *1 *1) (-5 *1 (-980)))
- ((*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*1 *1) (-5 *1 (-142))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+ (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-174))))
+ ((*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384)))
+ (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282))
+ (-5 *1 (-794))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384)))
+ (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282))
+ (-5 *1 (-794)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-777)) (-4 *5 (-174))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-777)) (-4 *5 (-174))))
+ ((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
+ (-249 *4 (-413 (-570)))))
+ (-5 *3 (-650 (-870 *4))) (-14 *4 (-650 (-1186))) (-14 *5 (-777))
+ (-5 *1 (-511 *4 *5)))))
(((*1 *2 *2)
(-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-32 *3 *4))
(-4 *4 (-436 *3))))
@@ -4311,153 +4704,153 @@
((*1 *2 *1) (-12 (-5 *2 (-115)) (-5 *1 (-618 *3)) (-4 *3 (-1109))))
((*1 *2 *2)
(-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-636 *3 *4))
- (-4 *4 (-13 (-436 *3) (-1011) (-1211)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *3 *5 *6 *7))
- (-4 *3 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226))
- (-4 *7 (-1226))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *3 *5 *6))
- (-4 *3 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226)))))
+ (-4 *4 (-13 (-436 *3) (-1011) (-1212)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-55)) (-5 *1 (-1200 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-1141 *4 *2))
+ (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4449) (-6 -4450))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2))
+ (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4449) (-6 -4450)))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |mval| (-695 *3)) (|:| |invmval| (-695 *3))
+ (|:| |genIdeal| (-510 *3 *4 *5 *6))))
+ (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))))
(((*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *2 (-650 (-413 (-570)))) (-5 *1 (-1029 *4))
+ (-4 *4 (-1253 (-570))))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109))
+ (-4 *2 (-132)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-366 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-391 *4)) (-4 *4 (-1109)) (-5 *2 (-777))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *2 (-23)) (-5 *1 (-655 *4 *2 *5))
+ (-4 *4 (-1109)) (-14 *5 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-799)) (-4 *2 (-956 *4 *5 *6)) (-5 *1 (-455 *4 *5 *6 *2))
+ (-4 *4 (-458)) (-4 *6 (-856)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-413 *2)) (-4 *2 (-1252 *5))
+ (|partial| -12 (-5 *4 (-413 *2)) (-4 *2 (-1253 *5))
(-5 *1 (-813 *5 *2 *3 *6))
(-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
(-4 *3 (-662 *2)) (-4 *6 (-662 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-413 *2))) (-4 *2 (-1252 *5))
+ (-12 (-5 *4 (-650 (-413 *2))) (-4 *2 (-1253 *5))
(-5 *1 (-813 *5 *2 *3 *6))
(-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2))
(-4 *6 (-662 (-413 *2))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231))
+ (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-171 *5)) (-5 *1 (-606 *4 *5 *3))
+ (-4 *5 (-13 (-436 *4) (-1011) (-1212)))
+ (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
+ (-4 *4 (-378 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-897 *4 *5)) (-4 *5 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1176)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4)))
+ (-5 *2 (-2 (|:| |num| (-1277 *4)) (|:| |den| *4))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227)))
+ (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))))
+(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))))
+(((*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058))))
+ ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
(-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227))))
(-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-695 *2)) (-4 *2 (-174)) (-5 *1 (-147 *2))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-174)) (-4 *2 (-1252 *4)) (-5 *1 (-179 *4 *2 *3))
- (-4 *3 (-730 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 (-413 (-959 *5)))) (-5 *4 (-1186))
- (-5 *2 (-959 *5)) (-5 *1 (-296 *5)) (-4 *5 (-458))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-5 *2 (-959 *4))
- (-5 *1 (-296 *4)) (-4 *4 (-458))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1252 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 (-171 (-413 (-570)))))
- (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *4))
- (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *4 (-1186))
- (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *5))
- (-4 *5 (-13 (-368) (-854)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-959 (-413 (-570))))
- (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *4 (-1186))
- (-5 *2 (-959 (-413 (-570)))) (-5 *1 (-785 *5))
- (-4 *5 (-13 (-368) (-854))))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3738 *4) (|:| -1601 (-570)))))
- (-4 *4 (-1252 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-3 (|:| |%expansion| (-317 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))))
- (-5 *1 (-426 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))
- (-14 *6 (-1186)) (-14 *7 *3))))
-(((*1 *1 *1) (-4 *1 (-1069))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
- (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4))
+ (-4 *4 (-1227)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
-(((*1 *2 *1)
+ (-12
+ (-5 *3
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1166 (-227)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1990
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))
+ (-5 *2 (-1044)) (-5 *1 (-309)))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-1276
- (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3178 (-570))
- (|:| -3845 (-570)) (|:| |spline| (-570)) (|:| -2523 (-570))
- (|:| |axesColor| (-880)) (|:| -3087 (-570))
- (|:| |unitsColor| (-880)) (|:| |showing| (-570)))))
- (-5 *1 (-1277)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-4 *2 (-907 *5)) (-5 *1 (-698 *5 *2 *3 *4))
- (-4 *3 (-378 *2)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570)))
- (-5 *1 (-192)))))
+ (-650
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-777)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-799)) (-4 *6 (-956 *4 *3 *5)) (-4 *4 (-458)) (-4 *5 (-856))
+ (-5 *1 (-455 *4 *3 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *2 (-1182 *4))
- (-5 *1 (-538 *4 *5 *6)) (-4 *5 (-368)) (-4 *6 (-13 (-368) (-854))))))
-(((*1 *2)
- (|partial| -12 (-4 *4 (-1230)) (-4 *5 (-1252 (-413 *2)))
- (-4 *2 (-1252 *4)) (-5 *1 (-346 *3 *4 *2 *5))
- (-4 *3 (-347 *4 *2 *5))))
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-695 *4))))
((*1 *2)
- (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1230))
- (-4 *4 (-1252 (-413 *2))) (-4 *2 (-1252 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-897 *4 *5)) (-4 *5 (-1226))))
- ((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1176)))))
-(((*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 (-171 (-413 (-570)))))
- (-5 *2
- (-650
- (-2 (|:| |outval| (-171 *4)) (|:| |outmult| (-570))
- (|:| |outvect| (-650 (-695 (-171 *4)))))))
- (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1276 *5)) (-4 *5 (-798)) (-5 *2 (-112))
- (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
+ (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *4 *5 *6 *7))
- (-4 *4 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226))
- (-4 *7 (-1226)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4)))
- (-5 *2 (-2 (|:| |num| (-1276 *4)) (|:| |den| *4))))))
+ (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3))
+ (-5 *1 (-748 *5 *4 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-618 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186)))
+ (-4 *2 (-13 (-436 *5) (-27) (-1212)))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *1 (-572 *5 *2 *6)) (-4 *6 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))))
(((*1 *2 *3)
(-12 (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384)))))
((*1 *2 *3 *4)
@@ -4506,28 +4899,47 @@
(-12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562))
(-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
(-5 *1 (-791 *5)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-798)) (-4 *3 (-174)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3))
- (-4 *3 (-378 *4))))
+ (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
+ (-5 *2
+ (-3 (|:| |overq| (-1182 (-413 (-570))))
+ (|:| |overan| (-1182 (-48))) (|:| -2485 (-112))))
+ (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
+ (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-650 (-777)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
+ (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 (-777))))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-695 *2)) (-4 *2 (-174)) (-5 *1 (-147 *2))))
((*1 *2 *3)
- (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-509 *2 *4 *5 *3))
- (-4 *5 (-378 *2)) (-4 *3 (-378 *4))))
+ (-12 (-4 *4 (-174)) (-4 *2 (-1253 *4)) (-5 *1 (-179 *4 *2 *3))
+ (-4 *3 (-730 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 (-413 (-959 *5)))) (-5 *4 (-1186))
+ (-5 *2 (-959 *5)) (-5 *1 (-296 *5)) (-4 *5 (-458))))
((*1 *2 *3)
- (-12 (-5 *3 (-695 *4)) (-4 *4 (-1001 *2)) (-4 *2 (-562))
- (-5 *1 (-699 *2 *4))))
+ (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-5 *2 (-959 *4))
+ (-5 *1 (-296 *4)) (-4 *4 (-458))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3))))
((*1 *2 *3)
- (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1245 *2 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
- (-5 *1 (-1224 *4)) (-5 *3 (-1182 (-1182 *4))))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-695 (-171 (-413 (-570)))))
+ (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *4))
+ (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *4 (-1186))
+ (-5 *2 (-959 (-171 (-413 (-570))))) (-5 *1 (-770 *5))
+ (-4 *5 (-13 (-368) (-854)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-959 (-413 (-570))))
+ (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *4 (-1186))
+ (-5 *2 (-959 (-413 (-570)))) (-5 *1 (-785 *5))
+ (-4 *5 (-13 (-368) (-854))))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 *5)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4))
(-5 *1 (-689 *4 *5)) (-4 *4 (-1109))))
@@ -4536,153 +4948,203 @@
((*1 *2 *3)
(-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937))))
((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
+ (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
((*1 *2 *1)
- (-12 (-4 *2 (-1058)) (-5 *1 (-1299 *2 *3)) (-4 *3 (-852)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-442)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -3442 (-695 (-413 (-959 *4))))
- (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -3934 (-777))
- (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))
- (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799))
- (-5 *2
- (-2 (|:| |partsol| (-1276 (-413 (-959 *4))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *4)))))))
- (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+ (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))))
+ (-12 (-5 *3 (-320 *4)) (-4 *4 (-13 (-834) (-1058))) (-5 *2 (-1168))
+ (-5 *1 (-832 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-320 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-834) (-1058)))
+ (-5 *2 (-1168)) (-5 *1 (-832 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-828)) (-5 *4 (-320 *5)) (-4 *5 (-13 (-834) (-1058)))
+ (-5 *2 (-1282)) (-5 *1 (-832 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-828)) (-5 *4 (-320 *6)) (-5 *5 (-112))
+ (-4 *6 (-13 (-834) (-1058))) (-5 *2 (-1282)) (-5 *1 (-832 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-834)) (-5 *2 (-1168))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-834)) (-5 *3 (-112)) (-5 *2 (-1168))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *2 (-1282))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *4 (-112)) (-5 *2 (-1282)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))
- (-4 *4 (-1252 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *5))
- (-4 *5 (-1252 (-413 *4))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4))
- (-4 *4 (-1109)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1035 (-849 (-570))))
- (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *4)))) (-4 *4 (-1058))
- (-5 *1 (-601 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *5) (-27) (-1212)))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2 (-592 *3)) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
(-5 *1 (-758)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-777)) (-4 *4 (-311)) (-4 *6 (-1252 *4))
- (-5 *2 (-1276 (-650 *6))) (-5 *1 (-461 *4 *6)) (-5 *5 (-650 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
- (-14 *4 *2))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1252 (-570))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1196)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-1252 *4)) (-4 *4 (-1058))
- (-5 *2 (-1276 *4)))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-650 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
- (-4 *2 (-13 (-436 *4) (-1011))) (-4 *4 (-562))
- (-5 *1 (-279 *4 *2)))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1221 *5)))
+ (-5 *1 (-1285 *5)) (-5 *4 (-1221 *5)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129))))))
- (-4 *4 (-354)) (-5 *2 (-777)) (-5 *1 (-351 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-356 *3 *4)) (-14 *3 (-928))
- (-14 *4 (-928))))
- ((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354))
- (-14 *4
- (-3 (-1182 *3)
- (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
- (-14 *4 (-928)))))
+ (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -3739 *4) (|:| -3221 (-570)))))
+ (-4 *4 (-1253 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))
+ (-4 *2 (-458))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-1253 (-570))) (-5 *2 (-650 (-570)))
+ (-5 *1 (-492 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *3 (-458)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1196)))))
+(((*1 *1 *1 *1) (-4 *1 (-767))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6))
+ (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *1))))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-950 *5)) (-5 *3 (-777)) (-4 *5 (-1058))
+ (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3383 *3) (|:| |coef2| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-980)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -4239 *4))) (-5 *5 (-777))
+ (-4 *4 (-956 *6 *7 *8)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-5 *2
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-455 *6 *7 *8 *4)))))
(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
((*1 *2 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *1 (-810 *4 *2)) (-4 *2 (-13 (-29 *4) (-1211) (-966))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3))
- (-4 *3 (-368)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928))
- (-14 *4 (-928)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570)))))
- (-4 *5 (-856)) (-5 *1 (-1292 *4 *5 *2)) (-4 *2 (-1297 *5 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-743 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109))))
- ((*1 *1) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-650 (-870 *4)))
- (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-477 *4 *5 *6))
- (-4 *6 (-458)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-928)) (-4 *5 (-311)) (-4 *3 (-1252 *5))
- (-5 *2 (-2 (|:| |plist| (-650 *3)) (|:| |modulo| *5)))
- (-5 *1 (-466 *5 *3)) (-5 *4 (-650 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1248 *4 *2))
- (-4 *2 (-1252 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 *6)) (-4 *5 (-1230)) (-4 *6 (-1252 *5))
- (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *3) (|:| |radicand| *6)))
- (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1252 *3)))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-3 (|:| |%expansion| (-317 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))))
+ (-5 *1 (-426 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))
+ (-14 *6 (-1186)) (-14 *7 *3))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *5 (-1252 *4))
- (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4300 *5))))
- (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5))
- (-4 *6 (-662 (-413 *5))))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-132))))
-(((*1 *2 *3 *3 *2)
- (|partial| -12 (-5 *2 (-777))
- (-4 *3 (-13 (-732) (-373) (-10 -7 (-15 ** (*3 *3 (-570))))))
- (-5 *1 (-248 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
+ (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2))
+ (-4 *2 (-436 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186))))
+ ((*1 *1 *1) (-4 *1 (-161))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-825 *3)) (-4 *3 (-856)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868))))
+ ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-5 *2 (-1168)))))
+(((*1 *1) (-5 *1 (-1091))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27))
+ (-5 *2 (-650 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186)))
+ (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1047 (-570))) (-4 *3 (-562)) (-5 *1 (-32 *3 *2))
+ (-4 *2 (-436 *3))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-1182 *4)) (-5 *1 (-166 *3 *4))
+ (-4 *3 (-167 *4))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1058)) (-4 *1 (-306))))
+ ((*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3))))
+ ((*1 *2) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368)))
+ (-4 *2 (-1253 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3)
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-570)))))
+ (-4 *2 (-562)) (-5 *1 (-424 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-570))
+ (|:| -2773 (-650 (-2 (|:| |irr| *4) (|:| -2227 (-570)))))))
+ (-4 *4 (-1253 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-107 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-1058)) (-4 *2 (-1253 *4))
+ (-5 *1 (-450 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-413 (-1182 (-320 *5)))) (-5 *3 (-1277 (-320 *5)))
+ (-5 *4 (-570)) (-4 *5 (-562)) (-5 *1 (-1139 *5)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-512)) (-4 *4 (-1109)) (-5 *1 (-936 *4 *2))
@@ -4690,40 +5152,49 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-1186)) (-5 *4 (-512)) (-5 *2 (-320 (-570)))
(-5 *1 (-937)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384)))
- (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281))
- (-5 *1 (-794)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-171 (-227))))
- (-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-1253 *4)) (-5 *2 (-1 *6 (-650 *6)))
+ (-5 *1 (-1271 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-1268 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
- (-5 *2 (-1182 *3)))))
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
+ (-5 *2 (-112)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))))
+ (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 *5)) (-4 *5 (-1253 *3)) (-4 *3 (-311))
+ (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-1113)) (-5 *3 (-780)) (-5 *1 (-52)))))
+(((*1 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))))
+(((*1 *1 *1) (|partial| -4 *1 (-1161))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *6 (-620 (-1186)))
- (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *2 (-1175 (-650 (-959 *4)) (-650 (-298 (-959 *4)))))
- (-5 *1 (-510 *4 *5 *6 *7)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3))
- (-4 *3 (-1252 *4)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-961)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-235)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-269 *4))
- (-4 *6 (-799)) (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-4 *3 (-856)) (-4 *5 (-269 *3)) (-4 *6 (-799))
- (-5 *2 (-1 *1 (-777))) (-4 *1 (-256 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-269 *2)) (-4 *2 (-856)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *5 (-373))
+ (-5 *2 (-777)))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -2773 (-650 (-2 (|:| |irr| *10) (|:| -2227 (-570)))))))
+ (-5 *6 (-650 *3)) (-5 *7 (-650 *8)) (-4 *8 (-856)) (-4 *3 (-311))
+ (-4 *10 (-956 *3 *9 *8)) (-4 *9 (-799))
+ (-5 *2
+ (-2 (|:| |polfac| (-650 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-650 (-1182 *3)))))
+ (-5 *1 (-631 *8 *9 *3 *10)) (-5 *4 (-650 (-1182 *3))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-570)) (-5 *1 (-1119))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-650 (-570))) (-5 *4 (-570))
+ (-5 *1 (-1119)))))
(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300))))
((*1 *2 *3)
(-12 (-5 *3 (-650 (-1168))) (-5 *2 (-316)) (-5 *1 (-300))))
@@ -4731,413 +5202,253 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-650 (-1168))) (-5 *3 (-1168)) (-5 *2 (-316))
(-5 *1 (-300)))))
-(((*1 *2 *3)
+(((*1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1)
(-12
- (-5 *3
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
- (-5 *1 (-207)))))
-(((*1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2) (-12 (-5 *1 (-1243 *2)) (-4 *2 (-1226)))))
+ (-650
+ (-650
+ (-3 (|:| -3504 (-1186))
+ (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))))
+ (-5 *1 (-1190)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1200 *3))
- (-4 *3 (-368)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| -1400 (-413 *6)) (|:| |coeff| (-413 *6))))
- (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1) (-4 *1 (-1148))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))))
+ (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1279)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *6)) (-5 *4 (-1186)) (-4 *6 (-436 *5))
- (-4 *5 (-1109)) (-5 *2 (-650 (-618 *6))) (-5 *1 (-579 *5 *6)))))
+ (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3738 (-1182 *6)) (|:| -1907 (-570)))))
- (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570))
- (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-618 *3))
- (-4 *3 (-13 (-436 *5) (-27) (-1211)))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3)))
- (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))))
-(((*1 *1 *2 *3 *3 *4 *5)
- (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
- (-5 *4 (-650 (-928))) (-5 *5 (-650 (-266))) (-5 *1 (-474))))
- ((*1 *1 *2 *3 *3 *4)
- (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
- (-5 *4 (-650 (-928))) (-5 *1 (-474))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474))))
- ((*1 *1 *1) (-5 *1 (-474))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-928)) (-4 *1 (-240 *3 *4)) (-4 *4 (-1058))
- (-4 *4 (-1226))))
+ (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1277 (-1186))) (-5 *3 (-1277 (-459 *4 *5 *6 *7)))
+ (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-1277 (-695 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-459 *4 *5 *6 *7)))
+ (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928))
+ (-14 *6 (-650 *2)) (-14 *7 (-1277 (-695 *4)))))
((*1 *1 *2)
- (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-4 *5 (-240 (-2426 *3) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *5))
- (-2 (|:| -2159 *2) (|:| -1907 *5))))
- (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *2 (-856))
- (-4 *7 (-956 *4 *5 (-870 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+ (-12 (-5 *2 (-1277 (-459 *3 *4 *5 *6))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186)))
+ (-14 *6 (-1277 (-695 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1277 (-1186))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186)))
+ (-14 *6 (-1277 (-695 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174))
+ (-14 *4 (-928)) (-14 *5 (-650 *2)) (-14 *6 (-1277 (-695 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-459 *2 *3 *4 *5)) (-4 *2 (-174)) (-14 *3 (-928))
+ (-14 *4 (-650 (-1186))) (-14 *5 (-1277 (-695 *2))))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-249 *5 *6))) (-4 *6 (-458))
- (-5 *2 (-249 *5 *6)) (-14 *5 (-650 (-1186))) (-5 *1 (-637 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112)))))
+ (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4))
+ (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1442 (-650 *1)) (|:| -2340 *1)))
+ (-5 *3 (-650 *1)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
+ (-5 *2 (-1044)) (-5 *1 (-751)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *1 (-793)) (-5 *2 (-1044))
+ (-5 *3
+ (-2 (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-793)) (-5 *2 (-1044))
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227)))))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186)))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856)))
+ (-14 *3 (-650 (-1186))))))
(((*1 *2 *1)
(-12
(-5 *2
- (-650
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-570)))))
- (-5 *1 (-424 *3)) (-4 *3 (-562))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-777)) (-4 *3 (-354)) (-4 *5 (-1252 *3))
- (-5 *2 (-650 (-1182 *3))) (-5 *1 (-504 *3 *5 *6))
- (-4 *6 (-1252 *5)))))
+ (-1277
+ (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1424 (-570))
+ (|:| -1563 (-570)) (|:| |spline| (-570)) (|:| -3162 (-570))
+ (|:| |axesColor| (-880)) (|:| -3087 (-570))
+ (|:| |unitsColor| (-880)) (|:| |showing| (-570)))))
+ (-5 *1 (-1278)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1101 (-849 *3))) (-4 *3 (-13 (-1211) (-966) (-29 *5)))
- (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-221 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1101 (-849 *3))) (-5 *5 (-1168))
- (-4 *3 (-13 (-1211) (-966) (-29 *6)))
- (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-221 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1101 (-849 (-320 *5))))
- (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-222 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1101 (-849 (-320 *6))))
- (-5 *5 (-1168))
- (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-12 (-5 *4 (-112))
(-5 *2
- (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-222 *6))))
+ (-2 (|:| |contp| (-570))
+ (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570)))))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1101 (-849 (-413 (-959 *5))))) (-5 *3 (-413 (-959 *5)))
- (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-3 (|:| |f1| (-849 (-320 *5))) (|:| |f2| (-650 (-849 (-320 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-222 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1101 (-849 (-413 (-959 *6))))) (-5 *5 (-1168))
- (-5 *3 (-413 (-959 *6)))
- (-4 *6 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-12 (-5 *4 (-112))
(-5 *2
- (-3 (|:| |f1| (-849 (-320 *6))) (|:| |f2| (-650 (-849 (-320 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-222 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-3 *3 (-650 *3))) (-5 *1 (-434 *5 *3))
- (-4 *3 (-13 (-1211) (-966) (-29 *5)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
- (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
- (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
- (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384))))
- (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
- (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
- (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
- (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384)))))
- (-5 *5 (-384)) (-5 *6 (-1072)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384))))
- (-5 *5 (-1168)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-320 (-384))) (-5 *4 (-1101 (-849 (-384))))
- (-5 *5 (-1186)) (-5 *2 (-1044)) (-5 *1 (-571))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1252 *4))
- (-5 *2 (-592 (-413 *5))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-3 (-320 *5) (-650 (-320 *5)))) (-5 *1 (-595 *5))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-746 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-856))
- (-4 *3 (-38 (-413 (-570))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1186)) (-5 *1 (-959 *3)) (-4 *3 (-38 (-413 (-570))))
- (-4 *3 (-1058))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-4 *2 (-856))
- (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058))
- (-5 *1 (-1170 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *1 (-1220 *3)) (-4 *3 (-38 (-413 (-570))))
- (-4 *3 (-1058))))
- ((*1 *1 *1 *2)
- (-2740
- (-12 (-5 *2 (-1186)) (-4 *1 (-1236 *3)) (-4 *3 (-1058))
- (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1211))
- (-4 *3 (-38 (-413 (-570))))))
- (-12 (-5 *2 (-1186)) (-4 *1 (-1236 *3)) (-4 *3 (-1058))
- (-12 (|has| *3 (-15 -1716 ((-650 *2) *3)))
- (|has| *3 (-15 -3555 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1236 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1240 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
- ((*1 *1 *1 *2)
- (-2740
- (-12 (-5 *2 (-1186)) (-4 *1 (-1257 *3)) (-4 *3 (-1058))
- (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1211))
- (-4 *3 (-38 (-413 (-570))))))
- (-12 (-5 *2 (-1186)) (-4 *1 (-1257 *3)) (-4 *3 (-1058))
- (-12 (|has| *3 (-15 -1716 ((-650 *2) *3)))
- (|has| *3 (-15 -3555 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1257 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1261 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-2740
- (-12 (-5 *2 (-1186)) (-4 *1 (-1267 *3)) (-4 *3 (-1058))
- (-12 (-4 *3 (-29 (-570))) (-4 *3 (-966)) (-4 *3 (-1211))
- (-4 *3 (-38 (-413 (-570))))))
- (-12 (-5 *2 (-1186)) (-4 *1 (-1267 *3)) (-4 *3 (-1058))
- (-12 (|has| *3 (-15 -1716 ((-650 *2) *3)))
- (|has| *3 (-15 -3555 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1267 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1268 *3 *4 *5))
- (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-14 *5 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-928)) (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-798))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1257 *3)) (-4 *3 (-1058)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562))
- (-4 *7 (-956 *3 *5 *6))
- (-5 *2 (-2 (|:| -1907 (-777)) (|:| -1441 *8) (|:| |radicand| *8)))
- (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777))
- (-4 *8
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $))))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-650 (-1186)))
- (-4 *2 (-13 (-436 (-171 *5)) (-1011) (-1211))) (-4 *5 (-562))
- (-5 *1 (-606 *5 *6 *2)) (-4 *6 (-13 (-436 *5) (-1011) (-1211))))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
- (-4 *2 (-1252 *4)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227))
- (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-620 (-899 *3))) (-4 *3 (-893 *3)) (-4 *3 (-458))
- (-5 *1 (-1217 *3 *2)) (-4 *2 (-620 (-899 *3))) (-4 *2 (-893 *3))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+ (-2 (|:| |contp| (-570))
+ (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570)))))))
+ (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))
- (-4 *2 (-458))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1230)) (-4 *3 (-1252 *2))
- (-4 *4 (-1252 (-413 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *3 (-458))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-1173 *3 *2))
- (-4 *2 (-1252 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-856)) (-4 *5 (-916)) (-4 *6 (-799))
- (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-424 (-1182 *8)))
- (-5 *1 (-913 *5 *6 *7 *8)) (-5 *4 (-1182 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-916)) (-4 *5 (-1252 *4)) (-5 *2 (-424 (-1182 *5)))
- (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1226))
- (-4 *5 (-378 *4)) (-4 *2 (-378 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *7 *2)) (-4 *6 (-1058))
- (-4 *7 (-240 *5 *6)) (-4 *2 (-240 *4 *6)))))
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-1277 (-320 (-384))))
+ (-5 *1 (-309)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *3 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-755)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-761))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-394))
+ (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))))
+(((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1) (-4 *1 (-1148))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-311)) (-4 *3 (-1001 *2)) (-4 *4 (-1253 *3))
+ (-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-650 (-266))) (-5 *1 (-1279))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1168)) (-5 *1 (-1279))))
+ ((*1 *1 *1) (-5 *1 (-1279))))
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -3234 (-650 (-1186))) (|:| -1794 (-650 (-1186)))))
+ (-5 *1 (-1229)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *6))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+ (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058))
+ (-4 *2 (-1268 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
- (-5 *1 (-911 *4)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311))
- (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *6 *4 *5))
- (-5 *1 (-923 *4 *5 *6 *2)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-311)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-12 (-5 *3 (-440))
(-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
- (-5 *1 (-617 *2 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058))
- (-4 *6 (-1252 *5)) (-5 *2 (-1182 (-1182 *7)))
- (-5 *1 (-507 *5 *6 *4 *7)) (-4 *4 (-1252 *6)))))
-(((*1 *1) (-5 *1 (-145))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-650
+ (-3 (|:| -3504 (-1186))
+ (|:| -1331 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))
+ (-5 *1 (-1190)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-777)) (-4 *5 (-562))
(-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-368)) (-4 *6 (-1252 (-413 *2)))
- (-4 *2 (-1252 *5)) (-5 *1 (-217 *5 *2 *6 *3))
- (-4 *3 (-347 *5 *2 *6)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-1 (-112) *5 *5))
- (-5 *4 (-650 *5)) (-4 *5 (-856)) (-5 *1 (-1197 *5)))))
+ (-12 (-4 *5 (-1109)) (-4 *2 (-907 *5)) (-5 *1 (-698 *5 *2 *3 *4))
+ (-4 *3 (-378 *2)) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3383 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1227)) (-4 *3 (-378 *2))
+ (-4 *4 (-378 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109))
+ (-4 *2 (-1227)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-158)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *1 *1) (-5 *1 (-48)))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1226))
- (-4 *2 (-1226)) (-5 *1 (-58 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1227))
+ (-4 *2 (-1227)) (-5 *1 (-58 *5 *2))))
((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4448))
- (-4 *1 (-152 *2)) (-4 *2 (-1226))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4449))
+ (-4 *1 (-152 *2)) (-4 *2 (-1227))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *2))
- (-4 *2 (-1226))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2))
+ (-4 *2 (-1227))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *2))
- (-4 *2 (-1226))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2))
+ (-4 *2 (-1227))))
((*1 *2 *3)
(-12 (-4 *4 (-1058))
- (-5 *2 (-2 (|:| -3282 (-1182 *4)) (|:| |deg| (-928))))
+ (-5 *2 (-2 (|:| -4239 (-1182 *4)) (|:| |deg| (-928))))
(-5 *1 (-223 *4 *5)) (-5 *3 (-1182 *4)) (-4 *5 (-562))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-242 *5 *6)) (-14 *5 (-777))
- (-4 *6 (-1226)) (-4 *2 (-1226)) (-5 *1 (-241 *5 *6 *2))))
+ (-4 *6 (-1227)) (-4 *2 (-1227)) (-5 *1 (-241 *5 *6 *2))))
((*1 *1 *2 *3)
(-12 (-4 *4 (-174)) (-5 *1 (-293 *4 *2 *3 *5 *6 *7))
- (-4 *2 (-1252 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3))
+ (-4 *2 (-1253 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3))
(-14 *6 (-1 (-3 *3 "failed") *3 *3))
(-14 *7 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *1) (-12 (-5 *1 (-320 *2)) (-4 *2 (-562)) (-4 *2 (-1109))))
((*1 *1 *1)
- (-12 (-4 *1 (-340 *2 *3 *4 *5)) (-4 *2 (-368)) (-4 *3 (-1252 *2))
- (-4 *4 (-1252 (-413 *3))) (-4 *5 (-347 *2 *3 *4))))
+ (-12 (-4 *1 (-340 *2 *3 *4 *5)) (-4 *2 (-368)) (-4 *3 (-1253 *2))
+ (-4 *4 (-1253 (-413 *3))) (-4 *5 (-347 *2 *3 *4))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1226)) (-4 *2 (-1226))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1227)) (-4 *2 (-1227))
(-5 *1 (-376 *5 *4 *2 *6)) (-4 *4 (-378 *5)) (-4 *6 (-378 *2))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1109)) (-4 *2 (-1109))
(-5 *1 (-429 *5 *4 *2 *6)) (-4 *4 (-431 *5)) (-4 *6 (-431 *2))))
((*1 *1 *1) (-5 *1 (-501)))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-650 *5)) (-4 *5 (-1226))
- (-4 *2 (-1226)) (-5 *1 (-648 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-650 *5)) (-4 *5 (-1227))
+ (-4 *2 (-1227)) (-5 *1 (-648 *5 *2))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1058)) (-4 *2 (-1058))
(-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *8 (-378 *2))
@@ -5148,19 +5459,19 @@
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1252 *3))))
+ (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23))
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-368))
+ (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-368))
(-4 *3 (-174)) (-4 *1 (-730 *3 *4))))
((*1 *1 *2)
- (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1252 *3))))
+ (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-965 *5)) (-4 *5 (-1226))
- (-4 *2 (-1226)) (-5 *1 (-964 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-965 *5)) (-4 *5 (-1227))
+ (-4 *2 (-1227)) (-5 *1 (-964 *5 *2))))
((*1 *1 *2)
(-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
(-5 *1 (-1043 *3 *4 *5 *2 *6)) (-4 *2 (-956 *3 *4 *5))
@@ -5172,101 +5483,56 @@
(-5 *1 (-1064 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
(-4 *4 (-1062 *5 *6 *7 *8 *9)) (-4 *12 (-1062 *5 *6 *2 *10 *11))))
((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1226))
- (-4 *2 (-1226)) (-5 *1 (-1164 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1227))
+ (-4 *2 (-1227)) (-5 *1 (-1164 *5 *2))))
((*1 *2 *2 *1 *3 *4)
(-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2))
- (-4 *1 (-1219 *5 *6 *7 *2)) (-4 *5 (-562)) (-4 *6 (-799))
+ (-4 *1 (-1220 *5 *6 *7 *2)) (-4 *5 (-562)) (-4 *6 (-799))
(-4 *7 (-856)) (-4 *2 (-1074 *5 *6 *7))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1276 *5)) (-4 *5 (-1226))
- (-4 *2 (-1226)) (-5 *1 (-1275 *5 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531))))
- ((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1277 *5)) (-4 *5 (-1227))
+ (-4 *2 (-1227)) (-5 *1 (-1276 *5 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3))
- (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3))
- (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2))
- (-4 *2 (-693 *3 *5 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-424 *4)) (-4 *4 (-562)))))
-(((*1 *2)
- (-12 (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))
- (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9))
- (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *9 (-1074 *6 *7 *8))
- (-5 *2
- (-650
- (-2 (|:| -4300 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9)))))
- (-5 *1 (-997 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9))
- (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *9 (-1074 *6 *7 *8))
- (-5 *2
- (-650
- (-2 (|:| -4300 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9)))))
- (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))))
-(((*1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-670 *4 *5)))
+ (-5 *1 (-633 *4 *5 *6)) (-4 *5 (-13 (-174) (-723 (-413 (-570)))))
+ (-14 *6 (-928)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-902))
- (-5 *3
- (-2 (|:| |pde| (-650 (-320 (-227))))
- (|:| |constraints|
- (-650
- (-2 (|:| |start| (-227)) (|:| |finish| (-227))
- (|:| |grid| (-777)) (|:| |boundaryType| (-570))
- (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227))))))
- (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168))
- (|:| |tol| (-227))))
- (-5 *2 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
+ (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928))
+ (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4451 "*")))))
+ (-5 *1 (-909 *4 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))))
+(((*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1) (-4 *1 (-551))))
+(((*1 *1) (-5 *1 (-142))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174))
- (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-959 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-174))
- (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058))
- (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058))
- (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
- (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562))
- (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-413 (-959 (-171 *4)))) (-4 *4 (-562))
- (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-413 (-959 (-171 *5)))) (-5 *4 (-928))
- (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
- (-5 *1 (-791 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856))
- (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562))
- (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
- (-5 *1 (-791 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-320 (-171 *4))) (-4 *4 (-562)) (-4 *4 (-856))
- (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562))
- (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
- (-5 *1 (-791 *5)))))
+ (-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *2 (-1182 *6))
+ (-5 *1 (-325 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570)))
+ (-5 *1 (-192)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-227))
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 *4))))
+ (|:| |xValues| (-1103 *4)) (|:| |yValues| (-1103 *4))))
+ (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 *4)))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5))
+ (-4 *4 (-1109)) (-4 *5 (-1109)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
+ (-5 *2 (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3831 *1)))
+ (-4 *1 (-1074 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3831 *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31))))
((*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-134))))
@@ -5279,14 +5545,14 @@
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1075))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1105)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-618 *6)) (-4 *6 (-13 (-436 *5) (-27) (-1211)))
+ (-12 (-5 *4 (-618 *6)) (-4 *6 (-13 (-436 *5) (-27) (-1212)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
(-5 *2 (-1182 (-413 (-1182 *6)))) (-5 *1 (-566 *5 *6 *7))
(-5 *3 (-1182 *6)) (-4 *7 (-1109))))
((*1 *2 *1)
- (-12 (-4 *2 (-1252 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058))))
+ (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058))))
((*1 *2 *1)
- (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1252 *3))))
+ (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3))))
((*1 *2 *3 *4 *4 *5 *6 *7 *8)
(|partial| -12 (-5 *4 (-1182 *11)) (-5 *6 (-650 *10))
(-5 *7 (-650 (-777))) (-5 *8 (-650 *11)) (-4 *10 (-856))
@@ -5296,36 +5562,30 @@
((*1 *2 *1)
(-12 (-4 *2 (-956 *3 *4 *5)) (-5 *1 (-1043 *3 *4 *5 *2 *6))
(-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-14 *6 (-650 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4)))
- (-5 *1 (-1284 *4)) (-4 *4 (-368)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3))
- (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2))
- (-4 *2 (-693 *3 *5 *6)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
-(((*1 *1) (-5 *1 (-443))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-120 *2)) (-4 *2 (-1226)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-1217 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058))
- (-5 *1 (-720 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
+ (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1235))) (-5 *3 (-1235)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-1191))) (-5 *1 (-1191)))))
+ (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-4 *5 (-368))
+ (-4 *5 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058))
+ (-5 *2 (-112)) (-5 *1 (-1038 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *2 (-1182 *4))
+ (-5 *1 (-538 *4 *5 *6)) (-4 *5 (-368)) (-4 *6 (-13 (-368) (-854))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1874 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3))))
((*1 *2 *3)
@@ -5343,251 +5603,233 @@
((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1084 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1124))))
((*1 *1 *1) (-5 *1 (-1186))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1233))))))
(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *3 (-570))
- (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *1) (-5 *1 (-55))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -1907 (-570))))
- (-4 *1 (-436 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-115)) (-4 *4 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -1907 (-570))))
- (-4 *1 (-436 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -1907 (-570))))
- (-4 *1 (-436 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -1907 (-777))))
- (-5 *1 (-899 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-2 (|:| |var| *5) (|:| -1907 (-777))))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
- (-4 *7 (-956 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -1907 (-570))))
- (-5 *1 (-957 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $))
- (-15 -4412 (*7 $))))))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-765)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174))))
+ ((*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2))))
+ ((*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))))
(((*1 *2 *3)
(-12 (-4 *4 (-856))
(-5 *2
(-2 (|:| |f1| (-650 *4)) (|:| |f2| (-650 (-650 (-650 *4))))
(|:| |f3| (-650 (-650 *4))) (|:| |f4| (-650 (-650 (-650 *4))))))
(-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 (-650 *4)))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570)))
- (-5 *1 (-890)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1186))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-650 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -1400 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1211) (-27) (-436 *8)))
- (-4 *8 (-13 (-458) (-148) (-1047 *3) (-645 *3))) (-5 *3 (-570))
- (-5 *2 (-650 *4)) (-5 *1 (-1023 *8 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1299 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-852)))))
+(((*1 *2)
+ (|partial| -12 (-4 *4 (-1231)) (-4 *5 (-1253 (-413 *2)))
+ (-4 *2 (-1253 *4)) (-5 *1 (-346 *3 *4 *2 *5))
+ (-4 *3 (-347 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231))
+ (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
+ (-12 (-5 *3 (-1186)) (-4 *5 (-1231)) (-4 *6 (-1253 *5))
+ (-4 *7 (-1253 (-413 *6))) (-5 *2 (-650 (-959 *5)))
+ (-5 *1 (-346 *4 *5 *6 *7)) (-4 *4 (-347 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1231))
+ (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5))) (-4 *4 (-368))
+ (-5 *2 (-650 (-959 *4))))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112))
+ (-5 *1 (-1166 *4)))))
(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226))
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
(-4 *3 (-1109)) (-5 *2 (-777))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4448)) (-4 *1 (-495 *4))
- (-4 *4 (-1226)) (-5 *2 (-777)))))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4))
+ (-4 *4 (-1227)) (-5 *2 (-777)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1203 *4 *5))
- (-4 *4 (-1109)) (-4 *5 (-1109)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-118 *3)) (-14 *3 (-570))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-311)) (-5 *1 (-176 *3))))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2 (-384)) (-5 *1 (-207)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551))))
((*1 *2 *3)
- (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-877 *3)) (-14 *3 (-570))))
- ((*1 *2 *1)
- (-12 (-14 *3 (-570)) (-5 *2 (-176 (-413 (-570))))
- (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1186))
- (-5 *2
- (-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227)))
- (|:| |singularities| (-1166 (-227)))))
- (-5 *1 (-105)))))
+ (-12 (-5 *2 (-2 (|:| -4360 *3) (|:| -3011 (-777)))) (-5 *1 (-593 *3))
+ (-4 *3 (-551)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-132))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-366 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-391 *3)) (-4 *3 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-655 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-174)) (-4 *5 (-378 *4))
+ (-4 *6 (-378 *4)) (-5 *1 (-694 *4 *5 *6 *2))
+ (-4 *2 (-693 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))))
(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226))
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227))
(-4 *2 (-1109)))))
(((*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1129)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-628 *4 *2)) (-4 *2 (-13 (-1211) (-966) (-29 *4))))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109))
- (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-1230))
- (-4 *6 (-1252 (-413 *5)))
- (-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-347 *4 *5 *6)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1207)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-380 *4 *2))
- (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-112))
- (-5 *1 (-896 *4 *5)) (-4 *5 (-1109))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112))
- (-5 *1 (-897 *5 *3)) (-4 *3 (-1226))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3 *4 *3 *3)
+ (-12 (-5 *3 (-298 *6)) (-5 *4 (-115)) (-4 *6 (-436 *5))
+ (-4 *5 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *5 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-650 *7))
+ (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *6 *7))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7))
+ (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-650 (-298 *8))) (-5 *4 (-650 (-115))) (-5 *5 (-298 *8))
+ (-5 *6 (-650 *8)) (-4 *8 (-436 *7))
+ (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *7 *8))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115))) (-5 *5 (-298 *7))
+ (-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-115))) (-5 *6 (-650 (-298 *8)))
+ (-4 *8 (-436 *7)) (-5 *5 (-298 *8))
+ (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *7 *8))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-298 *5)) (-5 *4 (-115)) (-4 *5 (-436 *6))
+ (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *6 *5))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6))
+ (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *6 *3))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-4 *3 (-436 *6))
+ (-4 *6 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-115)) (-5 *5 (-298 *3)) (-5 *6 (-650 *3))
+ (-4 *3 (-436 *7)) (-4 *7 (-13 (-562) (-620 (-542)))) (-5 *2 (-52))
+ (-5 *1 (-321 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7)))
+ (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
- (-4 *6 (-1226)) (-5 *2 (-112)) (-5 *1 (-897 *5 *6)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1279)))))
-(((*1 *1) (-5 *1 (-1094))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
+ (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8)))
+ (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))))
(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-650 *5) *6))
- (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5))
- (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4300 *3))))
- (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6))
- (-4 *7 (-662 (-413 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-650 *5) *6))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *6 (-1252 *5))
- (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4300 (-660 *6 (-413 *6))))))
- (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
-(((*1 *2)
- (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1252 *3)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226))
- (-4 *3 (-1109)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-112))
- (-5 *1 (-911 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-928)) (-5 *2 (-112)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-777)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
- (-5 *1 (-474)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2 *3) (-12 (-5 *3 (-980)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799))
+ (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-650 (-413 *6))) (-5 *3 (-413 *6))
+ (-4 *6 (-1253 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-574 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1281)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1226)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))))
-(((*1 *1 *1) (-4 *1 (-635)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011) (-1211))))))
+ (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
+ (-4 *3 (-1109)))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *2 (-1282)) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))))
(((*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856))))
((*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
((*1 *1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856))))
((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1219 *2 *3 *4 *5)) (-4 *2 (-562))
+ (|partial| -12 (-4 *1 (-1220 *2 *3 *4 *5)) (-4 *2 (-562))
(-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1264 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
- (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
- (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $))
- (-15 -4412 ((-1134 *3 (-618 $)) $))
- (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1227 *3)) (-4 *3 (-1109))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1109)) (-5 *2 (-112))
- (-5 *1 (-1227 *3)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-618 *4)) (-5 *6 (-1186))
- (-4 *4 (-13 (-436 *7) (-27) (-1211)))
- (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-458))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *5 (-916)) (-5 *1 (-463 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-916)))))
+ (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-432 *4 *2)) (-4 *2 (-13 (-1212) (-29 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186)) (-4 *5 (-148))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *5))
+ (-5 *1 (-595 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))))
+(((*1 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282))
+ (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282))
+ (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
(((*1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570))))
((*1 *1 *1) (-5 *1 (-1129))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-4 *7 (-856))
- (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-4 *8 (-311))
- (-5 *2 (-650 (-777))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *5 (-777)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-1182 *4))) (-5 *3 (-1182 *4))
+ (-4 *4 (-916)) (-5 *1 (-669 *4)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4))
(-4 *4 (-1058))))
@@ -5598,16 +5840,16 @@
((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-269 *3)) (-4 *3 (-856))))
((*1 *1 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230))
- (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231))
+ (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4))
- (-4 *4 (-1252 *3))))
+ (-4 *4 (-1253 *3))))
((*1 *1 *1)
(-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3))
- (-4 *3 (-1252 *2))))
+ (-4 *3 (-1253 *2))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *2 *1 *3)
(-12 (-4 *2 (-368)) (-4 *2 (-907 *3)) (-5 *1 (-592 *2))
@@ -5624,122 +5866,116 @@
(-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109))))
((*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1240 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1252 *3)) (-4 *3 (-1058))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1253 *3)) (-4 *3 (-1058))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1261 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1262 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1272 *4)) (-14 *4 (-1186)) (-5 *1 (-1268 *3 *4 *5))
+ (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-1276 *3)) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1252 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1291 (-1186) *3)) (-4 *3 (-1058)) (-5 *1 (-1298 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1291 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *1 (-1300 *3 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-12 (-4 *2 (-714 *3)) (-5 *1 (-833 *2 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 (-171 (-413 (-570)))))
+ (-5 *2
+ (-650
+ (-2 (|:| |outval| (-171 *4)) (|:| |outmult| (-570))
+ (|:| |outvect| (-650 (-695 (-171 *4)))))))
+ (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
(((*1 *2 *1)
(-12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *3 (-856))
- (-4 *2 (-1226))))
+ (-4 *2 (-1227))))
((*1 *2 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856))))
((*1 *2 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
((*1 *2 *1)
- (-12 (-4 *2 (-1226)) (-5 *1 (-879 *2 *3)) (-4 *3 (-1226))))
+ (-12 (-4 *2 (-1227)) (-5 *1 (-879 *2 *3)) (-4 *3 (-1227))))
((*1 *2 *1) (-12 (-5 *2 (-678 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562))
+ (|partial| -12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562))
(-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1264 *3)) (-4 *3 (-1226))))
- ((*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227)))
- (-5 *1 (-309)))))
-(((*1 *2)
- (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+ (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186))
+ (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-695 *2)) (-4 *4 (-1252 *2))
- (-4 *2 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-5 *1 (-505 *2 *4 *5)) (-4 *5 (-415 *2 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
- (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1261 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186))
- (-14 *5 *3) (-5 *1 (-323 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))))
-(((*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))))
+ (-12 (-5 *3 (-928))
+ (-5 *2
+ (-3 (-1182 *4)
+ (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129)))))))
+ (-5 *1 (-351 *4)) (-4 *4 (-354)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058))
+ (-5 *1 (-1170 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058))
+ (-14 *4 (-1186)) (-14 *5 *3))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-630 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *2 (-1118 *3 *4 *5 *6)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570))))
((*1 *1 *1 *1) (-5 *1 (-1129))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-227) (-227) (-227)))
- (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined"))
- (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227)))
- (-5 *1 (-703)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109))
+ (-5 *2 (-650 (-2 (|:| -2224 *3) (|:| -3490 (-777))))))))
(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-1276 *3)))))
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1277 *3)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-458) (-148))) (-5 *2 (-424 *3))
- (-5 *1 (-100 *4 *3)) (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-13 (-458) (-148)))
- (-5 *2 (-424 *3)) (-5 *1 (-100 *5 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1221 *3)) (-4 *3 (-983)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4439)) (-4 *1 (-410))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3383 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410))))
((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928))))
((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705))))
((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-650 (-1085 *4 *5 *2))) (-4 *4 (-1109))
- (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
- (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4))))
- (-5 *1 (-54 *4 *5 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-650 (-1085 *5 *6 *2))) (-5 *4 (-928)) (-4 *5 (-1109))
- (-4 *6 (-13 (-1058) (-893 *5) (-620 (-899 *5))))
- (-4 *2 (-13 (-436 *6) (-893 *5) (-620 (-899 *5))))
- (-5 *1 (-54 *5 *6 *2)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227))))
((*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-998))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-4 *4 (-1226)) (-5 *1 (-1066 *3 *4))
+ (-12 (-5 *2 (-1186)) (-4 *4 (-1227)) (-5 *1 (-1066 *3 *4))
(-4 *3 (-1102 *4))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1226))
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1227))
(-5 *1 (-1101 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1939 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-760)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227)))
+ (-5 *1 (-474)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-368)) (-5 *1 (-1034 *3 *2)) (-4 *2 (-662 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| -4302 *3) (|:| -3854 (-650 *5))))
+ (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (-5 *1 (-270)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1227)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3))
+ (-4 *3 (-680 *4)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570))))
((*1 *1 *1 *1) (-5 *1 (-1129))))
(((*1 *2 *2)
@@ -5748,90 +5984,30 @@
(-510 (-413 (-570)) (-242 *4 (-777)) (-870 *3)
(-249 *3 (-413 (-570)))))
(-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-511 *3 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570))))
- (-5 *1 (-1040)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1252 *3)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1253 *5))
+ (-5 *1 (-733 *5 *2)) (-4 *5 (-368)))))
+(((*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-777)) (-5 *1 (-596)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))))
+(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212)))))
((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-153 *2 *3 *4)) (-14 *2 (-928)) (-4 *3 (-368))
- (-14 *4 (-1002 *2 *3))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1252 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
- ((*1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
- ((*1 *1 *1) (|partial| -4 *1 (-728)))
- ((*1 *1 *1) (|partial| -4 *1 (-732)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368)))
- (-4 *2 (-1252 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-450 *4 *3))
- (-4 *3 (-1252 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1182 *7)) (-5 *3 (-570)) (-4 *7 (-956 *6 *4 *5))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
- (-5 *1 (-325 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-650 (-650 (-227)))) (-5 *4 (-227))
+ (-5 *2 (-650 (-950 *4))) (-5 *1 (-1223)) (-5 *3 (-950 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
(((*1 *2 *3) (-12 (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-928)) (-5 *2 (-384)) (-5 *1 (-791 *3))
@@ -5854,22 +6030,32 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562)) (-4 *5 (-856))
(-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
- (-5 *1 (-896 *4 *2)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
+ (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3))))
- (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-311) (-148)))
- (-4 *2 (-956 *4 *6 *5)) (-5 *1 (-931 *4 *5 *6 *2))
- (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
+ (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-5 *2 (-650 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-650 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1166 *3)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 *3)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-732))))
+ ((*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-650 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1268 *3)) (-4 *3 (-1058)) (-5 *2 (-1166 *3)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186))
+ (-4 *4 (-13 (-562) (-1047 (-570)) (-148))) (-5 *1 (-576 *4)))))
(((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1226)) (-5 *2 (-777))
+ (-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777))
(-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5))))
((*1 *2 *1)
(-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132))
@@ -5887,104 +6073,89 @@
(-12 (-5 *2 (-777)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109))
(-4 *4 (-23)) (-14 *5 *4)))
((*1 *2)
- (-12 (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-777))
+ (-12 (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-777))
(-5 *1 (-729 *3 *4 *5)) (-4 *3 (-730 *4 *5))))
((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148))
- (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-650 (-171 *4))) (-5 *1 (-156 *3 *4))
- (-4 *3 (-1252 (-171 (-570)))) (-4 *4 (-13 (-368) (-854)))))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4)))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4)))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
(((*1 *1 *2 *2)
(-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1274 *3)) (-4 *3 (-23)) (-4 *3 (-1226)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281))
- (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281))
- (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-1247 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
- (-4 *2 (-1252 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-220))))
- ((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-682))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-570))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-650 (-112))) (-5 *5 (-695 (-227)))
- (-5 *6 (-695 (-570))) (-5 *7 (-227)) (-5 *3 (-570)) (-5 *2 (-1044))
- (-5 *1 (-760)))))
-(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799))
- (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| -4300 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9))))
- (-5 *1 (-997 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9))
- (-4 *4 (-1080 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799))
- (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| -4300 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9))))
- (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9))
- (-4 *4 (-1080 *6 *7 *8 *9)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
-(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+ (-12 (-5 *2 (-777)) (-4 *1 (-1275 *3)) (-4 *3 (-23)) (-4 *3 (-1227)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(((*1 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282))
+ (-5 *1 (-997 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282))
+ (-5 *1 (-1116 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7))
+ (-4 *7 (-956 *5 *6 *4)) (-4 *5 (-916)) (-4 *6 (-799))
+ (-4 *4 (-856)) (-5 *1 (-913 *5 *6 *4 *7)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
+ (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109))
- (-4 *3 (-1109)))))
-(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+ (-12 (-4 *4 (-458))
+ (-5 *2
+ (-650
+ (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4))))
+ (|:| |eigmult| (-777))
+ (|:| |eigvec| (-650 (-695 (-413 (-959 *4))))))))
+ (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *3 (-959 (-570)))
+ (-5 *1 (-334))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *1 (-334)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *6))))
+ (-5 *4 (-1035 (-849 (-570)))) (-5 *5 (-1186)) (-5 *7 (-413 (-570)))
+ (-4 *6 (-1058)) (-5 *2 (-868)) (-5 *1 (-601 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))
- (-5 *2 (-650 (-2 (|:| -4104 *1) (|:| -1727 (-650 *7)))))
- (-5 *3 (-650 *7)) (-4 *1 (-1219 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-799)) (-4 *5 (-1058)) (-4 *6 (-956 *5 *4 *2))
- (-4 *2 (-856)) (-5 *1 (-957 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *6)) (-15 -4398 (*6 $))
- (-15 -4412 (*6 $)))))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
- (-5 *2 (-1186)) (-5 *1 (-1052 *4)))))
+ (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3))
+ (-4 *3 (-1253 (-413 *4))))))
+(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *3 (-174))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-654 *5)) (-4 *5 (-1058))
(-5 *1 (-53 *5 *2 *3)) (-4 *3 (-858 *5))))
@@ -5994,174 +6165,168 @@
((*1 *2 *3 *2 *2 *4 *5)
(-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1058))
(-5 *1 (-859 *2 *3)) (-4 *3 (-858 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-4 *6 (-458))
- (-5 *2 (-650 (-650 *7))) (-5 *1 (-544 *6 *7 *5)) (-4 *7 (-368))
- (-4 *5 (-13 (-368) (-854))))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
-(((*1 *1) (-5 *1 (-295))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *1 (-1170 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))))
-(((*1 *1) (-5 *1 (-1072))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| -1441 *4) (|:| -3331 *3) (|:| -2785 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-1074 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -1441 *3) (|:| -3331 *1) (|:| -2785 *1)))
- (-4 *1 (-1252 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1186)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-4 *2 (-1252 *5))
- (-5 *1 (-1270 *5 *2 *6 *3)) (-4 *6 (-662 *2)) (-4 *3 (-1267 *5)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |val| *1) (|:| -1907 (-570)))) (-4 *1 (-436 *3))))
- ((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -1907 (-899 *3))))
- (-5 *1 (-899 *3)) (-4 *3 (-1109))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
- (-4 *7 (-956 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -1907 (-570))))
- (-5 *1 (-957 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $))
- (-15 -4412 (*7 $))))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934))
- (-5 *1 (-932 *3)) (-4 *3 (-620 (-542)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934))
- (-5 *1 (-932 *3)) (-4 *3 (-620 (-542)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-933))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-933))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854)))
- (-5 *2 (-650 (-2 (|:| -1679 (-650 *3)) (|:| -3578 *5))))
- (-5 *1 (-183 *5 *3)) (-4 *3 (-1252 (-171 *5)))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-368) (-854)))
- (-5 *2 (-650 (-2 (|:| -1679 (-650 *3)) (|:| -3578 *4))))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-1186))
+ (-4 *2 (-13 (-27) (-1212) (-436 *5)))
+ (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *5 *2)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-650 *6))
+ (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 *4) (-1011) (-1212)))
+ (-5 *1 (-606 *4 *2 *3))
+ (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1212))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
+ (-14 *4 (-777)) (-4 *5 (-174)))))
+(((*1 *1 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174))))
((*1 *1 *1)
- (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
- (-14 *4 *2))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-828)))))
+ (-12 (-5 *1 (-633 *2 *3 *4)) (-4 *2 (-856))
+ (-4 *3 (-13 (-174) (-723 (-413 (-570))))) (-14 *4 (-928))))
+ ((*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856))))
+ ((*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1281)) (-5 *1 (-837)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1) (-5 *1 (-809))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3))
- (-5 *1 (-748 *5 *4 *6 *3)) (-4 *3 (-956 *6 *5 *4)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-950 *5)) (-5 *3 (-777)) (-4 *5 (-1058))
- (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-825 *3)) (-4 *3 (-856)))))
-(((*1 *1 *2 *3)
- (-12
- (-5 *3
- (-650
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-570)))))
- (-4 *2 (-562)) (-5 *1 (-424 *2))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |contp| (-570))
- (|:| -1679 (-650 (-2 (|:| |irr| *4) (|:| -3465 (-570)))))))
- (-4 *4 (-1252 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))))
+ (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-1168))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1044))
+ (-5 *1 (-756)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058))
+ (-4 *2 (-1237 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-112))
+ (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
+ (-4 *4 (-13 (-1109) (-34))))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5))
+ (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-1290 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1290 *5 *6 *7 *8)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
+ (-14 *6 (-650 (-1186)))
+ (-5 *2
+ (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6)))))
+ (-5 *1 (-634 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-708 *4 *5 *6 *7))
+ (-4 *4 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227))
+ (-4 *7 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1226)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
- (-4 *2 (-1252 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+ (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-670 *4 *5)))
- (-5 *1 (-633 *4 *5 *6)) (-4 *5 (-13 (-174) (-723 (-413 (-570)))))
- (-14 *6 (-928)))))
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-413 *6))
+ (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1268 *5)) (-4 *6 (-1253 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1269 *5 *6 *7)) (-4 *5 (-368))
+ (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1250 *6 *5)))
+ (-5 *1 (-874 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1269 *5 *6 *7)) (-4 *5 (-368))
+ (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1250 *6 *5)))
+ (-5 *1 (-874 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282))
+ (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282))
+ (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4)))
+ (-5 *2 (-2 (|:| |num| (-1277 *4)) (|:| |den| *4))))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1234))) (-5 *3 (-1234)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+ (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *7)) (-4 *7 (-856))
+ (-4 *8 (-956 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1277 (-413 *8)) "failed"))
+ (|:| -2003 (-650 (-1277 (-413 *8))))))
+ (-5 *1 (-675 *5 *6 *7 *8)))))
(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281))
- (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1281))
- (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))))
+ (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-986 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132))
+ (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 *4))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| -1442 *3) (|:| -3278 *4))))
+ (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
+ (-4 *3 (-956 *7 *5 *6))
+ (-5 *2
+ (-2 (|:| -3011 (-777)) (|:| -1442 *3) (|:| |radicand| (-650 *3))))
+ (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777))
+ (-4 *8
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *3)) (-15 -4399 (*3 $)) (-15 -4413 (*3 $))))))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-798)) (-4 *3 (-174)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-570)) (-4 *5 (-354)) (-5 *2 (-424 (-1182 (-1182 *5))))
+ (-5 *1 (-1225 *5)) (-5 *3 (-1182 (-1182 *5))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
(((*1 *1 *1)
(-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *2 (-1109)) (-4 *3 (-1109))
(-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)))))
@@ -6173,7 +6338,7 @@
(-4 *4 (-354))))
((*1 *1) (-4 *1 (-373)))
((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1276 *4)) (-5 *1 (-534 *4))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4))
(-4 *4 (-354))))
((*1 *1 *1) (-4 *1 (-551))) ((*1 *1) (-4 *1 (-551)))
((*1 *1 *1) (-5 *1 (-777)))
@@ -6182,379 +6347,389 @@
(-12 (-5 *3 (-570)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4))
(-4 *4 (-1109))))
((*1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-551)) (-4 *2 (-562)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058))
- (-5 *1 (-1170 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-570)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058))
- (-14 *4 (-1186)) (-14 *5 *3))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1226)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3))
- (-4 *3 (-680 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
- (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-112))
- (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
- (-4 *4 (-13 (-1109) (-34))))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-413 *6))
- (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1267 *5)) (-4 *6 (-1252 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1268 *5 *6 *7)) (-4 *5 (-368))
- (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1249 *6 *5)))
- (-5 *1 (-874 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-777)) (-5 *4 (-1268 *5 *6 *7)) (-4 *5 (-368))
- (-14 *6 (-1186)) (-14 *7 *5) (-5 *2 (-413 (-1249 *6 *5)))
- (-5 *1 (-874 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-570) *2 *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*1 *1 *1) (-4 *1 (-1153))))
(((*1 *2 *3 *3)
(-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-777) *2)) (-5 *4 (-777)) (-4 *2 (-1109))
+ (-5 *1 (-684 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-777) *3)) (-4 *3 (-1109)) (-5 *1 (-688 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3))
+ (-4 *3 (-378 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-509 *2 *4 *5 *3))
+ (-4 *5 (-378 *2)) (-4 *3 (-378 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-695 *4)) (-4 *4 (-1001 *2)) (-4 *2 (-562))
+ (-5 *1 (-699 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1246 *2 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-756)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *2 (-1109)) (-4 *3 (-1109))
(-4 *4 (-1109)) (-4 *5 (-1109)) (-4 *6 (-1109)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1117 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8))
+ (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856))
+ (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9))))
+ (-5 *1 (-1117 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3))
+ (-4 *3 (-13 (-436 *6) (-27) (-1212)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-572 *6 *3 *7)) (-4 *7 (-1109)))))
+(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1) (-4 *1 (-1148))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
(-5 *1 (-911 *4)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8)))
- (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *8))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8)))
- (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *8)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2))
- (-4 *2 (-1226)))))
(((*1 *1 *1) (-5 *1 (-868)))
((*1 *2 *1)
(-12 (-4 *1 (-1112 *2 *3 *4 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109))))
((*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1167))))
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1186)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570))
- (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-334)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-4 *1 (-1069)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368))
- (-5 *1 (-1002 *3 *4)))))
-(((*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2559 "void")))
- (-5 *2 (-1281)) (-5 *1 (-1189))))
+ (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
+ (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2340 *1)))
+ (-4 *1 (-858 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
+ (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186))
- (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1281))
- (-5 *1 (-1189))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1186))
- (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1281))
- (-5 *1 (-1189)))))
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
+ (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))))
(((*1 *1)
- (-12 (-4 *1 (-410)) (-1754 (|has| *1 (-6 -4439)))
- (-1754 (|has| *1 (-6 -4431)))))
+ (-12 (-4 *1 (-410)) (-1753 (|has| *1 (-6 -4440)))
+ (-1753 (|has| *1 (-6 -4432)))))
((*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856))))
((*1 *2 *1) (-12 (-4 *1 (-836 *2)) (-4 *2 (-856))))
((*1 *1) (-4 *1 (-850))) ((*1 *1 *1 *1) (-4 *1 (-856))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-194))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-4 *5 (-240 (-2426 *3) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *5))
- (-2 (|:| -2159 *2) (|:| -1907 *5))))
- (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-956 *4 *5 (-870 *3))))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-570))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856))
- (-5 *1 (-455 *5 *6 *7 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562))
- (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $))
- (-15 -4412 ((-1134 *3 (-618 $)) $))
- (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-455 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856))
+ (-5 *2 (-650 (-678 *5))) (-5 *1 (-678 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311))))
- ((*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311))))
- ((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311))))
- ((*1 *2 *1) (-12 (-4 *1 (-1069)) (-5 *2 (-570)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1276 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354))
- (-5 *1 (-534 *5)))))
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570)))
+ (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-763)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
(((*1 *1 *2)
(-12 (-5 *2 (-928)) (-5 *1 (-153 *3 *4 *5)) (-14 *3 *2)
(-4 *4 (-368)) (-14 *5 (-1002 *3 *4)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-868)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8)))
+ (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3593 *8)))
+ (-4 *7 (-1074 *4 *5 *6)) (-4 *8 (-1080 *4 *5 *6 *7)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *8)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-4 *3 (-1252 *4)) (-4 *2 (-1267 *4))
- (-5 *1 (-1270 *4 *3 *5 *2)) (-4 *5 (-662 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132))
- (-4 *3 (-798)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1253 *6))
+ (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570))))
+ (-4 *8 (-1253 (-413 *7))) (-5 *2 (-592 *3))
+ (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-570))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
(((*1 *2 *3 *3)
(-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 (-618 *5))) (-5 *3 (-1186)) (-4 *5 (-436 *4))
- (-4 *4 (-1109)) (-5 *1 (-579 *4 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-62 *3)) (-14 *3 (-1186))))
- ((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-69 *3)) (-14 *3 (-1186))))
- ((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-72 *3)) (-14 *3 (-1186))))
- ((*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-1281))))
- ((*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1281)) (-5 *1 (-403))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-62 *3)) (-14 *3 (-1186))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-69 *3)) (-14 *3 (-1186))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-72 *3)) (-14 *3 (-1186))))
+ ((*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-1282))))
+ ((*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-403))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147))))
- ((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147))))
+ (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147))))
+ ((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1281)) (-5 *1 (-1147)))))
-(((*1 *1) (-5 *1 (-158)))
- ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1226)) (-4 *2 (-856))))
+ (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))))
+(((*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-166 *3 *2)) (-4 *3 (-167 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *2 *4)) (-4 *4 (-1253 *2))
+ (-4 *2 (-174))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1253 *2)) (-4 *2 (-174)) (-5 *1 (-414 *3 *2 *4))
+ (-4 *3 (-415 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-415 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1253 *2)) (-5 *2 (-570)) (-5 *1 (-774 *3 *4))
+ (-4 *4 (-415 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *3 (-174))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227))))
((*1 *2 *2)
(-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
((*1 *2 *1 *3)
(-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
(-4 *6 (-1074 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -3739 *1) (|:| |upper| *1)))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -2962 *1) (|:| |upper| *1)))
(-4 *1 (-985 *4 *5 *3 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186))))
- (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *2)) (-4 *2 (-956 *3 *5 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-380 *4 *2))
- (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (|has| *1 (-6 -4449)) (-4 *1 (-1264 *3))
- (-4 *3 (-1226)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-695 *2)) (-5 *4 (-777))
- (-4 *2 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *5 (-1252 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
- (-5 *1 (-534 *4)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1277))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1277))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 (-570)))) (-5 *1 (-472)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-753)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
+ (-14 *4 (-777)) (-4 *5 (-174)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2))
+ (-4 *2 (-1227)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231))
+ (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-570)) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3))
(-4 *3 (-1058))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1293 *4 *3))
+ (-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1294 *4 *3))
(-4 *3 (-1058)))))
(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-126 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1044))
+ (-5 *1 (-752)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880))
+ (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-1278))
+ (-5 *1 (-1281))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
+ (-5 *2 (-1278)) (-5 *1 (-1281)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-1276 *5))) (-5 *4 (-570)) (-5 *2 (-1276 *5))
- (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-373)) (-4 *5 (-1058)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-397)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1058))
- (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288)))
- (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1249 *5 *4)))
- (-5 *1 (-1123 *4 *5)) (-5 *3 (-1249 *5 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
- (-14 *4 (-777)) (-4 *5 (-174)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1070 (-1033 *4) (-1182 (-1033 *4)))) (-5 *3 (-868))
- (-5 *1 (-1033 *4)) (-4 *4 (-13 (-854) (-368) (-1031))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186)))
- (-4 *5 (-458))
- (-5 *2
- (-2 (|:| |gblist| (-650 (-249 *4 *5)))
- (|:| |gvlist| (-650 (-570)))))
- (-5 *1 (-637 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1299 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-852)))))
+ (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1186))) (-4 *6 (-368))
+ (-5 *2 (-650 (-298 (-959 *6)))) (-5 *1 (-544 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *7 (-13 (-368) (-854))))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-397)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (|has| *4 (-6 (-4451 "*")))
+ (-4 *4 (-1058)) (-5 *1 (-1037 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928))
+ (|has| *4 (-6 (-4451 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148)))
- (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5)))))
- (-5 *1 (-1138 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148)))
- (-5 *2 (-1175 (-650 (-320 *5)) (-650 (-298 (-320 *5)))))
- (-5 *1 (-1138 *5)))))
+ (-12 (-5 *3 (-1 *2 (-650 *2))) (-5 *4 (-650 *5))
+ (-4 *5 (-38 (-413 (-570)))) (-4 *2 (-1268 *5))
+ (-5 *1 (-1270 *5 *2)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570))
+ (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *3 *4)
- (-12 (-4 *2 (-1252 *4)) (-5 *1 (-813 *4 *2 *3 *5))
- (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2))
- (-4 *5 (-662 (-413 *2)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *2 (-1252 *4)) (-5 *1 (-813 *4 *2 *5 *3))
- (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-662 *2))
- (-4 *3 (-662 (-413 *2))))))
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
+ (-5 *2 (-2 (|:| -2678 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-112))
- (-5 *1 (-365 *4 *5)) (-14 *5 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-786 *4 (-870 *5)))) (-4 *4 (-458))
- (-14 *5 (-650 (-1186))) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
+ (-12 (-5 *3 (-1277 (-320 (-227))))
+ (-5 *2
+ (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570))
+ (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))))
+ (-5 *1 (-309)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1109))
(-4 *6 (-1109)) (-4 *2 (-1109)) (-5 *1 (-686 *5 *6 *2)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-610 *4 *3)) (-4 *4 (-1109))
- (-4 *3 (-1226)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))
+ (-5 *2 (-384)) (-5 *1 (-270))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-601 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1236 *3)) (-4 *3 (-1058))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1267 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-603))))
-(((*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1281)) (-5 *1 (-397))))
- ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-397)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-497)) (-5 *4 (-961)) (-5 *2 (-697 (-539)))
+ (-5 *1 (-539))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1))
+ (-4 *1 (-773 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))))
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1282))
+ (-5 *1 (-455 *4 *5 *6 *7)))))
+(((*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-397))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-397)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-543 *4 *2))
+ (-4 *2 (-1268 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3)))
+ (-4 *5 (-1253 *4)) (-4 *6 (-730 *4 *5)) (-5 *1 (-547 *4 *5 *6 *2))
+ (-4 *2 (-1268 *6))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3)))
+ (-5 *1 (-548 *4 *2)) (-4 *2 (-1268 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148)))
+ (-5 *1 (-1162 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-413 (-570)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))))
+ (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))
+ (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *5 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-298 *3)) (-5 *5 (-413 (-570)))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *6 *3))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 (-570))) (-5 *4 (-298 *6))
- (-4 *6 (-13 (-27) (-1211) (-436 *5)))
+ (-4 *6 (-13 (-27) (-1212) (-436 *5)))
(-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-1186)) (-5 *5 (-298 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *6 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1243 (-570)))
- (-4 *7 (-13 (-27) (-1211) (-436 *6)))
+ (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1244 (-570)))
+ (-4 *7 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *6 *7))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-570)))
- (-4 *3 (-13 (-27) (-1211) (-436 *7)))
+ (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-570)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *7)))
(-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *7 *3))))
((*1 *2 *3 *4 *5 *6)
(-12 (-5 *3 (-1 *8 (-413 (-570)))) (-5 *4 (-298 *8))
- (-5 *5 (-1243 (-413 (-570)))) (-5 *6 (-413 (-570)))
- (-4 *8 (-13 (-27) (-1211) (-436 *7)))
+ (-5 *5 (-1244 (-413 (-570)))) (-5 *6 (-413 (-570)))
+ (-4 *8 (-13 (-27) (-1212) (-436 *7)))
(-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *7 *8))))
((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-413 (-570))))
- (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *8)))
+ (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-413 (-570))))
+ (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *8)))
(-4 *8 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *8 *3))))
((*1 *1 *2)
@@ -6564,179 +6739,190 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-602 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3))))
- (-4 *3 (-1058)) (-4 *1 (-1236 *3))))
+ (-4 *3 (-1058)) (-4 *1 (-1237 *3))))
((*1 *1 *2 *3)
(-12 (-5 *2 (-777))
(-5 *3 (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4))))
- (-4 *4 (-1058)) (-4 *1 (-1257 *4))))
+ (-4 *4 (-1058)) (-4 *1 (-1258 *4))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-4 *1 (-1267 *3))))
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-4 *1 (-1268 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-1166 (-2 (|:| |k| (-777)) (|:| |c| *3))))
- (-4 *3 (-1058)) (-4 *1 (-1267 *3)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-928)) (-5 *1 (-448 *2))
- (-4 *2 (-1252 (-570)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-928)) (-5 *4 (-777)) (-5 *1 (-448 *2))
- (-4 *2 (-1252 (-570)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *1 (-448 *2))
- (-4 *2 (-1252 (-570)))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777))
- (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570)))))
- ((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *5 (-777))
- (-5 *6 (-112)) (-5 *1 (-448 *2)) (-4 *2 (-1252 (-570)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1252 *5))
- (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1277))))
- ((*1 *1 *1) (-5 *1 (-1277))))
-(((*1 *1) (-5 *1 (-443))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-744)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))))
+ (-4 *3 (-1058)) (-4 *1 (-1268 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1))))
+ (-4 *1 (-1080 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1231)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-1256 *3 *2))
+ (-4 *2 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1874 ($ $ $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562))
+ (-5 *1 (-1139 *3)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-744)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
+ (-12 (-5 *2 (-570))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856))
+ (-5 *1 (-455 *5 *6 *7 *4)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270))))
- ((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-695 (-413 (-959 (-570)))))
+ (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040))
+ (-5 *3 (-320 (-570))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-899 *6)))
- (-5 *5 (-1 (-896 *6 *8) *8 (-899 *6) (-896 *6 *8))) (-4 *6 (-1109))
- (-4 *8 (-13 (-1058) (-620 (-899 *6)) (-1047 *7)))
- (-5 *2 (-896 *6 *8)) (-4 *7 (-1058)) (-5 *1 (-948 *6 *7 *8)))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1008 *3)) (-4 *3 (-174)) (-5 *1 (-805 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-378 *2)) (-4 *2 (-1226))
- (-4 *2 (-856))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4449))
- (-4 *1 (-378 *3)) (-4 *3 (-1226)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*1 *1) (-5 *1 (-1278))))
+ (-12
+ (-5 *3
+ (-2 (|:| -2042 (-695 (-413 (-959 *4))))
+ (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -3933 (-777))
+ (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))
+ (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799))
+ (-5 *2
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *4))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *4)))))))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 (-112) (-650 *1)))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1252 (-171 *4))))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-570)) (-4 *1 (-327 *2 *4)) (-4 *4 (-132))
+ (-4 *2 (-1109))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *2)) (-4 *2 (-1109))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *2 (-1109)) (-5 *1 (-655 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))))
+(((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-4 *1 (-1069)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2223 (-443)))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2013 (-1186)) (|:| -2224 (-443)))))
(-5 *1 (-1190)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1109)) (-4 *4 (-1109))
- (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *5 *4 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |k| (-678 *3)) (|:| |c| *4))))
- (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
- (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
+ (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2))
+ (-4 *2 (-662 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570))))
- (-5 *1 (-192)))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-610 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1226)) (-5 *2 (-1281)))))
-(((*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
-(((*1 *2)
- (-12 (-4 *3 (-1230)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))
- (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3))
- (-5 *2
- (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1252 (-570)))
- (-5 *2
- (-2 (|:| -2331 (-695 (-570))) (|:| |basisDen| (-570))
- (|:| |basisInv| (-695 (-570)))))
- (-5 *1 (-774 *3 *4)) (-4 *4 (-415 (-570) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-354)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 *4))
- (-5 *2
- (-2 (|:| -2331 (-695 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-695 *4))))
- (-5 *1 (-994 *3 *4 *5 *6)) (-4 *6 (-730 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-354)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 *4))
- (-5 *2
- (-2 (|:| -2331 (-695 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-695 *4))))
- (-5 *1 (-1285 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3383 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
+(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-570)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
+ (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-278))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 *8)) (-5 *4 (-650 *6)) (-4 *6 (-856))
+ (-4 *8 (-956 *7 *5 *6)) (-4 *5 (-799)) (-4 *7 (-1058))
+ (-5 *2 (-650 (-777))) (-5 *1 (-325 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
+ (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-476 *3 *2)) (-4 *3 (-174)) (-4 *2 (-23))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4))
+ (-4 *4 (-1253 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *3 (-856)) (-5 *2 (-777))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-982 *3 *2 *4)) (-4 *3 (-1058)) (-4 *4 (-856))
+ (-4 *2 (-798))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-777))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3))
+ (-5 *2 (-570))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3))
+ (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-777)))))
(((*1 *2 *2 *2 *3 *4)
(-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1058))
(-5 *1 (-859 *5 *2)) (-4 *2 (-858 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1278)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1182 *7)) (-4 *5 (-1058))
- (-4 *7 (-1058)) (-4 *2 (-1252 *5)) (-5 *1 (-507 *5 *2 *6 *7))
- (-4 *6 (-1252 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058))
- (-4 *4 (-1252 *5)) (-5 *2 (-1182 *7)) (-5 *1 (-507 *5 *4 *6 *7))
- (-4 *6 (-1252 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-880))))
- ((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-695 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1281))
+ (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1282))
(-5 *1 (-474))))
((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-989 *3))))
((*1 *2 *1)
@@ -6750,30 +6936,18 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-950 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222)) (-5 *3 (-227)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *8 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-650 *8))
- (|:| |towers| (-650 (-1036 *5 *6 *7 *8)))))
- (-5 *1 (-1036 *5 *6 *7 *8)) (-5 *3 (-650 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *8 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-650 *8))
- (|:| |towers| (-650 (-1155 *5 *6 *7 *8)))))
- (-5 *1 (-1155 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+ (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)) (-5 *3 (-227)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-413 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-13 (-368) (-148)))
- (-5 *1 (-405 *3 *4)))))
+ (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
+ (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227))))
+ (-5 *1 (-309)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058))
(-4 *5 (-856)) (-5 *2 (-959 *4))))
@@ -6781,41 +6955,43 @@
(-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058))
(-4 *5 (-856)) (-5 *2 (-959 *4))))
((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-1267 *4)) (-4 *4 (-1058))
+ (-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058))
(-5 *2 (-959 *4))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-1267 *4)) (-4 *4 (-1058))
+ (-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058))
(-5 *2 (-959 *4)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -1400 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1252 *7))
- (-5 *3 (-413 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-580 *7 *8)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
+ (-5 *2 (-650 (-650 (-950 *3))))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *4 (-1058))
+ (-4 *1 (-1143 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 (-950 *3)))) (-4 *3 (-1058))
+ (-4 *1 (-1143 *3))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1143 *4)) (-4 *4 (-1058))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1143 *4)) (-4 *4 (-1058))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-650 (-173)))
+ (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-650 (-650 (-950 *5)))) (-5 *3 (-650 (-173)))
+ (-5 *4 (-173)) (-4 *1 (-1143 *5)) (-4 *5 (-1058)))))
+(((*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1230))
- (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5)))
- (-5 *2 (-2 (|:| |num| (-695 *5)) (|:| |den| *5))))))
+ (-12 (-5 *3 (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))
+ (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *5))
+ (-4 *5 (-1253 (-413 *4))))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-695 (-1182 *8))) (-4 *5 (-1058)) (-4 *8 (-1058))
+ (-4 *6 (-1253 *5)) (-5 *2 (-695 *6)) (-5 *1 (-507 *5 *6 *7 *8))
+ (-4 *7 (-1253 *6)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-1103 *3)) (-4 *3 (-956 *7 *6 *4)) (-4 *6 (-799))
(-4 *4 (-856)) (-4 *7 (-562))
@@ -6830,9 +7006,9 @@
((*1 *2 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1178 *4 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1211)))))
+ (-5 *1 (-1178 *4 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1212)))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1211)))
+ (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-161) (-27) (-1212)))
(-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
(-5 *1 (-1178 *4 *2))))
((*1 *2 *3 *4)
@@ -6850,67 +7026,152 @@
(-12 (-5 *4 (-1101 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5)))
(-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-3 *3 (-320 *5)))
(-5 *1 (-1179 *5)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-570))
- (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
+ (-5 *2 (-650 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-743 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-445))) (-5 *1 (-871)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368))
+ (-5 *1 (-1002 *3 *4)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-1141 *4 *2))
- (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4448) (-6 -4449))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-856)) (-4 *3 (-1226)) (-5 *1 (-1141 *3 *2))
- (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4448) (-6 -4449)))))))
-(((*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-1058))))
- ((*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))))
+ (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-482 *4 *5 *6 *7)) (|:| -3240 (-650 *7))))
- (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-311))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-384)) (-5 *1 (-194)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *2 (-777))
+ (-5 *1 (-1174 *4 *5)) (-14 *4 (-928))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5))
+ (-14 *4 (-928)) (-4 *5 (-1058))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058))
+ (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562))
+ (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $))
+ (-15 -4413 ((-1134 *3 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
+(((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-650
+ (-2
+ (|:| -2013
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (|:| -2224
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1166 (-227)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1990
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite|
+ "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated"))))))))
+ (-5 *1 (-565)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-777)) (-4 *6 (-368)) (-5 *4 (-1220 *6))
- (-5 *2 (-1 (-1166 *4) (-1166 *4))) (-5 *1 (-1284 *6))
- (-5 *5 (-1166 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+ (-12 (-5 *4 (-227)) (-5 *5 (-570)) (-5 *2 (-1222 *3))
+ (-5 *1 (-796 *3)) (-4 *3 (-983))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-112))
+ (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2559 "void")))
+ (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186))
+ (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1282))
+ (-5 *1 (-1189))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1186))
+ (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *2 (-1282))
+ (-5 *1 (-1189)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *1 (-1170 *3)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-767))))
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1277 *6)) (-5 *4 (-1277 (-570))) (-5 *5 (-570))
+ (-4 *6 (-1109)) (-5 *2 (-1 *6)) (-5 *1 (-1026 *6)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4))
+ (-4 *4 (-1109)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4))
- (-5 *3 (-650 *4)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))))
+ (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112))
+ (-5 *1 (-266)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-194))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368))
+ (-5 *2 (-112)) (-5 *1 (-673 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450))))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4450)))) (-5 *2 (-112))
+ (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
+ (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-650 *1))
+ (-4 *1 (-436 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
+ (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
+ (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3))
+ (-5 *1 (-957 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $))
+ (-15 -4413 (*7 $))))))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
(-14 *4 *3)))
@@ -6919,226 +7180,183 @@
(-14 *4 *3)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-681 *2)) (-4 *2 (-1058)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186)))
- (-4 *6 (-13 (-562) (-1047 *5))) (-4 *5 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *6)))))) (-5 *1 (-1048 *5 *6)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
- (-4 *3 (-562)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
-(((*1 *1 *1) (-4 *1 (-562))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
- (-5 *2 (-2 (|:| -4104 (-650 *6)) (|:| -1727 (-650 *6)))))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-562)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
+ (-4 *7 (-1001 *4)) (-4 *2 (-693 *7 *8 *9))
+ (-5 *1 (-528 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-693 *4 *5 *6))
+ (-4 *8 (-378 *7)) (-4 *9 (-378 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058))
+ (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-368))))
+ ((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-368)) (-4 *3 (-174)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
+ (-4 *2 (-693 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-695 *2)) (-4 *2 (-368)) (-4 *2 (-1058))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1132 *2 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-240 *2 *3)) (-4 *5 (-240 *2 *3)) (-4 *3 (-368))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-1197 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1035 (-849 (-570))))
+ (-5 *3 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *4)))) (-4 *4 (-1058))
+ (-5 *1 (-601 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 (-570)))))
- (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+ (-12 (-5 *3 (-650 (-2 (|:| -3739 *4) (|:| -3221 (-570)))))
+ (-4 *4 (-1253 (-570))) (-5 *2 (-743 (-777))) (-5 *1 (-448 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-424 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-1058))
+ (-5 *2 (-743 (-777))) (-5 *1 (-450 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-112)) (-5 *1 (-304)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
(-4 *5 (-378 *3)) (-5 *2 (-777))))
((*1 *2 *1)
(-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
(-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-777)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2))
- (-4 *3 (-1058)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227)))
+ (-5 *1 (-703)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-777)) (-5 *3 (-950 *5)) (-4 *5 (-1058))
+ (-5 *1 (-1174 *4 *5)) (-14 *4 (-928))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5))
+ (-14 *4 (-928)) (-4 *5 (-1058))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058))
+ (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-650 (-298 *4))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
+ (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-247 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
- (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
- (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-928))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-341 *4 *5 *6 *7)) (-4 *4 (-13 (-373) (-368)))
- (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-4 *7 (-347 *4 *5 *6))
- (-5 *2 (-777)) (-5 *1 (-398 *4 *5 *6 *7))))
- ((*1 *2 *1) (-12 (-4 *1 (-408)) (-5 *2 (-839 (-928)))))
- ((*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4))
- (-4 *4 (-1252 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-746 *4 *3)) (-4 *4 (-1058))
- (-4 *3 (-856))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856))
- (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4))
- (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6)))
- (-4 *8 (-347 *5 *6 *7)) (-4 *4 (-13 (-562) (-1047 (-570))))
- (-5 *2 (-777)) (-5 *1 (-918 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6))
- (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-1252 (-413 *4)))
- (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-777))
- (-5 *1 (-919 *4 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-341 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-368))
- (-4 *7 (-1252 *6)) (-4 *4 (-1252 (-413 *7))) (-4 *8 (-347 *6 *7 *4))
- (-4 *9 (-13 (-373) (-368))) (-5 *2 (-777))
- (-5 *1 (-1027 *6 *7 *4 *8 *9))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1058)) (-4 *3 (-562))
- (-5 *2 (-777))))
- ((*1 *2 *1 *2)
- (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
- (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6))
- (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-986 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-368))
- (-5 *1 (-527 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2))
- (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
((*1 *2 *3)
- (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174))
- (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
- (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058)))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
(-4 *5 (-378 *3)) (-5 *2 (-777))))
((*1 *2 *1)
(-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
(-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-777)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
- (-4 *2
- (-13 (-408)
- (-10 -7 (-15 -3735 (*2 *4)) (-15 -2367 ((-928) *2))
- (-15 -2331 ((-1276 *2) (-928))) (-15 -3741 (*2 *2)))))
- (-5 *1 (-361 *2 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
+ (-4 *5 (-240 (-2426 *3) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *5))
+ (-2 (|:| -2160 *2) (|:| -3011 *5))))
+ (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-956 *4 *5 (-870 *3))))))
(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1282))
+ (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
- (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-650 (-413 *7)))
- (-4 *7 (-1252 *6)) (-5 *3 (-413 *7)) (-4 *6 (-368))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-580 *6 *7)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
- (-4 *3 (-1226)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112))
- (-5 *1 (-212)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-896 *4 *5)) (-5 *3 (-896 *4 *6)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-672 *5)) (-5 *1 (-892 *4 *5 *6)))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4))
+ (-4 *4 (-354)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1204 *3 *2)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *7 (-650 *7))) (-4 *1 (-1220 *4 *5 *6 *7))
+ (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
+ ((*1 *1 *1) (-4 *1 (-1153))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
+ (-4 *4 (-174))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2))
+ (-4 *2 (-436 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
+ (-5 *1 (-159 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856))
+ (-4 *4 (-174)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-570))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-777)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-799)) (-4 *4 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *7 (-856))
+ (-5 *1 (-455 *5 *6 *7 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *4 (-368)) (-5 *2 (-650 (-1166 *4))) (-5 *1 (-289 *4 *5))
+ (-5 *3 (-1166 *4)) (-4 *5 (-1268 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227))
+ (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-996 (-413 (-570)) (-870 *3) (-242 *4 (-777))
+ (-249 *3 (-413 (-570)))))
+ (-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-995 *3 *4)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-27) (-436 *4))) (-4 *4 (-13 (-562) (-1047 (-570))))
- (-4 *7 (-1252 (-413 *6))) (-5 *1 (-558 *4 *5 *6 *7 *2))
- (-4 *2 (-347 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-570))))
- ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
- (-4 *3 (-1252 *4)) (-5 *2 (-570))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-562) (-1047 *2) (-645 *2) (-458)))
- (-5 *2 (-570)) (-5 *1 (-1125 *4 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
- (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570))
- (-5 *1 (-1125 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-1168))
- (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570))
- (-5 *1 (-1125 *6 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-570))
- (-5 *1 (-1126 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 (-413 (-959 *6))))
- (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-570))
- (-5 *1 (-1126 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1186))
- (-5 *5 (-1168)) (-4 *6 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *6))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1208 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551))
- (-4 *3 (-562))))
- ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551))
- (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551))
- (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))))
+ (-12 (-4 *4 (-799))
+ (-4 *3 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *5 (-562))
+ (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *3
+ (-13 (-856)
+ (-10 -8 (-15 -1417 ((-1186) $))
+ (-15 -2643 ((-3 $ "failed") (-1186))))))
+ (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *6))
+ (-4 *6
+ (-13 (-856)
+ (-10 -8 (-15 -1417 ((-1186) $))
+ (-15 -2643 ((-3 $ "failed") (-1186))))))
+ (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2))
+ (-4 *2 (-956 (-959 *4) *5 *6)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -7155,289 +7373,209 @@
(-2 (|:| |switch| (-1185)) (|:| |thenClause| (-334))
(|:| |elseClause| (-334))))
(|:| |returnBranch|
- (-2 (|:| -3329 (-112))
- (|:| -2195
+ (-2 (|:| -3366 (-112))
+ (|:| -2196
(-2 (|:| |ints2Floats?| (-112)) (|:| -2600 (-868))))))
(|:| |blockBranch| (-650 (-334)))
(|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168))
(|:| |forBranch|
- (-2 (|:| -3758 (-1101 (-959 (-570))))
- (|:| |span| (-959 (-570))) (|:| -3517 (-334))))
+ (-2 (|:| -1990 (-1101 (-959 (-570))))
+ (|:| |span| (-959 (-570))) (|:| -3515 (-334))))
(|:| |labelBranch| (-1129))
- (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3517 (-334))))
+ (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3515 (-334))))
(|:| |commonBranch|
- (-2 (|:| -3503 (-1186)) (|:| |contents| (-650 (-1186)))))
+ (-2 (|:| -3504 (-1186)) (|:| |contents| (-650 (-1186)))))
(|:| |printBranch| (-650 (-868)))))
(-5 *1 (-334)))))
-(((*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
- (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8))))
- (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-570))
- (-5 *6
- (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))))
- (-5 *7 (-1 (-1281) (-1276 *5) (-1276 *5) (-384)))
- (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281))
- (-5 *1 (-794))))
- ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
- (-12 (-5 *4 (-570))
- (-5 *6
- (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2062 (-384))))
- (-5 *7 (-1 (-1281) (-1276 *5) (-1276 *5) (-384)))
- (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281))
- (-5 *1 (-794)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-29 *4) (-1211)))
- (-5 *1 (-589 *4 *2))
- (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-592 (-413 (-959 *4))))
- (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *4))
- (-5 *1 (-595 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-354))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 (-171 (-570))))) (-5 *2 (-650 (-171 *4)))
- (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570))))))
- (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 (-171 *5))))
- (-5 *1 (-383 *5)) (-4 *5 (-13 (-368) (-854))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1226)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
- (-14 *3 (-928)) (-4 *4 (-1058)))))
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| -1442 (-413 *5)) (|:| |poly| *3)))
+ (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5))
- (-5 *1 (-897 *4 *5)) (-4 *5 (-1226)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3738 *3) (|:| -1601 *4))))
- (-5 *1 (-702 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *1) (-5 *1 (-443))))
+ (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3))
+ (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562))
+ (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $))
+ (-15 -4413 ((-1134 *3 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-237 *3))
+ (-4 *3 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
- (-5 *2 (-249 *4 *5)) (-5 *1 (-951 *4 *5)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570))))
- (-4 *5 (-893 (-570)))
- (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-573 *5 *3)) (-4 *3 (-635))
- (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-1212 *3))) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-956 *4 *6 *5)) (-4 *4 (-458))
- (-4 *5 (-856)) (-4 *6 (-799)) (-5 *1 (-996 *4 *5 *6 *3)))))
+ (-12 (-4 *3 (-1253 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-994 *4 *2 *3 *5))
+ (-4 *4 (-354)) (-4 *5 (-730 *2 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-695 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
- (-4 *2 (-693 *3 *4 *5)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1 *1) (|partial| -4 *1 (-146))) ((*1 *1 *1) (-4 *1 (-354)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-146)) (-4 *1 (-916)))))
+(((*1 *1 *1) (-5 *1 (-227))) ((*1 *1 *1) (-5 *1 (-384)))
+ ((*1 *1) (-5 *1 (-384))))
+(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212)))))
+ ((*1 *1 *1 *1) (-4 *1 (-799))))
+(((*1 *1) (-5 *1 (-603))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *1 *1) (-4 *1 (-635)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-542)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1129)) (-4 *4 (-354))
+ (-5 *1 (-534 *4)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-777)) (-4 *4 (-311)) (-4 *6 (-1253 *4))
+ (-5 *2 (-1277 (-650 *6))) (-5 *1 (-461 *4 *6)) (-5 *5 (-650 *6)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1278)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-570))))
+ (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3))))
+ (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-777)) (-4 *5 (-174))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
+ (-4 *4 (-174))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
+ (-4 *4 (-378 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *2 *4)) (-4 *2 (-378 *3))
+ (-4 *4 (-378 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1151 *2 *3)) (-14 *2 (-777)) (-4 *3 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
+ (-14 *4 (-650 (-1186)))))
((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *6)) (-5 *5 (-1 (-424 (-1182 *6)) (-1182 *6)))
- (-4 *6 (-368))
- (-5 *2
- (-650
- (-2 (|:| |outval| *7) (|:| |outmult| (-570))
- (|:| |outvect| (-650 (-695 *7))))))
- (-5 *1 (-538 *6 *7 *4)) (-4 *7 (-368)) (-4 *4 (-13 (-368) (-854))))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
- (-4 *2 (-693 *3 *4 *5)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
+ (-14 *4 (-650 (-1186))))))
+(((*1 *2 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311))))
+ ((*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1069)) (-5 *2 (-570)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458))
+ (-5 *2 (-650 (-650 (-249 *5 *6)))) (-5 *1 (-477 *5 *6 *7))
+ (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))))
+(((*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2))
+ (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
(((*1 *2)
- (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5)))
- (-5 *2 (-112)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6))))
+ (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-348 *3 *4)) (-14 *3 (-928))
+ (-14 *4 (-928))))
((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174))
- (-4 *4 (-240 (-2426 *5) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2159 *3) (|:| -1907 *4))
- (-2 (|:| -2159 *3) (|:| -1907 *4))))
- (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856))
- (-4 *7 (-956 *2 *4 (-870 *5))))))
+ (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-349 *3 *4)) (-4 *3 (-354))
+ (-14 *4 (-1182 *3))))
+ ((*1 *2)
+ (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-350 *3 *4)) (-4 *3 (-354))
+ (-14 *4 (-928)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
(((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
((*1 *1 *1)
- (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
+ (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
(-14 *4 *2))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-618 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-5 *5 (-1182 *2))
- (-4 *2 (-13 (-436 *6) (-27) (-1211)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-618 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186)))
- (-5 *5 (-413 (-1182 *2))) (-4 *2 (-13 (-436 *6) (-27) (-1211)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-650 (-227))) (-5 *1 (-206)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880))
- (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1280))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474))
- (-5 *1 (-1280))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
- (-5 *2 (-474)) (-5 *1 (-1280)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *3 (-227))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *4 *5 *6))
- (-4 *4 (-620 (-542))) (-4 *5 (-1226)) (-4 *6 (-1226)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4))
- (-5 *3 (-1182 *4)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4)))
- (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-1055 *4 *5))) (-5 *1 (-1302 *4 *5 *6))
- (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
-(((*1 *2 *3)
+(((*1 *1 *2)
+ (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4))
+ (-4 *4 (-174)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-928)) (-5 *4 (-227)) (-5 *5 (-570)) (-5 *6 (-880))
+ (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
+ ((*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *2 *1 *1)
(-12
- (-5 *3
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (-5 *2 (-384)) (-5 *1 (-207)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5))))
- (-5 *1 (-1138 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-13 (-311) (-148)))
- (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5))))
- (-5 *1 (-1138 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148)))
- (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5)))))
- (-5 *1 (-1138 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148)))
- (-5 *2 (-650 (-650 (-298 (-320 *4))))) (-5 *1 (-1138 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-298 (-413 (-959 *5))))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5)))))
- (-5 *1 (-1138 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-298 (-413 (-959 *4)))))
- (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *4)))))
- (-5 *1 (-1138 *4)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-650 *3)) (-5 *5 (-928)) (-4 *3 (-1252 *4))
- (-4 *4 (-311)) (-5 *1 (-466 *4 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5))
- (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6))
- (-4 *6 (-458))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5))
- (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6))
- (-4 *6 (-458)))))
-(((*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1211))))
- ((*1 *2 *1) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4))
- (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
+ (-5 *2
+ (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3))
+ (|:| |coef2| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109))))
+ ((*1 *1 *1) (-12 (-4 *1 (-701 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1277 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354))
+ (-5 *1 (-534 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-603)) (-5 *1 (-284)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112))
- (-5 *1 (-362 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-112))
- (-5 *1 (-534 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1874 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-650 (-384))) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474))))
((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1281)) (-5 *1 (-1277))))
+ (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278))))
((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
+ ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5))
+ (-14 *4 (-928)) (-4 *5 (-1058)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-870 *4))
+ (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *1)
(-12 (-4 *1 (-256 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-856))
(-4 *5 (-799)) (-4 *2 (-269 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
-(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1226))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
(-12 (-5 *2 (-959 (-384))) (-5 *1 (-344 *3 *4 *5))
(-4 *5 (-1047 (-384))) (-14 *3 (-650 (-1186)))
@@ -7480,30 +7618,30 @@
((*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-4 *1 (-402))))
((*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-4 *1 (-402))))
((*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-4 *1 (-402))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-413 (-959 (-570))))) (-4 *1 (-447))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-413 (-959 (-384))))) (-4 *1 (-447))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-959 (-570)))) (-4 *1 (-447))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-959 (-384)))) (-4 *1 (-447))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-320 (-570)))) (-4 *1 (-447))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 (-320 (-384)))) (-4 *1 (-447))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447))))
((*1 *2 *1)
(-12
(-5 *2
(-3
(|:| |nia|
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(|:| |mdnia|
(-2 (|:| |fn| (-320 (-227)))
- (|:| -3758 (-650 (-1103 (-849 (-227)))))
+ (|:| -1990 (-650 (-1103 (-849 (-227)))))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))))
(-5 *1 (-775))))
((*1 *2 *1)
(-12
(-5 *2
(-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
(|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))
(-5 *1 (-814))))
@@ -7512,13 +7650,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
(|:| |lb| (-650 (-849 (-227))))
(|:| |cf| (-650 (-320 (-227))))
(|:| |ub| (-650 (-849 (-227))))))
(|:| |lsa|
(-2 (|:| |lfn| (-650 (-320 (-227))))
- (|:| -2314 (-650 (-227)))))))
+ (|:| -2315 (-650 (-227)))))))
(-5 *1 (-847))))
((*1 *2 *1)
(-12
@@ -7535,28 +7673,28 @@
((*1 *1 *2)
(-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058))
(-4 *4 (-799)) (-4 *5 (-856)) (-4 *1 (-985 *3 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
(-2740
(-12 (-5 *2 (-959 *3))
- (-12 (-1754 (-4 *3 (-38 (-413 (-570)))))
- (-1754 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186))))
+ (-12 (-1753 (-4 *3 (-38 (-413 (-570)))))
+ (-1753 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799))
(-4 *5 (-856)))
(-12 (-5 *2 (-959 *3))
- (-12 (-1754 (-4 *3 (-551))) (-1754 (-4 *3 (-38 (-413 (-570)))))
+ (-12 (-1753 (-4 *3 (-551))) (-1753 (-4 *3 (-38 (-413 (-570)))))
(-4 *3 (-38 (-570))) (-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799))
(-4 *5 (-856)))
(-12 (-5 *2 (-959 *3))
- (-12 (-1754 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570))))
+ (-12 (-1753 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570))))
(-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5)) (-4 *4 (-799))
(-4 *5 (-856)))))
((*1 *1 *2)
(-2740
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
- (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
+ (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
(-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
@@ -7566,174 +7704,172 @@
(-12 (-5 *2 (-959 (-413 (-570)))) (-4 *1 (-1074 *3 *4 *5))
(-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058))
(-4 *4 (-799)) (-4 *5 (-856)))))
-(((*1 *1) (-5 *1 (-145))) ((*1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-856)) (-4 *5 (-799))
- (-4 *6 (-562)) (-4 *7 (-956 *6 *5 *3))
- (-5 *1 (-468 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-1047 (-413 (-570))) (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $))
- (-15 -4412 (*7 $))))))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-298 (-839 *3)))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-839 *3)) (-5 *1 (-642 *5 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 (-839 (-959 *5)))) (-4 *5 (-458))
- (-5 *2 (-839 (-413 (-959 *5)))) (-5 *1 (-643 *5))
- (-5 *3 (-413 (-959 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5)))
- (-4 *5 (-458)) (-5 *2 (-839 *3)) (-5 *1 (-643 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))))
-(((*1 *1) (-5 *1 (-443))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
- (-14 *4 *2))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
+ (-5 *2 (-1044)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-237 *3))
+ (-4 *3 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-237 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109))
+ (-5 *1 (-743 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
+ (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))
+ (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3)))
+ (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-706 *3))
+ (-4 *3 (-311)))))
+(((*1 *1 *1) (-4 *1 (-144)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))))
((*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368))))
((*1 *2 *1)
- (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1252 *2)) (-4 *2 (-174))))
+ (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-928)) (-4 *4 (-354))
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354))
(-5 *1 (-534 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
(-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562)))))
+(((*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-695 (-570))))
- (-5 *1 (-1119)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
(-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1226)) (-4 *2 (-856))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
- (-14 *3 (-928)) (-4 *4 (-1058))))
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1227))))
((*1 *1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1246 *3 *2))
- (-4 *2 (-1252 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368))
- (-5 *2 (-1182 (-959 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1033 *3))
+ (-4 *3 (-13 (-854) (-368) (-1031)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
+ (-4 *3 (-1253 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368)))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))))
+ (|partial| -12 (-4 *4 (-1231)) (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| |radicand| (-413 *5)) (|:| |deg| (-777))))
+ (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186)))
- (-4 *5 (-458)) (-5 *2 (-650 (-249 *4 *5))) (-5 *1 (-637 *4 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
- (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7))
- (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-916)) (-4 *5 (-799))
- (-4 *6 (-856)) (-5 *1 (-913 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5))
- (-4 *5 (-1252 *4)) (-4 *4 (-916)) (-5 *1 (-914 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-1058)) (-4 *3 (-1253 *4)) (-4 *2 (-1268 *4))
+ (-5 *1 (-1271 *4 *3 *5 *2)) (-4 *5 (-662 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-570)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-311))
- (-4 *9 (-956 *8 *6 *7))
- (-5 *2 (-2 (|:| -3282 (-1182 *9)) (|:| |polval| (-1182 *8))))
- (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))))
+ (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112))
+ (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112))
+ (-5 *1 (-1216 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4))))))
+(((*1 *1) (-5 *1 (-584))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-512)) (-5 *2 (-697 (-780))) (-5 *1 (-115))))
((*1 *2 *1 *3)
(|partial| -12 (-5 *3 (-1168)) (-5 *2 (-780)) (-5 *1 (-115))))
((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-972)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-4 *1 (-1253 *4)) (-4 *4 (-1058))
+ (-5 *2 (-1277 *4)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1252 (-570))))))
+ (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3))
+ (-4 *3 (-1253 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277)))))
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-777)))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
-(((*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570))))
- ((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1) (-4 *1 (-875 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798))
- (-4 *4 (-856)))))
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *1 *1) (-5 *1 (-868))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-928)) (-5 *2 (-777)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3)
(-14 *5 *3))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))))
-(((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))))
-(((*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1200 *2)) (-4 *2 (-368)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1276 (-777))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 (-413 (-959 (-570))))) (-5 *4 (-650 (-1186)))
- (-5 *2 (-650 (-650 *5))) (-5 *1 (-385 *5))
- (-4 *5 (-13 (-854) (-368)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4))
- (-4 *4 (-13 (-854) (-368))))))
+ (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570))))
+ (-4 *5 (-893 (-570)))
+ (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-573 *5 *3)) (-4 *3 (-635))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1186)) (-5 *4 (-849 *2)) (-4 *2 (-1148))
+ (-4 *2 (-13 (-27) (-1212) (-436 *5)))
+ (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570)))
+ (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
+ (-5 *1 (-573 *5 *2)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132))
+ (-4 *3 (-798)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *8)) (-5 *4 (-777)) (-4 *8 (-956 *5 *7 *6))
+ (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
+ (-4 *7 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |det| *8) (|:| |rows| (-650 (-570)))
+ (|:| |cols| (-650 (-570))))))
+ (-5 *1 (-931 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1282) (-1277 *5) (-1277 *5) (-384)))
+ (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282))
+ (-5 *1 (-794)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
+ (-5 *2 (-424 *3)) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-212))
(-5 *3 (-1186))))
@@ -7751,61 +7887,49 @@
((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-825 *3)) (-4 *3 (-856))))
((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856))))
((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
(-5 *2 (-650 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-650 (-650 *3)))))
((*1 *2 *1)
- (-12 (-5 *2 (-3 (-570) (-227) (-512) (-1168) (-1191)))
- (-5 *1 (-1191)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-650 (-650 *5)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-650 *3))) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
(((*1 *1 *2 *2) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1135 *4 *3 *5))) (-4 *4 (-38 (-413 (-570))))
- (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *1 (-1135 *4 *3 *5))
- (-4 *5 (-956 *4 (-537 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1220 *4))) (-5 *3 (-1186)) (-5 *1 (-1220 *4))
- (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1223)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))
- (-4 *2 (-458))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-1252 (-570))) (-5 *2 (-650 (-570)))
- (-5 *1 (-492 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *3 (-458)))))
+ (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3504 (-1168))))
+ (-5 *1 (-828)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
- (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27))
- (-5 *2 (-650 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186)))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))))
+ (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1277 *1))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916))
+ (-5 *2 (-1277 *1)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-570) (-570))) (-5 *1 (-366 *3)) (-4 *3 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-777) (-777))) (-4 *1 (-391 *3)) (-4 *3 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-618 *5))) (-5 *3 (-1186)) (-4 *5 (-436 *4))
+ (-4 *4 (-1109)) (-5 *1 (-579 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *5)) (-4 *5 (-1252 *3)) (-4 *3 (-311))
- (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-695 *7)) (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5))
+ (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))))
(((*1 *2 *1 *3)
(-12 (-5 *2 (-413 (-570))) (-5 *1 (-118 *4)) (-14 *4 *3)
(-5 *3 (-570))))
@@ -7819,178 +7943,238 @@
((*1 *2 *1 *1) (-12 (-4 *1 (-1021)) (-5 *2 (-413 (-570)))))
((*1 *2 *3 *1 *2)
(-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368)))
- (-4 *3 (-1252 *2))))
+ (-4 *3 (-1253 *2))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1254 *2 *3)) (-4 *3 (-798))
+ (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798))
(|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3735 (*2 (-1186))))
(-4 *2 (-1058)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-5 *1 (-592 *2)) (-4 *2 (-1047 *3))
+ (-4 *2 (-368))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-636 *4 *2))
+ (-4 *2 (-13 (-436 *4) (-1011) (-1212)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212)))
+ (-4 *4 (-562)) (-5 *1 (-636 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-966)) (-5 *2 (-1186))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-966)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *1 (-920 *3 *2))
+ (-4 *2 (-1253 (-413 *3))))))
(((*1 *2 *3)
- (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4))
- (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-570))
- (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570)))))))
- (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-570))
- (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570)))))))
- (-5 *1 (-1241 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
- ((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1939 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *2))
+ (-2 (|:| -2160 *5) (|:| -3011 *2))))
+ (-4 *2 (-240 (-2426 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384))))
((*1 *1 *1 *1) (-4 *1 (-551)))
((*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
((*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-777)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-1248 *3 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))))
-(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))))
+(((*1 *1) (-5 *1 (-158)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *2 (-1281)) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186))
- (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))))
-(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1252 *5))
- (-5 *1 (-733 *5 *2)) (-4 *5 (-368)))))
-(((*1 *1) (-5 *1 (-188))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
- (-5 *2 (-650 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-650 *3))))
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5))
+ (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-311) (-148)))
+ (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-112))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
+(((*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-372 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570))))
((*1 *2 *1)
- (-12 (-5 *2 (-1166 *3)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
+ (-12 (-5 *2 (-1277 (-3 (-474) "undefined"))) (-5 *1 (-1278)))))
+(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1149 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
+ (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34)))
+ (-5 *1 (-1150 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-1149 *3 *4))) (-4 *3 (-13 (-1109) (-34)))
+ (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1262 *3 *4 *5)) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368))
+ (-14 *4 (-1186)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570))))
+ ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562))))
+ ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
((*1 *2 *1)
- (-12 (-5 *2 (-650 *3)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-732))))
- ((*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-650 *3))))
+ (-12 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2160 *3) (|:| -3011 *2))
+ (-2 (|:| -2160 *3) (|:| -3011 *2)))))))
+(((*1 *1) (-5 *1 (-188))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1282)) (-5 *1 (-837)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |k| (-1186)) (|:| |c| (-1299 *3)))))
+ (-5 *1 (-1299 *3)) (-4 *3 (-1058))))
((*1 *2 *1)
- (-12 (-4 *1 (-1267 *3)) (-4 *3 (-1058)) (-5 *2 (-1166 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))))
+ (-12 (-5 *2 (-650 (-2 (|:| |k| *3) (|:| |c| (-1301 *3 *4)))))
+ (-5 *1 (-1301 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-295)))
+ ((*1 *1) (-5 *1 (-868)))
+ ((*1 *1)
+ (-12 (-4 *2 (-458)) (-4 *3 (-856)) (-4 *4 (-799))
+ (-5 *1 (-996 *2 *3 *4 *5)) (-4 *5 (-956 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1094)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34)))))
+ ((*1 *1) (-5 *1 (-1189))) ((*1 *1) (-5 *1 (-1190))))
(((*1 *2 *1)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4))
+ (-4 *2 (-240 *3 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826))
+ (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
(((*1 *1) (-5 *1 (-188))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-756)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
-(((*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-166 *3 *2)) (-4 *3 (-167 *2))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *2 *4)) (-4 *4 (-1252 *2))
- (-4 *2 (-174))))
- ((*1 *2)
- (-12 (-4 *4 (-1252 *2)) (-4 *2 (-174)) (-5 *1 (-414 *3 *2 *4))
- (-4 *3 (-415 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-415 *2 *3)) (-4 *3 (-1252 *2)) (-4 *2 (-174))))
- ((*1 *2)
- (-12 (-4 *3 (-1252 *2)) (-5 *2 (-570)) (-5 *1 (-774 *3 *4))
- (-4 *4 (-415 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *3 (-174))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880))
- (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-1277))
- (-5 *1 (-1280))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
- (-5 *2 (-1277)) (-5 *1 (-1280)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-497)) (-5 *4 (-961)) (-5 *2 (-697 (-539)))
- (-5 *1 (-539))))
+ (-12 (-5 *3 (-928)) (-5 *4 (-424 *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-1058)) (-5 *2 (-650 *6)) (-5 *1 (-450 *5 *6)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-989 *2)) (-4 *2 (-1058))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1))
- (-4 *1 (-773 *3)))))
-(((*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))))
-(((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
-(((*1 *1) (-5 *1 (-188))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-118 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-118 *2)) (-14 *2 (-570))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-877 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-877 *2)) (-14 *2 (-570))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-570)) (-14 *3 *2) (-5 *1 (-878 *3 *4))
+ (-4 *4 (-875 *3))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-570)) (-5 *1 (-878 *2 *3)) (-4 *3 (-875 *2))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-570)) (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-1268 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1239 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1268 *2)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))))
-(((*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
+ (|partial| -12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
+ (-5 *2 (-1277 *4)) (-5 *1 (-644 *4 *5)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-650 *6)) (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
+ (-4 *3 (-562)))))
+(((*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-650 (-298 *4))) (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
- (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928)))))
+ (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
+ (-5 *5 (-112)) (-5 *2 (-1279)) (-5 *1 (-260)))))
+(((*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+(((*1 *1) (-5 *1 (-188))))
+(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1203 *3 *2)) (-4 *3 (-1109)))))
+ (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570))))
+ (-5 *1 (-1040)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
+ ((*1 *1 *1) (-4 *1 (-1153))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
(((*1 *2 *2)
+ (-12 (-4 *3 (-354)) (-4 *4 (-333 *3)) (-4 *5 (-1253 *4))
+ (-5 *1 (-783 *3 *4 *5 *2 *6)) (-4 *2 (-1253 *5)) (-14 *6 (-928))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-4 *3 (-373))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1296 *2)) (-4 *2 (-368)) (-4 *2 (-373)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058))
+ (-4 *3 (-1109)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
+ (-5 *1 (-32 *4 *2)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-755)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-311)) (-5 *1 (-461 *3 *2)) (-4 *2 (-1253 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-311)) (-5 *1 (-466 *3 *2)) (-4 *2 (-1253 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-311)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-777)))
+ (-5 *1 (-545 *3 *2 *4 *5)) (-4 *2 (-1253 *3)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2))
+ (-4 *4 (-38 (-413 (-570)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
(-12
+ (-5 *3
+ (-2 (|:| |det| *12) (|:| |rows| (-650 (-570)))
+ (|:| |cols| (-650 (-570)))))
+ (-5 *4 (-695 *12)) (-5 *5 (-650 (-413 (-959 *9))))
+ (-5 *6 (-650 (-650 *12))) (-5 *7 (-777)) (-5 *8 (-570))
+ (-4 *9 (-13 (-311) (-148))) (-4 *12 (-956 *9 *11 *10))
+ (-4 *10 (-13 (-856) (-620 (-1186)))) (-4 *11 (-799))
(-5 *2
- (-996 (-413 (-570)) (-870 *3) (-242 *4 (-777))
- (-249 *3 (-413 (-570)))))
- (-14 *3 (-650 (-1186))) (-14 *4 (-777)) (-5 *1 (-995 *3 *4)))))
-(((*1 *1 *1) (-5 *1 (-227))) ((*1 *1 *1) (-5 *1 (-384)))
- ((*1 *1) (-5 *1 (-384))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3))))
- (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1226)) (-5 *1 (-380 *4 *2))
- (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-650 (-487 *4 *5))) (-5 *3 (-870 *4))
- (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))))
+ (-2 (|:| |eqzro| (-650 *12)) (|:| |neqzro| (-650 *12))
+ (|:| |wcond| (-650 (-959 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *9))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *9)))))))))
+ (-5 *1 (-931 *9 *10 *11 *12)))))
(((*1 *1 *1 *2)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))
(-4 *2 (-368))))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-227))))
((*1 *1 *1 *1)
- (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1226)))
- (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1226)))))
+ (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227)))
+ (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1227)))))
((*1 *1 *1 *1) (-4 *1 (-368)))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384))))
((*1 *1 *2 *2)
@@ -7998,7 +8182,7 @@
(-4 *1 (-436 *3))))
((*1 *1 *1 *1) (-4 *1 (-479)))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
((*1 *1 *1 *1) (-5 *1 (-542)))
((*1 *1 *2 *3)
(-12 (-4 *4 (-174)) (-5 *1 (-627 *2 *4 *3)) (-4 *2 (-38 *4))
@@ -8028,52 +8212,61 @@
(-4 *5 (-240 *4 *2)) (-4 *6 (-240 *3 *2)) (-4 *2 (-368))))
((*1 *2 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1283 *2)) (-4 *2 (-368))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1284 *2)) (-4 *2 (-368))))
((*1 *1 *1 *1)
(|partial| -12 (-4 *2 (-368)) (-4 *2 (-1058)) (-4 *3 (-856))
(-4 *4 (-799)) (-14 *6 (-650 *3))
- (-5 *1 (-1288 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-956 *2 *4 *3))
+ (-5 *1 (-1289 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-956 *2 *4 *3))
(-14 *7 (-650 (-777))) (-14 *8 (-777))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-368)) (-4 *2 (-1058))
+ (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-368)) (-4 *2 (-1058))
(-4 *3 (-852)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1222)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8))))
+ (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
(((*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570))))
((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1149 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
- (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34)))
- (-5 *1 (-1150 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-1149 *3 *4))) (-4 *3 (-13 (-1109) (-34)))
- (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))))
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
+ (-5 *2 (-112)) (-5 *1 (-644 *4 *5)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826))
- (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
- (-5 *5 (-112)) (-5 *2 (-1278)) (-5 *1 (-260)))))
+ (-12 (-5 *3 (-650 *2)) (-5 *1 (-181 *2)) (-4 *2 (-311))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-650 (-650 *4))) (-5 *2 (-650 *4)) (-4 *4 (-311))
+ (-5 *1 (-181 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 *8))
+ (-5 *4
+ (-650
+ (-2 (|:| -2003 (-695 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-695 *7)))))
+ (-5 *5 (-777)) (-4 *8 (-1253 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-354))
+ (-5 *2
+ (-2 (|:| -2003 (-695 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-695 *7))))
+ (-5 *1 (-504 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1267 *3)))))
+ (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
((*1 *1 *1 *1) (|partial| -5 *1 (-135)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-216 *2))
(-4 *2
(-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $))
- (-15 -2919 ((-1281) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226))))
+ (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $))
+ (-15 -3807 ((-1282) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227))))
((*1 *1 *1 *1)
(-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
((*1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
@@ -8088,52 +8281,85 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-21))))
- ((*1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-21)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-21))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-21)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4))
+ (-4 *4 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
+ (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-650 *3))
+ (-5 *1 (-597 *5 *6 *7 *8 *3)) (-4 *3 (-1118 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5))))))
+ (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186)))))
((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-575 *3)) (-4 *3 (-1047 (-570)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384))))
- ((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-384)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1278))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3))))
- (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))))
+ (-12 (-4 *4 (-13 (-311) (-148)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *4)) (|:| -1533 (-650 (-959 *4))))))
+ (-5 *1 (-1087 *4 *5)) (-5 *3 (-650 (-959 *4)))
+ (-14 *5 (-650 (-1186)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148)))
+ (-5 *2
+ (-650 (-2 (|:| -2164 (-1182 *5)) (|:| -1533 (-650 (-959 *5))))))
+ (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
+ ((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-1055 *5 *6))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-959 *4)))
+ (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-1055 *4 *5))) (-5 *1 (-1303 *4 *5 *6))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
(((*1 *1) (-4 *1 (-976))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174))
- (-4 *3 (-240 (-2426 *4) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *3))
- (-2 (|:| -2159 *5) (|:| -1907 *3))))
- (-5 *1 (-467 *4 *2 *5 *3 *6 *7)) (-4 *5 (-856))
- (-4 *7 (-956 *2 *3 (-870 *4))))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-827)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4))
+ (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3))
+ (-4 *2 (-1253 *3)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227)))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-158)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-216 *2))
(-4 *2
(-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $))
- (-15 -2919 ((-1281) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1226))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1226))))
+ (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $))
+ (-15 -3807 ((-1282) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227))))
((*1 *1 *2 *1)
(-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132))))
((*1 *1 *2 *1)
(-12 (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *2))
- (-4 *2 (-1252 *3))))
+ (-4 *2 (-1253 *3))))
((*1 *1 *1 *1)
(-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
((*1 *1 *1 *1)
@@ -8147,333 +8373,334 @@
((*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109))))
((*1 *2 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-25)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-25)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-424 *4) *4)) (-4 *4 (-562)) (-5 *2 (-424 *4))
+ (-5 *1 (-425 *4))))
+ ((*1 *1 *1) (-5 *1 (-933)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
+ ((*1 *1 *1) (-5 *1 (-934)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))
+ (-5 *4 (-413 (-570))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))
+ (-5 *4 (-413 (-570))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))
+ (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2 (-384)) (-5 *1 (-207)))))
+(((*1 *2 *3) (-12 (-5 *3 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551))
- (-4 *3 (-562))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-551)) (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551))
- (-4 *3 (-1109))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551))
- (-4 *3 (-1109))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3))
- (-4 *3 (-1047 *2)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1227))
+ (-4 *5 (-1227)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-242 *6 *7)) (-14 *6 (-777))
+ (-4 *7 (-1227)) (-4 *5 (-1227)) (-5 *2 (-242 *6 *5))
+ (-5 *1 (-241 *6 *7 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1227)) (-4 *5 (-1227))
+ (-4 *2 (-378 *5)) (-5 *1 (-376 *6 *4 *5 *2)) (-4 *4 (-378 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1109)) (-4 *5 (-1109))
+ (-4 *2 (-431 *5)) (-5 *1 (-429 *6 *4 *5 *2)) (-4 *4 (-431 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-650 *6)) (-4 *6 (-1227))
+ (-4 *5 (-1227)) (-5 *2 (-650 *5)) (-5 *1 (-648 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-965 *6)) (-4 *6 (-1227))
+ (-4 *5 (-1227)) (-5 *2 (-965 *5)) (-5 *1 (-964 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1166 *6)) (-4 *6 (-1227))
+ (-4 *3 (-1227)) (-5 *2 (-1166 *3)) (-5 *1 (-1164 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1277 *6)) (-4 *6 (-1227))
+ (-4 *5 (-1227)) (-5 *2 (-1277 *5)) (-5 *1 (-1276 *6 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-455 *5 *6 *7 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
- (-5 *1 (-1224 *4)) (-5 *3 (-1182 (-1182 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
- (-4 *5 (-1252 *4)) (-5 *2 (-695 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-4 *5 (-1252 *4)) (-5 *2 (-695 *4))
- (-5 *1 (-414 *3 *4 *5)) (-4 *3 (-415 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3))
- (-5 *2 (-695 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189))))
- ((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1189)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1279)))))
-(((*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227))
- (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-757)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129)))
- (-5 *1 (-351 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
- (-4 *3 (-1252 (-171 *2)))))
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5))))
+ (-5 *1 (-1138 *5))))
((*1 *2 *3)
- (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
- (-4 *3 (-1252 (-171 *2))))))
+ (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-13 (-311) (-148)))
+ (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-298 (-413 (-959 *5)))) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5))))
+ (-5 *1 (-1138 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148)))
+ (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5)))))
+ (-5 *1 (-1138 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-13 (-311) (-148)))
+ (-5 *2 (-650 (-650 (-298 (-320 *4))))) (-5 *1 (-1138 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-298 (-413 (-959 *5))))) (-5 *4 (-650 (-1186)))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *5)))))
+ (-5 *1 (-1138 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-298 (-413 (-959 *4)))))
+ (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-298 (-320 *4)))))
+ (-5 *1 (-1138 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1267 *4)) (-5 *1 (-1269 *4 *2))
- (-4 *4 (-38 (-413 (-570)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
- (-5 *1 (-997 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
- (-5 *1 (-1116 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1259 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1236 *3)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-650 (-1186))) (-14 *5 (-777))
+ (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458))
(-5 *2
- (-650
- (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
- (-249 *4 (-413 (-570))))))
- (-5 *1 (-511 *4 *5))
- (-5 *3
- (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
- (-249 *4 (-413 (-570))))))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227))
- (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1182 *7))
- (-4 *5 (-1058)) (-4 *7 (-1058)) (-4 *2 (-1252 *5))
- (-5 *1 (-507 *5 *2 *6 *7)) (-4 *6 (-1252 *2)))))
+ (-2 (|:| |dpolys| (-650 (-249 *5 *6)))
+ (|:| |coords| (-650 (-570)))))
+ (-5 *1 (-477 *5 *6 *7)) (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-845))
- (-5 *3
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (-5 *2 (-1044))))
+ (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *2 (-650 *3)) (-5 *1 (-986 *4 *5 *6 *3))
+ (-4 *3 (-1074 *4 *5 *6)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-153 *2 *3 *4)) (-14 *2 (-928)) (-4 *3 (-368))
+ (-14 *4 (-1002 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1253 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
+ ((*1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
+ ((*1 *1 *1) (|partial| -4 *1 (-728)))
+ ((*1 *1 *1) (|partial| -4 *1 (-732)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368)))
+ (-4 *2 (-1253 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7)))
+ (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
+ (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8)))
+ (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8))))
((*1 *2 *3)
- (-12 (-4 *1 (-845))
- (-5 *3
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))
- (-5 *2 (-1044)))))
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7)))
+ (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
+ (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8)))
+ (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-867)))))
(((*1 *2)
- (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
+ (-12 (-4 *4 (-174)) (-5 *2 (-650 (-1277 *4))) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
+ (-5 *2 (-650 (-1277 *3))))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))))
-(((*1 *1) (-5 *1 (-829))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
+ (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058))
+ (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-413 (-570))) (-4 *1 (-560 *3))
+ (-4 *3 (-13 (-410) (-1212)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-650 *3)) (-5 *5 (-928)) (-4 *3 (-1253 *4))
+ (-4 *4 (-311)) (-5 *1 (-466 *4 *3)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277 (-705))) (-5 *1 (-309)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-570) "failed") *5)) (-4 *5 (-1058))
- (-5 *2 (-570)) (-5 *1 (-549 *5 *3)) (-4 *3 (-1252 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058))
- (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-570) "failed") *4)) (-4 *4 (-1058))
- (-5 *2 (-570)) (-5 *1 (-549 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-115)) (-5 *4 (-777))
- (-4 *5 (-13 (-458) (-1047 (-570)))) (-4 *5 (-562))
- (-5 *1 (-41 *5 *2)) (-4 *2 (-436 *5))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *5 (-618 $)) $))
- (-15 -4412 ((-1134 *5 (-618 $)) $))
- (-15 -3735 ($ (-1134 *5 (-618 $))))))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1281)) (-5 *1 (-216 *4))
- (-4 *4
- (-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 (*2 $))
- (-15 -2919 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1281)) (-5 *1 (-216 *3))
- (-4 *3
- (-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 (*2 $))
- (-15 -2919 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-508)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458))
- (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458))
- (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-1276 *5)) (-4 *5 (-311))
- (-4 *5 (-1058)) (-5 *2 (-695 *5)) (-5 *1 (-1038 *5)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1219 *5 *6 *7 *3))
- (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
+ (-12 (-5 *3 (-570)) (-5 *4 (-424 *2)) (-4 *2 (-956 *7 *5 *6))
+ (-5 *1 (-748 *5 *6 *7 *2)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-311)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-368) (-148)))
- (-5 *2 (-650 (-2 (|:| -1907 (-777)) (|:| -2177 *4) (|:| |num| *4))))
- (-5 *1 (-405 *3 *4)) (-4 *4 (-1252 *3)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799))
- (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1078 *7 *8 *9 *3 *4)) (-4 *4 (-1080 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -2101 *1) (|:| -4436 *1) (|:| |associate| *1)))
+ (-4 *1 (-562)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5))
+ (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6))
+ (-4 *6 (-458))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-777)) (-5 *6 (-112)) (-4 *7 (-458)) (-4 *8 (-799))
- (-4 *9 (-856)) (-4 *3 (-1074 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1154 *7 *8 *9 *3 *4)) (-4 *4 (-1118 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-777)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3))))
+ (-12 (-5 *3 (-650 (-487 *5 *6))) (-5 *4 (-870 *5))
+ (-14 *5 (-650 (-1186))) (-5 *2 (-487 *5 *6)) (-5 *1 (-637 *5 *6))
+ (-4 *6 (-458)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-695 *2)) (-5 *4 (-570))
+ (-4 *2 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4)))))
+ ((*1 *1 *1) (-5 *1 (-384)))
((*1 *2 *3 *4)
(-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
(-4 *3 (-1074 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
- (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *2 (-650 (-413 (-570)))) (-5 *1 (-1029 *4))
- (-4 *4 (-1252 (-570))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230))
- (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4))
- (-4 *4 (-1226)))))
+ (-12 (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-450 *4 *3))
+ (-4 *3 (-1253 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-354))
+ (-5 *2
+ (-2 (|:| |cont| *5)
+ (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570)))))))
+ (-5 *1 (-218 *5 *3)) (-4 *3 (-1253 *5)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
+ ((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
+ ((*1 *1 *1 *1) (-5 *1 (-868)))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1044))
+ (-5 *1 (-752)))))
+(((*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1212))))
+ ((*1 *2 *1) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1182 *7)) (-5 *3 (-570)) (-4 *7 (-956 *6 *4 *5))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
+ (-5 *1 (-325 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-777)) (-4 *5 (-562))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-413 (-570))))
- (-5 *2 (-2 (|:| -2712 (-1166 *4)) (|:| -2723 (-1166 *4))))
- (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1226))
- (-4 *5 (-378 *4)) (-4 *3 (-378 *4)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384)))
- (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281))
- (-5 *1 (-794))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-570)) (-5 *6 (-1 (-1281) (-1276 *5) (-1276 *5) (-384)))
- (-5 *3 (-1276 (-384))) (-5 *5 (-384)) (-5 *2 (-1281))
- (-5 *1 (-794)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186)))
+ (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109))
- (-4 *2 (-132)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-1250 *5 *4)) (-5 *1 (-1184 *4 *5 *6))
+ (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1250 *5 *4)) (-5 *1 (-1269 *4 *5 *6))
+ (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4))
+ (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562))
+ (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $))
+ (-15 -4413 ((-1134 *3 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
+ (-5 *1 (-896 *4 *2)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868)))
((*1 *2 *1 *1) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-112))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-695 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-320 *4)) (-4 *4 (-13 (-834) (-1058))) (-5 *2 (-1168))
- (-5 *1 (-832 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-320 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-834) (-1058)))
- (-5 *2 (-1168)) (-5 *1 (-832 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-828)) (-5 *4 (-320 *5)) (-4 *5 (-13 (-834) (-1058)))
- (-5 *2 (-1281)) (-5 *1 (-832 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-828)) (-5 *4 (-320 *6)) (-5 *5 (-112))
- (-4 *6 (-13 (-834) (-1058))) (-5 *2 (-1281)) (-5 *1 (-832 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-834)) (-5 *2 (-1168))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-834)) (-5 *3 (-112)) (-5 *2 (-1168))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *2 (-1281))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *4 (-112)) (-5 *2 (-1281)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6))
- (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *1))))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *3) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -8486,109 +8713,170 @@
(|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
(|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
(-5 *1 (-334)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1047 (-570))) (-4 *3 (-562)) (-5 *1 (-32 *3 *2))
- (-4 *2 (-436 *3))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-1182 *4)) (-5 *1 (-166 *3 *4))
- (-4 *3 (-167 *4))))
- ((*1 *1 *1) (-12 (-4 *1 (-1058)) (-4 *1 (-306))))
- ((*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3))))
- ((*1 *2) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1252 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368)))
- (-4 *2 (-1252 *3)))))
-(((*1 *1 *1) (|partial| -4 *1 (-1161))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
+ (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6)))
+ (-5 *1 (-634 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112))
+ (-5 *1 (-362 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-112))
+ (-5 *1 (-534 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-510 *3 *4 *5 *6))) (-4 *3 (-368)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
+ (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
(-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
- (-5 *2 (-1044)) (-5 *1 (-751)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -2221 (-650 (-1186))) (|:| -2134 (-650 (-1186)))))
- (-5 *1 (-1228)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-868))))
- ((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-969)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1203 *4 *5))
- (-4 *4 (-1109)) (-4 *5 (-1109)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
+ (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+ (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3))))
+ (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-13 (-311) (-148)))
+ (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799))
+ (-5 *2 (-650 (-413 (-959 *4)))) (-5 *1 (-931 *4 *5 *6 *7))
+ (-4 *7 (-956 *4 *6 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |kers| (-650 (-618 *3)))
+ (|:| |vals| (-650 *3))))
+ (-5 *1 (-280 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-868))))
+ ((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-969)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -4411 *6) (|:| |sol?| (-112))) (-570)
+ *6))
+ (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
+ (-2 (|:| -3585 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440))))
((*1 *1 *1 *1) (-5 *1 (-868)))
((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1035 *3)) (-4 *3 (-1226)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1035 *3)) (-4 *3 (-1227)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-545 *4 *2 *5 *6))
+ (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777))
(-5 *2
- (-3 (-1182 *4)
- (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129)))))))
- (-5 *1 (-351 *4)) (-4 *4 (-354)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227)))
- (-5 *1 (-474)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7))
- (-4 *7 (-956 *5 *6 *4)) (-4 *5 (-916)) (-4 *6 (-799))
- (-4 *4 (-856)) (-5 *1 (-913 *5 *6 *4 *7)))))
+ (-2 (|:| |contp| (-570))
+ (|:| -2773 (-650 (-2 (|:| |irr| *3) (|:| -2227 (-570)))))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856))
+ (-4 *4 (-269 *3)) (-4 *5 (-799)))))
(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211)))))
+ (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212)))))
((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1281)) (-5 *1 (-1277))))
+ (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278))))
((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
-(((*1 *2)
- (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1252 *3)))))
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-986 *4 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-570) *2 *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1117 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+ (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-311) (-148)))
+ (-4 *2 (-956 *4 *6 *5)) (-5 *1 (-931 *4 *5 *6 *2))
+ (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)))))
+(((*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1109)) (-4 *5 (-1109))
+ (-5 *2 (-1 *5)) (-5 *1 (-689 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(((*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9))))
- (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8))
- (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856))
- (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9))))
- (-5 *1 (-1117 *6 *7 *4 *8 *9)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+ (-12 (-5 *3 (-695 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2003 (-650 *6)))
+ *7 *6))
+ (-4 *6 (-368)) (-4 *7 (-662 *6))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1277 *6) "failed"))
+ (|:| -2003 (-650 (-1277 *6)))))
+ (-5 *1 (-819 *6 *7)) (-5 *4 (-1277 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-650 (-1186)))
+ (-5 *2 (-650 (-650 (-384)))) (-5 *1 (-1032)) (-5 *5 (-384))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4)))))
+ (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-959 *4)))
+ (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1303 *4 *5 *6))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-846))))
((*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846))))
@@ -8605,95 +8893,51 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384)))
(-5 *2 (-1044)) (-5 *1 (-846)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-753)))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-972))) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562))
- (-5 *1 (-1139 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1231))))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-246 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-112)) (-5 *5 (-695 (-171 (-227))))
+ (-5 *2 (-1044)) (-5 *1 (-761)))))
+(((*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
+ (-4 *2 (-1253 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *1) (-5 *1 (-603))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226))
- (-5 *2 (-650 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-743 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-445))) (-5 *1 (-871)))))
-(((*1 *1 *2)
+ (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3))
+ (-5 *2 (-413 (-570))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
+(((*1 *2 *3)
(-12
- (-5 *2
- (-650
- (-2
- (|:| -2013
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (|:| -2223
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1166 (-227)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3758
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite|
- "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated"))))))))
- (-5 *1 (-565)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112))
- (-5 *1 (-266)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1226)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-112) *7 (-650 *7))) (-4 *1 (-1219 *4 *5 *6 *7))
- (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-570)) (-5 *1 (-206)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
+ (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4))
- (-5 *2 (-2 (|:| -1441 (-413 *5)) (|:| |poly| *3)))
- (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1252 (-413 *5))))))
-(((*1 *1) (-5 *1 (-603))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-777)) (-4 *5 (-174))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *2 *4)) (-4 *2 (-378 *3))
- (-4 *4 (-378 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1151 *2 *3)) (-14 *2 (-777)) (-4 *3 (-1058)))))
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-854)) (-4 *4 (-368)) (-5 *2 (-777))
+ (-5 *1 (-952 *4 *5)) (-4 *5 (-1253 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112))
+ (-5 *1 (-1304 *4)))))
(((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-777))))
((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-928))))
((*1 *1 *1 *1)
@@ -8702,16 +8946,16 @@
((*1 *1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-158))))
((*1 *1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-158))))
((*1 *2 *1 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211)))
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212)))
(-5 *1 (-229 *3))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1226)) (-4 *2 (-732))))
+ (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1227)) (-4 *2 (-732))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1226)) (-4 *2 (-732))))
+ (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1227)) (-4 *2 (-732))))
((*1 *1 *2 *1)
- (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1226))))
+ (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1227))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1226))))
+ (-12 (-5 *1 (-298 *2)) (-4 *2 (-1121)) (-4 *2 (-1227))))
((*1 *1 *2 *3)
(-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132))))
((*1 *1 *1 *2) (-12 (-5 *1 (-366 *2)) (-4 *2 (-1109))))
@@ -8726,8 +8970,8 @@
(-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
(-4 *6 (-240 (-2426 *3) (-777)))
(-14 *7
- (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *6))
- (-2 (|:| -2159 *5) (|:| -1907 *6))))
+ (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *6))
+ (-2 (|:| -2160 *5) (|:| -3011 *6))))
(-5 *1 (-467 *3 *4 *5 *6 *7 *2)) (-4 *5 (-856))
(-4 *2 (-956 *4 *6 (-870 *3)))))
((*1 *1 *1 *2)
@@ -8738,7 +8982,7 @@
(-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
(-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
((*1 *1 *1 *1) (-5 *1 (-542)))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
((*1 *1 *2 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067))))
@@ -8768,7 +9012,7 @@
((*1 *1 *1 *1) (-4 *1 (-726))) ((*1 *1 *1 *1) (-5 *1 (-868)))
((*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1276 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-562))
+ (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-562))
(-5 *1 (-978 *3 *4))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067))))
((*1 *1 *1 *1) (-4 *1 (-1121)))
@@ -8788,307 +9032,234 @@
((*1 *2 *2 *3)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-950 (-227))) (-5 *3 (-227)) (-5 *1 (-1222))))
+ (-12 (-5 *2 (-950 (-227))) (-5 *3 (-227)) (-5 *1 (-1223))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-732))))
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-732))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-732))))
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-732))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-570)) (-4 *1 (-1274 *3)) (-4 *3 (-1226)) (-4 *3 (-21))))
+ (-12 (-5 *2 (-570)) (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-21))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1293 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
+ (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -1874 (-788 *3)) (|:| |coef1| (-788 *3))
- (|:| |coef2| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| -1874 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 (-849 *3))) (-4 *3 (-13 (-27) (-1211) (-436 *5)))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-3 (-849 *3)
- (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-849 *3) "failed")))
- "failed"))
- (-5 *1 (-642 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-298 *3)) (-5 *5 (-1168))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-849 *3)) (-5 *1 (-642 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 (-849 (-959 *5)))) (-4 *5 (-458))
- (-5 *2
- (-3 (-849 (-413 (-959 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-849 (-413 (-959 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-849 (-413 (-959 *5))) "failed")))
- "failed"))
- (-5 *1 (-643 *5)) (-5 *3 (-413 (-959 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5)))
- (-4 *5 (-458))
- (-5 *2
- (-3 (-849 *3)
- (-2 (|:| |leftHandLimit| (-3 (-849 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-849 *3) "failed")))
- "failed"))
- (-5 *1 (-643 *5))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-298 (-413 (-959 *6)))) (-5 *5 (-1168))
- (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-849 *3))
- (-5 *1 (-643 *6)))))
+ (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
+ ((*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1182 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1182 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-650 *1))
+ (-4 *1 (-1077 *4 *3)))))
+(((*1 *1 *1 *1) (-4 *1 (-551))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
(-4 *5 (-378 *3)) (-5 *2 (-650 *3))))
((*1 *2 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-495 *3)) (-4 *3 (-1226))
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
(-5 *2 (-650 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-777)) (-5 *5 (-650 *3)) (-4 *3 (-311)) (-4 *6 (-856))
+ (-4 *7 (-799)) (-5 *2 (-112)) (-5 *1 (-631 *6 *7 *3 *8))
+ (-4 *8 (-956 *3 *7 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-5 *2 (-570))
- (-5 *1 (-449 *5 *3 *6)) (-4 *3 (-1252 *5))
- (-4 *6 (-13 (-410) (-1047 *5) (-368) (-1211) (-288)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5))
- (-4 *3 (-1252 *4))
- (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-4 *7 (-956 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-112)) (|:| |z0| (-650 *7)) (|:| |n0| (-650 *7))))
- (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-650 *9)) (-5 *3 (-1 (-112) *9))
- (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799))
- (-4 *8 (-856)) (-5 *1 (-986 *6 *7 *8 *9)))))
+ (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 (-1 *6 (-650 *6))))
+ (-4 *5 (-38 (-413 (-570)))) (-4 *6 (-1268 *5)) (-5 *2 (-650 *6))
+ (-5 *1 (-1270 *5 *6)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))))
+(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -2003 (-650 *1))))
+ (-4 *1 (-372 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-459 *3 *4 *5 *6))
+ (|:| -2003 (-650 (-459 *3 *4 *5 *6)))))
+ (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -4239 *3))))
+ (-5 *4 (-777)) (-4 *3 (-956 *5 *6 *7)) (-4 *5 (-458)) (-4 *6 (-799))
+ (-4 *7 (-856)) (-5 *1 (-455 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -1512 (-570)) (|:| -1679 (-650 *3))))
- (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *2 (-413 (-959 *4))) (-5 *1 (-931 *4 *5 *6 *3))
+ (-4 *3 (-956 *4 *6 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5))
+ (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *2 (-695 (-413 (-959 *4))))
+ (-5 *1 (-931 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5))
+ (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *2 (-650 (-413 (-959 *4))))
+ (-5 *1 (-931 *4 *5 *6 *7)))))
+(((*1 *1) (-5 *1 (-145))) ((*1 *1 *1) (-5 *1 (-868))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3))
- (-4 *3 (-13 (-436 *4) (-1011))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-1058)) (-4 *4 (-174))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))
- (-4 *3 (-174)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| -1441 (-570)) (|:| |var| (-618 *1))))
- (-4 *1 (-436 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777))
- (-5 *2 (-695 (-227))) (-5 *1 (-270)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-650 (-2 (|:| |k| *4) (|:| |c| *3))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |k| (-900 *3)) (|:| |c| *4))))
- (-5 *1 (-633 *3 *4 *5)) (-4 *3 (-856))
- (-4 *4 (-13 (-174) (-723 (-413 (-570))))) (-14 *5 (-928))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-678 *3))) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
- (-4 *3 (-167 *6)) (-4 (-959 *6) (-893 *5))
- (-4 *6 (-13 (-893 *5) (-174))) (-5 *1 (-180 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-896 *4 *1)) (-5 *3 (-899 *4)) (-4 *1 (-893 *4))
- (-4 *4 (-1109))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
- (-4 *6 (-13 (-1109) (-1047 *3))) (-4 *3 (-893 *5))
- (-5 *1 (-938 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109))
- (-4 *3 (-13 (-436 *6) (-620 *4) (-893 *5) (-1047 (-618 $))))
- (-5 *4 (-899 *5)) (-4 *6 (-13 (-562) (-893 *5)))
- (-5 *1 (-939 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 (-570) *3)) (-5 *4 (-899 (-570))) (-4 *3 (-551))
- (-5 *1 (-940 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 *6)) (-5 *3 (-618 *6)) (-4 *5 (-1109))
- (-4 *6 (-13 (-1109) (-1047 (-618 $)) (-620 *4) (-893 *5)))
- (-5 *4 (-899 *5)) (-5 *1 (-941 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-892 *5 *6 *3)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
- (-4 *6 (-893 *5)) (-4 *3 (-672 *6)) (-5 *1 (-942 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-896 *6 *3) *8 (-899 *6) (-896 *6 *3)))
- (-4 *8 (-856)) (-5 *2 (-896 *6 *3)) (-5 *4 (-899 *6))
- (-4 *6 (-1109)) (-4 *3 (-13 (-956 *9 *7 *8) (-620 *4)))
- (-4 *7 (-799)) (-4 *9 (-13 (-1058) (-893 *6)))
- (-5 *1 (-943 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109))
- (-4 *3 (-13 (-956 *8 *6 *7) (-620 *4))) (-5 *4 (-899 *5))
- (-4 *7 (-893 *5)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *8 (-13 (-1058) (-893 *5))) (-5 *1 (-943 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 *3)) (-4 *5 (-1109)) (-4 *3 (-1001 *6))
- (-4 *6 (-13 (-562) (-893 *5) (-620 *4))) (-5 *4 (-899 *5))
- (-5 *1 (-946 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-896 *5 (-1186))) (-5 *3 (-1186)) (-5 *4 (-899 *5))
- (-4 *5 (-1109)) (-5 *1 (-947 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-650 (-899 *7))) (-5 *5 (-1 *9 (-650 *9)))
- (-5 *6 (-1 (-896 *7 *9) *9 (-899 *7) (-896 *7 *9))) (-4 *7 (-1109))
- (-4 *9 (-13 (-1058) (-620 (-899 *7)) (-1047 *8)))
- (-5 *2 (-896 *7 *9)) (-5 *3 (-650 *9)) (-4 *8 (-1058))
- (-5 *1 (-948 *7 *8 *9)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+ (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
+ (-5 *3 (-570)))))
(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1226)) (-5 *1 (-184 *3 *2))
- (-4 *2 (-680 *3)))))
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148))
+ (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1182 *6)) (-5 *3 (-570)) (-4 *6 (-311)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1174 3 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))))
+(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-158))))
+ ((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5))
+ (-4 *5 (-436 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
+ (-5 *1 (-159 *4 *5)) (-4 *5 (-436 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
+ (-5 *1 (-279 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-305 *4)) (-4 *4 (-306))))
+ ((*1 *2 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-4 *5 (-1109)) (-5 *2 (-112))
+ (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
+ (-5 *1 (-437 *4 *5)) (-4 *5 (-436 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
+ (-5 *1 (-636 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1212))))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-856)) (-4 *5 (-799))
+ (-4 *6 (-562)) (-4 *7 (-956 *6 *5 *3))
+ (-5 *1 (-468 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-1047 (-413 (-570))) (-368)
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $))
+ (-15 -4413 (*7 $))))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *2 (-650 (-227))) (-5 *1 (-309)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1211))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+(((*1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
+ (|:| |wcond| (-650 (-959 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *5))))))))))
+ (-5 *4 (-1168)) (-4 *5 (-13 (-311) (-148))) (-4 *8 (-956 *5 *7 *6))
+ (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-570))
+ (-5 *1 (-931 *5 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304))))
+ (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1))
+ (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
+ (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-298 (-839 *3)))
+ (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-839 *3)) (-5 *1 (-642 *5 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-298 (-839 (-959 *5)))) (-4 *5 (-458))
+ (-5 *2 (-839 (-413 (-959 *5)))) (-5 *1 (-643 *5))
+ (-5 *3 (-413 (-959 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5)))
+ (-4 *5 (-458)) (-5 *2 (-839 *3)) (-5 *1 (-643 *5)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *7 (-907 *6))
+ (-5 *2 (-695 *7)) (-5 *1 (-698 *6 *7 *3 *4)) (-4 *3 (-378 *7))
+ (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4449)))))))
(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
- (-5 *3 (-650 (-570))))))
+ (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *2 (-650 (-171 *4))) (-5 *1 (-156 *3 *4))
+ (-4 *3 (-1253 (-171 (-570)))) (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4)))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-171 *4)))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186)))
- (-14 *4 (-650 (-1186))) (-4 *5 (-393))))
- ((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186)))
- (-14 *4 (-650 (-1186))) (-4 *5 (-393)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-806))
- (-5 *3
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (-5 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6))
+ (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-959 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6))
+ (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))))
(((*1 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-240 *3 *2)) (-4 *2 (-1226)) (-4 *2 (-1058))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868))))
- ((*1 *1 *1) (-5 *1 (-868)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-950 (-227))) (-5 *2 (-227)) (-5 *1 (-1222))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
- (-5 *2 (-849 *4)) (-5 *1 (-317 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1211) (-436 *3))) (-14 *5 (-1186))
- (-14 *6 *4)))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
- (-5 *2 (-849 *4)) (-5 *1 (-1262 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1211) (-436 *3))) (-14 *5 (-1186))
- (-14 *6 *4))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))
- (-5 *2 (-1276 *6)) (-5 *1 (-341 *3 *4 *5 *6))
- (-4 *6 (-347 *3 *4 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2))
- (-4 *2 (-436 *4))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
- (-5 *1 (-159 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *5 *6))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-455 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *1) (-5 *1 (-1189))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5))
- (-5 *2 (-419 *4 (-413 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1276 *6)) (-4 *6 (-13 (-415 *4 *5) (-1047 *4)))
- (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-4 *3 (-311))
- (-5 *1 (-419 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1252 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-717 *2 *3 *4 *5 *6)) (-4 *2 (-174))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+ (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))))
(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1234))))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8)))
- (-4 *7 (-856)) (-4 *8 (-311)) (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799))
- (-5 *2
- (-2 (|:| |upol| (-1182 *8)) (|:| |Lval| (-650 *8))
- (|:| |Lfact|
- (-650 (-2 (|:| -3738 (-1182 *8)) (|:| -1907 (-570)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-748 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282))
+ (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282))
+ (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1015)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-763)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4))
(-4 *4 (-1058))))
@@ -9098,10 +9269,10 @@
((*1 *1 *1) (-4 *1 (-235)))
((*1 *1 *1 *2)
(-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4))
- (-4 *4 (-1252 *3))))
+ (-4 *4 (-1253 *3))))
((*1 *1 *1)
(-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3))
- (-4 *3 (-1252 *2))))
+ (-4 *3 (-1253 *2))))
((*1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-650 *4)) (-5 *3 (-650 (-777))) (-4 *1 (-907 *4))
@@ -9112,133 +9283,137 @@
(-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109))))
((*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1226)) (-4 *2 (-1109))
- (-4 *2 (-856)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227))))
- (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-650 (-320 (-227))))
- (|:| -2314 (-650 (-227)))))))
- (-5 *2 (-650 (-1168))) (-5 *1 (-270)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-677))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928))
- (-14 *4 (-928)))))
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *1) (-5 *1 (-295))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
+ (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-1248 *4 *3))
+ (-4 *3 (-1253 *4)))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410))))
- ((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4439)) (-4 *1 (-410))))
- ((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928))))
- ((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-1166 (-570))))))
+ (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-193)) (-5 *3 (-570))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-174))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1102 *3)) (-5 *1 (-1066 *2 *3)) (-4 *3 (-1226))))
+ (-12 (-4 *2 (-1102 *3)) (-5 *1 (-1066 *2 *3)) (-4 *3 (-1227))))
((*1 *2 *1)
- (-12 (-5 *2 (-1103 *3)) (-5 *1 (-1101 *3)) (-4 *3 (-1226))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2) (-12 (-5 *1 (-1243 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2
- (-2 (|:| |solns| (-650 *5))
- (|:| |maps| (-650 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1137 *3 *5)) (-4 *3 (-1252 *5)))))
+ (-12 (-5 *2 (-1103 *3)) (-5 *1 (-1101 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-1174 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1278))))
- ((*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1278)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1249 *5 *4)))
- (-5 *1 (-1123 *4 *5)) (-5 *3 (-1249 *5 *4)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1058)) (-4 *4 (-1252 *3)) (-5 *1 (-165 *3 *4 *2))
- (-4 *2 (-1252 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226)))))
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))))
+(((*1 *1 *1) (-4 *1 (-875 *2))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6))
- (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
- (-4 *7 (-799))
- (-5 *2
- (-650
- (-2 (|:| -3934 (-777))
- (|:| |eqns|
- (-650
- (-2 (|:| |det| *8) (|:| |rows| (-650 (-570)))
- (|:| |cols| (-650 (-570))))))
- (|:| |fgb| (-650 *8)))))
- (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-777)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777))))
- ((*1 *1 *1) (-4 *1 (-408))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109))
+ (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
+ (-5 *2 (-1279)) (-5 *1 (-260)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 (-570)))))
+ (-5 *1 (-366 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109))
+ (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 (-777)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| -3739 *3) (|:| -3011 (-570)))))
+ (-5 *1 (-424 *3)) (-4 *3 (-562)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *2 (-650 *3)) (-5 *1 (-931 *4 *5 *6 *3))
+ (-4 *3 (-956 *4 *6 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-48)))) (-5 *1 (-48))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-618 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-650 (-618 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-618 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
+ (-4 *3 (-1253 (-171 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))))
+ ((*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1001 *3)) (-5 *1 (-419 *3 *2 *4 *5))
+ (-4 *3 (-311)) (-4 *5 (-13 (-415 *2 *4) (-1047 *2)))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1001 *3))
+ (-5 *1 (-420 *3 *2 *4 *5 *6)) (-4 *3 (-311)) (-4 *5 (-415 *2 *4))
+ (-14 *6 (-1277 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-928)) (-4 *5 (-1058))
+ (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1253 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-501)))) (-5 *1 (-501))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-618 (-501))) (-5 *1 (-501))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-650 (-618 (-501))))
+ (-5 *1 (-501))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-618 (-501))) (-5 *1 (-501))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354))
+ (-5 *1 (-534 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-730 *4 *2)) (-4 *2 (-1253 *4))
+ (-5 *1 (-781 *4 *2 *5 *3)) (-4 *3 (-1253 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174))))
+ ((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
(((*1 *2)
- (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5)))
- (-5 *2 (-650 (-650 *4))) (-5 *1 (-346 *3 *4 *5 *6))
- (-4 *3 (-347 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-4 *3 (-373)) (-5 *2 (-650 (-650 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856))
- (-5 *2 (-59 (-650 (-678 *5)))) (-5 *1 (-678 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1186))
- (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-581 *4 *2))
- (-4 *2 (-13 (-1211) (-966) (-1148) (-29 *4))))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1186))
- (-4 *5 (-13 (-562) (-1047 (-570)) (-148)))
- (-5 *2
- (-2 (|:| -1400 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5)))))
- (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-956 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1)))
- (-4 *1 (-1252 *3)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1044))
- (-5 *1 (-755)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
- (-4 *3 (-1252 *4)) (-5 *2 (-112)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(((*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-220))))
+ ((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-682))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
+ ((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-413 *6)) (|:| |h| *6)
+ (|:| |c1| (-413 *6)) (|:| |c2| (-413 *6)) (|:| -3608 *6)))
+ (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
(((*1 *2 *1)
(-12
(-5 *2
(-650
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227)))))
(-5 *1 (-565))))
((*1 *2 *1)
@@ -9249,66 +9424,73 @@
(-5 *2
(-650
(-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
(|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
(|:| |abserr| (-227)) (|:| |relerr| (-227)))))
(-5 *1 (-809)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
- (-5 *1 (-754)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -1400 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-368)) (-4 *7 (-1252 *6))
- (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1281))
- (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
- (-4 *2 (-1252 (-171 *3))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-426 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1211) (-436 *3)))
- (-14 *4 (-1186)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-4 *2 (-13 (-27) (-1211) (-436 *3) (-10 -8 (-15 -3735 ($ *4)))))
- (-4 *4 (-854))
- (-4 *5
- (-13 (-1254 *2 *4) (-368) (-1211)
- (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $)))))
- (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-761)))))
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
+ (-14 *4 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-570))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
+ (-5 *2 (-1044)) (-5 *1 (-762)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227))) (-5 *1 (-709 *3))
+ (-4 *3 (-620 (-542)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227) (-227)))
+ (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-872 *4 *5 *6 *7))
+ (-4 *4 (-1058)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 *3))
+ (-14 *7 *3)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-4 *5 (-856)) (-4 *6 (-799))
+ (-14 *8 (-650 *5)) (-5 *2 (-1282))
+ (-5 *1 (-1289 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-956 *4 *6 *5))
+ (-14 *9 (-650 *3)) (-14 *10 *3))))
(((*1 *1 *2 *2)
(-12
(-5 *2
(-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-809)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-777))) (-5 *3 (-173)) (-5 *1 (-1174 *4 *5))
+ (-14 *4 (-928)) (-4 *5 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-695 (-570))))
+ (-5 *1 (-1119)))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1) (-4 *1 (-499)))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
@@ -9316,75 +9498,61 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1269 *3 *2))
- (-4 *2 (-1267 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-166 *3 *4))
- (-4 *3 (-167 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1226)) (-5 *2 (-777))
- (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-435 *3 *4))
- (-4 *3 (-436 *4))))
- ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-550 *3)) (-4 *3 (-551))))
- ((*1 *2) (-12 (-4 *1 (-769)) (-5 *2 (-777))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-802 *3 *4))
- (-4 *3 (-803 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-1000 *3 *4))
- (-4 *3 (-1001 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-1005 *3 *4))
- (-4 *3 (-1006 *4))))
- ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1020 *3)) (-4 *3 (-1021))))
- ((*1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-777))))
- ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1068 *3)) (-4 *3 (-1069)))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-652 *3)) (-4 *3 (-1067)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1060 *3)) (-4 *3 (-1067)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
+ (-4 *3 (-1253 *4)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-650 (-112))) (-5 *5 (-695 (-227)))
+ (-5 *6 (-695 (-570))) (-5 *7 (-227)) (-5 *3 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-760)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148)))
+ (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-298 (-959 (-570))))
- (-5 *2
- (-2 (|:| |varOrder| (-650 (-1186)))
- (|:| |inhom| (-3 (-650 (-1276 (-777))) "failed"))
- (|:| |hom| (-650 (-1276 (-777))))))
- (-5 *1 (-238)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1227 *3)) (-4 *3 (-856))
- (-4 *3 (-1109)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-780)) (-5 *1 (-115))))
- ((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-780)) (-5 *1 (-115)))))
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
+ (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
(-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-856)) (-5 *3 (-650 *6)) (-5 *5 (-650 *3))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
(-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-650 *5)) (|:| |f3| *5)
- (|:| |f4| (-650 *5))))
- (-5 *1 (-1197 *6)) (-5 *4 (-650 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-810 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1211) (-966))))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
- (-4 *2 (-1252 *4)))))
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
+ (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227)))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))))
+ (-5 *10 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -9395,32 +9563,23 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1243 *3)) (-4 *3 (-1226)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 *5)) (-5 *4 (-570)) (-4 *5 (-854)) (-4 *5 (-368))
- (-5 *2 (-777)) (-5 *1 (-952 *5 *6)) (-4 *6 (-1252 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354))
- (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -3859 *3))))
- (-5 *1 (-218 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1036 *5 *6 *7 *3))) (-5 *1 (-1036 *5 *6 *7 *3))
- (-4 *3 (-1074 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-650 *6)) (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-1080 *3 *4 *5 *2)) (-4 *3 (-458)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1155 *5 *6 *7 *3))) (-5 *1 (-1155 *5 *6 *7 *3))
- (-4 *3 (-1074 *5 *6 *7)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-650 (-650 (-950 (-227)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-650 (-650 (-950 (-227))))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| |ans| (-413 *5)) (|:| |nosol| (-112))))
+ (-5 *1 (-1024 *4 *5)) (-5 *3 (-413 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))))
+(((*1 *2 *1) (-12 (-4 *1 (-330 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
+ ((*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *3 (-856)) (-5 *2 (-777)))))
(((*1 *1 *1) (-5 *1 (-1185)))
((*1 *1 *2)
(-12
@@ -9428,127 +9587,47 @@
(-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-650 (-1182 *11))) (-5 *3 (-1182 *11))
- (-5 *4 (-650 *10)) (-5 *5 (-650 *8)) (-5 *6 (-650 (-777)))
- (-5 *7 (-1276 (-650 (-1182 *8)))) (-4 *10 (-856))
- (-4 *8 (-311)) (-4 *11 (-956 *8 *9 *10)) (-4 *9 (-799))
- (-5 *1 (-713 *9 *10 *8 *11)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6))
- (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
- (-4 *7 (-799))
- (-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
- (|:| |wcond| (-650 (-959 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *5))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *5))))))))))
- (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-650 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *8)) (-5 *4 (-650 (-1186))) (-4 *8 (-956 *5 *7 *6))
- (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
- (-4 *7 (-799))
- (-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
- (|:| |wcond| (-650 (-959 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *5))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *5))))))))))
- (-5 *1 (-931 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5))
- (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799))
- (-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7))
- (|:| |wcond| (-650 (-959 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *4))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *4))))))))))
- (-5 *1 (-931 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *9)) (-5 *5 (-928)) (-4 *9 (-956 *6 *8 *7))
- (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186))))
- (-4 *8 (-799))
- (-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9))
- (|:| |wcond| (-650 (-959 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *6))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *6))))))))))
- (-5 *1 (-931 *6 *7 *8 *9)) (-5 *4 (-650 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-928))
- (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
- (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799))
- (-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9))
- (|:| |wcond| (-650 (-959 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *6))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *6))))))))))
- (-5 *1 (-931 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *8)) (-5 *4 (-928)) (-4 *8 (-956 *5 *7 *6))
- (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
- (-4 *7 (-799))
+(((*1 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
+ (-14 *3 (-928)) (-4 *4 (-1058))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-331 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227))
+ (-14 *4 (-570)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6) (-10 -8 (-15 -3735 ($ *7)))))
+ (-4 *7 (-854))
+ (-4 *8
+ (-13 (-1255 *3 *7) (-368) (-1212)
+ (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $)))))
(-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
- (|:| |wcond| (-650 (-959 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *5))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *5))))))))))
- (-5 *1 (-931 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 *9)) (-5 *5 (-1168))
- (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
- (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570))
- (-5 *1 (-931 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-1168))
- (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
- (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570))
- (-5 *1 (-931 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *8)) (-5 *4 (-1168)) (-4 *8 (-956 *5 *7 *6))
- (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
- (-4 *7 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 *10)) (-5 *5 (-928))
- (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148)))
- (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570))
- (-5 *1 (-931 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 (-1186))) (-5 *5 (-928))
- (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148)))
- (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570))
- (-5 *1 (-931 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *9)) (-5 *4 (-928)) (-5 *5 (-1168))
- (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
- (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570))
- (-5 *1 (-931 *6 *7 *8 *9)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1) (-5 *1 (-443))))
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))))
+ (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8))
+ (-14 *10 (-1186)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -9559,57 +9638,71 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282))
+ (-5 *1 (-1081 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-1282))
+ (-5 *1 (-1117 *3 *4 *5 *6 *7)) (-4 *7 (-1080 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799))
+ (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -4302 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9))))
+ (-5 *1 (-997 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9))
+ (-4 *4 (-1080 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799))
+ (-4 *8 (-856)) (-4 *9 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -4302 (-650 *9)) (|:| -3593 *4) (|:| |ineq| (-650 *9))))
+ (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9))
+ (-4 *4 (-1080 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044))
+ (-5 *1 (-760)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-650 *7)) (-5 *5 (-650 (-650 *8))) (-4 *7 (-856))
+ (-4 *8 (-311)) (-4 *6 (-799)) (-4 *9 (-956 *8 *6 *7))
+ (-5 *2
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-650 (-2 (|:| -3739 (-1182 *9)) (|:| -3011 (-570)))))))
+ (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-897 *4 *3))
+ (-4 *3 (-1227))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1247 *3 *2))
+ (-4 *2 (-1253 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-194))))
+ ((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-304))))
+ ((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-309)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |pde| (-650 (-320 (-227))))
- (|:| |constraints|
- (-650
- (-2 (|:| |start| (-227)) (|:| |finish| (-227))
- (|:| |grid| (-777)) (|:| |boundaryType| (-570))
- (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227))))))
- (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168))
- (|:| |tol| (-227))))
- (-5 *2 (-112)) (-5 *1 (-212)))))
-(((*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))
- (-5 *2 (-650 (-1186))) (-5 *1 (-1085 *3 *4 *5))
- (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4))
- (-5 *1 (-1037 *5)) (-4 *5 (-1058))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1037 *4))
- (-4 *4 (-1058))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-912 (-570)))) (-5 *4 (-570))
- (-5 *2 (-650 (-695 *4))) (-5 *1 (-1037 *5)) (-4 *5 (-1058))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570))))
- (-5 *1 (-1037 *4)) (-4 *4 (-1058)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-311) (-148)))
+ (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7))
+ (|:| |wcond| (-650 (-959 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *4))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *4))))))))))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -9620,28 +9713,25 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-1074 *3 *4 *2)) (-4 *2 (-856))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
- (-4 *5 (-1252 *4)) (-5 *2 (-695 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3))
- (-5 *2 (-695 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
+(((*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-334))))
+ ((*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-334))))
+ ((*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-334))))
+ ((*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-334))))
+ ((*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-334))))
+ ((*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-334))))
+ ((*1 *1) (-5 *1 (-334))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-1290 *4 *5 *6 *7)))
+ (-5 *1 (-1290 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 *9)) (-5 *4 (-1 (-112) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562))
+ (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-650 (-1290 *6 *7 *8 *9)))
+ (-5 *1 (-1290 *6 *7 *8 *9)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))))
(((*1 *2 *3 *2 *3)
(-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189))))
((*1 *2 *3 *2) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189))))
@@ -9654,163 +9744,169 @@
(-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1190))))
((*1 *2 *3 *2 *1)
(-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *1 (-1190)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227)))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
+(((*1 *2 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4449)) (-4 *1 (-1019 *3))
- (-4 *3 (-1226)))))
-(((*1 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-378 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
-(((*1 *1) (-5 *1 (-227))) ((*1 *1) (-5 *1 (-384))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4))
+ (-4 *4 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368))
+ (-5 *2 (-1182 (-959 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))))
+(((*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058))
+ (-5 *2 (-777)))))
(((*1 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-934))
- (-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
- (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
- (-5 *1 (-154))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570)))
- (-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
- (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
- (-5 *1 (-154)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1189))))
- ((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-1189)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109))
- (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
- (-5 *1 (-54 *4 *5 *2))
- (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
+ (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *1)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-695 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 *4)) (-4 *4 (-1058)) (-4 *1 (-1132 *3 *4 *5 *6))
+ (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *3 *4)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -1441 *3) (|:| |gap| (-777)) (|:| -3331 (-788 *3))
- (|:| -2785 (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
- (-5 *2
- (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -3331 *1)
- (|:| -2785 *1)))
- (-4 *1 (-1074 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2
- (-2 (|:| -1441 *1) (|:| |gap| (-777)) (|:| -3331 *1)
- (|:| -2785 *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-753)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *2 (-1044)) (-5 *1 (-757)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-366 (-115))) (-4 *2 (-1058)) (-5 *1 (-720 *2 *4))
+ (-4 *4 (-654 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-366 (-115))) (-5 *1 (-842 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-570)) (-4 *2 (-436 *3)) (-5 *1 (-32 *3 *2))
- (-4 *3 (-1047 *4)) (-4 *3 (-562)))))
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109))
+ (-4 *3 (-1109)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867))))
+ ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
+ (-5 *1 (-580 *5 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-487 *4 *5))) (-14 *4 (-650 (-1186)))
+ (-4 *5 (-458)) (-5 *2 (-650 (-249 *4 *5))) (-5 *1 (-637 *4 *5)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-413 (-959 *6)) (-1175 (-1186) (-959 *6))))
+ (-5 *5 (-777)) (-4 *6 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *6)))))
+ (-5 *1 (-296 *6)) (-5 *4 (-695 (-413 (-959 *6))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-2 (|:| |eigval| (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5))))
+ (|:| |eigmult| (-777)) (|:| |eigvec| (-650 *4))))
+ (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5)))))
+ (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))))
(((*1 *1 *1) (-4 *1 (-95))) ((*1 *1 *1 *1) (-5 *1 (-227)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -9821,38 +9917,39 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))
- (-5 *2 (-1276 *6)) (-5 *1 (-341 *3 *4 *5 *6))
- (-4 *6 (-347 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (|has| *2 (-6 (-4451 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2))
+ (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1253 *2))
+ (-4 *4 (-693 *2 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-562)) (-5 *2 (-650 (-650 (-959 *5)))) (-5 *1 (-1195 *5)))))
+ (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-1277 *3))
+ (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *5 (-562))
+ (-12 (-5 *3 (-424 *5)) (-4 *5 (-562))
(-5 *2
- (-2 (|:| |minor| (-650 (-928))) (|:| -4300 *3)
- (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-331 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-522 *3 *4))
- (-14 *4 (-570)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+ (-2 (|:| -3011 (-777)) (|:| -1442 *5) (|:| |radicand| (-650 *5))))
+ (-5 *1 (-324 *5)) (-5 *4 (-777))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-764)))))
(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1219 *4 *5 *3 *6)) (-4 *4 (-562)) (-4 *5 (-799))
- (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1252 *3)) (-4 *3 (-1058)))))
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
+ (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570))))
+ (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| -3585 (-413 *5)) (|:| |coeff| (-413 *5))))
+ (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
@@ -9864,11 +9961,11 @@
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -9878,49 +9975,48 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
- (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799))
- (-4 *8 (-856)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *9))))
- (-5 *3 (-650 *9)) (-4 *1 (-1219 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *8))))
- (-5 *3 (-650 *8)) (-4 *1 (-1219 *5 *6 *7 *8)))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))
+ (-5 *2 (-650 (-2 (|:| -4104 *1) (|:| -1726 (-650 *7)))))
+ (-5 *3 (-650 *7)) (-4 *1 (-1220 *4 *5 *6 *7)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-1102 *3)) (-4 *3 (-1226)))))
+ (-12 (-5 *2 (-570)) (-4 *1 (-1102 *3)) (-4 *3 (-1227)))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-155))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1075)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-570))))
- (-4 *4 (-13 (-1252 *3) (-562) (-10 -8 (-15 -1874 ($ $ $)))))
- (-4 *3 (-562)) (-5 *1 (-1255 *3 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1226))
- (-4 *5 (-378 *4)) (-4 *2 (-378 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *2 *7)) (-4 *6 (-1058))
- (-4 *7 (-240 *4 *6)) (-4 *2 (-240 *5 *6)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
- (-5 *2 (-1044)) (-5 *1 (-762)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-97)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8))
+ (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799))
+ (-4 *7 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *5 *6 *7 *8)))))
+(((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
+(((*1 *2)
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5)))
+ (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4))
+ (-4 *4 (-1109)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
+ (-5 *2 (-1044)) (-5 *1 (-751)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-1182 *7))) (-5 *3 (-1182 *7))
+ (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-916)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-5 *1 (-913 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5))
+ (-4 *5 (-1253 *4)) (-4 *4 (-916)) (-5 *1 (-914 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
(((*1 *1 *2 *2)
(-12
(-5 *2
@@ -9932,11 +10028,11 @@
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -9946,56 +10042,62 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *3 (-650 (-266)))
- (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1253 *4)) (-4 *4 (-1231))
+ (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1253 (-413 *3))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1011))
- (-4 *2 (-1058)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+ (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-799)) (-4 *5 (-1058)) (-4 *6 (-956 *5 *4 *2))
+ (-4 *2 (-856)) (-5 *1 (-957 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *6)) (-15 -4399 (*6 $))
+ (-15 -4413 (*6 $)))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
+ (-5 *2 (-1186)) (-5 *1 (-1052 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -2196 *4) (|:| -2131 (-570)))))
+ (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-1186)) (-5 *1 (-870 *3)) (-14 *3 (-650 *2))))
((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-998))))
((*1 *2 *1)
- (-12 (-4 *4 (-1226)) (-5 *2 (-1186)) (-5 *1 (-1066 *3 *4))
+ (-12 (-4 *4 (-1227)) (-5 *2 (-1186)) (-5 *1 (-1066 *3 *4))
(-4 *3 (-1102 *4))))
- ((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1101 *3)) (-4 *3 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1101 *3)) (-4 *3 (-1227))))
((*1 *2 *1)
- (-12 (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
(-5 *2 (-1186))))
- ((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1272 *3)) (-14 *3 *2))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1186)) (-5 *1 (-592 *2)) (-4 *2 (-1047 *3))
- (-4 *2 (-368))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-636 *4 *2))
- (-4 *2 (-13 (-436 *4) (-1011) (-1211)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1211)))
- (-4 *4 (-562)) (-5 *1 (-636 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-966)) (-5 *2 (-1186))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-966)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1276 (-3 (-474) "undefined"))) (-5 *1 (-1277)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4))
- (-4 *2 (-240 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058))
- (-4 *3 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
- (-5 *2 (-112)) (-5 *1 (-644 *4 *5)))))
+ ((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-1182 (-413 *5))) (-5 *1 (-621 *4 *5))
+ (-5 *3 (-413 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-148) (-27) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-1182 (-413 *6))) (-5 *1 (-621 *5 *6)) (-5 *3 (-413 *6)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-115)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *2))
+ (-4 *2 (-654 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-5 *1 (-842 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148))
+ (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
@@ -10006,15 +10108,15 @@
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *1) (-4 *1 (-288)))
((*1 *2 *3)
(-12 (-5 *3 (-424 *4)) (-4 *4 (-562))
- (-5 *2 (-650 (-2 (|:| -1441 (-777)) (|:| |logand| *4))))
+ (-5 *2 (-650 (-2 (|:| -1442 (-777)) (|:| |logand| *4))))
(-5 *1 (-324 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
@@ -10030,82 +10132,59 @@
(-5 *1 (-1172 *3))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-777)) (-4 *4 (-13 (-1058) (-723 (-413 (-570)))))
- (-4 *5 (-856)) (-5 *1 (-1292 *4 *5 *2)) (-4 *2 (-1297 *5 *4))))
+ (-4 *5 (-856)) (-5 *1 (-1293 *4 *5 *2)) (-4 *2 (-1298 *5 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-1296 *3 *4))
+ (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4))
(-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
- ((*1 *1 *1) (-4 *1 (-1214))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
- (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-650 *3))
- (-5 *1 (-597 *5 *6 *7 *8 *3)) (-4 *3 (-1118 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5))))))
- (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-148)))
- (-5 *2
- (-650 (-2 (|:| -3130 (-1182 *4)) (|:| -1807 (-650 (-959 *4))))))
- (-5 *1 (-1087 *4 *5)) (-5 *3 (-650 (-959 *4)))
- (-14 *5 (-650 (-1186)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148)))
+ ((*1 *1 *1) (-4 *1 (-1215))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458))
+ (-5 *1 (-925 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-368))
+ (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-456 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-368))
(-5 *2
- (-650 (-2 (|:| -3130 (-1182 *5)) (|:| -1807 (-650 (-959 *5))))))
- (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-413 (-570))) (-4 *1 (-560 *3))
- (-4 *3 (-13 (-410) (-1211)))))
- ((*1 *1 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147))))
+ (-2 (|:| R (-695 *6)) (|:| A (-695 *6)) (|:| |Ainv| (-695 *6))))
+ (-5 *1 (-987 *6)) (-5 *3 (-695 *6)))))
+(((*1 *1) (-5 *1 (-145)))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1281)) (-5 *1 (-1147)))))
+ (-12 (-5 *3 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-266)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*1 *2 *3 *2)
(-12 (-5 *3 (-928)) (-5 *1 (-1039 *2))
- (-4 *2 (-13 (-1109) (-10 -8 (-15 -2954 ($ $ $))))))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1186))
- (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-2 (|:| -1400 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
-(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-650 (-618 *3)))
- (|:| |vals| (-650 *3))))
- (-5 *1 (-280 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
+ (-4 *2 (-13 (-1109) (-10 -8 (-15 -2953 ($ $ $))))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
@@ -10116,140 +10195,226 @@
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
- ((*1 *1 *1) (-4 *1 (-1214))))
+ ((*1 *1 *1) (-4 *1 (-1215))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-4 *6 (-458))
+ (-5 *2 (-650 (-650 *7))) (-5 *1 (-544 *6 *7 *5)) (-4 *7 (-368))
+ (-4 *5 (-13 (-368) (-854))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
+ (-4 *4 (-378 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
+ (-5 *3 (-570)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-570)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-311))
+ (-4 *9 (-956 *8 *6 *7))
+ (-5 *2 (-2 (|:| -4239 (-1182 *9)) (|:| |polval| (-1182 *8))))
+ (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-695 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2331 (-650 *6)))
- *7 *6))
- (-4 *6 (-368)) (-4 *7 (-662 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1276 *6) "failed"))
- (|:| -2331 (-650 (-1276 *6)))))
- (-5 *1 (-819 *6 *7)) (-5 *4 (-1276 *6)))))
-(((*1 *1) (-5 *1 (-603))))
-(((*1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1174 3 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3))))
- ((*1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1))
- (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
+ (-4 *2 (-13 (-436 *3) (-1011)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
+ (-5 *1 (-1171 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
+ (-5 *1 (-1172 *3))))
+ ((*1 *1 *1) (-4 *1 (-1215))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6))
- (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-959 *5)) (-4 *5 (-458)) (-5 *2 (-650 *6))
- (-5 *1 (-544 *5 *6 *4)) (-4 *6 (-368)) (-4 *4 (-13 (-368) (-854))))))
-(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1208)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
+(((*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
+ (-14 *3 (-650 (-1186))) (-4 *4 (-393))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
- ((*1 *1 *1) (-4 *1 (-1214))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-48)))) (-5 *1 (-48))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-618 (-48))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-650 (-618 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-618 (-48))) (-5 *1 (-48))))
- ((*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
+ ((*1 *1 *1) (-4 *1 (-1215))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3))
+ (-4 *3 (-13 (-436 *6) (-27) (-1212)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3)))
+ (-4 *3 (-13 (-436 *6) (-27) (-1212)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *2)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-856))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-286 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -2013
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (|:| -2224
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1166 (-227)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1990
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite|
+ "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))))
+ (-5 *1 (-565))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-4 *1 (-701 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -2013
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (|:| -2224
+ (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
+ (|:| |expense| (-384)) (|:| |accuracy| (-384))
+ (|:| |intermediateResults| (-384))))))
+ (-5 *1 (-809))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
+ (-249 *4 (-413 (-570)))))
+ (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112))
+ (-5 *1 (-511 *4 *5)))))
+(((*1 *1) (-5 *1 (-295))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109))
+ (-4 *2 (-856)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3))
+ (-4 *3 (-1253 *4))))
((*1 *2 *3)
- (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
- (-4 *3 (-1252 (-171 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))))
- ((*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1252 *2)) (-4 *2 (-174))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1252 *2)) (-4 *2 (-1001 *3)) (-5 *1 (-419 *3 *2 *4 *5))
- (-4 *3 (-311)) (-4 *5 (-13 (-415 *2 *4) (-1047 *2)))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1252 *2)) (-4 *2 (-1001 *3))
- (-5 *1 (-420 *3 *2 *4 *5 *6)) (-4 *3 (-311)) (-4 *5 (-415 *2 *4))
- (-14 *6 (-1276 *5))))
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-928)) (-4 *5 (-1058))
- (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1211) (-288)))
- (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1252 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-618 (-501)))) (-5 *1 (-501))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-618 (-501))) (-5 *1 (-501))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-650 (-618 (-501))))
- (-5 *1 (-501))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-618 (-501))) (-5 *1 (-501))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-928)) (-4 *4 (-354))
- (-5 *1 (-534 *4))))
+ (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
+ (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
+ (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-650 (-777))) (-5 *5 (-777)) (-5 *2 (-424 *3))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3))
+ (-4 *3 (-1253 (-570)))))
((*1 *2 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-730 *4 *2)) (-4 *2 (-1252 *4))
- (-5 *1 (-781 *4 *2 *5 *3)) (-4 *3 (-1252 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174))))
- ((*1 *1 *1) (-4 *1 (-1069))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-331 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3))
+ (-4 *3 (-1253 (-413 (-570))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1) (-5 *1 (-512))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1226))
- (-14 *4 (-570)))))
-(((*1 *1) (-5 *1 (-443))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-650 *6))) (-4 *6 (-956 *3 *5 *4))
+ (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186))))
+ (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *6)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
+ ((*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -10259,35 +10424,19 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
- ((*1 *1 *1) (-4 *1 (-1214))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+ ((*1 *1 *1) (-4 *1 (-1215))))
+(((*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384)))
+ (-5 *2 (-1044)) (-5 *1 (-846)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *2)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-424 *5)) (-4 *5 (-562))
- (-5 *2
- (-2 (|:| -1907 (-777)) (|:| -1441 *5) (|:| |radicand| (-650 *5))))
- (-5 *1 (-324 *5)) (-5 *4 (-777))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
- (-5 *2 (-1044)) (-5 *1 (-751)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
-(((*1 *1) (-5 *1 (-512))))
+ (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570)))
+ (-5 *2 (-1277 (-570))) (-5 *1 (-1304 *4)))))
(((*1 *2 *3 *4 *2 *5 *6)
(-12
(-5 *5
@@ -10308,15 +10457,22 @@
(-5 *3 (-650 *10)) (-5 *4 (-650 *11)) (-4 *10 (-1074 *7 *8 *9))
(-4 *11 (-1118 *7 *8 *9 *10)) (-4 *7 (-458)) (-4 *8 (-799))
(-4 *9 (-856)) (-5 *1 (-1154 *7 *8 *9 *10 *11)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-753)))))
+(((*1 *1 *1) (-4 *1 (-551))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
@@ -10327,281 +10483,452 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
- ((*1 *1 *1) (-4 *1 (-1214))))
+ ((*1 *1 *1) (-4 *1 (-1215))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-562) (-148)))
+ (-5 *2 (-2 (|:| -4398 *3) (|:| -4411 *3))) (-5 *1 (-1247 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *1 (-1170 *3)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5))
+ (-4 *5 (-167 *4)) (-4 *4 (-551)) (-5 *1 (-150 *4 *5))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 *3)) (-4 *3 (-1253 *5))
+ (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *1 (-363 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-1182 (-570)))) (-5 *3 (-1182 (-570)))
+ (-5 *1 (-578))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-650 (-1182 *1))) (-5 *3 (-1182 *1))
+ (-4 *1 (-916)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1209 *4))
+ (-4 *4 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))))
(((*1 *2 *1 *1 *3 *4)
(-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
(-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34)))
(-5 *2 (-112)) (-5 *1 (-1149 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-650 *5))) (-4 *5 (-1267 *4))
- (-4 *4 (-38 (-413 (-570))))
- (-5 *2 (-1 (-1166 *4) (-650 (-1166 *4)))) (-5 *1 (-1269 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-659 *4)) (-4 *4 (-347 *5 *6 *7))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6)))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-812 *5 *6 *7 *4)))))
-(((*1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1200 *2)) (-4 *2 (-368)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1281)) (-5 *1 (-474)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
- ((*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
- (-14 *3 (-650 (-1186))) (-4 *4 (-393))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
- (-5 *1 (-1171 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
- (-5 *1 (-1172 *3))))
- ((*1 *1 *1) (-4 *1 (-1214))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-592 *3) *3 (-1186)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1186)))
- (-4 *3 (-288)) (-4 *3 (-635)) (-4 *3 (-1047 *4)) (-4 *3 (-436 *7))
- (-5 *4 (-1186)) (-4 *7 (-620 (-899 (-570)))) (-4 *7 (-458))
- (-4 *7 (-893 (-570))) (-4 *7 (-1109)) (-5 *2 (-592 *3))
- (-5 *1 (-579 *7 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-650
- (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *3))
- (|:| |logand| (-1182 *3)))))
- (-5 *1 (-592 *3)) (-4 *3 (-368)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))))
-(((*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109))))
- ((*1 *1 *1) (-5 *1 (-638))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |mval| (-695 *3)) (|:| |invmval| (-695 *3))
- (|:| |genIdeal| (-510 *3 *4 *5 *6))))
- (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+ (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562))
+ (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
(((*1 *1 *1) (-4 *1 (-635)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011) (-1211))))))
-(((*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-5 *2 (-1168)))))
+ (-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -3739 (-1182 *6)) (|:| -3011 (-570)))))
+ (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-1252 *4)) (-5 *2 (-1 *6 (-650 *6)))
- (-5 *1 (-1270 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-1267 *4)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))))
-(((*1 *1) (-5 *1 (-1281))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-761))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-394))
- (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-1277 (-1277 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4))
+ (-5 *1 (-1038 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-249 *4 *5))
+ (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))))
+(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562)))))
+(((*1 *1) (-5 *1 (-1282))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-662 *3)) (-4 *3 (-1058)) (-4 *3 (-368))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-777)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368))
+ (-5 *1 (-665 *5 *2)) (-4 *2 (-662 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *3 (-1253 *4)) (-5 *1 (-815 *4 *3 *2 *5)) (-4 *2 (-662 *3))
+ (-4 *5 (-662 (-413 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-413 *5))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4))
+ (-5 *1 (-815 *4 *5 *2 *6)) (-4 *2 (-662 *5)) (-4 *6 (-662 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
+ (-5 *1 (-754)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1058)) (-5 *2 (-1182 *6))
- (-5 *1 (-325 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-4 *5 (-368))
- (-4 *5 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058))
- (-5 *2 (-112)) (-5 *1 (-1038 *4)))))
+ (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))))
+(((*1 *1) (-5 *1 (-1072))))
+(((*1 *2 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))))
+(((*1 *1) (-5 *1 (-142))))
+(((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *5 (-1230)) (-4 *6 (-1252 *5))
- (-4 *7 (-1252 (-413 *6))) (-5 *2 (-650 (-959 *5)))
- (-5 *1 (-346 *4 *5 *6 *7)) (-4 *4 (-347 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1230))
- (-4 *5 (-1252 *4)) (-4 *6 (-1252 (-413 *5))) (-4 *4 (-368))
- (-5 *2 (-650 (-959 *4))))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-132))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-366 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-391 *3)) (-4 *3 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-655 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-714 *3)) (-5 *1 (-833 *2 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1939 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
+ (-12 (-5 *3 (-1 *5 (-650 *5))) (-4 *5 (-1268 *4))
+ (-4 *4 (-38 (-413 (-570))))
+ (-5 *2 (-1 (-1166 *4) (-650 (-1166 *4)))) (-5 *1 (-1270 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1252 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3))
- (-4 *3 (-1252 (-413 *4))))))
-(((*1 *1 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-633 *2 *3 *4)) (-4 *2 (-856))
- (-4 *3 (-13 (-174) (-723 (-413 (-570))))) (-14 *4 (-928))))
- ((*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856))))
- ((*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
+ (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410))
+ (-5 *2 (-928)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1268 *4))
+ (-4 *4 (-38 (-413 (-570))))
+ (-5 *2 (-1 (-1166 *4) (-1166 *4) (-1166 *4))) (-5 *1 (-1270 *4 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570))))
+ ((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1) (-4 *1 (-875 *2)))
((*1 *1 *1)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281))
- (-5 *1 (-1081 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281))
- (-5 *1 (-1117 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
- (-4 *3 (-956 *7 *5 *6))
- (-5 *2
- (-2 (|:| -1907 (-777)) (|:| -1441 *3) (|:| |radicand| (-650 *3))))
- (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777))
- (-4 *8
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *3)) (-15 -4398 (*3 $)) (-15 -4412 (*3 $))))))))
+ (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798))
+ (-4 *4 (-856)))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-4 *1 (-410))))
((*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-410))))
((*1 *2 *1)
(-12 (-4 *1 (-1112 *3 *4 *5 *2 *6)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4))
+ (-5 *1 (-1187 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-928)) (-5 *2 (-1277 *3)) (-5 *1 (-1187 *3))
+ (-4 *3 (-1058)))))
(((*1 *1 *1) (-4 *1 (-635)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011) (-1211))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2339 *1)))
- (-4 *1 (-858 *3)))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570)))
- (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-763)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+ (-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-237 *3))))
+ ((*1 *1) (-12 (-4 *1 (-237 *2)) (-4 *2 (-1109)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
+ (-4 *4 (-13 (-1109) (-34))))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1226)) (-5 *1 (-879 *3 *2)) (-4 *3 (-1226))))
- ((*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1044))
- (-5 *1 (-752)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-327 *2 *4)) (-4 *4 (-132))
- (-4 *2 (-1109))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *2)) (-4 *2 (-1109))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *2 (-1109)) (-5 *1 (-655 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
- (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *2 (-777))
- (-5 *1 (-1174 *4 *5)) (-14 *4 (-928))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5))
- (-14 *4 (-928)) (-4 *5 (-1058))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058))
- (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1276 *6)) (-5 *4 (-1276 (-570))) (-5 *5 (-570))
- (-4 *6 (-1109)) (-5 *2 (-1 *6)) (-5 *1 (-1026 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3738 *4) (|:| -1601 (-570)))))
- (-4 *4 (-1252 (-570))) (-5 *2 (-743 (-777))) (-5 *1 (-448 *4))))
+ (-12 (-4 *2 (-1227)) (-5 *1 (-879 *3 *2)) (-4 *3 (-1227))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-174)) (-4 *2 (-23)) (-5 *1 (-293 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1253 *3)) (-14 *5 (-1 *4 *4 *2))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-717 *3 *2 *4 *5 *6)) (-4 *3 (-174))
+ (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
+ ((*1 *2)
+ (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-721 *3 *2 *4 *5 *6)) (-4 *3 (-174))
+ (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
+ ((*1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *7 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
+ (-4 *8 (-956 *7 *5 *6))
+ (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *3) (|:| |radicand| *3)))
+ (-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-659 *4)) (-4 *4 (-347 *5 *6 *7))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-812 *5 *6 *7 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| -1442 *4) (|:| -3389 *3) (|:| -3831 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1074 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -1442 *3) (|:| -3389 *1) (|:| -3831 *1)))
+ (-4 *1 (-1253 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147))))
((*1 *2 *3)
- (-12 (-5 *3 (-424 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-1058))
- (-5 *2 (-743 (-777))) (-5 *1 (-450 *4 *5)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1168)) (-5 *5 (-695 (-227))) (-5 *6 (-227))
- (-5 *7 (-695 (-570))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-695 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+ (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458))
- (-5 *2 (-650 (-650 (-249 *5 *6)))) (-5 *1 (-477 *5 *6 *7))
- (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4))
- (-4 *4 (-174)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1) (-5 *1 (-868))))
+ (-12 (-5 *3 (-650 (-413 (-959 (-570)))))
+ (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4))
+ (-4 *4 (-13 (-854) (-368)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-298 (-413 (-959 (-570))))))
+ (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4))
+ (-4 *4 (-13 (-854) (-368)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 (-298 (-959 *4))))
+ (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-298 (-413 (-959 (-570)))))
+ (-5 *2 (-650 (-298 (-959 *4)))) (-5 *1 (-385 *4))
+ (-4 *4 (-13 (-854) (-368)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1186))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-4 *4 (-13 (-29 *6) (-1212) (-966)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -2003 (-650 *4))))
+ (-5 *1 (-658 *6 *4 *3)) (-4 *3 (-662 *4))))
+ ((*1 *2 *3 *2 *4 *2 *5)
+ (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *2))
+ (-4 *2 (-13 (-29 *6) (-1212) (-966)))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *1 (-658 *6 *2 *3)) (-4 *3 (-662 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *5)) (-4 *5 (-368))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1277 *5) "failed"))
+ (|:| -2003 (-650 (-1277 *5)))))
+ (-5 *1 (-673 *5)) (-5 *4 (-1277 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1277 *5) "failed"))
+ (|:| -2003 (-650 (-1277 *5)))))
+ (-5 *1 (-673 *5)) (-5 *4 (-1277 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *5)) (-4 *5 (-368))
+ (-5 *2
+ (-650
+ (-2 (|:| |particular| (-3 (-1277 *5) "failed"))
+ (|:| -2003 (-650 (-1277 *5))))))
+ (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368))
+ (-5 *2
+ (-650
+ (-2 (|:| |particular| (-3 (-1277 *5) "failed"))
+ (|:| -2003 (-650 (-1277 *5))))))
+ (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450))))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4450))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4450))))
+ (-4 *7 (-13 (-378 *5) (-10 -7 (-6 -4450))))
+ (-5 *2
+ (-650
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2003 (-650 *7)))))
+ (-5 *1 (-674 *5 *6 *7 *3)) (-5 *4 (-650 *7))
+ (-4 *3 (-693 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4))))
+ ((*1 *2 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-115)) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *1 (-778 *5 *2)) (-4 *2 (-13 (-29 *5) (-1212) (-966)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-695 *7)) (-5 *5 (-1186))
+ (-4 *7 (-13 (-29 *6) (-1212) (-966)))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2
+ (-2 (|:| |particular| (-1277 *7)) (|:| -2003 (-650 (-1277 *7)))))
+ (-5 *1 (-808 *6 *7)) (-5 *4 (-1277 *7))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-695 *6)) (-5 *4 (-1186))
+ (-4 *6 (-13 (-29 *5) (-1212) (-966)))
+ (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-650 (-1277 *6))) (-5 *1 (-808 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115)))
+ (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1212) (-966)))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2
+ (-2 (|:| |particular| (-1277 *7)) (|:| -2003 (-650 (-1277 *7)))))
+ (-5 *1 (-808 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115)))
+ (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1212) (-966)))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2
+ (-2 (|:| |particular| (-1277 *7)) (|:| -2003 (-650 (-1277 *7)))))
+ (-5 *1 (-808 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-1186))
+ (-4 *7 (-13 (-29 *6) (-1212) (-966)))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *7) (|:| -2003 (-650 *7))) *7 "failed"))
+ (-5 *1 (-808 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-115)) (-5 *5 (-1186))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *3) (|:| -2003 (-650 *3))) *3 "failed"))
+ (-5 *1 (-808 *6 *3)) (-4 *3 (-13 (-29 *6) (-1212) (-966)))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-298 *2)) (-5 *4 (-115)) (-5 *5 (-650 *2))
+ (-4 *2 (-13 (-29 *6) (-1212) (-966))) (-5 *1 (-808 *6 *2))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))))
+ ((*1 *2 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-115)) (-5 *4 (-298 *2)) (-5 *5 (-650 *2))
+ (-4 *2 (-13 (-29 *6) (-1212) (-966)))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *1 (-808 *6 *2))))
+ ((*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1277 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4))
+ (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1277 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4))
+ (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *4 *5 *6 *4)
+ (-12 (-5 *3 (-1277 (-320 *4))) (-5 *5 (-650 (-384)))
+ (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1277 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4))
+ (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
+ (-12 (-5 *3 (-1277 (-320 *4))) (-5 *5 (-650 (-384)))
+ (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
+ (-12 (-5 *3 (-1277 (-320 *4))) (-5 *5 (-650 (-384)))
+ (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12
+ (-5 *5
+ (-1
+ (-3 (-2 (|:| |particular| *6) (|:| -2003 (-650 *6))) "failed")
+ *7 *6))
+ (-4 *6 (-368)) (-4 *7 (-662 *6))
+ (-5 *2 (-2 (|:| |particular| (-1277 *6)) (|:| -2003 (-695 *6))))
+ (-5 *1 (-819 *6 *7)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *6))))
+ ((*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-1044)) (-5 *1 (-904))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-904))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
+ (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168))
+ (-5 *8 (-227)) (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384))
+ (-5 *2 (-1044)) (-5 *1 (-904))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168))
+ (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384)) (-5 *2 (-1044))
+ (-5 *1 (-904))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 (-384)))
+ (-5 *1 (-1032)) (-5 *4 (-384))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 (-384))) (-5 *1 (-1032))
+ (-5 *4 (-384))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4))
+ (-5 *3 (-320 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4))
+ (-5 *3 (-298 (-320 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5))
+ (-5 *3 (-298 (-320 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5))
+ (-5 *3 (-320 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-1186)))
+ (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1140 *5))
+ (-5 *3 (-650 (-298 (-320 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
+ (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5))))))
+ (-5 *1 (-1195 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-1186))) (-4 *5 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-1195 *5))
+ (-5 *3 (-650 (-298 (-413 (-959 *5)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-1195 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4))))))
+ (-5 *1 (-1195 *4)) (-5 *3 (-650 (-298 (-413 (-959 *4)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186)) (-4 *5 (-562))
+ (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5))
+ (-5 *3 (-413 (-959 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186)) (-4 *5 (-562))
+ (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5))
+ (-5 *3 (-298 (-413 (-959 *5))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4)))))
+ (-5 *1 (-1195 *4)) (-5 *3 (-413 (-959 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4)))))
+ (-5 *1 (-1195 *4)) (-5 *3 (-298 (-413 (-959 *4)))))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
+(((*1 *1 *1 *1) (-4 *1 (-479))) ((*1 *1 *1 *1) (-4 *1 (-767))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *2 (-1277 *4)) (-5 *3 (-695 *4)) (-4 *4 (-368))
+ (-5 *1 (-673 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-368))
+ (-4 *5 (-13 (-378 *4) (-10 -7 (-6 -4450))))
+ (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450))))
+ (-5 *1 (-674 *4 *5 *2 *3)) (-4 *3 (-693 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-650 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-368))
+ (-5 *1 (-820 *2 *3)) (-4 *3 (-662 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
+(((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2))
+ (-4 *2 (-662 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1186)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-650 (-659 (-413 *5))))
+ (-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799))
(-5 *2 (-112)) (-5 *1 (-996 *3 *4 *5 *6))
@@ -10610,455 +10937,400 @@
(-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
(-4 *4 (-13 (-1109) (-34))))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-237 *3))
- (-4 *3 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-237 *2)) (-4 *2 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)) (-4 *2 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1226))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109))
- (-5 *1 (-743 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
- (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
+(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
+(((*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
+(((*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-1186)) (-5 *3 (-650 (-542))) (-5 *1 (-542)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-320 *5)))
- (-5 *1 (-1138 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-320 *5))))
- (-5 *1 (-1138 *5)))))
-(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
- *4 *6 *4)
- (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *6 (-681 (-227)))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-756)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))))
(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-143 *4 *5 *3))
- (-4 *3 (-378 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-509 *4 *5 *6 *3)) (-4 *6 (-378 *4)) (-4 *3 (-378 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |num| (-695 *4)) (|:| |den| *4)))
- (-5 *1 (-699 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *6 (-1252 *5))
- (-5 *2 (-2 (|:| -4300 *7) (|:| |rh| (-650 (-413 *6)))))
- (-5 *1 (-813 *5 *6 *7 *3)) (-5 *4 (-650 (-413 *6)))
- (-4 *7 (-662 *6)) (-4 *3 (-662 (-413 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1245 *4 *5 *3))
- (-4 *3 (-1252 *5)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34)))
- (-4 *2 (-13 (-1109) (-34))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1939 *3) (|:| |coef1| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(((*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856))
- (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1204)))))
-(((*1 *1) (-4 *1 (-354)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-13 (-562) (-148)))
- (-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-650 (-1182 *5)))
- (|:| |prim| (-1182 *5))))
- (-5 *1 (-438 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-562) (-148)))
- (-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1182 *3))
- (|:| |pol2| (-1182 *3)) (|:| |prim| (-1182 *3))))
- (-5 *1 (-438 *4 *3)) (-4 *3 (-27)) (-4 *3 (-436 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-959 *5)) (-5 *4 (-1186)) (-4 *5 (-13 (-368) (-148)))
- (-5 *2
- (-2 (|:| |coef1| (-570)) (|:| |coef2| (-570))
- (|:| |prim| (-1182 *5))))
- (-5 *1 (-967 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-13 (-368) (-148)))
- (-5 *2
- (-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 *5)))
- (|:| |prim| (-1182 *5))))
- (-5 *1 (-967 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186))) (-5 *5 (-1186))
- (-4 *6 (-13 (-368) (-148)))
- (-5 *2
- (-2 (|:| -1441 (-650 (-570))) (|:| |poly| (-650 (-1182 *6)))
- (|:| |prim| (-1182 *6))))
- (-5 *1 (-967 *6)))))
+ (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368))
+ (-5 *2 (-1182 (-959 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27))
- (-5 *2 (-650 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))))
+ (-12 (-5 *4 (-777)) (-4 *5 (-1058)) (-4 *2 (-1253 *5))
+ (-5 *1 (-1271 *5 *2 *6 *3)) (-4 *6 (-662 *2)) (-4 *3 (-1268 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306))))
+ ((*1 *1 *1) (-4 *1 (-306)))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
+ ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-1166 (-1166 (-959 *5))))
- (-5 *1 (-1284 *5)) (-5 *4 (-1166 (-959 *5))))))
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-1118 *5 *6 *7 *8))
+ (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-597 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3))
+ (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1221 *3)) (-4 *3 (-983)))))
+ (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -3011 (-570)))) (-4 *1 (-436 *3))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3011 (-899 *3))))
+ (-5 *1 (-899 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
+ (-4 *7 (-956 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -3011 (-570))))
+ (-5 *1 (-957 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $))
+ (-15 -4413 (*7 $))))))))
+(((*1 *1) (-5 *1 (-584))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-413 *1)) (-4 *1 (-1252 *3)) (-4 *3 (-1058))
- (-4 *3 (-562))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934))
+ (-5 *1 (-932 *3)) (-4 *3 (-620 (-542)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934))
+ (-5 *1 (-932 *3)) (-4 *3 (-620 (-542)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-933))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-933))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+ (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3))
+ (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1253 *2)))))
+(((*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
+ ((*1 *1 *1 *1) (-4 *1 (-479)))
+ ((*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-890))))
+ ((*1 *1 *1) (-5 *1 (-980)))
+ ((*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
(((*1 *1)
(-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109))
(-4 *4 (-672 *3))))
((*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-650
- (-2
- (|:| -2013
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227))))
- (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227)))
- (|:| |g| (-320 (-227))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (|:| -2223
- (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
- (|:| |expense| (-384)) (|:| |accuracy| (-384))
- (|:| |intermediateResults| (-384)))))))
- (-5 *1 (-809)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1277 (-777))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-145))))
((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-145)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
(((*1 *2 *1)
- (-12 (-4 *4 (-1109)) (-5 *2 (-896 *3 *4)) (-5 *1 (-892 *3 *4 *5))
- (-4 *3 (-1109)) (-4 *5 (-672 *4))))
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2))
+ (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058))))
((*1 *2 *3)
- (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4))
- (-5 *1 (-974 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5))
- (-4 *3 (-1252 *4))
- (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
+ (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174))
+ (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
+ (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854)))
+ (-5 *2 (-650 (-2 (|:| -2773 (-650 *3)) (|:| -3577 *5))))
+ (-5 *1 (-183 *5 *3)) (-4 *3 (-1253 (-171 *5)))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-368) (-854)))
+ (-5 *2 (-650 (-2 (|:| -2773 (-650 *3)) (|:| -3577 *4))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-933))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-933))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
+ (-5 *1 (-934)))))
(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1300 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-174))))
- ((*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-825 *3)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-592 *3) *3 (-1186)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1186)))
+ (-4 *3 (-288)) (-4 *3 (-635)) (-4 *3 (-1047 *4)) (-4 *3 (-436 *7))
+ (-5 *4 (-1186)) (-4 *7 (-620 (-899 (-570)))) (-4 *7 (-458))
+ (-4 *7 (-893 (-570))) (-4 *7 (-1109)) (-5 *2 (-592 *3))
+ (-5 *1 (-579 *7 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-854) (-368))) (-5 *2 (-112)) (-5 *1 (-1070 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336)))))
+(((*1 *1) (-5 *1 (-142))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4))
- (-14 *4 (-650 (-1186)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-456 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-456 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-650 *7)) (-5 *3 (-1168)) (-4 *7 (-956 *4 *5 *6))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-456 *4 *5 *6 *7))))
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
((*1 *1 *1)
- (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
- (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458))
- (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-458)) (-4 *4 (-1109))
- (-5 *1 (-579 *4 *2)) (-4 *2 (-288)) (-4 *2 (-436 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
+ (-14 *4 *2))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4))
- (-5 *1 (-820 *4 *5)) (-4 *5 (-662 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-368))
- (-5 *2 (-695 *5)) (-5 *1 (-820 *5 *6)) (-4 *6 (-662 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-588)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071))))
- ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-368))
- (-5 *2
- (-2 (|:| A (-695 *5))
- (|:| |eqs|
- (-650
- (-2 (|:| C (-695 *5)) (|:| |g| (-1276 *5)) (|:| -4300 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *5)) (-5 *4 (-1276 *5))
- (-4 *6 (-662 *5))))
+ (-12 (-5 *3 (-570)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1058))
+ (-5 *1 (-325 *4 *5 *2 *6)) (-4 *6 (-956 *2 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-311)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-1133 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-413 (-959 (-570))))) (-5 *4 (-650 (-1186)))
+ (-5 *2 (-650 (-650 *5))) (-5 *1 (-385 *5))
+ (-4 *5 (-13 (-854) (-368)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *6 (-662 *5))
- (-5 *2 (-2 (|:| -3442 (-695 *6)) (|:| |vec| (-1276 *5))))
- (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1276 *5)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -4410 *7) (|:| |sol?| (-112)))
- (-570) *7))
- (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1252 *7))
- (-5 *3 (-413 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-580 *7 *8)))))
+ (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4))
+ (-4 *4 (-13 (-854) (-368))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-777)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *2 (-1058)) (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
+ (-4 *5 (-240 *3 *2)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336)))))
+ (-12 (-5 *3 (-1182 *2)) (-4 *2 (-956 (-413 (-959 *6)) *5 *4))
+ (-5 *1 (-738 *5 *4 *6 *2)) (-4 *5 (-799))
+ (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $)))))
+ (-4 *6 (-562)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1252 (-413 (-570))))
- (-5 *2 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))
- (-5 *1 (-920 *3 *4)) (-4 *4 (-1252 (-413 *3)))))
+ (-12 (-5 *3 (-618 *5)) (-4 *5 (-436 *4)) (-4 *4 (-1047 (-570)))
+ (-4 *4 (-562)) (-5 *2 (-1182 *5)) (-5 *1 (-32 *4 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-1252 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3))
- (-4 *3 (-1252 (-413 *4))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-174))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1297 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-1058)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite| "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))
- (-5 *1 (-194)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1226)))))
+ (-12 (-5 *3 (-618 *1)) (-4 *1 (-1058)) (-4 *1 (-306))
+ (-5 *2 (-1182 *1)))))
(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-315))))
((*1 *2 *1)
(-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
(-4 *4 (-1058)))))
-(((*1 *2)
- (-12 (-4 *1 (-354))
- (-5 *2 (-650 (-2 (|:| -3738 (-570)) (|:| -1907 (-570))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
-(((*1 *2 *2 *3)
- (-12
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5))
(-5 *2
- (-2 (|:| |partsol| (-1276 (-413 (-959 *4))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *4)))))))
- (-5 *3 (-650 *7)) (-4 *4 (-13 (-311) (-148)))
- (-4 *7 (-956 *4 *6 *5)) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *1 (-931 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570))
+ (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1250 *4 *5)) (-5 *3 (-650 *5)) (-14 *4 (-1186))
+ (-4 *5 (-368)) (-5 *1 (-930 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *5)) (-4 *5 (-368)) (-5 *2 (-1182 *5))
+ (-5 *1 (-930 *4 *5)) (-14 *4 (-1186))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-650 *6)) (-5 *4 (-777)) (-4 *6 (-368))
+ (-5 *2 (-413 (-959 *6))) (-5 *1 (-1059 *5 *6)) (-14 *5 (-1186)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-650 (-879 (-570) (-928))))
- (-5 *1 (-980)))))
-(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+ (-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
+ (-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-777))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4))
+ (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-694 *4 *5 *6 *3))
+ (-4 *3 (-693 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562))
+ (-5 *2 (-777)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9))))
(-5 *4 (-777)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1281))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1282))
(-5 *1 (-1078 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9))))
(-5 *4 (-777)) (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1281))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-1282))
(-5 *1 (-1154 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-695 (-570))) (-5 *5 (-112)) (-5 *7 (-695 (-227)))
- (-5 *3 (-570)) (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
- ((*1 *1) (-5 *1 (-130)))
- ((*1 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174))))
- ((*1 *1) (-5 *1 (-552))) ((*1 *1) (-5 *1 (-553)))
- ((*1 *1) (-5 *1 (-554))) ((*1 *1) (-5 *1 (-555)))
- ((*1 *1) (-4 *1 (-732))) ((*1 *1) (-5 *1 (-1186)))
- ((*1 *1) (-12 (-5 *1 (-1192 *2)) (-14 *2 (-928))))
- ((*1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928))))
- ((*1 *1) (-5 *1 (-1231))) ((*1 *1) (-5 *1 (-1232)))
- ((*1 *1) (-5 *1 (-1233))) ((*1 *1) (-5 *1 (-1234))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-618 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4)))
- (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *4 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1186))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-4 *4 (-13 (-29 *6) (-1211) (-966)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -2331 (-650 *4))))
- (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-650 (-1186))) (-4 *5 (-458))
- (-5 *2
- (-2 (|:| |glbase| (-650 (-249 *4 *5))) (|:| |glval| (-650 (-570)))))
- (-5 *1 (-637 *4 *5)) (-5 *3 (-650 (-249 *4 *5))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570))))
- (-4 *2 (-174)))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109))))
- ((*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *2 (-1044)) (-5 *1 (-309))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
- (-5 *2 (-1044)) (-5 *1 (-309)))))
+ (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-1074 *3 *4 *2)) (-4 *2 (-856))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-3 (-570) (-227) (-512) (-1168) (-1191)))
+ (-5 *1 (-1191)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3))
+ (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-650 *7) (-650 *7))) (-5 *2 (-650 *7))
+ (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1282)) (-5 *1 (-837)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-132)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
+ (-4 *5 (-1253 *4)) (-5 *2 (-695 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3))
+ (-5 *2 (-695 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219))))
+ ((*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570))))
+ ((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
(((*1 *2 *2 *2) (-12 (-5 *2 (-1044)) (-5 *1 (-309))))
((*1 *2 *3)
(-12 (-5 *3 (-650 (-1044))) (-5 *2 (-1044)) (-5 *1 (-309))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-657 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1226))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-657 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227))))
((*1 *1 *1 *1) (-5 *1 (-1072)))
((*1 *2 *3)
(-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1163 *4))
- (-4 *4 (-1226))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1252 *5))
- (-5 *2 (-650 *3)) (-5 *1 (-783 *4 *5 *6 *3 *7)) (-4 *3 (-1252 *6))
- (-14 *7 (-928)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+ (-4 *4 (-1227))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *4 (-650 (-1186)))
- (-5 *2 (-695 (-320 (-227)))) (-5 *1 (-207))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-4 *6 (-907 *5)) (-5 *2 (-695 *6))
- (-5 *1 (-698 *5 *6 *3 *4)) (-4 *3 (-378 *6))
- (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
- (-4 *3 (-1109)))))
+ (|partial| -12 (-5 *4 (-928)) (-4 *5 (-562)) (-5 *2 (-695 *5))
+ (-5 *1 (-963 *5 *3)) (-4 *3 (-662 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
(((*1 *1 *1) (-4 *1 (-667))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570))))
- (-4 *5 (-1252 *4)) (-5 *2 (-650 (-413 *5))) (-5 *1 (-1025 *4 *5))
- (-5 *3 (-413 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2998 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1135 *4 *3 *5))) (-4 *4 (-38 (-413 (-570))))
+ (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *1 (-1135 *4 *3 *5))
+ (-4 *5 (-956 *4 (-537 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1221 *4))) (-5 *3 (-1186)) (-5 *1 (-1221 *4))
+ (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-695 *11)) (-5 *4 (-650 (-413 (-959 *8))))
+ (-5 *5 (-777)) (-5 *6 (-1168)) (-4 *8 (-13 (-311) (-148)))
+ (-4 *11 (-956 *8 *10 *9)) (-4 *9 (-13 (-856) (-620 (-1186))))
+ (-4 *10 (-799))
+ (-5 *2
+ (-2
+ (|:| |rgl|
+ (-650
+ (-2 (|:| |eqzro| (-650 *11)) (|:| |neqzro| (-650 *11))
+ (|:| |wcond| (-650 (-959 *8)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *8))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *8))))))))))
+ (|:| |rgsz| (-570))))
+ (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))))
+(((*1 *1 *1) (-5 *1 (-227)))
+ ((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1) (-4 *1 (-1148))) ((*1 *1 *1 *1) (-4 *1 (-1148))))
(((*1 *1 *1) (-4 *1 (-551))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-249 *3 *4))
- (-14 *3 (-650 (-1186))) (-4 *4 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-14 *3 (-650 (-1186)))
- (-5 *1 (-460 *3 *4 *5)) (-4 *4 (-1058))
- (-4 *5 (-240 (-2426 *3) (-777)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-487 *3 *4))
- (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1281)) (-5 *1 (-828)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
(((*1 *1 *2)
(-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
@@ -11070,133 +11342,82 @@
(-12 (-5 *2 (-650 (-650 *5))) (-4 *5 (-1058))
(-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *6 (-240 *4 *5))
(-4 *7 (-240 *3 *5)))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4448)) (-4 *1 (-34)) (-5 *2 (-777))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-34)) (-5 *2 (-777))))
((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-252))))
((*1 *2 *1)
(-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-570))))
((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-1299 *3 *4)) (-4 *3 (-1058))
+ (-12 (-5 *2 (-777)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058))
(-4 *4 (-852)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148))
- (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562))
- (-4 *3 (-1226)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-799))
- (-4 *3 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *5 (-562))
- (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *3
- (-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
- (-15 -2643 ((-3 $ "failed") (-1186))))))
- (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *6))
- (-4 *6
- (-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
- (-15 -2643 ((-3 $ "failed") (-1186))))))
- (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2))
- (-4 *2 (-956 (-959 *4) *5 *6)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3)))
- (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186)))))
- (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113))
- (-5 *1 (-403))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186)))))
- (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113))
- (-5 *1 (-403))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-650 (-1186))) (-5 *5 (-1189)) (-5 *3 (-1186))
- (-5 *2 (-1113)) (-5 *1 (-403)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-754)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
+ (-12 (-4 *4 (-562))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4))
+ (-5 *3 (-650 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-384)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-5 *1 (-705))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-695 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-368)) (-5 *1 (-987 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5))
- (-4 *3 (-1252 *4))
- (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1211) (-288))))))
(((*1 *2)
- (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4))
- (-4 *3 (-333 *4))))
- ((*1 *2) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-777)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *10))
- (-5 *1 (-630 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1080 *5 *6 *7 *8))
- (-4 *10 (-1118 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
- (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6)))
- (-5 *1 (-634 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
- (-14 *6 (-650 (-1186)))
- (-5 *2
- (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6)))))
- (-5 *1 (-634 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
- (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6)))
- (-5 *1 (-1055 *5 *6))))
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-650 (-1182 *13))) (-5 *3 (-1182 *13))
+ (-5 *4 (-650 *12)) (-5 *5 (-650 *10)) (-5 *6 (-650 *13))
+ (-5 *7 (-650 (-650 (-2 (|:| -4048 (-777)) (|:| |pcoef| *13)))))
+ (-5 *8 (-650 (-777))) (-5 *9 (-1277 (-650 (-1182 *10))))
+ (-4 *12 (-856)) (-4 *10 (-311)) (-4 *13 (-956 *10 *11 *12))
+ (-4 *11 (-799)) (-5 *1 (-713 *11 *12 *10 *13)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-852)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-413 (-570)))
+ (-5 *1 (-439 *4 *3)) (-4 *3 (-436 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1219 *4 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *1) (-12 (-4 *1 (-1264 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))))
+ (-12 (-5 *4 (-618 *3)) (-4 *3 (-436 *5))
+ (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1182 (-413 (-570))))
+ (-5 *1 (-439 *5 *3)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
+ (|:| |expense| (-384)) (|:| |accuracy| (-384))
+ (|:| |intermediateResults| (-384))))
+ (-5 *1 (-809)))))
(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570)))
+ (-5 *2 (-1277 (-413 (-570)))) (-5 *1 (-1304 *4)))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
((*1 *1 *1 *2)
@@ -11211,164 +11432,406 @@
(|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-562))))
((*1 *1 *1 *1) (-5 *1 (-868)))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-4 *4 (-1252 *3)) (-4 *3 (-562))
+ (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-562))
(-5 *1 (-978 *3 *4))))
((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-1062 *3 *4 *2 *5 *6)) (-4 *2 (-1058))
(-4 *5 (-240 *4 *2)) (-4 *6 (-240 *3 *2)) (-4 *2 (-562))))
((*1 *2 *2 *2)
(|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
- (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-986 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-320 (-227))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
- (-5 *1 (-207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+ (-2 (|:| |ir| (-592 (-413 *6))) (|:| |specpart| (-413 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1226))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1226))
- (-14 *4 (-570)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4)))
- (-4 *4 (-856)) (-5 *1 (-1197 *4)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
+ (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-928)) (-4 *4 (-373)) (-4 *4 (-368)) (-5 *2 (-1182 *1))
+ (-4 *1 (-333 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *3 (-368))
+ (-4 *2 (-1253 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
+ (-5 *1 (-534 *4)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(((*1 *1) (-5 *1 (-1072))))
(((*1 *2 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |lm| (-825 *3)) (|:| |rm| (-825 *3))))
(-5 *1 (-825 *3)) (-4 *3 (-856))))
((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
- (-5 *2 (-424 (-1182 (-413 (-570))))) (-5 *1 (-441 *4 *5 *3))
- (-4 *3 (-1252 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109))
- (-4 *6 (-1109)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-690 *4 *5 *6)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular| "There are singularities at both end points")
- (|:| |notEvaluated| "End point continuity not yet evaluated")))
- (-5 *1 (-194)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
+ (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6))
+ (-4 *4 (-458)) (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-986 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
+ (-4 *3 (-562)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *2))
(-4 *3 (-13 (-1109) (-34)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1288)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *7 (-1252 *5)) (-4 *4 (-730 *5 *7))
- (-5 *2 (-2 (|:| -3442 (-695 *6)) (|:| |vec| (-1276 *5))))
- (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-311))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |lm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3331 (-777)) (|:| -2785 (-777))))
- (-5 *1 (-777))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 (-959 *6))) (-4 *6 (-562))
- (-4 *2 (-956 (-413 (-959 *6)) *5 *4)) (-5 *1 (-738 *5 *4 *6 *2))
- (-4 *5 (-799))
- (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-413 (-570)))
- (-5 *1 (-439 *4 *3)) (-4 *3 (-436 *4))))
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3))
+ (-4 *3 (-13 (-1212) (-29 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-618 *3)) (-4 *3 (-436 *5))
- (-4 *5 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1182 (-413 (-570))))
- (-5 *1 (-439 *5 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1206)))))
+ (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148)))
+ (-5 *2 (-592 (-413 (-959 *5)))) (-5 *1 (-576 *5))
+ (-5 *3 (-413 (-959 *5))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5))
+ (-4 *4 (-1109)) (-4 *5 (-1109)))))
(((*1 *1 *2 *2 *3 *1)
(-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -1867 *4))) (-5 *1 (-978 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-650 *7) *7 (-1182 *7))) (-5 *5 (-1 (-424 *7) *7))
+ (-4 *7 (-1253 *6)) (-4 *6 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-5 *2 (-650 (-2 (|:| |frac| (-413 *7)) (|:| -4302 *3))))
+ (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7))
+ (-4 *8 (-662 (-413 *7)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2
+ (-650 (-2 (|:| |frac| (-413 *6)) (|:| -4302 (-660 *6 (-413 *6))))))
+ (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
(((*1 *2 *1)
(-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
(-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
(-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-118 *3)) (-14 *3 (-570))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-311)) (-5 *1 (-176 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-877 *3)) (-14 *3 (-570))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-570)) (-5 *2 (-176 (-413 (-570))))
+ (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
+(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-368))
+ (-5 *1 (-527 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2))
+ (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174))
+ (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
+ (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4451 "*"))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1058))
+ (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-928)) (-4 *5 (-1058))
+ (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1253 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1156 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2)
(-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-916))
(-5 *1 (-463 *3 *4 *2 *5)) (-4 *5 (-956 *2 *3 *4))))
((*1 *2)
(-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-916))
(-5 *1 (-913 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-916)) (-5 *1 (-914 *2 *3)) (-4 *3 (-1252 *2)))))
-(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
+ ((*1 *2) (-12 (-4 *2 (-916)) (-5 *1 (-914 *2 *3)) (-4 *3 (-1253 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1) (-5 *1 (-868)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *3 (-570)) (-4 *1 (-875 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-825 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-688 *2)) (-4 *2 (-1109))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 (-650 *5) (-650 *5))) (-5 *4 (-570))
(-5 *2 (-650 *5)) (-5 *1 (-688 *5)) (-4 *5 (-1109)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1244 (-570))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4450)) (-4 *1 (-1019 *3))
+ (-4 *3 (-1227)))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *5 (-928))
+ (-5 *2 (-1282)) (-5 *1 (-474))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-880)) (-5 *5 (-928))
+ (-5 *2 (-1282)) (-5 *1 (-474)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227)))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))
+ (-5 *2 (-1044)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
+ (-4 *2
+ (-13 (-408)
+ (-10 -7 (-15 -3735 (*2 *4)) (-15 -2332 ((-928) *2))
+ (-15 -2003 ((-1277 *2) (-928))) (-15 -2984 (*2 *2)))))
+ (-5 *1 (-361 *2 *4)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186))
+ (-5 *2
+ (-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227)))
+ (|:| |singularities| (-1166 (-227)))))
+ (-5 *1 (-105)))))
+(((*1 *2) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))))
+(((*1 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-378 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410))))
+ ((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-763)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
+ (-4 *2 (-174)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-628 *4 *2)) (-4 *2 (-13 (-1212) (-966) (-29 *4))))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1252 *4)) (-4 *5 (-378 *4))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1253 *4)) (-4 *5 (-378 *4))
(-4 *6 (-378 *4)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-1156 *3)))))
+ (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
+ (-14 *4 (-650 (-1186)))))
+ ((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-340 *3 *4 *5 *2)) (-4 *3 (-368))
+ (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
+ (-4 *2 (-347 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-174))))
+ ((*1 *1) (-12 (-4 *2 (-174)) (-4 *1 (-730 *2 *3)) (-4 *3 (-1253 *2)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *3 (-907 *6))
+ (-5 *2 (-695 *3)) (-5 *1 (-698 *6 *3 *7 *4)) (-4 *7 (-378 *3))
+ (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4449)))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
+(((*1 *1) (-5 *1 (-474))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
(((*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928))))
((*1 *2 *3)
- (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-928))
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-928))
(-5 *1 (-534 *4)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1220 *5 *6 *7 *8)) (-4 *5 (-562))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
+ (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109))
+ (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -3383 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1867 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1) (-5 *1 (-227))) ((*1 *1) (-5 *1 (-384))))
+(((*1 *1 *1) (-4 *1 (-1153))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-650 (-413 *7)))
+ (-4 *7 (-1253 *6)) (-5 *3 (-413 *7)) (-4 *6 (-368))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-580 *6 *7)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856))))
+ ((*1 *1) (-4 *1 (-1161))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
(-4 *3 (-1074 *5 *6 *7))
(-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
(-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-1231))
+ (-4 *6 (-1253 (-413 *5)))
+ (-5 *2
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-347 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-592 *3)) (-5 *1 (-563 *5 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856)))
+ (-14 *3 (-650 (-1186))))))
(((*1 *2 *3)
(-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-1277 (-695 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 (-695 *3)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368))
+ (-5 *2 (-1277 (-695 (-413 (-959 *5))))) (-5 *1 (-1095 *5))
+ (-5 *4 (-695 (-413 (-959 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368))
+ (-5 *2 (-1277 (-695 (-959 *5)))) (-5 *1 (-1095 *5))
+ (-5 *4 (-695 (-959 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368))
+ (-5 *2 (-1277 (-695 *4))) (-5 *1 (-1095 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562))
+ (-4 *3 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227)))
+ (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-761)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-777)) (-5 *4 (-1277 *2)) (-4 *5 (-311))
+ (-4 *6 (-1001 *5)) (-4 *2 (-13 (-415 *6 *7) (-1047 *6)))
+ (-5 *1 (-419 *5 *6 *7 *2)) (-4 *7 (-1253 *6)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
(((*1 *2 *3)
(|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2))
(-5 *2 (-384)) (-5 *1 (-791 *4))))
@@ -11388,599 +11851,392 @@
(|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562))
(-4 *5 (-856)) (-4 *5 (-620 *2)) (-5 *2 (-384))
(-5 *1 (-791 *5)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-5 *2 (-777))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-777))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-732)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
+ (-4 *3 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
+ (-5 *2 (-650 (-650 (-650 (-777))))))))
+(((*1 *1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *2))
+ (|:| |logand| (-1182 *2)))))
+ (-5 *4 (-650 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-368)) (-5 *1 (-592 *2)))))
(((*1 *2 *3)
(-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
(-4 *7 (-1074 *4 *5 *6))
(-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
(-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2))
+ (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4450)))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1213 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-650 (-1213 *2))) (-5 *1 (-1213 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856))
+ (-5 *1 (-1197 *4)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-695 *6))) (-5 *4 (-112)) (-5 *5 (-570))
+ (-5 *2 (-695 *6)) (-5 *1 (-1038 *6)) (-4 *6 (-368)) (-4 *6 (-1058))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4))
+ (-4 *4 (-368)) (-4 *4 (-1058))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-650 (-695 *5))) (-5 *4 (-570)) (-5 *2 (-695 *5))
+ (-5 *1 (-1038 *5)) (-4 *5 (-368)) (-4 *5 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -1794 (-650 *3)) (|:| -3234 (-650 *3))))
+ (-5 *1 (-1228 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112))
+ (-5 *1 (-212)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-112))
+ (-5 *1 (-896 *4 *5)) (-4 *5 (-1109))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112))
+ (-5 *1 (-897 *5 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *6)) (-5 *4 (-899 *5)) (-4 *5 (-1109))
+ (-4 *6 (-1227)) (-5 *2 (-112)) (-5 *1 (-897 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2340 *1)))
+ (-4 *1 (-858 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-650
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856))
+ (-5 *1 (-455 *3 *4 *5 *6)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-896 *4 *5)) (-5 *3 (-896 *4 *6)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-672 *5)) (-5 *1 (-892 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186))
+ (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-194))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186))
+ (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
+ *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
+ *9)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-112)) (-5 *6 (-227))
+ (-5 *7 (-695 (-570)))
+ (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-80 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-759)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-695 *3))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4))))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4))))
((*1 *2 *2 *2 *3)
(-12 (-5 *2 (-695 *3))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 (-413 (-959 *6))))
+ (-5 *3 (-413 (-959 *6)))
+ (-4 *6 (-13 (-562) (-1047 (-570)) (-148)))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-576 *6)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (|partial| -12 (-5 *1 (-370 *2)) (-4 *2 (-1109))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-27) (-436 *4))) (-4 *4 (-13 (-562) (-1047 (-570))))
+ (-4 *7 (-1253 (-413 *6))) (-5 *1 (-558 *4 *5 *6 *7 *2))
+ (-4 *2 (-347 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1267 *4))
+ (-12 (-5 *3 (-934))
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
+ (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
+ (-5 *1 (-154))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570)))
+ (-5 *2
+ (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
+ (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
+ (-5 *1 (-154)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $))
+ (-15 -4413 ((-1134 *3 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *3 (-618 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $))
+ (-15 -4413 ((-1134 *3 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *3 (-618 $)))))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *4 (-618 $)) $))
+ (-15 -4413 ((-1134 *4 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *4 (-618 $)))))))
+ (-4 *4 (-562)) (-5 *1 (-41 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 (-618 *2)))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *4 (-618 $)) $))
+ (-15 -4413 ((-1134 *4 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *4 (-618 $)))))))
+ (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1268 *4))
(-4 *4 (-38 (-413 (-570)))) (-5 *2 (-1 (-1166 *4) (-1166 *4)))
- (-5 *1 (-1269 *4 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1186))
- (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *1 (-1189)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5
- *7 *3 *8)
- (-12 (-5 *5 (-695 (-227))) (-5 *6 (-112)) (-5 *7 (-695 (-570)))
- (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS))))
- (-5 *3 (-570)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))))
+ (-5 *1 (-1270 *4 *5)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1190)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *3 (-112)) (-5 *1 (-1119)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *3 (-1074 *6 *7 *8))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1081 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-570))))
+ ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
+ (-4 *3 (-1253 *4)) (-5 *2 (-570))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-562) (-1047 *2) (-645 *2) (-458)))
+ (-5 *2 (-570)) (-5 *1 (-1125 *4 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9))))
- (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8))
- (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856))
- (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9))))
- (-5 *1 (-1081 *6 *7 *4 *8 *9)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-884 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-886 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226))
- (-5 *2 (-650 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
- (-4 *3 (-1226)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
- (-14 *4 (-650 (-1186)))))
+ (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
+ (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570))
+ (-5 *1 (-1125 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-1168))
+ (-4 *6 (-13 (-562) (-1047 *2) (-645 *2) (-458))) (-5 *2 (-570))
+ (-5 *1 (-1125 *6 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-570))
+ (-5 *1 (-1126 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-849 (-413 (-959 *6))))
+ (-5 *3 (-413 (-959 *6))) (-4 *6 (-458)) (-5 *2 (-570))
+ (-5 *1 (-1126 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-413 (-959 *6))) (-5 *4 (-1186))
+ (-5 *5 (-1168)) (-4 *6 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-368)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 (-413 *3)))
+ (-4 *1 (-340 *4 *3 *5 *2)) (-4 *2 (-347 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-570)) (-4 *2 (-368)) (-4 *4 (-1253 *2))
+ (-4 *5 (-1253 (-413 *4))) (-4 *1 (-340 *2 *4 *5 *6))
+ (-4 *6 (-347 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-368)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3)))
+ (-4 *1 (-340 *2 *3 *4 *5)) (-4 *5 (-347 *2 *3 *4))))
((*1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
- (-14 *4 (-650 (-1186)))))
- ((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-340 *3 *4 *5 *2)) (-4 *3 (-368))
- (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))
- (-4 *2 (-347 *3 *4 *5))))
+ (-12 (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
+ (-4 *1 (-340 *3 *4 *5 *2)) (-4 *2 (-347 *3 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-174))))
- ((*1 *1) (-12 (-4 *2 (-174)) (-4 *1 (-730 *2 *3)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1252 *6))
- (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570))))
- (-4 *8 (-1252 (-413 *7))) (-5 *2 (-592 *3))
- (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+ (-12 (-5 *2 (-419 *4 (-413 *4) *5 *6)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-4 *3 (-368))
+ (-4 *1 (-340 *3 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-1252 *4)) (-5 *1 (-815 *4 *2 *3 *5))
- (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2))
- (-4 *5 (-662 (-413 *2))))))
-(((*1 *1 *1) (-4 *1 (-635)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011) (-1211))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1276 *4)) (-4 *4 (-423 *3)) (-4 *3 (-311))
- (-4 *3 (-562)) (-5 *1 (-43 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-4 *4 (-368)) (-5 *2 (-1276 *1))
- (-4 *1 (-333 *4))))
- ((*1 *2) (-12 (-4 *3 (-368)) (-5 *2 (-1276 *1)) (-4 *1 (-333 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-174)) (-4 *4 (-1252 *3)) (-5 *2 (-1276 *1))
- (-4 *1 (-415 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4))
- (-5 *2 (-1276 *6)) (-5 *1 (-419 *3 *4 *5 *6))
- (-4 *6 (-13 (-415 *4 *5) (-1047 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4))
- (-5 *2 (-1276 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7))
- (-4 *6 (-415 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1276 *1)) (-4 *1 (-423 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1276 (-1276 *4))) (-5 *1 (-534 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1) (-5 *1 (-829))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-413 (-570)))
- (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-777)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368))
- (-4 *7 (-1252 (-413 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -2575 *3)))
- (-5 *1 (-568 *5 *6 *7 *3)) (-4 *3 (-347 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368))
+ (-12
(-5 *2
- (-2 (|:| |answer| (-413 *6)) (|:| -2575 (-413 *6))
- (|:| |specpart| (-413 *6)) (|:| |polypart| *6)))
- (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-227) (-227) (-227)))
- (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined"))
- (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227)))
- (-5 *1 (-703))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-227)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1 (-950 (-227)) (-227) (-227)))
- (-5 *4 (-1103 (-227))) (-5 *5 (-650 (-266))) (-5 *1 (-703)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-989 *2)) (-4 *2 (-1058))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1222))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1274 *2)) (-4 *2 (-1226)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1267 *4)) (-5 *1 (-1269 *4 *2))
- (-4 *4 (-38 (-413 (-570)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3))
- (-4 *2 (-1252 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856))))
- ((*1 *1) (-4 *1 (-1161))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7)))
- (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
- (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8)))
- (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7)))
- (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7))))
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
- (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8)))
- (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1276 (-705))) (-5 *1 (-309)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-354))
+ (-12
(-5 *2
- (-2 (|:| |cont| *5)
- (|:| -1679 (-650 (-2 (|:| |irr| *3) (|:| -3465 (-570)))))))
- (-5 *1 (-218 *5 *3)) (-4 *3 (-1252 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-510 *3 *4 *5 *6))) (-4 *3 (-368)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
- (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))))
-(((*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))
+ (-5 *4 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))))
+ ((*1 *2 *3 *4)
(-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-570)) (-5 *1 (-206)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *5)) (-5 *4 (-650 (-1 *6 (-650 *6))))
- (-4 *5 (-38 (-413 (-570)))) (-4 *6 (-1267 *5)) (-5 *2 (-650 *6))
- (-5 *1 (-1269 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-368)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
- (-5 *2 (-1278)) (-5 *1 (-260)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
- ((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
- (-5 *2 (-1044)) (-5 *1 (-762)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1252 *4))
- (-5 *2 (-2 (|:| |ans| (-413 *5)) (|:| |nosol| (-112))))
- (-5 *1 (-1024 *4 *5)) (-5 *3 (-413 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-334))))
- ((*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-334))))
- ((*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-334))))
- ((*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-334))))
- ((*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-334))))
- ((*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-334))))
- ((*1 *1) (-5 *1 (-334))))
-(((*1 *2 *1) (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(((*1 *2)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-695 (-413 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -2195 *4) (|:| -3454 (-570)))))
- (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
-(((*1 *1 *2) (-12 (-5 *1 (-1212 *2)) (-4 *2 (-1109))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1212 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-650 (-1212 *2))) (-5 *1 (-1212 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-650 *3)))))
-(((*1 *1) (-5 *1 (-145)))
+ (-5 *2
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-413 (-570)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-413 (-570)))
+ (-5 *2 (-650 (-2 (|:| -4398 *5) (|:| -4411 *5)))) (-5 *1 (-1029 *3))
+ (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4398 *5) (|:| -4411 *5)))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-266)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-856))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1226))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-286 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2)
(-12
(-5 *2
- (-2
- (|:| -2013
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (|:| -2223
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1166 (-227)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3758
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite|
- "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))))
- (-5 *1 (-565))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-701 *2)) (-4 *2 (-1109))))
- ((*1 *1 *2)
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570))))))
+ ((*1 *2 *3 *4)
(-12
(-5 *2
- (-2
- (|:| -2013
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (|:| -2223
- (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
- (|:| |expense| (-384)) (|:| |accuracy| (-384))
- (|:| |intermediateResults| (-384))))))
- (-5 *1 (-809))))
- ((*1 *2 *3 *4)
- (-12 (-5 *2 (-1281)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846))))
+ (-650 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570))))))
+ (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570))))
+ (-5 *4 (-2 (|:| -4398 (-413 (-570))) (|:| -4411 (-413 (-570)))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384)))
- (-5 *2 (-1044)) (-5 *1 (-846)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-562) (-148)))
- (-5 *2 (-2 (|:| -4397 *3) (|:| -4410 *3))) (-5 *1 (-1246 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3738 (-1182 *6)) (|:| -1907 (-570)))))
- (-4 *6 (-311)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-748 *4 *5 *6 *7)) (-4 *7 (-956 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *3 (-1252 *4)) (-5 *1 (-815 *4 *3 *2 *5)) (-4 *2 (-662 *3))
- (-4 *5 (-662 (-413 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-413 *5))
- (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1252 *4))
- (-5 *1 (-815 *4 *5 *2 *6)) (-4 *2 (-662 *5)) (-4 *6 (-662 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-237 *3))))
- ((*1 *1) (-12 (-4 *1 (-237 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-1147))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1281)) (-5 *1 (-1147)))))
+ (-12 (-5 *4 (-413 (-570)))
+ (-5 *2 (-650 (-2 (|:| -4398 *4) (|:| -4411 *4)))) (-5 *1 (-1030 *3))
+ (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-413 (-570)))
+ (-5 *2 (-650 (-2 (|:| -4398 *5) (|:| -4411 *5)))) (-5 *1 (-1030 *3))
+ (-4 *3 (-1253 *5)) (-5 *4 (-2 (|:| -4398 *5) (|:| -4411 *5))))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1186))
+ (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void"))) (-5 *1 (-1189)))))
+(((*1 *1) (-5 *1 (-1094))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129))))))
+ (-4 *4 (-354)) (-5 *2 (-1282)) (-5 *1 (-534 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *5 (-1252 *4)) (-5 *2 (-650 (-659 (-413 *5))))
- (-5 *1 (-663 *4 *5)) (-5 *3 (-659 (-413 *5))))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306))))
- ((*1 *1 *1) (-4 *1 (-306)))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1) (-5 *1 (-868))))
-(((*1 *1) (-5 *1 (-584))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011)))))
+ ((*1 *2)
+ (|partial| -12 (-4 *4 (-1231)) (-4 *5 (-1253 (-413 *2)))
+ (-4 *2 (-1253 *4)) (-5 *1 (-346 *3 *4 *2 *5))
+ (-4 *3 (-347 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231))
+ (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2))
- (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-378 *2)) (-4 *5 (-378 *2)) (-4 *2 (-174))
- (-5 *1 (-694 *2 *4 *5 *3)) (-4 *3 (-693 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
- (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4450 "*"))) (-4 *2 (-1058)))))
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1182 *6)) (-4 *6 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-1182 *7)) (-5 *1 (-325 *4 *5 *6 *7))
+ (-4 *7 (-956 *6 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-650 *5) *6))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5))
+ (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4302 *3))))
+ (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6))
+ (-4 *7 (-662 (-413 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-650 *5) *6))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *6 (-1253 *5))
+ (-5 *2 (-650 (-2 (|:| |poly| *6) (|:| -4302 (-660 *6 (-413 *6))))))
+ (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *2)) (-4 *2 (-956 (-413 (-959 *6)) *5 *4))
- (-5 *1 (-738 *5 *4 *6 *2)) (-4 *5 (-799))
- (-4 *4 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $)))))
- (-4 *6 (-562)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1249 *4 *5)) (-5 *3 (-650 *5)) (-14 *4 (-1186))
- (-4 *5 (-368)) (-5 *1 (-930 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *5)) (-4 *5 (-368)) (-5 *2 (-1182 *5))
- (-5 *1 (-930 *4 *5)) (-14 *4 (-1186))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-650 *6)) (-5 *4 (-777)) (-4 *6 (-368))
- (-5 *2 (-413 (-959 *6))) (-5 *1 (-1059 *5 *6)) (-14 *5 (-1186)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *3))
- (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-650 *7) (-650 *7))) (-5 *2 (-650 *7))
- (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562)) (-4 *5 (-799))
- (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-928)) (-4 *5 (-562)) (-5 *2 (-695 *5))
- (-5 *1 (-963 *5 *3)) (-4 *3 (-662 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1252 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-618 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186)))
- (-4 *2 (-13 (-436 *5) (-27) (-1211)))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *1 (-572 *5 *2 *6)) (-4 *6 (-1109)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1267 *3)))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1220 *5)))
- (-5 *1 (-1284 *5)) (-5 *4 (-1220 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1939 *3) (|:| |coef2| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-4 *1 (-107 *3)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -1679 (-650 (-2 (|:| |irr| *10) (|:| -3465 (-570)))))))
- (-5 *6 (-650 *3)) (-5 *7 (-650 *8)) (-4 *8 (-856)) (-4 *3 (-311))
- (-4 *10 (-956 *3 *9 *8)) (-4 *9 (-799))
- (-5 *2
- (-2 (|:| |polfac| (-650 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-650 (-1182 *3)))))
- (-5 *1 (-631 *8 *9 *3 *10)) (-5 *4 (-650 (-1182 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-793)) (-5 *2 (-1044))
- (-5 *3
- (-2 (|:| |fn| (-320 (-227)))
- (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-793)) (-5 *2 (-1044))
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227)))))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1238 *3 *2)) (-4 *3 (-1058))
- (-4 *2 (-1267 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (-5 *2 (-384)) (-5 *1 (-207)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2 *3) (-12 (-5 *3 (-980)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1227 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384)))))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *1) (-5 *1 (-131))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-368)) (-5 *1 (-1034 *3 *2)) (-4 *2 (-662 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| -4300 *3) (|:| -3854 (-650 *5))))
- (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-650 (-650 (-227)))) (-5 *4 (-227))
- (-5 *2 (-650 (-950 *4))) (-5 *1 (-1222)) (-5 *3 (-950 *4)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-458))
- (-5 *2
- (-650
- (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4))))
- (|:| |eigmult| (-777))
- (|:| |eigvec| (-650 (-695 (-413 (-959 *4))))))))
- (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)) (-5 *2 (-650 *6))
- (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1259 *3 *2)) (-4 *3 (-1058))
- (-4 *2 (-1236 *3)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132))
- (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| -1441 *3) (|:| -3278 *4))))
- (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
- (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *1 *1) (-4 *1 (-1153))))
-(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ (-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109))
+ (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
+ (-5 *1 (-54 *4 *5 *2))
+ (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7))))
+ (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-997 *3 *4 *5 *6 *7))))
((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1252 *6))
- (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570))))
- (-4 *8 (-1252 (-413 *7))) (-5 *2 (-592 *3))
- (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
- (-5 *2 (-2 (|:| -3385 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
+ (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7))))
+ (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4))
+ (-4 *4 (-354)))))
(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *2
(-2
@@ -11998,7 +12254,7 @@
(-3 (|:| |str| (-1166 (-227)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -3758
+ (|:| -1990
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -12006,209 +12262,211 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-565)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1))))
- (-4 *1 (-1080 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1230)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-1255 *3 *2))
- (-4 *2 (-13 (-1252 *3) (-562) (-10 -8 (-15 -1874 ($ $ $))))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1939 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1267 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-227)) (-5 *5 (-570)) (-5 *2 (-1221 *3))
- (-5 *1 (-796 *3)) (-4 *3 (-983))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-112))
- (-5 *1 (-1221 *2)) (-4 *2 (-983)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)) (-4 *5 (-368))
- (-5 *2 (-112)) (-5 *1 (-673 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449))))
- (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))) (-5 *2 (-112))
- (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1281))
- (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2))
- (-4 *2 (-436 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
- (-5 *1 (-159 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-1296 *3 *4)) (-4 *3 (-856))
- (-4 *4 (-174)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3))
- (-5 *1 (-1246 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *1 *1) (-4 *1 (-635)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011) (-1211))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)) (-4 *2 (-1109))))
- ((*1 *1 *1) (-12 (-4 *1 (-701 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112))
- (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440))))
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *1)
+ (-12 (-4 *1 (-410)) (-1753 (|has| *1 (-6 -4440)))
+ (-1753 (|has| *1 (-6 -4432)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856))))
+ ((*1 *1) (-4 *1 (-850))) ((*1 *1 *1 *1) (-4 *1 (-856)))
+ ((*1 *2 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551))
+ (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551))
+ (-4 *3 (-562))))
+ ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551))
+ (-5 *2 (-413 (-570)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551))
+ (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551))
+ (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551))
+ (-5 *2 (-413 (-570)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112))
- (-5 *1 (-1215 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4))))))
-(((*1 *1 *1) (-5 *1 (-868))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *1) (-5 *1 (-443))))
-(((*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1276 *1)) (-4 *1 (-372 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48)))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4))
+ (-4 *4 (-1058)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
+ (-4 *3 (-1109)) (-5 *2 (-112))))
((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-122 *3)) (|:| |greater| (-122 *3))))
- (-5 *1 (-122 *3)) (-4 *3 (-856))))
+ (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-112))
+ (-5 *1 (-911 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-928)) (-5 *2 (-112)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5
+ *7 *3 *8)
+ (-12 (-5 *5 (-695 (-227))) (-5 *6 (-112)) (-5 *7 (-695 (-570)))
+ (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-65 QPHESS))))
+ (-5 *3 (-570)) (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2))
+ (-4 *2 (-1268 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-592 *4)) (-4 *4 (-13 (-29 *3) (-1211)))
- (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-589 *3 *4))))
+ (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1253 *3))
+ (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1268 *5))))
((*1 *2 *2)
- (-12 (-5 *2 (-592 (-413 (-959 *3))))
- (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-595 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| -3294 *3) (|:| |special| *3))) (-5 *1 (-733 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1276 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
- (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
- (-5 *3 (-650 (-695 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1276 (-1276 *5))) (-4 *5 (-368)) (-4 *5 (-1058))
- (-5 *2 (-650 (-650 (-695 *5)))) (-5 *1 (-1038 *5))
- (-5 *3 (-650 (-695 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-650 *1)) (-4 *1 (-1153))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-145)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+ (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2))
+ (-4 *2 (-1268 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148)))
+ (-5 *1 (-1162 *3)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5))
+ (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-1290 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1290 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3))
- (-5 *2
- (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-1252 *3))
+ (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458))
+ (-5 *2 (-487 *4 *5)) (-5 *1 (-637 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3290 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-798)))))
+(((*1 *2 *1 *1)
+ (-12
(-5 *2
- (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-5 *1 (-774 *4 *5)) (-4 *5 (-415 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 *3))
+ (-2 (|:| -1442 *3) (|:| |gap| (-777)) (|:| -3389 (-788 *3))
+ (|:| -3831 (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
(-5 *2
- (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-5 *1 (-994 *4 *3 *5 *6)) (-4 *6 (-730 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 *3))
+ (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3389 *1)
+ (|:| -3831 *1)))
+ (-4 *1 (-1074 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
(-5 *2
- (-2 (|:| -2331 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-5 *1 (-1285 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))))
+ (-2 (|:| -1442 *1) (|:| |gap| (-777)) (|:| -3389 *1)
+ (|:| -3831 *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570)))))
+ (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
+ (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8))))
+ (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-777))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-777)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-1253 *4)) (-5 *1 (-545 *4 *2 *5 *6))
+ (-4 *4 (-311)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-777))))))
(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-864))))
((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-972))))
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-998))))
- ((*1 *2 *1) (-12 (-4 *1 (-1019 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1019 *2)) (-4 *2 (-1227))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *2 *3))
(-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-753)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-570))
+ (-5 *6
+ (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))))
+ (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384)))
+ (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282))
+ (-5 *1 (-794))))
+ ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
+ (-12 (-5 *4 (-570))
+ (-5 *6
+ (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2063 (-384))))
+ (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384)))
+ (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282))
+ (-5 *1 (-794)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
+ (-5 *1 (-474)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058))
+ (-5 *1 (-1170 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058))
+ (-14 *4 (-1186)) (-14 *5 *3))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570))))
+ (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-29 *4) (-1212)))
+ (-5 *1 (-589 *4 *2))
+ (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))))
((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-650
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-777)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-799)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458)) (-4 *5 (-856))
- (-5 *1 (-455 *3 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174))))
- ((*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2))))
- ((*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1226)) (-4 *2 (-856))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1226)) (-4 *3 (-1226)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227)))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))
- (-5 *2 (-1044)) (-5 *1 (-759)))))
-(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))))
-(((*1 *2)
- (-12 (-14 *4 (-777)) (-4 *5 (-1226)) (-5 *2 (-135))
- (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-368)) (-5 *2 (-135)) (-5 *1 (-332 *3 *4))
- (-4 *3 (-333 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-174))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-570))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
- (-5 *2 (-570)) (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-989 *3)) (-4 *3 (-1058)) (-5 *2 (-928))))
- ((*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-368)) (-5 *2 (-135)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1227 *2))
- (-4 *2 (-1109))))
+ (-12 (-5 *3 (-592 (-413 (-959 *4))))
+ (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *4))
+ (-5 *1 (-595 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-659 (-413 *2))) (-4 *2 (-1253 *4)) (-5 *1 (-816 *4 *2))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856))
- (-5 *1 (-1227 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+ (-12 (-5 *3 (-660 *2 (-413 *2))) (-4 *2 (-1253 *4))
+ (-5 *1 (-816 *4 *2))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570))))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *3 (-112)) (-5 *1 (-1119)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129))))))
- (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
- (-5 *2 (-1044)) (-5 *1 (-762)))))
-(((*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243))))
((*1 *2 *2 *3 *4)
(-12 (-5 *2 (-650 (-1168))) (-5 *3 (-570)) (-5 *4 (-1168))
@@ -12216,102 +12474,111 @@
((*1 *1 *1) (-5 *1 (-868)))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1)
- (-12 (-4 *1 (-1254 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2))
- (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-884 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-886 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-889 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))))
+ (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))))
(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
- (-4 *3 (-372 *4))))
- ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-562))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
- ((*1 *1 *1) (|partial| -4 *1 (-728))))
+ (-12 (-5 *2 (-1277 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4))
+ (-14 *3 (-928)) (-14 *4 (-928)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4))))
- (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))))
+ (-12 (-4 *4 (-799))
+ (-4 *5 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *6 (-562))
+ (-5 *2 (-2 (|:| -3125 (-959 *6)) (|:| -1993 (-959 *6))))
+ (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
+ (-5 *2 (-650 *4)) (-5 *1 (-1123 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368))
+ (-5 *2 (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)))))
+ (-5 *1 (-987 *5)) (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)))))
+(((*1 *2)
+ (-12 (-4 *1 (-354))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3))
+ (-4 *3 (-1253 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2))
- (-4 *2 (-13 (-27) (-1211) (-436 (-171 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570))))
- (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 (-171 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-1215 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))))
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-158)))
- ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(((*1 *1) (-4 *1 (-354))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+ (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-1058))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-1253 *4)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-757)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 (-171 (-570))))) (-5 *2 (-650 (-171 *4)))
+ (-5 *1 (-383 *4)) (-4 *4 (-13 (-368) (-854)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-413 (-959 (-171 (-570))))))
+ (-5 *4 (-650 (-1186))) (-5 *2 (-650 (-650 (-171 *5))))
+ (-5 *1 (-383 *5)) (-4 *5 (-13 (-368) (-854))))))
(((*1 *1)
(-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
(-4 *4 (-174)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-1252 (-413 *3))) (-5 *2 (-928))
- (-5 *1 (-920 *4 *5)) (-4 *5 (-1252 (-413 *4))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *6 (-562)) (-4 *2 (-956 *3 *5 *4))
+ (-5 *1 (-738 *5 *4 *6 *2)) (-5 *3 (-413 (-959 *6))) (-4 *5 (-799))
+ (-4 *4 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1081 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3593 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1074 *6 *7 *4)) (-4 *9 (-1080 *6 *7 *4 *8))
+ (-4 *6 (-458)) (-4 *7 (-799)) (-4 *4 (-856))
+ (-5 *2 (-650 (-2 (|:| |val| *8) (|:| -3593 *9))))
+ (-5 *1 (-1081 *6 *7 *4 *8 *9)))))
(((*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-373))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1276 *4)) (-5 *1 (-534 *4))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4))
(-4 *4 (-354))))
((*1 *2 *1)
(-12 (-4 *2 (-856)) (-5 *1 (-719 *2 *3 *4)) (-4 *3 (-1109))
(-14 *4
- (-1 (-112) (-2 (|:| -2159 *2) (|:| -1907 *3))
- (-2 (|:| -2159 *2) (|:| -1907 *3)))))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-458)) (-4 *4 (-856))
- (-4 *5 (-799)) (-5 *1 (-996 *3 *4 *5 *6)) (-4 *6 (-956 *3 *5 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1252 *6))
- (-4 *6 (-13 (-368) (-148) (-1047 *4))) (-5 *4 (-570))
- (-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
- (|:| -4300
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-1024 *6 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1874 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))))
+ (-1 (-112) (-2 (|:| -2160 *2) (|:| -3011 *3))
+ (-2 (|:| -2160 *2) (|:| -3011 *3)))))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-777))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+ (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1253 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1282)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-618 *5))) (-4 *4 (-1109)) (-5 *2 (-618 *5))
+ (-5 *1 (-579 *4 *5)) (-4 *5 (-436 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1210)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
+ (-14 *3 (-928)) (-4 *4 (-1058)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-1111 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-650 *4))) (-5 *1 (-911 *4))
+ (-5 *3 (-650 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-1111 *4))) (-5 *1 (-911 *4))
+ (-5 *3 (-1111 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109))
(-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
@@ -12321,89 +12588,120 @@
(-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))
(-5 *1 (-1085 *3 *4 *2))
(-4 *2 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
- (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-650 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-570)) (-4 *2 (-436 *3)) (-5 *1 (-32 *3 *2))
+ (-4 *3 (-1047 *4)) (-4 *3 (-562)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))))
+ (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5))
+ (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-650 *2) *2 *2 *2)) (-4 *2 (-1109))
+ (-5 *1 (-103 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))))
+(((*1 *1 *1) (-4 *1 (-635)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+ (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-246 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1148))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3739 *3) (|:| -3221 *4))))
+ (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-1 (-112) *8))) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-2 (|:| |goodPols| (-650 *8)) (|:| |badPols| (-650 *8))))
+ (-5 *1 (-986 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-884 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-886 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115))))
+ ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
+ (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
+ (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1109)) (-4 *6 (-1109))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *5 (-1109)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7)))
+ (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-777)) (-4 *5 (-174))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-777)) (-4 *5 (-174))))
- ((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
- (-249 *4 (-413 (-570)))))
- (-5 *3 (-650 (-870 *4))) (-14 *4 (-650 (-1186))) (-14 *5 (-777))
- (-5 *1 (-511 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
-(((*1 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
- (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112))
- (-5 *6 (-227)) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))))
- (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE))))
- (-5 *2 (-1044)) (-5 *1 (-762)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-650 *11)) (-5 *5 (-650 (-1182 *9)))
- (-5 *6 (-650 *9)) (-5 *7 (-650 *12)) (-5 *8 (-650 (-777)))
- (-4 *11 (-856)) (-4 *9 (-311)) (-4 *12 (-956 *9 *10 *11))
- (-4 *10 (-799)) (-5 *2 (-650 (-1182 *12)))
- (-5 *1 (-713 *10 *11 *9 *12)) (-5 *3 (-1182 *12)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-1212 *3))) (-5 *1 (-1212 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1276 *5)) (-4 *5 (-798)) (-5 *2 (-112))
- (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+ (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5)))
+ (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1268 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
- (-14 *4 *2))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -1400 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1252 *4)))))
-(((*1 *1) (-5 *1 (-1094))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148)))
- (-5 *1 (-1246 *4 *2)) (-4 *2 (-1252 *4)))))
+ (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2))
+ (-4 *2 (-1268 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-4 *4 (-1253 *3))
+ (-4 *5 (-730 *3 *4)) (-5 *1 (-547 *3 *4 *5 *2)) (-4 *2 (-1268 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2))
+ (-4 *2 (-1268 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148)))
+ (-5 *1 (-1162 *3)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-368)) (-4 *1 (-333 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1253 *4)) (-4 *4 (-1231))
+ (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1253 (-413 *3)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1277 *1)) (-4 *4 (-174))
+ (-4 *1 (-372 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1277 *1)) (-4 *4 (-174))
+ (-4 *1 (-375 *4 *5)) (-4 *5 (-1253 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4))
+ (-4 *4 (-1253 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138))))
- ((*1 *2 *1) (-12 (-5 *2 (-1225)) (-5 *1 (-157))))
- ((*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-157))))
+ ((*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632))))
@@ -12414,46 +12712,53 @@
(-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1109)) (-5 *1 (-1175 *3 *2)) (-4 *3 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
+ (-5 *2 (-650 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *3 (-618 $)) $))
+ (-15 -4413 ((-1134 *3 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4))
+ (-14 *3 (-928)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-959 (-570)))) (-5 *1 (-443))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-227))) (-5 *2 (-1113))
+ (-5 *1 (-765))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-570))) (-5 *2 (-1113))
+ (-5 *1 (-765)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
+ (-5 *2 (-1277 *6)) (-5 *1 (-341 *3 *4 *5 *6))
+ (-4 *6 (-347 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5))
- (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1252 *4)) (-4 *5 (-378 *4))
- (-4 *6 (-378 *4)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (-5 *2 (-384)) (-5 *1 (-207)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856)))
- (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-695 *3))
- (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3))
- (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-115)) (-5 *3 (-650 (-1 *4 (-650 *4)))) (-4 *4 (-1109))
- (-5 *1 (-114 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109))
- (-5 *1 (-114 *4))))
+ (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-171 (-320 *4)))
+ (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 (-171 *4))))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-1 *4 (-650 *4))))
- (-5 *1 (-114 *4)) (-4 *4 (-1109)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
- ((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+ (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-171 *3)) (-5 *1 (-1216 *4 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
+ (-5 *2 (-249 *4 *5)) (-5 *1 (-951 *4 *5)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1109)) (-5 *2 (-112))
+ (-5 *1 (-1228 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-157))))
- ((*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632))))
@@ -12464,304 +12769,341 @@
(-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1109)) (-5 *1 (-1175 *2 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1252 *4))
- (-5 *2 (-2 (|:| -3893 (-629 *4 *5)) (|:| -2910 (-413 *5))))
- (-5 *1 (-629 *4 *5)) (-5 *3 (-413 *5))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
+ (-4 *3 (-1227)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
+ (-4 *5 (-562)) (-5 *2 (-650 (-650 (-959 *5)))) (-5 *1 (-1195 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
((*1 *2 *1)
- (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
- (-14 *3 (-928)) (-4 *4 (-1058))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-458)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1252 *3)))))
+ (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570))))
+ (-4 *5 (-893 (-570)))
+ (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-573 *5 *3)) (-4 *3 (-635))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1228)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-650
- (-2 (|:| -3934 (-777))
- (|:| |eqns|
- (-650
- (-2 (|:| |det| *7) (|:| |rows| (-650 (-570)))
- (|:| |cols| (-650 (-570))))))
- (|:| |fgb| (-650 *7)))))
- (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148)))
- (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777))
- (-5 *1 (-931 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
- (-5 *1 (-510 *4 *5 *6 *2)) (-4 *2 (-956 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
+ (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-618 *4)) (-5 *6 (-1186))
+ (-4 *4 (-13 (-436 *7) (-27) (-1212)))
+ (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2003 (-650 *4))))
+ (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-266))))
+ ((*1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174))))
+ ((*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1277 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-368))
+ (-4 *1 (-730 *5 *6)) (-4 *5 (-174)) (-4 *6 (-1253 *5))
+ (-5 *2 (-695 *5)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
(-3 (|:| I (-320 (-570))) (|:| -1674 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*1 *2 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-788 *3)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-970 *3 *2)) (-4 *2 (-132)) (-4 *3 (-562))
- (-4 *3 (-1058)) (-4 *2 (-798))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-1182 *3)) (-4 *3 (-1058))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-980)) (-4 *2 (-132)) (-5 *1 (-1188 *3)) (-4 *3 (-562))
- (-4 *3 (-1058))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-1249 *4 *3)) (-14 *4 (-1186))
- (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-618 *3)) (-5 *5 (-1 (-1182 *3) (-1182 *3)))
- (-4 *3 (-13 (-27) (-436 *6))) (-4 *6 (-562)) (-5 *2 (-592 *3))
- (-5 *1 (-557 *6 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-1166 (-227))) (-5 *1 (-194))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186)))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1276 (-320 (-227)))) (-5 *4 (-650 (-1186)))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4))))
- (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)))))
-(((*1 *1) (-5 *1 (-603))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *2 (-1044)) (-5 *1 (-757)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562))))
- ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-530)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-728)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-732)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -4410 *6) (|:| |sol?| (-112))) (-570)
- *6))
- (-4 *6 (-368)) (-4 *7 (-1252 *6))
- (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
- (-4 *3 (-562)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227)))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))
- (-5 *2 (-1044)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-763)))))
-(((*1 *1) (-5 *1 (-474))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1219 *5 *6 *7 *8)) (-4 *5 (-562))
- (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7)))))
-(((*1 *1 *1) (-4 *1 (-1153))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-592 *3)) (-5 *1 (-563 *5 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *5))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8))
+ (-4 *8 (-956 *5 *7 *6)) (-4 *5 (-13 (-311) (-148)))
+ (-4 *6 (-13 (-856) (-620 (-1186)))) (-4 *7 (-799)) (-5 *2 (-112))
+ (-5 *1 (-931 *5 *6 *7 *8)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
- (-5 *2 (-650 (-650 (-650 (-777))))))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -2134 (-650 *3)) (|:| -2221 (-650 *3))))
- (-5 *1 (-1227 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-194))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-320 (-227))) (-5 *4 (-1186))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))))
-(((*1 *2 *1) (|partial| -12 (-5 *1 (-370 *2)) (-4 *2 (-1109))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1207)))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-368)) (-4 *3 (-1252 *4)) (-4 *5 (-1252 (-413 *3)))
- (-4 *1 (-340 *4 *3 *5 *2)) (-4 *2 (-347 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-570)) (-4 *2 (-368)) (-4 *4 (-1252 *2))
- (-4 *5 (-1252 (-413 *4))) (-4 *1 (-340 *2 *4 *5 *6))
- (-4 *6 (-347 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-368)) (-4 *3 (-1252 *2)) (-4 *4 (-1252 (-413 *3)))
- (-4 *1 (-340 *2 *3 *4 *5)) (-4 *5 (-347 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-368)) (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4)))
- (-4 *1 (-340 *3 *4 *5 *2)) (-4 *2 (-347 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-419 *4 (-413 *4) *5 *6)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-4 *3 (-368))
- (-4 *1 (-340 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
-(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1286)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458))
- (-5 *2 (-487 *4 *5)) (-5 *1 (-637 *4 *5)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570)))))
- (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-368))
- (-5 *2 (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1276 *5)))))
- (-5 *1 (-987 *5)) (-5 *3 (-695 *5)) (-5 *4 (-1276 *5)))))
-(((*1 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-368)) (-4 *1 (-333 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1252 *4)) (-4 *4 (-1230))
- (-4 *1 (-347 *4 *3 *5)) (-4 *5 (-1252 (-413 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-1276 *1)) (-4 *4 (-174))
- (-4 *1 (-372 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-1276 *1)) (-4 *4 (-174))
- (-4 *1 (-375 *4 *5)) (-4 *5 (-1252 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4))
- (-4 *4 (-1252 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-171 (-320 *4)))
- (-5 *1 (-190 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 (-171 *4))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-171 *3)) (-5 *1 (-1215 *4 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *4))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+ (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3 *4 *4 *3 *5)
(-12 (-5 *4 (-618 *3)) (-5 *5 (-1182 *3))
- (-4 *3 (-13 (-436 *6) (-27) (-1211)))
+ (-4 *3 (-13 (-436 *6) (-27) (-1212)))
(-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
(-5 *2 (-592 *3)) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109))))
((*1 *2 *3 *4 *4 *4 *3 *5)
(-12 (-5 *4 (-618 *3)) (-5 *5 (-413 (-1182 *3)))
- (-4 *3 (-13 (-436 *6) (-27) (-1211)))
+ (-4 *3 (-13 (-436 *6) (-27) (-1212)))
(-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
(-5 *2 (-592 *3)) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-368)) (-4 *5 (-562))
+ (-5 *2
+ (-2 (|:| |minor| (-650 (-928))) (|:| -4302 *3)
+ (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562))
+ (-5 *2 (-413 (-959 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562))
+ (-5 *2 (-413 (-959 *4))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-458))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *5 (-916)) (-5 *1 (-463 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-916)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+(((*1 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))))
(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1291 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
+ (|partial| -12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
(-5 *1 (-670 *3 *4))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-670 *3 *4)) (-5 *1 (-1296 *3 *4))
+ (|partial| -12 (-5 *2 (-670 *3 *4)) (-5 *1 (-1297 *3 *4))
(-4 *3 (-856)) (-4 *4 (-174)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-956 *4 *6 *5)) (-4 *4 (-458))
+ (-4 *5 (-856)) (-4 *6 (-799)) (-5 *1 (-996 *4 *5 *6 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1186)) (-5 *6 (-650 (-618 *3)))
+ (-5 *5 (-618 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *7)))
+ (-4 *7 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-2 (|:| -3585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-563 *7 *3)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *6 (-1168))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-4 *7 (-856))
+ (-4 *9 (-956 *8 *6 *7)) (-4 *6 (-799)) (-4 *8 (-311))
+ (-5 *2 (-650 (-777))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *5 (-777)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-759)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
+ (-5 *1 (-1217 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-331 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-522 *3 *4))
+ (-14 *4 (-570)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
+ (-4 *2 (-693 *3 *4 *5)))))
(((*1 *2 *1 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
(-4 *1 (-311))))
((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2339 *1)))
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2340 *1)))
(-4 *1 (-311)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1253 *6))
+ (-4 *6 (-13 (-27) (-436 *5))) (-4 *5 (-13 (-562) (-1047 (-570))))
+ (-4 *8 (-1253 (-413 *7))) (-5 *2 (-592 *3))
+ (-5 *1 (-558 *5 *6 *7 *8 *3)) (-4 *3 (-347 *6 *7 *8)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
+ (-5 *2 (-1182 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
+ (-5 *2 (-1182 *3)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-562)) (-4 *2 (-1058))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *1))))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
(((*1 *2 *2)
(-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-458))
(-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-455 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))))
+(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1292 (-1186) *3)) (-4 *3 (-1058)) (-5 *1 (-1299 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *1 (-1301 *3 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112))
+ (-5 *1 (-678 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| -2003 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
(((*1 *2 *3)
(-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4))))
+ (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1253 *4))))
((*1 *2 *3 *3 *3)
(-12 (-4 *3 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1252 *3)))))
+ (-5 *2 (-650 *3)) (-5 *1 (-1137 *4 *3)) (-4 *4 (-1253 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-570))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1220 *4 *5 *3 *6)) (-4 *4 (-562)) (-4 *5 (-799))
+ (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 *4))))
+ (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227)))
+ (-5 *1 (-309)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))))
+(((*1 *1 *1 *1) (-4 *1 (-144)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
(-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
(-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
(-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-76 G JACOBG JACGEP))))
(-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-695 *6)) (-5 *5 (-1 (-424 (-1182 *6)) (-1182 *6)))
+ (-4 *6 (-368))
+ (-5 *2
+ (-650
+ (-2 (|:| |outval| *7) (|:| |outmult| (-570))
+ (|:| |outvect| (-650 (-695 *7))))))
+ (-5 *1 (-538 *6 *7 *4)) (-4 *7 (-368)) (-4 *4 (-13 (-368) (-854))))))
+(((*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
+ (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562)) (-4 *7 (-799))
+ (-4 *8 (-856)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *9))))
+ (-5 *3 (-650 *9)) (-4 *1 (-1220 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-562)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -3240 (-650 *8))))
+ (-5 *3 (-650 *8)) (-4 *1 (-1220 *5 *6 *7 *8)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *1 (-694 *3 *4 *5 *2))
+ (-4 *2 (-693 *3 *4 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 *2)) (-4 *4 (-1253 *2))
+ (-4 *2 (-13 (-311) (-10 -8 (-15 -1378 ((-424 $) $)))))
+ (-5 *1 (-505 *2 *4 *5)) (-4 *5 (-415 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
+ (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-4 *2 (-1253 *4)) (-5 *1 (-815 *4 *2 *3 *5))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *3 (-662 *2))
+ (-4 *5 (-662 (-413 *2))))))
+(((*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
+(((*1 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-928))
+ (-5 *2 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129))))))
+ (-5 *1 (-351 *4)) (-4 *4 (-354)))))
(((*1 *2 *2)
(-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
(-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
@@ -12770,679 +13112,545 @@
(-12 (-5 *2 (-650 *7)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
(-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
(-5 *1 (-1116 *3 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5)))
+ (-5 *2 (-112)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))))
+ (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-474))))
+ ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1278))))
+ ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1279)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1109) (-1047 *5)))
+ (-4 *5 (-893 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-938 *4 *5 *6)))))
+(((*1 *1 *1) (-4 *1 (-635)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1) (-4 *1 (-306))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-986 *4 *5 *6 *3)) (-4 *3 (-1074 *4 *5 *6)))))
(((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-112))))
((*1 *2 *3)
(-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112))
(-5 *1 (-362 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-976))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1262 *3 *4 *5)) (-4 *3 (-368)) (-14 *4 (-1186))
+ (-14 *5 *3) (-5 *1 (-323 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1277 *4)) (-4 *4 (-423 *3)) (-4 *3 (-311))
+ (-4 *3 (-562)) (-5 *1 (-43 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-4 *4 (-368)) (-5 *2 (-1277 *1))
+ (-4 *1 (-333 *4))))
+ ((*1 *2) (-12 (-4 *3 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *1))
+ (-4 *1 (-415 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4))
+ (-5 *2 (-1277 *6)) (-5 *1 (-419 *3 *4 *5 *6))
+ (-4 *6 (-13 (-415 *4 *5) (-1047 *4)))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-311)) (-4 *4 (-1001 *3)) (-4 *5 (-1253 *4))
+ (-5 *2 (-1277 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7))
+ (-4 *6 (-415 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-423 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 *4))) (-5 *1 (-534 *4))
+ (-4 *4 (-354)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-570))))
+ (-4 *4 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1874 ($ $ $)))))
+ (-4 *3 (-562)) (-5 *1 (-1256 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109))
(-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *4 (-1109)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
+ (-4 *4 (-1058)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))))
+(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
+(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
+ ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1227))
+ (-4 *5 (-378 *4)) (-4 *2 (-378 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *2 *7)) (-4 *6 (-1058))
+ (-4 *7 (-240 *4 *6)) (-4 *2 (-240 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-413 (-570))))) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
(|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))
(-5 *2 (-384)) (-5 *1 (-207)))))
(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1) (-5 *1 (-829))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-227) (-227) (-227)))
+ (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined"))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227)))
+ (-5 *1 (-703)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-424 *2)) (-4 *2 (-311)) (-5 *1 (-921 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-424 (-959 *6))) (-5 *5 (-1186)) (-5 *3 (-959 *6))
+ (-4 *6 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *6)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 (-928))) (-4 *2 (-368)) (-5 *1 (-153 *4 *2 *5))
+ (-14 *4 (-928)) (-14 *5 (-1002 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4))
+ (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186)))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4))
+ (-4 *4 (-1253 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-732))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 *5)) (-5 *3 (-650 (-777))) (-4 *1 (-746 *4 *5))
+ (-4 *4 (-1058)) (-4 *5 (-856))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058))
+ (-4 *2 (-856))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 (-777))) (-4 *1 (-956 *4 *5 *6))
+ (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *2 (-856))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-4 *2 (-956 *4 (-537 *5) *5))
+ (-5 *1 (-1135 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-856))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-959 *4)) (-5 *1 (-1221 *4))
+ (-4 *4 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
+ ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
+ (-5 *2 (-1044)) (-5 *1 (-762)))))
+(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
+(((*1 *2 *3 *4)
(-12 (-5 *3 (-695 (-413 (-570))))
(-5 *2
(-650
(-2 (|:| |outval| *4) (|:| |outmult| (-570))
(|:| |outvect| (-650 (-695 *4))))))
(-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174))
+ (-4 *4 (-240 (-2426 *5) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2160 *3) (|:| -3011 *4))
+ (-2 (|:| -2160 *3) (|:| -3011 *4))))
+ (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856))
+ (-4 *7 (-956 *2 *4 (-870 *5))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-458) (-148))) (-5 *2 (-424 *3))
+ (-5 *1 (-100 *4 *3)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-13 (-458) (-148)))
+ (-5 *2 (-424 *3)) (-5 *1 (-100 *5 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-97)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
+ (-14 *4 *2))))
(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567))))
((*1 *2 *3)
(-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3))
+ (-4 *3 (-13 (-368) (-148) (-1047 (-570)))) (-5 *1 (-574 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-761)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-849 *4)) (-5 *3 (-618 *4)) (-5 *5 (-112))
+ (-4 *4 (-13 (-1212) (-29 *6)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-226 *6 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
+ ((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
(-5 *2
(-2
(|:| |%term|
- (-2 (|:| |%coef| (-1261 *4 *5 *6))
+ (-2 (|:| |%coef| (-1262 *4 *5 *6))
(|:| |%expon| (-323 *4 *5 *6))
(|:| |%expTerms|
(-650 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4))))))
(|:| |%type| (-1168))))
- (-5 *1 (-1262 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1211) (-436 *3)))
+ (-5 *1 (-1263 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3)))
(-14 *5 (-1186)) (-14 *6 *4))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *1) (-5 *1 (-1277))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1252 (-570))) (-5 *1 (-492 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7)))
- (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-618 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186))) (-5 *5 (-1182 *2))
+ (-4 *2 (-13 (-436 *6) (-27) (-1212)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-618 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1186)))
+ (-5 *5 (-413 (-1182 *2))) (-4 *2 (-13 (-436 *6) (-27) (-1212)))
+ (-4 *6 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
+ (-5 *1 (-566 *6 *2 *7)) (-4 *7 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| -3294 (-424 *3)) (|:| |special| (-424 *3))))
+ (-5 *1 (-733 *5 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5))
+ (-14 *3 (-570)) (-14 *4 (-777)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-650 *1))
+ (-4 *1 (-436 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
+ (-4 *3 (-1109))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-916)) (-4 *5 (-1252 *4)) (-5 *2 (-424 (-1182 *5)))
- (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1225))) (-5 *3 (-1225)) (-5 *1 (-687)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 (-1276 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
+ (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
+ (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3))
+ (-5 *1 (-957 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $))
+ (-15 -4413 (*7 $))))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311))
- (-5 *2 (-650 (-777))) (-5 *1 (-784 *3 *4 *5 *6 *7))
- (-4 *3 (-1252 *6)) (-4 *7 (-956 *6 *4 *5)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1226)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-424 *4) *4)) (-4 *4 (-562)) (-5 *2 (-424 *4))
- (-5 *1 (-425 *4))))
- ((*1 *1 *1) (-5 *1 (-933)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
- ((*1 *1 *1) (-5 *1 (-934)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *4 (-413 (-570))) (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1252 (-570)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-413 (-570)))
+ (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-650 (-1085 *4 *5 *2))) (-4 *4 (-1109))
+ (-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
+ (-4 *2 (-13 (-436 *5) (-893 *4) (-620 (-899 *4))))
+ (-5 *1 (-54 *4 *5 *2))))
((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *4 (-413 (-570))) (-5 *1 (-1030 *3)) (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *2 *2)
+ (-12 (-5 *3 (-650 (-1085 *5 *6 *2))) (-5 *4 (-928)) (-4 *5 (-1109))
+ (-4 *6 (-13 (-1058) (-893 *5) (-620 (-899 *5))))
+ (-4 *2 (-13 (-436 *6) (-893 *5) (-620 (-899 *5))))
+ (-5 *1 (-54 *5 *6 *2)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-442)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *3 (-650 (-266)))
+ (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *1) (-5 *1 (-1278))))
+(((*1 *2 *3)
(|partial| -12
- (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *1 (-1030 *3)) (-4 *3 (-1252 (-413 (-570))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-870 *5))) (-14 *5 (-650 (-1186))) (-4 *6 (-458))
- (-5 *2
- (-2 (|:| |dpolys| (-650 (-249 *5 *6)))
- (|:| |coords| (-650 (-570)))))
- (-5 *1 (-477 *5 *6 *7)) (-5 *3 (-650 (-249 *5 *6))) (-4 *7 (-458)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-4 *3 (-1109))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-695 *2)) (-5 *4 (-570))
- (-4 *2 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *5 (-1252 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1044))
- (-5 *1 (-752)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-474))))
- ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1277))))
- ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1278)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1249 *5 *4)) (-5 *1 (-1184 *4 *5 *6))
- (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1249 *5 *4)) (-5 *1 (-1268 *4 *5 *6))
- (-4 *4 (-1058)) (-14 *5 (-1186)) (-14 *6 *4))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
- (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6)))
- (-5 *1 (-634 *5 *6)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -4410 *6) (|:| |sol?| (-112))) (-570)
- *6))
- (-4 *6 (-368)) (-4 *7 (-1252 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
- (-2 (|:| -1400 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-650 (-227))) (-5 *1 (-206)))))
+(((*1 *2 *1) (-12 (-5 *2 (-965 (-185 (-140)))) (-5 *1 (-337))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))))
+(((*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3383 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1280)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856))
- (-4 *4 (-269 *3)) (-4 *5 (-799)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-650 (-1186)))
- (-5 *2 (-650 (-650 (-384)))) (-5 *1 (-1032)) (-5 *5 (-384))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4)))))
- (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4)))
- (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1302 *4 *5 *6))
- (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
- ((*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1182 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1182 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1252 *4)) (-5 *2 (-650 *1))
- (-4 *1 (-1077 *4 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *2 (-413 (-959 *4))) (-5 *1 (-931 *4 *5 *6 *3))
- (-4 *3 (-956 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5))
- (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *2 (-695 (-413 (-959 *4))))
- (-5 *1 (-931 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5))
- (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *2 (-650 (-413 (-959 *4))))
- (-5 *1 (-931 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5))
- (-4 *5 (-436 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
- (-5 *1 (-159 *4 *5)) (-4 *5 (-436 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
- (-5 *1 (-279 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-305 *4)) (-4 *4 (-306))))
- ((*1 *2 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-4 *5 (-1109)) (-5 *2 (-112))
- (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
- (-5 *1 (-437 *4 *5)) (-4 *5 (-436 *4))))
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011))
+ (-4 *2 (-1058)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-880))
+ (-5 *5 (-928)) (-5 *6 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1281))))
((*1 *2 *3)
- (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
- (-5 *1 (-636 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1211))))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109))
- (-4 *6 (-1109)) (-5 *2 (-1 *6 *5)) (-5 *1 (-690 *4 *5 *6)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
- (-12 (-5 *4 (-570)) (-5 *5 (-1168)) (-5 *6 (-695 (-227)))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-394)) (|:| |fp| (-71 PEDERV))))
- (-5 *10 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-194))))
- ((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-304))))
- ((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-309)))))
-(((*1 *2 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))))
-(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
- ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *1)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *5))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-1058)) (-5 *1 (-695 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-650 *4)) (-4 *4 (-1058)) (-4 *1 (-1132 *3 *4 *5 *6))
- (-4 *5 (-240 *3 *4)) (-4 *6 (-240 *3 *4)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-413 (-959 *6)) (-1175 (-1186) (-959 *6))))
- (-5 *5 (-777)) (-4 *6 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *6)))))
- (-5 *1 (-296 *6)) (-5 *4 (-695 (-413 (-959 *6))))))
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474))
+ (-5 *1 (-1281))))
((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-2 (|:| |eigval| (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5))))
- (|:| |eigmult| (-777)) (|:| |eigvec| (-650 *4))))
- (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5)))))
- (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570))))
- (-4 *5 (-1252 *4))
- (-5 *2 (-2 (|:| -1400 (-413 *5)) (|:| |coeff| (-413 *5))))
- (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
+ (-5 *2 (-474)) (-5 *1 (-1281)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148))
- (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))))
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-997 *5 *6 *7 *8 *3))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-650 *6))) (-4 *6 (-956 *3 *5 *4))
- (-4 *3 (-13 (-311) (-148))) (-4 *4 (-13 (-856) (-620 (-1186))))
- (-4 *5 (-799)) (-5 *1 (-931 *3 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
- ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-753)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1267 *4))
- (-4 *4 (-38 (-413 (-570))))
- (-5 *2 (-1 (-1166 *4) (-1166 *4) (-1166 *4))) (-5 *1 (-1269 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-1074 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-1116 *5 *6 *7 *8 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))))
(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1276 *4)) (-5 *3 (-695 *4)) (-4 *4 (-368))
- (-5 *1 (-673 *4))))
+ (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266))))
+ ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570)))))
((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-368))
- (-4 *5 (-13 (-378 *4) (-10 -7 (-6 -4449))))
- (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4449))))
- (-5 *1 (-674 *4 *5 *2 *3)) (-4 *3 (-693 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-650 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-368))
- (-5 *1 (-820 *2 *3)) (-4 *3 (-662 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-1118 *5 *6 *7 *8))
- (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *8 (-1074 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-597 *5 *6 *7 *8 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-854) (-368))) (-5 *2 (-112)) (-5 *1 (-1070 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570))
- (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219))))
- ((*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493))))
- ((*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570))))
- ((*1 *1 *1) (-4 *1 (-1069))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-695 *11)) (-5 *4 (-650 (-413 (-959 *8))))
- (-5 *5 (-777)) (-5 *6 (-1168)) (-4 *8 (-13 (-311) (-148)))
- (-4 *11 (-956 *8 *10 *9)) (-4 *9 (-13 (-856) (-620 (-1186))))
- (-4 *10 (-799))
- (-5 *2
- (-2
- (|:| |rgl|
- (-650
- (-2 (|:| |eqzro| (-650 *11)) (|:| |neqzro| (-650 *11))
- (|:| |wcond| (-650 (-959 *8)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *8))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *8))))))))))
- (|:| |rgsz| (-570))))
- (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4))
- (-5 *3 (-650 *4)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
+ (-4 *7 (-1253 (-413 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -3699 *3)))
+ (-5 *1 (-568 *5 *6 *7 *3)) (-4 *3 (-347 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
(-5 *2
- (-2 (|:| |ir| (-592 (-413 *6))) (|:| |specpart| (-413 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *1 *1 *1) (-4 *1 (-767))))
+ (-2 (|:| |answer| (-413 *6)) (|:| -3699 (-413 *6))
+ (|:| |specpart| (-413 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-1182 *3)) (-5 *1 (-41 *4 *3))
+ (-4 *3
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4399 ((-1134 *4 (-618 $)) $))
+ (-15 -4413 ((-1134 *4 (-618 $)) $))
+ (-15 -3735 ($ (-1134 *4 (-618 $))))))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-985 *4 *5 *6 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2))
- (-4 *2 (-436 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186))))
- ((*1 *1 *1) (-4 *1 (-161))))
-(((*1 *1) (-5 *1 (-1091))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))))
- (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-650
- (-650
- (-3 (|:| -3503 (-1186))
- (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))))
- (-5 *1 (-1190)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1276 (-1186))) (-5 *3 (-1276 (-459 *4 *5 *6 *7)))
- (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928))
- (-14 *6 (-650 (-1186))) (-14 *7 (-1276 (-695 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-1276 (-459 *4 *5 *6 *7)))
- (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-174)) (-14 *5 (-928))
- (-14 *6 (-650 *2)) (-14 *7 (-1276 (-695 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-459 *3 *4 *5 *6))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186)))
- (-14 *6 (-1276 (-695 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1276 (-1186))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-174)) (-14 *4 (-928)) (-14 *5 (-650 (-1186)))
- (-14 *6 (-1276 (-695 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1186)) (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174))
- (-14 *4 (-928)) (-14 *5 (-650 *2)) (-14 *6 (-1276 (-695 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-459 *2 *3 *4 *5)) (-4 *2 (-174)) (-14 *3 (-928))
- (-14 *4 (-650 (-1186))) (-14 *5 (-1276 (-695 *2))))))
-(((*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))))
+ (-12 (-4 *3 (-1058)) (-4 *4 (-1253 *3)) (-5 *1 (-165 *3 *4 *2))
+ (-4 *2 (-1253 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-916)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-424 (-1182 *7)))
+ (-5 *1 (-913 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5)))
+ (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674)))) (-5 *3 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
(((*1 *1 *1)
- (-12 (-4 *2 (-311)) (-4 *3 (-1001 *2)) (-4 *4 (-1252 *3))
- (-5 *1 (-419 *2 *3 *4 *5)) (-4 *5 (-13 (-415 *3 *4) (-1047 *3))))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1226)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109))
- (-4 *2 (-1226)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-227))
- (-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 *4))))
- (|:| |xValues| (-1103 *4)) (|:| |yValues| (-1103 *4))))
- (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 *4)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1874 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-174)) (-4 *5 (-378 *4))
- (-4 *6 (-378 *4)) (-5 *1 (-694 *4 *5 *6 *2))
- (-4 *2 (-693 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1279)))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-777)) (-5 *1 (-596)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186))
- (-4 *4 (-13 (-562) (-1047 (-570)) (-148))) (-5 *1 (-576 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-965 (-185 (-140)))) (-5 *1 (-337))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1225))) (-5 *1 (-612)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *3 (-174))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1252 *2))))
- ((*1 *1 *1 *1)
(-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-562))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))))
-(((*1 *1) (-5 *1 (-809))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *7)) (-4 *7 (-856))
- (-4 *8 (-956 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1276 (-413 *8)) "failed"))
- (|:| -2331 (-650 (-1276 (-413 *8))))))
- (-5 *1 (-675 *5 *6 *7 *8)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-570)) (-4 *5 (-354)) (-5 *2 (-424 (-1182 (-1182 *5))))
- (-5 *1 (-1224 *5)) (-5 *3 (-1182 (-1182 *5))))))
+ (-4 *4 (-856)) (-4 *2 (-562)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-760)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-227) (-227) (-227)))
+ (-5 *4 (-3 (-1 (-227) (-227) (-227) (-227)) "undefined"))
+ (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227)))
+ (-5 *1 (-703))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-227)))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-703))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1 (-950 (-227)) (-227) (-227)))
+ (-5 *4 (-1103 (-227))) (-5 *5 (-650 (-266))) (-5 *1 (-703)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
- (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2178 *5) (|:| -3428 *5))))
+ (-5 *1 (-813 *4 *5 *3 *6)) (-4 *3 (-662 *5))
+ (-4 *6 (-662 (-413 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
- (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+ (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2178 *4) (|:| -3428 *4))))
+ (-5 *1 (-813 *5 *4 *3 *6)) (-4 *3 (-662 *4))
+ (-4 *6 (-662 (-413 *4)))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1276 (-1276 (-570)))) (-5 *1 (-472)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-695 (-1182 *8))) (-4 *5 (-1058)) (-4 *8 (-1058))
- (-4 *6 (-1252 *5)) (-5 *2 (-695 *6)) (-5 *1 (-507 *5 *6 *7 *8))
- (-4 *7 (-1252 *6)))))
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2178 *5) (|:| -3428 *5))))
+ (-5 *1 (-813 *4 *5 *6 *3)) (-4 *6 (-662 *5))
+ (-4 *3 (-662 (-413 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2178 *4) (|:| -3428 *4))))
+ (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4))
+ (-4 *3 (-662 (-413 *4))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)))) (-4 *3 (-562))
- (-5 *1 (-41 *3 *2)) (-4 *2 (-436 *3))
- (-4 *2
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *3 (-618 $)) $))
- (-15 -4412 ((-1134 *3 (-618 $)) $))
- (-15 -3735 ($ (-1134 *3 (-618 $))))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-112)) (-5 *1 (-304)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-777)) (-5 *3 (-950 *5)) (-4 *5 (-1058))
- (-5 *1 (-1174 *4 *5)) (-14 *4 (-928))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5))
- (-14 *4 (-928)) (-4 *5 (-1058))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-950 *5)) (-4 *5 (-1058))
- (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-799))
- (-4 *3 (-13 (-856) (-10 -8 (-15 -1416 ((-1186) $))))) (-4 *5 (-562))
- (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *3
- (-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
- (-15 -2643 ((-3 $ "failed") (-1186))))))
- (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *6))
- (-4 *6
- (-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
- (-15 -2643 ((-3 $ "failed") (-1186))))))
- (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2))
- (-4 *2 (-956 (-959 *4) *5 *6)))))
-(((*1 *1 *1) (|partial| -4 *1 (-146))) ((*1 *1 *1) (-4 *1 (-354)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-146)) (-4 *1 (-916)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1277)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-928)) (-5 *4 (-227)) (-5 *5 (-570)) (-5 *6 (-880))
- (-5 *2 (-1281)) (-5 *1 (-1277)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5))
- (-14 *4 (-928)) (-4 *5 (-1058)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3)))
- (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-706 *3))
- (-4 *3 (-311)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1033 *3))
- (-4 *3 (-13 (-854) (-368) (-1031)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1252 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368)))
- (-4 *3 (-1252 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3))
- (-4 *3 (-1252 *4)))))
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))))
+(((*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-980)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *8)) (-5 *4 (-777)) (-4 *8 (-956 *5 *7 *6))
+ (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6))
(-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
(-4 *7 (-799))
(-5 *2
(-650
- (-2 (|:| |det| *8) (|:| |rows| (-650 (-570)))
- (|:| |cols| (-650 (-570))))))
- (-5 *1 (-931 *5 *6 *7 *8)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3503 (-1168))))
- (-5 *1 (-828)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1252 (-413 (-570)))) (-5 *1 (-920 *3 *2))
- (-4 *2 (-1252 (-413 *3))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1261 *3 *4 *5)) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368))
- (-14 *4 (-1186)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570))))
- ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562))))
- ((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856))
+ (-2 (|:| -3933 (-777))
+ (|:| |eqns|
+ (-650
+ (-2 (|:| |det| *8) (|:| |rows| (-650 (-570)))
+ (|:| |cols| (-650 (-570))))))
+ (|:| |fgb| (-650 *8)))))
+ (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-777)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *4 *5 *6))
+ (-4 *4 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1226))) (-5 *3 (-1226)) (-5 *1 (-687)))))
+(((*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
+(((*1 *2)
+ (-12 (-5 *2 (-695 (-917 *3))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928))
+ (-14 *4 (-928))))
+ ((*1 *2)
+ (-12 (-5 *2 (-695 *3)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354))
(-14 *4
- (-1 (-112) (-2 (|:| -2159 *3) (|:| -1907 *2))
- (-2 (|:| -2159 *3) (|:| -1907 *2)))))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
- (-5 *1 (-32 *4 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))))
-(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))))
-(((*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1226)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))))
+ (-3 (-1182 *3)
+ (-1277 (-650 (-2 (|:| -2196 *3) (|:| -2160 (-1129)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
+ (-14 *4 (-928)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1198 (-650 *4))) (-4 *4 (-856))
- (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1252 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1219 *2 *3 *4 *5)) (-4 *2 (-562)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *5 (-1074 *2 *3 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570))))
+ (-5 *1 (-309)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-986 *4 *5 *6 *2)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777))))
+ ((*1 *1 *1) (-4 *1 (-408))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1277 (-1277 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4))
+ (-5 *3 (-1182 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
+ (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-413 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-562))
+ (-4 *4 (-1058)) (-4 *2 (-1268 *4)) (-5 *1 (-1271 *4 *5 *6 *2))
+ (-4 *6 (-662 *5)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282))
+ (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1282))
+ (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311))
+ (-5 *2 (-650 (-777))) (-5 *1 (-784 *3 *4 *5 *6 *7))
+ (-4 *3 (-1253 *6)) (-4 *7 (-956 *6 *4 *5)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))))
((*1 *1 *1)
(-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186)))))
@@ -13455,13 +13663,13 @@
(-12 (-14 *2 (-650 (-1186))) (-4 *3 (-174))
(-4 *5 (-240 (-2426 *2) (-777)))
(-14 *6
- (-1 (-112) (-2 (|:| -2159 *4) (|:| -1907 *5))
- (-2 (|:| -2159 *4) (|:| -1907 *5))))
+ (-1 (-112) (-2 (|:| -2160 *4) (|:| -3011 *5))
+ (-2 (|:| -2160 *4) (|:| -3011 *5))))
(-5 *1 (-467 *2 *3 *4 *5 *6 *7)) (-4 *4 (-856))
(-4 *7 (-956 *3 *5 (-870 *2)))))
((*1 *1 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856))))
((*1 *1 *1)
- (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1252 *2))))
+ (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2))))
((*1 *1 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058))))
((*1 *1 *1)
(-12 (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1058))
@@ -13471,60 +13679,61 @@
(-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
(-4 *2 (-856))))
((*1 *1 *1)
- (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
+ (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
(((*1 *1) (-4 *1 (-976))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1874 (-788 *3)) (|:| |coef2| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| -1874 *1) (|:| |coef2| *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1058))
- (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288)))
- (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570))))
+ (-5 *1 (-192)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1151 *3 *4))
+ (-14 *3 (-777)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5))))
+ (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5)))))
+ (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058))))
+ ((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-695 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5)))
+ (-5 *2 (-650 (-650 *4))) (-5 *1 (-346 *3 *4 *5 *6))
+ (-4 *3 (-347 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-4 *3 (-373)) (-5 *2 (-650 (-650 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-799)) (-4 *5 (-856)) (-4 *3 (-562)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1243 (-570))) (-4 *1 (-286 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058))
- (-5 *1 (-1037 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (-4 *4 (-1058))
- (-5 *1 (-1037 *4)))))
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
(((*1 *1) (-5 *1 (-584)))
- ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-869))))
- ((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1281)) (-5 *1 (-869))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-869))))
+ ((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-869))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1281)) (-5 *1 (-869))))
+ (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-869))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-1166 *4))
- (-4 *4 (-1109)) (-4 *4 (-1226)))))
+ (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1166 *4))
+ (-4 *4 (-1109)) (-4 *4 (-1227)))))
(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1226))
+ (-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1227))
(-4 *4 (-378 *2)) (-4 *5 (-378 *2))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2))
- (-4 *5 (-378 *2)) (-4 *2 (-1226))))
+ (-4 *5 (-378 *2)) (-4 *2 (-1227))))
((*1 *1 *1 *2)
- (-12 (-5 *2 "right") (-4 *1 (-120 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-120 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 "right") (-4 *1 (-120 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-120 *3)) (-4 *3 (-1227))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-650 (-570))) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2))
(-14 *4 (-570)) (-14 *5 (-777))))
@@ -13547,14 +13756,14 @@
(-12 (-5 *3 (-1186)) (-5 *2 (-247 (-1168))) (-5 *1 (-216 *4))
(-4 *4
(-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ *3)) (-15 -4131 ((-1281) $))
- (-15 -2919 ((-1281) $)))))))
+ (-10 -8 (-15 -1877 ((-1168) $ *3)) (-15 -4131 ((-1282) $))
+ (-15 -3807 ((-1282) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-998)) (-5 *1 (-216 *3))
(-4 *3
(-13 (-856)
- (-10 -8 (-15 -1876 ((-1168) $ (-1186))) (-15 -4131 ((-1281) $))
- (-15 -2919 ((-1281) $)))))))
+ (-10 -8 (-15 -1877 ((-1168) $ (-1186))) (-15 -4131 ((-1282) $))
+ (-15 -3807 ((-1282) $)))))))
((*1 *2 *1 *3)
(-12 (-5 *3 "count") (-5 *2 (-777)) (-5 *1 (-247 *4)) (-4 *4 (-856))))
((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-247 *3)) (-4 *3 (-856))))
@@ -13562,12 +13771,12 @@
(-12 (-5 *2 "unique") (-5 *1 (-247 *3)) (-4 *3 (-856))))
((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1191)) (-5 *1 (-252))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-290 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226))))
+ (-12 (-4 *1 (-290 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227))))
((*1 *2 *1 *3 *2)
- (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1226))))
+ (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227))))
((*1 *2 *1 *2)
(-12 (-4 *3 (-174)) (-5 *1 (-293 *3 *2 *4 *5 *6 *7))
- (-4 *2 (-1252 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
+ (-4 *2 (-1253 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *2 "failed") *2 *2 *4))))
((*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306))))
@@ -13576,13 +13785,13 @@
((*1 *1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115))))
((*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115))))
((*1 *2 *1 *2 *2)
- (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1230)) (-4 *3 (-1252 *2))
- (-4 *4 (-1252 (-413 *3)))))
+ (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2))
+ (-4 *4 (-1253 (-413 *3)))))
((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-423 *2)) (-4 *2 (-174))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1168)) (-5 *1 (-508))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-52)) (-5 *1 (-638))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1243 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227))))
((*1 *2 *1 *3 *3 *3)
(-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109))))
((*1 *1 *1 *2 *2)
@@ -13600,8 +13809,8 @@
(-12 (-5 *3 (-242 *4 *2)) (-14 *4 (-928)) (-4 *2 (-368))
(-5 *1 (-1002 *4 *2))))
((*1 *2 *1 *3)
- (-12 (-5 *3 "value") (-4 *1 (-1019 *2)) (-4 *2 (-1226))))
- ((*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1226))))
+ (-12 (-5 *3 "value") (-4 *1 (-1019 *2)) (-4 *2 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227))))
((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *2 *6 *7)) (-4 *2 (-1058))
(-4 *6 (-240 *5 *2)) (-4 *7 (-240 *4 *2))))
@@ -13628,29 +13837,38 @@
((*1 *1 *1 *1) (-4 *1 (-1153)))
((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186))))
((*1 *2 *3 *2)
- (-12 (-5 *3 (-413 *1)) (-4 *1 (-1252 *2)) (-4 *2 (-1058))
+ (-12 (-5 *3 (-413 *1)) (-4 *1 (-1253 *2)) (-4 *2 (-1058))
(-4 *2 (-368))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-413 *1)) (-4 *1 (-1252 *3)) (-4 *3 (-1058))
+ (-12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058))
(-4 *3 (-562))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1254 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))))
+ (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))))
((*1 *2 *1 *3)
- (-12 (-5 *3 "last") (-4 *1 (-1264 *2)) (-4 *2 (-1226))))
+ (-12 (-5 *3 "last") (-4 *1 (-1265 *2)) (-4 *2 (-1227))))
((*1 *1 *1 *2)
- (-12 (-5 *2 "rest") (-4 *1 (-1264 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 "rest") (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
((*1 *2 *1 *3)
- (-12 (-5 *3 "first") (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1149 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1109) (-34))) (-4 *6 (-13 (-1109) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1150 *5 *6)))))
+ (-12 (-5 *3 "first") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-928)) (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-798))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1258 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1186))
+ (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-4 *4 (-13 (-29 *6) (-1212) (-966)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -2003 (-650 *4))))
+ (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458))))
((*1 *1 *1 *1) (-4 *1 (-458)))
((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1252 (-570)))))
+ (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570)))))
((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1252 *3))))
+ (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3))))
((*1 *1 *1 *1) (-5 *1 (-777)))
((*1 *2 *2 *2)
(-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311))
@@ -13669,40 +13887,31 @@
((*1 *1 *1 *1) (-5 *1 (-928)))
((*1 *2 *2 *2)
(-12 (-4 *3 (-458)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2))
- (-4 *2 (-1252 *3))))
+ (-4 *2 (-1253 *3))))
((*1 *2 *2 *1)
(-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
(-4 *4 (-856)) (-4 *2 (-458)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
(-4 *1 (-956 *3 *4 *5)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-227) (-227) (-227)))
- (-5 *4 (-1 (-227) (-227) (-227) (-227)))
- (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *1 (-703)))))
-(((*1 *1) (-5 *1 (-565))))
-(((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1208 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1252 *9)) (-4 *7 (-799)) (-4 *8 (-856)) (-4 *9 (-311))
- (-4 *10 (-956 *9 *7 *8))
- (-5 *2
- (-2 (|:| |deter| (-650 (-1182 *10)))
- (|:| |dterm|
- (-650 (-650 (-2 (|:| -2174 (-777)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-650 *6)) (|:| |nlead| (-650 *10))))
- (-5 *1 (-784 *6 *7 *8 *9 *10)) (-5 *3 (-1182 *10)) (-5 *4 (-650 *6))
- (-5 *5 (-650 *10)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058))
- (-5 *1 (-1170 *4)))))
-(((*1 *1 *1) (-4 *1 (-175)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-158))))
- ((*1 *2 *1) (-12 (-5 *2 (-158)) (-5 *1 (-880))))
- ((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856))
+ (-5 *2 (-59 (-650 (-678 *5)))) (-5 *1 (-678 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-986 *5 *6 *7 *8)))))
(((*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))))
((*1 *2 *1)
(-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186)))))
@@ -13714,13 +13923,13 @@
((*1 *2 *1)
(-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2426 *3) (-777)))
(-14 *6
- (-1 (-112) (-2 (|:| -2159 *4) (|:| -1907 *5))
- (-2 (|:| -2159 *4) (|:| -1907 *5))))
+ (-1 (-112) (-2 (|:| -2160 *4) (|:| -3011 *5))
+ (-2 (|:| -2160 *4) (|:| -3011 *5))))
(-4 *2 (-174)) (-5 *1 (-467 *3 *2 *4 *5 *6 *7)) (-4 *4 (-856))
(-4 *7 (-956 *2 *5 (-870 *3)))))
((*1 *2 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1109))))
((*1 *2 *1)
- (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1252 *2))))
+ (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2))))
((*1 *2 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058))))
((*1 *2 *1)
(-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-856))
@@ -13732,44 +13941,30 @@
((*1 *1 *1 *2)
(-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
(-4 *2 (-856)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1230)) (-4 *5 (-1252 *3)) (-4 *6 (-1252 (-413 *5)))
- (-5 *2 (-112)) (-5 *1 (-346 *4 *3 *5 *6)) (-4 *4 (-347 *3 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -1400 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-368)) (-4 *7 (-1252 *6))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-650 (-1186))) (-4 *5 (-458))
(-5 *2
- (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
- (-2 (|:| -1400 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(((*1 *2 *3 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-799)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856))
- (-5 *2 (-112)) (-5 *1 (-455 *4 *5 *6 *7)))))
+ (-2 (|:| |glbase| (-650 (-249 *4 *5))) (|:| |glval| (-650 (-570)))))
+ (-5 *1 (-637 *4 *5)) (-5 *3 (-650 (-249 *4 *5))))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1109)) (-5 *1 (-971 *3 *2)) (-4 *3 (-1109)))))
+ (-12 (-5 *2 (-650 (-950 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-303 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1103 (-849 (-227)))) (-5 *3 (-227)) (-5 *2 (-112))
+ (-5 *1 (-309))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))))
((*1 *2 *1)
(-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109))))
@@ -13777,8 +13972,8 @@
(-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
(-4 *6 (-240 (-2426 *3) (-777)))
(-14 *7
- (-1 (-112) (-2 (|:| -2159 *5) (|:| -1907 *6))
- (-2 (|:| -2159 *5) (|:| -1907 *6))))
+ (-1 (-112) (-2 (|:| -2160 *5) (|:| -3011 *6))
+ (-2 (|:| -2160 *5) (|:| -3011 *6))))
(-5 *2 (-719 *5 *6 *7)) (-5 *1 (-467 *3 *4 *5 *6 *7 *8))
(-4 *5 (-856)) (-4 *8 (-956 *4 *6 (-870 *3)))))
((*1 *2 *1)
@@ -13787,334 +13982,245 @@
((*1 *1 *1)
(-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798))
(-4 *4 (-856)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934))
- (-5 *1 (-932 *3)) (-4 *3 (-620 (-542)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186)) (-5 *2 (-934)) (-5 *1 (-932 *3))
- (-4 *3 (-620 (-542)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-934))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
- (-4 *2 (-13 (-856) (-21))))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))))
-(((*1 *2)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
+ (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266)))
+ (-5 *1 (-264))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-487 *5 *6))) (-5 *3 (-487 *5 *6))
+ (-14 *5 (-650 (-1186))) (-4 *6 (-458)) (-5 *2 (-1277 *6))
+ (-5 *1 (-637 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-4 *5 (-1252 *4)) (-5 *2 (-1281))
- (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1252 (-413 *5))) (-14 *7 *6))))
+ (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-570)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1227))
+ (-4 *3 (-378 *4)) (-4 *5 (-378 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1182 *7)) (-4 *5 (-1058))
+ (-4 *7 (-1058)) (-4 *2 (-1253 *5)) (-5 *1 (-507 *5 *2 *6 *7))
+ (-4 *6 (-1253 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058))
+ (-4 *4 (-1253 *5)) (-5 *2 (-1182 *7)) (-5 *1 (-507 *5 *4 *6 *7))
+ (-4 *6 (-1253 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458))))
((*1 *1 *1 *1) (-4 *1 (-458))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-985 *4 *5 *3 *6)) (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *3 (-856)) (-4 *6 (-1074 *4 *5 *3)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
(((*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))))
((*1 *2 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562))
+ (-4 *7 (-956 *3 *5 *6))
+ (-5 *2 (-2 (|:| -3011 (-777)) (|:| -1442 *8) (|:| |radicand| *8)))
+ (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777))
+ (-4 *8
+ (-13 (-368)
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570))))
+ (-4 *2 (-174)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1166 (-227)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3758
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))
- (-5 *2 (-1044)) (-5 *1 (-309)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -3184 (-777))))
- (-5 *1 (-788 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3184 (-777))))
- (-4 *1 (-1074 *3 *4 *5)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058))
+ (-5 *1 (-1170 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058))
+ (-14 *4 (-1186)) (-14 *5 *3))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058))
+ (-5 *1 (-1038 *4)))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-581 *4 *2))
+ (-4 *2 (-13 (-1212) (-966) (-1148) (-29 *4))))))
+(((*1 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *1)) (-5 *4 (-1277 *1)) (-4 *1 (-645 *5))
+ (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -2042 (-695 *5)) (|:| |vec| (-1277 *5))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058))
+ (-5 *2 (-695 *4)))))
(((*1 *2 *1)
(-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
(-5 *2 (-112))))
((*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227))
- (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
- (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227))
- (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
- (-5 *1 (-266))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278))))
- ((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-570)) (-5 *4 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278))))
- ((*1 *2 *1 *3)
- (-12
- (-5 *3
- (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227))
- (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
- (-5 *2 (-1281)) (-5 *1 (-1278))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3944 (-227))
- (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
- (-5 *1 (-1278))))
- ((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-618 *2))) (-5 *4 (-650 (-1186)))
+ (-4 *2 (-13 (-436 (-171 *5)) (-1011) (-1212))) (-4 *5 (-562))
+ (-5 *1 (-606 *5 *6 *2)) (-4 *6 (-13 (-436 *5) (-1011) (-1212))))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1276 (-650 *3))) (-4 *4 (-311))
- (-5 *2 (-650 *3)) (-5 *1 (-461 *4 *3)) (-4 *3 (-1252 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1252 *5))
- (-4 *7 (-1252 (-413 *6))) (-4 *8 (-347 *5 *6 *7))
- (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112))
- (-5 *1 (-918 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6))
- (-4 *4 (-1252 (-413 (-570)))) (-4 *5 (-1252 (-413 *4)))
- (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-112))
- (-5 *1 (-919 *4 *5 *6)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-565)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1230)) (-4 *3 (-1252 *4))
- (-4 *5 (-1252 (-413 *3))) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+ (|partial| -12 (-5 *5 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-1277 *4))
+ (-5 *1 (-820 *4 *3)) (-4 *3 (-662 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-562) (-1047 (-570)) (-148)))
+ (-5 *2
+ (-2 (|:| -3585 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5)))))
+ (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))))
(((*1 *1 *1) (-4 *1 (-245)))
((*1 *1 *1)
(-12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1252 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-4 *3 (-1253 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
((*1 *1 *1)
- (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1226)))
- (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1226)))))
+ (-2740 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227)))
+ (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1227)))))
((*1 *1 *1) (-4 *1 (-479)))
- ((*1 *2 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
+ ((*1 *2 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
((*1 *1 *1)
(-12 (-5 *1 (-721 *2 *3 *4 *5 *6)) (-4 *2 (-174)) (-4 *3 (-23))
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-368)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1168)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
- (-4 *4 (-1074 *6 *7 *8)) (-5 *2 (-1281))
- (-5 *1 (-782 *6 *7 *8 *4 *5)) (-4 *5 (-1080 *6 *7 *8 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368))
+ (-14 *4 (-1186)) (-14 *5 *3))))
(((*1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-542))) ((*1 *1) (-4 *1 (-728)))
((*1 *1) (-4 *1 (-732)))
((*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109))))
((*1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
-(((*1 *1) (-5 *1 (-131))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4)))))
- (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1302 *5 *6 *7))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4)))
- (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1302 *4 *5 *6))
- (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-695 *5))) (-4 *5 (-311)) (-4 *5 (-1058))
- (-5 *2 (-1276 (-1276 *5))) (-5 *1 (-1038 *5)) (-5 *4 (-1276 *5)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-115)) (-5 *4 (-650 *2)) (-5 *1 (-114 *2))
- (-4 *2 (-1109))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 (-650 *4))) (-4 *4 (-1109))
- (-5 *1 (-114 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109))
- (-5 *1 (-114 *4))))
+ (-12
+ (-5 *3
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *2 (-1044)) (-5 *1 (-309))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-115)) (-5 *2 (-1 *4 (-650 *4)))
- (-5 *1 (-114 *4)) (-4 *4 (-1109))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058))
- (-5 *1 (-720 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
+ (-5 *2 (-1044)) (-5 *1 (-309)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058))
- (-5 *1 (-696 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-956 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1)))
+ (-4 *1 (-1253 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-880))))
+ ((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
+ (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
(((*1 *1) (-4 *1 (-23)))
((*1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-542)))
((*1 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067))))
((*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109))))
((*1 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))))
-(((*1 *1) (-5 *1 (-829))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-333 *4)) (-4 *4 (-368))
- (-5 *2 (-695 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1276 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-695 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-1276 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
- (-4 *5 (-1252 *4)) (-5 *2 (-695 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
- (-4 *5 (-1252 *4)) (-5 *2 (-1276 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-415 *4 *5)) (-4 *4 (-174))
- (-4 *5 (-1252 *4)) (-5 *2 (-695 *4))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-354)) (-4 *5 (-333 *4)) (-4 *6 (-1253 *5))
+ (-5 *2 (-650 *3)) (-5 *1 (-783 *4 *5 *6 *3 *7)) (-4 *3 (-1253 *6))
+ (-14 *7 (-928)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3))
- (-5 *2 (-1276 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-423 *4)) (-4 *4 (-174))
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1220 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
+ (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112))
+ (-5 *6 (-227)) (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-68 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-394)) (|:| |fp| (-73 MSOLVE))))
+ (-5 *2 (-1044)) (-5 *1 (-762)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
(-5 *2 (-695 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1276 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-695 *5))) (-5 *3 (-695 *5)) (-4 *5 (-368))
- (-5 *2 (-1276 *5)) (-5 *1 (-1095 *5)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (|has| *1 (-6 -4449)) (-4 *1 (-378 *3))
- (-4 *3 (-1226)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
- (-4 *3 (-1252 (-171 *2))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-413 (-570)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))))
+ (-5 *1 (-319 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))
+ (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *5 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-298 *3)) (-5 *5 (-413 (-570)))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *6 *3))))
((*1 *2 *3 *4 *5 *6)
(-12 (-5 *3 (-1 *8 (-413 (-570)))) (-5 *4 (-298 *8))
- (-5 *5 (-1243 (-413 (-570)))) (-5 *6 (-413 (-570)))
- (-4 *8 (-13 (-27) (-1211) (-436 *7)))
+ (-5 *5 (-1244 (-413 (-570)))) (-5 *6 (-413 (-570)))
+ (-4 *8 (-13 (-27) (-1212) (-436 *7)))
(-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *7 *8))))
((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-413 (-570))))
- (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1211) (-436 *8)))
+ (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-413 (-570))))
+ (-5 *7 (-413 (-570))) (-4 *3 (-13 (-27) (-1212) (-436 *8)))
(-4 *8 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *8 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1259 *4 *3))
- (-4 *3 (-1236 *4)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
+ (-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1260 *4 *3))
+ (-4 *3 (-1237 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
+ (-5 *2 (-1277 (-650 (-2 (|:| -2196 *4) (|:| -2160 (-1129))))))
+ (-5 *1 (-351 *4)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| -2959)) (-5 *2 (-112)) (-5 *1 (-623))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -1632)) (-5 *2 (-112)) (-5 *1 (-623))))
+ (-12 (-5 *3 (|[\|\|]| -1633)) (-5 *2 (-112)) (-5 *1 (-623))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -1889)) (-5 *2 (-112)) (-5 *1 (-623))))
+ (-12 (-5 *3 (|[\|\|]| -1890)) (-5 *2 (-112)) (-5 *1 (-623))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| -1594)) (-5 *2 (-112)) (-5 *1 (-697 *4))
(-4 *4 (-619 (-868)))))
@@ -14166,7 +14272,7 @@
((*1 *2 *1 *3)
(-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-531))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1287))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1288))) (-5 *2 (-112))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1075))) (-5 *2 (-112))))
((*1 *2 *1 *3)
@@ -14184,7 +14290,7 @@
((*1 *2 *1 *3)
(-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-139))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1286))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1287))) (-5 *2 (-112))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-682))) (-5 *2 (-112))))
((*1 *2 *1 *3)
@@ -14199,450 +14305,431 @@
(-12 (-5 *3 (|[\|\|]| (-227))) (-5 *2 (-112)) (-5 *1 (-1191))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)) (-5 *1 (-1191)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-695 *5)) (-4 *5 (-1058)) (-5 *1 (-1063 *3 *4 *5))
- (-14 *3 (-777)) (-14 *4 (-777)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -1496 (-777))))
+ (-5 *1 (-788 *3)) (-4 *3 (-1058))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1496 (-777))))
+ (-4 *1 (-1074 *3 *4 *5)))))
(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
- (-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 *3 (-650 *1)))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
- (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-227)) (-5 *3 (-777)) (-5 *1 (-228))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-171 (-227))) (-5 *3 (-777)) (-5 *1 (-228))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *6 (-227))
+ (-5 *3 (-570)) (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1186)) (-5 *6 (-112))
+ (-4 *7 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-4 *3 (-13 (-1212) (-966) (-29 *7)))
+ (-5 *2
+ (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-221 *7 *3)) (-5 *5 (-849 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *8 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-650 *8))
+ (|:| |towers| (-650 (-1036 *5 *6 *7 *8)))))
+ (-5 *1 (-1036 *5 *6 *7 *8)) (-5 *3 (-650 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *8 (-1074 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-650 *8))
+ (|:| |towers| (-650 (-1155 *5 *6 *7 *8)))))
+ (-5 *1 (-1155 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-570)) (-4 *5 (-13 (-458) (-1047 *4) (-645 *4)))
(-5 *2 (-52)) (-5 *1 (-319 *5 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *5)))))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))
+ (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *5 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *6)))
+ (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-458) (-1047 *5) (-645 *5))) (-5 *5 (-570))
(-5 *2 (-52)) (-5 *1 (-319 *6 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1243 (-570)))
- (-4 *7 (-13 (-27) (-1211) (-436 *6)))
+ (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1244 (-570)))
+ (-4 *7 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *6 *7))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-570)))
- (-4 *3 (-13 (-27) (-1211) (-436 *7)))
+ (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-570)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *7)))
(-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *7 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-570)) (-4 *4 (-1058)) (-4 *1 (-1238 *4 *3))
- (-4 *3 (-1267 *4))))
+ (-12 (-5 *2 (-570)) (-4 *4 (-1058)) (-4 *1 (-1239 *4 *3))
+ (-4 *3 (-1268 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1259 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1236 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3))
- (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311))
- (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 *7)))
- (-5 *1 (-748 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-424 *1)) (-4 *1 (-956 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-458)) (-5 *2 (-424 *3))
- (-5 *1 (-988 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458))
- (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7))))
- (-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1230))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-1255 *4 *3))
- (-4 *3 (-13 (-1252 *4) (-562) (-10 -8 (-15 -1874 ($ $ $)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-14 *5 (-650 (-1186)))
- (-5 *2
- (-650 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6)))))
- (-5 *1 (-1302 *4 *5 *6)) (-14 *6 (-650 (-1186))))))
+ (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410))
+ (-5 *2 (-928)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-620 (-899 *3))) (-4 *3 (-893 *3)) (-4 *3 (-458))
+ (-5 *1 (-1218 *3 *2)) (-4 *2 (-620 (-899 *3))) (-4 *2 (-893 *3))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124)))
((*1 *1 *1 *1) (-5 *1 (-1129))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-775))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
- (-5 *1 (-571))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-775)) (-5 *4 (-1072))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
- (-5 *1 (-571))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-793)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |fn| (-320 (-227)))
- (|:| -3758 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))
- (|:| |extra| (-1044))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-793)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))
- (|:| |extra| (-1044))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-806)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-814))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-811))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-814)) (-5 *4 (-1072))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-811))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-845)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))
- (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-845)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-847))
+(((*1 *2 *3 *2)
+ (-12
(-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-846))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-847)) (-5 *4 (-1072))
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227))
+ (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
+ (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2)
+ (-12
(-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-846))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-902)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |pde| (-650 (-320 (-227))))
- (|:| |constraints|
- (-650
- (-2 (|:| |start| (-227)) (|:| |finish| (-227))
- (|:| |grid| (-777)) (|:| |boundaryType| (-570))
- (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227))))))
- (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168))
- (|:| |tol| (-227))))
- (-5 *2 (-2 (|:| -1788 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-905))
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227))
+ (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
+ (-5 *1 (-266))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *3 *3 *4 *4 *4)
+ (-12 (-5 *3 (-570)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227))
+ (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
+ (-5 *2 (-1282)) (-5 *1 (-1279))))
+ ((*1 *2 *1)
+ (-12
(-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-904))))
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -3094 (-227))
+ (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
+ (-5 *1 (-1279))))
+ ((*1 *2 *1 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *4 (-650 (-1186)))
+ (-5 *2 (-695 (-320 (-227)))) (-5 *1 (-207))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-905)) (-5 *4 (-1072))
- (-5 *2
- (-2 (|:| -1788 (-384)) (|:| -3503 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-904)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *1 (-1137 *3 *2)) (-4 *3 (-1252 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4)))
- (-5 *1 (-1197 *4)) (-4 *4 (-856)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
+ (-12 (-4 *5 (-1109)) (-4 *6 (-907 *5)) (-5 *2 (-695 *6))
+ (-5 *1 (-698 *5 *6 *3 *4)) (-4 *3 (-378 *6))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-760)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1044))
+ (-5 *1 (-755)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-650 *11)) (-5 *5 (-650 (-1182 *9)))
+ (-5 *6 (-650 *9)) (-5 *7 (-650 *12)) (-5 *8 (-650 (-777)))
+ (-4 *11 (-856)) (-4 *9 (-311)) (-4 *12 (-956 *9 *10 *11))
+ (-4 *10 (-799)) (-5 *2 (-650 (-1182 *12)))
+ (-5 *1 (-713 *10 *11 *9 *12)) (-5 *3 (-1182 *12)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
+ (-5 *2 (-650 (-650 (-650 (-950 *3))))))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *5)) (-4 *5 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
- (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *4)))))
+ (-5 *1 (-319 *4 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-777)) (-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570))))
(-5 *2 (-52)) (-5 *1 (-319 *5 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *5)))))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1211) (-436 *5)))
+ (-12 (-5 *4 (-298 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *5 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-298 *3)) (-5 *5 (-777))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-319 *6 *3))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 (-570))) (-5 *4 (-298 *6))
- (-4 *6 (-13 (-27) (-1211) (-436 *5)))
+ (-4 *6 (-13 (-27) (-1212) (-436 *5)))
(-4 *5 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-1186)) (-5 *5 (-298 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *6 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1243 (-777)))
- (-4 *7 (-13 (-27) (-1211) (-436 *6)))
+ (-12 (-5 *3 (-1 *7 (-570))) (-5 *4 (-298 *7)) (-5 *5 (-1244 (-777)))
+ (-4 *7 (-13 (-27) (-1212) (-436 *6)))
(-4 *6 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *6 *7))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1243 (-777)))
- (-4 *3 (-13 (-27) (-1211) (-436 *7)))
+ (-12 (-5 *4 (-1186)) (-5 *5 (-298 *3)) (-5 *6 (-1244 (-777)))
+ (-4 *3 (-13 (-27) (-1212) (-436 *7)))
(-4 *7 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
(-5 *1 (-465 *7 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1238 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1267 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4))
- (-5 *1 (-270)))))
+ (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1277 (-650 *3))) (-4 *4 (-311))
+ (-5 *2 (-650 *3)) (-5 *1 (-461 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231))
+ (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))))
+(((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
+ (-4 *3 (-1253 *4)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
(-4 *4 (-856)))))
-(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-777)) (-5 *3 (-950 *4)) (-4 *1 (-1143 *4))
- (-4 *4 (-1058))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-950 (-227))) (-5 *2 (-1281))
- (-5 *1 (-1278)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4))
- (-4 *2 (-1252 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-4 *4 (-458))
- (-5 *2 (-650 (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4)))))
- (-5 *1 (-296 *4)))))
-(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3)) (-5 *6 (-1182 *3))
- (-4 *3 (-13 (-436 *7) (-27) (-1211)))
- (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109))))
- ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-618 *3)) (-5 *5 (-650 *3))
- (-5 *6 (-413 (-1182 *3))) (-4 *3 (-13 (-436 *7) (-27) (-1211)))
- (-4 *7 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-566 *7 *3 *8)) (-4 *8 (-1109)))))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))))
(((*1 *1) (-5 *1 (-334))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-950 (-227)))))
- (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1243 (-570))))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *2 (-1044)) (-5 *1 (-755))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-227))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *8 (-394)) (-5 *2 (-1044)) (-5 *1 (-755)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))
+ (-4 *2 (-458))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2))
+ (-4 *4 (-1253 (-413 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)) (-4 *3 (-458))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-1173 *3 *2))
+ (-4 *2 (-1253 *3)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
+ (-4 *3 (-1109)))))
(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-777)) (-4 *6 (-1109)) (-4 *3 (-907 *6))
- (-5 *2 (-695 *3)) (-5 *1 (-698 *6 *3 *7 *4)) (-4 *7 (-378 *3))
- (-4 *4 (-13 (-378 *6) (-10 -7 (-6 -4448)))))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-341 *5 *6 *7 *8)) (-4 *5 (-436 *4)) (-4 *6 (-1253 *5))
+ (-4 *7 (-1253 (-413 *6))) (-4 *8 (-347 *5 *6 *7))
+ (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-112))
+ (-5 *1 (-918 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+ (-12 (-5 *3 (-341 (-413 (-570)) *4 *5 *6))
+ (-4 *4 (-1253 (-413 (-570)))) (-4 *5 (-1253 (-413 *4)))
+ (-4 *6 (-347 (-413 (-570)) *4 *5)) (-5 *2 (-112))
+ (-5 *1 (-919 *4 *5 *6)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
+ (-5 *1 (-754)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-1276 (-695 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-1276 (-695 *4))) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1276 (-695 *3)))))
+ (-12 (-4 *4 (-458))
+ (-5 *2
+ (-650
+ (-2 (|:| |eigval| (-3 (-413 (-959 *4)) (-1175 (-1186) (-959 *4))))
+ (|:| |geneigvec| (-650 (-695 (-413 (-959 *4))))))))
+ (-5 *1 (-296 *4)) (-5 *3 (-695 (-413 (-959 *4)))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-650 *5) *6))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *6 (-1253 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-659 (-413 *7))) (-5 *4 (-1 (-650 *6) *7))
+ (-5 *5 (-1 (-424 *7) *7))
+ (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *7 (-1253 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368))
- (-5 *2 (-1276 (-695 (-413 (-959 *5))))) (-5 *1 (-1095 *5))
- (-5 *4 (-695 (-413 (-959 *5))))))
+ (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-650 *5) *6))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *6 (-1253 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-660 *7 (-413 *7))) (-5 *4 (-1 (-650 *6) *7))
+ (-5 *5 (-1 (-424 *7) *7))
+ (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-4 *7 (-1253 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-659 (-413 *5))) (-4 *5 (-1253 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-1186))) (-4 *5 (-368))
- (-5 *2 (-1276 (-695 (-959 *5)))) (-5 *1 (-1095 *5))
- (-5 *4 (-695 (-959 *5)))))
+ (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-424 *6) *6))
+ (-4 *6 (-1253 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368))
- (-5 *2 (-1276 (-695 *4))) (-5 *1 (-1095 *4)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
+ (-12 (-5 *3 (-660 *5 (-413 *5))) (-4 *5 (-1253 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-424 *6) *6))
+ (-4 *6 (-1253 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
+ (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))))
(((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1277))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1277))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1277))))
- ((*1 *2 *1 *2 *3)
(-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1278))))
((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2339 *1)))
- (-4 *1 (-858 *3)))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-650 (-413 *5))) (-5 *1 (-1025 *4 *5))
+ (-5 *3 (-413 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-856)) (-4 *5 (-916)) (-4 *6 (-799))
+ (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-424 (-1182 *8)))
+ (-5 *1 (-913 *5 *6 *7 *8)) (-5 *4 (-1182 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5)))
+ (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
(((*1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 (-413 (-959 *6))))
- (-5 *3 (-413 (-959 *6)))
- (-4 *6 (-13 (-562) (-1047 (-570)) (-148)))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-576 *6)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 *2)))
(-5 *2 (-899 *3)) (-5 *1 (-1085 *3 *4 *5))
(-4 *5 (-13 (-436 *4) (-893 *3) (-620 *2))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -3331 *1) (|:| -2785 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -3331 *3) (|:| -2785 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *3 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
+ (-5 *1 (-455 *4 *3 *5 *6)) (-4 *6 (-956 *4 *3 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1276 (-650 (-2 (|:| -2195 *4) (|:| -2159 (-1129))))))
- (-4 *4 (-354)) (-5 *2 (-1281)) (-5 *1 (-534 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7))))
- (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-997 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3593 *7))))
- (-4 *6 (-1074 *3 *4 *5)) (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-1116 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2)
- (-12 (-5 *2 (-1276 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4))
- (-14 *3 (-928)) (-14 *4 (-928)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1252 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1226)))))
+ (-12 (-5 *4 (-1 (-1166 *3))) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3))
+ (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -3585 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148)))
+ (-5 *1 (-405 *3 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282))
+ (-5 *1 (-1189))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282))
+ (-5 *1 (-1189)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1227))
+ (-4 *5 (-378 *4)) (-4 *2 (-378 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-1062 *4 *5 *6 *7 *2)) (-4 *6 (-1058))
+ (-4 *7 (-240 *5 *6)) (-4 *2 (-240 *4 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3290 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-565)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-112)))))
+ (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3 *1)
(|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| -2013 *3) (|:| -2223 *4))))))
+ (-5 *2 (-2 (|:| -2013 *3) (|:| -2224 *4))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
+ (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 *9)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458)) (-4 *6 (-799))
+ (-4 *7 (-856)) (-5 *2 (-777)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1109)) (-4 *6 (-1109))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-690 *4 *5 *6)) (-4 *5 (-1109)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-368)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-527 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
- (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-266))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174))))
- ((*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1277))))
- ((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-1278)))))
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1282))
+ (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
+ (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-4 *3 (-372 *4))))
+ ((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
+ (-5 *2 (-487 *4 *5)) (-5 *1 (-951 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-413 *5)) (-4 *4 (-1230)) (-4 *5 (-1252 *4))
- (-5 *1 (-149 *4 *5 *2)) (-4 *2 (-1252 *3))))
+ (-12 (-5 *3 (-413 *5)) (-4 *4 (-1231)) (-4 *5 (-1253 *4))
+ (-5 *1 (-149 *4 *5 *2)) (-4 *2 (-1253 *3))))
((*1 *2 *3)
(-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570)))
(-5 *1 (-192))))
((*1 *2 *2 *3 *4)
(-12 (-5 *2 (-695 (-320 (-227)))) (-5 *3 (-650 (-1186)))
- (-5 *4 (-1276 (-320 (-227)))) (-5 *1 (-207))))
+ (-5 *4 (-1277 (-320 (-227)))) (-5 *1 (-207))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-650 (-298 *3))) (-4 *3 (-313 *3)) (-4 *3 (-1109))
- (-4 *3 (-1226)) (-5 *1 (-298 *3))))
+ (-4 *3 (-1227)) (-5 *1 (-298 *3))))
((*1 *1 *1 *1)
- (-12 (-4 *2 (-313 *2)) (-4 *2 (-1109)) (-4 *2 (-1226))
+ (-12 (-4 *2 (-313 *2)) (-4 *2 (-1109)) (-4 *2 (-1227))
(-5 *1 (-298 *2))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-115)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306))))
@@ -14703,10 +14790,10 @@
(-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109))
(-4 *3 (-620 (-542)))))
((*1 *1 *1 *2 *3)
- (-12 (-4 *1 (-520 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1226))))
+ (-12 (-4 *1 (-520 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1227))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-650 *4)) (-5 *3 (-650 *5)) (-4 *1 (-520 *4 *5))
- (-4 *4 (-1109)) (-4 *5 (-1226))))
+ (-4 *4 (-1109)) (-4 *5 (-1227))))
((*1 *2 *1 *2)
(-12 (-5 *2 (-839 *3)) (-4 *3 (-368)) (-5 *1 (-724 *3))))
((*1 *2 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368))))
@@ -14726,61 +14813,80 @@
((*1 *2 *2 *3)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1254 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
(|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1166 *3)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-759)))))
-(((*1 *2 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1105))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562))
+ (|partial| -12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562))
(-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1264 *3)) (-4 *3 (-1226))))
- ((*1 *2 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
+ (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *6))
+ (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-249 *3 *4))
+ (-14 *3 (-650 (-1186))) (-4 *4 (-1058))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-570))) (-14 *3 (-650 (-1186)))
+ (-5 *1 (-460 *3 *4 *5)) (-4 *4 (-1058))
+ (-4 *5 (-240 (-2426 *3) (-777)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-487 *3 *4))
+ (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-1168)) (-4 *1 (-369 *2 *4)) (-4 *2 (-1109))
(-4 *4 (-1109))))
((*1 *1 *2)
(-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
- (-5 *2 (-1182 *3))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-347 *4 *3 *5)) (-4 *4 (-1231)) (-4 *3 (-1253 *4))
+ (-4 *5 (-1253 (-413 *3))) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
- (-5 *2 (-1182 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1109) (-1047 *5)))
- (-4 *5 (-893 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-938 *4 *5 *6)))))
+ (-12 (-4 *4 (-13 (-368) (-854)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -2773 (-424 *3))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1211))))))
+ (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
+ (-4 *2 (-1253 (-171 *3))))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *1)
(-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
(-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
(-4 *4 (-13 (-1109) (-34))))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
+ (-5 *1 (-911 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2314 (-650 (-227)))))
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))
(-5 *2 (-650 (-1186))) (-5 *1 (-270))))
((*1 *2 *3)
(-12 (-5 *3 (-1182 *7)) (-4 *7 (-956 *6 *4 *5)) (-4 *4 (-799))
@@ -14802,7 +14908,7 @@
(-5 *1 (-957 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $)))))))
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))))
((*1 *2 *1)
(-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798))
(-4 *5 (-856)) (-5 *2 (-650 *5))))
@@ -14812,74 +14918,47 @@
((*1 *2 *3)
(-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-1186)))
(-5 *1 (-1052 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 (-928))) (-4 *2 (-368)) (-5 *1 (-153 *4 *2 *5))
- (-14 *4 (-928)) (-14 *5 (-1002 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4))
- (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4))
- (-4 *4 (-1252 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-732))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 *5)) (-5 *3 (-650 (-777))) (-4 *1 (-746 *4 *5))
- (-4 *4 (-1058)) (-4 *5 (-856))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058))
- (-4 *2 (-856))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 *6)) (-5 *3 (-650 (-777))) (-4 *1 (-956 *4 *5 *6))
- (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *6 (-856))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *2 (-856))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *2 (-956 *4 (-537 *5) *5))
- (-5 *1 (-1135 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-856))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-959 *4)) (-5 *1 (-1220 *4))
- (-4 *4 (-1058)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-761)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5))
- (-14 *3 (-570)) (-14 *4 (-777)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-1186)) (-5 *3 (-440)) (-4 *5 (-1109))
(-5 *1 (-1115 *5 *4)) (-4 *4 (-436 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-442)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-1279)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266))))
- ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
+ ((*1 *1 *1) (-5 *1 (-868))))
(((*1 *2 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1252 (-570))) (-5 *1 (-492 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570))))
- (-5 *1 (-309)))))
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-426 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1212) (-436 *3)))
+ (-14 *4 (-1186)) (-14 *5 *2)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-4 *2 (-13 (-27) (-1212) (-436 *3) (-10 -8 (-15 -3735 ($ *4)))))
+ (-4 *4 (-854))
+ (-4 *5
+ (-13 (-1255 *2 *4) (-368) (-1212)
+ (-10 -8 (-15 -3447 ($ $)) (-15 -3722 ($ $)))))
+ (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186))
+ (-14 *4 *2))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -3585 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1253 *7))
+ (-5 *3 (-413 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-580 *7 *8)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1182 (-413 (-1182 *2)))) (-5 *4 (-618 *2))
- (-4 *2 (-13 (-436 *5) (-27) (-1211)))
+ (-4 *2 (-13 (-436 *5) (-27) (-1212)))
(-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
(-5 *1 (-566 *5 *2 *6)) (-4 *6 (-1109))))
((*1 *1 *2 *3)
@@ -14893,7 +14972,7 @@
(-4 *6 (-1058))
(-4 *2
(-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $)) (-15 -4412 (*7 $)))))
+ (-10 -8 (-15 -3735 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))
(-5 *1 (-957 *5 *4 *6 *7 *2)) (-4 *7 (-956 *6 *5 *4))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-413 (-1182 (-413 (-959 *5))))) (-5 *4 (-1186))
@@ -14910,13 +14989,13 @@
(-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3))
(-4 *3 (-620 (-542))))))
(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4448)) (-4 *1 (-152 *2)) (-4 *2 (-1226))
+ (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227))
(-4 *2 (-1109))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *3))
- (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3))
+ (-4 *3 (-1227))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227))))
((*1 *1 *2 *1 *3)
(-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109))
(-5 *1 (-743 *4))))
@@ -14925,512 +15004,280 @@
((*1 *1 *2 *1)
(-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
(-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281))
- (-5 *1 (-997 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-1281))
- (-5 *1 (-1116 *4 *5 *6 *7 *8)) (-4 *8 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-413 (-959 *5)) (-1175 (-1186) (-959 *5))))
- (-4 *5 (-458)) (-5 *2 (-650 (-695 (-413 (-959 *5)))))
- (-5 *1 (-296 *5)) (-5 *4 (-695 (-413 (-959 *5)))))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-303 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1103 (-849 (-227)))) (-5 *3 (-227)) (-5 *2 (-112))
- (-5 *1 (-309))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112))
- (-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058))
- (-5 *1 (-1170 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-570)) (-5 *1 (-1268 *3 *4 *5)) (-4 *3 (-1058))
- (-14 *4 (-1186)) (-14 *5 *3))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211))))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
- ((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-562))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *5 *3)) (-4 *3 (-1252 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1109)) (-4 *5 (-1109))
- (-5 *2 (-1 *5)) (-5 *1 (-689 *4 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-148))
+ (-4 *3 (-311)) (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-986 *3 *4 *5 *6)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5)))
+ (-5 *2 (-777)) (-5 *1 (-346 *3 *4 *5 *6)) (-4 *3 (-347 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))))
+(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
(((*1 *2)
(-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
(-4 *3 (-372 *4))))
((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
- (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *2 (-650 (-227))) (-5 *1 (-309)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 (-570)))))
- (-5 *1 (-366 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109))
- (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 (-777)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| -3738 *3) (|:| -1907 (-570)))))
- (-5 *1 (-424 *3)) (-4 *3 (-562)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-5 *2 (-570)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227))) (-5 *1 (-709 *3))
- (-4 *3 (-620 (-542)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227) (-227)))
- (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148)))
- (-5 *1 (-1246 *4 *2)) (-4 *2 (-1252 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044))
- (-5 *1 (-760)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-1289 *4 *5 *6 *7)))
- (-5 *1 (-1289 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-650 *9)) (-5 *4 (-1 (-112) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1074 *6 *7 *8)) (-4 *6 (-562))
- (-4 *7 (-799)) (-4 *8 (-856)) (-5 *2 (-650 (-1289 *6 *7 *8 *9)))
- (-5 *1 (-1289 *6 *7 *8 *9)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4448)) (-4 *1 (-495 *4))
- (-4 *4 (-1226)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-243))))
+ (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *1 *1 *1) (-4 *1 (-976))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-799)) (-4 *4 (-856)) (-4 *5 (-311))
+ (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1182 *6)) (-4 *6 (-956 *5 *3 *4)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *5 (-311)) (-5 *1 (-923 *3 *4 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1281)) (-5 *1 (-243)))))
-(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1211))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-1276 *3))
- (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3))
- (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4448)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-650 *8))) (-5 *3 (-650 *8))
- (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562)) (-4 *6 (-799))
- (-4 *7 (-856)) (-5 *2 (-112)) (-5 *1 (-986 *5 *6 *7 *8)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-368))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-5 *1 (-456 *4 *5 *6 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-368))
- (-5 *2
- (-2 (|:| R (-695 *6)) (|:| A (-695 *6)) (|:| |Ainv| (-695 *6))))
- (-5 *1 (-987 *6)) (-5 *3 (-695 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *6 *4 *5))
+ (-5 *1 (-923 *4 *5 *6 *2)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-4 *6 (-311)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562))
+ (-4 *3 (-1227)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1168)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *4 (-1074 *6 *7 *8)) (-5 *2 (-1282))
+ (-5 *1 (-782 *6 *7 *8 *4 *5)) (-4 *5 (-1080 *6 *7 *8 *4)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
- (-249 *4 (-413 (-570)))))
- (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112))
- (-5 *1 (-511 *4 *5)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-347 *4 *5 *6)) (-4 *4 (-1231))
+ (-4 *5 (-1253 *4)) (-4 *6 (-1253 (-413 *5)))
+ (-5 *2 (-2 (|:| |num| (-695 *5)) (|:| |den| *5))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
(-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3))))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-777)) (-4 *5 (-368)) (-5 *2 (-176 *6))
+ (-5 *1 (-873 *5 *4 *6)) (-4 *4 (-1268 *5)) (-4 *6 (-1253 *5)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-1182 *5))) (-5 *3 (-1182 *5))
- (-4 *5 (-167 *4)) (-4 *4 (-551)) (-5 *1 (-150 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 *3)) (-4 *3 (-1252 *5))
- (-4 *5 (-1252 *4)) (-4 *4 (-354)) (-5 *1 (-363 *4 *5 *3))))
+ (-12 (-4 *4 (-799))
+ (-4 *3 (-13 (-856) (-10 -8 (-15 -1417 ((-1186) $))))) (-4 *5 (-562))
+ (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3))))
((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-1182 (-570)))) (-5 *3 (-1182 (-570)))
- (-5 *1 (-578))))
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799))
+ (-4 *3
+ (-13 (-856)
+ (-10 -8 (-15 -1417 ((-1186) $))
+ (-15 -2643 ((-3 $ "failed") (-1186))))))
+ (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3))))
((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-650 (-1182 *1))) (-5 *3 (-1182 *1))
- (-4 *1 (-916)))))
+ (-12 (-5 *3 (-650 *6))
+ (-4 *6
+ (-13 (-856)
+ (-10 -8 (-15 -1417 ((-1186) $))
+ (-15 -2643 ((-3 $ "failed") (-1186))))))
+ (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2))
+ (-4 *2 (-956 (-959 *4) *5 *6)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
+(((*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-1276 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4))
- (-5 *1 (-1038 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))))
-(((*1 *1) (-5 *1 (-142))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
- (-4 *4 (-13 (-1109) (-34))))))
+ (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
+ (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
+(((*1 *1)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -3585 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1253 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-243))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1282)) (-5 *1 (-243)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3)))
+ (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3389 *1) (|:| -3831 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3389 *3) (|:| -3831 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
+ (-5 *1 (-617 *2 *4)))))
+(((*1 *1) (-5 *1 (-131))))
+(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-413 (-959 (-570)))))
- (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4))
- (-4 *4 (-13 (-854) (-368)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-298 (-413 (-959 (-570))))))
- (-5 *2 (-650 (-650 (-298 (-959 *4))))) (-5 *1 (-385 *4))
- (-4 *4 (-13 (-854) (-368)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 (-298 (-959 *4))))
- (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-298 (-413 (-959 (-570)))))
- (-5 *2 (-650 (-298 (-959 *4)))) (-5 *1 (-385 *4))
- (-4 *4 (-13 (-854) (-368)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1186))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-4 *4 (-13 (-29 *6) (-1211) (-966)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -2331 (-650 *4))))
- (-5 *1 (-658 *6 *4 *3)) (-4 *3 (-662 *4))))
- ((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *2))
- (-4 *2 (-13 (-29 *6) (-1211) (-966)))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *1 (-658 *6 *2 *3)) (-4 *3 (-662 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *5)) (-4 *5 (-368))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1276 *5) "failed"))
- (|:| -2331 (-650 (-1276 *5)))))
- (-5 *1 (-673 *5)) (-5 *4 (-1276 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1276 *5) "failed"))
- (|:| -2331 (-650 (-1276 *5)))))
- (-5 *1 (-673 *5)) (-5 *4 (-1276 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 *5)) (-4 *5 (-368))
- (-5 *2
- (-650
- (-2 (|:| |particular| (-3 (-1276 *5) "failed"))
- (|:| -2331 (-650 (-1276 *5))))))
- (-5 *1 (-673 *5)) (-5 *4 (-650 (-1276 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368))
- (-5 *2
- (-650
- (-2 (|:| |particular| (-3 (-1276 *5) "failed"))
- (|:| -2331 (-650 (-1276 *5))))))
- (-5 *1 (-673 *5)) (-5 *4 (-650 (-1276 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449))))
- (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4449))))
- (-4 *7 (-13 (-378 *5) (-10 -7 (-6 -4449))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
+ (-4 *4 (-378 *2)))))
+(((*1 *1) (-5 *1 (-1094))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-650 *6) "failed") (-570) *6 *6)) (-4 *6 (-368))
+ (-4 *7 (-1253 *6))
+ (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2559 "void")))
+ (-5 *1 (-443)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1058)) (-4 *7 (-1058))
+ (-4 *6 (-1253 *5)) (-5 *2 (-1182 (-1182 *7)))
+ (-5 *1 (-507 *5 *6 *4 *7)) (-4 *4 (-1253 *6)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186)))))
+ (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113))
+ (-5 *1 (-403))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-650 (-650 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-650 (-3 (|:| |array| (-650 *3)) (|:| |scalar| (-1186)))))
+ (-5 *6 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1113))
+ (-5 *1 (-403))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-650 (-1186))) (-5 *5 (-1189)) (-5 *3 (-1186))
+ (-5 *2 (-1113)) (-5 *1 (-403)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1253 *5))
(-5 *2
(-650
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2331 (-650 *7)))))
- (-5 *1 (-674 *5 *6 *7 *3)) (-5 *4 (-650 *7))
- (-4 *3 (-693 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-776 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4))))
- ((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-115)) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *1 (-778 *5 *2)) (-4 *2 (-13 (-29 *5) (-1211) (-966)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-695 *7)) (-5 *5 (-1186))
- (-4 *7 (-13 (-29 *6) (-1211) (-966)))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2
- (-2 (|:| |particular| (-1276 *7)) (|:| -2331 (-650 (-1276 *7)))))
- (-5 *1 (-808 *6 *7)) (-5 *4 (-1276 *7))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-695 *6)) (-5 *4 (-1186))
- (-4 *6 (-13 (-29 *5) (-1211) (-966)))
- (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-650 (-1276 *6))) (-5 *1 (-808 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-650 (-298 *7))) (-5 *4 (-650 (-115)))
- (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1211) (-966)))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2
- (-2 (|:| |particular| (-1276 *7)) (|:| -2331 (-650 (-1276 *7)))))
- (-5 *1 (-808 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-650 *7)) (-5 *4 (-650 (-115)))
- (-5 *5 (-1186)) (-4 *7 (-13 (-29 *6) (-1211) (-966)))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2
- (-2 (|:| |particular| (-1276 *7)) (|:| -2331 (-650 (-1276 *7)))))
- (-5 *1 (-808 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-298 *7)) (-5 *4 (-115)) (-5 *5 (-1186))
- (-4 *7 (-13 (-29 *6) (-1211) (-966)))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -2331 (-650 *7))) *7 "failed"))
- (-5 *1 (-808 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-115)) (-5 *5 (-1186))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -2331 (-650 *3))) *3 "failed"))
- (-5 *1 (-808 *6 *3)) (-4 *3 (-13 (-29 *6) (-1211) (-966)))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-298 *2)) (-5 *4 (-115)) (-5 *5 (-650 *2))
- (-4 *2 (-13 (-29 *6) (-1211) (-966))) (-5 *1 (-808 *6 *2))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))))
- ((*1 *2 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-115)) (-5 *4 (-298 *2)) (-5 *5 (-650 *2))
- (-4 *2 (-13 (-29 *6) (-1211) (-966)))
- (-4 *6 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *1 (-808 *6 *2))))
- ((*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1276 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4))
- (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1276 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4))
- (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1276 (-320 *4))) (-5 *5 (-650 (-384)))
- (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1276 (-320 (-384)))) (-5 *4 (-384)) (-5 *5 (-650 *4))
- (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1276 (-320 *4))) (-5 *5 (-650 (-384)))
- (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1276 (-320 *4))) (-5 *5 (-650 (-384)))
- (-5 *6 (-320 (-384))) (-5 *4 (-384)) (-5 *2 (-1044)) (-5 *1 (-811))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12
- (-5 *5
- (-1
- (-3 (-2 (|:| |particular| *6) (|:| -2331 (-650 *6))) "failed")
- *7 *6))
- (-4 *6 (-368)) (-4 *7 (-662 *6))
- (-5 *2 (-2 (|:| |particular| (-1276 *6)) (|:| -2331 (-695 *6))))
- (-5 *1 (-819 *6 *7)) (-5 *3 (-695 *6)) (-5 *4 (-1276 *6))))
- ((*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-1044)) (-5 *1 (-904))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-904))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168))
- (-5 *8 (-227)) (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384))
- (-5 *2 (-1044)) (-5 *1 (-904))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-777)) (-5 *6 (-650 (-650 (-320 *3)))) (-5 *7 (-1168))
- (-5 *5 (-650 (-320 (-384)))) (-5 *3 (-384)) (-5 *2 (-1044))
- (-5 *1 (-904))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 (-384)))
- (-5 *1 (-1032)) (-5 *4 (-384))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 (-384))) (-5 *1 (-1032))
- (-5 *4 (-384))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *2 (-650 *4)) (-5 *1 (-1137 *3 *4)) (-4 *3 (-1252 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4))
- (-5 *3 (-320 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1140 *4))
- (-5 *3 (-298 (-320 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5))
- (-5 *3 (-298 (-320 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-650 (-298 (-320 *5)))) (-5 *1 (-1140 *5))
- (-5 *3 (-320 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-1186)))
- (-4 *5 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
- (-5 *2 (-650 (-650 (-298 (-320 *5))))) (-5 *1 (-1140 *5))
- (-5 *3 (-650 (-298 (-320 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *5))))))
- (-5 *1 (-1195 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 (-1186))) (-4 *5 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *5)))))) (-5 *1 (-1195 *5))
- (-5 *3 (-650 (-298 (-413 (-959 *5)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-413 (-959 *4)))) (-4 *4 (-562))
- (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-1195 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4))))))
- (-5 *1 (-1195 *4)) (-5 *3 (-650 (-298 (-413 (-959 *4)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186)) (-4 *5 (-562))
- (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5))
- (-5 *3 (-413 (-959 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186)) (-4 *5 (-562))
- (-5 *2 (-650 (-298 (-413 (-959 *5))))) (-5 *1 (-1195 *5))
- (-5 *3 (-298 (-413 (-959 *5))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4)))))
- (-5 *1 (-1195 *4)) (-5 *3 (-413 (-959 *4)))))
+ (-2 (|:| -2003 (-695 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-695 *6)))))
+ (-5 *1 (-504 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -2003 (-695 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-695 *6))))
+ (-4 *7 (-1253 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148)))
+ (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567))))
((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4)))))
- (-5 *1 (-1195 *4)) (-5 *3 (-298 (-413 (-959 *4)))))))
+ (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
(((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3))
- (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1252 *2)))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-933))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-933))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227)))
- (-5 *1 (-934)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-799)) (-4 *5 (-856)) (-4 *2 (-1058))
- (-5 *1 (-325 *4 *5 *2 *6)) (-4 *6 (-956 *2 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-618 *5)) (-4 *5 (-436 *4)) (-4 *4 (-1047 (-570)))
- (-4 *4 (-562)) (-5 *2 (-1182 *5)) (-5 *1 (-32 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-618 *1)) (-4 *1 (-1058)) (-4 *1 (-306))
- (-5 *2 (-1182 *1)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-956 *3 *4 *5)) (-4 *3 (-368))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-510 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1) (-5 *1 (-145))))
(((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
- (-5 *2 (-777)) (-5 *1 (-527 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-4 *3 (-562)) (-5 *2 (-777))))
+ (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-650 (-1033 (-413 *4)))))
+ (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *5))))) (-5 *1 (-1303 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4))
- (-4 *6 (-378 *4)) (-5 *2 (-777)) (-5 *1 (-694 *4 *5 *6 *3))
- (-4 *3 (-693 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-4 *5 (-562))
- (-5 *2 (-777)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-132)))))
+ (-12 (-5 *3 (-650 (-959 *4)))
+ (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-5 *2 (-650 (-650 (-1033 (-413 *4))))) (-5 *1 (-1303 *4 *5 *6))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1109) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34))))))
(((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-777)) (-4 *5 (-562))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *5 *3)) (-4 *3 (-1253 *5)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1276 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (-5 *2
- (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
- (|:| |expense| (-384)) (|:| |accuracy| (-384))
- (|:| |intermediateResults| (-384))))
- (-5 *1 (-809)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-928)) (-4 *4 (-373)) (-4 *4 (-368)) (-5 *2 (-1182 *1))
- (-4 *1 (-333 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *3 (-368))
- (-4 *2 (-1252 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1276 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
- (-5 *1 (-534 *4)))))
+ (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5))
+ (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))))
+(((*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-809)))))
(((*1 *2 *2 *3) (-12 (-5 *2 (-1144)) (-5 *3 (-295)) (-5 *1 (-169)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1238 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1267 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -3097 *4))) (-5 *1 (-978 *4 *3))
- (-4 *3 (-1252 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *5 (-373))
- (-5 *2 (-777)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-695 *5))) (-4 *5 (-311)) (-4 *5 (-1058))
+ (-5 *2 (-1277 (-1277 *5))) (-5 *1 (-1038 *5)) (-5 *4 (-1277 *5)))))
(((*1 *1) (-5 *1 (-623))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-650 (-112))) (-5 *7 (-695 (-227)))
+ (-5 *8 (-695 (-570))) (-5 *3 (-570)) (-5 *4 (-227)) (-5 *5 (-112))
+ (-5 *2 (-1044)) (-5 *1 (-760)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304))))
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-570))
+ (-5 *1 (-455 *4 *5 *6 *3)) (-4 *3 (-956 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1058)) (-4 *2 (-693 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1253 *4)) (-4 *5 (-378 *4))
+ (-4 *6 (-378 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1))
+ (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109))))
((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) (-5 *3 (-227))
- (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
-(((*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-562)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3))
- (-5 *1 (-1216 *3 *4 *5 *2)) (-4 *2 (-693 *3 *4 *5)))))
+ (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -3758 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *2
(-2
@@ -15448,7 +15295,7 @@
(-3 (|:| |str| (-1166 (-227)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -3758
+ (|:| -1990
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -15456,712 +15303,749 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-565)))))
-(((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-765)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551))))
+(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-368)) (-4 *6 (-1253 (-413 *2)))
+ (-4 *2 (-1253 *5)) (-5 *1 (-217 *5 *2 *6 *3))
+ (-4 *3 (-347 *5 *2 *6)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-115)) (-5 *4 (-650 *2)) (-5 *1 (-114 *2))
+ (-4 *2 (-1109))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 (-650 *4))) (-4 *4 (-1109))
+ (-5 *1 (-114 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109))
+ (-5 *1 (-114 *4))))
((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -4358 *3) (|:| -1907 (-777)))) (-5 *1 (-593 *3))
- (-4 *3 (-551)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-956 *4 *5 *6)) (-5 *2 (-650 (-650 *7)))
- (-5 *1 (-454 *4 *5 *6 *7)) (-5 *3 (-650 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-4 *6 (-799))
- (-4 *7 (-856)) (-4 *8 (-956 *5 *6 *7)) (-5 *2 (-650 (-650 *8)))
- (-5 *1 (-454 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3593 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-4 *4 (-799)) (-4 *5 (-856))
- (-4 *6 (-1074 *3 *4 *5)) (-5 *1 (-630 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-1080 *3 *4 *5 *6)) (-4 *2 (-1118 *3 *4 *5 *6)))))
-(((*1 *2 *2)
+ (|partial| -12 (-5 *3 (-115)) (-5 *2 (-1 *4 (-650 *4)))
+ (-5 *1 (-114 *4)) (-4 *4 (-1109))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058))
+ (-5 *1 (-720 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1270 *3 *2))
+ (-4 *2 (-1268 *3)))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-320 (-227))) (|:| -2314 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (-5 *1 (-270)))))
+ (-650
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-777)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-799)) (-4 *3 (-956 *4 *5 *6)) (-4 *4 (-458)) (-4 *6 (-856))
+ (-5 *1 (-455 *4 *5 *6 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-1141 *4 *2))
+ (-4 *2 (-13 (-610 (-570) *4) (-10 -7 (-6 -4449) (-6 -4450))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2))
+ (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4449) (-6 -4450)))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2 (-384)) (-5 *1 (-207)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*1 *1 *1 *1) (-5 *1 (-163)))
+ ((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-650 (-650 (-650 *5)))) (-5 *3 (-1 (-112) *5 *5))
+ (-5 *4 (-650 *5)) (-4 *5 (-856)) (-5 *1 (-1197 *5)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1211) (-1011))))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *3 (-959 (-570)))
- (-5 *1 (-334))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *1 (-334)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 *4) (-1011) (-1211)))
- (-5 *1 (-606 *4 *2 *3))
- (-4 *3 (-13 (-436 (-171 *4)) (-1011) (-1211))))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5))
- (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-1289 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-650 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1074 *5 *6 *7)) (-4 *5 (-562))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1289 *5 *6 *7 *8)))))
-(((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1252 (-570))))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
+ (-5 *1 (-754)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *5)) (-5 *4 (-928)) (-4 *5 (-856))
- (-5 *2 (-650 (-678 *5))) (-5 *1 (-678 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-570))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230))
- (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))))
+ (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1166 *7))) (-4 *6 (-856))
+ (-4 *7 (-956 *5 (-537 *6) *6)) (-4 *5 (-1058))
+ (-5 *2 (-1 (-1166 *7) *7)) (-5 *1 (-1135 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-166 *3 *4))
+ (-4 *3 (-167 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777))
+ (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-435 *3 *4))
+ (-4 *3 (-436 *4))))
+ ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-550 *3)) (-4 *3 (-551))))
+ ((*1 *2) (-12 (-4 *1 (-769)) (-5 *2 (-777))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-802 *3 *4))
+ (-4 *3 (-803 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-1000 *3 *4))
+ (-4 *3 (-1001 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-1005 *3 *4))
+ (-4 *3 (-1006 *4))))
+ ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1020 *3)) (-4 *3 (-1021))))
+ ((*1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-777))))
+ ((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1068 *3)) (-4 *3 (-1069)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-1058))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 (-320 (-227))))
- (-5 *2
- (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570))
- (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))))
- (-5 *1 (-309)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-250)))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1279)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
- (-14 *4 (-650 (-1186)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-570)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
- (-14 *4 (-650 (-1186)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-256 *4 *3 *5 *6)) (-4 *4 (-1058)) (-4 *3 (-856))
- (-4 *5 (-269 *3)) (-4 *6 (-799)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-278))))
+ (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -1710 *5))))
+ (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5))
+ (-5 *1 (-218 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1182 *8)) (-5 *4 (-650 *6)) (-4 *6 (-856))
- (-4 *8 (-956 *7 *5 *6)) (-4 *5 (-799)) (-4 *7 (-1058))
- (-5 *2 (-650 (-777))) (-5 *1 (-325 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
- (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-476 *3 *2)) (-4 *3 (-174)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4))
- (-4 *4 (-1252 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *1 (-956 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 (-777)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *3 (-856)) (-5 *2 (-777))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-982 *3 *2 *4)) (-4 *3 (-1058)) (-4 *4 (-856))
- (-4 *2 (-798))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-777))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1238 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1267 *3))
- (-5 *2 (-570))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1259 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1236 *3))
- (-5 *2 (-413 (-570)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1295 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-777)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-458))
- (-4 *3 (-562)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+ (-12 (-5 *3 (-650 (-2 (|:| -3739 *5) (|:| -3221 (-570)))))
+ (-5 *4 (-570)) (-4 *5 (-1253 *4)) (-5 *2 (-650 *5))
+ (-5 *1 (-702 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-250)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
+ (-5 *4 (-320 (-171 (-384)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
+ (-5 *4 (-320 (-384))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
+ (-5 *4 (-320 (-570))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-171 (-384)))))
+ (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-384)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-570)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-171 (-384)))))
+ (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-384)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-570)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-171 (-384)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-384))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-570))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
+ (-5 *4 (-320 (-700))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
+ (-5 *4 (-320 (-705))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570))))
+ (-5 *4 (-320 (-707))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-700)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-705)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-707)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-700)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-705)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-707)))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-700))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-705))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-707))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-700))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-705))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-707))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-700))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-705))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-707))) (-5 *1 (-334))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-334))))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531))))
+ ((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-384)) (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058))
+ (-5 *1 (-696 *4)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186))
- (-5 *1 (-265 *2)) (-4 *2 (-1226))))
+ (-5 *1 (-265 *2)) (-4 *2 (-1227))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-52))
(-5 *1 (-266)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1112 *3 *4 *5 *6 *7)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-650 *1))
- (-4 *1 (-436 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
- (-4 *3 (-1109))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
- (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-650 *3))
- (-5 *1 (-957 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3735 ($ *7)) (-15 -4398 (*7 $))
- (-15 -4412 (*7 $))))))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
- (-5 *5 (-1103 (-227))) (-5 *6 (-650 (-266))) (-5 *2 (-1142 (-227)))
- (-5 *1 (-703)))))
-(((*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
-(((*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 (-1166 *4))) (-5 *1 (-289 *4 *5))
- (-5 *3 (-1166 *4)) (-4 *5 (-1267 *4)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-237 *3))
- (-4 *3 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1226)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-1129)) (-4 *4 (-354))
- (-5 *1 (-534 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1790 ((-424 $) $)))))
- (-4 *4 (-1252 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
-(((*1 *2)
- (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-348 *3 *4)) (-14 *3 (-928))
- (-14 *4 (-928))))
- ((*1 *2)
- (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-349 *3 *4)) (-4 *3 (-354))
- (-14 *4 (-1182 *3))))
- ((*1 *2)
- (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-350 *3 *4)) (-4 *3 (-354))
- (-14 *4 (-928)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
- (-5 *2 (-1044)) (-5 *1 (-752)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) (-5 *4 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-762)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-311)) (-4 *5 (-378 *4)) (-4 *6 (-378 *4))
+ (-12 (-5 *3 (-298 (-959 (-570))))
(-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1133 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6)))))
-(((*1 *1) (-5 *1 (-584))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-620 (-899 (-570))))
- (-4 *5 (-893 (-570)))
- (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-573 *5 *3)) (-4 *3 (-635))
- (-4 *3 (-13 (-27) (-1211) (-436 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1186)) (-5 *4 (-849 *2)) (-4 *2 (-1148))
- (-4 *2 (-13 (-27) (-1211) (-436 *5)))
- (-4 *5 (-620 (-899 (-570)))) (-4 *5 (-893 (-570)))
- (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
- (-5 *1 (-573 *5 *2)))))
+ (-2 (|:| |varOrder| (-650 (-1186)))
+ (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed"))
+ (|:| |hom| (-650 (-1277 (-777))))))
+ (-5 *1 (-238)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
- (-5 *2 (-424 *3)) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1252 *5)))))
+ (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)) (-5 *3 (-570)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-482 *4 *5 *6 *7)) (|:| -3240 (-650 *7))))
+ (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
+(((*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856)))
+ (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1253 *4))
+ (-5 *1 (-929 *4 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-5 *1 (-705))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-695 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-368)) (-5 *1 (-987 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3))
+ (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-856))
+ (-4 *3 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1109)) (-4 *3 (-907 *5)) (-5 *2 (-695 *3))
+ (-5 *1 (-698 *5 *3 *6 *4)) (-4 *6 (-378 *3))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4449)))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-311))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-453 *4 *5 *6 *2)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))
(-5 *2 (-650 (-1085 *3 *4 *5))) (-5 *1 (-1086 *3 *4 *5))
(-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
(((*1 *2 *1) (-12 (-5 *2 (-140)) (-5 *1 (-141))))
((*1 *2 *1) (-12 (-5 *1 (-185 *2)) (-4 *2 (-187))))
((*1 *2 *1) (-12 (-5 *2 (-251)) (-5 *1 (-250)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
+ (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3))
+ (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2))
+ (-4 *2 (-693 *3 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *6 *5))
- (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
- (-4 *6 (-799)) (-5 *2 (-112)) (-5 *1 (-931 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-311) (-148)))
- (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-112))
- (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |k| (-1186)) (|:| |c| (-1298 *3)))))
- (-5 *1 (-1298 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |k| *3) (|:| |c| (-1300 *3 *4)))))
- (-5 *1 (-1300 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-118 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-118 *2)) (-14 *2 (-570))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-877 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-877 *2)) (-14 *2 (-570))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-570)) (-14 *3 *2) (-5 *1 (-878 *3 *4))
- (-4 *4 (-875 *3))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-570)) (-5 *1 (-878 *2 *3)) (-4 *3 (-875 *2))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-570)) (-4 *1 (-1238 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-1267 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1238 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1267 *2)))))
-(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
- ((*1 *1 *1) (-4 *1 (-1153))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-650 (-570)))
- (|:| |cols| (-650 (-570)))))
- (-5 *4 (-695 *12)) (-5 *5 (-650 (-413 (-959 *9))))
- (-5 *6 (-650 (-650 *12))) (-5 *7 (-777)) (-5 *8 (-570))
- (-4 *9 (-13 (-311) (-148))) (-4 *12 (-956 *9 *11 *10))
- (-4 *10 (-13 (-856) (-620 (-1186)))) (-4 *11 (-799))
- (-5 *2
- (-2 (|:| |eqzro| (-650 *12)) (|:| |neqzro| (-650 *12))
- (|:| |wcond| (-650 (-959 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *9))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *9)))))))))
- (-5 *1 (-931 *9 *10 *11 *12)))))
-(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226))))
+ (-12 (-4 *4 (-1058)) (-5 *2 (-570)) (-5 *1 (-449 *4 *3 *5))
+ (-4 *3 (-1253 *4))
+ (-4 *5 (-13 (-410) (-1047 *4) (-368) (-1212) (-288))))))
+(((*1 *1) (-5 *1 (-829))))
+(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227))))
((*1 *1 *1)
(-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
(-4 *4 (-856))))
- ((*1 *1 *1) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-1226)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-570)) (-5 *5 (-112)) (-5 *6 (-695 (-227)))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))
- (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-759)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))) (-5 *2 (-112)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-780)) (-5 *1 (-115))))
+ ((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-780)) (-5 *1 (-115)))))
+(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-115)) (-5 *3 (-650 (-1 *4 (-650 *4)))) (-4 *4 (-1109))
+ (-5 *1 (-114 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109))
+ (-5 *1 (-114 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-1 *4 (-650 *4))))
+ (-5 *1 (-114 *4)) (-4 *4 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1182 *9)) (-5 *4 (-650 *7)) (-5 *5 (-650 *8))
+ (-4 *7 (-856)) (-4 *8 (-1058)) (-4 *9 (-956 *8 *6 *7))
+ (-4 *6 (-799)) (-5 *2 (-1182 *8)) (-5 *1 (-325 *6 *7 *8 *9)))))
(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1186)) (-5 *2 (-112)) (-5 *1 (-618 *4))
- (-4 *4 (-1109))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-112))))
+ (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4))
+ (-4 *3 (-333 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-777)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-424 *4)) (-4 *4 (-562)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1278))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473))))
+ ((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 (-249 *4 *5))) (-5 *2 (-249 *4 *5))
+ (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *10))
+ (-5 *1 (-630 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1080 *5 *6 *7 *8))
+ (-4 *10 (-1118 *5 *6 *7 *8))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-894 *5 *3 *4))
- (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5)))))
+ (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
+ (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6)))
+ (-5 *1 (-634 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *6)) (-4 *6 (-893 *5)) (-4 *5 (-1109))
- (-5 *2 (-112)) (-5 *1 (-894 *5 *6 *4)) (-4 *4 (-620 (-899 *5))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34)))
- (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-112)) (-5 *1 (-1150 *4 *5)))))
-(((*1 *1) (-5 *1 (-829))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1230)) (-4 *5 (-1252 *4))
+ (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
+ (-14 *6 (-650 (-1186)))
(-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-413 *5))
- (|:| |c2| (-413 *5)) (|:| |deg| (-777))))
- (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1252 (-413 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-311))
- (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1252 *2)) (-4 *2 (-1230)) (-5 *1 (-149 *2 *4 *3))
- (-4 *3 (-1252 (-413 *4))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-856)) (-5 *4 (-650 *6))
- (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-650 *4))))
- (-5 *1 (-1197 *6)) (-5 *5 (-650 *4)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-868) (-868) (-868))) (-5 *4 (-570)) (-5 *2 (-868))
- (-5 *1 (-655 *5 *6 *7)) (-4 *5 (-1109)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-868)) (-5 *1 (-860 *3 *4 *5)) (-4 *3 (-1058))
- (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-868))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868))))
- ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-868))))
- ((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-868)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-176 *3)) (-4 *3 (-311))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-680 *3)) (-4 *3 (-1226))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-746 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-856))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *1 (-989 *3)) (-4 *3 (-1058))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *1)) (-5 *3 (-650 *7)) (-4 *1 (-1080 *4 *5 *6 *7))
- (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-458))
+ (-650 (-1155 *5 (-537 (-870 *6)) (-870 *6) (-786 *5 (-870 *6)))))
+ (-5 *1 (-634 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1036 *5 *6 *7 *8))) (-5 *1 (-1036 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 (-786 *5 (-870 *6)))) (-5 *4 (-112)) (-4 *5 (-458))
+ (-14 *6 (-650 (-1186))) (-5 *2 (-650 (-1055 *5 *6)))
+ (-5 *1 (-1055 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 *8)) (-5 *4 (-112)) (-4 *8 (-1074 *5 *6 *7))
+ (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1155 *5 *6 *7 *8))) (-5 *1 (-1155 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
(-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-650 *1)) (-4 *1 (-1080 *4 *5 *6 *3)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
- (-4 *1 (-1080 *4 *5 *6 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1219 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1254 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-4 *1 (-1220 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
+ (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-755)))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-856)) (-5 *3 (-650 *6)) (-5 *5 (-650 *3))
(-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1279)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-570))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *4 *5 *6 *7)) (-4 *5 (-1058))
- (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-570)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-334)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-892 *3 *4 *5))
- (-4 *3 (-1109)) (-4 *5 (-672 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-171 (-570))) (-5 *2 (-112)) (-5 *1 (-452))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
- (-249 *4 (-413 (-570)))))
- (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112))
- (-5 *1 (-511 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-968 *3)) (-4 *3 (-551))))
- ((*1 *2 *1) (-12 (-4 *1 (-1230)) (-5 *2 (-112)))))
+ (-2 (|:| |f1| *3) (|:| |f2| (-650 *5)) (|:| |f3| *5)
+ (|:| |f4| (-650 *5))))
+ (-5 *1 (-1197 *6)) (-5 *4 (-650 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4451 "*"))) (-4 *5 (-378 *2)) (-4 *6 (-378 *2))
+ (-4 *2 (-1058)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1253 *2))
+ (-4 *4 (-693 *2 *5 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-629 *3 *4))
- (-4 *4 (-1252 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-732))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1293 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-112)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-1212 *2)) (-4 *2 (-1109)))))
+ (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1109)) (-4 *6 (-893 *5)) (-5 *2 (-892 *5 *6 (-650 *6)))
+ (-5 *1 (-894 *5 *6 *4)) (-5 *3 (-650 *6)) (-4 *4 (-620 (-899 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 *3))) (-5 *1 (-894 *5 *3 *4))
+ (-4 *3 (-1047 (-1186))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 (-959 *3))))
+ (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1058))
+ (-1753 (-4 *3 (-1047 (-1186)))) (-4 *3 (-893 *5))
+ (-4 *4 (-620 (-899 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1109)) (-5 *2 (-896 *5 *3)) (-5 *1 (-894 *5 *3 *4))
+ (-1753 (-4 *3 (-1047 (-1186)))) (-1753 (-4 *3 (-1058)))
+ (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 (-1166 *4) (-1166 *4))) (-5 *2 (-1166 *4))
- (-5 *1 (-1301 *4)) (-4 *4 (-1226))))
+ (-5 *1 (-1302 *4)) (-4 *4 (-1227))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 (-650 (-1166 *5)) (-650 (-1166 *5)))) (-5 *4 (-570))
- (-5 *2 (-650 (-1166 *5))) (-5 *1 (-1301 *5)) (-4 *5 (-1226)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+ (-5 *2 (-650 (-1166 *5))) (-5 *1 (-1302 *5)) (-4 *5 (-1227)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9))
+ (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *9 (-1074 *6 *7 *8))
+ (-5 *2
+ (-650
+ (-2 (|:| -4302 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9)))))
+ (-5 *1 (-997 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-650 *10)) (-5 *5 (-112)) (-4 *10 (-1080 *6 *7 *8 *9))
+ (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *9 (-1074 *6 *7 *8))
+ (-5 *2
+ (-650
+ (-2 (|:| -4302 (-650 *9)) (|:| -3593 *10) (|:| |ineq| (-650 *9)))))
+ (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))))
+(((*1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *2)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
+ (-5 *2
+ (-2 (|:| |mval| (-695 *4)) (|:| |invmval| (-695 *4))
+ (|:| |genIdeal| (-510 *4 *5 *6 *7))))
+ (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2))
+ (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186)) (-4 *4 (-13 (-562) (-1047 (-570))))
+ (-5 *1 (-190 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-5 *1 (-1216 *4 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
- (-5 *1 (-1284 *4)) (-4 *4 (-368)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1281)) (-5 *1 (-384))))
- ((*1 *2) (-12 (-5 *2 (-1281)) (-5 *1 (-384)))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
+ (-12 (-5 *3 (-1186))
+ (-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-810 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1212) (-966))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-777)) (-4 *6 (-368)) (-5 *4 (-1221 *6))
+ (-5 *2 (-1 (-1166 *4) (-1166 *4))) (-5 *1 (-1285 *6))
+ (-5 *5 (-1166 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1207))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
- (-5 *3 (-650 (-570)))))
+ (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2))
+ (-4 *2 (-378 *4))))
((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
- (-5 *3 (-650 (-570))))))
-(((*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-5 *2 (-112)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
- ((*1 *1 *1) (|partial| -4 *1 (-728))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-650 *4))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1186))
- (-4 *4 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-563 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))))
+ (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-4 *2 (-378 *4))
+ (-5 *1 (-509 *4 *5 *2 *3)) (-4 *3 (-378 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562))
+ (-5 *2 (-695 *4)) (-5 *1 (-699 *4 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-1246 *3 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-757)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1265 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-333 *4)) (-4 *4 (-368))
+ (-5 *2 (-695 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1277 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-695 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-1277 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
+ (-4 *5 (-1253 *4)) (-5 *2 (-695 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
+ (-4 *5 (-1253 *4)) (-5 *2 (-1277 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-415 *4 *5)) (-4 *4 (-174))
+ (-4 *5 (-1253 *4)) (-5 *2 (-695 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3))
+ (-5 *2 (-1277 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-423 *4)) (-4 *4 (-174))
+ (-5 *2 (-695 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-650 (-695 *5))) (-5 *3 (-695 *5)) (-4 *5 (-368))
+ (-5 *2 (-1277 *5)) (-5 *1 (-1095 *5)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))))
+(((*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6)))
+ (-4 *6 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-563 *6 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1109)) (-4 *2 (-907 *4)) (-5 *1 (-698 *4 *2 *5 *3))
- (-4 *5 (-378 *2)) (-4 *3 (-13 (-378 *4) (-10 -7 (-6 -4448)))))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
- (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *2 (-1221 (-933)))
- (-5 *1 (-322))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
- (-5 *5 (-1103 (-227))) (-5 *6 (-570)) (-5 *7 (-1168))
- (-5 *2 (-1221 (-933))) (-5 *1 (-322))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
- (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570))
- (-5 *2 (-1221 (-933))) (-5 *1 (-322))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-320 (-570))) (-5 *4 (-1 (-227) (-227)))
- (-5 *5 (-1103 (-227))) (-5 *6 (-227)) (-5 *7 (-570)) (-5 *8 (-1168))
- (-5 *2 (-1221 (-933))) (-5 *1 (-322)))))
-(((*1 *1) (-5 *1 (-158))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+ (-12 (-5 *3 (-695 (-413 (-959 (-570)))))
+ (-5 *2
+ (-650
+ (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570))
+ (|:| |radvect| (-650 (-695 (-320 (-570))))))))
+ (-5 *1 (-1040)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-1276 (-695 *4))) (-5 *1 (-90 *4 *5))
- (-5 *3 (-695 *4)) (-4 *5 (-662 *4)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4))
- (-4 *4 (-1252 *2)))))
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-650 *7)) (|:| |badPols| (-650 *7))))
+ (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
(((*1 *2 *3)
- (-12
+ (-12 (-4 *1 (-902))
(-5 *3
- (-510 (-413 (-570)) (-242 *5 (-777)) (-870 *4)
- (-249 *4 (-413 (-570)))))
- (-14 *4 (-650 (-1186))) (-14 *5 (-777)) (-5 *2 (-112))
- (-5 *1 (-511 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1211))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368)))
- (-4 *3 (-1252 *4)) (-5 *2 (-112)))))
+ (-2 (|:| |pde| (-650 (-320 (-227))))
+ (|:| |constraints|
+ (-650
+ (-2 (|:| |start| (-227)) (|:| |finish| (-227))
+ (|:| |grid| (-777)) (|:| |boundaryType| (-570))
+ (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227))))))
+ (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168))
+ (|:| |tol| (-227))))
+ (-5 *2 (-1044)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-378 *3))
+ (-4 *3 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1244 *3)) (-4 *3 (-1227)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-366 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-391 *4)) (-4 *4 (-1109)) (-5 *2 (-777))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *2 (-23)) (-5 *1 (-655 *4 *2 *5))
- (-4 *4 (-1109)) (-14 *5 *2))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227)))
- (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
- (-5 *2
- (-3 (|:| |overq| (-1182 (-413 (-570))))
- (|:| |overan| (-1182 (-48))) (|:| -2484 (-112))))
- (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1252 *5)))))
+ (-12 (-4 *2 (-956 *3 *5 *4)) (-5 *1 (-996 *3 *4 *5 *2))
+ (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4))
+ (-4 *4 (-354)))))
(((*1 *1 *1)
(-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856))
(-4 *4 (-269 *3)) (-4 *5 (-799)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-618 *3)) (-4 *3 (-13 (-436 *5) (-27) (-1211)))
- (-4 *5 (-13 (-458) (-1047 (-570)) (-148) (-645 (-570))))
- (-5 *2 (-592 *3)) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-980)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868))))
- ((*1 *1 *1) (-5 *1 (-868))))
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282))
+ (-5 *1 (-1228 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282))
+ (-5 *1 (-1228 *4)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 *5)) (-4 *5 (-368))
+ (-4 *5 (-562)) (-5 *2 (-1277 *5)) (-5 *1 (-644 *5 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 *5))
+ (-1753 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1277 (-413 *5)))
+ (-5 *1 (-644 *5 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
+ (-4 *3 (-1253 (-171 *2))))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1267 *3))
- (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1238 *3 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3))
+ (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1236 *3))
- (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1259 *3 *4)) (-4 *5 (-992 *4))))
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1237 *3))
+ (-5 *1 (-282 *3 *4 *2 *5)) (-4 *2 (-1260 *3 *4)) (-4 *5 (-992 *4))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1171 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1226)) (-5 *2 (-570)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-650 *5) *6))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *6 (-1252 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-659 (-413 *7))) (-5 *4 (-1 (-650 *6) *7))
- (-5 *5 (-1 (-424 *7) *7))
- (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *7 (-1252 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-650 *5) *6))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *6 (-1252 *5)) (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-660 *7 (-413 *7))) (-5 *4 (-1 (-650 *6) *7))
- (-5 *5 (-1 (-424 *7) *7))
- (-4 *6 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-4 *7 (-1252 *6)) (-5 *2 (-650 (-413 *7))) (-5 *1 (-818 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-659 (-413 *5))) (-4 *5 (-1252 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-1 (-424 *6) *6))
- (-4 *6 (-1252 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-660 *5 (-413 *5))) (-4 *5 (-1252 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-650 (-413 *5))) (-5 *1 (-818 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-1 (-424 *6) *6))
- (-4 *6 (-1252 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-650 (-413 *6))) (-5 *1 (-818 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
- (-5 *2 (-487 *4 *5)) (-5 *1 (-951 *4 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-1276 *3)) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1252 *3)))))
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1182 (-413 (-959 *3)))) (-5 *1 (-459 *3 *4 *5 *6))
- (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
-(((*1 *1)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-650 *6) "failed") (-570) *6 *6)) (-4 *6 (-368))
- (-4 *7 (-1252 *6))
- (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-442)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-1248 *3 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1226)))))
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-650 *6)))))
+(((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-650 *5)) (-5 *4 (-570)) (-4 *5 (-854)) (-4 *5 (-368))
+ (-5 *2 (-777)) (-5 *1 (-952 *5 *6)) (-4 *6 (-1253 *5)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))
+ (-5 *1 (-986 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-424 (-1182 *1))) (-5 *1 (-320 *4)) (-5 *3 (-1182 *1))
- (-4 *4 (-458)) (-4 *4 (-562)) (-4 *4 (-1109))))
+ (|partial| -12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174))
+ (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-959 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-174))
+ (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5))))
((*1 *2 *3)
- (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
- (-5 *1 (-711 *3 *4)) (-4 *3 (-1226)) (-4 *4 (-1226)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -3859 *5))))
- (-4 *5 (-1252 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5))
- (-5 *1 (-218 *4 *5))))
+ (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058))
+ (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-2 (|:| -3738 *5) (|:| -1601 (-570)))))
- (-5 *4 (-570)) (-4 *5 (-1252 *4)) (-5 *2 (-650 *5))
- (-5 *1 (-702 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1186))
- (-4 *4 (-13 (-562) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-280 *4 *2)) (-4 *2 (-13 (-27) (-1211) (-436 *4))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-4 *6 (-893 *5)) (-5 *2 (-892 *5 *6 (-650 *6)))
- (-5 *1 (-894 *5 *6 *4)) (-5 *3 (-650 *6)) (-4 *4 (-620 (-899 *5)))))
+ (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058))
+ (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
+ (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 *3))) (-5 *1 (-894 *5 *3 *4))
- (-4 *3 (-1047 (-1186))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5)))))
+ (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562))
+ (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-413 (-959 (-171 *4)))) (-4 *4 (-562))
+ (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 (-959 *3))))
- (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1058))
- (-1754 (-4 *3 (-1047 (-1186)))) (-4 *3 (-893 *5))
- (-4 *4 (-620 (-899 *5)))))
+ (|partial| -12 (-5 *3 (-413 (-959 (-171 *5)))) (-5 *4 (-928))
+ (-4 *5 (-562)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
+ (-5 *1 (-791 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-320 *4)) (-4 *4 (-562)) (-4 *4 (-856))
+ (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-1109)) (-5 *2 (-896 *5 *3)) (-5 *1 (-894 *5 *3 *4))
- (-1754 (-4 *3 (-1047 (-1186)))) (-1754 (-4 *3 (-1058)))
- (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1186)) (-5 *5 (-650 *3))
- (-4 *3 (-13 (-27) (-1211) (-436 *6)))
- (-4 *6 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-563 *6 *3)))))
-(((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368))))
+ (|partial| -12 (-5 *3 (-320 *5)) (-5 *4 (-928)) (-4 *5 (-562))
+ (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
+ (-5 *1 (-791 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1276 *4)) (-5 *1 (-534 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))))
+ (|partial| -12 (-5 *3 (-320 (-171 *4))) (-4 *4 (-562)) (-4 *4 (-856))
+ (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-320 (-171 *5))) (-5 *4 (-928)) (-4 *5 (-562))
+ (-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
+ (-5 *1 (-791 *5)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *1 (-1170 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
+ (-5 *1 (-711 *3 *4)) (-4 *3 (-1227)) (-4 *4 (-1227)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2)
(-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
(-4 *3 (-372 *4))))
((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-354))
+ (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -1710 *3))))
+ (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3))
+ (-4 *3 (-654 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4)))
+ (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 (-320 (-227))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
+ (-5 *1 (-207)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1148))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1036 *5 *6 *7 *3))) (-5 *1 (-1036 *5 *6 *7 *3))
+ (-4 *3 (-1074 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-650 *6)) (-4 *1 (-1080 *3 *4 *5 *6)) (-4 *3 (-458))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-1080 *3 *4 *5 *2)) (-4 *3 (-458)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *2 (-1074 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-5 *2 (-650 (-1155 *5 *6 *7 *3))) (-5 *1 (-1155 *5 *6 *7 *3))
+ (-4 *3 (-1074 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| -3886 (-629 *4 *5)) (|:| -3709 (-413 *5))))
+ (-5 *1 (-629 *4 *5)) (-5 *3 (-413 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
+ (-14 *3 (-928)) (-4 *4 (-1058))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-458)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1253 *3)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-767))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
(-4 *3 (-1074 *5 *6 *7)) (-5 *2 (-112))
@@ -16171,43 +16055,55 @@
(-4 *3 (-1074 *5 *6 *7))
(-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
(-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583))))
- ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))))
-(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4))
- (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3))
- (-4 *3 (-654 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3))
- (-4 *3 (-654 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058))))
- ((*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
-(((*1 *2 *3 *1)
- (-12
- (-5 *2
- (-2 (|:| |cycle?| (-112)) (|:| -4303 (-777)) (|:| |period| (-777))))
- (-5 *1 (-1166 *4)) (-4 *4 (-1226)) (-5 *3 (-777)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *2 (-1074 *4 *5 *6)) (-5 *1 (-782 *4 *5 *6 *2 *3))
- (-4 *3 (-1080 *4 *5 *6 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1281)) (-5 *1 (-868)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4))
- (-4 *4 (-13 (-368) (-854))))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1182 *2)) (-5 *4 (-1186)) (-4 *2 (-436 *5))
+ (-5 *1 (-32 *5 *2)) (-4 *5 (-562))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-4 *1 (-1021))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-5 *4 (-868))
+ (-4 *1 (-1021))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-928)) (-4 *4 (-13 (-854) (-368)))
+ (-4 *1 (-1077 *4 *2)) (-4 *2 (-1253 *4)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-570)) (-4 *3 (-174)) (-4 *5 (-378 *3))
+ (-4 *6 (-378 *3)) (-5 *1 (-694 *3 *5 *6 *2))
+ (-4 *2 (-693 *3 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-695 *5)) (-4 *5 (-1058)) (-5 *1 (-1063 *3 *4 *5))
+ (-14 *3 (-777)) (-14 *4 (-777)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
+ (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4))
+ (-5 *3 (-650 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1))
+ (-4 *1 (-387 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-741 *3 *4))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-732))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-956 *3 *4 *5)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-413 (-570))) (-4 *4 (-1047 (-570))) (-4 *4 (-562))
(-5 *1 (-32 *4 *2)) (-4 *2 (-436 *4))))
@@ -16218,10 +16114,10 @@
((*1 *1 *1 *2) (-12 (-4 *1 (-245)) (-5 *2 (-570))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-413 (-570))) (-4 *4 (-368)) (-4 *4 (-38 *3))
- (-4 *5 (-1267 *4)) (-5 *1 (-281 *4 *5 *2)) (-4 *2 (-1238 *4 *5))))
+ (-4 *5 (-1268 *4)) (-5 *1 (-281 *4 *5 *2)) (-4 *2 (-1239 *4 *5))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-413 (-570))) (-4 *4 (-368)) (-4 *4 (-38 *3))
- (-4 *5 (-1236 *4)) (-5 *1 (-282 *4 *5 *2 *6)) (-4 *2 (-1259 *4 *5))
+ (-4 *5 (-1237 *4)) (-5 *1 (-282 *4 *5 *2 *6)) (-4 *2 (-1260 *4 *5))
(-4 *6 (-992 *5))))
((*1 *1 *1 *1) (-4 *1 (-288)))
((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109))))
@@ -16235,7 +16131,7 @@
(-12 (-5 *2 (-777)) (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
(-5 *1 (-510 *3 *4 *5 *6)) (-4 *6 (-956 *3 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-570)) (-4 *4 (-354))
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354))
(-5 *1 (-534 *4))))
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-542))))
((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-542))))
@@ -16278,168 +16174,273 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1267 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
+ (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-695 (-227))) (-5 *5 (-695 (-570))) (-5 *3 (-570))
+ (-5 *2 (-1044)) (-5 *1 (-760)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-650 (-1182 *11))) (-5 *3 (-1182 *11))
+ (-5 *4 (-650 *10)) (-5 *5 (-650 *8)) (-5 *6 (-650 (-777)))
+ (-5 *7 (-1277 (-650 (-1182 *8)))) (-4 *10 (-856))
+ (-4 *8 (-311)) (-4 *11 (-956 *8 *9 *10)) (-4 *9 (-799))
+ (-5 *1 (-713 *9 *10 *8 *11)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-956 *4 *5 *6)) (-4 *4 (-458))
+ (-4 *5 (-799)) (-4 *6 (-856)) (-5 *1 (-455 *4 *5 *6 *2)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1229)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583))))
+ ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
+(((*1 *1) (-5 *1 (-443))))
(((*1 *2 *3)
- (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3))
- (-4 *3 (-1252 *2)))))
+ (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-59 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-59 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-171 *4)))
- (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
-(((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| -3854 (-115)) (|:| |arg| (-650 (-899 *3)))))
- (-5 *1 (-899 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-899 *4)))
- (-5 *1 (-899 *4)) (-4 *4 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-419 *3 *4 *5 *6)) (-4 *6 (-1047 *4)) (-4 *3 (-311))
- (-4 *4 (-1001 *3)) (-4 *5 (-1252 *4)) (-4 *6 (-415 *4 *5))
- (-14 *7 (-1276 *6)) (-5 *1 (-420 *3 *4 *5 *6 *7))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1276 *6)) (-4 *6 (-415 *4 *5)) (-4 *4 (-1001 *3))
- (-4 *5 (-1252 *4)) (-4 *3 (-311)) (-5 *1 (-420 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1226)) (-4 *3 (-1109))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-1101 (-959 (-570)))) (-5 *2 (-334))
- (-5 *1 (-336))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058))
- (-4 *3 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
-(((*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1226)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-413 (-570))))
- (-5 *2 (-2 (|:| -2579 (-1166 *4)) (|:| -2590 (-1166 *4))))
- (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1249 *5 *4)) (-4 *4 (-458)) (-4 *4 (-826))
- (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1281)) (-5 *1 (-1278)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1252 *4))
- (-5 *1 (-929 *4 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-249 *4 *5))) (-5 *2 (-249 *4 *5))
- (-14 *4 (-650 (-1186))) (-4 *5 (-458)) (-5 *1 (-637 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
+ (-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6))
+ (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
+ (-4 *7 (-799))
(-5 *2
- (-2 (|:| |mval| (-695 *4)) (|:| |invmval| (-695 *4))
- (|:| |genIdeal| (-510 *4 *5 *6 *7))))
- (-5 *1 (-510 *4 *5 *6 *7)) (-4 *7 (-956 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2))
- (-4 *2 (-378 *4))))
+ (-650
+ (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
+ (|:| |wcond| (-650 (-959 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *5))))))))))
+ (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-650 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *8)) (-5 *4 (-650 (-1186))) (-4 *8 (-956 *5 *7 *6))
+ (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
+ (-4 *7 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
+ (|:| |wcond| (-650 (-959 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *5))))))))))
+ (-5 *1 (-931 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-1001 *4)) (-4 *2 (-378 *4))
- (-5 *1 (-509 *4 *5 *2 *3)) (-4 *3 (-378 *5))))
+ (-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5))
+ (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7))
+ (|:| |wcond| (-650 (-959 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *4))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *4))))))))))
+ (-5 *1 (-931 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-695 *9)) (-5 *5 (-928)) (-4 *9 (-956 *6 *8 *7))
+ (-4 *6 (-13 (-311) (-148))) (-4 *7 (-13 (-856) (-620 (-1186))))
+ (-4 *8 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9))
+ (|:| |wcond| (-650 (-959 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *6))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *6))))))))))
+ (-5 *1 (-931 *6 *7 *8 *9)) (-5 *4 (-650 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-928))
+ (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
+ (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |eqzro| (-650 *9)) (|:| |neqzro| (-650 *9))
+ (|:| |wcond| (-650 (-959 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *6))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *6))))))))))
+ (-5 *1 (-931 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *8)) (-5 *4 (-928)) (-4 *8 (-956 *5 *7 *6))
+ (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
+ (-4 *7 (-799))
+ (-5 *2
+ (-650
+ (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
+ (|:| |wcond| (-650 (-959 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
+ (|:| -2003 (-650 (-1277 (-413 (-959 *5))))))))))
+ (-5 *1 (-931 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 *9)) (-5 *5 (-1168))
+ (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
+ (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570))
+ (-5 *1 (-931 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-695 *9)) (-5 *4 (-650 (-1186))) (-5 *5 (-1168))
+ (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
+ (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570))
+ (-5 *1 (-931 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *8)) (-5 *4 (-1168)) (-4 *8 (-956 *5 *7 *6))
+ (-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
+ (-4 *7 (-799)) (-5 *2 (-570)) (-5 *1 (-931 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 *10)) (-5 *5 (-928))
+ (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148)))
+ (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570))
+ (-5 *1 (-931 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-695 *10)) (-5 *4 (-650 (-1186))) (-5 *5 (-928))
+ (-5 *6 (-1168)) (-4 *10 (-956 *7 *9 *8)) (-4 *7 (-13 (-311) (-148)))
+ (-4 *8 (-13 (-856) (-620 (-1186)))) (-4 *9 (-799)) (-5 *2 (-570))
+ (-5 *1 (-931 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-695 *9)) (-5 *4 (-928)) (-5 *5 (-1168))
+ (-4 *9 (-956 *6 *8 *7)) (-4 *6 (-13 (-311) (-148)))
+ (-4 *7 (-13 (-856) (-620 (-1186)))) (-4 *8 (-799)) (-5 *2 (-570))
+ (-5 *1 (-931 *6 *7 *8 *9)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
+ (-4 *2 (-13 (-856) (-21))))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| -3933 (-777))
+ (|:| |eqns|
+ (-650
+ (-2 (|:| |det| *7) (|:| |rows| (-650 (-570)))
+ (|:| |cols| (-650 (-570))))))
+ (|:| |fgb| (-650 *7)))))
+ (-4 *7 (-956 *4 *6 *5)) (-4 *4 (-13 (-311) (-148)))
+ (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799)) (-5 *2 (-777))
+ (-5 *1 (-931 *4 *5 *6 *7)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058))))
((*1 *2 *3)
- (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562))
- (-5 *2 (-695 *4)) (-5 *1 (-699 *4 *5))))
+ (-12 (-4 *4 (-562)) (-4 *4 (-174)) (-4 *5 (-378 *4))
+ (-4 *6 (-378 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-694 *4 *5 *6 *3)) (-4 *3 (-693 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3))
+ (-4 *3 (-654 *2))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3))
+ (-4 *3 (-654 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058))))
+ ((*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-650 *5) *6))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5))
+ (-5 *2 (-650 (-2 (|:| -3640 *5) (|:| -4302 *3))))
+ (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6))
+ (-4 *7 (-662 (-413 *6))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1222 *3))
+ (-4 *3 (-983)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-112))
+ (-5 *2 (-1044)) (-5 *1 (-759)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1227))))
((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-1245 *3 *4 *2))
- (-4 *2 (-1252 *4)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227))
+ (-14 *4 (-570)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-3 *3 (-650 *1)))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1300 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856))
+ (-12 (-5 *3 (-1301 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856))
(-4 *2 (-174))))
((*1 *2 *1 *1)
- (-12 (-4 *1 (-1293 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
+ (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-825 *4)) (-4 *1 (-1293 *4 *2)) (-4 *4 (-856))
+ (-12 (-5 *3 (-825 *4)) (-4 *1 (-1294 *4 *2)) (-4 *4 (-856))
(-4 *2 (-1058))))
((*1 *2 *1 *3)
- (-12 (-4 *2 (-1058)) (-5 *1 (-1299 *2 *3)) (-4 *3 (-852)))))
+ (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))))
(((*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2))))
((*1 *2 *1)
(-12 (-4 *1 (-1112 *3 *4 *2 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1281))
- (-5 *1 (-1227 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1281))
- (-5 *1 (-1227 *4)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-997 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1116 *4 *5 *6 *7 *3)) (-4 *3 (-1080 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3))
- (-4 *3 (-654 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1))
- (-4 *1 (-387 *3 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-650 (-741 *3 *4))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-732))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
- (-4 *1 (-956 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-257 *3)) (-4 *3 (-1226)) (-5 *2 (-777))))
+ (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5))
+ (-5 *2
+ (-2 (|:| -4254 (-419 *4 (-413 *4) *5 *6)) (|:| |principalPart| *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -3294 (-413 *6))
+ (|:| |special| (-413 *6))))
+ (-5 *1 (-733 *5 *6)) (-5 *3 (-413 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-903 *3 *4))
+ (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *4 *4)
+ (|partial| -12 (-5 *4 (-777)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| -4398 *3) (|:| -4411 *3))) (-5 *1 (-903 *3 *5))
+ (-4 *3 (-1253 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
+ (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
+ (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
+ (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
+ (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458))
+ (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *3)) (-4 *3 (-1227)) (-5 *2 (-777))))
((*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-777))))
((*1 *2 *3)
(-12 (-4 *4 (-1058))
- (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1211) (-288)))
- (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1252 *4))))
+ (-4 *2 (-13 (-410) (-1047 *4) (-368) (-1212) (-288)))
+ (-5 *1 (-449 *4 *3 *2)) (-4 *3 (-1253 *4))))
((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-618 *3)) (-4 *3 (-1109))))
((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-650 *5) *6))
- (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1252 *5))
- (-5 *2 (-650 (-2 (|:| -3640 *5) (|:| -4300 *3))))
- (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6))
- (-4 *7 (-662 (-413 *6))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2195 *4) (|:| -3578 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
+ (-5 *1 (-510 *4 *5 *6 *2)) (-4 *2 (-956 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-368)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *1 (-510 *3 *4 *5 *2)) (-4 *2 (-956 *3 *4 *5)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
(-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-99 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))))
+ (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4)))
+ (-4 *4 (-856)) (-5 *1 (-1197 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-256 *3 *4 *5 *6)) (-4 *3 (-1058)) (-4 *4 (-856))
+ (-4 *5 (-269 *4)) (-4 *6 (-799)) (-5 *2 (-112)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384)))
(-5 *5 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-258))))
@@ -16500,41 +16501,34 @@
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1045))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1082)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4448)) (-4 *1 (-152 *3))
- (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3))
+ (-4 *3 (-1227))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227))))
((*1 *2 *1 *3)
- (|partial| -12 (-4 *1 (-1219 *4 *5 *3 *2)) (-4 *4 (-562))
+ (|partial| -12 (-4 *1 (-1220 *4 *5 *3 *2)) (-4 *4 (-562))
(-4 *5 (-799)) (-4 *3 (-856)) (-4 *2 (-1074 *4 *5 *3))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-5 *1 (-1223 *2)) (-4 *2 (-1226)))))
-(((*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1069))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
- (-14 *3 (-650 (-1186))) (-4 *4 (-393))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-1069))))
- ((*1 *1 *1) (-4 *1 (-854)))
- ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)) (-4 *2 (-1069))))
- ((*1 *1 *1) (-4 *1 (-1069))) ((*1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-763)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *4 (-1186))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))))
-(((*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-562))))
- ((*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+ (-12 (-5 *3 (-777)) (-5 *1 (-1224 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2196 *4) (|:| -3577 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-4 *2 (-13 (-436 (-171 *4)) (-1011) (-1212)))
+ (-5 *1 (-606 *4 *3 *2)) (-4 *3 (-13 (-436 *4) (-1011) (-1212))))))
(((*1 *2 *3)
(-12 (-4 *5 (-13 (-620 *2) (-174))) (-5 *2 (-899 *4))
(-5 *1 (-172 *4 *5 *3)) (-4 *4 (-1109)) (-4 *3 (-167 *5))))
@@ -16543,13 +16537,13 @@
(-5 *2 (-650 (-1103 (-849 (-227))))) (-5 *1 (-309))))
((*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-400))))
((*1 *1 *2)
- (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4))
- (-4 *4 (-1252 *3))))
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4))
+ (-4 *4 (-1253 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1252 *3))
- (-5 *2 (-1276 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1276 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1276 *3))))
+ (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3))
+ (-5 *2 (-1277 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-424 *1)) (-4 *1 (-436 *3)) (-4 *3 (-562))
(-4 *3 (-1109))))
@@ -16557,10 +16551,10 @@
(-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-1058))
(-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-469 *3 *4 *5 *6))))
((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-542))))
- ((*1 *2 *1) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1226))))
- ((*1 *1 *2) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1226))))
+ ((*1 *2 *1) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *2) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
- (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1252 *3))))
+ (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
((*1 *1 *2)
@@ -16569,7 +16563,7 @@
((*1 *1 *2)
(-2740
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
- (-12 (-1754 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
+ (-12 (-1753 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
(-4 *5 (-620 (-1186))))
(-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)))
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
@@ -16591,173 +16585,134 @@
(-5 *1 (-1154 *4 *5 *6 *7 *8))))
((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-1191))))
((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1191))))
- ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1206))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1206))))
+ ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207))))
((*1 *2 *3)
(-12 (-5 *3 (-786 *4 (-870 *5)))
(-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186)))
- (-5 *2 (-786 *4 (-870 *6))) (-5 *1 (-1302 *4 *5 *6))
+ (-5 *2 (-786 *4 (-870 *6))) (-5 *1 (-1303 *4 *5 *6))
(-14 *6 (-650 (-1186)))))
((*1 *2 *3)
(-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1302 *4 *5 *6))
+ (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1303 *4 *5 *6))
(-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186)))))
((*1 *2 *3)
(-12 (-5 *3 (-786 *4 (-870 *6)))
(-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *6 (-650 (-1186)))
- (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1302 *4 *5 *6))
+ (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1303 *4 *5 *6))
(-14 *5 (-650 (-1186)))))
((*1 *2 *3)
(-12 (-5 *3 (-1182 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2 (-1182 (-1033 (-413 *4)))) (-5 *1 (-1302 *4 *5 *6))
+ (-5 *2 (-1182 (-1033 (-413 *4)))) (-5 *1 (-1303 *4 *5 *6))
(-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186)))))
((*1 *2 *3)
(-12
(-5 *3 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6))))
(-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *6 (-650 (-1186)))
- (-5 *2 (-650 (-786 *4 (-870 *6)))) (-5 *1 (-1302 *4 *5 *6))
+ (-5 *2 (-650 (-786 *4 (-870 *6)))) (-5 *1 (-1303 *4 *5 *6))
(-14 *5 (-650 (-1186))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058))
+ (-5 *1 (-720 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-227)) (-5 *3 (-777)) (-5 *1 (-228))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-171 (-227))) (-5 *3 (-777)) (-5 *1 (-228))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1148))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3))
+ (-4 *3 (-13 (-1212) (-29 *5))))))
(((*1 *2 *1)
(-12 (-4 *1 (-1112 *3 *2 *4 *5 *6)) (-4 *3 (-1109)) (-4 *4 (-1109))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-4 *2 (-1109)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-934))
- (-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
- (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
- (-5 *1 (-154))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-934)) (-5 *4 (-413 (-570)))
- (-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
- (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
- (-5 *1 (-154))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
- (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
- (-5 *1 (-154)) (-5 *3 (-650 (-950 (-227))))))
- ((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-177))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-1094)))))
+(((*1 *2 *3 *1)
(-12
(-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 (-227)))))
- (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))))
- (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 (-227)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-59 *3)) (-4 *3 (-1226))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1226)) (-5 *1 (-59 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1221 *3))
- (-4 *3 (-983)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-592 *3)) (-5 *1 (-432 *5 *3))
- (-4 *3 (-13 (-1211) (-29 *5))))))
+ (-2 (|:| |cycle?| (-112)) (|:| -4304 (-777)) (|:| |period| (-777))))
+ (-5 *1 (-1166 *4)) (-4 *4 (-1227)) (-5 *3 (-777)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-650 *1))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1276 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
- (-5 *2 (-695 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))))
-(((*1 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))))
+ (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-777)) (-4 *4 (-354))
- (-5 *1 (-534 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-144)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551))))
- ((*1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056))
- (-5 *3 (-570)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -2331 (-650 *1))))
- (-4 *1 (-372 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-459 *3 *4 *5 *6))
- (|:| -2331 (-650 (-459 *3 *4 *5 *6)))))
- (-5 *1 (-459 *3 *4 *5 *6)) (-4 *3 (-174)) (-14 *4 (-928))
- (-14 *5 (-650 (-1186))) (-14 *6 (-1276 (-695 *3))))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-650 *7)) (-5 *3 (-112)) (-4 *7 (-1074 *4 *5 *6))
+ (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-5 *1 (-986 *4 *5 *6 *7)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
- (-5 *2 (-1182 *3)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *2 (-1074 *4 *5 *6)) (-5 *1 (-782 *4 *5 *6 *2 *3))
+ (-4 *3 (-1080 *4 *5 *6 *2)))))
(((*1 *1) (-5 *1 (-295))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-659 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-816 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-659 (-413 *6))) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-2 (|:| -2331 (-650 (-413 *6))) (|:| -3442 (-695 *5))))
- (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-660 *6 (-413 *6))) (-5 *4 (-413 *6)) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2331 (-650 *4))))
- (-5 *1 (-816 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-660 *6 (-413 *6))) (-4 *6 (-1252 *5))
- (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
- (-5 *2 (-2 (|:| -2331 (-650 (-413 *6))) (|:| -3442 (-695 *5))))
- (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |pde| (-650 (-320 (-227))))
+ (|:| |constraints|
+ (-650
+ (-2 (|:| |start| (-227)) (|:| |finish| (-227))
+ (|:| |grid| (-777)) (|:| |boundaryType| (-570))
+ (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227))))))
+ (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168))
+ (|:| |tol| (-227))))
+ (-5 *2 (-112)) (-5 *1 (-212)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1276 *4)) (-5 *3 (-570)) (-4 *4 (-354))
- (-5 *1 (-534 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
- (-14 *4 (-650 (-1186)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1226))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856)))
- (-14 *4 (-650 (-1186)))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
- (-4 *2 (-1252 (-171 *3))))))
-(((*1 *1 *1) (-5 *1 (-1072))))
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3593 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-928)) (-4 *6 (-562)) (-5 *2 (-650 (-320 *6)))
(-5 *1 (-223 *5 *6)) (-5 *3 (-320 *6)) (-4 *5 (-1058))))
((*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562))))
((*1 *2 *3)
- (-12 (-5 *3 (-592 *5)) (-4 *5 (-13 (-29 *4) (-1211)))
+ (-12 (-5 *3 (-592 *5)) (-4 *5 (-13 (-29 *4) (-1212)))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-650 *5))
(-5 *1 (-589 *4 *5))))
((*1 *2 *3)
@@ -16770,246 +16725,321 @@
(-12 (-5 *3 (-650 *1)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854))
(-4 *2 (-1158 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1217 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1211)))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212)))))
((*1 *2 *1)
- (-12 (-5 *2 (-1291 (-1186) *3)) (-5 *1 (-1298 *3)) (-4 *3 (-1058))))
+ (-12 (-5 *2 (-1292 (-1186) *3)) (-5 *1 (-1299 *3)) (-4 *3 (-1058))))
((*1 *2 *1)
- (-12 (-5 *2 (-1291 *3 *4)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-856))
+ (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1301 *3 *4)) (-4 *3 (-856))
(-4 *4 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-368)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4))) (-4 *6 (-347 *3 *4 *5))
- (-5 *2
- (-2 (|:| -4251 (-419 *4 (-413 *4) *5 *6)) (|:| |principalPart| *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1252 *5)) (-4 *5 (-368))
- (-5 *2
- (-2 (|:| |poly| *6) (|:| -3294 (-413 *6))
- (|:| |special| (-413 *6))))
- (-5 *1 (-733 *5 *6)) (-5 *3 (-413 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-903 *3 *4))
- (-4 *3 (-1252 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-777)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| -4397 *3) (|:| -4410 *3))) (-5 *1 (-903 *3 *5))
- (-4 *3 (-1252 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
- (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
- (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1080 *5 *6 *7 *8)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1078 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
- (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-650 *9)) (-5 *3 (-650 *8)) (-5 *4 (-112))
- (-4 *8 (-1074 *5 *6 *7)) (-4 *9 (-1118 *5 *6 *7 *8)) (-4 *5 (-458))
- (-4 *6 (-799)) (-4 *7 (-856)) (-5 *1 (-1154 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-440))
- (-5 *2
- (-650
- (-3 (|:| -3503 (-1186))
- (|:| -1469 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))
- (-5 *1 (-1190)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928))
- (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4450 "*")))))
- (-5 *1 (-909 *4 *2)))))
+(((*1 *1 *1 *1) (-5 *1 (-227)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049))))
+ ((*1 *1 *1 *1) (-4 *1 (-1148))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-788 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-970 *3 *2)) (-4 *2 (-132)) (-4 *3 (-562))
+ (-4 *3 (-1058)) (-4 *2 (-798))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1182 *3)) (-4 *3 (-1058))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-980)) (-4 *2 (-132)) (-5 *1 (-1188 *3)) (-4 *3 (-562))
+ (-4 *3 (-1058))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1250 *4 *3)) (-14 *4 (-1186))
+ (-4 *3 (-1058)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-650 *2))) (-5 *4 (-650 *5))
- (-4 *5 (-38 (-413 (-570)))) (-4 *2 (-1267 *5))
- (-5 *1 (-1269 *5 *2)))))
-(((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1226)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-570) (-570))) (-5 *1 (-366 *3)) (-4 *3 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-777) (-777))) (-4 *1 (-391 *3)) (-4 *3 (-1109))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-1019 *2)) (-4 *2 (-1226)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-4 *3 (-13 (-27) (-1211) (-436 *6) (-10 -8 (-15 -3735 ($ *7)))))
- (-4 *7 (-854))
- (-4 *8
- (-13 (-1254 *3 *7) (-368) (-1211)
- (-10 -8 (-15 -3447 ($ $)) (-15 -3555 ($ $)))))
+ (-12 (-5 *3 (-650 (-959 *6))) (-5 *4 (-650 (-1186)))
+ (-4 *6 (-13 (-562) (-1047 *5))) (-4 *5 (-562))
+ (-5 *2 (-650 (-650 (-298 (-413 (-959 *6)))))) (-5 *1 (-1048 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-868)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
+ (-5 *2 (-424 (-1182 (-413 (-570))))) (-5 *1 (-441 *4 *5 *3))
+ (-4 *3 (-1253 *5)))))
+(((*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311)) (-5 *2 (-424 *3))
+ (-5 *1 (-748 *4 *5 *6 *3)) (-4 *3 (-956 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-311))
+ (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 *7)))
+ (-5 *1 (-748 *4 *5 *6 *7)) (-5 *3 (-1182 *7))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-424 *1)) (-4 *1 (-956 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-856)) (-4 *5 (-799)) (-4 *6 (-458)) (-5 *2 (-424 *3))
+ (-5 *1 (-988 *4 *5 *6 *3)) (-4 *3 (-956 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-458))
+ (-4 *7 (-956 *6 *4 *5)) (-5 *2 (-424 (-1182 (-413 *7))))
+ (-5 *1 (-1181 *4 *5 *6 *7)) (-5 *3 (-1182 (-413 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-1256 *4 *3))
+ (-4 *3 (-13 (-1253 *4) (-562) (-10 -8 (-15 -1874 ($ $ $)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-14 *5 (-650 (-1186)))
(-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))))
- (-5 *1 (-428 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1168)) (-4 *9 (-992 *8))
- (-14 *10 (-1186)))))
+ (-650 (-1155 *4 (-537 (-870 *6)) (-870 *6) (-786 *4 (-870 *6)))))
+ (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1277)) (-5 *1 (-258))))
+ (-5 *2 (-1278)) (-5 *1 (-258))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1277)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1277)) (-5 *1 (-258))))
+ (-5 *2 (-1278)) (-5 *1 (-258))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4 *5)
(-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4)
(-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4 *5)
(-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4)
(-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4 *5)
(-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384)))
- (-5 *5 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *5 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4)
(-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384)))
- (-5 *2 (-1278)) (-5 *1 (-258))))
+ (-5 *2 (-1279)) (-5 *1 (-258))))
((*1 *2 *3 *4 *4 *5)
(-12 (-5 *3 (-298 *7)) (-5 *4 (-1186)) (-5 *5 (-650 (-266)))
(-4 *7 (-436 *6)) (-4 *6 (-13 (-562) (-856) (-1047 (-570))))
- (-5 *2 (-1277)) (-5 *1 (-259 *6 *7))))
+ (-5 *2 (-1278)) (-5 *1 (-259 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1277))
+ (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278))
(-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1277)) (-5 *1 (-262 *3))
+ (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1278)) (-5 *1 (-262 *3))
(-4 *3 (-13 (-620 (-542)) (-1109)))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-884 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266)))
- (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1277))
+ (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278))
(-5 *1 (-262 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-884 *5)) (-5 *4 (-1101 (-384)))
- (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1277))
+ (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278))
(-5 *1 (-262 *5))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-886 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266)))
- (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278))
+ (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279))
(-5 *1 (-262 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-886 *5)) (-5 *4 (-1101 (-384)))
- (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278))
+ (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279))
(-5 *1 (-262 *5))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1278))
+ (-12 (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266))) (-5 *2 (-1279))
(-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109)))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1278)) (-5 *1 (-262 *3))
+ (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1279)) (-5 *1 (-262 *3))
(-4 *3 (-13 (-620 (-542)) (-1109)))))
((*1 *2 *3 *4 *4 *5)
(-12 (-5 *3 (-889 *6)) (-5 *4 (-1101 (-384))) (-5 *5 (-650 (-266)))
- (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278))
+ (-4 *6 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279))
(-5 *1 (-262 *6))))
((*1 *2 *3 *4 *4)
(-12 (-5 *3 (-889 *5)) (-5 *4 (-1101 (-384)))
- (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1278))
+ (-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1279))
(-5 *1 (-262 *5))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277)) (-5 *1 (-263))))
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1278)) (-5 *1 (-263))))
((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1277))
+ (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1278))
(-5 *1 (-263))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *2 (-1277)) (-5 *1 (-263))))
+ (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *2 (-1278)) (-5 *1 (-263))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-650 (-266)))
- (-5 *2 (-1277)) (-5 *1 (-263))))
+ (-5 *2 (-1278)) (-5 *1 (-263))))
((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1278)) (-5 *1 (-263))))
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1279)) (-5 *1 (-263))))
((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1278))
+ (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1279))
(-5 *1 (-263)))))
(((*1 *1 *1 *1) (-5 *1 (-130)))
((*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928))))
- ((*1 *1 *1 *1) (-5 *1 (-1231))) ((*1 *1 *1 *1) (-5 *1 (-1232)))
- ((*1 *1 *1 *1) (-5 *1 (-1233))) ((*1 *1 *1 *1) (-5 *1 (-1234))))
+ ((*1 *1 *1 *1) (-5 *1 (-1232))) ((*1 *1 *1 *1) (-5 *1 (-1233)))
+ ((*1 *1 *1 *1) (-5 *1 (-1234))) ((*1 *1 *1 *1) (-5 *1 (-1235))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1274 *3)) (-4 *3 (-1226)) (-4 *3 (-1058))
+ (-12 (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-1058))
(-5 *2 (-695 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-311) (-148)))
- (-4 *5 (-13 (-856) (-620 (-1186)))) (-4 *6 (-799))
- (-5 *2
- (-650
- (-2 (|:| |eqzro| (-650 *7)) (|:| |neqzro| (-650 *7))
- (|:| |wcond| (-650 (-959 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1276 (-413 (-959 *4))))
- (|:| -2331 (-650 (-1276 (-413 (-959 *4))))))))))
- (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-867)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-311) (-148))) (-4 *5 (-13 (-856) (-620 (-1186))))
+ (-4 *6 (-799)) (-5 *2 (-650 (-650 (-570))))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-5 *3 (-570)) (-4 *7 (-956 *4 *6 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4))
+ (-4 *4 (-13 (-368) (-854))))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1674))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230)) (-4 *4 (-1252 *3))
- (-4 *5 (-1252 (-413 *4)))
- (-5 *2 (-2 (|:| |num| (-1276 *4)) (|:| |den| *4))))))
(((*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-309))))
((*1 *2 *1)
(|partial| -12
(-5 *2 (-2 (|:| |num| (-899 *3)) (|:| |den| (-899 *3))))
(-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-543 *4 *2))
- (-4 *2 (-1267 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3)))
- (-4 *5 (-1252 *4)) (-4 *6 (-730 *4 *5)) (-5 *1 (-547 *4 *5 *6 *2))
- (-4 *2 (-1267 *6))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-570)) (-4 *4 (-13 (-368) (-373) (-620 *3)))
- (-5 *1 (-548 *4 *2)) (-4 *2 (-1267 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148)))
- (-5 *1 (-1162 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1252 *3)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 *6)) (-5 *4 (-650 (-1186))) (-4 *6 (-368))
- (-5 *2 (-650 (-298 (-959 *6)))) (-5 *1 (-544 *5 *6 *7))
- (-4 *5 (-458)) (-4 *7 (-13 (-368) (-854))))))
-(((*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
-(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1226)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
+ (-4 *3 (-562)))))
+(((*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1069))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
+ (-14 *3 (-650 (-1186))) (-4 *4 (-393))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-1069))))
+ ((*1 *1 *1) (-4 *1 (-854)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)) (-4 *2 (-1069))))
+ ((*1 *1 *1) (-4 *1 (-1069))) ((*1 *1 *1) (-4 *1 (-1148))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-1191))) (-5 *1 (-1191)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109))
+ (-4 *6 (-1109)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-690 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-775))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
+ (-5 *1 (-571))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-775)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
+ (-5 *1 (-571))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-793)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))
+ (|:| |extra| (-1044))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-793)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))
+ (|:| |extra| (-1044))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-806)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-814))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-811))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-814)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-811))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-845)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2315 (-650 (-227)))))
+ (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-845)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2315 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-847))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-846))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-847)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-846))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-902)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |pde| (-650 (-320 (-227))))
+ (|:| |constraints|
+ (-650
+ (-2 (|:| |start| (-227)) (|:| |finish| (-227))
+ (|:| |grid| (-777)) (|:| |boundaryType| (-570))
+ (|:| |dStart| (-695 (-227))) (|:| |dFinish| (-695 (-227))))))
+ (|:| |f| (-650 (-650 (-320 (-227))))) (|:| |st| (-1168))
+ (|:| |tol| (-227))))
+ (-5 *2 (-2 (|:| -1363 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-905))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-904))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-905)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -1363 (-384)) (|:| -3504 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-904)))))
+(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306))))
((*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115))))
((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109))))
@@ -17018,34 +17048,27 @@
(-5 *1 (-618 *5)))))
(((*1 *1 *1 *1) (-5 *1 (-130)))
((*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928))))
- ((*1 *1 *1 *1) (-5 *1 (-1231))) ((*1 *1 *1 *1) (-5 *1 (-1232)))
- ((*1 *1 *1 *1) (-5 *1 (-1233))) ((*1 *1 *1 *1) (-5 *1 (-1234))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
- (-12 (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-84 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-394)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-227))
- (-5 *2 (-1044)) (-5 *1 (-755)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-956 *4 *5 *6)) (-4 *4 (-458))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-1281))
- (-5 *1 (-455 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1226))
- (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-650 (-413 *6))) (-5 *3 (-413 *6))
- (-4 *6 (-1252 *5)) (-4 *5 (-13 (-368) (-148) (-1047 (-570))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-574 *5 *6)))))
+ ((*1 *1 *1 *1) (-5 *1 (-1232))) ((*1 *1 *1 *1) (-5 *1 (-1233)))
+ ((*1 *1 *1 *1) (-5 *1 (-1234))) ((*1 *1 *1 *1) (-5 *1 (-1235))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-618 *3)) (-5 *5 (-1 (-1182 *3) (-1182 *3)))
+ (-4 *3 (-13 (-27) (-436 *6))) (-4 *6 (-562)) (-5 *2 (-592 *3))
+ (-5 *1 (-557 *6 *3)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
+ (-5 *1 (-754)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1058))
(-4 *4 (-798))))
@@ -17053,17 +17076,17 @@
(-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-50 *3 *4))
(-14 *4 (-650 (-1186)))))
((*1 *1 *2 *1 *1 *3)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226))
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226))
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1226))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227))
(-4 *4 (-378 *3)) (-4 *5 (-378 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-137 *5 *6 *7)) (-14 *5 (-570))
(-14 *6 (-777)) (-4 *7 (-174)) (-4 *8 (-174))
@@ -17076,16 +17099,16 @@
(-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186)))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-242 *5 *6)) (-14 *5 (-777))
- (-4 *6 (-1226)) (-4 *7 (-1226)) (-5 *2 (-242 *5 *7))
+ (-4 *6 (-1227)) (-4 *7 (-1227)) (-5 *2 (-242 *5 *7))
(-5 *1 (-241 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-298 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-298 *6)) (-5 *1 (-297 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-298 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-298 *6)) (-5 *1 (-297 *5 *6))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-298 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-298 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1168)) (-5 *5 (-618 *6))
- (-4 *6 (-306)) (-4 *2 (-1226)) (-5 *1 (-301 *6 *2))))
+ (-4 *6 (-306)) (-4 *2 (-1227)) (-5 *1 (-301 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-618 *5)) (-4 *5 (-306))
(-4 *2 (-306)) (-5 *1 (-302 *5 *2))))
@@ -17099,20 +17122,20 @@
(-4 *6 (-1109)) (-5 *2 (-320 *6)) (-5 *1 (-318 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-341 *5 *6 *7 *8)) (-4 *5 (-368))
- (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *8 (-347 *5 *6 *7))
- (-4 *9 (-368)) (-4 *10 (-1252 *9)) (-4 *11 (-1252 (-413 *10)))
+ (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *8 (-347 *5 *6 *7))
+ (-4 *9 (-368)) (-4 *10 (-1253 *9)) (-4 *11 (-1253 (-413 *10)))
(-5 *2 (-341 *9 *10 *11 *12))
(-5 *1 (-338 *5 *6 *7 *8 *9 *10 *11 *12))
(-4 *12 (-347 *9 *10 *11))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-343 *3)) (-4 *3 (-1109))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1230)) (-4 *8 (-1230))
- (-4 *6 (-1252 *5)) (-4 *7 (-1252 (-413 *6))) (-4 *9 (-1252 *8))
+ (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1231)) (-4 *8 (-1231))
+ (-4 *6 (-1253 *5)) (-4 *7 (-1253 (-413 *6))) (-4 *9 (-1253 *8))
(-4 *2 (-347 *8 *9 *10)) (-5 *1 (-345 *5 *6 *7 *4 *8 *9 *10 *2))
- (-4 *4 (-347 *5 *6 *7)) (-4 *10 (-1252 (-413 *9)))))
+ (-4 *4 (-347 *5 *6 *7)) (-4 *10 (-1253 (-413 *9)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1226)) (-4 *6 (-1226))
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1227)) (-4 *6 (-1227))
(-4 *2 (-378 *6)) (-5 *1 (-376 *5 *4 *6 *2)) (-4 *4 (-378 *5))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-387 *3 *4)) (-4 *3 (-1058))
@@ -17125,9 +17148,9 @@
(-4 *6 (-562)) (-5 *2 (-413 *6)) (-5 *1 (-412 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-419 *5 *6 *7 *8)) (-4 *5 (-311))
- (-4 *6 (-1001 *5)) (-4 *7 (-1252 *6))
+ (-4 *6 (-1001 *5)) (-4 *7 (-1253 *6))
(-4 *8 (-13 (-415 *6 *7) (-1047 *6))) (-4 *9 (-311))
- (-4 *10 (-1001 *9)) (-4 *11 (-1252 *10))
+ (-4 *10 (-1001 *9)) (-4 *11 (-1253 *10))
(-5 *2 (-419 *9 *10 *11 *12))
(-5 *1 (-418 *5 *6 *7 *8 *9 *10 *11 *12))
(-4 *12 (-13 (-415 *10 *11) (-1047 *10)))))
@@ -17143,7 +17166,7 @@
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1109)) (-4 *6 (-1109))
(-4 *2 (-431 *6)) (-5 *1 (-429 *5 *4 *6 *2)) (-4 *4 (-431 *5))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-495 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-495 *3)) (-4 *3 (-1227))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-515 *3 *4)) (-4 *3 (-1109))
(-4 *4 (-856))))
@@ -17152,9 +17175,9 @@
(-4 *6 (-368)) (-5 *2 (-592 *6)) (-5 *1 (-590 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -1400 *5) (|:| |coeff| *5)) "failed"))
+ (-5 *4 (-3 (-2 (|:| -3585 *5) (|:| |coeff| *5)) "failed"))
(-4 *5 (-368)) (-4 *6 (-368))
- (-5 *2 (-2 (|:| -1400 *6) (|:| |coeff| *6)))
+ (-5 *2 (-2 (|:| -3585 *6) (|:| |coeff| *6)))
(-5 *1 (-590 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
@@ -17174,31 +17197,31 @@
(-650 (-2 (|:| |coeff| *6) (|:| |logand| *6))))))
(-5 *1 (-590 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-607 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-607 *6)) (-5 *1 (-604 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-607 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-607 *6)) (-5 *1 (-604 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-607 *6)) (-5 *5 (-607 *7))
- (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-607 *8))
+ (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-607 *8))
(-5 *1 (-605 *6 *7 *8))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1166 *6)) (-5 *5 (-607 *7))
- (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-1166 *8))
+ (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-1166 *8))
(-5 *1 (-605 *6 *7 *8))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-607 *6)) (-5 *5 (-1166 *7))
- (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-1166 *8))
+ (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-1166 *8))
(-5 *1 (-605 *6 *7 *8))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-650 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-650 *6)) (-5 *1 (-648 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-650 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-650 *6)) (-5 *1 (-648 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-650 *6)) (-5 *5 (-650 *7))
- (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-650 *8))
+ (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-650 *8))
(-5 *1 (-649 *6 *7 *8))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-657 *3)) (-4 *3 (-1226))))
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-657 *3)) (-4 *3 (-1227))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1058)) (-4 *8 (-1058))
(-4 *6 (-378 *5)) (-4 *7 (-378 *5)) (-4 *2 (-693 *8 *9 *10))
@@ -17211,9 +17234,9 @@
(-4 *4 (-693 *5 *6 *7)) (-4 *9 (-378 *8)) (-4 *10 (-378 *8))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-562)) (-4 *7 (-562))
- (-4 *6 (-1252 *5)) (-4 *2 (-1252 (-413 *8)))
- (-5 *1 (-715 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1252 (-413 *6)))
- (-4 *8 (-1252 *7))))
+ (-4 *6 (-1253 *5)) (-4 *2 (-1253 (-413 *8)))
+ (-5 *1 (-715 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1253 (-413 *6)))
+ (-4 *8 (-1253 *7))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1058)) (-4 *9 (-1058))
(-4 *5 (-856)) (-4 *6 (-799)) (-4 *2 (-956 *9 *7 *5))
@@ -17250,14 +17273,14 @@
(-12 (-5 *2 (-849 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-849 *5))
(-4 *5 (-1109)) (-4 *6 (-1109)) (-5 *1 (-848 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-884 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-884 *6)) (-5 *1 (-883 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-884 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-884 *6)) (-5 *1 (-883 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-889 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-889 *6)) (-5 *1 (-888 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-889 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-889 *6)) (-5 *1 (-888 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-896 *5 *6)) (-4 *5 (-1109))
(-4 *6 (-1109)) (-4 *7 (-1109)) (-5 *2 (-896 *5 *7))
@@ -17273,11 +17296,11 @@
(-4 *8 (-1058)) (-4 *6 (-799))
(-4 *2
(-13 (-1109)
- (-10 -8 (-15 -2954 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))))))
+ (-10 -8 (-15 -2953 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))))))
(-5 *1 (-958 *6 *7 *8 *5 *2)) (-4 *5 (-956 *8 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-965 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-965 *6)) (-5 *1 (-964 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-965 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-965 *6)) (-5 *1 (-964 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-973 *5)) (-4 *5 (-1109))
(-4 *6 (-1109)) (-5 *2 (-973 *6)) (-5 *1 (-975 *5 *6))))
@@ -17289,7 +17312,7 @@
(-4 *2 (-956 (-959 *4) *5 *6)) (-4 *5 (-799))
(-4 *6
(-13 (-856)
- (-10 -8 (-15 -1416 ((-1186) $))
+ (-10 -8 (-15 -1417 ((-1186) $))
(-15 -2643 ((-3 $ "failed") (-1186))))))
(-5 *1 (-993 *4 *5 *6 *2))))
((*1 *2 *3 *4)
@@ -17312,1030 +17335,1006 @@
(-4 *4 (-1062 *5 *6 *7 *8 *9)) (-4 *11 (-240 *6 *10))
(-4 *12 (-240 *5 *10))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-1103 *6)) (-5 *1 (-1098 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-1103 *6)) (-5 *1 (-1098 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1103 *5)) (-4 *5 (-854))
- (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-650 *6))
+ (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-650 *6))
(-5 *1 (-1098 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1101 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-1101 *6)) (-5 *1 (-1100 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1101 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-1101 *6)) (-5 *1 (-1100 *5 *6))))
((*1 *2 *3 *1)
(-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854))
(-4 *2 (-1158 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-1166 *6)) (-5 *1 (-1164 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-1166 *6)) (-5 *1 (-1164 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1166 *6)) (-5 *5 (-1166 *7))
- (-4 *6 (-1226)) (-4 *7 (-1226)) (-4 *8 (-1226)) (-5 *2 (-1166 *8))
+ (-4 *6 (-1227)) (-4 *7 (-1227)) (-4 *8 (-1227)) (-5 *2 (-1166 *8))
(-5 *1 (-1165 *6 *7 *8))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1182 *5)) (-4 *5 (-1058))
(-4 *6 (-1058)) (-5 *2 (-1182 *6)) (-5 *1 (-1180 *5 *6))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1202 *3 *4)) (-4 *3 (-1109))
+ (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1203 *3 *4)) (-4 *3 (-1109))
(-4 *4 (-1109))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1240 *5 *7 *9)) (-4 *5 (-1058))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1241 *5 *7 *9)) (-4 *5 (-1058))
(-4 *6 (-1058)) (-14 *7 (-1186)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1240 *6 *8 *10)) (-5 *1 (-1235 *5 *6 *7 *8 *9 *10))
+ (-5 *2 (-1241 *6 *8 *10)) (-5 *1 (-1236 *5 *6 *7 *8 *9 *10))
(-14 *8 (-1186))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1243 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-1243 *6)) (-5 *1 (-1242 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1244 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-1244 *6)) (-5 *1 (-1243 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1243 *5)) (-4 *5 (-854))
- (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1166 *6))
- (-5 *1 (-1242 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1244 *5)) (-4 *5 (-854))
+ (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1166 *6))
+ (-5 *1 (-1243 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1249 *5 *6)) (-14 *5 (-1186))
- (-4 *6 (-1058)) (-4 *8 (-1058)) (-5 *2 (-1249 *7 *8))
- (-5 *1 (-1244 *5 *6 *7 *8)) (-14 *7 (-1186))))
+ (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1250 *5 *6)) (-14 *5 (-1186))
+ (-4 *6 (-1058)) (-4 *8 (-1058)) (-5 *2 (-1250 *7 *8))
+ (-5 *1 (-1245 *5 *6 *7 *8)) (-14 *7 (-1186))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058))
- (-4 *2 (-1252 *6)) (-5 *1 (-1250 *5 *4 *6 *2)) (-4 *4 (-1252 *5))))
+ (-4 *2 (-1253 *6)) (-5 *1 (-1251 *5 *4 *6 *2)) (-4 *4 (-1253 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1261 *5 *7 *9)) (-4 *5 (-1058))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1262 *5 *7 *9)) (-4 *5 (-1058))
(-4 *6 (-1058)) (-14 *7 (-1186)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1261 *6 *8 *10)) (-5 *1 (-1256 *5 *6 *7 *8 *9 *10))
+ (-5 *2 (-1262 *6 *8 *10)) (-5 *1 (-1257 *5 *6 *7 *8 *9 *10))
(-14 *8 (-1186))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1058)) (-4 *6 (-1058))
- (-4 *2 (-1267 *6)) (-5 *1 (-1265 *5 *6 *4 *2)) (-4 *4 (-1267 *5))))
+ (-4 *2 (-1268 *6)) (-5 *1 (-1266 *5 *6 *4 *2)) (-4 *4 (-1268 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1276 *5)) (-4 *5 (-1226))
- (-4 *6 (-1226)) (-5 *2 (-1276 *6)) (-5 *1 (-1275 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-1227))
+ (-4 *6 (-1227)) (-5 *2 (-1277 *6)) (-5 *1 (-1276 *5 *6))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1276 *5))
- (-4 *5 (-1226)) (-4 *6 (-1226)) (-5 *2 (-1276 *6))
- (-5 *1 (-1275 *5 *6))))
+ (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1277 *5))
+ (-4 *5 (-1227)) (-4 *6 (-1227)) (-5 *2 (-1277 *6))
+ (-5 *1 (-1276 *5 *6))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1293 *3 *4)) (-4 *3 (-856))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856))
(-4 *4 (-1058))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-1299 *3 *4))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-1300 *3 *4))
(-4 *4 (-852)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-424 *2)) (-4 *2 (-311)) (-5 *1 (-921 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-424 (-959 *6))) (-5 *5 (-1186)) (-5 *3 (-959 *6))
- (-4 *6 (-13 (-311) (-148))) (-5 *2 (-52)) (-5 *1 (-922 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-849 *4)) (-5 *3 (-618 *4)) (-5 *5 (-112))
- (-4 *4 (-13 (-1211) (-29 *6)))
- (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-5 *1 (-226 *6 *4)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))))
(((*1 *1 *1) (-5 *1 (-227)))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
((*1 *1 *1) (-5 *1 (-384))) ((*1 *1) (-5 *1 (-384))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1276 (-650 (-570)))) (-5 *1 (-486))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-1277 (-650 (-570)))) (-5 *1 (-486))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-607 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1226)) (-5 *1 (-1166 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1252 *5)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| -3294 (-424 *3)) (|:| |special| (-424 *3))))
- (-5 *1 (-733 *5 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1211)))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
(((*1 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))))
+(((*1 *1 *1) (-4 *1 (-562))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-1182 *3)) (-5 *1 (-41 *4 *3))
- (-4 *3
- (-13 (-368) (-306)
- (-10 -8 (-15 -4398 ((-1134 *4 (-618 $)) $))
- (-15 -4412 ((-1134 *4 (-618 $)) $))
- (-15 -3735 ($ (-1134 *4 (-618 $))))))))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-1166 (-227))) (-5 *1 (-194))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-320 (-227))) (-5 *4 (-650 (-1186)))
+ (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *4 (-650 (-1186)))
+ (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-304)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *5 (-1252 *4)) (-5 *2 (-650 (-2 (|:| -2177 *5) (|:| -3428 *5))))
- (-5 *1 (-813 *4 *5 *3 *6)) (-4 *3 (-662 *5))
- (-4 *6 (-662 (-413 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *4 (-1252 *5)) (-5 *2 (-650 (-2 (|:| -2177 *4) (|:| -3428 *4))))
- (-5 *1 (-813 *5 *4 *3 *6)) (-4 *3 (-662 *4))
- (-4 *6 (-662 (-413 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *5 (-1252 *4)) (-5 *2 (-650 (-2 (|:| -2177 *5) (|:| -3428 *5))))
- (-5 *1 (-813 *4 *5 *6 *3)) (-4 *6 (-662 *5))
- (-4 *3 (-662 (-413 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *4 (-1252 *5)) (-5 *2 (-650 (-2 (|:| -2177 *4) (|:| -3428 *4))))
- (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4))
- (-4 *3 (-662 (-413 *4))))))
-(((*1 *2)
- (-12 (-5 *2 (-695 (-917 *3))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928))
- (-14 *4 (-928))))
- ((*1 *2)
- (-12 (-5 *2 (-695 *3)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354))
- (-14 *4
- (-3 (-1182 *3)
- (-1276 (-650 (-2 (|:| -2195 *3) (|:| -2159 (-1129)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
- (-14 *4 (-928)))))
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-413 *5)) (-4 *5 (-1252 *4)) (-4 *4 (-562))
- (-4 *4 (-1058)) (-4 *2 (-1267 *4)) (-5 *1 (-1270 *4 *5 *6 *2))
- (-4 *6 (-662 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1151 *3 *4))
- (-14 *3 (-777)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *6)) (-4 *6 (-1074 *3 *4 *5)) (-4 *3 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
+ (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-311))
+ (-5 *2 (-413 (-424 (-959 *4)))) (-5 *1 (-1051 *4)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-763)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334))))
((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-950 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1252 *2)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-985 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *2 (-856)) (-4 *5 (-1074 *3 *4 *2)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-650 *4)) (-4 *4 (-368)) (-5 *2 (-1276 *4))
- (-5 *1 (-820 *4 *3)) (-4 *3 (-662 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-650 *1)) (-4 *1 (-1074 *4 *5 *6)) (-4 *4 (-1058))
- (-4 *5 (-799)) (-4 *6 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
- (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1219 *4 *5 *6 *3)) (-4 *4 (-562)) (-4 *5 (-799))
- (-4 *6 (-856)) (-4 *3 (-1074 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1186)) (-5 *6 (-112))
- (-4 *7 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
- (-4 *3 (-13 (-1211) (-966) (-29 *7)))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174))
+ (-5 *2 (-650 (-959 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-650 (-959 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-650 (-959 *3))) (-5 *1 (-459 *3 *4 *5 *6))
+ (-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *3)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-459 *4 *5 *6 *7))) (-5 *2 (-650 (-959 *4)))
+ (-5 *1 (-459 *4 *5 *6 *7)) (-4 *4 (-562)) (-4 *4 (-174))
+ (-14 *5 (-928)) (-14 *6 (-650 (-1186))) (-14 *7 (-1277 (-695 *4))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1109)) (-4 *5 (-1109))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-695 (-227))) (-5 *6 (-695 (-570))) (-5 *3 (-570))
+ (-5 *4 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1990 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
(-5 *2
- (-3 (|:| |f1| (-849 *3)) (|:| |f2| (-650 (-849 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-221 *7 *3)) (-5 *5 (-849 *3)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-760)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1276 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1230))
- (-4 *4 (-1252 *3)) (-4 *5 (-1252 (-413 *4))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular| "There are singularities at both end points")
+ (|:| |notEvaluated| "End point continuity not yet evaluated")))
+ (-5 *1 (-194)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4)))
+ (-5 *1 (-1197 *4)) (-4 *4 (-856)))))
(((*1 *2) (-12 (-5 *2 (-839 (-570))) (-5 *1 (-540))))
((*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1293 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1299 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *4 (-570))) (-5 *5 (-1 (-1166 *4))) (-4 *4 (-368))
+ (-4 *4 (-1058)) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1281)) (-5 *1 (-828)))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1278)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1252 (-48))))))
-(((*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))))
-(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1252 *5))
- (-5 *2
- (-650
- (-2 (|:| -2331 (-695 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-695 *6)))))
- (-5 *1 (-504 *5 *6 *7))
- (-5 *3
- (-2 (|:| -2331 (-695 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-695 *6))))
- (-4 *7 (-1252 *6)))))
+ (-12 (-4 *3 (-1109)) (-4 *4 (-13 (-1058) (-893 *3) (-620 (-899 *3))))
+ (-5 *2 (-650 (-1186))) (-5 *1 (-1085 *3 *4 *5))
+ (-4 *5 (-13 (-436 *4) (-893 *3) (-620 (-899 *3)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1220 *3 *4 *5 *6)) (-4 *3 (-562)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-4 *6 (-1074 *3 *4 *5))
+ (-5 *2 (-2 (|:| -4104 (-650 *6)) (|:| -1726 (-650 *6)))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4388 *4))))
+ (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *4 (-1186))
+ (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
+(((*1 *1) (-5 *1 (-55))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))))
(((*1 *2)
(-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
(-4 *3 (-562))))
((*1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
- ((*1 *1) (-5 *1 (-483))) ((*1 *1) (-4 *1 (-1211))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1109) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1149 *4 *5)) (-4 *4 (-13 (-1109) (-34))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1211) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) (-5 *2 (-1044))
- (-5 *1 (-754)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227)))
- (-5 *6 (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-762)))))
-((-1309 . 733299) (-1310 . 733131) (-1311 . 733021) (-1312 . 732921)
- (-1313 . 732769) (-1314 . 732516) (-1315 . 732187) (-1316 . 732078)
- (-1317 . 732017) (-1318 . 731939) (-1319 . 731838) (-1320 . 731767)
- (-1321 . 731676) (-1322 . 731480) (-1323 . 731328) (-1324 . 731221)
- (-1325 . 731144) (-1326 . 731013) (-1327 . 730872) (-1328 . 730537)
- (-1329 . 730010) (-1330 . 729915) (-1331 . 729778) (-1332 . 729650)
- (-1333 . 729571) (-1334 . 729465) (-1335 . 729352) (-1336 . 729210)
- (-1337 . 729111) (-1338 . 728948) (-1339 . 728589) (-1340 . 727701)
- (-1341 . 727454) (-1342 . 727399) (-1343 . 727313) (-1344 . 727247)
- (-1345 . 727079) (-1346 . 726764) (-1347 . 726567) (-1348 . 726350)
- (-1349 . 726264) (-1350 . 725907) (-1351 . 711677) (-1352 . 711368)
- (-1353 . 711228) (-1354 . 711130) (-1355 . 711056) (-1356 . 710960)
- (-1357 . 710800) (-1358 . 710536) (-1359 . 710314) (-1360 . 710005)
- (-1361 . 709949) (-1362 . 709887) (-1363 . 709699) (-1364 . 709595)
- (-1365 . 709516) (-1366 . 708991) (-1367 . 708939) (-1368 . 708735)
- (-1369 . 708569) (-1370 . 708403) (-1371 . 708315) (-1372 . 708163)
- (-1373 . 707736) (-1374 . 707637) (-1375 . 707415) (-1376 . 703352)
- (-1377 . 702870) (-1378 . 702775) (-1379 . 702691) (-1380 . 702638)
- (-1381 . 702351) (-1382 . 702281) (-1383 . 702135) (-1384 . 701998)
- (-1385 . 701817) (-1386 . 700240) (-1387 . 699273) (-1388 . 699241)
- (-1389 . 699139) (-1390 . 698635) (-1391 . 698538) (-1392 . 697510)
- (-1393 . 697415) (-1394 . 697387) (-1395 . 697293) (-1396 . 696885)
- (-1397 . 696580) (-1398 . 696483) (-1399 . 696316) (-1400 . 696261)
- (-1401 . 696002) (-1402 . 695823) (-1403 . 695724) (-1404 . 695627)
- (-1405 . 695483) (-1406 . 694567) (-1407 . 694510) (-1408 . 694451)
- (-1409 . 694385) (-1410 . 694218) (-1411 . 694080) (-1412 . 694027)
- (-1413 . 693941) (-1414 . 693831) (-1415 . 693778) (-1416 . 690111)
- (-1417 . 690037) (-1418 . 689912) (-1419 . 689767) (-1420 . 689676)
- (-1421 . 689572) (-1422 . 689419) (-1423 . 688933) (-1424 . 688446)
- (-1425 . 688135) (-1426 . 685790) (-1427 . 685558) (-1428 . 685480)
- (-1429 . 685361) (-1430 . 685142) (-1431 . 685083) (-1432 . 684829)
- (-1433 . 684676) (-1434 . 684248) (-1435 . 683932) (-1436 . 683866)
- (-1437 . 683700) (-1438 . 683317) (-1439 . 683124) (-1440 . 682914)
- (-1441 . 682556) (-1442 . 682506) (-1443 . 682062) (-1444 . 681808)
- (-1445 . 681669) (-1446 . 681612) (-1447 . 681544) (-1448 . 681441)
- (-1449 . 681369) (-1450 . 681236) (-1451 . 681081) (-1452 . 681022)
- (-1453 . 680951) (-1454 . 680896) (-1455 . 680828) (-1456 . 680524)
- (-1457 . 680428) (-1458 . 680354) (-1459 . 680295) (-1460 . 680228)
- (-1461 . 679865) (-1462 . 679609) (-1463 . 679472) (-1464 . 679375)
- (-1465 . 679244) (-1466 . 679019) (-1467 . 678956) (** . 675962)
- (-1469 . 675901) (-1470 . 675817) (-1471 . 675713) (-1472 . 675590)
- (-1473 . 675521) (-1474 . 675360) (-1475 . 675197) (-1476 . 675146)
- (-1477 . 675094) (-1478 . 674510) (-1479 . 674407) (-1480 . 674337)
- (-1481 . 673943) (-1482 . 673785) (-1483 . 673695) (-1484 . 673536)
- (-1485 . 673194) (-1486 . 673020) (-1487 . 672310) (-1488 . 672236)
- (-1489 . 672184) (-1490 . 672026) (-1491 . 671734) (-1492 . 671422)
- (-1493 . 671292) (-1494 . 671219) (-1495 . 671001) (-1496 . 670944)
- (-1497 . 670860) (-1498 . 670791) (-1499 . 670548) (-1500 . 670458)
- (-1501 . 670271) (-1502 . 670169) (-1503 . 670099) (-1504 . 670002)
- (-1505 . 669872) (-1506 . 669798) (-1507 . 668020) (-1508 . 667948)
- (-1509 . 667386) (-1510 . 667242) (-1511 . 667208) (-1512 . 667124)
- (-1513 . 667072) (-1514 . 666824) (-1515 . 666617) (-1516 . 666499)
- (-1517 . 666266) (-1518 . 666139) (-1519 . 665867) (-1520 . 665701)
- (-1521 . 665558) (-1522 . 665310) (-1523 . 665112) (-1524 . 665009)
- (-1525 . 664885) (-1526 . 664803) (-1527 . 664744) (-1528 . 664716)
- (-1529 . 663962) (-1530 . 663809) (-1531 . 663672) (-1532 . 663491)
- (-1533 . 663457) (-1534 . 663277) (-1535 . 663156) (-1536 . 662998)
- (-1537 . 662946) (-1538 . 662872) (-1539 . 662683) (-1540 . 662630)
- (-1541 . 662521) (-1542 . 662421) (-1543 . 662314) (-1544 . 662198)
- (-1545 . 662073) (-1546 . 662024) (-1547 . 661755) (-1548 . 661698)
- (-1549 . 661620) (-1550 . 661085) (-1551 . 660906) (-1552 . 660517)
- (-1553 . 660308) (-1554 . 660255) (-1555 . 660009) (-1556 . 659908)
- (-1557 . 659686) (-1558 . 658488) (-1559 . 657924) (-1560 . 657726)
- (-1561 . 657611) (-1562 . 657493) (-1563 . 657260) (-1564 . 657232)
- (-1565 . 657087) (-1566 . 656424) (-1567 . 656341) (-1568 . 656274)
- (-1569 . 656179) (-1570 . 656090) (-1571 . 655865) (-1572 . 655816)
- (-1573 . 655609) (-1574 . 654975) (-1575 . 654889) (-1576 . 654293)
- (-1577 . 654037) (-1578 . 653646) (-1579 . 653491) (-1580 . 653403)
- (-1581 . 653200) (-1582 . 653058) (-1583 . 652472) (-1584 . 652444)
- (-1585 . 652234) (-1586 . 652074) (-1587 . 652022) (-1588 . 651724)
- (-1589 . 651554) (-1590 . 651453) (-1591 . 651262) (-1592 . 651132)
- (-1593 . 651061) (-1594 . 651002) (-1595 . 650825) (-1596 . 650215)
- (-1597 . 650062) (-1598 . 649839) (-1599 . 649784) (-1600 . 649621)
- (-1601 . 647507) (-1602 . 647419) (-1603 . 647318) (-1604 . 647265)
- (-1605 . 647052) (-1606 . 646921) (-1607 . 646675) (-1608 . 646554)
- (-1609 . 646484) (-1610 . 646382) (-1611 . 646281) (-1612 . 646126)
- (-1613 . 645750) (-1614 . 645594) (-1615 . 645426) (-1616 . 645311)
- (-1617 . 645216) (-1618 . 644997) (-1619 . 644808) (-1620 . 644727)
- (-1621 . 644509) (-1622 . 644129) (-1623 . 643939) (-1624 . 643889)
- (-1625 . 642593) (-1626 . 642460) (-1627 . 642389) (-1628 . 642320)
- (-1629 . 642075) (-1630 . 641966) (-1631 . 641715) (-1632 . 641687)
- (-1633 . 641529) (-1634 . 641441) (-1635 . 641293) (-1636 . 641212)
- (-1637 . 641141) (-1638 . 640766) (-1639 . 640287) (-1640 . 640205)
- (-1641 . 640122) (-1642 . 640017) (-1643 . 639907) (-1644 . 639806)
- (-1645 . 639224) (-1646 . 638991) (-1647 . 638852) (-1648 . 638435)
- (-1649 . 638322) (-1650 . 638227) (-1651 . 638154) (-1652 . 638088)
- (-1653 . 637978) (-1654 . 628528) (-1655 . 628405) (-1656 . 628377)
- (-1657 . 628318) (-1658 . 628211) (-1659 . 627723) (-1660 . 627544)
- (-1661 . 627346) (-1662 . 627309) (-1663 . 627223) (-1664 . 626864)
- (-1665 . 626799) (-1666 . 626611) (-1667 . 626436) (-1668 . 626356)
- (-1669 . 626287) (-1670 . 626142) (-1671 . 626018) (-1672 . 625601)
- (-1673 . 625487) (-1674 . 625409) (-1675 . 625357) (-1676 . 625227)
- (-1677 . 624993) (-1678 . 624916) (-1679 . 624576) (-1680 . 624523)
- (-1681 . 624468) (-1682 . 624416) (-1683 . 624273) (-1684 . 624239)
- (-1685 . 624187) (-1686 . 624066) (-1687 . 623908) (-1688 . 623790)
- (-1689 . 623738) (-1690 . 623672) (-1691 . 623586) (-1692 . 623426)
- (-1693 . 623280) (-1694 . 623184) (-1695 . 622957) (-1696 . 622739)
- (-1697 . 622683) (-1698 . 622339) (-1699 . 622273) (-1700 . 622080)
- (-1701 . 621689) (-1702 . 621090) (-1703 . 620644) (-1704 . 619785)
- (-1705 . 619692) (-1706 . 619609) (-1707 . 619535) (-1708 . 619309)
- (-1709 . 619258) (-1710 . 619208) (-1711 . 619088) (-1712 . 618972)
- (-1713 . 618841) (-1714 . 618659) (-1715 . 617070) (-1716 . 615774)
- (-1717 . 615616) (-1718 . 615547) (-1719 . 615452) (-1720 . 615285)
- (-1721 . 615233) (-1722 . 615117) (-1723 . 614815) (-1724 . 614597)
- (-1725 . 614545) (-1726 . 614343) (-1727 . 614169) (-1728 . 613795)
- (-1729 . 613664) (-1730 . 609657) (-1731 . 609551) (-1732 . 609496)
- (-1733 . 609307) (-1734 . 608899) (-1735 . 608770) (-1736 . 608630)
- (-1737 . 608492) (-1738 . 608339) (-1739 . 608268) (-1740 . 608187)
- (-1741 . 608025) (-1742 . 607929) (-1743 . 607821) (-1744 . 607768)
- (-1745 . 607694) (-1746 . 607611) (-1747 . 607540) (-1748 . 607111)
- (-1749 . 607016) (-1750 . 606874) (-1751 . 606588) (-1752 . 606413)
- (-1753 . 606087) (-1754 . 606028) (-1755 . 605884) (-1756 . 605490)
- (-1757 . 605427) (-1758 . 605224) (-1759 . 604523) (-1760 . 604471)
- (-1761 . 604406) (-1762 . 604258) (-1763 . 604066) (-1764 . 604016)
- (-1765 . 603951) (-1766 . 603884) (-1767 . 603776) (-1768 . 603748)
- (-1769 . 602958) (-1770 . 602800) (-1771 . 602729) (-1772 . 602629)
- (-1773 . 602428) (-1774 . 602369) (-1775 . 602273) (-1776 . 602171)
- (-1777 . 602082) (-1778 . 602017) (-1779 . 601919) (-1780 . 601812)
- (-1781 . 600046) (-1782 . 599951) (-1783 . 599874) (-1784 . 599795)
- (-1785 . 599677) (-1786 . 599538) (-1787 . 599438) (-1788 . 596139)
- (-1789 . 596041) (-1790 . 594768) (-1791 . 593313) (-1792 . 593241)
- (-1793 . 593164) (-1794 . 592905) (-1795 . 592772) (-1796 . 592612)
- (-1797 . 592534) (-1798 . 592405) (-1799 . 592352) (-1800 . 592234)
- (-1801 . 592007) (-1802 . 588344) (-1803 . 588285) (-1804 . 586795)
- (-1805 . 586693) (-1806 . 586589) (-1807 . 585397) (-1808 . 585269)
- (-1809 . 585019) (-1810 . 584985) (-1811 . 584957) (-1812 . 584683)
- (-1813 . 584436) (-1814 . 584330) (-1815 . 584235) (-1816 . 583633)
- (-1817 . 583482) (-1818 . 583425) (-1819 . 582542) (-1820 . 582493)
- (-1821 . 582465) (-1822 . 582386) (-1823 . 582139) (-1824 . 581940)
- (-1825 . 581204) (-1826 . 581130) (-1827 . 581059) (-1828 . 580676)
- (-1829 . 580626) (-1830 . 580479) (-1831 . 580052) (-1832 . 579907)
- (-1833 . 578567) (-1834 . 578404) (-1835 . 578088) (-1836 . 578018)
- (-1837 . 577771) (-1838 . 576706) (-1839 . 576640) (-1840 . 576539)
- (-1841 . 576485) (-1842 . 576357) (-1843 . 576304) (-1844 . 576161)
- (-1845 . 576074) (-1846 . 575986) (-1847 . 575830) (-1848 . 575734)
- (-1849 . 575655) (-1850 . 575479) (-1851 . 575426) (-1852 . 575307)
- (-1853 . 574926) (-1854 . 574830) (-1855 . 574186) (-1856 . 574109)
- (-1857 . 573868) (-1858 . 573538) (-1859 . 573482) (-1860 . 573267)
- (-1861 . 572982) (-1862 . 572923) (-1863 . 572572) (-1864 . 571400)
- (-1865 . 571226) (-1866 . 571120) (-1867 . 571013) (-1868 . 570604)
- (-1869 . 570520) (-1870 . 570452) (-1871 . 570424) (-1872 . 570254)
- (-1873 . 570139) (-1874 . 569037) (-1875 . 568860) (-1876 . 563691)
- (-1877 . 563333) (-1878 . 563132) (-1879 . 563080) (-1880 . 562943)
- (-1881 . 562860) (-1882 . 562704) (-1883 . 562580) (-1884 . 562446)
- (-1885 . 562362) (-1886 . 562303) (-1887 . 562160) (-1888 . 561860)
- (-1889 . 561832) (-1890 . 560695) (-1891 . 560579) (-1892 . 560454)
- (-1893 . 560384) (-1894 . 560288) (-1895 . 560254) (-1896 . 560142)
- (-1897 . 560033) (-1898 . 559976) (-1899 . 559920) (-1900 . 559818)
- (-1901 . 559717) (-1902 . 559658) (-1903 . 559604) (-1904 . 559502)
- (-1905 . 559341) (-1906 . 559273) (-1907 . 558805) (-1908 . 558701)
- (-1909 . 558607) (-1910 . 558301) (-1911 . 558204) (-1912 . 557897)
- (-1913 . 557600) (-1914 . 557476) (-1915 . 557318) (-1916 . 557215)
- (-1917 . 557144) (-1918 . 557015) (-1919 . 556358) (-1920 . 556268)
- (-1921 . 555901) (-1922 . 555691) (-1923 . 555597) (-1924 . 555312)
- (-1925 . 555083) (-1926 . 554995) (-1927 . 554943) (-1928 . 554813)
- (-1929 . 554664) (-1930 . 554461) (-1931 . 554376) (-1932 . 554221)
- (-1933 . 553797) (-1934 . 553699) (-1935 . 553559) (-1936 . 553281)
- (-1937 . 553231) (-1938 . 553203) (-1939 . 552816) (-1940 . 552763)
- (-1941 . 552639) (-1942 . 552494) (-1943 . 552420) (-1944 . 552368)
- (-1945 . 552313) (-1946 . 552224) (-1947 . 552166) (-1948 . 552013)
- (-1949 . 551925) (-1950 . 551795) (-1951 . 551577) (-1952 . 551369)
- (-1953 . 551224) (-1954 . 551168) (-1955 . 550172) (-1956 . 549995)
- (-1957 . 549875) (-1958 . 549846) (-1959 . 549587) (-1960 . 549553)
- (-1961 . 549331) (-1962 . 549227) (-1963 . 549122) (-1964 . 548502)
- (-1965 . 548151) (-1966 . 548033) (-1967 . 547913) (-1968 . 547858)
- (-1969 . 547744) (-1970 . 547631) (-1971 . 547558) (-1972 . 547348)
- (-1973 . 547277) (-1974 . 546694) (-1975 . 546589) (-1976 . 546422)
- (-1977 . 546338) (-1978 . 546216) (-1979 . 546130) (-1980 . 546004)
- (-1981 . 545897) (-1982 . 545712) (-1983 . 545325) (-1984 . 545263)
- (-1985 . 545120) (-1986 . 544945) (-1987 . 544827) (-1988 . 544612)
- (-1989 . 544127) (-1990 . 543683) (-1991 . 543576) (-1992 . 543260)
- (-1993 . 543208) (-1994 . 543008) (-1995 . 542871) (-1996 . 542483)
- (-1997 . 542361) (-1998 . 542309) (-1999 . 542216) (-2000 . 542073)
- (-2001 . 541978) (-2002 . 541846) (-2003 . 541627) (-2004 . 540785)
- (-2005 . 540178) (-2006 . 539589) (-2007 . 539505) (-2008 . 538243)
- (-2009 . 538125) (-2010 . 537775) (-2011 . 537603) (-2012 . 537331)
- (-2013 . 537177) (-2014 . 536997) (-2015 . 536806) (-2016 . 536710)
- (-2017 . 536460) (-2018 . 535390) (-2019 . 535310) (-2020 . 535227)
- (-2021 . 535054) (-2022 . 534884) (-2023 . 534796) (-2024 . 534715)
- (-2025 . 534419) (-2026 . 534258) (-2027 . 534175) (-2028 . 534146)
- (-2029 . 534066) (-2030 . 533603) (-2031 . 533544) (-2032 . 533410)
- (-2033 . 533193) (-2034 . 532901) (-2035 . 532761) (-2036 . 532617)
- (-2037 . 532266) (-2038 . 532192) (-2039 . 532139) (-2040 . 531845)
- (-2041 . 531777) (-2042 . 531483) (-2043 . 531342) (-2044 . 531129)
- (-2045 . 530905) (-2046 . 530427) (-2047 . 530365) (-2048 . 530055)
- (-2049 . 529458) (-2050 . 529379) (-2051 . 529152) (-2052 . 529056)
- (-2053 . 528955) (-2054 . 528860) (-2055 . 528698) (-2056 . 528612)
- (-2057 . 528394) (-2058 . 528273) (-2059 . 528144) (-2060 . 528026)
- (-2061 . 527972) (-2062 . 527916) (-2063 . 527855) (-2064 . 527097)
- (-2065 . 526969) (-2066 . 526695) (-2067 . 526579) (-2068 . 526481)
- (-2069 . 526415) (-2070 . 526229) (-2071 . 526197) (-2072 . 525994)
- (-2073 . 525966) (-2074 . 525846) (-2075 . 525669) (-2076 . 525516)
- (-2077 . 525406) (-2078 . 525287) (-2079 . 525195) (-2080 . 524915)
- (-2081 . 524628) (-2082 . 524548) (-2083 . 524488) (-2084 . 524439)
- (-2085 . 523788) (-2086 . 523502) (-2087 . 523449) (-2088 . 523355)
- (-2089 . 523221) (-2090 . 523193) (-2091 . 523050) (-2092 . 522984)
- (-2093 . 522470) (-2094 . 522294) (-2095 . 522241) (-2096 . 521744)
- (-2097 . 521637) (-2098 . 521465) (-2099 . 521414) (-2100 . 521331)
- (-2101 . 521060) (-2102 . 520667) (-2103 . 520616) (-2104 . 520521)
- (-2105 . 520098) (-2106 . 520012) (-2107 . 519961) (-2108 . 519888)
- (-2109 . 519829) (-2110 . 519750) (-2111 . 519673) (-2112 . 519114)
- (-2113 . 518968) (-2114 . 518640) (-2115 . 518466) (-2116 . 518347)
- (-2117 . 518249) (-2118 . 517957) (-2119 . 517799) (-2120 . 517672)
- (-2121 . 517113) (-2122 . 516986) (-2123 . 516957) (-2124 . 516776)
- (-2125 . 516682) (-2126 . 516630) (-2127 . 516457) (-2128 . 516371)
- (-2129 . 516255) (-2130 . 516164) (-2131 . 516092) (-2132 . 516007)
- (-2133 . 515676) (-2134 . 515619) (-2135 . 515346) (-2136 . 515183)
- (-2137 . 515128) (-2138 . 515071) (-2139 . 515019) (-2140 . 514579)
- (-2141 . 514322) (-2142 . 514239) (-2143 . 514151) (-2144 . 514068)
- (-2145 . 513771) (-2146 . 513635) (-2147 . 513260) (-2148 . 513093)
- (-2149 . 513019) (-2150 . 512839) (-2151 . 512726) (-2152 . 512576)
- (-2153 . 512232) (-2154 . 512106) (-2155 . 512053) (-2156 . 511898)
- (-2157 . 511827) (-2158 . 511775) (-2159 . 511448) (-2160 . 511318)
- (-2161 . 511223) (-2162 . 511128) (-2163 . 511100) (-2164 . 511019)
- (-2165 . 510866) (-2166 . 510299) (-2167 . 510181) (-2168 . 510060)
- (-2169 . 509900) (-2170 . 509742) (-2171 . 509683) (-2172 . 509465)
- (-2173 . 509412) (-2174 . 509301) (-2175 . 509234) (-2176 . 509178)
- (-2177 . 508847) (-2178 . 508773) (-2179 . 508721) (-2180 . 508583)
- (-2181 . 508442) (-2182 . 508390) (-2183 . 508188) (-2184 . 507453)
- (-2185 . 507325) (-2186 . 507256) (-2187 . 507085) (-2188 . 507032)
- (-2189 . 506952) (-2190 . 506734) (-2191 . 506539) (-2192 . 506300)
- (-2193 . 506144) (-2194 . 506064) (-2195 . 505752) (-2196 . 504873)
- (-2197 . 504802) (-2198 . 503710) (-2199 . 503637) (-2200 . 503554)
- (-2201 . 503483) (-2202 . 503455) (-2203 . 503418) (-2204 . 503387)
- (-2205 . 503043) (-2206 . 502991) (-2207 . 502893) (-2208 . 502767)
- (-2209 . 502705) (-2210 . 502652) (-2211 . 502520) (-2212 . 502406)
- (-2213 . 501822) (-2214 . 501707) (-2215 . 501652) (-2216 . 501337)
- (-2217 . 501106) (-2218 . 501024) (-2219 . 500950) (-2220 . 500800)
- (-2221 . 500743) (-2222 . 500296) (-2223 . 499094) (-2224 . 498887)
- (-2225 . 498824) (-2226 . 498586) (-2227 . 498533) (-2228 . 498318)
- (-2229 . 498286) (-2230 . 497905) (-2231 . 497801) (-2232 . 497704)
- (-2233 . 497563) (-2234 . 497295) (-2235 . 497120) (-2236 . 496978)
- (-2237 . 496745) (-2238 . 496677) (-2239 . 496608) (-2240 . 496453)
- (-2241 . 496387) (-2242 . 496095) (-2243 . 496035) (-2244 . 495983)
- (-2245 . 495887) (-2246 . 495790) (-2247 . 495682) (-2248 . 495275)
- (-2249 . 495187) (-2250 . 494736) (-2251 . 494662) (-2252 . 494609)
- (-2253 . 494478) (-2254 . 494353) (-2255 . 494231) (-2256 . 494149)
- (-2257 . 493879) (-2258 . 493654) (-2259 . 493583) (-2260 . 493453)
- (-2261 . 492700) (-2262 . 492310) (-2263 . 492106) (-2264 . 492011)
- (-2265 . 491614) (-2266 . 491548) (-2267 . 491520) (-2268 . 491350)
- (-2269 . 491141) (-2270 . 490996) (-2271 . 490871) (-2272 . 490819)
- (-2273 . 490466) (-2274 . 490413) (-2275 . 490152) (-2276 . 489994)
- (-2277 . 489816) (-2278 . 487401) (-2279 . 487316) (-2280 . 487242)
- (-2281 . 487074) (-2282 . 486997) (-2283 . 486779) (-2284 . 486647)
- (-2285 . 486513) (-2286 . 486354) (-2287 . 486266) (-2288 . 486210)
- (-2289 . 486139) (-2290 . 485762) (-2291 . 485710) (-2292 . 485519)
- (-2293 . 485485) (-2294 . 485338) (-2295 . 485192) (-2296 . 485064)
- (-2297 . 484923) (-2298 . 484852) (-2299 . 484711) (-2300 . 484625)
- (-2301 . 484527) (-2302 . 484356) (-2303 . 484146) (-2304 . 484078)
- (-2305 . 484026) (-2306 . 483992) (-2307 . 483032) (-2308 . 482947)
- (-2309 . 482894) (-2310 . 482695) (-2311 . 482611) (-2312 . 481847)
- (-2313 . 481794) (-2314 . 481669) (-2315 . 481571) (-2316 . 481500)
- (-2317 . 481376) (-2318 . 481288) (-2319 . 481092) (-2320 . 481008)
- (-2321 . 480463) (-2322 . 480012) (-2323 . 479941) (-2324 . 479878)
- (-2325 . 479714) (-2326 . 479637) (-2327 . 479576) (-2328 . 479386)
- (-2329 . 479358) (-2330 . 479292) (-2331 . 478424) (-2332 . 478292)
- (-2333 . 478123) (-2334 . 478050) (-2335 . 477964) (-2336 . 477886)
- (-2337 . 477806) (-2338 . 477568) (-2339 . 476957) (-2340 . 476819)
- (-2341 . 476764) (-2342 . 476712) (-2343 . 476622) (-2344 . 476524)
- (-2345 . 476071) (-2346 . 475994) (-2347 . 475898) (-2348 . 475368)
- (-2349 . 475261) (-2350 . 475178) (-2351 . 475108) (-2352 . 475053)
- (-2353 . 474965) (-2354 . 474685) (-2355 . 474613) (-2356 . 474541)
- (-2357 . 474428) (-2358 . 474275) (-2359 . 473934) (-2360 . 473878)
- (-2361 . 473788) (-2362 . 473574) (-2363 . 472734) (-2364 . 472649)
- (-2365 . 472431) (-2366 . 472322) (-2367 . 472178) (-2368 . 472101)
- (-2369 . 471943) (-2370 . 471873) (-2371 . 471668) (-2372 . 471571)
- (-2373 . 471261) (-2374 . 471103) (-2375 . 471024) (-2376 . 470899)
- (-2377 . 470846) (-2378 . 470568) (-2379 . 470491) (-2380 . 470280)
- (-2381 . 470183) (-2382 . 469762) (-2383 . 469694) (-2384 . 469482)
- (-2385 . 469379) (-2386 . 469297) (-2387 . 469089) (-2388 . 468954)
- (-2389 . 468381) (-2390 . 468251) (-2391 . 468138) (-2392 . 467995)
- (-2393 . 467815) (-2394 . 467763) (-2395 . 467614) (-2396 . 467451)
- (-2397 . 467395) (-2398 . 467274) (-2399 . 467110) (-2400 . 467033)
- (-2401 . 466963) (-2402 . 466889) (-2403 . 466736) (-2404 . 466573)
- (-2405 . 466521) (-2406 . 466307) (-2407 . 465446) (-2408 . 465394)
- (-2409 . 465322) (-2410 . 465288) (-2411 . 463320) (-2412 . 463161)
- (-2413 . 463003) (-2414 . 462809) (-2415 . 462680) (-2416 . 462593)
- (-2417 . 462534) (-2418 . 462481) (-2419 . 462377) (-2420 . 462283)
- (-2421 . 461680) (-2422 . 461269) (-2423 . 460612) (-2424 . 460511)
- (-2425 . 460333) (-2426 . 459966) (-2427 . 459532) (-2428 . 459460)
- (-2429 . 459086) (-2430 . 459055) (-2431 . 458908) (-2432 . 458729)
- (-2433 . 458698) (-2434 . 458599) (-2435 . 458257) (-2436 . 457958)
- (-2437 . 457886) (-2438 . 457721) (-2439 . 457091) (-2440 . 456755)
- (-2441 . 456639) (-2442 . 456533) (-2443 . 456450) (-2444 . 456252)
- (-2445 . 456000) (-2446 . 455929) (-2447 . 455826) (-2448 . 455773)
- (-2449 . 455613) (-2450 . 455079) (-2451 . 454896) (-2452 . 454824)
- (-2453 . 454320) (-2454 . 454246) (-2455 . 454088) (-2456 . 453988)
- (-2457 . 453919) (-2458 . 453625) (-2459 . 453526) (-2460 . 453429)
- (-2461 . 453283) (-2462 . 453200) (-2463 . 452709) (-2464 . 452517)
- (-2465 . 452243) (-2466 . 452145) (-2467 . 451659) (-2468 . 451187)
- (-2469 . 451082) (-2470 . 450973) (-2471 . 450904) (-2472 . 450654)
- (-2473 . 450588) (-2474 . 450457) (-2475 . 449640) (-2476 . 449501)
- (-2477 . 449010) (-2478 . 448936) (-2479 . 448829) (-2480 . 448671)
- (-2481 . 448453) (-2482 . 448350) (-2483 . 447804) (-2484 . 447636)
- (-2485 . 447499) (-2486 . 447228) (-2487 . 447142) (-2488 . 447021)
- (-2489 . 446921) (-2490 . 446734) (-2491 . 446594) (-2492 . 446192)
- (-2493 . 445044) (-2494 . 444990) (-2495 . 444912) (-2496 . 444856)
- (-2497 . 444618) (-2498 . 444565) (-2499 . 444477) (-2500 . 444425)
- (-2501 . 444294) (-2502 . 444186) (-2503 . 444103) (-2504 . 443229)
- (-2505 . 443095) (-2506 . 442888) (-2507 . 442577) (-2508 . 442525)
- (-2509 . 442442) (-2510 . 442362) (-2511 . 442237) (-2512 . 442075)
- (-2513 . 441332) (-2514 . 441276) (-2515 . 441001) (-2516 . 440913)
- (-2517 . 440817) (-2518 . 440618) (-2519 . 440581) (-2520 . 440410)
- (-2521 . 440226) (-2522 . 440132) (-2523 . 439878) (-2524 . 439613)
- (-2525 . 439472) (-2526 . 439108) (-2527 . 439053) (-2528 . 438993)
- (-2529 . 438875) (-2530 . 438454) (-2531 . 438401) (-2532 . 438218)
- (-2533 . 438086) (-2534 . 438018) (-2535 . 437864) (-2536 . 437720)
- (-2537 . 437588) (-2538 . 437489) (-2539 . 437227) (-2540 . 436900)
- (-2541 . 436508) (-2542 . 436370) (-2543 . 435994) (-2544 . 435879)
- (-2545 . 435822) (-2546 . 435743) (-2547 . 435686) (-2548 . 435609)
- (-2549 . 435479) (-2550 . 435400) (-2551 . 435349) (-2552 . 435220)
- (-2553 . 434850) (-2554 . 434498) (-2555 . 434248) (-2556 . 434083)
- (-2557 . 433998) (-2558 . 433460) (-2559 . 433431) (-2560 . 433359)
- (-2561 . 433231) (-2562 . 433171) (-2563 . 433018) (-2564 . 432922)
- (-2565 . 432695) (-2566 . 432641) (-2567 . 432584) (-2568 . 432452)
- (-2569 . 432393) (-2570 . 432326) (-2571 . 432247) (-2572 . 432011)
- (-2573 . 431926) (-2574 . 431874) (-2575 . 431696) (-2576 . 431601)
- (-2577 . 431223) (-2578 . 431107) (-2579 . 430378) (-2580 . 430304)
- (-2581 . 430225) (-2582 . 430145) (-2583 . 430071) (-2584 . 430040)
- (-2585 . 429747) (-2586 . 429580) (-2587 . 429508) (-2588 . 429456)
- (-2589 . 429272) (-2590 . 428543) (-2591 . 427741) (-2592 . 427713)
- (-2593 . 427646) (-2594 . 427531) (-2595 . 427435) (-2596 . 427340)
- (-2597 . 427221) (-2598 . 426990) (-2599 . 426877) (-2600 . 426739)
- (-2601 . 426653) (-2602 . 425977) (-2603 . 425878) (-2604 . 425812)
- (-2605 . 425784) (-2606 . 425620) (-2607 . 425554) (-2608 . 425426)
- (-2609 . 425358) (-2610 . 423572) (-2611 . 423008) (-2612 . 422952)
- (-2613 . 422818) (-2614 . 422523) (-2615 . 422305) (-2616 . 422173)
- (-2617 . 422072) (-2618 . 422038) (-2619 . 422010) (-2620 . 421406)
- (-2621 . 421311) (-2622 . 420747) (-2623 . 420575) (-2624 . 420323)
- (-2625 . 420255) (-2626 . 420020) (-2627 . 419905) (-2628 . 419760)
- (-2629 . 419664) (-2630 . 419431) (-2631 . 419364) (-2632 . 419161)
- (-2633 . 418297) (-2634 . 417733) (-2635 . 416507) (-2636 . 416335)
- (-2637 . 416220) (-2638 . 416128) (-2639 . 416044) (-2640 . 415931)
- (-2641 . 415769) (-2642 . 415261) (-2643 . 414743) (-2644 . 414660)
- (-2645 . 414566) (-2646 . 414271) (-2647 . 413597) (-2648 . 413425)
- (-2649 . 413339) (-2650 . 413286) (-2651 . 413237) (-2652 . 413081)
- (-2653 . 412829) (-2654 . 412594) (-2655 . 412475) (-2656 . 412398)
- (-2657 . 412179) (-2658 . 412043) (-2659 . 411525) (-2660 . 410851)
- (-2661 . 410679) (-2662 . 410602) (-2663 . 410390) (-2664 . 410144)
- (-2665 . 410070) (-2666 . 409900) (-2667 . 409829) (-2668 . 409590)
- (-2669 . 409439) (-2670 . 409279) (-2671 . 408542) (-2672 . 408429)
- (-2673 . 408341) (-2674 . 408224) (-2675 . 408141) (-2676 . 408007)
- (-2677 . 407943) (-2678 . 407820) (-2679 . 407691) (-2680 . 407145)
- (-2681 . 406583) (-2682 . 406530) (-2683 . 406311) (-2684 . 406113)
- (-2685 . 405923) (-2686 . 405835) (-2687 . 405437) (-2688 . 405351)
- (-2689 . 405298) (-2690 . 405212) (-2691 . 404650) (-2692 . 404562)
- (-2693 . 404509) (-2694 . 404456) (-2695 . 404384) (-2696 . 404286)
- (-2697 . 404061) (-2698 . 403956) (-2699 . 403840) (-2700 . 403766)
- (-2701 . 403204) (-2702 . 403125) (-2703 . 403045) (-2704 . 402985)
- (-2705 . 402899) (-2706 . 402413) (-2707 . 402237) (-2708 . 402074)
- (-2709 . 402022) (-2710 . 401802) (-2711 . 401581) (-2712 . 400906)
- (-2713 . 400758) (-2714 . 400706) (-2715 . 400232) (-2716 . 400038)
- (-2717 . 399942) (-2718 . 399807) (-2719 . 399694) (-2720 . 399642)
- (-2721 . 399585) (-2722 . 399157) (-2723 . 398482) (-2724 . 398454)
- (-2725 . 398368) (-2726 . 398282) (-2727 . 394122) (-2728 . 393777)
- (-2729 . 393578) (-2730 . 393417) (-2731 . 392757) (-2732 . 392618)
- (-2733 . 392467) (-2734 . 392395) (-2735 . 391720) (-2736 . 391617)
- (-2737 . 391433) (-2738 . 391208) (-2739 . 391155) (-2740 . 390983)
- (-2741 . 390838) (-2742 . 390676) (-2743 . 390459) (-2744 . 389593)
- (-2745 . 389494) (-2746 . 388931) (-2747 . 388852) (-2748 . 388802)
- (-2749 . 388706) (-2750 . 388618) (-12 . 388446) (-2752 . 388339)
- (-2753 . 388307) (-2754 . 388233) (-2755 . 387729) (-2756 . 387627)
- (-2757 . 387488) (-2758 . 387228) (-2759 . 387063) (-2760 . 386468)
- (-2761 . 386220) (-2762 . 386019) (-2763 . 385946) (-2764 . 385875)
- (-2765 . 385734) (-2766 . 385482) (-2767 . 385242) (-2768 . 385044)
- (-2769 . 384954) (-2770 . 384902) (-2771 . 384775) (-2772 . 384464)
- (-2773 . 384409) (-2774 . 384325) (-2775 . 383911) (-2776 . 383752)
- (-2777 . 383668) (-2778 . 383533) (-2779 . 383261) (-2780 . 383209)
- (-2781 . 382953) (-2782 . 382683) (-2783 . 382617) (-2784 . 382302)
- (-2785 . 382094) (-2786 . 382066) (-2787 . 381970) (-2788 . 381809)
- (-2789 . 381410) (-2790 . 381315) (-2791 . 380483) (-2792 . 380431)
- (-2793 . 380065) (-2794 . 379932) (-2795 . 379872) (-2796 . 379748)
- (-2797 . 379088) (-2798 . 378951) (-2799 . 378472) (-2800 . 378443)
- (-2801 . 378369) (-2802 . 378204) (-2803 . 378010) (-2804 . 377914)
- (-2805 . 377602) (-2806 . 377442) (-2807 . 377015) (-2808 . 376883)
- (-2809 . 376567) (-2810 . 376493) (-2811 . 376407) (-2812 . 376324)
- (-2813 . 376031) (-2814 . 375778) (-2815 . 375681) (-2816 . 375433)
- (-2817 . 375300) (-2818 . 375205) (-2819 . 375110) (-2820 . 375055)
- (-2821 . 375023) (-2822 . 372795) (-2823 . 372679) (-2824 . 372295)
- (-2825 . 372213) (-2826 . 372102) (-2827 . 372050) (-2828 . 371902)
- (-2829 . 371853) (-2830 . 371644) (-2831 . 371534) (-2832 . 371412)
- (-2833 . 371184) (-2834 . 370920) (-2835 . 370588) (-2836 . 370369)
- (-2837 . 369071) (-2838 . 368718) (-2839 . 368637) (* . 364370)
- (-2841 . 363881) (-2842 . 363853) (-2843 . 363687) (-2844 . 363508)
- (-2845 . 363393) (-2846 . 363311) (-2847 . 363213) (-2848 . 361767)
- (-2849 . 361537) (-2850 . 361176) (-2851 . 361116) (-2852 . 361045)
- (-2853 . 360945) (-2854 . 360861) (-2855 . 360738) (-2856 . 360606)
- (-2857 . 359927) (-2858 . 359830) (-2859 . 359719) (-2860 . 359189)
- (-2861 . 359020) (-2862 . 358860) (-2863 . 358752) (-2864 . 358702)
- (-2865 . 358606) (-2866 . 358361) (-2867 . 358168) (-2868 . 358013)
- (-2869 . 357955) (-2870 . 357855) (-2871 . 357689) (-2872 . 357417)
- (-2873 . 357365) (-2874 . 357292) (-2875 . 357154) (-2876 . 357088)
- (-2877 . 357023) (-2878 . 356907) (-2879 . 356788) (-2880 . 356729)
- (-2881 . 356619) (-2882 . 356533) (-2883 . 356414) (-2884 . 356063)
- (-2885 . 356021) (-2886 . 355537) (-2887 . 355022) (-2888 . 354948)
- (-2889 . 354844) (-2890 . 354515) (-2891 . 354336) (-2892 . 353560)
- (-2893 . 353301) (-2894 . 353070) (-2895 . 353013) (-2896 . 352916)
- (-2897 . 352554) (-2898 . 352431) (-2899 . 352378) (-2900 . 352301)
- (-2901 . 352249) (-2902 . 352094) (-2903 . 351984) (-2904 . 351897)
- (-2905 . 351805) (-2906 . 351674) (-2907 . 351494) (-2908 . 349764)
- (-2909 . 349678) (-2910 . 349511) (-2911 . 349412) (-2912 . 349349)
- (-2913 . 349190) (-2914 . 348769) (-2915 . 348695) (-2916 . 348553)
- (-2917 . 348457) (-2918 . 348199) (-2919 . 347777) (-2920 . 347496)
- (-2921 . 347172) (-2922 . 346711) (-2923 . 346659) (-2924 . 346572)
- (-2925 . 346495) (-2926 . 346467) (-2927 . 346338) (-2928 . 346183)
- (-2929 . 345813) (-2930 . 345615) (-2931 . 345416) (-2932 . 345131)
- (-2933 . 345050) (-2934 . 344699) (-2935 . 344640) (-2936 . 344583)
- (-2937 . 344465) (-2938 . 344260) (-2939 . 344158) (-2940 . 344002)
- (-2941 . 343928) (-2942 . 343813) (-2943 . 343694) (-2944 . 343621)
- (-2945 . 343288) (-2946 . 343166) (-2947 . 343070) (-2948 . 342950)
- (-2949 . 342755) (-2950 . 342656) (-2951 . 341838) (-2952 . 341685)
- (-2953 . 341599) (-2954 . 340413) (-2955 . 340360) (-2956 . 340219)
- (-2957 . 340154) (-2958 . 339861) (-2959 . 339833) (-2960 . 339692)
- (-2961 . 339540) (-2962 . 339424) (-2963 . 339374) (-2964 . 339093)
- (-2965 . 337911) (-2966 . 337829) (-2967 . 337746) (-2968 . 337600)
- (-2969 . 337464) (-2970 . 337154) (-2971 . 337039) (-2972 . 336937)
- (-2973 . 336853) (-2974 . 336710) (-2975 . 334502) (-2976 . 334432)
- (-2977 . 334358) (-2978 . 334140) (-2979 . 334001) (-2980 . 333930)
- (-2981 . 333793) (-2982 . 333668) (-2983 . 333583) (-2984 . 333403)
- (-2985 . 333315) (-2986 . 333163) (-2987 . 333090) (-2988 . 333012)
- (-2989 . 332919) (-2990 . 332870) (-9 . 332842) (-2992 . 332769)
- (-2993 . 332713) (-2994 . 332635) (-2995 . 332582) (-2996 . 332390)
- (-2997 . 332110) (-2998 . 331407) (-2999 . 331348) (-3000 . 331282)
- (-3001 . 331145) (-8 . 331117) (-3003 . 330938) (-3004 . 330856)
- (-3005 . 330737) (-3006 . 330666) (-3007 . 330581) (-3008 . 330504)
- (-3009 . 329993) (-7 . 329965) (-3011 . 329843) (-3012 . 329793)
- (-3013 . 329672) (-3014 . 329518) (-3015 . 329465) (-3016 . 329406)
- (-3017 . 329329) (-3018 . 329233) (-3019 . 329149) (-3020 . 328900)
- (-3021 . 328770) (-3022 . 328555) (-3023 . 328176) (-3024 . 327924)
- (-3025 . 327814) (-3026 . 327138) (-3027 . 327020) (-3028 . 326474)
- (-3029 . 326260) (-3030 . 325878) (-3031 . 325782) (-3032 . 325710)
- (-3033 . 325660) (-3034 . 325345) (-3035 . 325287) (-3036 . 325221)
- (-3037 . 325068) (-3038 . 324857) (-3039 . 324041) (-3040 . 323754)
- (-3041 . 323656) (-3042 . 323575) (-3043 . 323509) (-3044 . 323454)
- (-3045 . 323380) (-3046 . 323313) (-3047 . 323258) (-3048 . 323149)
- (-3049 . 322831) (-3050 . 322739) (-3051 . 322646) (-3052 . 322365)
- (-3053 . 322282) (-3054 . 322229) (-3055 . 321982) (-3056 . 321853)
- (-3057 . 321624) (-3058 . 321374) (-3059 . 321291) (-3060 . 321133)
- (-3061 . 320802) (-3062 . 320639) (-3063 . 320496) (-3064 . 320196)
- (-3065 . 319814) (-3066 . 319718) (-3067 . 319606) (-3068 . 319068)
- (-3069 . 318849) (-3070 . 318755) (-3071 . 318329) (-3072 . 318156)
- (-3073 . 318128) (-3074 . 318045) (-3075 . 317918) (-3076 . 317832)
- (-3077 . 317336) (-3078 . 317030) (-3079 . 316974) (-3080 . 311635)
- (-3081 . 311527) (-3082 . 311409) (-3083 . 311356) (-3084 . 311265)
- (-3085 . 311213) (-3086 . 311109) (-3087 . 310725) (-3088 . 310454)
- (-3089 . 310402) (-3090 . 310150) (-3091 . 309954) (-3092 . 309633)
- (-3093 . 309509) (-3094 . 308286) (-3095 . 307994) (-3096 . 307350)
- (-3097 . 307250) (-3098 . 307197) (-3099 . 307115) (-3100 . 307010)
- (-3101 . 306870) (-3102 . 306676) (-3103 . 306594) (-3104 . 306227)
- (-3105 . 305985) (-3106 . 305933) (-3107 . 305341) (-3108 . 305168)
- (-3109 . 304875) (-3110 . 304815) (-3111 . 304746) (-3112 . 304658)
- (-3113 . 304519) (-3114 . 304246) (-3115 . 304083) (-3116 . 303793)
- (-3117 . 303638) (-3118 . 303392) (-3119 . 303314) (-3120 . 303251)
- (-3121 . 303104) (-3122 . 302960) (-3123 . 302875) (-3124 . 302564)
- (-3125 . 302434) (-3126 . 302406) (-3127 . 302274) (-3128 . 302158)
- (-3129 . 301973) (-3130 . 301658) (-3131 . 301567) (-3132 . 301271)
- (-3133 . 300728) (-3134 . 300488) (-3135 . 300436) (-3136 . 299255)
- (-3137 . 298541) (-3138 . 298457) (-3139 . 298376) (-3140 . 297033)
- (-3141 . 296794) (-3142 . 296648) (-3143 . 296541) (-3144 . 296448)
- (-3145 . 296392) (-3146 . 296335) (-3147 . 296032) (-3148 . 295896)
- (-3149 . 295738) (-3150 . 295596) (-3151 . 295370) (-3152 . 295296)
- (-3153 . 295050) (-3154 . 294526) (-3155 . 294445) (-3156 . 294109)
- (-3157 . 291853) (-3158 . 291780) (-3159 . 291643) (-3160 . 291413)
- (-3161 . 291255) (-3162 . 291167) (-3163 . 291135) (-3164 . 291032)
- (-3165 . 290977) (-3166 . 290911) (-3167 . 290665) (-3168 . 290550)
- (-3169 . 290365) (-3170 . 290282) (-3171 . 290251) (-3172 . 290193)
- (-3173 . 290101) (-3174 . 289905) (-3175 . 289637) (-3176 . 289541)
- (-3177 . 289463) (-3178 . 289370) (-3179 . 289317) (-3180 . 289268)
- (-3181 . 289182) (-3182 . 289078) (-3183 . 289041) (-3184 . 288942)
- (-3185 . 288799) (-3186 . 288726) (-3187 . 288667) (-3188 . 288509)
- (-3189 . 288431) (-3190 . 288279) (-3191 . 288227) (-3192 . 288153)
- (-3193 . 288009) (-3194 . 287776) (-3195 . 287650) (-3196 . 287354)
- (-3197 . 287216) (-3198 . 287161) (-3199 . 287024) (-3200 . 286953)
- (-3201 . 286870) (-3202 . 285442) (-3203 . 285258) (-3204 . 285100)
- (-3205 . 284633) (-3206 . 284467) (-3207 . 284309) (-3208 . 283883)
- (-3209 . 283770) (-3210 . 283714) (-3211 . 283616) (-3212 . 283535)
- (-3213 . 283025) (-3214 . 282387) (-3215 . 282216) (-3216 . 282092)
- (-3217 . 282021) (-3218 . 281947) (-3219 . 281613) (-3220 . 281486)
- (-3221 . 281345) (-3222 . 281221) (-3223 . 280223) (-3224 . 280164)
- (-3225 . 280040) (-3226 . 279943) (-3227 . 279763) (-3228 . 279620)
- (-3229 . 279567) (-3230 . 279465) (-3231 . 279322) (-3232 . 279060)
- (-3233 . 279008) (-3234 . 278870) (-3235 . 278709) (-3236 . 278182)
- (-3237 . 278153) (-3238 . 278053) (-3239 . 277845) (-3240 . 277788)
- (-3241 . 277633) (-3242 . 277369) (-3243 . 277283) (-3244 . 276991)
- (-3245 . 276905) (-3246 . 276821) (-3247 . 276697) (-3248 . 276628)
- (-3249 . 276600) (-3250 . 276490) (-3251 . 275739) (-3252 . 275679)
- (-3253 . 275578) (-3254 . 272737) (-3255 . 272664) (-3256 . 272580)
- (-3257 . 272445) (-3258 . 272417) (-3259 . 272345) (-3260 . 272095)
- (-3261 . 271822) (-3262 . 271686) (-3263 . 271543) (-3264 . 271281)
- (-3265 . 270939) (-3266 . 270572) (-3267 . 270265) (-3268 . 270058)
- (-3269 . 269912) (-3270 . 269789) (-3271 . 269654) (-3272 . 269577)
- (-3273 . 269434) (-3274 . 269384) (-3275 . 269229) (-3276 . 269177)
- (-3277 . 269115) (-3278 . 268839) (-3279 . 268768) (-3280 . 268528)
- (-3281 . 268472) (-3282 . 268374) (-3283 . 268186) (-3284 . 268084)
- (-3285 . 268031) (-3286 . 267894) (-3287 . 267737) (-3288 . 267306)
- (-3289 . 267254) (-3290 . 267192) (-3291 . 267111) (-3292 . 266560)
- (-3293 . 266434) (-3294 . 266356) (-3295 . 266278) (-3296 . 266181)
- (-3297 . 266054) (-3298 . 265824) (-3299 . 265609) (-3300 . 265493)
- (-3301 . 265377) (-3302 . 265243) (-3303 . 265015) (-3304 . 264919)
- (-3305 . 264634) (-3306 . 264381) (-3307 . 264094) (-3308 . 263970)
- (-3309 . 263835) (-3310 . 263557) (-3311 . 263184) (-3312 . 263069)
- (-3313 . 262967) (-3314 . 262871) (-3315 . 262679) (-3316 . 262488)
- (-3317 . 262241) (-3318 . 262160) (-3319 . 262040) (-3320 . 261770)
- (-3321 . 261670) (-3322 . 261213) (-3323 . 261127) (-3324 . 261023)
- (-3325 . 260885) (-3326 . 260807) (-3327 . 260665) (-3328 . 260129)
- (-3329 . 259824) (-3330 . 259746) (-3331 . 259496) (-3332 . 259423)
- (-3333 . 259280) (-3334 . 259183) (-3335 . 258965) (-3336 . 258342)
- (-3337 . 258204) (-3338 . 257862) (-3339 . 257635) (-3340 . 257540)
- (-3341 . 257467) (-3342 . 257414) (-3343 . 257333) (-3344 . 257160)
- (-3345 . 256980) (-3346 . 256913) (-3347 . 256810) (-3348 . 256733)
- (-3349 . 256645) (-3350 . 256544) (-3351 . 256173) (-3352 . 255958)
- (-3353 . 255835) (-3354 . 255765) (-3355 . 255696) (-3356 . 255552)
- (-3357 . 255449) (-3358 . 255353) (-3359 . 255276) (-3360 . 255189)
- (-3361 . 255155) (-3362 . 255083) (-3363 . 254910) (-3364 . 254564)
- (-3365 . 253384) (-3366 . 252798) (-3367 . 252653) (-3368 . 252602)
- (-3369 . 252175) (-3370 . 252098) (-3371 . 252034) (-3372 . 252005)
- (-3373 . 251952) (-3374 . 251900) (-3375 . 251801) (-3376 . 251729)
- (-3377 . 251701) (-3378 . 251634) (-3379 . 251440) (-3380 . 251372)
- (-3381 . 250981) (-3382 . 250503) (-3383 . 250297) (-3384 . 250239)
- (-3385 . 250140) (-3386 . 250085) (-3387 . 250033) (-3388 . 249960)
- (-3389 . 249321) (-3390 . 249250) (-3391 . 249063) (-3392 . 248817)
- (-3393 . 248565) (-3394 . 248462) (-3395 . 248314) (-3396 . 247922)
- (-3397 . 247715) (-3398 . 247328) (-3399 . 247263) (-3400 . 247088)
- (-3401 . 247030) (-3402 . 246959) (-3403 . 246023) (-3404 . 245908)
- (-3405 . 245730) (-3406 . 245678) (-3407 . 245566) (-3408 . 245452)
- (-3409 . 244531) (-3410 . 244367) (-3411 . 244158) (-3412 . 244086)
- (-3413 . 242869) (-3414 . 242703) (-3415 . 242550) (-3416 . 242460)
- (-3417 . 242358) (-3418 . 242218) (-3419 . 242110) (-3420 . 240992)
- (-3421 . 240812) (-3422 . 240720) (-3423 . 240658) (-3424 . 240551)
- (-3425 . 240463) (-3426 . 240412) (-3427 . 240282) (-3428 . 239954)
- (-3429 . 239524) (-3430 . 239306) (-3431 . 239110) (-3432 . 239039)
- (-3433 . 238791) (-3434 . 238714) (-3435 . 238494) (-3436 . 238402)
- (-3437 . 238350) (-3438 . 238159) (-3439 . 238086) (-3440 . 237808)
- (-3441 . 237714) (-3442 . 237610) (-3443 . 236997) (-3444 . 236815)
- (-3445 . 236629) (-3446 . 236527) (-3447 . 234365) (-3448 . 234159)
- (-3449 . 234073) (-3450 . 233814) (-3451 . 233504) (-3452 . 233243)
- (-3453 . 233015) (-3454 . 232577) (-3455 . 232150) (-3456 . 232018)
- (-3457 . 231941) (-3458 . 231870) (-3459 . 231784) (-3460 . 231689)
- (-3461 . 231586) (-3462 . 231343) (-3463 . 231185) (-3464 . 230869)
- (-3465 . 230761) (-3466 . 230242) (-3467 . 230180) (-3468 . 230151)
- (-3469 . 230034) (-3470 . 229955) (-3471 . 229580) (-3472 . 229443)
- (-3473 . 229379) (-3474 . 229309) (-3475 . 229083) (-3476 . 228967)
- (-3477 . 228915) (-3478 . 228747) (-3479 . 228693) (-3480 . 228594)
- (-3481 . 228417) (-3482 . 228131) (-3483 . 228063) (-3484 . 227554)
- (-3485 . 227441) (-3486 . 227202) (-3487 . 227131) (-3488 . 227031)
- (-3489 . 226843) (-3490 . 226787) (-3491 . 226272) (-3492 . 226207)
- (-3493 . 226110) (-3494 . 226044) (-3495 . 225807) (-3496 . 224729)
- (-3497 . 224649) (-3498 . 224622) (-3499 . 224445) (-3500 . 224411)
- (-3501 . 224359) (-3502 . 224327) (-3503 . 223681) (-3504 . 223527)
- (-3505 . 223384) (-3506 . 223332) (-3507 . 223113) (-3508 . 223006)
- (-3509 . 222824) (-3510 . 222745) (-3511 . 222662) (-3512 . 222634)
- (-3513 . 222564) (-3514 . 222408) (-3515 . 222290) (-3516 . 221448)
- (-3517 . 220856) (-3518 . 219000) (-3519 . 218881) (-3520 . 218452)
- (-3521 . 218386) (-3522 . 218355) (-3523 . 217722) (-3524 . 217594)
- (-3525 . 217474) (-3526 . 217318) (-3527 . 217177) (-3528 . 217074)
- (-3529 . 213465) (-3530 . 213322) (-3531 . 213159) (-3532 . 212937)
- (-3533 . 212909) (-3534 . 212733) (-3535 . 212622) (-3536 . 212403)
- (-3537 . 211992) (-3538 . 211888) (-3539 . 211784) (-3540 . 211562)
- (-3541 . 211310) (-3542 . 210993) (-3543 . 210398) (-3544 . 210316)
- (-3545 . 210131) (-3546 . 209957) (-3547 . 209854) (-3548 . 209803)
- (-3549 . 209593) (-3550 . 209277) (-3551 . 209176) (-3552 . 209144)
- (-3553 . 208889) (-3554 . 208829) (-3555 . 201886) (-3556 . 201551)
- (-3557 . 201438) (-3558 . 201278) (-3559 . 201193) (-3560 . 201113)
- (-3561 . 200675) (-3562 . 200290) (-3563 . 200189) (-3564 . 199924)
- (-3565 . 199721) (-3566 . 199577) (-3567 . 199461) (-3568 . 199366)
- (-3569 . 199223) (-3570 . 199140) (-3571 . 198925) (-3572 . 198722)
- (-3573 . 198619) (-3574 . 198506) (-3575 . 198408) (-3576 . 198233)
- (-3577 . 197874) (-3578 . 197565) (-3579 . 197509) (-3580 . 197443)
- (-3581 . 197077) (-3582 . 196924) (-3583 . 196871) (-3584 . 196768)
- (-3585 . 196541) (-3586 . 196471) (-3587 . 196377) (-3588 . 196311)
- (-3589 . 196172) (-3590 . 195987) (-3591 . 195927) (-3592 . 195678)
- (-3593 . 195616) (-3594 . 195547) (-3595 . 195401) (-3596 . 195357)
- (-3597 . 195128) (-3598 . 194917) (-3599 . 194844) (-3600 . 194792)
- (-3601 . 194684) (-3602 . 194629) (-3603 . 194447) (-3604 . 194267)
- (-3605 . 194088) (-3606 . 193935) (-3607 . 193862) (-3608 . 193759)
- (-3609 . 193662) (-3610 . 193497) (-3611 . 193445) (-3612 . 193393)
- (-3613 . 193306) (-3614 . 193079) (-3615 . 192600) (-3616 . 192499)
- (-3617 . 192320) (-3618 . 192221) (-3619 . 192151) (-3620 . 192072)
- (-3621 . 191916) (-3622 . 191830) (-3623 . 191657) (-3624 . 191552)
- (-3625 . 191392) (-3626 . 191297) (-3627 . 191196) (-3628 . 191083)
- (-3629 . 190995) (-3630 . 190847) (-3631 . 190746) (-3632 . 190669)
- (-3633 . 190490) (-3634 . 190407) (-3635 . 190349) (-3636 . 189901)
- (-3637 . 189819) (-3638 . 189750) (-3639 . 189646) (-3640 . 189229)
- (-3641 . 189071) (-3642 . 188949) (-3643 . 188523) (-3644 . 188408)
- (-3645 . 186276) (-3646 . 186110) (-3647 . 185945) (-3648 . 185911)
- (-3649 . 185844) (-3650 . 185756) (-3651 . 185640) (-3652 . 185544)
- (-3653 . 185485) (-3654 . 185247) (-3655 . 185148) (-3656 . 185096)
- (-3657 . 184986) (-3658 . 184912) (-3659 . 184739) (-3660 . 184464)
- (-3661 . 184318) (-3662 . 184221) (-3663 . 184068) (-3664 . 183931)
- (-3665 . 183571) (-3666 . 183483) (-3667 . 183331) (-3668 . 183036)
- (-3669 . 182974) (-3670 . 182942) (-3671 . 182623) (-3672 . 182418)
- (-3673 . 182305) (-3674 . 181220) (-3675 . 181072) (-3676 . 180669)
- (-3677 . 180610) (-3678 . 180298) (-3679 . 180238) (-3680 . 179143)
- (-3681 . 178938) (-3682 . 178821) (-3683 . 178793) (-3684 . 178513)
- (-3685 . 178461) (-3686 . 178384) (-3687 . 178310) (-3688 . 178245)
- (-3689 . 177914) (-3690 . 177820) (-3691 . 177768) (-3692 . 177680)
- (-3693 . 177567) (-3694 . 177499) (-3695 . 177445) (-3696 . 176647)
- (-3697 . 176574) (-3698 . 176474) (-3699 . 176351) (-3700 . 176179)
- (-3701 . 176075) (-3702 . 175977) (-3703 . 174575) (-3704 . 174417)
- (-3705 . 174312) (-3706 . 174260) (-3707 . 173938) (-3708 . 173766)
- (-3709 . 173693) (-3710 . 173551) (-3711 . 173440) (-3712 . 173008)
- (-3713 . 172884) (-3714 . 172789) (-3715 . 172734) (-3716 . 172700)
- (-3717 . 172571) (-3718 . 172521) (-3719 . 172073) (-3720 . 171949)
- (-3721 . 171745) (-3722 . 171643) (-3723 . 171542) (-3724 . 171356)
- (-3725 . 171290) (-3726 . 171056) (-3727 . 170913) (-3728 . 170822)
- (-3729 . 170767) (-3730 . 170476) (-3731 . 170427) (-3732 . 170321)
- (-3733 . 170198) (-3734 . 169017) (-3735 . 150442) (-3736 . 150383)
- (-3737 . 150265) (-3738 . 144751) (-3739 . 144650) (-3740 . 144064)
- (-3741 . 143762) (-3742 . 143598) (-3743 . 143222) (-3744 . 142886)
- (-3745 . 142816) (-3746 . 142739) (-3747 . 142390) (-3748 . 139569)
- (-3749 . 139496) (-3750 . 139396) (-3751 . 138788) (-3752 . 138670)
- (-3753 . 138277) (-3754 . 138176) (-3755 . 138126) (-3756 . 138007)
- (-3757 . 137955) (-3758 . 137816) (-3759 . 137742) (-3760 . 137680)
- (-3761 . 137523) (-3762 . 137408) (-3763 . 137348) (-3764 . 137282)
- (-3765 . 136840) (-3766 . 136569) (-3767 . 136426) (-3768 . 136325)
- (-3769 . 135872) (-3770 . 135739) (-3771 . 135666) (-3772 . 135442)
- (-3773 . 135220) (-3774 . 134960) (-3775 . 134514) (-3776 . 134287)
- (-3777 . 134183) (-3778 . 134088) (-3779 . 133753) (-3780 . 133695)
- (-3781 . 133572) (-3782 . 133448) (-3783 . 133230) (-3784 . 133174)
- (-3785 . 133101) (-3786 . 132725) (-3787 . 132447) (-3788 . 131771)
- (-3789 . 131743) (-3790 . 131511) (-3791 . 131431) (-3792 . 131037)
- (-3793 . 130915) (-3794 . 130789) (-3795 . 130553) (-3796 . 130134)
- (-3797 . 129855) (-3798 . 129706) (-3799 . 129629) (-3800 . 129464)
- (-3801 . 129197) (-3802 . 129056) (-3803 . 129004) (-3804 . 128815)
- (-3805 . 128488) (-3806 . 128345) (-3807 . 128043) (-3808 . 127469)
- (-3809 . 127311) (-3810 . 127282) (-3811 . 127149) (-3812 . 127054)
- (-3813 . 126839) (-3814 . 126580) (-3815 . 126428) (-3816 . 126322)
- (-3817 . 126209) (-3818 . 126150) (-3819 . 125763) (-3820 . 125425)
- (-3821 . 125344) (-3822 . 125249) (-3823 . 125100) (-3824 . 124432)
- (-3825 . 124346) (-3826 . 124057) (-3827 . 123991) (-3828 . 123784)
- (-3829 . 123449) (-3830 . 123140) (-3831 . 122983) (-3832 . 122931)
- (-3833 . 122878) (-3834 . 122759) (-3835 . 122615) (-3836 . 122487)
- (-3837 . 122388) (-3838 . 122305) (-3839 . 122224) (-3840 . 122101)
- (-3841 . 122018) (-3842 . 121451) (-3843 . 121349) (-3844 . 121163)
- (-3845 . 121070) (-3846 . 121013) (-3847 . 120917) (-3848 . 120833)
- (-3849 . 120642) (-3850 . 120403) (-3851 . 120198) (-3852 . 120017)
- (-3853 . 119923) (-3854 . 119844) (-3855 . 119738) (-3856 . 119611)
- (-3857 . 119516) (-3858 . 119173) (-3859 . 119076) (-3860 . 118919)
- (-3861 . 118495) (-3862 . 118359) (-3863 . 118117) (-3864 . 117998)
- (-3865 . 117867) (-3866 . 117779) (-3867 . 117700) (-3868 . 117585)
- (-3869 . 117511) (-3870 . 117403) (-3871 . 117280) (-3872 . 115650)
- (-3873 . 115484) (-3874 . 115368) (-3875 . 115258) (-3876 . 115087)
- (-3877 . 115006) (-3878 . 114861) (-3879 . 114749) (-3880 . 114560)
- (-3881 . 114465) (-3882 . 114406) (-3883 . 114272) (-3884 . 114244)
- (-3885 . 113996) (-3886 . 113877) (-3887 . 113677) (-3888 . 113276)
- (-3889 . 113209) (-3890 . 113129) (-3891 . 112909) (-3892 . 112839)
- (-3893 . 112744) (-3894 . 112634) (-3895 . 111330) (-3896 . 111189)
- (-3897 . 111101) (-3898 . 111048) (-3899 . 110655) (-3900 . 110567)
- (-3901 . 110510) (-3902 . 110416) (-3903 . 110350) (-3904 . 110081)
- (-3905 . 109540) (-3906 . 109418) (-3907 . 109335) (-3908 . 109165)
- (-3909 . 107863) (-3910 . 107744) (-3911 . 107217) (-3912 . 106751)
- (-3913 . 106588) (-3914 . 106485) (-3915 . 106158) (-3916 . 105827)
- (-3917 . 105730) (-3918 . 105626) (-3919 . 104974) (-3920 . 104806)
- (-3921 . 104685) (-3922 . 104611) (-3923 . 104249) (-3924 . 104120)
- (-3925 . 104022) (-3926 . 103884) (-3927 . 103659) (-3928 . 103219)
- (-3929 . 103125) (-3930 . 103047) (-3931 . 103015) (-3932 . 102885)
- (-3933 . 102736) (-3934 . 101486) (-3935 . 101315) (-3936 . 100496)
- (-3937 . 100388) (-3938 . 100310) (-3939 . 99864) (-3940 . 99812)
- (-3941 . 99732) (-3942 . 99617) (-3943 . 99525) (-3944 . 99246)
- (-3945 . 99192) (-3946 . 98976) (-3947 . 98875) (-3948 . 98822)
- (-3949 . 98736) (-3950 . 96675) (-3951 . 96520) (-3952 . 96446)
- (-3953 . 96352) (-3954 . 96225) (-3955 . 96015) (-3956 . 95913)
- (-3957 . 95735) (-3958 . 95648) (-3959 . 95392) (-3960 . 95135)
- (-3961 . 95022) (-3962 . 94918) (-3963 . 94795) (-3964 . 94429)
- (-3965 . 94319) (-3966 . 94246) (-3967 . 94162) (-3968 . 93916)
- (-3969 . 93708) (-3970 . 93367) (-3971 . 93260) (-3972 . 93194)
- (-3973 . 93120) (-3974 . 92967) (-3975 . 92636) (-3976 . 92535)
- (-3977 . 90754) (-3978 . 90640) (-3979 . 90557) (-3980 . 90224)
- (-3981 . 90147) (-3982 . 89949) (-3983 . 89847) (-3984 . 89737)
- (-3985 . 89659) (-3986 . 89582) (-3987 . 89424) (-3988 . 89368)
- (-3989 . 89302) (-3990 . 89165) (-3991 . 89070) (-3992 . 89018)
- (-3993 . 88779) (-3994 . 88605) (-3995 . 88549) (-3996 . 88058)
- (-3997 . 87547) (-3998 . 87026) (-3999 . 86386) (-4000 . 86236)
- (-4001 . 86148) (-4002 . 86080) (-4003 . 85935) (-4004 . 85553)
- (-4005 . 85375) (-4006 . 85272) (-4007 . 85198) (-4008 . 85002)
- (-4009 . 84903) (-4010 . 84781) (-4011 . 84571) (-4012 . 84493)
- (-4013 . 84421) (-4014 . 84328) (-4015 . 83740) (-4016 . 83652)
- (-4017 . 83598) (-4018 . 83487) (-4019 . 83353) (-4020 . 83158)
- (-4021 . 82975) (-4022 . 82787) (-4023 . 82714) (-4024 . 82622)
- (-4025 . 82551) (-4026 . 82209) (-4027 . 82065) (-4028 . 81578)
- (-4029 . 81494) (-4030 . 81409) (-4031 . 81350) (-4032 . 81223)
- (-4033 . 81121) (-4034 . 80926) (-4035 . 80832) (-4036 . 80755)
- (-4037 . 80655) (-4038 . 80475) (-4039 . 80369) (-4040 . 80219)
- (-4041 . 80060) (-4042 . 79960) (-4043 . 79904) (-4044 . 79619)
- (-4045 . 79567) (-4046 . 79034) (-4047 . 78935) (-4048 . 78775)
- (-4049 . 78439) (-4050 . 78187) (-4051 . 78107) (-4052 . 77817)
- (-4053 . 77765) (-4054 . 77628) (-4055 . 77556) (-4056 . 77272)
- (-4057 . 77081) (-4058 . 76902) (-4059 . 76789) (-4060 . 76599)
- (-4061 . 76439) (-4062 . 76298) (-4063 . 76202) (-4064 . 76114)
- (-4065 . 76006) (-4066 . 75972) (-4067 . 75412) (-4068 . 75254)
- (-4069 . 75193) (-4070 . 75098) (-4071 . 74776) (-4072 . 74717)
- (-4073 . 74644) (-4074 . 74564) (-4075 . 74277) (-4076 . 74036)
- (-4077 . 73881) (-4078 . 73808) (-4079 . 73713) (-4080 . 73466)
- (-4081 . 73283) (-4082 . 72911) (-4083 . 72831) (-4084 . 72638)
- (-4085 . 72570) (-4086 . 72252) (-4087 . 71689) (-4088 . 71509)
- (-4089 . 71456) (-4090 . 71329) (-4091 . 71227) (-4092 . 71128)
- (-4093 . 70963) (-4094 . 69531) (-4095 . 68567) (-4096 . 68163)
- (-4097 . 68107) (-4098 . 67861) (-4099 . 67298) (-4100 . 67113)
- (-4101 . 67012) (-4102 . 66914) (-4103 . 66828) (-4104 . 66669)
- (-4105 . 66598) (-4106 . 66492) (-4107 . 66391) (-4108 . 65829)
- (-4109 . 65706) (-4110 . 65533) (-4111 . 65480) (-4112 . 65393)
- (-4113 . 65049) (-4114 . 64971) (-4115 . 64885) (-4116 . 64464)
- (-4117 . 64401) (-4118 . 64046) (-4119 . 63994) (-4120 . 63924)
- (-4121 . 63051) (-4122 . 62409) (-4123 . 61847) (-4124 . 61615)
- (-4125 . 61486) (-4126 . 61412) (-4127 . 61384) (-4128 . 61263)
- (-4129 . 61145) (-4130 . 60980) (-4131 . 60226) (-4132 . 60147)
- (-4133 . 59961) (-4134 . 59862) (-4135 . 59810) (-4136 . 59716)
- (-4137 . 59563) (-4138 . 59001) (-4139 . 58867) (-4140 . 58715)
- (-4141 . 58647) (-4142 . 58563) (-4143 . 57826) (-4144 . 57746)
- (-4145 . 57651) (-4146 . 57519) (-4147 . 57200) (-4148 . 56987)
- (-4149 . 56859) (-4150 . 56297) (-4151 . 56075) (-4152 . 56001)
- (-4153 . 55794) (-4154 . 55678) (-4155 . 55608) (-4156 . 52827)
- (-4157 . 52743) (-4158 . 52627) (-4159 . 52578) (-4160 . 52437)
- (-4161 . 51875) (-4162 . 51782) (-4163 . 51704) (-4164 . 51545)
- (-4165 . 51511) (-4166 . 51456) (-4167 . 51366) (-4168 . 51241)
- (-4169 . 50961) (-4170 . 50902) (-4171 . 50359) (-4172 . 50258)
- (-4173 . 50164) (-4174 . 50019) (-4175 . 49966) (-4176 . 49849)
- (-4177 . 49592) (-4178 . 49508) (-4179 . 49163) (-4180 . 49009)
- (-4181 . 48810) (-4182 . 48738) (-4183 . 48644) (-4184 . 48463)
- (-4185 . 48338) (-4186 . 48283) (-4187 . 48170) (-4188 . 48084)
- (-4189 . 47348) (-4190 . 47289) (-4191 . 46873) (-4192 . 46761)
- (-4193 . 46702) (-4194 . 46079) (-4195 . 46007) (-4196 . 45954)
- (-4197 . 45902) (-4198 . 45225) (-4199 . 45172) (-4200 . 45044)
- (-4201 . 44949) (-4202 . 44895) (-4203 . 44684) (-4204 . 44588)
- (-4205 . 44424) (-4206 . 44170) (-4207 . 43997) (-4208 . 43855)
- (-4209 . 43744) (-4210 . 43638) (-4211 . 43539) (-4212 . 43152)
- (-4213 . 42994) (-4214 . 42926) (-4215 . 42811) (-4216 . 42664)
- (-4217 . 42501) (-4218 . 42395) (-4219 . 42335) (-4220 . 42261)
- (-4221 . 42167) (-4222 . 41685) (-4223 . 41587) (-4224 . 41464)
- (-4225 . 41326) (-4226 . 41120) (-4227 . 40976) (-4228 . 40794)
- (-4229 . 40666) (-4230 . 40275) (-4231 . 40078) (-4232 . 39897)
- (-4233 . 39827) (-4234 . 39714) (-4235 . 39496) (-4236 . 39145)
- (-4237 . 38820) (-4238 . 38767) (-4239 . 37879) (-4240 . 37750)
- (-4241 . 37414) (-4242 . 37318) (-4243 . 37144) (-4244 . 37013)
- (-4245 . 35471) (-4246 . 35390) (-4247 . 35316) (-4248 . 35163)
- (-4249 . 35132) (-4250 . 35104) (-4251 . 35048) (-4252 . 34976)
- (-4253 . 34883) (-4254 . 34692) (-4255 . 34564) (-4256 . 34481)
- (-4257 . 34398) (-4258 . 34332) (-4259 . 33180) (-4260 . 32213)
- (-4261 . 32157) (-4262 . 32047) (-4263 . 31240) (-4264 . 31173)
- (-4265 . 31099) (-4266 . 30956) (-4267 . 30738) (-4268 . 30685)
- (-4269 . 30632) (-4270 . 30429) (-4271 . 30359) (-4272 . 30169)
- (-4273 . 30117) (-4274 . 30065) (-4275 . 29842) (-4276 . 29640)
- (-4277 . 29527) (-4278 . 29317) (-4279 . 29244) (-4280 . 29116)
- (-4281 . 29079) (-4282 . 28964) (-4283 . 28685) (-4284 . 28564)
- (-4285 . 28408) (-4286 . 27638) (-4287 . 27515) (-4288 . 27215)
- (-4289 . 27136) (-4290 . 26941) (-4291 . 26826) (-4292 . 26775)
- (-4293 . 26747) (-4294 . 26566) (-4295 . 26467) (-4296 . 26284)
- (-4297 . 26201) (-4298 . 26010) (-4299 . 25769) (-4300 . 25559)
- (-4301 . 25463) (-4302 . 25173) (-4303 . 25111) (-4304 . 25042)
- (-4305 . 24923) (-4306 . 24852) (-4307 . 24571) (-4308 . 24434)
- (-4309 . 24211) (-4310 . 24110) (-4311 . 23814) (-4312 . 23761)
- (-4313 . 23695) (-4314 . 23249) (-4315 . 23154) (-4316 . 23059)
- (-4317 . 22958) (-4318 . 22683) (-4319 . 22631) (-4320 . 22475)
- (-4321 . 22211) (-4322 . 21924) (-4323 . 21211) (-4324 . 21152)
- (-4325 . 20981) (-4326 . 20854) (-4327 . 20761) (-4328 . 20638)
- (-4329 . 20543) (-4330 . 20490) (-4331 . 20384) (-4332 . 20296)
- (-4333 . 19863) (-4334 . 19590) (-4335 . 19512) (-4336 . 19409)
- (-4337 . 19375) (-4338 . 19280) (-4339 . 19225) (-4340 . 18907)
- (-4341 . 18444) (-4342 . 18230) (-4343 . 17850) (-4344 . 17537)
- (-4345 . 17359) (-4346 . 17136) (-4347 . 17067) (-4348 . 16892)
- (-4349 . 16796) (-4350 . 16701) (-4351 . 16541) (-4352 . 16133)
- (-4353 . 16003) (-4354 . 15901) (-4355 . 15848) (-4356 . 15799)
- (-4357 . 15654) (-4358 . 15408) (-4359 . 15190) (-4360 . 14912)
- (-4361 . 14857) (-4362 . 14742) (-4363 . 14618) (-4364 . 14456)
- (-4365 . 14256) (-4366 . 14138) (-4367 . 14037) (-4368 . 13913)
- (-4369 . 13666) (-4370 . 13632) (-4371 . 13500) (-4372 . 13434)
- (-4373 . 13381) (-4374 . 13182) (-4375 . 13087) (-4376 . 13005)
- (-4377 . 12935) (-4378 . 8392) (-4379 . 8322) (-4380 . 8238)
- (-4381 . 8108) (-4382 . 7889) (-4383 . 7773) (-4384 . 7700)
- (-4385 . 7669) (-4386 . 7573) (-4387 . 6373) (-4388 . 6318)
- (-4389 . 6266) (-4390 . 6097) (-4391 . 6001) (-4392 . 5908)
- (-4393 . 5826) (-4394 . 5765) (-4395 . 5710) (-4396 . 5653)
- (-4397 . 5315) (-4398 . 4611) (-4399 . 4452) (-4400 . 4352)
- (-4401 . 4250) (-4402 . 3954) (-4403 . 3859) (-4404 . 3780)
- (-4405 . 3655) (-4406 . 3623) (-4407 . 3589) (-4408 . 3350)
- (-4409 . 3263) (-4410 . 2925) (-4411 . 2851) (-4412 . 2170)
- (-4413 . 2025) (-4414 . 1924) (-4415 . 1478) (-4416 . 1384)
- (-4417 . 1285) (-4418 . 897) (-4419 . 820) (-4420 . 743) (-4421 . 709)
- (-4422 . 602) (-4423 . 488) (-4424 . 428) (-4425 . 324) (-4426 . 269)
- (-4427 . 107) (-4428 . 30)) \ No newline at end of file
+ ((*1 *1) (-5 *1 (-483))) ((*1 *1) (-4 *1 (-1212))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4))
+ (-5 *1 (-1037 *5)) (-4 *5 (-1058))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1037 *4))
+ (-4 *4 (-1058))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-912 (-570)))) (-5 *4 (-570))
+ (-5 *2 (-650 (-695 *4))) (-5 *1 (-1037 *5)) (-4 *5 (-1058))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570))))
+ (-5 *1 (-1037 *4)) (-4 *4 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373))
+ (-4 *3 (-1109)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 (-413 (-959 (-570)))))
+ (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+(((*1 *1) (-5 *1 (-603))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| (-650 *3)) (|:| -3593 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+((-1310 . 733322) (-1311 . 733294) (-1312 . 733179) (-1313 . 733084)
+ (-1314 . 732610) (-1315 . 732357) (-1316 . 732278) (-1317 . 732251)
+ (-1318 . 732116) (-1319 . 731971) (-1320 . 731908) (-1321 . 731765)
+ (-1322 . 731580) (-1323 . 731386) (-1324 . 731237) (-1325 . 731130)
+ (-1326 . 731012) (-1327 . 730439) (-1328 . 730262) (-1329 . 730171)
+ (-1330 . 730050) (-1331 . 729989) (-1332 . 729906) (-1333 . 729840)
+ (-1334 . 729172) (-1335 . 729076) (-1336 . 728963) (-1337 . 728824)
+ (-1338 . 728694) (-1339 . 728642) (-1340 . 728538) (-1341 . 728420)
+ (-1342 . 728285) (-1343 . 728201) (-1344 . 727687) (-1345 . 727656)
+ (-1346 . 727570) (-1347 . 727255) (-1348 . 727058) (-1349 . 726958)
+ (-1350 . 726845) (-1351 . 726813) (-1352 . 712583) (-1353 . 712418)
+ (-1354 . 712265) (-1355 . 712161) (-1356 . 712103) (-1357 . 711927)
+ (-1358 . 711861) (-1359 . 711748) (-1360 . 711526) (-1361 . 711217)
+ (-1362 . 711161) (-1363 . 707862) (-1364 . 707719) (-1365 . 707576)
+ (-1366 . 707497) (-1367 . 707011) (-1368 . 706919) (-1369 . 706715)
+ (-1370 . 706627) (-1371 . 706504) (-1372 . 706452) (-1373 . 706399)
+ (-1374 . 706192) (-1375 . 706093) (-1376 . 705871) (-1377 . 701808)
+ (-1378 . 700535) (-1379 . 700355) (-1380 . 700303) (-1381 . 700071)
+ (-1382 . 699972) (-1383 . 699903) (-1384 . 699846) (-1385 . 699650)
+ (-1386 . 699153) (-1387 . 698818) (-1388 . 697851) (-1389 . 697779)
+ (-1390 . 697727) (-1391 . 697508) (-1392 . 697456) (-1393 . 697378)
+ (-1394 . 696950) (-1395 . 696922) (-1396 . 696761) (-1397 . 696654)
+ (-1398 . 696558) (-1399 . 696249) (-1400 . 696082) (-1401 . 696005)
+ (-1402 . 695898) (-1403 . 695749) (-1404 . 695630) (-1405 . 695536)
+ (-1406 . 695458) (-1407 . 695430) (-1408 . 695267) (-1409 . 695110)
+ (-1410 . 695059) (-1411 . 694892) (-1412 . 694754) (-1413 . 694575)
+ (-1414 . 694316) (-1415 . 694134) (-1416 . 694078) (-1417 . 690411)
+ (-1418 . 690258) (-1419 . 690039) (-1420 . 689987) (-1421 . 689904)
+ (-1422 . 689853) (-1423 . 689767) (-1424 . 689674) (-1425 . 689187)
+ (-1426 . 688876) (-1427 . 686531) (-1428 . 686398) (-1429 . 686339)
+ (-1430 . 686260) (-1431 . 686139) (-1432 . 686040) (-1433 . 685906)
+ (-1434 . 685635) (-1435 . 685207) (-1436 . 685155) (-1437 . 683578)
+ (-1438 . 683492) (-1439 . 683439) (-1440 . 683386) (-1441 . 683176)
+ (-1442 . 682818) (-1443 . 682735) (-1444 . 682575) (-1445 . 682411)
+ (-1446 . 682259) (-1447 . 682162) (-1448 . 681908) (-1449 . 681324)
+ (-1450 . 681292) (-1451 . 680899) (-1452 . 680850) (-1453 . 680731)
+ (-1454 . 676571) (-1455 . 676427) (-1456 . 676349) (-1457 . 676272)
+ (-1458 . 676244) (-1459 . 676176) (-1460 . 676023) (-1461 . 675920)
+ (-1462 . 675834) (-1463 . 675783) (-1464 . 675639) (-1465 . 675294)
+ (-1466 . 675224) (-1467 . 675095) (-1468 . 675025) (** . 672031)
+ (-1470 . 671947) (-1471 . 671631) (-1472 . 671561) (-1473 . 671466)
+ (-1474 . 671362) (-1475 . 671201) (-1476 . 671073) (-1477 . 670955)
+ (-1478 . 670881) (-1479 . 670725) (-1480 . 669988) (-1481 . 669922)
+ (-1482 . 669528) (-1483 . 669491) (-1484 . 669068) (-1485 . 668969)
+ (-1486 . 668309) (-1487 . 668082) (-1488 . 667929) (-1489 . 667811)
+ (-1490 . 667731) (-1491 . 667565) (-1492 . 667426) (-1493 . 667268)
+ (-1494 . 667182) (-1495 . 667052) (-1496 . 666953) (-1497 . 666870)
+ (-1498 . 666813) (-1499 . 666754) (-1500 . 664898) (-1501 . 664735)
+ (-1502 . 664640) (-1503 . 664257) (-1504 . 664167) (-1505 . 664016)
+ (-1506 . 663965) (-1507 . 663822) (-1508 . 663741) (-1509 . 663669)
+ (-1510 . 663107) (-1511 . 663005) (-1512 . 662971) (-1513 . 662919)
+ (-1514 . 662800) (-1515 . 662481) (-1516 . 662288) (-1517 . 662170)
+ (-1518 . 662011) (-1519 . 661938) (-1520 . 661865) (-1521 . 661742)
+ (-1522 . 661670) (-1523 . 661566) (-1524 . 661137) (-1525 . 660923)
+ (-1526 . 660873) (-1527 . 660660) (-1528 . 660318) (-1529 . 660259)
+ (-1530 . 660200) (-1531 . 660097) (-1532 . 660014) (-1533 . 658822)
+ (-1534 . 658756) (-1535 . 658684) (-1536 . 658556) (-1537 . 658112)
+ (-1538 . 657938) (-1539 . 657859) (-1540 . 657701) (-1541 . 657517)
+ (-1542 . 656950) (-1543 . 656696) (-1544 . 656568) (-1545 . 656534)
+ (-1546 . 655901) (-1547 . 655679) (-1548 . 655410) (-1549 . 654700)
+ (-1550 . 654623) (-1551 . 654545) (-1552 . 654359) (-1553 . 654134)
+ (-1554 . 653884) (-1555 . 653756) (-1556 . 651788) (-1557 . 651649)
+ (-1558 . 651575) (-1559 . 651501) (-1560 . 651355) (-1561 . 651203)
+ (-1562 . 651150) (-1563 . 651057) (-1564 . 651023) (-1565 . 650903)
+ (-1566 . 650744) (-1567 . 650537) (-1568 . 650480) (-1569 . 650428)
+ (-1570 . 650100) (-1571 . 650026) (-1572 . 649881) (-1573 . 649824)
+ (-1574 . 649617) (-1575 . 649589) (-1576 . 649431) (-1577 . 649275)
+ (-1578 . 649159) (-1579 . 649091) (-1580 . 648936) (-1581 . 648778)
+ (-1582 . 648575) (-1583 . 648431) (-1584 . 648257) (-1585 . 648161)
+ (-1586 . 647999) (-1587 . 647752) (-1588 . 647611) (-1589 . 647417)
+ (-1590 . 647347) (-1591 . 647244) (-1592 . 647125) (-1593 . 646833)
+ (-1594 . 646774) (-1595 . 646541) (-1596 . 646457) (-1597 . 646240)
+ (-1598 . 646037) (-1599 . 645814) (-1600 . 645708) (-1601 . 645579)
+ (-1602 . 645476) (-1603 . 642695) (-1604 . 642623) (-1605 . 642570)
+ (-1606 . 642258) (-1607 . 642132) (-1608 . 642034) (-1609 . 641168)
+ (-1610 . 640977) (-1611 . 640809) (-1612 . 640714) (-1613 . 640655)
+ (-1614 . 640512) (-1615 . 640428) (-1616 . 640355) (-1617 . 640063)
+ (-1618 . 639767) (-1619 . 639528) (-1620 . 639429) (-1621 . 639319)
+ (-1622 . 638717) (-1623 . 638554) (-1624 . 638501) (-1625 . 638385)
+ (-1626 . 637089) (-1627 . 636871) (-1628 . 636713) (-1629 . 636575)
+ (-1630 . 636496) (-1631 . 636291) (-1632 . 636191) (-1633 . 636163)
+ (-1634 . 636012) (-1635 . 635908) (-1636 . 635686) (-1637 . 635637)
+ (-1638 . 635566) (-1639 . 635516) (-1640 . 635432) (-1641 . 635377)
+ (-1642 . 635250) (-1643 . 635069) (-1644 . 634959) (-1645 . 634807)
+ (-1646 . 633924) (-1647 . 633896) (-1648 . 633802) (-1649 . 633661)
+ (-1650 . 633592) (-1651 . 633482) (-1652 . 633345) (-1653 . 633218)
+ (-1654 . 633124) (-1655 . 633028) (-1656 . 632699) (-1657 . 632650)
+ (-1658 . 632047) (-1659 . 631871) (-1660 . 631778) (-1661 . 631535)
+ (-1662 . 631464) (-1663 . 631435) (-1664 . 631329) (-1665 . 631241)
+ (-1666 . 631132) (-1667 . 631104) (-1668 . 630993) (-1669 . 630582)
+ (-1670 . 630504) (-1671 . 630359) (-1672 . 630178) (-1673 . 630088)
+ (-1674 . 630010) (-1675 . 629927) (-1676 . 629820) (-1677 . 629693)
+ (-1678 . 629632) (-1679 . 629553) (-1680 . 629334) (-1681 . 628677)
+ (-1682 . 628518) (-1683 . 628331) (-1684 . 628147) (-1685 . 628053)
+ (-1686 . 627958) (-1687 . 627926) (-1688 . 627848) (-1689 . 627649)
+ (-1690 . 627548) (-1691 . 627137) (-1692 . 627103) (-1693 . 627001)
+ (-1694 . 626843) (-1695 . 626791) (-1696 . 626717) (-1697 . 626374)
+ (-1698 . 626300) (-1699 . 626199) (-1700 . 626144) (-1701 . 626040)
+ (-1702 . 625862) (-1703 . 625263) (-1704 . 624817) (-1705 . 623958)
+ (-1706 . 623888) (-1707 . 623421) (-1708 . 623248) (-1709 . 622744)
+ (-1710 . 622647) (-1711 . 622527) (-1712 . 622456) (-1713 . 621160)
+ (-1714 . 621089) (-1715 . 621017) (-1716 . 620913) (-1717 . 620823)
+ (-1718 . 620665) (-1719 . 620568) (-1720 . 620482) (-1721 . 620316)
+ (-1722 . 620214) (-1723 . 620057) (-1724 . 619674) (-1725 . 619583)
+ (-1726 . 619409) (-1727 . 619035) (-1728 . 618813) (-1729 . 618439)
+ (-1730 . 618314) (-1731 . 614307) (-1732 . 614201) (-1733 . 614071)
+ (-1734 . 613913) (-1735 . 613797) (-1736 . 613658) (-1737 . 613234)
+ (-1738 . 613096) (-1739 . 612900) (-1740 . 612850) (-1741 . 612779)
+ (-1742 . 612632) (-1743 . 612380) (-1744 . 612100) (-1745 . 612026)
+ (-1746 . 611935) (-1747 . 611822) (-1748 . 611562) (-1749 . 611426)
+ (-1750 . 611279) (-1751 . 611127) (-1752 . 610952) (-1753 . 610893)
+ (-1754 . 610576) (-1755 . 610397) (-1756 . 610338) (-1757 . 609944)
+ (-1758 . 608166) (-1759 . 608110) (-1760 . 608038) (-1761 . 607796)
+ (-1762 . 607631) (-1763 . 607554) (-1764 . 607127) (-1765 . 607062)
+ (-1766 . 606963) (-1767 . 606368) (-1768 . 605825) (-1769 . 605797)
+ (-1770 . 605653) (-1771 . 605555) (-1772 . 605470) (-1773 . 605351)
+ (-1774 . 605103) (-1775 . 605044) (-1776 . 604913) (-1777 . 604768)
+ (-1778 . 604703) (-1779 . 604621) (-1780 . 604279) (-1781 . 602513)
+ (-1782 . 602412) (-1783 . 602081) (-1784 . 602000) (-1785 . 601869)
+ (-1786 . 601668) (-1787 . 601527) (-1788 . 601228) (-1789 . 599888)
+ (-1790 . 599790) (-1791 . 599605) (-1792 . 599511) (-1793 . 598056)
+ (-1794 . 597999) (-1795 . 597489) (-1796 . 597416) (-1797 . 597328)
+ (-1798 . 596993) (-1799 . 596819) (-1800 . 596766) (-1801 . 596450)
+ (-1802 . 596378) (-1803 . 592715) (-1804 . 592570) (-1805 . 591080)
+ (-1806 . 590909) (-1807 . 590636) (-1808 . 590565) (-1809 . 590486)
+ (-1810 . 589959) (-1811 . 589889) (-1812 . 589724) (-1813 . 589621)
+ (-1814 . 589347) (-1815 . 589294) (-1816 . 589179) (-1817 . 589016)
+ (-1818 . 588892) (-1819 . 588835) (-1820 . 588583) (-1821 . 588488)
+ (-1822 . 588437) (-1823 . 588101) (-1824 . 587854) (-1825 . 587737)
+ (-1826 . 587001) (-1827 . 586930) (-1828 . 586875) (-1829 . 586635)
+ (-1830 . 586561) (-1831 . 586334) (-1832 . 586197) (-1833 . 586081)
+ (-1834 . 585871) (-1835 . 585708) (-1836 . 585451) (-1837 . 585377)
+ (-1838 . 585320) (-1839 . 585122) (-1840 . 585014) (-1841 . 584796)
+ (-1842 . 584668) (-1843 . 584584) (-1844 . 584478) (-1845 . 584162)
+ (-1846 . 584034) (-1847 . 583947) (-1848 . 583895) (-1849 . 583561)
+ (-1850 . 583438) (-1851 . 583348) (-1852 . 583292) (-1853 . 583213)
+ (-1854 . 583130) (-1855 . 583029) (-1856 . 582684) (-1857 . 582040)
+ (-1858 . 581988) (-1859 . 581822) (-1860 . 581478) (-1861 . 581372)
+ (-1862 . 581174) (-1863 . 581115) (-1864 . 581083) (-1865 . 579911)
+ (-1866 . 579712) (-1867 . 579612) (-1868 . 579529) (-1869 . 579419)
+ (-1870 . 579292) (-1871 . 579226) (-1872 . 579111) (-1873 . 578969)
+ (-1874 . 577867) (-1875 . 577615) (-1876 . 577360) (-1877 . 572191)
+ (-1878 . 571833) (-1879 . 571761) (-1880 . 571588) (-1881 . 571535)
+ (-1882 . 571224) (-1883 . 570965) (-1884 . 570794) (-1885 . 570601)
+ (-1886 . 570502) (-1887 . 570408) (-1888 . 570337) (-1889 . 570277)
+ (-1890 . 570249) (-1891 . 569112) (-1892 . 569030) (-1893 . 568860)
+ (-1894 . 568805) (-1895 . 568724) (-1896 . 568333) (-1897 . 568170)
+ (-1898 . 568045) (-1899 . 567940) (-1900 . 567852) (-1901 . 567768)
+ (-1902 . 567623) (-1903 . 567530) (-1904 . 567171) (-1905 . 567109)
+ (-1906 . 567025) (-1907 . 566970) (-1908 . 566889) (-1909 . 566749)
+ (-1910 . 566335) (-1911 . 566223) (-1912 . 566140) (-1913 . 565252)
+ (-1914 . 564707) (-1915 . 564600) (-1916 . 564487) (-1917 . 564293)
+ (-1918 . 563997) (-1919 . 563838) (-1920 . 563649) (-1921 . 563402)
+ (-1922 . 563328) (-1923 . 562877) (-1924 . 562789) (-1925 . 562703)
+ (-1926 . 562542) (-1927 . 562460) (-1928 . 562234) (-1929 . 562179)
+ (-1930 . 562108) (-1931 . 562057) (-1932 . 561321) (-1933 . 561238)
+ (-1934 . 560871) (-1935 . 560777) (-1936 . 560704) (-1937 . 560618)
+ (-1938 . 560567) (-1939 . 560437) (-1940 . 560374) (-1941 . 560315)
+ (-1942 . 560191) (-1943 . 559949) (-1944 . 559920) (-1945 . 559820)
+ (-1946 . 559525) (-1947 . 559475) (-1948 . 559409) (-1949 . 558979)
+ (-1950 . 558815) (-1951 . 558756) (-1952 . 558676) (-1953 . 558624)
+ (-1954 . 558538) (-1955 . 557930) (-1956 . 557814) (-1957 . 557646)
+ (-1958 . 557450) (-1959 . 557373) (-1960 . 556781) (-1961 . 556318)
+ (-1962 . 556265) (-1963 . 556164) (-1964 . 555947) (-1965 . 555816)
+ (-1966 . 555755) (-1967 . 555684) (-1968 . 555543) (-1969 . 555409)
+ (-1970 . 555236) (-1971 . 555187) (-1972 . 555137) (-1973 . 554955)
+ (-1974 . 554869) (-1975 . 554621) (-1976 . 554431) (-1977 . 554335)
+ (-1978 . 554042) (-1979 . 553825) (-1980 . 553773) (-1981 . 553617)
+ (-1982 . 553510) (-1983 . 551921) (-1984 . 551564) (-1985 . 551344)
+ (-1986 . 551316) (-1987 . 551228) (-1988 . 550936) (-1989 . 550867)
+ (-1990 . 550728) (-1991 . 550476) (-1992 . 550369) (-1993 . 550300)
+ (-1994 . 550248) (-1995 . 550182) (-1996 . 550074) (-1997 . 549934)
+ (-1998 . 549846) (-1999 . 549772) (-2000 . 549537) (-2001 . 549464)
+ (-2002 . 549369) (-2003 . 548501) (-2004 . 548310) (-2005 . 548276)
+ (-2006 . 548132) (-2007 . 547993) (-2008 . 547931) (-2009 . 547712)
+ (-2010 . 547616) (-2011 . 547484) (-2012 . 547317) (-2013 . 547163)
+ (-2014 . 547090) (-2015 . 546530) (-2016 . 546257) (-2017 . 545906)
+ (-2018 . 545749) (-2019 . 545613) (-2020 . 545558) (-2021 . 545506)
+ (-2022 . 545337) (-2023 . 545059) (-2024 . 544901) (-2025 . 544827)
+ (-2026 . 544664) (-2027 . 544598) (-2028 . 544080) (-2029 . 544028)
+ (-2030 . 543969) (-2031 . 543853) (-2032 . 543780) (-2033 . 543686)
+ (-2034 . 543625) (-2035 . 543335) (-2036 . 543041) (-2037 . 542770)
+ (-2038 . 542693) (-2039 . 542524) (-2040 . 542471) (-2041 . 542169)
+ (-2042 . 542065) (-2043 . 541979) (-2044 . 541884) (-2045 . 541816)
+ (-2046 . 541661) (-2047 . 541518) (-2048 . 541306) (-2049 . 541210)
+ (-2050 . 541132) (-2051 . 540914) (-2052 . 540732) (-2053 . 540653)
+ (-2054 . 540331) (-2055 . 540085) (-2056 . 539791) (-2057 . 539545)
+ (-2058 . 539444) (-2059 . 539351) (-2060 . 539299) (-2061 . 539219)
+ (-2062 . 539033) (-2063 . 538977) (-2064 . 538918) (-2065 . 538777)
+ (-2066 . 538699) (-2067 . 538625) (-2068 . 538172) (-2069 . 538090)
+ (-2070 . 537888) (-2071 . 537650) (-2072 . 537548) (-2073 . 537475)
+ (-2074 . 537262) (-2075 . 537115) (-2076 . 536945) (-2077 . 536812)
+ (-2078 . 536757) (-2079 . 536626) (-2080 . 536420) (-2081 . 536282)
+ (-2082 . 535995) (-2083 . 535897) (-2084 . 535824) (-2085 . 535680)
+ (-2086 . 535456) (-2087 . 535407) (-2088 . 535336) (-2089 . 535279)
+ (-2090 . 535224) (-2091 . 535169) (-2092 . 534910) (-2093 . 534669)
+ (-2094 . 534430) (-2095 . 534356) (-2096 . 533878) (-2097 . 533793)
+ (-2098 . 533569) (-2099 . 533397) (-2100 . 533238) (-2101 . 533049)
+ (-2102 . 532739) (-2103 . 532687) (-2104 . 532532) (-2105 . 532221)
+ (-2106 . 532159) (-2107 . 531937) (-2108 . 531786) (-2109 . 531686)
+ (-2110 . 531596) (-2111 . 531188) (-2112 . 530629) (-2113 . 530368)
+ (-2114 . 530295) (-2115 . 530165) (-2116 . 529855) (-2117 . 529695)
+ (-2118 . 529435) (-2119 . 529333) (-2120 . 529105) (-2121 . 528976)
+ (-2122 . 528878) (-2123 . 528319) (-2124 . 528224) (-2125 . 527627)
+ (-2126 . 527599) (-2127 . 527486) (-2128 . 527040) (-2129 . 526744)
+ (-2130 . 526604) (-2131 . 526166) (-2132 . 525713) (-2133 . 525466)
+ (-2134 . 525334) (-2135 . 525107) (-2136 . 525003) (-2137 . 524915)
+ (-2138 . 524820) (-2139 . 524667) (-2140 . 524590) (-2141 . 524458)
+ (-2142 . 524275) (-2143 . 524159) (-2144 . 524063) (-2145 . 523946)
+ (-2146 . 523851) (-2147 . 523772) (-2148 . 523397) (-2149 . 523316)
+ (-2150 . 523239) (-2151 . 523143) (-2152 . 522771) (-2153 . 522586)
+ (-2154 . 522485) (-2155 . 522402) (-2156 . 522344) (-2157 . 522219)
+ (-2158 . 522148) (-2159 . 521986) (-2160 . 521659) (-2161 . 521129)
+ (-2162 . 520936) (-2163 . 520841) (-2164 . 520526) (-2165 . 520392)
+ (-2166 . 520269) (-2167 . 520237) (-2168 . 520141) (-2169 . 520055)
+ (-2170 . 519948) (-2171 . 519880) (-2172 . 519789) (-2173 . 519627)
+ (-2174 . 519503) (-2175 . 519439) (-2176 . 519200) (-2177 . 519092)
+ (-2178 . 518761) (-2179 . 518666) (-2180 . 518583) (-2181 . 518265)
+ (-2182 . 517969) (-2183 . 517883) (-2184 . 517760) (-2185 . 517542)
+ (-2186 . 517455) (-2187 . 517385) (-2188 . 517332) (-2189 . 517229)
+ (-2190 . 517149) (-2191 . 516969) (-2192 . 516913) (-2193 . 516370)
+ (-2194 . 516152) (-2195 . 516023) (-2196 . 515711) (-2197 . 515566)
+ (-2198 . 515492) (-2199 . 515437) (-2200 . 515194) (-2201 . 515141)
+ (-2202 . 514901) (-2203 . 514780) (-2204 . 514707) (-2205 . 514161)
+ (-2206 . 514060) (-2207 . 513977) (-2208 . 513819) (-2209 . 513731)
+ (-2210 . 513604) (-2211 . 513475) (-2212 . 513423) (-2213 . 513370)
+ (-2214 . 512994) (-2215 . 512548) (-2216 . 512477) (-2217 . 512197)
+ (-2218 . 511881) (-2219 . 511779) (-2220 . 511065) (-2221 . 510947)
+ (-2222 . 510669) (-2223 . 510450) (-2224 . 509248) (-2225 . 509154)
+ (-2226 . 508725) (-2227 . 508617) (-2228 . 508545) (-2229 . 508446)
+ (-2230 . 508362) (-2231 . 508308) (-2232 . 508110) (-2233 . 508082)
+ (-2234 . 507983) (-2235 . 507888) (-2236 . 507369) (-2237 . 507297)
+ (-2238 . 507132) (-2239 . 507051) (-2240 . 506990) (-2241 . 506596)
+ (-2242 . 506406) (-2243 . 506018) (-2244 . 505876) (-2245 . 505847)
+ (-2246 . 505734) (-2247 . 504302) (-2248 . 503544) (-2249 . 502201)
+ (-2250 . 502113) (-2251 . 501991) (-2252 . 501914) (-2253 . 501628)
+ (-2254 . 501475) (-2255 . 501358) (-2256 . 500394) (-2257 . 500312)
+ (-2258 . 499914) (-2259 . 499675) (-2260 . 499547) (-2261 . 499322)
+ (-2262 . 499196) (-2263 . 499119) (-2264 . 498793) (-2265 . 498714)
+ (-2266 . 498373) (-2267 . 497969) (-2268 . 497695) (-2269 . 497549)
+ (-2270 . 497313) (-2271 . 497227) (-2272 . 497120) (-2273 . 497064)
+ (-2274 . 496920) (-2275 . 496867) (-2276 . 496492) (-2277 . 496436)
+ (-2278 . 496329) (-2279 . 496213) (-2280 . 496160) (-2281 . 495741)
+ (-2282 . 495627) (-2283 . 495550) (-2284 . 495332) (-2285 . 495269)
+ (-2286 . 495132) (-2287 . 494918) (-2288 . 494672) (-2289 . 494574)
+ (-2290 . 494481) (-2291 . 494395) (-2292 . 494116) (-2293 . 494056)
+ (-2294 . 493853) (-2295 . 493013) (-2296 . 492949) (-2297 . 492764)
+ (-2298 . 492708) (-2299 . 492642) (-2300 . 492493) (-2301 . 492405)
+ (-2302 . 492301) (-2303 . 491600) (-2304 . 491530) (-2305 . 491445)
+ (-2306 . 491344) (-2307 . 491158) (-2308 . 491101) (-2309 . 491024)
+ (-2310 . 490971) (-2311 . 490916) (-2312 . 490690) (-2313 . 490638)
+ (-2314 . 490420) (-2315 . 490295) (-2316 . 490197) (-2317 . 489894)
+ (-2318 . 489862) (-2319 . 489809) (-2320 . 489644) (-2321 . 489482)
+ (-2322 . 489417) (-2323 . 489301) (-2324 . 489192) (-2325 . 489106)
+ (-2326 . 488970) (-2327 . 488767) (-2328 . 488695) (-2329 . 488554)
+ (-2330 . 488477) (-2331 . 488329) (-2332 . 488185) (-2333 . 488133)
+ (-2334 . 488062) (-2335 . 487904) (-2336 . 487876) (-2337 . 487824)
+ (-2338 . 487726) (-2339 . 487534) (-2340 . 486923) (-2341 . 486765)
+ (-2342 . 486597) (-2343 . 486491) (-2344 . 486371) (-2345 . 486229)
+ (-2346 . 486040) (-2347 . 485815) (-2348 . 485765) (-2349 . 485588)
+ (-2350 . 485518) (-2351 . 485417) (-2352 . 485191) (-2353 . 485014)
+ (-2354 . 484687) (-2355 . 484582) (-2356 . 484515) (-2357 . 484310)
+ (-2358 . 484024) (-2359 . 483851) (-2360 . 483761) (-2361 . 483687)
+ (-2362 . 483534) (-2363 . 483391) (-2364 . 483275) (-2365 . 483207)
+ (-2366 . 482897) (-2367 . 482844) (-2368 . 482767) (-2369 . 482465)
+ (-2370 . 482355) (-2371 . 481831) (-2372 . 481734) (-2373 . 481660)
+ (-2374 . 481572) (-2375 . 481063) (-2376 . 480905) (-2377 . 480818)
+ (-2378 . 480739) (-2379 . 480620) (-2380 . 480539) (-2381 . 479965)
+ (-2382 . 479868) (-2383 . 479720) (-2384 . 479641) (-2385 . 479528)
+ (-2386 . 479184) (-2387 . 478976) (-2388 . 478884) (-2389 . 478548)
+ (-2390 . 478468) (-2391 . 478310) (-2392 . 478229) (-2393 . 478158)
+ (-2394 . 478033) (-2395 . 477955) (-2396 . 477792) (-2397 . 477763)
+ (-2398 . 477703) (-2399 . 477328) (-2400 . 477275) (-2401 . 477175)
+ (-2402 . 477089) (-2403 . 476867) (-2404 . 476771) (-2405 . 476685)
+ (-2406 . 475824) (-2407 . 475691) (-2408 . 475639) (-2409 . 475160)
+ (-2410 . 474882) (-2411 . 474694) (-2412 . 474273) (-2413 . 474169)
+ (-2414 . 474097) (-2415 . 474002) (-2416 . 473826) (-2417 . 473739)
+ (-2418 . 473657) (-2419 . 473580) (-2420 . 473524) (-2421 . 473461)
+ (-2422 . 473411) (-2423 . 473306) (-2424 . 473143) (-2425 . 472991)
+ (-2426 . 472624) (-2427 . 472190) (-2428 . 472107) (-2429 . 472076)
+ (-2430 . 471721) (-2431 . 471101) (-2432 . 470786) (-2433 . 470734)
+ (-2434 . 470703) (-2435 . 470597) (-2436 . 470467) (-2437 . 470362)
+ (-2438 . 470266) (-2439 . 469636) (-2440 . 469584) (-2441 . 469518)
+ (-2442 . 469167) (-2443 . 468947) (-2444 . 468888) (-2445 . 468787)
+ (-2446 . 468700) (-2447 . 467947) (-2448 . 467877) (-2449 . 467759)
+ (-2450 . 467606) (-2451 . 467385) (-2452 . 466998) (-2453 . 466494)
+ (-2454 . 465912) (-2455 . 465878) (-2456 . 465488) (-2457 . 465419)
+ (-2458 . 464777) (-2459 . 464657) (-2460 . 464446) (-2461 . 464300)
+ (-2462 . 464067) (-2463 . 463863) (-2464 . 463791) (-2465 . 463559)
+ (-2466 . 463272) (-2467 . 463217) (-2468 . 463122) (-2469 . 462917)
+ (-2470 . 462778) (-2471 . 462683) (-2472 . 462510) (-2473 . 462381)
+ (-2474 . 462353) (-2475 . 462255) (-2476 . 462141) (-2477 . 461763)
+ (-2478 . 461689) (-2479 . 461272) (-2480 . 460926) (-2481 . 460529)
+ (-2482 . 460455) (-2483 . 460352) (-2484 . 460271) (-2485 . 460103)
+ (-2486 . 459990) (-2487 . 459874) (-2488 . 459594) (-2489 . 459481)
+ (-2490 . 458301) (-2491 . 458235) (-2492 . 458169) (-2493 . 458095)
+ (-2494 . 458022) (-2495 . 457970) (-2496 . 457914) (-2497 . 457819)
+ (-2498 . 457791) (-2499 . 457205) (-2500 . 457060) (-2501 . 456850)
+ (-2502 . 456795) (-2503 . 456716) (-2504 . 456639) (-2505 . 456566)
+ (-2506 . 456396) (-2507 . 456251) (-2508 . 455869) (-2509 . 455789)
+ (-2510 . 455709) (-2511 . 455638) (-2512 . 455564) (-2513 . 455490)
+ (-2514 . 455434) (-2515 . 455159) (-2516 . 455093) (-2517 . 454884)
+ (-2518 . 454833) (-2519 . 454655) (-2520 . 454588) (-2521 . 454005)
+ (-2522 . 453940) (-2523 . 453866) (-2524 . 444416) (-2525 . 444271)
+ (-2526 . 443844) (-2527 . 443741) (-2528 . 443686) (-2529 . 443581)
+ (-2530 . 443288) (-2531 . 442957) (-2532 . 442244) (-2533 . 442112)
+ (-2534 . 441989) (-2535 . 441864) (-2536 . 441800) (-2537 . 441668)
+ (-2538 . 441472) (-2539 . 441210) (-2540 . 440892) (-2541 . 440725)
+ (-2542 . 440631) (-2543 . 440464) (-2544 . 440405) (-2545 . 440348)
+ (-2546 . 440320) (-2547 . 440268) (-2548 . 440239) (-2549 . 440140)
+ (-2550 . 440056) (-2551 . 439964) (-2552 . 439912) (-2553 . 439840)
+ (-2554 . 439669) (-2555 . 439610) (-2556 . 439557) (-2557 . 439204)
+ (-2558 . 438994) (-2559 . 438965) (-2560 . 438843) (-2561 . 438562)
+ (-2562 . 438474) (-2563 . 438422) (-2564 . 438295) (-2565 . 438188)
+ (-2566 . 438136) (-2567 . 437875) (-2568 . 437743) (-2569 . 437665)
+ (-2570 . 437552) (-2571 . 437469) (-2572 . 437383) (-2573 . 437199)
+ (-2574 . 437147) (-2575 . 437054) (-2576 . 436566) (-2577 . 436467)
+ (-2578 . 436309) (-2579 . 435580) (-2580 . 435508) (-2581 . 435477)
+ (-2582 . 435351) (-2583 . 435298) (-2584 . 435230) (-2585 . 434428)
+ (-2586 . 434305) (-2587 . 434126) (-2588 . 434054) (-2589 . 433876)
+ (-2590 . 433147) (-2591 . 433054) (-2592 . 432869) (-2593 . 432622)
+ (-2594 . 432594) (-2595 . 431796) (-2596 . 431701) (-2597 . 431673)
+ (-2598 . 431475) (-2599 . 429060) (-2600 . 428922) (-2601 . 428334)
+ (-2602 . 427658) (-2603 . 427529) (-2604 . 427142) (-2605 . 427069)
+ (-2606 . 427002) (-2607 . 426949) (-2608 . 426912) (-2609 . 426827)
+ (-2610 . 426760) (-2611 . 426672) (-2612 . 426108) (-2613 . 426046)
+ (-2614 . 425796) (-2615 . 425681) (-2616 . 425581) (-2617 . 425475)
+ (-2618 . 425389) (-2619 . 425195) (-2620 . 425121) (-2621 . 425067)
+ (-2622 . 424503) (-2623 . 424331) (-2624 . 424248) (-2625 . 424125)
+ (-2626 . 423982) (-2627 . 423867) (-2628 . 423771) (-2629 . 423683)
+ (-2630 . 423515) (-2631 . 423156) (-2632 . 423088) (-2633 . 422977)
+ (-2634 . 422413) (-2635 . 421187) (-2636 . 421015) (-2637 . 420857)
+ (-2638 . 420682) (-2639 . 420587) (-2640 . 420415) (-2641 . 419982)
+ (-2642 . 419917) (-2643 . 419399) (-2644 . 419267) (-2645 . 418789)
+ (-2646 . 418655) (-2647 . 417981) (-2648 . 417809) (-2649 . 417691)
+ (-2650 . 417360) (-2651 . 417241) (-2652 . 417137) (-2653 . 416864)
+ (-2654 . 416730) (-2655 . 416542) (-2656 . 416423) (-2657 . 416346)
+ (-2658 . 416140) (-2659 . 415945) (-2660 . 415271) (-2661 . 415099)
+ (-2662 . 414884) (-2663 . 414721) (-2664 . 414623) (-2665 . 414392)
+ (-2666 . 414314) (-2667 . 414139) (-2668 . 414081) (-2669 . 413922)
+ (-2670 . 413739) (-2671 . 413002) (-2672 . 412517) (-2673 . 412374)
+ (-2674 . 412216) (-2675 . 412103) (-2676 . 412000) (-2677 . 411920)
+ (-2678 . 411821) (-2679 . 411733) (-2680 . 411545) (-2681 . 410983)
+ (-2682 . 410539) (-2683 . 410239) (-2684 . 410153) (-2685 . 410048)
+ (-2686 . 410014) (-2687 . 409945) (-2688 . 409890) (-2689 . 409834)
+ (-2690 . 409761) (-2691 . 409199) (-2692 . 408883) (-2693 . 408501)
+ (-2694 . 408449) (-2695 . 408350) (-2696 . 408255) (-2697 . 408131)
+ (-2698 . 408079) (-2699 . 408008) (-2700 . 407916) (-2701 . 407354)
+ (-2702 . 407302) (-2703 . 406980) (-2704 . 406884) (-2705 . 406818)
+ (-2706 . 406332) (-2707 . 406277) (-2708 . 405860) (-2709 . 405483)
+ (-2710 . 405410) (-2711 . 405339) (-2712 . 404664) (-2713 . 404237)
+ (-2714 . 404037) (-2715 . 403925) (-2716 . 403897) (-2717 . 403725)
+ (-2718 . 403407) (-2719 . 403293) (-2720 . 403241) (-2721 . 402602)
+ (-2722 . 402260) (-2723 . 401585) (-2724 . 401103) (-2725 . 400939)
+ (-2726 . 400802) (-2727 . 400264) (-2728 . 400191) (-2729 . 399992)
+ (-2730 . 399529) (-2731 . 399477) (-2732 . 399406) (-2733 . 399215)
+ (-2734 . 399071) (-2735 . 398396) (-2736 . 398008) (-2737 . 397942)
+ (-2738 . 397723) (-2739 . 397581) (-2740 . 397409) (-2741 . 397195)
+ (-2742 . 397065) (-2743 . 396878) (-2744 . 396844) (-2745 . 396357)
+ (-2746 . 395794) (-2747 . 395666) (-2748 . 395544) (-2749 . 395450)
+ (-2750 . 395326) (-12 . 395154) (-2752 . 394774) (-2753 . 394540)
+ (-2754 . 394393) (-2755 . 394147) (-2756 . 394063) (-2757 . 393968)
+ (-2758 . 393916) (-2759 . 393743) (-2760 . 393675) (-2761 . 393080)
+ (-2762 . 392767) (-2763 . 392690) (-2764 . 392544) (-2765 . 392292)
+ (-2766 . 392151) (-2767 . 392066) (-2768 . 392038) (-2769 . 391945)
+ (-2770 . 391890) (-2771 . 390104) (-2772 . 389926) (-2773 . 389586)
+ (-2774 . 389483) (-2775 . 389355) (-2776 . 389296) (-2777 . 389153)
+ (-2778 . 389119) (-2779 . 389036) (-2780 . 388984) (-2781 . 388928)
+ (-2782 . 388658) (-2783 . 388592) (-2784 . 388369) (-2785 . 388316)
+ (-2786 . 388175) (-2787 . 388027) (-2788 . 387900) (-2789 . 387805)
+ (-2790 . 387678) (-2791 . 386846) (-2792 . 386712) (-2793 . 386583)
+ (-2794 . 386514) (-2795 . 386459) (-2796 . 386388) (-2797 . 385996)
+ (-2798 . 385894) (-2799 . 385762) (-2800 . 385676) (-2801 . 385381)
+ (-2802 . 385331) (-2803 . 385235) (-2804 . 385183) (-2805 . 384796)
+ (-2806 . 384655) (-2807 . 384460) (-2808 . 383964) (-2809 . 383745)
+ (-2810 . 383527) (-2811 . 383079) (-2812 . 382984) (-2813 . 382841)
+ (-2814 . 382776) (-2815 . 382690) (-2816 . 382596) (-2817 . 382290)
+ (-2818 . 381448) (-2819 . 381324) (-2820 . 381192) (-2821 . 381032)
+ (-2822 . 380998) (-2823 . 380900) (-2824 . 380725) (-2825 . 380625)
+ (-2826 . 380569) (-2827 . 379962) (-2828 . 379758) (-2829 . 379657)
+ (-2830 . 379249) (-2831 . 379197) (-2832 . 379139) (-2833 . 378968)
+ (-2834 . 378788) (-2835 . 378569) (-2836 . 378535) (-2837 . 377946)
+ (-2838 . 377838) (* . 373571) (-2840 . 373469) (-2841 . 373339)
+ (-2842 . 373218) (-2843 . 373008) (-2844 . 372937) (-2845 . 372831)
+ (-2846 . 372747) (-2847 . 372694) (-2848 . 372666) (-2849 . 372480)
+ (-2850 . 372378) (-2851 . 372220) (-2852 . 372105) (-2853 . 372037)
+ (-2854 . 371887) (-2855 . 371764) (-2856 . 371085) (-2857 . 370994)
+ (-2858 . 369732) (-2859 . 369128) (-2860 . 369062) (-2861 . 369013)
+ (-2862 . 368895) (-2863 . 368843) (-2864 . 368665) (-2865 . 368506)
+ (-2866 . 368261) (-2867 . 368143) (-2868 . 368091) (-2869 . 367996)
+ (-2870 . 367762) (-2871 . 367617) (-2872 . 367345) (-2873 . 367293)
+ (-2874 . 367241) (-2875 . 367207) (-2876 . 367107) (-2877 . 366757)
+ (-2878 . 366653) (-2879 . 366534) (-2880 . 366282) (-2881 . 366139)
+ (-2882 . 365921) (-2883 . 365855) (-2884 . 365743) (-2885 . 364783)
+ (-2886 . 364727) (-2887 . 364659) (-2888 . 364388) (-2889 . 364314)
+ (-2890 . 364142) (-2891 . 363627) (-2892 . 363536) (-2893 . 363481)
+ (-2894 . 363250) (-2895 . 363164) (-2896 . 363079) (-2897 . 362965)
+ (-2898 . 362680) (-2899 . 362428) (-2900 . 362156) (-2901 . 361921)
+ (-2902 . 361866) (-2903 . 361751) (-2904 . 361664) (-2905 . 361504)
+ (-2906 . 361340) (-2907 . 361287) (-2908 . 361235) (-2909 . 361039)
+ (-2910 . 360859) (-2911 . 360810) (-2912 . 360665) (-2913 . 360541)
+ (-2914 . 360382) (-2915 . 360236) (-2916 . 360037) (-2917 . 359828)
+ (-2918 . 359295) (-2919 . 359104) (-2920 . 358783) (-2921 . 358677)
+ (-2922 . 358581) (-2923 . 358419) (-2924 . 358332) (-2925 . 358166)
+ (-2926 . 358070) (-2927 . 357986) (-2928 . 357914) (-2929 . 357815)
+ (-2930 . 357691) (-2931 . 357595) (-2932 . 357362) (-2933 . 357239)
+ (-2934 . 357039) (-2935 . 356887) (-2936 . 356123) (-2937 . 354906)
+ (-2938 . 354746) (-2939 . 354496) (-2940 . 353273) (-2941 . 353206)
+ (-2942 . 352025) (-2943 . 351907) (-2944 . 351818) (-2945 . 351765)
+ (-2946 . 351612) (-2947 . 351276) (-2948 . 351156) (-2949 . 350864)
+ (-2950 . 349794) (-2951 . 349735) (-2952 . 349532) (-2953 . 348346)
+ (-2954 . 348245) (-2955 . 348020) (-2956 . 347930) (-2957 . 347832)
+ (-2958 . 347580) (-2959 . 347552) (-2960 . 347472) (-2961 . 346828)
+ (-2962 . 346727) (-2963 . 345863) (-2964 . 345739) (-2965 . 344557)
+ (-2966 . 344475) (-2967 . 344426) (-2968 . 344355) (-2969 . 344253)
+ (-2970 . 344173) (-2971 . 343587) (-2972 . 343472) (-2973 . 343370)
+ (-2974 . 343123) (-2975 . 340915) (-2976 . 340281) (-2977 . 340141)
+ (-2978 . 340017) (-2979 . 339727) (-2980 . 339463) (-2981 . 339361)
+ (-2982 . 339278) (-2983 . 339186) (-2984 . 338884) (-2985 . 338850)
+ (-2986 . 338764) (-2987 . 338676) (-2988 . 338568) (-2989 . 338516)
+ (-9 . 338488) (-2991 . 338426) (-2992 . 338280) (-2993 . 338119)
+ (-2994 . 338035) (-2995 . 337982) (-2996 . 337818) (-2997 . 337686)
+ (-2998 . 337090) (-2999 . 335972) (-3000 . 335776) (-3001 . 335639)
+ (-8 . 335611) (-3003 . 335543) (-3004 . 335407) (-3005 . 335294)
+ (-3006 . 334918) (-3007 . 334852) (-3008 . 334596) (-3009 . 334524)
+ (-7 . 334496) (-3011 . 334028) (-3012 . 333718) (-3013 . 333648)
+ (-3014 . 333486) (-3015 . 333433) (-3016 . 333362) (-3017 . 332971)
+ (-3018 . 332918) (-3019 . 332837) (-3020 . 332588) (-3021 . 332304)
+ (-3022 . 332189) (-3023 . 332085) (-3024 . 331577) (-3025 . 331500)
+ (-3026 . 330824) (-3027 . 330625) (-3028 . 330597) (-3029 . 330509)
+ (-3030 . 330383) (-3031 . 330096) (-3032 . 329905) (-3033 . 329811)
+ (-3034 . 329727) (-3035 . 329669) (-3036 . 329586) (-3037 . 329237)
+ (-3038 . 329142) (-3039 . 328326) (-3040 . 328184) (-3041 . 328147)
+ (-3042 . 328069) (-3043 . 327890) (-3044 . 327584) (-3045 . 327441)
+ (-3046 . 327344) (-3047 . 327262) (-3048 . 326676) (-3049 . 326567)
+ (-3050 . 326536) (-3051 . 326443) (-3052 . 326330) (-3053 . 326233)
+ (-3054 . 326163) (-3055 . 326038) (-3056 . 325939) (-3057 . 325710)
+ (-3058 . 325640) (-3059 . 325612) (-3060 . 325268) (-3061 . 325141)
+ (-3062 . 324951) (-3063 . 324877) (-3064 . 324570) (-3065 . 324491)
+ (-3066 . 324329) (-3067 . 324259) (-3068 . 324049) (-3069 . 323997)
+ (-3070 . 323767) (-3071 . 323341) (-3072 . 323181) (-3073 . 322884)
+ (-3074 . 322666) (-3075 . 322510) (-3076 . 321767) (-3077 . 321683)
+ (-3078 . 321585) (-3079 . 321425) (-3080 . 316086) (-3081 . 315871)
+ (-3082 . 315753) (-3083 . 315667) (-3084 . 315528) (-3085 . 315404)
+ (-3086 . 315316) (-3087 . 314932) (-3088 . 314802) (-3089 . 314750)
+ (-3090 . 314698) (-3091 . 314582) (-3092 . 314456) (-3093 . 314103)
+ (-3094 . 313824) (-3095 . 313666) (-3096 . 313595) (-3097 . 313499)
+ (-3098 . 313326) (-3099 . 313107) (-3100 . 312809) (-3101 . 312747)
+ (-3102 . 312613) (-3103 . 312532) (-3104 . 312478) (-3105 . 312341)
+ (-3106 . 312238) (-3107 . 312133) (-3108 . 311934) (-3109 . 311818)
+ (-3110 . 311765) (-3111 . 311595) (-3112 . 311535) (-3113 . 311307)
+ (-3114 . 311091) (-3115 . 310602) (-3116 . 310477) (-3117 . 310406)
+ (-3118 . 310246) (-3119 . 310209) (-3120 . 310108) (-3121 . 310045)
+ (-3122 . 309913) (-3123 . 309817) (-3124 . 309789) (-3125 . 309688)
+ (-3126 . 309603) (-3127 . 309474) (-3128 . 309379) (-3129 . 309208)
+ (-3130 . 309080) (-3131 . 308889) (-3132 . 308604) (-3133 . 308490)
+ (-3134 . 308324) (-3135 . 308271) (-3136 . 307090) (-3137 . 306433)
+ (-3138 . 306253) (-3139 . 306152) (-3140 . 305968) (-3141 . 305885)
+ (-3142 . 305755) (-3143 . 305502) (-3144 . 304918) (-3145 . 304832)
+ (-3146 . 304653) (-3147 . 304563) (-3148 . 304475) (-3149 . 304381)
+ (-3150 . 304268) (-3151 . 304185) (-3152 . 304114) (-3153 . 303999)
+ (-3154 . 303712) (-3155 . 303466) (-3156 . 303351) (-3157 . 303196)
+ (-3158 . 303123) (-3159 . 302971) (-3160 . 302604) (-3161 . 302516)
+ (-3162 . 302262) (-3163 . 302196) (-3164 . 302141) (-3165 . 301964)
+ (-3166 . 301840) (-3167 . 301594) (-3168 . 301512) (-3169 . 301438)
+ (-3170 . 301228) (-3171 . 301155) (-3172 . 300890) (-3173 . 300742)
+ (-3174 . 299775) (-3175 . 299507) (-3176 . 298897) (-3177 . 298582)
+ (-3178 . 298447) (-3179 . 298349) (-3180 . 298255) (-3181 . 298161)
+ (-3182 . 298083) (-3183 . 297982) (-3184 . 297841) (-3185 . 297785)
+ (-3186 . 297632) (-3187 . 297259) (-3188 . 297028) (-3189 . 295582)
+ (-3190 . 295455) (-3191 . 295170) (-3192 . 295118) (-3193 . 295025)
+ (-3194 . 294948) (-3195 . 294584) (-3196 . 294474) (-3197 . 294264)
+ (-3198 . 294209) (-3199 . 294127) (-3200 . 294025) (-3201 . 293795)
+ (-3202 . 292367) (-3203 . 292318) (-3204 . 292089) (-3205 . 291910)
+ (-3206 . 291855) (-3207 . 291048) (-3208 . 290622) (-3209 . 290520)
+ (-3210 . 290357) (-3211 . 290283) (-3212 . 290187) (-3213 . 289549)
+ (-3214 . 289188) (-3215 . 289115) (-3216 . 289027) (-3217 . 288944)
+ (-3218 . 288884) (-3219 . 288817) (-3220 . 288690) (-3221 . 286576)
+ (-3222 . 286384) (-3223 . 286234) (-3224 . 286174) (-3225 . 285996)
+ (-3226 . 285944) (-3227 . 285886) (-3228 . 285830) (-3229 . 285712)
+ (-3230 . 285610) (-3231 . 285536) (-3232 . 285457) (-3233 . 285369)
+ (-3234 . 285312) (-3235 . 285121) (-3236 . 285050) (-3237 . 284963)
+ (-3238 . 284893) (-3239 . 284815) (-3240 . 284758) (-3241 . 284662)
+ (-3242 . 284532) (-3243 . 284111) (-3244 . 283663) (-3245 . 283520)
+ (-3246 . 283436) (-3247 . 283180) (-3248 . 283111) (-3249 . 283010)
+ (-3250 . 282910) (-3251 . 282663) (-3252 . 282216) (-3253 . 279375)
+ (-3254 . 278850) (-3255 . 278715) (-3256 . 278555) (-3257 . 278363)
+ (-3258 . 278214) (-3259 . 278161) (-3260 . 278079) (-3261 . 277806)
+ (-3262 . 277588) (-3263 . 277445) (-3264 . 277232) (-3265 . 277025)
+ (-3266 . 276905) (-3267 . 276759) (-3268 . 276502) (-3269 . 276418)
+ (-3270 . 276368) (-3271 . 276180) (-3272 . 275977) (-3273 . 275697)
+ (-3274 . 275628) (-3275 . 275445) (-3276 . 275392) (-3277 . 275330)
+ (-3278 . 275054) (-3279 . 274923) (-3280 . 274683) (-3281 . 274583)
+ (-3282 . 274520) (-3283 . 274407) (-3284 . 274275) (-3285 . 274222)
+ (-3286 . 274137) (-3287 . 273706) (-3288 . 273602) (-3289 . 273534)
+ (-3290 . 272831) (-3291 . 272280) (-3292 . 272176) (-3293 . 272123)
+ (-3294 . 272045) (-3295 . 271799) (-3296 . 271561) (-3297 . 271104)
+ (-3298 . 271000) (-3299 . 270903) (-3300 . 270787) (-3301 . 270728)
+ (-3302 . 270573) (-3303 . 270415) (-3304 . 270261) (-3305 . 270058)
+ (-3306 . 269972) (-3307 . 269851) (-3308 . 269728) (-3309 . 269675)
+ (-3310 . 269564) (-3311 . 269286) (-3312 . 269171) (-3313 . 269105)
+ (-3314 . 268681) (-3315 . 268537) (-3316 . 268415) (-3317 . 268345)
+ (-3318 . 268264) (-3319 . 268194) (-3320 . 267924) (-3321 . 267820)
+ (-3322 . 267605) (-3323 . 267239) (-3324 . 266709) (-3325 . 266571)
+ (-3326 . 266473) (-3327 . 266336) (-3328 . 266237) (-3329 . 265811)
+ (-3330 . 265621) (-3331 . 265519) (-3332 . 265441) (-3333 . 265409)
+ (-3334 . 265299) (-3335 . 265130) (-3336 . 264507) (-3337 . 264369)
+ (-3338 . 264190) (-3339 . 264050) (-3340 . 263935) (-3341 . 263608)
+ (-3342 . 263556) (-3343 . 263455) (-3344 . 263313) (-3345 . 262932)
+ (-3346 . 262772) (-3347 . 262699) (-3348 . 262622) (-3349 . 262344)
+ (-3350 . 262262) (-3351 . 262096) (-3352 . 261704) (-3353 . 261652)
+ (-3354 . 261497) (-3355 . 260961) (-3356 . 260857) (-3357 . 260773)
+ (-3358 . 260665) (-3359 . 260588) (-3360 . 260469) (-3361 . 260419)
+ (-3362 . 260254) (-3363 . 260116) (-3364 . 259893) (-3365 . 259517)
+ (-3366 . 259212) (-3367 . 259115) (-3368 . 258869) (-3369 . 258819)
+ (-3370 . 258742) (-3371 . 258714) (-3372 . 258643) (-3373 . 258609)
+ (-3374 . 258233) (-3375 . 258120) (-3376 . 257964) (-3377 . 257886)
+ (-3378 . 257745) (-3379 . 257537) (-3380 . 257441) (-3381 . 257050)
+ (-3382 . 256965) (-3383 . 256578) (-3384 . 256511) (-3385 . 256396)
+ (-3386 . 256186) (-3387 . 256018) (-3388 . 255750) (-3389 . 255500)
+ (-3390 . 255307) (-3391 . 254966) (-3392 . 254913) (-3393 . 254836)
+ (-3394 . 254757) (-3395 . 254669) (-3396 . 254596) (-3397 . 254389)
+ (-3398 . 254274) (-3399 . 254201) (-3400 . 254026) (-3401 . 253919)
+ (-3402 . 253764) (-3403 . 252828) (-3404 . 252683) (-3405 . 252172)
+ (-3406 . 252056) (-3407 . 251999) (-3408 . 251871) (-3409 . 250950)
+ (-3410 . 250892) (-3411 . 250797) (-3412 . 250654) (-3413 . 250512)
+ (-3414 . 250346) (-3415 . 250280) (-3416 . 250206) (-3417 . 250084)
+ (-3418 . 250007) (-3419 . 249911) (-3420 . 249874) (-3421 . 249694)
+ (-3422 . 249602) (-3423 . 249505) (-3424 . 249286) (-3425 . 249212)
+ (-3426 . 248979) (-3427 . 248879) (-3428 . 248551) (-3429 . 248499)
+ (-3430 . 248440) (-3431 . 248222) (-3432 . 248172) (-3433 . 248042)
+ (-3434 . 247965) (-3435 . 247850) (-3436 . 247758) (-3437 . 247569)
+ (-3438 . 247501) (-3439 . 247283) (-3440 . 247117) (-3441 . 246964)
+ (-3442 . 246843) (-3443 . 246230) (-3444 . 246175) (-3445 . 245937)
+ (-3446 . 245858) (-3447 . 243696) (-3448 . 243575) (-3449 . 243489)
+ (-3450 . 243408) (-3451 . 243066) (-3452 . 242997) (-3453 . 242945)
+ (-3454 . 242614) (-3455 . 242187) (-3456 . 242033) (-3457 . 241944)
+ (-3458 . 241845) (-3459 . 241794) (-3460 . 241485) (-3461 . 241362)
+ (-3462 . 241144) (-3463 . 240989) (-3464 . 240762) (-3465 . 240689)
+ (-3466 . 240588) (-3467 . 240526) (-3468 . 240473) (-3469 . 240415)
+ (-3470 . 240286) (-3471 . 240176) (-3472 . 240036) (-3473 . 239736)
+ (-3474 . 239641) (-3475 . 239261) (-3476 . 237480) (-3477 . 237414)
+ (-3478 . 237276) (-3479 . 237222) (-3480 . 237123) (-3481 . 237064)
+ (-3482 . 236911) (-3483 . 236837) (-3484 . 236467) (-3485 . 236388)
+ (-3486 . 236322) (-3487 . 236132) (-3488 . 235840) (-3489 . 235767)
+ (-3490 . 235528) (-3491 . 235414) (-3492 . 235062) (-3493 . 234974)
+ (-3494 . 234897) (-3495 . 234622) (-3496 . 234385) (-3497 . 234190)
+ (-3498 . 234107) (-3499 . 234054) (-3500 . 234004) (-3501 . 233970)
+ (-3502 . 233910) (-3503 . 233845) (-3504 . 233199) (-3505 . 233045)
+ (-3506 . 232915) (-3507 . 232819) (-3508 . 232673) (-3509 . 232423)
+ (-3510 . 232308) (-3511 . 232256) (-3512 . 232175) (-3513 . 232042)
+ (-3514 . 231200) (-3515 . 230608) (-3516 . 230275) (-3517 . 230159)
+ (-3518 . 229941) (-3519 . 229857) (-3520 . 229760) (-3521 . 229595)
+ (-3522 . 229567) (-3523 . 229536) (-3524 . 229465) (-3525 . 229406)
+ (-3526 . 229269) (-3527 . 229096) (-3528 . 229000) (-3529 . 225391)
+ (-3530 . 225314) (-3531 . 225106) (-3532 . 224976) (-3533 . 224823)
+ (-3534 . 224738) (-3535 . 224557) (-3536 . 224488) (-3537 . 224307)
+ (-3538 . 224127) (-3539 . 224030) (-3540 . 223920) (-3541 . 223722)
+ (-3542 . 223577) (-3543 . 223362) (-3544 . 222824) (-3545 . 222687)
+ (-3546 . 222588) (-3547 . 222343) (-3548 . 222235) (-3549 . 222168)
+ (-3550 . 222066) (-3551 . 221980) (-3552 . 221924) (-3553 . 221545)
+ (-3554 . 221473) (-3555 . 221113) (-3556 . 220930) (-3557 . 220821)
+ (-3558 . 220414) (-3559 . 220311) (-3560 . 220192) (-3561 . 220082)
+ (-3562 . 219830) (-3563 . 218834) (-3564 . 218746) (-3565 . 218618)
+ (-3566 . 218535) (-3567 . 218284) (-3568 . 218196) (-3569 . 218108)
+ (-3570 . 218030) (-3571 . 217679) (-3572 . 217569) (-3573 . 217392)
+ (-3574 . 217240) (-3575 . 217180) (-3576 . 217005) (-3577 . 216696)
+ (-3578 . 216505) (-3579 . 216054) (-3580 . 215896) (-3581 . 215795)
+ (-3582 . 215742) (-3583 . 215665) (-3584 . 215623) (-3585 . 215568)
+ (-3586 . 215498) (-3587 . 215380) (-3588 . 215260) (-3589 . 214965)
+ (-3590 . 214812) (-3591 . 214563) (-3592 . 214322) (-3593 . 214260)
+ (-3594 . 214186) (-3595 . 213815) (-3596 . 213657) (-3597 . 213173)
+ (-3598 . 212627) (-3599 . 212598) (-3600 . 212502) (-3601 . 212470)
+ (-3602 . 212374) (-3603 . 212290) (-3604 . 212234) (-3605 . 212019)
+ (-3606 . 211966) (-3607 . 211862) (-3608 . 211789) (-3609 . 211530)
+ (-3610 . 211316) (-3611 . 210997) (-3612 . 210770) (-3613 . 210480)
+ (-3614 . 210428) (-3615 . 210297) (-3616 . 210174) (-3617 . 210108)
+ (-3618 . 209779) (-3619 . 209745) (-3620 . 209675) (-3621 . 209293)
+ (-3622 . 209088) (-3623 . 209034) (-3624 . 208965) (-3625 . 208717)
+ (-3626 . 208647) (-3627 . 208522) (-3628 . 208343) (-3629 . 208206)
+ (-3630 . 208093) (-3631 . 208036) (-3632 . 207917) (-3633 . 207710)
+ (-3634 . 207641) (-3635 . 207519) (-3636 . 207424) (-3637 . 206648)
+ (-3638 . 206538) (-3639 . 206291) (-3640 . 205874) (-3641 . 204789)
+ (-3642 . 204730) (-3643 . 204449) (-3644 . 204216) (-3645 . 202084)
+ (-3646 . 202032) (-3647 . 201762) (-3648 . 201618) (-3649 . 201359)
+ (-3650 . 201120) (-3651 . 200055) (-3652 . 199963) (-3653 . 199896)
+ (-3654 . 199748) (-3655 . 199611) (-3656 . 199559) (-3657 . 199432)
+ (-3658 . 199266) (-3659 . 199093) (-3660 . 198990) (-3661 . 198919)
+ (-3662 . 198745) (-3663 . 198688) (-3664 . 198557) (-3665 . 198491)
+ (-3666 . 198412) (-3667 . 198009) (-3668 . 197786) (-3669 . 197724)
+ (-3670 . 197452) (-3671 . 197355) (-3672 . 197299) (-3673 . 197198)
+ (-3674 . 197018) (-3675 . 196959) (-3676 . 196723) (-3677 . 196582)
+ (-3678 . 196286) (-3679 . 196120) (-3680 . 194953) (-3681 . 194513)
+ (-3682 . 194396) (-3683 . 194034) (-3684 . 193543) (-3685 . 191813)
+ (-3686 . 191759) (-3687 . 191674) (-3688 . 191362) (-3689 . 191309)
+ (-3690 . 191166) (-3691 . 191042) (-3692 . 190785) (-3693 . 190662)
+ (-3694 . 190567) (-3695 . 190056) (-3696 . 190002) (-3697 . 189916)
+ (-3698 . 189863) (-3699 . 189685) (-3700 . 189625) (-3701 . 189559)
+ (-3702 . 188157) (-3703 . 187909) (-3704 . 187826) (-3705 . 186828)
+ (-3706 . 186188) (-3707 . 186135) (-3708 . 186051) (-3709 . 185884)
+ (-3710 . 185741) (-3711 . 185630) (-3712 . 185184) (-3713 . 184752)
+ (-3714 . 184554) (-3715 . 184495) (-3716 . 184407) (-3717 . 184330)
+ (-3718 . 184180) (-3719 . 184081) (-3720 . 183993) (-3721 . 183890)
+ (-3722 . 176947) (-3723 . 176846) (-3724 . 176751) (-3725 . 176648)
+ (-3726 . 176565) (-3727 . 176441) (-3728 . 176389) (-3729 . 176301)
+ (-3730 . 176010) (-3731 . 175854) (-3732 . 175791) (-3733 . 175456)
+ (-3734 . 175403) (-3735 . 156828) (-3736 . 156733) (-3737 . 156615)
+ (-3738 . 156491) (-3739 . 150977) (-3740 . 150880) (-3741 . 150583)
+ (-3742 . 150515) (-3743 . 150360) (-3744 . 150024) (-3745 . 149864)
+ (-3746 . 149768) (-3747 . 149347) (-3748 . 149234) (-3749 . 146413)
+ (-3750 . 146277) (-3751 . 146176) (-3752 . 146058) (-3753 . 145976)
+ (-3754 . 145583) (-3755 . 145403) (-3756 . 145284) (-3757 . 145182)
+ (-3758 . 145108) (-3759 . 145029) (-3760 . 144869) (-3761 . 144335)
+ (-3762 . 144220) (-3763 . 144160) (-3764 . 143885) (-3765 . 143826)
+ (-3766 . 143384) (-3767 . 143217) (-3768 . 143074) (-3769 . 142979)
+ (-3770 . 142895) (-3771 . 142391) (-3772 . 142215) (-3773 . 142073)
+ (-3774 . 141890) (-3775 . 141805) (-3776 . 141578) (-3777 . 141526)
+ (-3778 . 141498) (-3779 . 141163) (-3780 . 141089) (-3781 . 141036)
+ (-3782 . 140977) (-3783 . 140842) (-3784 . 140762) (-3785 . 140709)
+ (-3786 . 140613) (-3787 . 140541) (-3788 . 139865) (-3789 . 139633)
+ (-3790 . 139369) (-3791 . 139289) (-3792 . 138535) (-3793 . 138392)
+ (-3794 . 138212) (-3795 . 138078) (-3796 . 137806) (-3797 . 137687)
+ (-3798 . 137429) (-3799 . 137355) (-3800 . 136917) (-3801 . 136650)
+ (-3802 . 136497) (-3803 . 136235) (-3804 . 136122) (-3805 . 136094)
+ (-3806 . 135838) (-3807 . 135416) (-3808 . 135035) (-3809 . 134877)
+ (-3810 . 134492) (-3811 . 133869) (-3812 . 133817) (-3813 . 133602)
+ (-3814 . 133452) (-3815 . 133315) (-3816 . 133056) (-3817 . 132943)
+ (-3818 . 132695) (-3819 . 132380) (-3820 . 132284) (-3821 . 132003)
+ (-3822 . 131930) (-3823 . 131829) (-3824 . 131757) (-3825 . 131576)
+ (-3826 . 131438) (-3827 . 131149) (-3828 . 130805) (-3829 . 130500)
+ (-3830 . 130381) (-3831 . 130173) (-3832 . 129849) (-3833 . 129772)
+ (-3834 . 129507) (-3835 . 129213) (-3836 . 129160) (-3837 . 129063)
+ (-3838 . 129029) (-3839 . 128903) (-3840 . 128742) (-3841 . 128714)
+ (-3842 . 128514) (-3843 . 128412) (-3844 . 128171) (-3845 . 127710)
+ (-3846 . 127611) (-3847 . 127408) (-3848 . 126731) (-3849 . 126551)
+ (-3850 . 126498) (-3851 . 125971) (-3852 . 125904) (-3853 . 125808)
+ (-3854 . 125729) (-3855 . 125677) (-3856 . 125347) (-3857 . 125250)
+ (-3858 . 125106) (-3859 . 125053) (-3860 . 124932) (-3861 . 124777)
+ (-3862 . 124748) (-3863 . 124528) (-3864 . 124367) (-3865 . 124270)
+ (-3866 . 124214) (-3867 . 124137) (-3868 . 124054) (-3869 . 123938)
+ (-3870 . 123810) (-3871 . 123694) (-3872 . 122064) (-3873 . 121906)
+ (-3874 . 121806) (-3875 . 121735) (-3876 . 121336) (-3877 . 121266)
+ (-3878 . 120238) (-3879 . 120210) (-3880 . 119995) (-3881 . 119900)
+ (-3882 . 119409) (-3883 . 119314) (-3884 . 119262) (-3885 . 119054)
+ (-3886 . 118959) (-3887 . 118907) (-3888 . 118812) (-3889 . 118411)
+ (-3890 . 118331) (-3891 . 118188) (-3892 . 118059) (-3893 . 117774)
+ (-3894 . 116470) (-3895 . 116278) (-3896 . 116224) (-3897 . 116150)
+ (-3898 . 115995) (-3899 . 115865) (-3900 . 115813) (-3901 . 115703)
+ (-3902 . 115548) (-3903 . 115197) (-3904 . 114923) (-3905 . 114840)
+ (-3906 . 114629) (-3907 . 114440) (-3908 . 114345) (-3909 . 114081)
+ (-3910 . 113715) (-3911 . 113574) (-3912 . 113476) (-3913 . 113106)
+ (-3914 . 112932) (-3915 . 112717) (-3916 . 112390) (-3917 . 112294)
+ (-3918 . 112241) (-3919 . 112146) (-3920 . 112060) (-3921 . 111972)
+ (-3922 . 111839) (-3923 . 111477) (-3924 . 111371) (-3925 . 111173)
+ (-3926 . 110687) (-3927 . 110484) (-3928 . 110320) (-3929 . 110292)
+ (-3930 . 110183) (-3931 . 110123) (-3932 . 109831) (-3933 . 108581)
+ (-3934 . 108528) (-3935 . 108329) (-3936 . 108222) (-3937 . 107750)
+ (-3938 . 107647) (-3939 . 107393) (-3940 . 107293) (-3941 . 107169)
+ (-3942 . 107083) (-3943 . 107002) (-3944 . 106609) (-3945 . 106517)
+ (-3946 . 106232) (-3947 . 105823) (-3948 . 105718) (-3949 . 105605)
+ (-3950 . 103544) (-3951 . 103371) (-3952 . 103264) (-3953 . 103140)
+ (-3954 . 102987) (-3955 . 102327) (-3956 . 102239) (-3957 . 102155)
+ (-3958 . 102074) (-3959 . 101965) (-3960 . 101867) (-3961 . 101725)
+ (-3962 . 101609) (-3963 . 101581) (-3964 . 101014) (-3965 . 100877)
+ (-3966 . 100820) (-3967 . 100752) (-3968 . 100401) (-3969 . 100042)
+ (-3970 . 99973) (-3971 . 99862) (-3972 . 99737) (-3973 . 99619)
+ (-3974 . 99509) (-3975 . 99415) (-3976 . 98936) (-3977 . 98877)
+ (-3978 . 98849) (-3979 . 98793) (-3980 . 98543) (-3981 . 98437)
+ (-3982 . 98388) (-3983 . 97637) (-3984 . 97516) (-3985 . 97450)
+ (-3986 . 97421) (-3987 . 97251) (-3988 . 97194) (-3989 . 97128)
+ (-3990 . 97062) (-3991 . 97010) (-3992 . 96911) (-3993 . 96837)
+ (-3994 . 96780) (-3995 . 96620) (-3996 . 96560) (-3997 . 96291)
+ (-3998 . 95770) (-3999 . 95593) (-4000 . 95475) (-4001 . 95109)
+ (-4002 . 94978) (-4003 . 94591) (-4004 . 94433) (-4005 . 94355)
+ (-4006 . 94190) (-4007 . 94089) (-4008 . 94015) (-4009 . 93893)
+ (-4010 . 93352) (-4011 . 93147) (-4012 . 92946) (-4013 . 92129)
+ (-4014 . 91976) (-4015 . 91818) (-4016 . 91283) (-4017 . 91210)
+ (-4018 . 91151) (-4019 . 91029) (-4020 . 90835) (-4021 . 90733)
+ (-4022 . 90681) (-4023 . 90578) (-4024 . 90439) (-4025 . 90371)
+ (-4026 . 90192) (-4027 . 90108) (-4028 . 89890) (-4029 . 89807)
+ (-4030 . 89711) (-4031 . 89555) (-4032 . 89418) (-4033 . 89191)
+ (-4034 . 88700) (-4035 . 88585) (-4036 . 88415) (-4037 . 88026)
+ (-4038 . 87998) (-4039 . 87945) (-4040 . 87633) (-4041 . 87556)
+ (-4042 . 87482) (-4043 . 87399) (-4044 . 87305) (-4045 . 87198)
+ (-4046 . 87051) (-4047 . 86842) (-4048 . 86731) (-4049 . 86659)
+ (-4050 . 86499) (-4051 . 85197) (-4052 . 85041) (-4053 . 84926)
+ (-4054 . 84768) (-4055 . 84702) (-4056 . 84539) (-4057 . 84486)
+ (-4058 . 84419) (-4059 . 84169) (-4060 . 84050) (-4061 . 83623)
+ (-4062 . 83499) (-4063 . 83380) (-4064 . 83241) (-4065 . 83023)
+ (-4066 . 82917) (-4067 . 82671) (-4068 . 82535) (-4069 . 82479)
+ (-4070 . 82347) (-4071 . 81820) (-4072 . 81740) (-4073 . 81606)
+ (-4074 . 81533) (-4075 . 81348) (-4076 . 80802) (-4077 . 80742)
+ (-4078 . 80641) (-4079 . 80567) (-4080 . 80305) (-4081 . 79839)
+ (-4082 . 79523) (-4083 . 79463) (-4084 . 79130) (-4085 . 79050)
+ (-4086 . 78966) (-4087 . 78403) (-4088 . 78266) (-4089 . 78192)
+ (-4090 . 77970) (-4091 . 77628) (-4092 . 77576) (-4093 . 77502)
+ (-4094 . 77339) (-4095 . 77270) (-4096 . 77211) (-4097 . 77089)
+ (-4098 . 76526) (-4099 . 76255) (-4100 . 76161) (-4101 . 76023)
+ (-4102 . 74825) (-4103 . 74458) (-4104 . 74299) (-4105 . 74196)
+ (-4106 . 74110) (-4107 . 73964) (-4108 . 73821) (-4109 . 73698)
+ (-4110 . 73602) (-4111 . 73516) (-4112 . 72954) (-4113 . 72472)
+ (-4114 . 71908) (-4115 . 71767) (-4116 . 71460) (-4117 . 71377)
+ (-4118 . 71046) (-4119 . 71002) (-4120 . 70807) (-4121 . 69934)
+ (-4122 . 69634) (-4123 . 69072) (-4124 . 68951) (-4125 . 68853)
+ (-4126 . 68825) (-4127 . 68773) (-4128 . 68566) (-4129 . 68368)
+ (-4130 . 68075) (-4131 . 67321) (-4132 . 67224) (-4133 . 67038)
+ (-4134 . 66938) (-4135 . 66839) (-4136 . 66723) (-4137 . 66161)
+ (-4138 . 65932) (-4139 . 65809) (-4140 . 65694) (-4141 . 65548)
+ (-4142 . 65346) (-4143 . 65093) (-4144 . 64989) (-4145 . 64778)
+ (-4146 . 64646) (-4147 . 63828) (-4148 . 63703) (-4149 . 63516)
+ (-4150 . 62954) (-4151 . 62816) (-4152 . 62698) (-4153 . 62575)
+ (-4154 . 61840) (-4155 . 61188) (-4156 . 61091) (-4157 . 60529)
+ (-4158 . 60459) (-4159 . 60306) (-4160 . 60233) (-4161 . 60093)
+ (-4162 . 59949) (-4163 . 59716) (-4164 . 59588) (-4165 . 59453)
+ (-4166 . 59205) (-4167 . 59037) (-4168 . 58951) (-4169 . 58855)
+ (-4170 . 58453) (-4171 . 58401) (-4172 . 58219) (-4173 . 58191)
+ (-4174 . 58114) (-4175 . 58045) (-4176 . 57924) (-4177 . 57791)
+ (-4178 . 57637) (-4179 . 57584) (-4180 . 57550) (-4181 . 56402)
+ (-4182 . 56294) (-4183 . 56166) (-4184 . 56023) (-4185 . 55878)
+ (-4186 . 55697) (-4187 . 55526) (-4188 . 55431) (-4189 . 55357)
+ (-4190 . 55216) (-4191 . 55161) (-4192 . 55049) (-4193 . 54937)
+ (-4194 . 54521) (-4195 . 54467) (-4196 . 54076) (-4197 . 54024)
+ (-4198 . 53361) (-4199 . 53308) (-4200 . 53153) (-4201 . 53058)
+ (-4202 . 52929) (-4203 . 52820) (-4204 . 52755) (-4205 . 52677)
+ (-4206 . 52495) (-4207 . 52298) (-4208 . 52215) (-4209 . 52163)
+ (-4210 . 51945) (-4211 . 51847) (-4212 . 51792) (-4213 . 51735)
+ (-4214 . 51442) (-4215 . 51204) (-4216 . 51024) (-4217 . 50843)
+ (-4218 . 50776) (-4219 . 50581) (-4220 . 50510) (-4221 . 50372)
+ (-4222 . 50340) (-4223 . 50284) (-4224 . 50231) (-4225 . 50090)
+ (-4226 . 49911) (-4227 . 49705) (-4228 . 49635) (-4229 . 49540)
+ (-4230 . 49484) (-4231 . 49245) (-4232 . 47017) (-4233 . 46792)
+ (-4234 . 46690) (-4235 . 46538) (-4236 . 46450) (-4237 . 46297)
+ (-4238 . 46184) (-4239 . 46086) (-4240 . 45930) (-4241 . 45801)
+ (-4242 . 45361) (-4243 . 45245) (-4244 . 45129) (-4245 . 45028)
+ (-4246 . 44976) (-4247 . 44873) (-4248 . 44778) (-4249 . 44560)
+ (-4250 . 44529) (-4251 . 44396) (-4252 . 44316) (-4253 . 44128)
+ (-4254 . 44072) (-4255 . 43978) (-4256 . 43594) (-4257 . 43535)
+ (-4258 . 43438) (-4259 . 43388) (-4260 . 43257) (-4261 . 42105)
+ (-4262 . 41754) (-4263 . 41599) (-4264 . 41497) (-4265 . 40618)
+ (-4266 . 40536) (-4267 . 40458) (-4268 . 40404) (-4269 . 40123)
+ (-4270 . 39958) (-4271 . 39850) (-4272 . 39756) (-4273 . 39431)
+ (-4274 . 39372) (-4275 . 39235) (-4276 . 39033) (-4277 . 38962)
+ (-4278 . 38851) (-4279 . 38819) (-4280 . 38736) (-4281 . 38684)
+ (-4282 . 38276) (-4283 . 38223) (-4284 . 37944) (-4285 . 37873)
+ (-4286 . 37717) (-4287 . 36947) (-4288 . 36790) (-4289 . 35698)
+ (-4290 . 35646) (-4291 . 35516) (-4292 . 35408) (-4293 . 35357)
+ (-4294 . 35305) (-4295 . 34431) (-4296 . 33543) (-4297 . 33488)
+ (-4298 . 33340) (-4299 . 33288) (-4300 . 33215) (-4301 . 33066)
+ (-4302 . 32856) (-4303 . 32066) (-4304 . 32004) (-4305 . 31870)
+ (-4306 . 31799) (-4307 . 31712) (-4308 . 31376) (-4309 . 31308)
+ (-4310 . 31225) (-4311 . 31124) (-4312 . 31062) (-4313 . 30891)
+ (-4314 . 30842) (-4315 . 30684) (-4316 . 30477) (-4317 . 30250)
+ (-4318 . 30154) (-4319 . 29850) (-4320 . 29694) (-4321 . 28875)
+ (-4322 . 28666) (-4323 . 28379) (-4324 . 28308) (-4325 . 27392)
+ (-4326 . 26913) (-4327 . 26602) (-4328 . 26428) (-4329 . 26332)
+ (-4330 . 26052) (-4331 . 23796) (-4332 . 23686) (-4333 . 23578)
+ (-4334 . 23478) (-4335 . 23426) (-4336 . 23369) (-4337 . 23268)
+ (-4338 . 23137) (-4339 . 23063) (-4340 . 22776) (-4341 . 22639)
+ (-4342 . 22517) (-4343 . 22439) (-4344 . 22238) (-4345 . 22059)
+ (-4346 . 21976) (-4347 . 21917) (-4348 . 20375) (-4349 . 20316)
+ (-4350 . 20141) (-4351 . 20061) (-4352 . 19831) (-4353 . 19603)
+ (-4354 . 19157) (-4355 . 19061) (-4356 . 18994) (-4357 . 18928)
+ (-4358 . 18875) (-4359 . 18794) (-4360 . 18548) (-4361 . 18270)
+ (-4362 . 18112) (-4363 . 18052) (-4364 . 18000) (-4365 . 17736)
+ (-4366 . 17634) (-4367 . 17423) (-4368 . 16908) (-4369 . 16855)
+ (-4370 . 16781) (-4371 . 16418) (-4372 . 16330) (-4373 . 15679)
+ (-4374 . 15599) (-4375 . 15267) (-4376 . 15202) (-4377 . 15113)
+ (-4378 . 14692) (-4379 . 10149) (-4380 . 10063) (-4381 . 9910)
+ (-4382 . 9654) (-4383 . 9368) (-4384 . 9336) (-4385 . 9305)
+ (-4386 . 8007) (-4387 . 7892) (-4388 . 6692) (-4389 . 6594)
+ (-4390 . 6497) (-4391 . 6429) (-4392 . 6319) (-4393 . 6291)
+ (-4394 . 6154) (-4395 . 6093) (-4396 . 5990) (-4397 . 5937)
+ (-4398 . 5599) (-4399 . 4895) (-4400 . 4788) (-4401 . 4576)
+ (-4402 . 4510) (-4403 . 4457) (-4404 . 4423) (-4405 . 4351)
+ (-4406 . 4257) (-4407 . 4160) (-4408 . 4012) (-4409 . 3957)
+ (-4410 . 3619) (-4411 . 3281) (-4412 . 3207) (-4413 . 2526)
+ (-4414 . 2431) (-4415 . 1353) (-4416 . 1250) (-4417 . 1176)
+ (-4418 . 1083) (-4419 . 1049) (-4420 . 918) (-4421 . 784)
+ (-4422 . 718) (-4423 . 666) (-4424 . 585) (-4425 . 508) (-4426 . 428)
+ (-4427 . 346) (-4428 . 221) (-4429 . 30)) \ No newline at end of file